@charset "utf-8";
/* CSS Document */
/*---------------------------- ローディング画面 ----------------------------*/
/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background:#F8EBE0;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 500px;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
/* // ローディング画面 ----------------------------*/

/*---------------------------- ファーストビュー ----------------------------*/

#top__firstview {
  width: 100%;
  text-align: center;
  padding-top: 120px;
  box-sizing: border-box;
  margin: 0 auto;
}
#top__firstview-img {
  width: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 40px;
  margin: 0 auto;
}
.top__firstview-text {
  position: relative;
      margin: -200px auto 40px;
    max-width: 1300px;
}
.top__firstview-text h2 {
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  text-align: left;
  letter-spacing: 0.1rem;
  background: #FDF9F5;
  box-shadow: 0 1px 3px 0 rgba(87, 72, 69, 0.2);
  padding: 15px;
  margin-top: 5px;
  display: table;
}
.top__firstview-text-blue {
  color: #54C0C8;
  font-size: 3.0rem;
  padding: 0 5px;
}

/* Smartphones (landscape) ----------- */
@media only screen and (max-width :767px) {
  .top__firstview {
  width: 100%; 
  padding: 100px 0 0;
    margin-bottom: 120px;
}
#top__firstview-img {
  height: 480px;
}
  .top__firstview-text {
  bottom: -100px;
}
  .top__firstview-text h2 {
   background: #F8EBE0; 
    font-size: 1.8rem;
  letter-spacing: 0.005rem;
  padding: 10px;
  }
  .top__firstview-text-blue {
  font-size: 2.0rem;
}
}
/*-----------*/
/*---------------------------- lead ----------------------------*/
.lead-wrapper {
  width: 100%;
  background-image: url("../images/top/lead-bg@2x.png");
  background-blend-mode:lighten;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  margin: 0 auto 120px;
  padding-top: 140px;
}
.lead-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  padding-bottom: 80px;
  margin: 0 auto 60px;
}
#lead-img_1 {
  position: absolute;
  top: 40px;
  left: 0;
  opacity: 0;
}
#lead-img_2 {
  position: absolute;
  top: 0;
  right: 60px;
  opacity: 0;
}
#lead-img_3 {
  position: absolute;
  bottom: 40px;
  left: 60px;
  opacity: 0;
}
#lead-img_4 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
}
.lead__text {
  letter-spacing: 0.1rem;
}
.lead__h3 {
  max-width: 400px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 3.6rem;
  padding: 25px 50px;
  margin: 0 auto 60px;
	position: relative;
  text-align: center;
}
.lead__h3::before, .lead__h3::after {
	content: '';
	width: 25px;
	height: 40px;
	position: absolute;
}
.lead__h3::before {
	border-left: solid 1px rgba(87, 72, 69, 0.5);
	border-top: solid 1px rgba(87, 72, 69, 0.5);
	top: 0;
	left: 0;
}
.lead__h3::after {
	border-right: solid 1px rgba(87, 72, 69, 0.5);
	border-bottom: solid 1px rgba(87, 72, 69, 0.5);
	bottom: 0;
	right: 0;
}
.lead__text p {
  font-size: 1.8rem;
  line-height: 4.0rem;
  margin-bottom: 60px;
}
.lead__strong-1 {
  font-weight: 500;
  background-image: linear-gradient(transparent 70%, rgba(120, 195, 199, 0.5) 0%);
  padding: 0 2px;
  margin: 0 2px;
}
.lead__strong-2 {
  font-weight: 500;
  background-image: linear-gradient(transparent 70%, rgba(240, 192, 197, 0.8) 0%);
  padding: 0 2px;
  margin: 0 2px;
}
.lead__small {
  font-size: 1.4rem;
}
/*============ ふわっ ============*/
.fadeUp {
animation-name:fadeUpAnime;
animation-duration: 1s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(30px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
/* // ふわっ ===========*/

/* iPad Smaller than 999px ----------- */
@media only screen and (max-width : 999px) {
  .lead-wrapper {
  background-color:rgba(255,255,255,0.2);
  padding: 240px 40px 0;
  }
  .lead-inner {
  padding-bottom: 200px;
  margin: 0 auto 80px;
}
  .lead__text p {
  font-size: 1.8rem;
  line-height: 4.0rem;
  margin-bottom: 40px;
}
  #lead-img_1 {
  top: -200px;
  left: 0;
  width: 220px;
}
#lead-img_2 {
  top: -140px;
  right: 20px;
  width: 180px;
}
#lead-img_3 {
  width: 180px;
}
#lead-img_4 {
  width: 200px;
}
}

/* Smartphones (landscape) ----------- */
@media only screen and (max-width :767px) {
  .lead-wrapper {
  margin: 120px auto;
}
  .lead__h3 {
  max-width: 300px;
  font-size: 2.2rem;
  padding: 25px;
}
  .lead__text p {
  text-align: left;
    font-size: 1.6rem;
  line-height: 3.0rem;
  margin-bottom: 40px;
}
  #lead-img_1 {
  top: -200px;
  left: -20px;
  width: 180px;
}
#lead-img_2 {
  top: -120px;
  right: 0;
  width: 140px;
}
#lead-img_3 {
  bottom: 80px;
  left: -10px;
  width: 140px;
}
#lead-img_4 {
  right: -10px;
  width: 180px;
}
  .lead__text p {
  font-size: 1.6rem;
  line-height: 3.0rem;
  margin-bottom: 40px;
}
}
/*-----------*/
/*---------------------------- // lead ----------------------------*/

