@charset "UTF-8";
/* var */
:root {
  --black: #383838;
  --gray: #3D3D46;
  --blue: #0000CD;
  --red: #EC3026;
  --orange: #FD9405;
  --col-01: #173285;
  --col-02: #0F9B9D;
  --col-03: #E83820;
  --col-04: #288966;
  --col-05: #B888E5;
  --col-06: #F18F18;
  --col-07: #0768AC;
  --col-08: #5A3F8E;
  --col-09: #E85298;
}

/* base */
* {
  box-sizing: border-box;
  position: relative;
  font-feature-settings: "palt";
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 162.5%;
  letter-spacing: 1px;
  color: var(--black);
}
@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
}

figure {
  margin: 0;
}

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

a {
  text-decoration: none;
  transition: all 0.3s 0s ease;
  color: var(--black);
}

select {
  color: var(--black);
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
a.noref {
  pointer-events: none;
}

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

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
.sp-only {
  display: none !important;
}

@media (max-width: 768px) {
  .sp-only {
    display: block !important;
  }
}
.l-box {
  padding: 90px 0 80px;
}
@media (max-width: 768px) {
  .l-box {
    padding: 4em 0;
  }
}

.l-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  .l-title {
    font-size: clamp(2em, 5vw, 32px);
  }
}
.l-title-24 {
  font-size: 24px;
}

.l-text {
  font-size: 16px;
  line-height: 162.5%;
}
@media (max-width: 768px) {
  .l-text {
    font-size: 15px;
  }
}
@media (max-width: 520px) {
  .l-text {
    font-size: 14px;
  }
}

.c-blue {
  color: var(--blue);
}

.c-red {
  color: var(--red);
}

.c-orange {
  color: var(--orange);
}

.c-col-01 {
  color: var(--col-01);
}

.c-col-02 {
  color: var(--col-02);
}

.c-col-03 {
  color: var(--col-03);
}

.c-col-04 {
  color: var(--col-04);
}

.c-col-05 {
  color: var(--col-05);
}

.c-col-06 {
  color: var(--col-06);
}

.c-col-07 {
  color: var(--col-07);
}

.c-col-08 {
  color: var(--col-08);
}

.c-col-09 {
  color: var(--col-09);
}

.c-red .visa-lead,
.c-red .visa-btn__label {
  color: var(--red);
}

.c-red .visa-btn__link {
  border-color: var(--red);
}

.c-orange .visa-lead,
.c-orange .visa-btn__label {
  color: var(--orange);
}

.c-orange .visa-btn__link {
  border-color: var(--orange);
}

.c-bold {
  font-weight: 700;
}

.body.is-active::before {
  content: "";
  background: rgba(124, 124, 189, 0.7);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
}
.body-bg {
  background: #F7F7F7;
}

.inner {
  max-width: 1032px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1100px) {
  .inner {
    width: 95%;
  }
}

.header {
  background: #fff;
  padding: 12px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header {
    padding: 0.5em 1em;
  }
}
.header-logo {
  flex-basis: 50%;
}
.header-set {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .header-set {
    gap: 20px;
  }
}
.header-lang {
  width: 100%;
  max-width: 88px;
}
.header-lang select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  padding: 15px 10px;
  font-size: 16px;
  border: 1px solid #979797;
  width: 100%;
  cursor: pointer;
  background: #fff url("../img/icon_arrow.svg") 95% center no-repeat;
}
.header-toggle {
  /* 数値変更必要
  &.is-active {
    span {
      &:nth-child(1) {
        transform: rotate(-45deg);
        top: 10px;
      }
      &:nth-child(2) {
        opacity: 0;
      }
      &:nth-child(3) {
        transform: rotate(45deg);
        top: -10px;
      }
    }
  }
    */
}
.header-toggle div {
  background: var(--blue);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header-toggle div {
    width: 40px;
    height: 40px;
    gap: 5px;
  }
}
.header-toggle span {
  width: 40px;
  height: 2px;
  background: #fff;
  display: block;
  transition: 0.3s all;
}
@media (max-width: 768px) {
  .header-toggle span {
    width: 20px;
  }
}

