@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --color-def: #222;
  --color-sub: #bebebe;
  --color-white: #fff;
  --color-primary: #FFC800;
  --color-secondary: #1959A5;
  --color-tertiary: #198DDA;
  --color-accent: #EB281E;
  --color-highlight: #FFFF00;
  --color-main-bg: #FFF4CC;
  --color-overlay-bg: rgba(255, 255, 255, 0.8);
  --color-shadow: rgba(34, 34, 34, 0.5);
}

.base {
  position: relative;
  background-color: var(--color-main-bg);
  color: var(--color-def);
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

button,
a,
summary {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
button:hover,
a:hover,
summary:hover {
  cursor: pointer;
  opacity: 0.7;
}

.l-view {
  display: grid;
  grid-template-rows: -webkit-min-content 1fr -webkit-min-content;
  grid-template-rows: min-content 1fr min-content;
  min-height: 100svh;
}
.l-hidden {
  overflow-x: hidden;
}
.l-container {
  max-width: 1264px;
  margin-inline: auto;
  padding: 0 32px;
}
.l-over {
  max-width: 100svw;
  margin: 0 calc(50% - 50svw);
}
.l-col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.l-col-2-ever {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.l-row-1 {
  display: grid;
  grid-template-columns: 1fr;
}
.l-gap-s {
  gap: 4px 0;
}
.l-gap-m {
  gap: 10px 20px;
}
.l-gap-l {
  gap: 20px 20px;
}

.m-header {
  z-index: 100;
  position: sticky;
  top: 0;
  left: 0;
  height: 90px;
  background-color: var(--color-primary);
}
.m-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.m-header__ttl {
  height: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
}
.m-header__ttl img {
  width: auto;
  height: 100%;
}
.m-header__menu {
  color: var(--color-secondary);
  font-weight: 700;
}
.m-header__menu.is-over-break {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
}
.m-header__menu.is-over-break .m-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.m-header__menu.is-over-break .m-header__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  padding-right: 16px;
  padding-left: 16px;
  font-size: 18px;
  text-align: center;
}
.m-header__menu.is-break {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
}
.m-header__menu.is-break .m-header__list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
}
.m-header__menu.is-break .m-header__list li {
  position: relative;
  width: 100%;
}
.m-header__menu.is-break .m-header__list li::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100% - 36px);
  height: 2px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: currentColor;
  content: "";
}
.m-header__menu.is-break .m-header__list li:last-child::after {
  display: none;
}
.m-header__menu.is-break .m-header__list a {
  display: block;
  width: 100%;
  padding: 24px;
  font-weight: 700;
  font-size: 18px;
}
.m-header__menu.is-break .m-header__nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
.m-footer {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.m-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 16px;
}
.m-footer__list li {
  position: relative;
}
.m-footer__list li::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: currentColor;
  content: "";
}
.m-footer__list li:last-child::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 2px;
  height: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: currentColor;
  content: "";
}
.m-footer__list a {
  display: block;
  letter-spacing: -0.05em;
  text-align: center;
  word-over-break: auto-phrase;
  padding: 32px 24px;
  font-size: 18px;
}
.m-footer__copy {
  position: relative;
  padding: 16px;
  font-size: 14px;
  text-align: center;
}
.m-footer__copy::before {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 32px);
  height: 2px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: currentColor;
  content: "";
}
.m-fv {
  position: relative;
  height: calc(100svh - 90px);
  margin-bottom: 80px;
  background-color: var(--color-secondary);
}
.m-fv__media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* PC images */
}
.m-fv__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-animation: fadeSlide 17.5s infinite;
  animation: fadeSlide 17.5s infinite;
  opacity: 0;
}
.m-fv__media img.pc {
  display: block;
}
.m-fv__media img.pc:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.m-fv__media img.pc:nth-child(2) {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}
.m-fv__media img.pc:nth-child(3) {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}
.m-fv__media img.pc:nth-child(4) {
  -webkit-animation-delay: 10.5s;
  animation-delay: 10.5s;
}
.m-fv__media img.pc:nth-child(5) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
.m-fv__media img.mobile {
  display: none;
}
.m-fv__ttl {
  z-index: 1;
  position: absolute;
  bottom: 32px;
  left: 50%;
  width: 1264px;
  max-width: 100svw;
  padding-right: 16px;
  padding-left: 16px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: var(--color-white);
  font-weight: 700;
  font-size: 120px;
  line-height: 1.15;
  -webkit-filter: drop-shadow(7px 7px 4px var(--color-shadow));
  filter: drop-shadow(7px 7px 4px var(--color-shadow));
}
.m-fv-small {
  height: calc((100svh - 90px) / 2);
  margin-bottom: 100px;
}
.m-fv-small .m-fv__ttl {
  top: 50%;
  bottom: initial;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 64px;
  text-align: center;
}
@-webkit-keyframes fadeSlide {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeSlide {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.m-contents__container {
  margin-top: 100px;
  margin-bottom: 100px;
}
.m-contents__container:first-child {
  margin-top: 0;
}
.m-contents__container:last-child {
  margin-bottom: 0;
}
.m-contents__container--article {
  margin-top: 160px;
  margin-bottom: 160px;
}
.m-contents__container--article:first-child {
  margin-top: 0;
}
.m-contents__container--article:last-child {
  margin-bottom: 0;
}
.m-contents__ttl {
  padding-bottom: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 30px;
  text-align: center;
}
.m-contents__txt {
  padding-bottom: 24px;
  font-weight: 600;
  font-size: 26px;
  text-align: center;
}
.m-contents__txt--left {
  text-align: left;
  word-break: auto-phrase;
}
.m-btn {
  display: block;
  font-size: 10px;
}
.m-btn--primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  min-height: 210px;
  margin-bottom: 10px;
  padding-top: 16px;
  padding-right: 24px;
  padding-bottom: 60px;
  padding-left: 24px;
  border-radius: 20px;
  background-position: left center;
  background-size: cover;
  background-color: #ddd;
  color: var(--color-white);
  text-align: right;
}
.m-btn--primary::before {
  display: block;
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: -webkit-gradient(linear, right top, left top, from(rgb(36, 149, 255)), color-stop(40%, rgb(36, 149, 255)), color-stop(55%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(-90deg, rgb(36, 149, 255) 0%, rgb(36, 149, 255) 40%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0) 100%);
  content: "";
}
.m-btn--primary.bike {
  background-image: url(../images/btn-jobs-bike.png);
}
.m-btn--primary.cargo {
  background-image: url(../images/btn-jobs-cargo.png);
}
.m-btn--primary.staff {
  background-image: url(../images/btn-jobs-staff.png);
}
.m-btn--primary.part {
  background-image: url(../images/btn-jobs-part.png);
}
.m-btn--primary .m-btn__txt {
  -webkit-filter: drop-shadow(0 0 4px var(--color-secondary)) drop-shadow(0 0 4px var(--color-secondary)) drop-shadow(0 0 8px var(--color-secondary));
  filter: drop-shadow(0 0 4px var(--color-secondary)) drop-shadow(0 0 4px var(--color-secondary)) drop-shadow(0 0 8px var(--color-secondary));
}
.m-btn--secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 130px;
  margin-bottom: 10px;
  padding: 0 180px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-radius: 20px;
  background-color: var(--color-primary);
  color: var(--color-accent);
  text-align: center;
}
.m-btn--tertiary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  min-height: 70px;
  margin-inline: auto;
  padding: 16px;
  border-radius: 20px 0 20px 20px;
  background-color: var(--color-accent);
  color: var(--color-white);
  text-align: center;
  -webkit-filter: drop-shadow(2px 2px 2px var(--color-shadow));
  filter: drop-shadow(2px 2px 2px var(--color-shadow));
}
.m-btn--tertiary::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 32px;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 4px;
  background-color: currentColor;
  content: "";
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.m-btn--tertiary .m-btn__txt {
  font-size: 18px;
}
.m-btn__container {
  position: relative;
  width: 100%;
}
.m-btn__txt {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.15;
}
.m-btn__en {
  display: block;
  font-weight: 300;
  font-size: 14px;
}
.m-btn__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  bottom: -10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 180px;
  height: 70px;
  padding-top: 24px;
  padding-right: 32px;
  padding-bottom: 24px;
  padding-left: 32px;
  border-radius: 20px 0 20px 20px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 18px;
  -webkit-filter: drop-shadow(2px 2px 2px var(--color-shadow));
  filter: drop-shadow(2px 2px 2px var(--color-shadow));
}
.m-btn__sub::after {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: currentColor;
  content: "";
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.m-table {
  width: 100%;
  border: solid 2px var(--color-secondary);
}
.m-table__container:last-child .m-table__ttl,
.m-table__container:last-child .m-table__contents {
  border-bottom: none;
}
.m-table__ttl {
  width: 400px;
  padding: 16px;
  border-bottom: solid 2px var(--color-white);
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-weight: 700;
  vertical-align: middle;
}
.m-table__contents {
  padding: 16px;
  border-bottom: solid 2px var(--color-secondary);
  background-color: var(--color-white);
  font-weight: 400;
  vertical-align: middle;
}
.m-form {
  font-size: 26px;
}
.m-form__label {
  display: block;
  padding: 24px;
}
.m-form__label--required {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.m-form__label--required::after {
  min-width: 60px;
  margin-left: 16px;
  padding-top: 4px;
  padding-right: 8px;
  padding-bottom: 4px;
  padding-left: 8px;
  border-radius: 4px;
  background-color: var(--color-accent);
  content: "必須";
  color: var(--color-white);
  font-size: 18px;
  text-align: center;
}
.m-form__input {
  width: 100%;
  padding: 16px;
  border: solid 1px var(--color-sub);
}
.m-form__input:focus {
  outline-color: var(--color-primary);
}
.m-form__input-wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 24px;
}
.m-form__radio {
  position: relative;
  width: 24px;
  height: 24px;
  line-height: 1.15;
}
.m-form__radio:hover {
  cursor: pointer;
}
.m-form__radio:checked::before {
  border-color: var(--color-primary);
}
.m-form__radio:checked::after {
  opacity: 1;
}
.m-form__radio::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: solid 2px var(--color-sub);
  border-radius: 12px;
  content: "";
}
.m-form__radio::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 6px;
  background-color: var(--color-primary);
  content: "";
  opacity: 0;
}
.m-form__radio + span {
  width: 100%;
  padding-left: 8px;
}
.m-form textarea {
  min-height: 200px;
  resize: vertical;
}
.m-form label:has(.m-form__radio) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: -0.025em;
}
.m-form .m-table__ttl,
.m-form .m-table__contents {
  padding: 0;
}
.m-form .m-table__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 90px;
}
.m-form .error {
  padding-top: 4px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 18px;
}
.m-panel {
  display: grid;
  grid-template-rows: 50px 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  aspect-ratio: 19/16;
  width: 100%;
  height: 100%;
  padding-top: 40px;
  padding-right: 16px;
  padding-bottom: 40px;
  padding-left: 16px;
  gap: 16px 0;
  border-radius: 50px 0 50px 50px;
  background-color: #ddd;
  background-color: var(--color-primary);
  text-align: center;
}
.m-panel__ttl {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.15;
}
.m-panel__inner {
  display: contents;
}
.m-panel__txt {
  color: var(--color-accent);
  font-weight: 900;
  font-size: 90px;
  letter-spacing: 1.3px;
}
.m-panel__sub {
  color: var(--color-def);
  font-size: 50px;
}
.m-panel__sup {
  display: block;
  width: 100%;
  color: var(--color-def);
  font-size: 40px;
}
.m-panel__media {
  aspect-ratio: 269/162;
}
.m-panel__media img {
  -o-object-fit: contain;
  object-fit: contain;
}
.m-head-on-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.m-head-on-panel__ttl {
  grid-column: 1/3;
  padding: 8px;
  border-radius: 10px 10px 0 0;
  background-color: var(--color-primary);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 40px;
  text-align: center;
}
.m-head-on-panel__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  background-color: var(--color-white);
}
.m-head-on-panel__container::before {
  display: block;
  position: absolute;
  top: 50%;
  left: -1px;
  width: 2px;
  height: 80%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #888;
  content: "";
}
.m-head-on-panel__container:first-of-type::before {
  display: none;
}
.m-head-on-panel__container:nth-last-of-type(2) {
  border-radius: 0 0 0 10px;
}
.m-head-on-panel__container:last-of-type {
  border-radius: 0 0 10px 0;
}
.m-head-on-panel__amount {
  width: 100%;
  color: var(--color-accent);
  font-weight: 800;
  font-size: 120px;
  line-height: 1;
  text-align: center;
}
.m-head-on-panel__amount span {
  font-size: 90px;
}
.m-head-on-panel__note {
  padding-top: 8px;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.025em;
}
.m-head-on-panel__note::before {
  content: "※";
}
.m-toggle {
  background-color: var(--color-tertiary);
  font-size: 26px;
}
.m-toggle__ttl {
  width: 100%;
  padding-top: 16px;
  padding-right: 24px;
  padding-bottom: 16px;
  padding-left: 24px;
  color: var(--color-white);
  font-weight: 700;
}
.m-toggle__container {
  position: relative;
}
.m-toggle__container::before {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 48px);
  height: 1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--color-white);
  content: "";
}
.m-toggle__contents {
  display: block;
  padding: 24px;
  background-color: var(--color-white);
}
.m-toggle__contents .m-btn--tertiary {
  margin-top: 24px;
}
.m-standout-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 100px;
}
.m-standout-logo img {
  width: 100%;
  height: auto;
  padding: 0 16px;
  max-height: 90px;
}

