@charset "utf-8";
@font-face {
  font-family: 'K-Font';
  src: url('./fonts/keifont.ttf');
}
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500&display=swap');


/*-----------------------------------------------------
-------------------------------------------------------
  ■　initialization(初期化)
-------------------------------------------------------
---------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  line-height: 150%;
  max-width: 100%;
  text-decoration: none;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  max-width: 100%;
}
h1,h2,h3,h4,h6{
  font-family: 'K-Font';
  text-align: center;
}
h1 {
  font-size: 1.5rem;
  padding-bottom: 3rem;
}
h2 {
  font-size: 1.25rem;
}
h3 {
  font-size: 0.875rem;
}
h4 {
  font-size: 3rem;
  color: #f3ecd8;
  text-shadow: 3px 3px 0 #FBE3A0;
  -webkit-text-stroke: 1px #111;
  padding: 0;
}
h5 {
  font-family: 'K-Font';
  font-size: 2rem;
  color: #FBE3A0;
  /* text-shadow: 3px 3px 0 #4E894E; */
  -webkit-text-stroke: 1px #111;
  padding: 0;
}
h6 {
  font-size: 0.75rem;
}


  /*-----------------------------------------------------
    ▶　共通設定：ボタンの設定
  ---------------------------------------------------- */

  /*----------
    ▶　btn01
  ----------*/

/* ボタン動きの設定*/
.btn01 {
  /*影の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: transparent;
  border-radius: 40px 8px 40px 40px;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.2s ease;
}
/*hoverをした後のボタンの形状*/
.btn01:hover{
  border-color:transparent;
}
/*ボタンの中のテキスト*/
.btn01 span {
  position: relative;
  z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
  /*テキストの形状*/
  display: block;
  font-family: 'K-Font';
  font-size: 0.75rem;
  padding: 20px;
  background:#111111;
  border-radius: 40px 8px 40px 40px;
  color:#ffffff;
  max-width: 204px;
  /*アニメーションの指定*/
  transition: all 0.3s ease;
}
/*右下に押し込まれる設定（立体が平面に）*/
/*影の設定*/
.pushright:before {
  content: "";
  /*絶対配置で影の位置を決める*/
  position: absolute;
  z-index: -1;
  top: 0.25rem;
  left: 0.25rem;
  /*影の形状*/
  width: 100%;
  height: 100%;
  border-radius: 30px 2px 30px 30px;
  background-color: rgba(17, 17, 17, 0.2);
  filter: blur(4px);
}
/*hoverの際にX・Y軸に4pxずらす*/
.pushright:hover span {
  background-color: #4e894e;
  color: #fff;
  transform: translate(4px, 4px);
}
.btn-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.5rem auto;
}

.padding80 {
  position: static;
  height: 5rem;
  width: 100%;
}
.padding48 {
  position: static;
  height: 3rem;
  width: 100%;
}


#copyright {
  width: 100%;
  font-style: normal;
  text-align:center;
  display: block;
  float: center;
  padding-bottom: 0.5rem;
}
small {
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
}


@media screen and (min-width: 415px) {

  #container {

    background-image: url(./images/bg-lp.jpg);
    background-attachment: fixed;
    padding-left: 20%;
  }
  #LogoArea {
    position: fixed;
    right: 15%;
    top: 40%;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media screen and (max-width: 1015px) {
  #container {
    background-image: url(./images/bg-lp.jpg);
    background-attachment: fixed;
    padding-left: 0;
  }

}
@media screen and (max-width: 760px) {
  #LogoArea {
    opacity: 0;
  }

}
@media screen and (max-width: 414px) {
  #container {
    background-image: none;
  }
  #LogoArea {
    display: none;
  }
}


 /*----------
    ▶　モバイルサイズ
  ----------*/

#mb-size {
  max-width: 414px;
  background-color: #F9F4E7;
}

header {
  max-width: 414px;
}
.twitter {
  position: fixed;
  z-index: 1;
  width: 52px;
  height: 52px;
  right: 0px;
  top: 0px;
}

 /*----------
    ▶　mvエリア
  ----------*/
#mvArea {
  position: relative;
  max-width: 414px;
  max-height: 466px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 80px;
  gap: 1rem;
  border-radius: 0px 0px 100px 100px;
  background-color: #fff;
}
.mv-img {
  object-fit: cover;
  border-radius: 0px 0px 100px 100px;
  padding-bottom: 0;
}

 /*----------
    ▶　てつなぎへの思い
  ----------*/

.messageArea {
  max-width: 414px;
}
.ttl1 {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 0.25rem;
}

.message {
  padding: 0 1.5rem;
}

 /*----------
    ▶　中見出し
  ----------*/

.ttl2Area {
  max-width: 414px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.mv-logo {
  max-width: 192px;
}

 /*----------
    ▶　子育てでこんなことありませんか？
    ▶　てつなぎの特徴
    ▶　ご利用の流れ
  ----------*/

.beforeArea ,.serviceArea ,.flowArea {
  max-width: 414px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}


.beforeArea p {
  font-family: 'K-Font';
}

.beforeBox  {
  /* padding: 1rem; */
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 32px;
  gap: 0.25rem;
  border: dashed 1.5px #F3ECD8;
}
.beforeContens {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}

.checkbox {
  width: 2.5rem;
  height: 2.375rem;
}

.photo01 {
  width: fit-content;
  object-fit: cover;
  border-radius: 0 0 20px 20px;
}

.serviceArea p {
  font-family: 'K-font';
}
.sv {
  height: 80px;
  background-color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  border-radius: 40px 40px 0 0;
}
.svContents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.svc {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.icon02 {
  height: 1rem;
  padding-right: 0.25rem;
}

.img {
  max-width: 414px;
  padding: 1rem;
}
.flowArea {
  align-items: center;
}



.flowContainer {
  max-width: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.flowBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.twitterArea {
  max-width: 414px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



 /*----------
    ▶　Twitter PR
  ----------*/

.twitter-PR-Area {
  max-width: 414px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;

}
.twitter-PR {
  /* max-width: 248px; */
  background-color: #fff;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  align-items: center;
  gap: 1rem;
  border: dashed 1.5px #F3ECD8;
}
.img-present {
  height: 4.5rem;
}

/*----------
    ▶　フェード
  ----------*/


.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);
    }
  }
.fadeUpTrigger{
  opacity: 0;
}

.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  @keyframes fadeLeftAnime{
    from {
      opacity: 0;
    transform: translateX(-100px);
    }

    to {
      opacity: 1;
    transform: translateX(0);
    }
}