.visa {
  background: #F7F7F7;
}
.visa .inner {
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .visa .inner {
    padding: 0 1em;
  }
}
.visa .l-title {
  margin-bottom: 40px;
}
.visa-box {
  margin-bottom: 70px;
}
@media (max-width: 1000px) {
  .visa-box {
    margin-bottom: 4em;
  }
}
.visa-box:last-child {
  margin-bottom: 0;
}
.visa-flex {
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 1200px) {
  .visa-flex {
    padding: 0 1em;
  }
}
@media (max-width: 1000px) {
  .visa-flex {
    gap: 2em;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .visa-flex {
    flex-direction: column;
  }
}
.visa-flex__box {
  width: 100%;
  max-width: 360px;
}
@media (max-width: 1200px) {
  .visa-flex__box {
    max-width: 100%;
  }
}
.visa-lead {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}
@media (max-width: 1000px) {
  .visa-lead {
    font-size: clamp(1.7em, 5vw, 24px);
  }
}
.visa-btn {
  display: flex;
  gap: 30px 60px;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .visa-btn {
    gap: 30px;
    margin: 0 auto;
    justify-content: center;
  }
}
@media (max-width: 520px) {
  .visa-btn {
    gap: 20px;
  }
}
.visa-btn__item {
  width: 100%;
  max-width: 360px;
}
@media (max-width: 1200px) {
  .visa-btn__item {
    max-width: calc(33.3333333333% - 30px);
  }
}
@media (max-width: 1000px) {
  .visa-btn__item {
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 520px) {
  .visa-btn__item {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .visa-btn__item--sec {
    max-width: 100%;
  }
}
.visa-btn__link {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--blue);
  border-radius: 8px;
  padding: 0 20px 0 30px;
  min-height: 110px;
}
@media (max-width: 520px) {
  .visa-btn__link {
    min-height: 130px;
  }
}
.visa-btn__label {
  font-weight: 700;
  font-size: 18px;
  line-height: 166%;
}
@media (max-width: 520px) {
  .visa-btn__label {
    font-size: 15px;
  }
}

.side {
  transition: 0.3s all;
  position: fixed;
  right: -130vw;
  top: 0;
  background: var(--gray);
  width: 100%;
  height: 100%;
  max-width: 480px;
  z-index: 100;
}
.side.is-active {
  right: 0;
}
.side-close {
  position: absolute;
  right: 10%;
  top: 20px;
  z-index: 50;
}
.side-close div {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .side-close div {
    width: 40px;
    height: 40px;
    gap: 5px;
  }
}
.side-close span {
  width: 40px;
  height: 2px;
  background: #fff;
  display: block;
  transition: 0.3s all;
}
@media (max-width: 768px) {
  .side-close span {
    width: 30px;
  }
}
.side-close span:nth-child(1) {
  transform: rotate(-45deg);
  top: 6px;
}
@media (max-width: 768px) {
  .side-close span:nth-child(1) {
    top: 4px;
  }
}
.side-close span:nth-child(2) {
  transform: rotate(45deg);
  top: -6px;
}
@media (max-width: 768px) {
  .side-close span:nth-child(2) {
    top: -4px;
  }
}
.side-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 0 0;
}
.side-nav__item a {
  display: block;
  color: #fff;
  padding: 15px 40px;
}
.side-nav__item a:hover {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

.mv {
  background: var(--blue);
  display: flex;
}
@media (max-width: 768px) {
  .mv {
    flex-direction: column-reverse;
  }
}
.mv-set {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  color: #fff;
}
.mv-set::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  width: 60px;
  height: 100%;
  display: block;
  background: var(--blue);
  position: absolute;
  top: 0;
  right: -60px;
  z-index: 5;
}
@media (max-width: 768px) {
  .mv-set::after {
    display: none;
  }
}
.mv-detail {
  max-width: 450px;
  flex-direction: column;
  text-align: left;
  margin: 0 20px 0 auto;
}
@media (max-width: 1000px) {
  .mv-detail {
    margin: 0 20px;
  }
}
@media (max-width: 768px) {
  .mv-detail {
    margin: 0;
    padding: 2em;
  }
}
.mv-lead {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 1000px) {
  .mv-lead {
    font-size: clamp(1.5em, 5vw, 36px);
    margin-bottom: 0.5em;
  }
}
.mv-text {
  font-size: 18px;
  line-height: 161%;
}
@media (max-width: 768px) {
  .mv-text {
    font-size: 14px;
  }
}
.mv-image {
  flex: 1;
}

.map {
  background: #F7F7F7;
}
.map .inner {
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .map .inner {
    padding: 0 1em;
  }
}
.map .l-title {
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 520px) {
  .map .l-title {
    text-align: center;
    margin-bottom: 1em;
  }
}
.map-flex {
  display: flex;
  gap: 110px;
}
@media (max-width: 1100px) {
  .map-flex {
    gap: 4em;
  }
}
@media (max-width: 768px) {
  .map-flex {
    flex-direction: column;
    gap: 2em;
  }
}
.map-image {
  width: 50%;
  max-width: 560px;
}
@media (max-width: 768px) {
  .map-image {
    width: 90%;
    margin: 0 auto;
  }
}
.map-pref {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  flex: 1;
}
@media (max-width: 1000px) {
  .map-pref {
    flex-direction: column;
    gap: 1em;
  }
}
@media (max-width: 768px) {
  .map-pref {
    max-width: 500px;
    margin: 0 auto;
  }
}
.map-pref__set {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 40%;
}
@media (max-width: 1000px) {
  .map-pref__set {
    max-width: 100%;
  }
}
.map-pref__block {
  width: 100%;
}
.map-pref__label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 3px;
}
@media (max-width: 768px) {
  .map-pref__label {
    font-size: 17px;
  }
}
.map-pref__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .map-pref__list {
    gap: 1em;
    padding-bottom: 2em;
  }
}
.map-pref__item {
  flex-basis: 33.33%;
}
@media (max-width: 768px) {
  .map-pref__item {
    flex-basis: auto;
    font-size: 14px;
  }
}