.f-toggle__trigger {
  position: relative;
}
.f-toggle__trigger--menu {
  width: 60px;
  height: 60px;
  margin-right: -16px;
  background-color: var(--color-secondary);
}
.f-toggle__trigger--menu span {
  display: block;
  position: absolute;
  left: 50%;
  width: 32px;
  height: 4px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ddd;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}
.f-toggle__trigger--menu span:nth-child(1) {
  top: 16px;
}
.f-toggle__trigger--menu span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.f-toggle__trigger--menu span:nth-child(3) {
  bottom: 16px;
}
.f-toggle__trigger--article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 60px;
  padding-left: 60px;
}
.f-toggle__trigger--article::after, .f-toggle__trigger--article::before {
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  width: 30px;
  height: 4px;
  background-color: currentColor;
  content: "";
}
.f-toggle__trigger--article::before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.f-toggle__trigger--article::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}
.f-toggle__trigger--article span {
  position: absolute;
  top: 14px;
  left: 24px;
  width: 40px;
}
.f-toggle__target {
  width: 100% !important;
}

.m-btn--primary:hover .m-btn__sub::after,
.m-btn--secondary:hover .m-btn__sub::after {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.m-btn--tertiary:hover::after {
  -webkit-transform: translateY(-50%) scale(1.5);
  transform: translateY(-50%) scale(1.5);
}

.f-toggle.is-open .f-toggle__trigger {
  background-color: var(--color-accent);
  cursor: pointer;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.f-toggle.is-open .f-toggle__trigger::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}
.f-toggle.is-open .f-toggle__trigger:hover {
  opacity: 0.7;
}
.f-toggle.is-open .f-toggle__trigger--menu span:nth-child(1) {
  -webkit-transform: translate(-50%, calc(-50% + 14px)) rotate(45deg);
  transform: translate(-50%, calc(-50% + 14px)) rotate(45deg);
}
.f-toggle.is-open .f-toggle__trigger--menu span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
}
.f-toggle.is-open .f-toggle__trigger--menu span:nth-child(3) {
  -webkit-transform: translate(-50%, calc(-50% - 10px)) rotate(-45deg);
  transform: translate(-50%, calc(-50% - 10px)) rotate(-45deg);
}
@media screen and (max-width: 1024px) {
  .l-container {
    padding: 0 16px;
  }
  .m-header {
    height: 60px;
  }
  .m-header__ttl {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .m-header__menu.is-over-break .m-header__list a {
    font-size: 14px;
  }
  .m-header__menu.is-over-break .m-header__list a {
    padding-right: 8px;
    padding-left: 8px;
  }
  .m-header__menu.is-break .m-header__list a {
    font-size: 14px;
  }
  .m-header__menu.is-break .m-header__list a {
    padding: 16px;
  }
  .m-header__nav {
    background-color: var(--color-white);
  }
  .m-footer__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
  }
  .m-footer__list li::before {
    display: none;
  }
  .m-footer__list li:first-child a {
    padding-top: 16px;
  }
  .m-footer__list li:last-child a {
    padding-bottom: 16px;
  }
  .m-footer__list li:last-child::after {
    display: none;
  }
  .m-footer__list li {
    width: 100%;
  }
  .m-footer__list a {
    font-size: 14px;
  }
  .m-footer__list a {
    width: 100%;
    padding: 8px;
  }
  .m-footer__copy {
    padding: 8px;
  }
  .m-footer__copy {
    font-size: 12px;
  }
  .m-fv {
    margin-bottom: 48px;
  }
  .m-fv {
    height: calc(100svh - 60px);
    max-height: 900px;
  }
  .m-fv__ttl {
    font-size: 48px;
  }
  .m-fv__ttl {
    font-size: clamp(45px, 15vw, 80px);
  }
  .m-fv__ttl {
    padding-right: 8px;
    padding-left: 8px;
  }
  .m-fv-small {
    margin-bottom: 60px;
  }
  .m-fv-small {
    height: calc((100svh - 60px) / 2);
  }
  .m-fv-small .m-fv__ttl {
    font-size: 32px;
  }
  .m-contents__container {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .m-contents__container--article {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .m-contents__ttl {
    font-size: 18px;
  }
  .m-contents__ttl {
    padding-bottom: 16px;
  }
  .m-contents__txt {
    font-size: 16px;
  }
  .m-contents__txt {
    padding-bottom: 16px;
  }
  .m-btn--primary {
    padding-right: 16px;
    padding-left: 16px;
  }
  .m-btn--primary {
    padding-top: 8px;
  }
  .m-btn--primary {
    padding-bottom: 40px;
  }
  .m-btn--primary {
    min-height: 120px;
  }
  .m-btn--secondary {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .m-btn--secondary {
    min-height: 72px;
    padding: 0;
  }
  .m-btn--tertiary {
    padding: 8px;
  }
  .m-btn--tertiary {
    width: calc(100% - 32px);
    max-width: 320px;
    min-height: 60px;
  }
  .m-btn--tertiary .m-btn__txt {
    font-size: 14px;
  }
  .m-btn__txt {
    font-size: 18px;
  }
  .m-btn__en {
    font-size: 12px;
  }
  .m-btn__sub {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .m-btn__sub {
    padding-right: 24px;
    padding-left: 24px;
  }
  .m-btn__sub {
    font-size: 14px;
  }
  .m-btn__sub {
    width: 120px;
    height: 50px;
    padding-top: 16px;
    padding-right: 24px;
    padding-bottom: 16px;
    padding-left: 24px;
  }
  .m-table__ttl {
    padding: 8px;
  }
  .m-table__ttl {
    width: 280px;
  }
  .m-table__contents {
    padding: 8px;
  }
  .m-form {
    font-size: 16px;
  }
  .m-form__label {
    padding: 16px;
  }
  .m-form__label--required::after {
    font-size: 14px;
  }
  .m-form__label--required::after {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .m-form__label--required::after {
    padding-right: 4px;
    padding-left: 4px;
  }
  .m-form__label--required::after {
    margin-left: 8px;
  }
  .m-form__label--required::after {
    min-width: 45px;
  }
  .m-form__input {
    padding: 8px;
  }
  .m-form__input-wrap {
    padding: 16px;
  }
  .m-form__radio {
    width: 16px;
    height: 16px;
  }
  .m-form__radio::before {
    width: 16px;
    height: 16px;
  }
  .m-form__radio::after {
    width: 8px;
    height: 8px;
  }
  .m-form__radio + span {
    padding-left: 4px;
  }
  .m-form .error {
    font-size: 14px;
  }
  .m-form .error {
    padding-top: 4px;
  }
  .m-panel {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .m-panel {
    padding-right: 8px;
    padding-left: 8px;
  }
  .m-panel {
    grid-template-rows: 30px 1fr;
    aspect-ratio: auto;
    border-radius: 20px 0 20px 20px;
  }
  .m-panel__ttl {
    font-size: 24px;
  }
  .m-panel__txt {
    font-size: 40px;
  }
  .m-panel__sub {
    font-size: 28px;
  }
  .m-panel__sup {
    font-size: 24px;
  }
  .m-head-on-panel__ttl {
    font-size: 24px;
  }
  .m-head-on-panel__ttl {
    padding: 4px;
  }
  .m-head-on-panel__container {
    padding-right: 8px;
    padding-left: 8px;
  }
  .m-head-on-panel__container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .m-head-on-panel__amount {
    font-size: 48px;
  }
  .m-head-on-panel__amount span {
    font-size: 40px;
  }
  .m-head-on-panel__note {
    font-size: 16px;
  }
  .m-head-on-panel__note {
    padding-top: 4px;
  }
  .m-toggle {
    font-size: 16px;
  }
  .m-toggle__ttl {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .m-toggle__ttl {
    padding-right: 16px;
    padding-left: 16px;
  }
  .m-toggle__container::before {
    width: calc(100% - 24px);
  }
  .m-toggle__contents {
    padding: 16px;
  }
  .m-toggle__contents .m-btn--tertiary {
    margin-top: 16px;
  }
  .m-standout-logo {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .f-toggle__trigger--article {
    padding-right: 40px;
    padding-left: 40px;
  }
  .f-toggle__trigger--article::after, .f-toggle__trigger--article::before {
    width: 15px;
    height: 2px;
  }
  .f-toggle__trigger--article span {
    top: 6px;
    left: 18px;
    width: 24px;
  }
  .is-over-break {
    display: none !important;
  }
  .f-toggle.is-open .f-toggle__trigger:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 460px) {
  .l-col-2 {
    grid-template-columns: 1fr;
  }
  .m-fv__media img.pc {
    display: none;
  }
  .m-fv__media img.mobile {
    display: block;
    height: 130%;
  }
  .m-fv__media img.mobile:nth-child(6) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
  .m-fv__media img.mobile:nth-child(7) {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s;
  }
  .m-fv__media img.mobile:nth-child(8) {
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
  }
  .m-fv__media img.mobile:nth-child(9) {
    -webkit-animation-delay: 10.5s;
    animation-delay: 10.5s;
  }
  .m-fv__media img.mobile:nth-child(10) {
    -webkit-animation-delay: 14s;
    animation-delay: 14s;
  }
  .m-fv__ttl {
    font-size: clamp(45px, 16vw, 75px);
  }
  .m-btn--tertiary::after {
    right: 20px;
  }
  .m-btn__sub {
    width: 90px;
  }
  .m-head-on-panel {
    grid-template-columns: 1fr;
  }
  .m-head-on-panel__ttl {
    grid-column: 1;
  }
  .m-head-on-panel__container {
    border-radius: 0;
  }
  .m-head-on-panel__container::before {
    top: 0;
    left: 50%;
    width: calc(100% - 16px);
    height: 2px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .m-head-on-panel__container:nth-last-of-type(2) {
    border-radius: 0;
  }
  .m-head-on-panel__container:last-of-type {
    border-radius: 0 0 10px 10px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .m-btn__sub {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .m-btn__sub {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media screen and (max-width: 765px) {
  .m-table__container {
    display: grid;
    grid-template-columns: 1fr;
    border-bottom: none;
  }
  .m-table__ttl {
    width: 100%;
    border-color: var(--color-secondary);
  }
  .m-table__contents {
    border-bottom: none;
  }
  .m-form .m-table__contents {
    min-height: 80px;
  }
}
@media screen and (min-width: 459px) {
  .m-head-on-panel__container:nth-of-type(odd)::before {
    display: none;
  }
  .is-sp {
    display: none !important;
  }
}
@media screen and (min-width: 1023px) {
  .is-break {
    display: none !important;
  }
}
@media screen and (max-width: 1264px) {
  .is-pc {
    display: none !important;
  }
}