@charset "UTF-8";
/* CSS Document */

* { box-sizing: border-box; }

body {
  color: #222;
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  position: relative;	
  background: #fcfcfc;
}

/* header */

header {
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(15px);
  background-color: rgba(255,255,255, 0.8);
  border-bottom: 1px solid #fff;
  position: fixed;
  z-index: 50;
}

.header_area {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toTop a {
  display: block;
  color: #2F3640;
  border: 2px solid #2F3640;
  padding: 15px 10px;
  line-height: 0;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.toTop a:visited { color: #2F3640; }

.toTop a:hover {
  color: #fcfcfc;
  background: #2F3640;
}

@media screen and (max-width: 896px) {

  .header_area {
    max-width: 756px;
    width: 95%;
    padding: 10px;
  }
  .toTop a {
    border: 1px solid #2F3640;
    font-size: 13px;
  }
  
  .header_area img {
    display: block;
    height: 16px;
    width: auto;
  }
  
}




/* main */


article {
  position: relative;
  padding: 105px 0 30px;
  /*overflow: hidden;*/
}

article::before {
  background: url("images/bg.png") no-repeat center;
  background-size: cover;
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.wrap {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 30px;
  display: flex;
  justify-content: center;
}

.card_area { }

.card_area section {
  width: 305px;
  padding: 20px;
  margin: 0 5px 15px;
  color: #2f3640;
  border-radius: 5px;
  backdrop-filter: blur(10px);
  background: linear-gradient(30deg, rgba(255,229,251,0.3) 0%, rgba(169,213,240,0.3) 100%);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px;
  border: 1px rgba(255,255,255,0.4) solid;
  border-bottom: 1px rgba(174,174,174,0.35) solid;
  border-right: 1px rgba(174,174,174,0.35) solid;
}

.card_area section p {
  font-size: 16px;
  line-height: 1.6;
}

.card_area section p:last-child {
  margin-top: 15px;
  text-align: right;
}

.card_area section p span { 
  display: inline-block;
  padding-right: 10px;
  font-size: 14px;
}




@media screen and (max-width: 896px) {
  
  article { padding: 70px 0 30px; }
  .wrap { flex-direction: column;  }
  .card_area section { width: 100%; max-width: 320px; margin: 0 auto 15px;}
  
}



/*animation*/

.up { opacity: 0; }

.fadeInUp {
	-webkit-animation-fill-mode:both;
	-ms-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-duration:1s;
	-ms-animation-duration:1s;
	animation-duration:1s;
}
@-webkit-keyframes fadeInUp {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes fadeInUp {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	visibility: visible !important;
}