.search-top {
  background: #F7F7F7;
}
.search-top.l-box {
  padding-top: 20px;
}
.search-top-box {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .search-top-box {
    flex-direction: column;
    gap: 20px;
    padding: 2em;
  }
}
.search-top-box__set {
  width: 100%;
  max-width: 200px;
}
@media (max-width: 768px) {
  .search-top-box__set {
    max-width: 100%;
  }
}
.search-top-box__set--long {
  max-width: 256px;
}
@media (max-width: 768px) {
  .search-top-box__set--long {
    max-width: 100%;
  }
}
.search-top-box__set select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  padding: 15px 10px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #979797;
  width: 100%;
  cursor: pointer;
  background: #fff url("../img/icon_arrow.svg") 95% center no-repeat;
}
.search-top-box__submit {
  width: 100%;
  max-width: 320px;
}
@media (max-width: 768px) {
  .search-top-box__submit {
    max-width: 100%;
  }
}
.search-top-box__submit input {
  background: var(--red);
  border: none;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  color: #Fff;
  text-align: center;
  font-size: 18px;
  border-radius: 28px;
  display: block;
  width: 100%;
  cursor: pointer;
  font-weight: 700;
  height: 56px;
  max-width: 320px;
}
@media (max-width: 768px) {
  .search-top-box__submit input {
    max-width: 100%;
  }
}

.search-top-box__submit input.search-top-box__button:disabled {
  pointer-events: none;
  opacity: .3;
  background: #111;
}

.search-top-box__submit--back {
  margin-bottom: 25px;
}

.search-top-box__submit--back input {
  background: #f4f4f4;
  color: #000;
}

