@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oooh+Baby&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lavishly+Yours&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lavishly+Yours&display=swap");
.noto-sans {
  font-family: "Noto Sans JP", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
}

.noto-serif {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.lora {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.lavishly-yours {
  font-family: "Lavishly Yours", cursive;
  font-style: normal;
}

.oooh-baby {
  font-family: "Oooh Baby", cursive;
  font-style: normal;
}

.lavishly-yours {
  font-family: "Lavishly Yours", cursive;
  font-style: normal;
}

/*ディスプレイ初期値設定*/
/*以下、サイト固有の設定*/
/*サイト共通の間隔*/
/*英語用font読み込み指定*/
/*
@font-face {
	font-family: 'General Sans';
	src: url("../font/GeneralSans-Regular.otf") format("otf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
	font-family: 'General Sans';
	src: url("../font/GeneralSans-Semibold.otf") format("otf");
    font-weight: bold;
    font-style: normal;
}
*/
/*

トップページ用のスタイルです。

*/
/* ------------ */
/* デザイン共通 */
/* ------------ */
/* -------------- */
/* メインビジュアル */
/* ------------- */
/* -------------- */
/* メインビジュアル */
/* ------------- */
#main_visual {
  width: 100%;
  overflow: hidden;
  position: relative;
  /*
  .swiper-slide-active .swiper-img {
    animation: zoomUp 6s linear 0s normal both;
  }*/
}

#main_visual:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(25%, transparent), to(#33333399));
  background-image: linear-gradient(0deg, transparent, transparent 25%, #33333399);
  width: 100%;
  height: 150px;
  z-index: 2;
}

/* -------------- */
/* font */
/* ------------- */
@media screen and (max-width: 767px) {
  .f46 {
    font-size: 26px !important;
  }
}

@media screen and (max-width: 767px) {
  .f36 {
    font-size: 18px !important;
  }
}

@media screen and (max-width: 767px) {
  .f28 {
    font-size: 16px !important;
  }
}

@media screen and (max-width: 767px) {
  .f24 {
    font-size: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .f22 {
    font-size: 15px !important;
  }
}

/* -------------- */
/* サムネイル付一覧 */
/* ------------- */
@media screen and (max-width: 767px) {
  .home .thum_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.home .thum_list li {
  width: calc(100% / 4 - 15px);
}

@media screen and (max-width: 1024px) {
  .home .thum_list li {
    width: calc(100% / 2 - 10px);
  }
}

.scr01 {
  position: relative;
  padding: 50px 0 0;
  /*下からの距離が変化して丸の全体が上から下に動く*/
  /*上から下にかけて丸が透過→不透明→透過する*/
}

.scr01 .scrolldown {
  z-index: 2;
  position: relative;
  text-align: center;
}

.scr01 .scrolldown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

@media screen and (max-width: 1024px) {
  .scr01 .scrolldown:before {
    -webkit-animation: circlemove_sp 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
            animation: circlemove_sp 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  }
}

.scr01 .scrolldown:after {
  content: "";
  display: inline-block;
  /*描画位置*/
  /*線の形状*/
  width: 2px;
  height: 150px;
  background: #333;
}

@media screen and (max-width: 1024px) {
  .scr01 .scrolldown:after {
    height: 40px;
  }
}

.scr01 .scrolldown span {
  font-family: "Lora", serif;
  display: block;
  /*テキストの形状*/
  text-align: center;
  color: #333;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

@-webkit-keyframes circlemove {
  0% {
    bottom: 150px;
    @media screen and (max-width: 1024px) {
      bottom: 40px;
    }
  }
  100% {
    bottom: -0px;
  }
}

@keyframes circlemove {
  0% {
    bottom: 150px;
    @media screen and (max-width: 1024px) {
      bottom: 40px;
    }
  }
  100% {
    bottom: -0px;
  }
}

@-webkit-keyframes circlemove_sp {
  0% {
    bottom: 40px;
  }
  100% {
    bottom: -0px;
  }
}

@keyframes circlemove_sp {
  0% {
    bottom: 40px;
  }
  100% {
    bottom: -0px;
  }
}

@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

/* -------------- */
/* トップコンテンツ */
/* ------------- */
.tp_sec01 {
  position: relative;
  z-index: 1;
  margin-top: clamp(120px, 4.769rem + 11.65vw, 300px);
  margin-bottom: clamp(120px, 4.769rem + 11.65vw, 300px);
}

.tp_sec02 {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(70px, 3.086rem + 5.5vw, 155px);
}

.tp_sec02 img {
  width: 100%;
  height: auto;
}

.tp_sec03 {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(60px, 1.626rem + 9.06vw, 200px);
}

.tp_sec04 {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(60px, 2.421rem + 11vw, 250px);
}

.tp_sec05 {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(60px, 2.421rem + 11vw, 250px);
}

.tp_sec06 {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(50px, 0.85rem + 9.71vw, 200px);
}

.tp_sec07 {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(80px, 3.18rem + 7.77vw, 200px);
}

.tp_sec08 {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(50px, 0.85rem + 9.71vw, 200px);
}

.tp_sec09 {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(80px, 3.18rem + 7.77vw, 200px);
}

.tp_sec10 {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(80px, 3.18rem + 7.77vw, 200px);
}

.tp_sec11 {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(50px, 0.85rem + 9.71vw, 200px);
}

.tp_sec12 {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(100px, 5.567rem + 2.91vw, 145px);
}

.tp_sec13 {
  aspect-ratio: 3000/2000;
  max-height: 1285px;
  height: 100%;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}

.tp_sec13 .box {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
}

@media screen and (max-width: 767px) {
  .tp_sec13 .box .f46 {
    font-size: 30px !important;
  }
}

@media screen and (max-width: 450px) {
  .tp_sec13 .box .f46 {
    font-size: 16px !important;
  }
}

@media screen and (max-width: 1024px) {
  .tp_sec13 .box .f26 {
    font-size: 12px !important;
  }
}

.tp_sec14 {
  position: relative;
  z-index: 1;
  padding: 150px 0 60px;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#D7E6E6)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #FFFFFF 0%, #D7E6E6 100%) 0% 0% no-repeat padding-box;
}

@media screen and (max-width: 1024px) {
  .tp_sec14 {
    padding: 50px 0 40px;
  }
}

@media screen and (max-width: 1024px) {
  .tp_sec14 .layout_a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.tp_sec14 .layout_a .imgbox {
  width: 55%;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .tp_sec14 .layout_a .imgbox {
    width: 100%;
    margin-top: 25px;
  }
}

.tp_sec14 .layout_a .imgbox .logo_area01 {
  position: absolute;
  top: 25px;
  left: 25px;
}

@media screen and (max-width: 1024px) {
  .tp_sec14 .layout_a .imgbox .logo_area01 img {
    width: 50%;
  }
}

.tp_sec14 .layout_a .txtbox {
  margin-right: 80px;
}

@media screen and (max-width: 1024px) {
  .tp_sec14 .layout_a .txtbox {
    margin-right: 0;
  }
}

.tp_main_plan {
  background-color: #fff;
}

.tp_main_plan .sub_images_ul.cul2 {
  gap: 60px;
}

.tp_main_plan .sub_images_ul.cul2 li {
  width: calc(100% / 2 - 30px);
}

@media screen and (max-width: 1024px) {
  .tp_main_plan .sub_images_ul.cul2 li {
    width: 100%;
    margin-bottom: 20px;
  }
  .tp_main_plan .sub_images_ul.cul2 li:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1024px) {
  .tp_main_plan .sub_images_ul.cul2 li h3.f24 {
    font-size: 18px !important;
    text-align: center;
  }
}

.tp_main_plan .sub_images_ul.cul2 li figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}

.tp_news {
  background-color: #fff;
  position: relative;
  padding: 80px 0 0;
}

@media screen and (max-width: 1024px) {
  .tp_news {
    padding: 50px 0 0;
  }
}

.tp_pickup_plan {
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .tp_pickup_plan .f36 {
    font-size: 24px !important;
    text-align: center;
  }
}

@media screen and (max-width: 1024px) {
  .tp_pickup_plan .f24 {
    font-size: 18px !important;
    text-align: center;
  }
}

.tp_pickup_plan .sub_images_ul li figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}

.tp_pickup_plan .sub_images_ul.cul2 {
  gap: 20px 40px;
}

@media screen and (max-width: 1024px) {
  .tp_pickup_plan .sub_images_ul.cul2 {
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.tp_pickup_plan .sub_images_ul.cul2 li {
  width: calc(100% / 2 - 20px);
}

@media screen and (max-width: 1024px) {
  .tp_pickup_plan .sub_images_ul.cul2 li {
    width: calc(100% / 2 - 10px);
    margin-bottom: 20px;
  }
  .tp_pickup_plan .sub_images_ul.cul2 li:last-child {
    margin-bottom: 0;
  }
}

/*# sourceMappingURL=css_map/style_home.css.map */