/*---------------------------- スクロール ----------------------------*/
/*スクロールダウン全体の場所*/
.scrolldown2{
	position:absolute;
	left:50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
	position: absolute;
	left:10px;
	bottom:5px;
    /*テキストの形状*/
	color: #574845;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

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

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
  0%{bottom:45px;}
  100%{bottom:-5px;}
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
	100%{opacity:0;}
}

/* 線の描写 */
.scrolldown2:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width:2px;
	height: 50px;
	background:#574845;
}
/*---------------------------- // スクロール ----------------------------*/

/*---------------------------- Joia's points ----------------------------*/
.point-wrapper {
  width: 100%;
  padding: 80px 0;
  text-align: center;
  background-color: #F8EBE0;
}
.point__title {
  width: 700px;
  padding-top: 100px;
  margin: 0 auto 60px;
}
.point__title img {
  width: 100%;
}
.point-inner li {
  width: 100%;
  max-width: 1000px;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0 auto;
}
.point__img {
  width: 250px;
  height: 250px;
  margin-top: 40px;
  position: absolute;
  z-index: 20;
}
.point__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px 0 36px 0;
}
#point__img-01 {
  object-position: left 0 bottom -24px;
}
#point__img-02 {
  object-position: right;
}
.point__description {
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(87, 72, 69, 0.2);
  text-align: left;
  padding: 30px 60px 60px 260px;
  margin-bottom: 80px;
  margin-left: 60px;
  position: relative;
  z-index: 5;
}
.title-1 {
  font-size: 2.8rem;
  line-height: 4.0rem;
  font-weight: 600;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  color: #54C0C8;
  background-image: url("../images/top/icon_1.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 110px;
  padding-bottom: 20px;
  padding-top: 40px;
  margin-bottom: 20px;
}
.title-2 {
  font-size: 2.8rem;
  line-height: 4.0rem;
  font-weight: 600;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  color: #54C0C8;
  background-image: url("../images/top/icon_2.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 110px;
  padding-bottom: 20px;
  padding-top: 40px;
  margin-bottom: 20px;
}
.title-3 {
  font-size: 2.8rem;
  line-height: 4.0rem;
  font-weight: 600;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  color: #54C0C8;
  background-image: url("../images/top/icon_3.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 110px;
  padding: 40px 0;
  margin-bottom: 20px;
}
.point__description p {
  max-width: 600px;
  font-size: 1.8rem;
  line-height: 3.0rem;
  letter-spacing: 0.05rem;
  margin-bottom: 10px;
}
.point__description-marker {
  font-size: 2.0rem;
  font-weight: 600;
  background-image: linear-gradient(transparent 70%, rgba(120, 195, 199, 0.5) 0%);
  padding: 0 2px;
  margin: 0 2px;
}
.link-button__wrapper {
  width: 100%;
  display: flex;
  gap: 16px;
  justify-content: space-around;
  align-items: center;
  margin-top: 40px;
}
.link-button {
  text-decoration: none;
  align-items: center;
  padding: 24px 60px;
  border-radius: 40px;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  font-size: 2.0rem;
  color: #fafafe;
  font-weight: 500;
  background-color: rgba(120, 195, 199, 1);
  box-shadow: 0 4px 0 rgba(87, 72, 69, .5);
  text-align: center;
  box-sizing: initial;
}
a.link-button:hover {
  transition: ease .3s;
  transform: translateY(4px);
  box-shadow: none;
}
/* iPad Smaller than 999px ----------- */
@media only screen and (max-width : 999px) {
  .point__img {
    width: 180px;
    height: 180px;
    left: 0;
    right: 0;
    margin: -40px auto 0;
  }
  .point-wrapper {
    padding: 40px 20px;
  }
  .point__description {
    padding: 140px 20px 40px;
    margin: 80px 0;
  }
  .point__description-marker {
    font-size: 1.6rem;
  }
  .link-button h4 {
    font-size: 1.8rem;
} 
  .title-1,.title-2,.title-3 {
    font-size: 2.4rem;
    line-height: 3.2rem;
    background-size: 80px;
    text-align: center;
    background-position: center;
  }
  .point__description p {
    max-width: none;
    font-size: 1.6rem;
    line-height: 2.6rem;
    letter-spacing: 0.05rem;
    text-align: justify;
    margin-bottom: 10px;
}
.point__description-marker {
    font-size: 1.8rem;
}
}
/* Smartphones (landscape) ----------- */
@media only screen and (max-width :767px) {
  .point__title {
    width: 300px;
    padding-top: 100px;
    margin: 0 auto 60px;
  }
  .point__title img {
    width: 100%;
  }
  .title-1,.title-2,.title-3 {
    font-size: 2.0rem;
    line-height: 3.0rem;
    padding: 20px 5px;
    background: none;
  }
  .link-button__wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
/*-----------*/
/*---------------------------- // Joia's points ----------------------------*/