.search-top-nav {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .search-top-nav {
    margin-top: 20px;
    padding: 0 2em;
  }
}
.search-top-nav a {
  display: block;
  max-width: 320px;
  padding: 17px 0;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 28px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  font-weight: 700;
}
@media (max-width: 768px) {
  .search-top-nav a {
    max-width: 100%;
  }
}
.search-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 50px;
}
.search-set {
  border-radius: 8px;
  background: #EBEBF0;
  padding: 20px 25px;
  align-items: center;
  display: table;
}
@media (max-width: 768px) {
  .search-set {
    display: block;
  }
}
.search-set__label {
  font-weight: 700;
  font-size: 15px;
  width: 12%;
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .search-set__label {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
}
.search-set__label--vt {
  vertical-align: top;
  padding: 10px 0 0;
}
.search-set__contents {
  width: 48%;
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .search-set__contents {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
}
.search-set__btn {
  width: 20%;
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .search-set__btn {
    display: block;
    width: 100%;
  }
}
.search-set__button {
  max-width: 180px;
  width: 100%;
  background: var(--red);
  font-size: 18px;
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 28px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--red);
  font-weight: 700;
  height: 56px;
  max-width: 180px;
}
@media (max-width: 1100px) {
  .search-set__button {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .search-set__button {
    max-width: 380px;
    margin: 0 auto 20px;
  }
}
.search-set__button--clear {
  background: #fff;
  color: var(--red);
}
.search-set-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 10px;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .search-set-tabs {
    gap: 30px 20px;
  }
}
.search-set-tabs__item a {
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  border-radius: 60px;
  padding: 5px 10px;
}
.search-set__bottom {
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .search-set__bottom {
    max-width: 400px;
  }
}
.search-pref:last-child {
  margin-bottom: 0;
}
.search-pref__list {
  display: flex;
  gap: 60px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .search-pref__list {
    flex-direction: column;
    gap: 20px;
  }
}
.search-pref__label {
  font-weight: 700;
  font-size: 18px;
  flex-basis: 15%;
}
@media (max-width: 768px) {
  .search-pref__label {
    font-size: 16px;
  }
}
.search-pref__group {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .search-pref__group {
    gap: 20px;
  }
}
.search-pref__group a {
  color: var(--blue);
}
@media (max-width: 768px) {
  .search-pref__group a {
    font-size: 14px;
  }
}
.search-back {
  margin-bottom: 40px;
}
.search-back a {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.search-back a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--black);
  border-right: 2px solid var(--black);
  transform: rotate(225deg);
  display: block;
  margin: 0 15px 0 0;
}
.search-check {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #979797;
}
.search-area__check {
  margin-bottom: 20px;
}
.search-area__list {
  margin-bottom: 20px;
}
.search-area__list:last-child {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .search-area__list:last-child {
    margin-bottom: 40px;
  }
}
.search-area__label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-area__head {
  background: var(--gray);
  padding: 15px 20px;
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-weight: 500;
}
.search-area__group {
  background: #EBEBF0;
  padding: 20px 20px;
  display: flex;
  gap: 20px;
  border-radius: 0 0 8px 8px;
  flex-wrap: wrap;
}
.search-area-bottom {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .search-area-bottom {
    flex-direction: column;
  }
}
.search-area-bottom__result {
  flex-basis: 30%;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 768px) {
  .search-area-bottom__result {
    margin-bottom: 30px;
  }
}
.search-area-bottom__result .c-blue {
  font-size: 28px;
}
.search-area-bottom__btn {
  flex-basis: 70%;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .search-area-bottom__btn {
    flex-direction: column;
    flex-basis: 100%;
    width: 100%;
    gap: 0;
  }
}
.search-area-bottom__btn .search-set__btn {
  max-width: 320px;
  width: 100%;
  display: flex;
}
@media (max-width: 768px) {
  .search-area-bottom__btn .search-set__btn {
    margin: 0 auto;
    max-width: 400px;
  }
}
.search-area-bottom__btn .search-set__btn .search-set__button {
  max-width: 100%;
}
.search-area-bottom__btn .search-set__btn .search-set__button--clear {
  max-width: 180px;
}
@media (max-width: 768px) {
  .search-area-bottom__btn .search-set__btn .search-set__button--clear {
    max-width: 100%;
  }
}

