@charset "UTF-8";
.no_item {
  font-weight: 700;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  cursor: pointer;
}

@font-face {
  font-family: "Kaisei Opti";
  font-style: "normal";
  font-weight: 700;
  font-display: swap;
  src: url("/wp-content/themes/yokosuka_curry/asset/font/KaiseiOpti-Bold.ttf") format("woff");
}
@font-face {
  font-family: "Noto Sans";
  font-style: "normal";
  font-weight: 400;
  font-display: swap;
  src: url("/wp-content/themes/yokosuka_curry/asset/font/NotoSansJP-VariableFont_wght.ttf") format("woff");
}
@font-face {
  font-family: "Noto Sans";
  font-style: "normal";
  font-weight: 700;
  font-display: swap;
  src: url("/wp-content/themes/yokosuka_curry/asset/font/NotoSansJP-VariableFont_wght.ttf") format("woff");
}
/*                共通
======================================================= */
/*                leyout
======================================================= */
#header.UpMove {
  animation: UpAnime 0.5s forwards;
}
@media only screen and (max-width: 767px) {
  #header.UpMove {
    animation: none;
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-140px);
  }
}
#header.DownMove {
  animation: DownAnime 0.5s forwards;
}
@media only screen and (max-width: 767px) {
  #header.DownMove {
    animation: none;
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-140px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.l-hd {
  background-color: #ffe100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}

.l-hd__inr {
  position: relative;
}

.l-hd_top {
  background-color: #ffd601;
}
@media only screen and (max-width: 767px) {
  .l-hd_top {
    display: none;
  }
}

.p-hd_top__ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 50px;
}

.p-hd_top__li {
  margin-right: 20px;
}
.p-hd_top__li:last-child {
  margin-right: 0;
}

.p-hd_top__link {
  font-size: 14px;
  font-weight: 700;
  color: #11307d;
  transition: 0.5s;
  cursor: pointer;
}
.p-hd_top__link:hover {
  color: #be0026;
}
.p-hd_top__link:hover .p-hd_top__img {
  opacity: 0.6;
}

.p-hd_top__img {
  transition: 0.5s;
}

.l-hd_under {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px 11px 25px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .l-hd_under {
    padding: 11px 29px 10px 7px;
    height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .l-hd_under--sp {
    padding: 20px 39px 0px 17px;
  }
}

@media only screen and (max-width: 767px) {
  .p-hd_logo {
    max-width: 149px;
  }
}

.p-hd-nav {
  max-width: 880px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-hd-nav {
    display: none;
  }
}

.p-hd-nav__ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.p-hd-nav__li {
  color: #11307d;
  width: 25%;
  position: relative;
  height: inherit;
  display: flex;
  align-items: center;
  transition: 0.5s;
}
.p-hd-nav__li::before {
  content: "";
  width: 1px;
  height: 52px;
  background: #11307d;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-hd-nav__li:first-child::before {
  content: none;
}
.p-hd-nav__li:hover {
  color: #be0026;
}
.p-hd-nav__li:hover .p-mega-menu__wrap {
  opacity: 1;
  visibility: visible;
}

.p-hd-nav__link {
  flex: 1;
  height: 100%;
  padding-top: 12px;
}

.p-hd-nav__menu--ja {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  flex: 1;
  line-height: 1.25;
}
@media only screen and (max-width: 1023px) {
  .p-hd-nav__menu--ja {
    font-size: 14px;
  }
}
.p-hd-nav__menu--en {
  display: block;
  margin-top: 6px;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
}

.p-mega-menu__wrap {
  width: 250px;
  padding-top: 31px;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 2;
}

.p-mega-menu__ul {
  padding: 40px 20px 35px;
  border-radius: 20px;
  background-color: #ffd601;
}
@media only screen and (max-width: 1279px) {
  .p-mega-menu__ul {
    padding: 40px 10px 35px;
  }
}

.p-mega-menu__li {
  color: #11307d;
  font-weight: 700;
  font-size: 16px;
  margin-top: 25px;
  text-align: center;
  transition: 0.5s;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .p-mega-menu__li {
    font-size: 15px;
  }
}
.p-mega-menu__li:first-child {
  margin-top: 0;
}
.p-mega-menu__li:hover {
  color: #be0026;
}

.l-hd-spmenu {
  margin-top: 17px;
}
@media only screen and (min-width: 768px) {
  .l-hd-spmenu {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .l-hd-spmenu {
    margin-top: 14px;
  }
}

.l-hd-spmenu__btn {
  position: relative;
  width: 32px;
  height: 20px;
}
.l-hd-spmenu__btn.is-active .border01 {
  transform: translateY(10px) rotate(45deg);
  top: -2px;
}
.l-hd-spmenu__btn.is-active .border02 {
  opacity: 0;
}
.l-hd-spmenu__btn.is-active .border03 {
  transform: translateY(-8px) rotate(-45deg);
}

.l-hd-spmenu__border {
  position: absolute;
  display: block;
  width: 32px;
  height: 2px;
  background: #11307d;
  transition: all 0.5s;
}

.border01 {
  top: 0;
}

.border02 {
  top: 9px;
}
@media only screen and (max-width: 767px) {
  .border02 {
    top: 8px;
  }
}

.border03 {
  top: 18px;
}
@media only screen and (max-width: 767px) {
  .border03 {
    top: 16px;
  }
}

.p-hd-spmenu__txt {
  font-size: 11px;
  color: #11307d;
  font-weight: 700;
  position: absolute;
  top: 27px;
  left: -1px;
}
@media only screen and (max-width: 767px) {
  .p-hd-spmenu__txt {
    font-size: 10px;
    top: 25px;
  }
}

/*                leyout
======================================================= */
#wrapper {
  overflow: hidden;
}

/*                p-home-kv
======================================================= */
.l-home-firstview {
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 34px;
}
@media only screen and (max-width: 767px) {
  .l-home-firstview {
    height: auto;
    padding-bottom: 38px;
  }
}

.l-home-kv {
  margin-top: 20px;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .l-home-kv {
    margin-top: 10px;
    padding: 0 12px 0 13px;
  }
}

.l-home-kv__inr {
  height: 100%;
}

.swiper {
  overflow: visible;
}

.p-fv-slide__img {
  border: 10px solid #fff;
  border-radius: 40px;
  aspect-ratio: 593/454;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination {
  width: 30% !important;
  bottom: -25px !important;
  left: 51% !important;
}
@media only screen and (max-width: 767px) {
  .swiper-pagination {
    left: 71% !important;
  }
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #be0026;
}

.l-fv-logo__inr {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .l-fv-logo__inr {
    flex-direction: column;
  }
}
.l-fv-logo__inr::before, .l-fv-logo__inr::after {
  content: "";
  position: absolute;
  top: 41%;
  left: 0%;
  background-image: url(/wp-content/themes/yokosuka_curry/asset/media/images/home/fv_logo_back.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 360px;
  height: 100px;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .l-fv-logo__inr::before, .l-fv-logo__inr::after {
    background-image: url(/wp-content/themes/yokosuka_curry/asset/media/images/home/fv_logo_back_sp.svg);
    width: 100px;
    left: -13px;
    top: 74%;
  }
}
.l-fv-logo__inr::after {
  left: auto;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .l-fv-logo__inr::after {
    right: -12px;
  }
}

.p-fv-logo__txt-wrap {
  margin-top: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-fv-logo__txt-wrap {
    margin-top: 43px;
    order: 1;
  }
}

.p-fv-logo__sub {
  font-weight: 700;
  background: #11307d;
  padding: 1px 26px 0px 26px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  line-height: 0.8;
  height: 40px;
  font-size: 20px;
  white-space: nowrap;
}
@media only screen and (max-width: 1023px) {
  .p-fv-logo__sub {
    font-size: 18px;
    padding-top: 3px;
    height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .p-fv-logo__sub {
    height: 37px;
    padding: 0 14px 0 14px;
    font-size: 15px;
    line-height: 1;
    color: #ffe100;
  }
}

.p-fv-logo__main {
  margin-top: -5px;
  font-weight: 700;
  font-size: 90px;
  font-family: "Kaisei Opti";
  line-height: 1.448;
  color: #11307d;
  letter-spacing: -0.05em;
}
@media only screen and (max-width: 1279px) {
  .p-fv-logo__main {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1023px) {
  .p-fv-logo__main {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .p-fv-logo__main {
    margin-top: 15px;
    font-size: 55px;
    line-height: 1;
  }
}

.p-fv-logo__main-inr {
  display: inline-block;
}

.p-fv-logo__left {
  position: relative;
  top: 10px;
  left: 10px;
  max-width: 222px;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .p-fv-logo__left {
    max-width: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .p-fv-logo__left {
    max-width: 100%;
    order: 2;
    position: static;
  }
}

.p-fv-logo__right {
  position: relative;
  top: 26px;
  right: 0px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-fv-logo__right {
    margin-top: 16px;
    position: static;
    order: 3;
  }
}

@media only screen and (max-width: 767px) {
  .p-fv-anker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
  }
}

.p-fv-anker__img {
  max-width: 67px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .p-fv-anker__img {
    max-width: 27px;
  }
}

.p-fv-anker__txt {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  font-family: "Kaisei Opti";
  color: #11307d;
  line-height: 1.26;
}
@media only screen and (max-width: 1023px) {
  .p-fv-anker__txt {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .p-fv-anker__txt {
    font-size: 19px;
    line-height: 1.052;
  }
}
.p-fv-anker__txt:first-of-type {
  margin-top: 4px;
}
@media only screen and (max-width: 767px) {
  .p-fv-anker__txt:first-of-type {
    margin-top: 0;
  }
}

.p-fv-logo__right-img {
  max-width: 222px;
}
@media only screen and (max-width: 1023px) {
  .p-fv-logo__right-img {
    max-width: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .p-fv-logo__right-img {
    max-width: 138px;
  }
}