@charset "UTF-8";
button, input, optgroup, select, textarea {
  font-family: "Noto Sans JP", sans-serif;
}

.pc-only {
  display: block !important;
	width: 960px;
    margin: 0 auto;
}
.sp-only {
  display: none !important;
}
@media screen and (max-width: 760px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}

html {
  width: 100%;
}
html.is-fixed {
  position: fixed;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.45);
}

/* MV */
.mv {
  width: 100%;
  background:linear-gradient(120deg, #1E1689 0%, #040043 93%);
}
.head-nav {
  width: 1104px;
  display: flex;
  justify-content: flex-end;
  gap: 0 24px;
  margin: 0 auto;
  padding: 16px 0;
}
@media screen and (max-width: 760px) {
  .head-nav {
    width: 100%;
    gap: 0 8px;
    padding: 16px 20px;
  }
}
.head-nav-button button {
  font-size: 16px;
}
@media screen and (max-width: 760px) {
  .head-nav-button button {
    font-size: 14px;
  }
}
.head-nav-search {
  width: 94px;
}
@media screen and (max-width: 760px) {
  .head-nav-search {
    width: 78px;
  }
}
.head-nav-member {
  width: 164px;
}
@media screen and (max-width: 760px) {
  .head-nav-member {
    width: 108px;
  }
  .head-nav-member.is-login {
    width: 130px;
  }
}
@media screen and (max-width: 760px) {
  .head-nav-search button,.head-nav-member button {
    height: 30px;
    min-height: auto;
    font-size: 14px;
  }
}
.head-nav-search-form {
  display: flex;
}
.head-nav-search-form.is-hide,.head-nav-search-modal.is-hide {
  display: none;
}
.head-nav-search-form input {
  width: 346px;
  height: 44px;
  background: #fff;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
}
.head-nav-search-form button {
  width: 100px;
  height: 44px;
  font-size: 16px;
  font-weight: normal;
  border: none;
  border-radius: 0 8px 8px 0;
  background: #3064D5;
  transition: all 0.4s;
}
.head-nav-search-form button:hover {
  background-color: #140D77 !important;
}
.modal {
  all: unset;
  display: revert;
  position: fixed;
  left: 50%;
  background-color: #FFFFFF;
  overflow: auto;
  transform: translateX(-50%);
  width: 100%;
  max-height: calc(100dvh - 9px);
  bottom: 0;
  border-radius: 8px 8px 0 0;
}
.modal-inner {
  max-height: calc(100dvh - 9px);
  overflow: auto;
}
.modal-header {
  padding: 32px 18px 16px;
}
.modal-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #697180;
  -webkit-mask-image: url(../images/top/new_top/icon/close_black.svg);
  mask-image: url(../images/top/new_top/icon/close_black.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  cursor: pointer;
}
.modal-body > div {
  margin: 0 20px 32px 20px !important;
}
.modal-body > div::before {
  position: absolute;
  z-index: 1;
  content: "";
  width: 16px;
  height: 16px;
  top: 16px;
  left: 8px;
  background: url(../images/top/new_top/icon/oe.svg) no-repeat;
  background-size: contain;
}
.modal-body label {
  left: 32px !important;
  font-size: 12px !important;
}
.modal-body input {
  font-size: 14px;
  width: calc(100% - 40px);
  padding: 23px 8px 7px 32px !important;
}
.modal-footer {
  background-color: #F5F7FA;
  padding: 16px 20px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4509803922);
}
.modal-footer button {
  width: 256px;
  margin: 0 auto;
  display: block;
  height: 44px;
  box-sizing: border-box;
  font-size: 16px;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
    to {
    transform: translateX(0%);
  }
}
.scroll-infinity-wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity-list {
  display: flex;
  gap: 0 24px;
  margin-left: 24px;
}
@media screen and (max-width: 760px) {
  .scroll-infinity-list {
    gap: 0 8px;
    margin-left: 8px;
  }
}
.scroll-infinity-left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity-right {
  animation :infinity-scroll-right 80s infinite linear 0.5s both;
}
.scroll-infinity-item {
  width: 240px;
}
@media screen and (max-width: 760px) {
  .scroll-infinity-item {
    width: 163px;
  }
}
.scroll-infinity-item > img {
  width: 100%;
}
.mv-title {
  line-height: 1.4;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  padding: 10px 0 24px 0;
}
@media screen and (max-width: 760px) {
  .mv-title {
    font-size: 24px;
  }
}
.mv-title span {
  font-size: 20px;
}
@media screen and (max-width: 760px) {
  .mv-title span {
    font-size: 18px;
  }
}
.mv-button {
  padding: 40px 0 64px 0;
}
@media screen and (max-width: 760px) {
  .mv-button {
    padding: 24px 0 40px 0;
  }
}
.mv-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  max-width: 335px;
  font-size: 16px;
  text-decoration: none;
  font-weight: normal;
  margin: 0 auto;
}
@media screen and (max-width: 760px) {
  .mv-button a {
    max-width: 256px;
  }
}