.pickup-bg {
  background: #F7F7F7;
}
.pickup .inner {
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .pickup .inner {
    padding: 0 1em;
  }
}
.pickup .l-title {
  text-align: left;
  margin-bottom: 40px;
}
.pickup-list {
  display: flex;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 520px) {
  .pickup-list {
    flex-direction: column;
  }
}
.pickup-list__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 270px;
}
@media (max-width: 1200px) {
  .pickup-list__item {
    max-width: calc(25% - 30px);
  }
}
@media (max-width: 768px) {
  .pickup-list__item {
    max-width: calc(50% - 30px);
  }
}
@media (max-width: 520px) {
  .pickup-list__item {
    max-width: 100%;
  }
}
.pickup-list__item img {
  margin: 0 auto 20px;
  display: block;
}
.pickup-list__title {
  margin-bottom: 10px;
}
.pickup-list__title a {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
}
@media (max-width: 1000px) {
  .pickup-list__title a {
    font-size: 16px;
  }
}

.lower {
  padding: 100px 0 90px;
}
@media (max-width: 768px) {
  .lower {
    padding: 4em 0 6em;
  }
}
.lower-list {
  padding-top: 0;
}
.lower .l-title {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .lower .l-title {
    margin-bottom: 30px;
  }
}
.lower .l-title-24 {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .lower .l-title-24 {
    margin-bottom: 30px;
  }
}
.lower-main {
  margin-bottom: 80px;
}
.lower-main.list {
  margin-bottom: 20px;
}
.lower-detail {
  padding-top: 0;
  padding-bottom: 20px;
}

.list-head {
  background: #fff;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.1);
  padding-bottom: 40px;
}
.list-head .search-top-box {
  box-shadow: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.list-main {
  padding: 40px 0 0;
}
.list-result {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .list-result {
    font-size: 18px;
  }
}
.list-result .c-blue {
  font-size: 40px;
}
@media (max-width: 768px) {
  .list-result .c-blue {
    font-size: 24px;
  }
}
.list-set {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .list-set {
    margin-bottom: 30px;
  }
}
.list-set__item {
  border-radius: 8px;
  background: #FFF;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.list-set__wrap {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .list-set__wrap {
    flex-direction: column;
  }
}
.list-set__image {
  width: 100%;
  max-width: 210px;
}
@media (max-width: 768px) {
  .list-set__image {
    max-width: 400px;
  }
}
.list-set__right {
  flex: 1;
}
.list-set__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .list-set__title {
    font-size: 18px;
  }
}
.list-set__title a {
  color: var(--blue);
}
.list-set__text {
  margin-bottom: 5px;
}

