@charset "utf-8";

/*-------------------------------------------------------------------
setting basic
-------------------------------------------------------------------*/
body.is-active {
  overflow: hidden;
}

body.ootsuka {
  font-family: 'Noto Sans JP', sans-serif;
}

a {
  transition: .3s ease-out;
}

a:hover {
  opacity: .9;
}

.pc-none {
  display: none;
}

.sp-none {
  display: inline-block;
}

/* スマホサイズ */
@media screen and (max-width: 750px) {
  .pc-none {
    display: inline-block;
  }
  .sp-none {
    display: none;
  }
}

/* アニメーション用 */
.js-fadeIn {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.js-fadeIn.is-visible {
  opacity: 1;
}

.js-popUp {
  transform: scale(.9);
  opacity: 0;
  visibility: hidden;
}



/*-------------------------------------------------------------------
header
-------------------------------------------------------------------*/
.ootsuka .header {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 15px;
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 99;
  min-width: 100%;
}

.ootsuka .header__logo {
  display: flex;
  align-items: center;
}

.header__logo-mynavi {
  max-width: 263px;
}

.header__logo-otsuka {
  max-width: 126px;
  margin-left: 24px;
  position: relative;
}

.header__logo-otsuka::before {
  position: absolute;
  content: "";
  width: 1px;
  background: #787878;
  height: 25px;
  top: 53%;
  left: -7px;
  transform: translateY(-50%);
}

/* スマホサイズ */
@media screen and (max-width: 750px) {
  .ootsuka .header {
    height: 60px;
    padding: 0 5px 0;
  }

  .header__logo-mynavi {
    max-width: 135px;
  }

  .header__logo-otsuka {
    width: 65px;
    margin-left: 13px;
  }

  .header__logo-otsuka::before {
    height: 13px;
    left: -4px;

  }
}

/*-------------------------------------------------------------------
drawer
-------------------------------------------------------------------*/
.drawer {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  position: fixed;
  background: #fff;
  top: 0;
  right: 0;
  height: 100vh;
  width: 29.2%;
  padding: 85px 51px;
  z-index: 9;
}

.drawer::before {
  content: "";
  position: absolute;
  background: url(../img/drawer_bg.png) center center no-repeat;
	background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.drawer.is-active {
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}

.drawer__item + .drawer__item {
  margin-top: 64px;
}

.drawer__link {
  display: block;
}

.drawer__link--event {
  width: 113px;
}

.drawer__link--about {
  width: 148px;
}

.drawer__link--special {
  width: 219px;
}

.drawer__link--recommend {
  width: 273px;
}

/* スマホサイズ */
@media screen and (max-width: 750px) {
  .drawer {
    width: 100%;
  }
}

/*-------------------------------------------------------------------
drawer-icon
-------------------------------------------------------------------*/
.drawer-icon {
  position: fixed;
  top: 21px;
  right: 17px;
  z-index: 10;
}

.drawer-icon__button {
  width: 60px;
  height: 60px;
  padding: 0;
  position: relative;
}

.drawer-icon__button span {
  display: block;
  position: absolute;
  width: 50px;
  height: 1px;
  background: #464646;
  left: 50%;
  transform: translateX(-50%);
  transition: .3s ease-out;
}

.drawer-icon__button span:nth-child(1) {
  top: 17px;
}
.drawer-icon__button span:nth-child(2) {
  top: 30px;
}
.drawer-icon__button span:nth-child(3) {
  bottom: 17px;
}

.drawer-icon__button.is-active span:nth-child(1) {
  top: 29px;
  width: 54px;
  transform: translateX(-50%) rotate(28deg);
}
.drawer-icon__button.is-active span:nth-child(2) {
  opacity: 0;
}
.drawer-icon__button.is-active span:nth-child(3) {
  bottom: 29px;
  width: 54px;
  transform: translateX(-50%) rotate(-28deg);
}

/* スマホサイズ */
@media screen and (max-width: 750px) {
  .drawer-icon {
    top: 0px;
    right: 11px;
  }
}

/*-------------------------------------------------------------------
drawer-bg
-------------------------------------------------------------------*/
.drawer-bg {
  background: transparent;
  transition: .3s ease-out;
}

.drawer-bg.is-active {
  background: rgb(0, 0, 0, .5);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
}

/*-------------------------------------------------------------------
mv
-------------------------------------------------------------------*/
.mv__wrap {
  background: url(../img/mv_bg1.png) center center no-repeat;
	background-size: cover;
  width: 100%;
  height: 720px;
  padding-top: 210px;
  position: relative;
}

.mv__inner {
  max-width: 1140px;
  padding: 0 25px;
  margin: auto;
}

.mv__box {
  position: relative;
  z-index: 0;
}

.mv__box::before {
  content: "";
  position: absolute;
  background: url(../img/mv_person.png) center center no-repeat;
  background-size: contain;
  max-width: 495px;
  width: 100%;
  height: 45vw;
  max-height: 576px;
  min-height: 463px;
  top: -19%;
  right: 0;
  opacity: 0;
  animation: fadeIn 1s ease-in-out .7s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.mv__title {
  max-width: 593px;
  position: relative;
  opacity: 0;
  animation: fadeIn 1s ease-in-out .7s forwards;
}

.mv__lead {
  max-width: 505px;
  margin-top: 196px;
  margin-left: 8px;
  position: relative;
  opacity: 0;
  animation: fadeIn 1s ease-in-out .7s forwards;
}

/* スマホサイズ */
@media screen and (max-width: 750px) {
  .mv__wrap {
    background: url(../img/mv_bg1_sp.png) center center no-repeat;
    background-size: cover;
    padding-top: 108px;
    height: 665px;
  }

  .mv__wrap::before {
    content: initial;
  }

  .mv__inner {
    padding: 0;
  }

  .mv__box::before {
    content: "";
    position: absolute;
    background: url(../img/mv_person_sp.png) center center no-repeat;
    background-size: contain;
    max-width: 100%;
    width: 94%;
    height: 47vw;
    max-height: 100%;
    min-height: 421px;
    bottom: -331px;
    left: 13px;
    right: initial;
    top: initial;
  }

  .mv__title {
    max-width: 417px;
    width: 86%;
    margin: auto;
  }

  .mv__lead {
    max-width: 446px;
    width: 92%;
    margin: 10px auto 0;
    transform: translateX(-26px);
    position: relative;
  }

}


/*-------------------------------------------------------------------
  event
-------------------------------------------------------------------*/
.event {
  background: #88D5E8;
}

.event__wrap {
  position: relative;
  z-index: 1;
  margin-top: -2px;
  padding-top: 67px;
  padding-bottom: 145px;
}

.event__inner {
  max-width: 810px;
  padding: 0 25px;
  margin: auto;
}

.event__title {
  max-width: 202px;
  width: 100%;
  padding-top: 30px;
  margin: auto;
}

.event__box {
  background: #fff;
  margin-top: 36px;
  border-radius: 10px;
  padding: 28px 44px 51px;
  position: relative;
}

.event__box::before {
  content: "";
  position: absolute;
  background: url(../img/event_icon.png) center center no-repeat;
	background-size: contain;
  max-width: 207px;
  width: 100%;
  max-height: 302px;
  height: 24vw;
  bottom: -32%;
  left: -15%;
}

.event__s-title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.08em;
}

.event__date {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 21px;
}

.event__note {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}

.event__text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.125em;
  line-height: 1.4;
  margin-top: 15px;
  margin-left: 6px;
}

.event__btn {
  display: block;
  max-width: 340px;
  width: 100%;
  margin: 35px auto 0;
  transition: .3s ease-out;
}

.event__btn:hover {
  opacity: .8;
}

/* スマホサイズ */
@media screen and (max-width: 750px) {
  .event__title {
    max-width: 162px;
  }

  .event__wrap {
    padding-top: 142px;
    padding-bottom: 119px;
  }

  .event__inner {
    padding: 0 18px;
  }

  .event__box {
    padding: 28px 10px 32px;
  }

  .event__s-title {
    padding-left: 7px;
  }

  .event__date {
    line-height: 29px;
  }

  .event__note {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-align: center;
    margin-top: 10px;
  }

  .event__text {
    margin-top: 25px;
    margin-left: 17px;
    line-height: 22px;
  }

  .event__btn {
    max-width: 271px;
  }

  .event__box::before {
    content: initial;
  }

}

/*-------------------------------------------------------------------
  about
-------------------------------------------------------------------*/
.about {
  background: #FCE6DB;
}

.about__wrap {
  padding: 152px 0 100px 5%;
  position: relative;
}

.about__wrap::before {
  content: "";
  position: absolute;
  background: url(../img/about_bg.png) center center no-repeat;
	background-size: cover;
  width: 100%;
  height: 13vw;
  top: -5vw;
  left: 0;
}

.about__inner {
  max-width: 1112px;
  padding: 0 25px;
  margin: auto;
  position: relative;
}

.about__inner::before {
  content: "";
  position: absolute;
  background: url(../img/about_icon.png) center center no-repeat;
	background-size: contain;
  width: 172px;
  height: 33vw;
  max-height: 422px;
  bottom: 0;
  right: 8.5%;
}

.about__title {
  max-width: 342px;
  width: 100%;
}

.about__img {
  width: 67%;
  float: right;
  margin-top: -180px;
}

.about__text {
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 34px;
  font-weight: 500;
  margin-top: 44px;
  position: relative;
}

.about__text span {
  font-size: 22px;
  font-weight: 700;
}

.about__btn {
  display: block;
  max-width: 416px;
  width: 100%;
  margin: 84px auto 0;
  transform: translateX(-30px);
  transition: .3s ease-out;
}

.about__btn:hover {
  opacity: .8;
}
/* スマホサイズ */
@media screen and (max-width: 750px) {
  .about__wrap {
    padding: 51px 0 62px 0;
  }

  .about__wrap::before {
    height: 39vw;
    top: -15vw;
  }

  .about__inner {
    padding: 0 16px;
  }

  .about__inner::before {
    /* width: 110px;
    height: 275px;
    bottom: initial;
    top: 17%;
    right: 0.5%; */
    width: 30%;
    height: 77vw;
    max-height: 100%;
    bottom: initial;
    top: 18%;
    right: 0.5%;
  }

  .about__title {
    max-width: 284px;
    margin: auto;
  }

  .about__img {
    width: 100%;
    margin-top: 30px;
    float: initial;
  }

  .about__text {
    margin-top: 32px;
    margin-left: 10px;
  }

  .about__btn {
    margin: 34px auto 0;
    transform: translateX(0);
  }
}

/*-------------------------------------------------------------------
  bg
-------------------------------------------------------------------*/
.bg {
  position: relative;
}

.bg::before {
  content: "";
  position: absolute;
  background: url(../img/wrap_bg.png) center center no-repeat;
	background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* スマホサイズ */
@media screen and (max-width: 750px) {
  .bg::before {
    content: "";
    position: absolute;
    background: url(../img/wrap_bg_sp.png) center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
/*-------------------------------------------------------------------
  special
-------------------------------------------------------------------*/
.special__wrap {
  padding: 170px 0 100px;
  overflow: hidden;
}

.special__title {
  max-width: 393px;
  width: 100%;
  margin: auto;
}

.special__box {
  display: flex;
  margin: 60px auto 0;
  max-width: 1110px;
  padding: 0 25px;
  width: 100%;
  gap: 4.5%;
  padding-bottom: 18px;
  position: relative;
}

.special__box::after {
  content: "";
  position: absolute;
  background: #30A8A9;
  width: 81vw;
  height: 93%;
  min-height: 386px;
  z-index: -1;
  right: 0;
  top: 0;
  /* margin-right: calc(50% - 50vw + var(--scrollbar-width)); */
  margin-right: calc(50% - 50vw);
}

.special__box--left {
  margin-right: auto;
  flex-direction: row-reverse;
}

.special__box--left::after {
  width: 81vw;
  height: 93%;
  min-height: 386px;
  z-index: -1;
  right: initial;
  left: 0;
  top: 0;
  margin-right: initial;
  margin-left: calc(50% - 50vw);
}

.special__box--coming-soon {
  display: none;
}

.special__box + .special__box {
  margin-top: 56px;
}

.special__box--icon::before {
  content: "";
  position: absolute;
  background: url(../img/special_icon.png) center center no-repeat;
	background-size: contain;
  width: 234px;
  height: 217px;
  top: -217px;
  left: 80%;
  transform: translateX(-50%);
}

.special__img {
  max-width: 550px;
  width: 43vw;
  flex-shrink: 0;
  margin-top: 31px;
  overflow: hidden;
}

.special__img--left {
  margin-left: 0;
}

.special__img img {
  transition: .3s ease-out;
}

.special__article {
  padding-top: 58px;
  /* padding-bottom: 50px; */
  padding-bottom: 100px;
  width: 41%;
}

.special__article-title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
}

.special__article-text {
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #fff;
  margin-top: 31px;
  line-height: 33px;
}

.special__article-more {
  max-width: 152px;
  width: 100%;
  margin-top: 34px;
  position: relative;
}

.special__article-more::before,
.special__article-more::after{
	content:'';
	position:absolute;
	z-index:1;
  bottom: -12px;
	left:0;
	background:#fff;
	width:100%;
	height:2px;
  transition: .3s ease-out;
  border-radius: 5px;
}

.special__article-more::after{
	width:0;
	background:#83CCCA;
}

.special__box:hover .special__article-more::after {
	width:100%;
}
.special__box:hover .special__img img {
  transform: scale(1.1);
}

/* スマホサイズ */
@media screen and (max-width: 750px) {
  .special__wrap {
    padding: 83px 0 100px;
  }

  .special__title {
    width: 172px;
  }

  .special__box {
    display: block;
    margin: 44px auto 0;
  }

  .special__box::after {
    content: "";
    position: absolute;
    background: #30A8A9;
    width: 88%;
    height: 90.5%;
    min-height: 386px;
    z-index: -1;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    top: 49px;
    margin-right: initial;
  }

  .special__box--icon::before {
    content: initial;
  }

  .special__box + .special__box {
    margin-top: 32px;
  }

  .special__img {
    width: 92%;
    margin: auto;
  }

  .special__article {
    width: 92%;
    margin: auto;
    padding-top: 23px;
    padding-bottom: 80px;
  }

  .special__article-title {
    font-size: 26px;
    line-height: 34px;
  }

  .special__article-text {
    margin-top: 19px;
    line-height: 34px;
  }

  .special__article-more {
    margin: 39px auto 0;
  }

  .special__box--coming-soon {
    display: none;
  }
}

/*-------------------------------------------------------------------
  recommend
-------------------------------------------------------------------*/
.recommend__wrap {
  padding: 95px 0 0;
}

.recommend__title {
  max-width: 484px;
  width: 100%;
  margin: auto;
}

.recommend__swiper {
  max-width: 937px;
  margin: auto;
}

.recommend__box {
  background: #DF8386;
  margin-top: 58px;
  padding: 60px 25px 42px;
  position: relative;
}

.recommend__box::before {
  content: "";
  position: absolute;
  background: url(../img/recommend_icon.png) center center no-repeat;
	background-size: contain;
  width: 258px;
  height: 223px;
  top: -222px;
  left: 50%;
  transform: translateX(-199%);
}

.recommend__slide-box {
  max-width: 1050px;
  margin: auto;
  position: relative;
}

.recommend__img {
  overflow: hidden;
}

.recommend__img img {
  transition: .3s ease-out;
}

.recommend__text {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.08em;
  margin-top: 10px;
  line-height: 26px;
}

.recommend__more {
  max-width: 106px;
  width: 100%;
  margin: 58px auto 15px;
  transform: translateX(-10px);
  position: relative;
}

.recommend__more::before,
.recommend__more::after{
	content:'';
	position:absolute;
	z-index:1;
  bottom: -12px;
	left:0;
	background:#fff;
	width:100%;
	height:2px;
  transition: .3s ease-out;
  border-radius: 5px;
}

.recommend__more::after{
	width:0;
	background:#83CCCA;
}

.recommend__link:hover .recommend__more::after {
	width:100%;
}
.recommend__link:hover .recommend__img img {
  transform: scale(1.1);
}

.recommend__prev {
  background: url(../img/recommend_arrow.png) center center no-repeat;
	background-size: contain;
  width: 46px;
  height: 46px;
  transform: rotate(180deg);
  left: 0;
  top: 26%;
}

.recommend__next {
  background: url(../img/recommend_arrow.png) center center no-repeat;
	background-size: contain;
  width: 46px;
  height: 46px;
   right: 0;
  top: 26%;
}

.swiper-button-prev::after, .swiper-rtl .swiper-button-next::after,
.swiper-button-next::after, .swiper-rtl .swiper-button-prev::after {
  content: initial;
}

/* スマホサイズ */
@media screen and (max-width: 750px) {
  .recommend__wrap {
    padding: 26px 0 0;
  }

  .recommend__title {
    width: 210px;
    transform: translateX(5px);
  }

  .recommend__box {
    margin-top: 54px;
    padding: 38px 43px 32px;
  }

  .recommend__box::before {
    content: initial;
  }

  .recommend__prev {
    left: -30px;
  }

  .recommend__next {
    right: -30px;
  }
}

/*-------------------------------------------------------------------
  footer
-------------------------------------------------------------------*/
.footer {
  background: #232323;
  text-align: center;
  color: #fff;
  min-width: 100%;
  margin-top: 0;
}

.footer__inner {
  padding-top: 63px;
  padding-bottom: 84px;
}

.footer__logo {
  display: block;
  max-width: 304px;
  width: 100%;
  margin: auto;
}

.footer__about {
  margin-top: 23px;
}

.footer__pr {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.footer__note {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.footer__flex {
  font-weight: 400;
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 28px;
}

.footer__flex p {
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0.08em;
}
.footer__text + .footer__text {
  margin-top: 0;
}

.footer__copyright {
  font-size: 16px;
  font-weight: 400;
  margin-top: 50px;
  letter-spacing: 0.06em;
}

/* スマホサイズ */
@media screen and (max-width: 750px) {
  .footer__inner {
    padding-bottom: 35px;
    padding-top: 78px;
    padding-left: 8px;
  }

  .footer__about {
    margin-top: 5px;
  }

  .footer__flex {
    /* margin-top: 76px; */
    margin-top: 50px;
    letter-spacing: 0.1em;
    text-align: center;
    display: grid;
    gap: 2px;
  }

  .footer__pr {
    margin-left: -26px;
  }

  .footer__note {
    font-size: 14px;
  }

  .footer__text + .footer__text {
    margin-top: 16px;
  }

  .footer__copyright {
    font-size: 12px;
    margin-top: 47px;
  }
}