/* section */
.section-basic {
  width: 1104px;
  margin: 0 auto;
}
@media screen and (max-width: 760px) {
  .section-basic {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
.banner {
  margin-top: 64px;
}
@media screen and (max-width: 760px) {
  .banner {
    margin-top: 24px;
    border-radius: 8px;
    overflow: hidden;
  }
}
.banner a {
  transition: 0.5s all;
}
.banner a:hover {
  opacity: 0.7;
}
.banner a img {
  width: 100%;
}
.section-title {
  font-size: 32px;
  font-weight: normal;
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 760px) {
  .section-title {
    font-size: 20px;
    text-align: left;
    font-weight: bold;
  }
}
.section-list {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 760px) {
  .section-list {
    display: block;
    justify-content: space-between;
    margin-top: 16px;
  }
}
.section-list-item {
  width: 258px;
}
@media screen and (max-width: 760px) {
  .section-list-item {
    width: 100%;
  }
  .section-list-item + .section-list-item {
    margin-top: 24px;
  }
}
.section-list-item img {
  width: 100%;
}
@media screen and (max-width: 760px) {
  .section-list-item img {
    display: none;
  }
}
.section-list-title {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  margin-top: 8px;
}
.section-list-title:before {
  content: "";
  width: 21px;
  height: 21px;
  margin-right: 8px;
}
.section-list-title01:before {
  background: url(../images/top/new_top/icon/numbers1_fill.svg) no-repeat;
  background-size: contain;
}
.section-list-title02:before {
  background: url(../images/top/new_top/icon/numbers2_fill.svg) no-repeat;
  background-size: contain;
}
.section-list-title03:before {
  background: url(../images/top/new_top/icon/numbers3_fill.svg) no-repeat;
  background-size: contain;
}
.section-list-title04:before {
  background: url(../images/top/new_top/icon/numbers4_fill.svg) no-repeat;
  background-size: contain;
}
.section-list-text {
  font-size: 14px;
  margin-top: 8px;
}

.ikumiru-logo {
  width: 352px;
  margin: 80px auto 0 auto;
}
@media screen and (max-width: 760px) {
  .ikumiru-logo {
    width: calc(100% + 40px);
    margin: 40px 0 0 -20px;
    padding: 40px 20px 0 20px;
    border-top: solid 8px #E9ECF2;
  }
}
.ikumiru-logo img {
  width: 100%;
}
.ikumiru-lead {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-top: 64px;
}
@media screen and (max-width: 760px) {
  .ikumiru-lead {
    font-size: 18px;
  }
}
.ikumiru-lead-orange {
  color: #F06D22;
}
.ikumiru-lead-blue {
  color: #559FAB;
}
.ikumiru-lead rt {
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 760px) {
  .ikumiru-lead rt {
    font-size: 12px;
  }
}
.ikumiru-text-center {
  font-size: 16px;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 760px) {
  .ikumiru-text-center {
    text-align: left;
    margin-top: 16px;
  }
}
.ikumiru-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  margin-top: 16px;
}
@media screen and (max-width: 760px) {
  .ikumiru-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 760px) {
  .ikumiru-text span {
    flex: 1;
  }
}
.ikumiru-text::before {
  content: "";
  width: 42px;
  height: 42px;
  margin-right: 9.5px;
  background: url(../images/top/new_top/ikumiru_icon.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 760px) {
  .ikumiru-text::before {
    width: 44x;
    height: 44px;
  }
}
.ikumiru-movie {
  width: 728px;
  margin: 24px auto 0 auto;
}
@media screen and (max-width: 760px) {
  .ikumiru-movie {
    width: 100%;
    margin: 16px auto 0 auto;
  }
}
.ikumiru-movie iframe {
  width: 728px;
  height: 410px;
}
@media screen and (max-width: 760px) {
  .ikumiru-movie iframe {
    width: 100%;
    height: calc(61vw - 40px);
  }
}

@media screen and (min-width: 761px) {
  .ikumiru-movie-wrap {
    display: flex;
  }
}

@media screen and (min-width: 761px) {
  .ikumiru-movie-wrap .ikumiru-movie {
    width: 540px;
  }
}

@media screen and (min-width: 761px) {
  .ikumiru-movie-wrap .ikumiru-movie iframe {
    width: 540px;
    height: 434px;
  }
}





.ikumiru-caption {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-top: 8px;
}
.ikumiru-button-primary {
  width: 352px;
  margin: 40px auto 0 auto;
}
@media screen and (max-width: 760px) {
  .ikumiru-button-primary {
    width: 100%;
  }
}
.ikumiru-button-secondary {
  width: 352px;
  margin: 24px auto 0 auto;
}
@media screen and (max-width: 760px) {
  .ikumiru-button-secondary {
    width: 100%;
  }
}
.ikumiru-button-primary button,.ikumiru-button-secondary button {
  width: 100%;
  max-width: none;
  height: 53px;
  font-size: 18px;
}
.ikumiru-button-secondary span {
  font-size: 14px;
  font-weight: normal;
}
.ikumiru-coupon {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.banner-area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 120px;
}
@media screen and (max-width: 760px) {
  .banner-area {
    margin-top: 96px;
    gap: 16px;
  }
}
.banner-area li {
  width: 258px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 760px) {
  .banner-area li {
    width: calc(50% - 8px);
  }
}
.banner-area li a {
  transition: all 0.4s;
}
.banner-area li a:hover {
  opacity: 0.7;
}
.banner-area li img {
  width: 100%;
}

.footer-link {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 120px;
}
@media screen and (max-width: 760px) {
  .footer-link {
    margin-top: 40px;
  }
}
.footer-link li {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-link li a {
  transition: all 0.4s;
}
.footer-link li a:hover {
  opacity: 0.7;
}
.footer-link li img {
  width: 100%;
  border-radius: 8px;
}


.attention__wrap.emergency {
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 16px;
  font-weight: 400;
  background-color: #fff7f7;
}

.attention__wrap.emergency .attention__title {
  display: flex;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #d63333;
}

.attention__wrap.emergency .attention__description {
  margin-right: 8px;
  font-size: 16px;
  color: #d63333;
}