.detail {
  padding: 40px 0 0;
}
.detail-wrap {
  margin-bottom: 80px;
}
.detail-head {
  margin-bottom: 30px;
}
.detail-head__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .detail-head__title {
    font-size: 24px;
  }
}
.detail-head__text {
  margin-bottom: 10px;
}
.detail-main {
  margin-bottom: 50px;
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .detail-main {
    flex-direction: column;
  }
}
.detail-main__image {
  width: 100%;
  max-width: 330px;
}
.detail-main__text {
  flex: 1;
}
.detail-nav a {
  display: block;
  max-width: 320px;
  padding: 17px 0;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  color: #fff;
  border: 2px solid var(--red);
  border-radius: 28px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  background: var(--red);
  font-weight: 700;
  height: 56px;
}
@media (max-width: 768px) {
  .detail-nav a {
    max-width: 400px;
  }
}
.detail-list {
  margin-bottom: 80px;
}
.detail-list__title {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .detail-list__title {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.detail-list__wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  gap: 10px;
}
.detail-list__item {
  border-radius: 8px;
  background: #EBEBF0;
  display: table;
  padding: 24px;
}
@media (max-width: 768px) {
  .detail-list__item {
    padding: 20px;
  }
}
.detail-list__label {
  display: table-cell;
  vertical-align: middle;
  font-size: 15px;
  font-weight: 700;
  width: 15%;
}
@media (max-width: 768px) {
  .detail-list__label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
.detail-list__label--vt {
  vertical-align: top;
  padding-top: 10px;
}
.detail-list__text {
  display: table-cell;
  width: 85%;
}
@media (max-width: 768px) {
  .detail-list__text {
    display: block;
    width: 100%;
  }
}

.form-position {
  display: flex;
  margin-bottom: 50px;
}
.form-position__item {
  width: 50%;
  background: #EBEBF0;
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  padding: 20px;
}
.form-position__item.is-current {
  background: var(--gray);
  color: #fff;
}
.form-position__item.is-current::before {
  content: "";
  background: var(--gray);
  width: 30px;
  height: 58px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 0;
  right: -30px;
  z-index: 50;
  display: block;
}
.form-position__item:last-child::before {
  content: "";
  background: #EBEBF0;
  width: 30px;
  height: 58px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 0;
  right: auto;
  left: 0px;
  z-index: 5;
  display: block;
}
.form-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 160%;
}
@media (max-width: 768px) {
  .form-title {
    font-size: 20px;
  }
}
.form-inner {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form-inner-en {
  max-width: 500px;
}
.form-set a {
  text-decoration: underline;
  color: var(--blue);
  flex : 1;
  line-height: 150%;
}
.form-set .search-area__label--text {
  flex : 1;
  line-height: 150%;
  cursor: pointer;
}
.form-set__label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
}
.form-set__icon {
  background: var(--red);
  color: #fff;
  border-radius: 80px;
  padding: 3px 8px;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 500;
}
.form-input__text {
  border: 1px solid #979797;
  border-radius: 4px;
  padding: 15px;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
.form-input__text::-moz-placeholder {
  color: #D1D1D1;
}
.form-input__text::placeholder {
  color: #D1D1D1;
}
.form-input__textarea {
  border: 1px solid #979797;
  border-radius: 4px;
  padding: 15px;
  width: 100%;
  height: 200px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
.form-input__textarea::-moz-placeholder {
  color: #D1D1D1;
  font-weight: 500;
}
.form-input__textarea::placeholder {
  color: #D1D1D1;
  font-weight: 500;
}
.form-input__radio {
  border: 1px solid #979797;
  border-radius: 4px;
  padding: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  width: 140px;
  cursor: pointer;
}
.form-inner-en .form-input__radio {
 width: 155px;
}
.form-inner-en .form-input__radio--wide {
  width: 175px;
}
.form-note {
  font-size: 13px;
  color: #797979;
  line-height: 20px;
}
.apply-set__detail--min {
  font-size: 13px;
  font-weight: bold;
  color: #e53e3e;
  margin-top: 6px;
}
.form-btn {
  margin: 30px auto 0;
}
.form-flex {
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
 .form-flex {
    flex-direction: column;
  }
}
.form-flex input[type=radio] {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}
.form-flex input[type=radio]:checked + .form-input__radio {
  background: var(--blue);
  color: #fff;
}
.form-flex input[type=radio]:checked + .form-input__radio::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 40%;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-50%);
  background-color: transparent;
}
.form-area {
  width: 100%;
  max-width: 200px;
}
@media (max-width: 768px) {
 .form-area {
    max-width: 100%;
  }
}
.form-inner-en .form-area {
  max-width: 250px;
}
.form-checkmark {
  padding: 0 0 0 30px;
}
.form-checkmark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40%;
  width: 6px;
  height: 12px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-50%);
  background-color: transparent;
}

.thanks {
  gap: 0;
}
.thanks-text {
  margin-bottom: 30px;
}
.thanks-text-last {
  margin-bottom: 60px;
}
.thanks-inner {
  max-width: 620px;
  margin: 0 auto;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .pager {
    margin-bottom: 60px;
  }
}
.pager-item a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4E4E57;
  background: #FFF;
  font-size: 18px;
}
.pager-item span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4E4E57;
  background: #4E4E57;
  color: #fff;
  font-size: 18px;
}
.pager-item-prev {
  transform: rotate(180deg);
}

.static-inner {
  max-width: 600px;
  margin: 0 auto;
}

.static-inner p {
  margin-bottom: 30px;
  line-height: 160%;
  font-size: 15px;
}



.static-inner p.list {
  display: flex;
  margin-bottom: 5px;
}
.static-inner p a {
  text-decoration: underline;
}
.static-inner p .bold {
  font-weight: 600;
}
.static-inner p.list span {
  font-weight: 600;
}
.static-inner p.list.mb20 {
  margin-bottom: 20px;
}
.static-inner p.list.mb30 {
  margin-bottom: 30px;
}
.static-inner p.mb10 {
  margin-bottom: 10px;
}
.static-inner p.mb20 {
  margin-bottom: 20px;
}

.static-inner .static-title {
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 18px;
}

.static-inner .static-title2 {
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.breadcrumbs {
  font-size: 12px;
}
.breadcrumbs-bottom {
  padding-top: 20px;
}
.breadcrumbs-list {
  display: flex;
}
.breadcrumbs-list__item {
  display: flex;
  align-items: center;
  gap: 3px;
}
.breadcrumbs-list__item::after {
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(45deg);
  display: block;
  margin-right: 5px;
}
.breadcrumbs-list__item:last-child::after {
  display: none;
}

.footer {
  background: #8a8a9c;
  padding: 80px 0 30px;
}
@media (max-width: 768px) {
  .footer {
    padding: 3em 0 1.875em;
  }
}
.footer .inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .footer .inner {
    padding: 0 2em;
  }
}
.footer-flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 950px) {
  .footer-flex {
    flex-direction: column;
  }
}
.footer-logo {
  padding: 10px 0 0;
  flex-basis: 30%;
}
@media (max-width: 950px) {
  .footer-logo {
    padding: 0;
    width: 70%;
    max-width: 300px;
    margin: 0 auto 3em;
  }
}
.footer-nav {
  max-width: 700px;
  display: flex;
  gap: 40px 0;
  flex-wrap: wrap;
  margin-bottom: 140px;
  flex: 1;
}
@media (max-width: 1100px) {
  .footer-nav {
    max-width: 600px;
  }
}
@media (max-width: 950px) {
  .footer-nav {
    justify-content: center;
    margin: 0 auto 8em;
  }
}
@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 20px;
    width: 70%;
    margin: 0 auto 5em;
  }
}
.footer-nav__item {
  width: 100%;
  max-width: 230px;
}
@media (max-width: 1100px) {
  .footer-nav__item {
    max-width: 180px;
  }
}
@media (max-width: 768px) {
  .footer-nav__item {
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .footer-nav__item {
    text-align: left;
  }
}
.footer-nav__item:nth-child(2) {
  max-width: 300px;
}
@media (max-width: 1100px) {
  .footer-nav__item:nth-child(2) {
    max-width: 250px;
  }
}
@media (max-width: 768px) {
  .footer-nav__item:nth-child(2) {
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .footer-nav__item:nth-child(2) {
    text-align: left;
  }
}
.footer-nav__item:nth-child(5) {
  max-width: 300px;
}
@media (max-width: 1100px) {
  .footer-nav__item:nth-child(5) {
    max-width: 250px;
  }
}
@media (max-width: 768px) {
  .footer-nav__item:nth-child(5) {
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .footer-nav__item:nth-child(5) {
    text-align: left;
  }
}
.footer-nav__item:nth-child(3) {
  max-width: 100px;
}
@media (max-width: 768px) {
  .footer-nav__item:nth-child(3) {
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .footer-nav__item:nth-child(3) {
    text-align: left;
  }
}
.footer-nav__item:nth-child(6) {
  max-width: 100px;
}
@media (max-width: 768px) {
  .footer-nav__item:nth-child(6) {
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .footer-nav__item:nth-child(6) {
    text-align: left;
  }
}
.footer-nav__item a {
  color: #fff;
  font-size: 14px;
}
.footer-copy {
  font-size: 12px;
  text-align: center;
  color: #fff;
  letter-spacing: 0;
}
/* */
