@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  background-color: #85b9dd;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;

  font-size: 10px;
  /*IE9以前に対応する*/
  font-size: 0.625rem;
  letter-spacing: 0.5em;
  color: #333333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

h1{
  font-family: Comic Sans MS, sans-serif;
}


* {
  position: relative;
}

.frame {
  width: 500px;
  height: auto;
  margin: 15% auto 0;
  position: absolute;
  width: 100%;
}

svg {
  max-width: 100%;
  height: auto;
  display: block;
}

img {
  width: 100%;
  vertical-align: bottom;
}
a {
  list-style: none;
  color: #333;
  text-decoration: none;
}
a:hover {
  /* opacity: .7; */
  transition: .3s;
}
li {
  list-style: none;
}


/*ローディングアニメーション*/
#loading{
  position: absolute;
  left: 50%;
  top: 40%;
  margin-top: -25px;
  margin-left: -25px;
}
#loading img {
 width: 100%; 
 background: #fff;
}
    
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 1;
}


.scroll_main {
  min-height: 100vh;
}



/*セクションタイトル*/
.section__ttl {
  font-size: 3rem;
  color: #fff;
  text-align: center;
  padding: 50px;
  margin-bottom: 50px;
}

/* 区切り波線 */
.separation {
	width: 80%;
  margin: 0 auto;
  text-align: center;
  background-image: 
  linear-gradient(135deg,transparent 30%, rgba(255, 204, 0, 0.9) 50%,transparent 70%), 
  linear-gradient(225deg,transparent 30%,rgba(255, 204, 0, 0.9) 50%,transparent 70%); 
  background-size: 16px 8px; 
  background-position: 0px 80%,8px 80%; 
  background-repeat: repeat-x;
  font-size: 3rem;
  color: #fff;
  text-align: center;
  padding: 50px;
  margin-bottom: 50px;
}




/* スクロールするとフェードインフェードアウト*/
.fade_off {
  opacity: 0;
  -webkit-transition: all 2s;
  -moz-transition: all 2s;
  -o-transition: all 2s;
  -ms-transition: all 2s;
  transition: all 2s;
}
.fade_on {
  opacity: 1;
}



/* メインタイトル */
.main-title {
  font-size: 5rem;
  color: #fff;
  padding-top: 200px;
  padding-left: 10vw;
  margin-bottom: 100px;
  z-index: 100;
}
.main-title-2 {
  font-size: 5rem;
  color: #fff;
  padding-top: 200px;
  padding-left: 10vw;
  z-index: 100;
}
.main-title-3 {
  font-size: 5rem;
  color: #fff;
  padding-left: 10vw;
  z-index: 100;
}
.ttl {
  display: inline-block;
  color: #fff;
  text-shadow: 1px 1px 0px #f0812e,
  -1px 1px 0px #f0812e,
  1px -1px 0px #f0812e,
  -1px 1px 0px #f0812e;
}

/* ヘッダー */
.nav__lists {
  display: flex;
  justify-content: center;
  padding: 20px;
  margin: 0;
}
.nav__list {
  font-size: 1.4rem;
  padding: 16px;
}
.nav__list a{
  color: #fff;
}
.nav__list a:hover {
  color: #283593;
}

@media screen and (max-width: 559px) {
  .header {
    /* background-color: #fff; */
    padding: 20px;
  }
}

  .header__inner {
    width: 100%;
    margin: 0 auto;
    padding: 2% 4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.nav {
  display: block;
  margin: 0 auto;
}


@media screen and (max-width: 559px) {
  .nav {
    display: none;
  }
}

.nav__list {
  display: inline-block;
  margin-right: 1vw;
}

.hamburger-btn {
  display: none;
}



@media screen and (max-width: 559px) {
  .hamburger-btn {
    display: block;
    position: relative;
    width: 25px;
    height: 16px;
    margin-right: 4vw;
    z-index: 200;  
  }
}

  .hamburger-btn__parts {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #283593;
    position: absolute;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

.hamburger-btn__parts.-top {
  top: 0;
}

.hamburger-btn__parts.-middle {
  top: 0;
  bottom: 0;
  margin: auto;
}

.hamburger-btn__parts.-bottom {
  bottom: 0;
}

.hamburger-btn.active .hamburger-btn__parts.-top {
  -webkit-transform: translateY(10px) rotate(-405deg);
          transform: translateY(10px) rotate(-405deg);
}

.hamburger-btn.active .hamburger-btn__parts.-middle {
  opacity: 0;
}

.hamburger-btn.active .hamburger-btn__parts.-bottom {
  -webkit-transform: translateY(-4px) rotate(405deg);
          transform: translateY(-4px) rotate(405deg);
}

.hamburger {
  display: none;
}


@media screen and (max-width: 559px) {
  .hamburger {
    display: block;
    position: relative;
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #f0812e;
    z-index: 150;
  }


  .hamburger__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100vw;
    height: 100vh;
  }
  .hamburger__list {
    font-size: 16px;
    /*IE9以前に対応する*/
    font-size: 1.5rem;
    list-style: none;
    text-align: center;
  }
  .hamburger__list + .hamburger__list {
    padding-top: 50px;
  }
  .hamburger__link {
    text-decoration: none;
    color: #ffffff;
  }
}

.hamburger.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}



/* ABOUT */
.self {
  display: flex;
  justify-content: center;
}

#self_intoro {
  width: 100%;
  max-width: 350px;
  z-index: 100;
  padding: 30px;
}

.myname {
  color: #193278;
  font-size: 1.5rem;
  text-align: center;
  padding-top: 20px;
}

.myinfo {
  color: #193278;
  font-size: 1.5rem;
  padding-bottom: 80px;
}

.myinfo span {
  font-size: 1.3rem;
}

.myimage img {
  width: 300px;
  height: 300px;
  border-radius: 50%; 
}

.myimage {
	display: inline-block;
	position: relative;
  z-index: 100;
}
.myimage:after {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	width: 300px;
	height: 300px;
  border-radius: 50%;
	box-shadow: 
	  inset 0 0 20px #85b9dd, 
	  inset 0 0 20px #85b9dd,
	  inset 0 0 20px #85b9dd,
	  inset 0 0 20px #85b9dd; 
}  



/* 風船 */
/*balloon Container*/
.balloon-container {
  width: 200px;
  margin: 0px auto;
  z-index: 3;
}
 /*balloon Image*/
.balloon {
  width: 100%;
  height: 60px;
}

/*balloon Animation*/
.balloon-container {
  -webkit-animation: balloon-scoping 2s alternate infinite;
  -moz-animation: balloon-scoping 2s alternate infinite;
  animation: balloon-scoping 2s alternate infinite;

  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes balloon-scoping {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    transform: translateY(100px);
  }
}

.balloon {
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;

  -webkit-animation: balloon-soaring 4s forwards infinite;
  -moz-animation: balloon-soaring 4s forwards infinite;
  animation: balloon-soaring 4s forwards infinite;
}
@-webkit-keyframes balloon-soaring {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  50% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  60% {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.frame {
  margin: 0;
}


/* 雲 */
.clouds {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  transform: translateZ(0);
}

.cloud {
  position: absolute;
  top: 20%;
  width: 300px;
  right: 0;
  opacity: 1;
}

.cloud.front {
  z-index: 9;
}

.cloud.distant {
  z-index: 1;
}

.cloud.background {
  z-index: 1;
}

/*Cloud Sizing*/
.cloud.smaller {
  margin-right: 400px;
  width: 100px;
  margin-top: 50px;
}

.cloud.small {
  margin-right: 200px;
  width: 150px;
}

.cloud.big {
  width: 500px;
  margin-top: 50px;
  margin-right: 150px;
}

.cloud.massive {
  width: 600px;
  margin-top: 20px;
  margin-right: 0px;
}


/*雲アニメーション*/
.cloud {
  -webkit-animation-name: cloud-movement;
  -webkit-animation-timing-function: linear;
  -webkit-animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 8s;

  -moz-animation-name: cloud-movement;
  -moz-animation-timing-function: linear;
  -moz-animation-direction: forwards;
  -moz-animation-iteration-count: infinite;
  -moz-animation-duration: 8s;

  animation-name: cloud-movement;
  animation-timing-function: linear;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-duration: 8s;
}

.slow {
  -webkit-animation-duration: 9.2s;
  -moz-animation-duration: 9.2s;
  animation-duration: 9.2s;
}

.slower {
  -webkit-animation-duration: 11.2s;
  -moz-animation-duration: 11.2s;
  animation-duration: 11.2s;
}

.slowest {
  -webkit-animation-duration: 13.5s;
  -moz-animation-duration: 13.5s;
  animation-duration: 13.5s;
}

.super-slow {
  -webkit-animation-duration: 20.5s;
  -moz-animation-duration: 20.5s;
  animation-duration: 20.5s;
}

@-webkit-keyframes cloud-movement {
  0% {
    opacity: 0.1;
    -webkit-transform: translateX(300px);
    -moz-transform: translateX(300px);
    transform: translateX(300px);
  }
  10% {

    opacity: 0.7;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-1000px);
    -moz-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
}



/*  SERVICE */
.service {
  background-image: url(../image/service-bg.jpg);
  background-size: cover;
  background-position: center top;
  opacity: .6;
}


.service h2 {
  font-size: 2rem;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 80px;
  color: #0096b5;
}

.service p {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 30px;
}


*{
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.service-wrapper{
  width: 100%;
  margin: 0 auto;
 
}

.cols{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 100px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.col{
  width: calc(25% - 2rem);
  margin: 3rem;
  cursor: pointer;
}

.container{
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
    -webkit-perspective: 1000px;
            perspective: 1000px;
}


#photo1 {
  background-color: #fff;
  background-image: url(../image/service-test1.png);
}
#photo2 {
  background-color: #fff;
  background-image: url(../image/service-test2.png);
}
#photo3 {
  background-color: #fff;
  background-image: url(../image/service-test3.png);
}

.front .fas {
  color: #333;
}


.front,
.back{
  background-size: cover;
    background-position: center;
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    text-align: center;
    min-height: 300px;
    height: auto;
    border-radius: 10px;
    color: #333;
    font-size: 1.5rem;
}

.back{
  background: #cedce7;
  background: -webkit-linear-gradient(45deg,  #cedce7 0%,#596a72 100%);
  background: -o-linear-gradient(45deg,  #cedce7 0%,#596a72 100%);
  background: linear-gradient(45deg,  #cedce7 0%,#596a72 100%);
}

.front:after{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: .6;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 10px;
}
.container:hover .front,
.container:hover .back{
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.inner{
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
            transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
            perspective: inherit;
    z-index: 2;
}

.container .back{
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.container .front{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.container:hover .back{
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.container:hover .front{
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.front .inner p{
  font-size: 2rem;
  font-weight: bold;
  color: #283593;
  margin-bottom: 2rem;
  position: relative;
}

.back .inner p{
  font-size: 1.8rem;
  margin-bottom: 2rem;
  position: relative;
  color: #fff;
}

.front .inner p:after{
  content: '';
  width: 4rem;
  height: 2px;
  position: absolute;
  background: #C6D4DF;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -.75rem;
}

.front .inner span{
  color: #333;
  font-family: 'Montserrat';
  font-weight: 300;
}

@media screen and (max-width: 1024px){
  .col{
    width: calc(33.333333% - 2rem);
  }
}

@media screen and (max-width: 768px){
  .col{
    width: calc(50% - 2rem);
  }
}

@media screen and (max-width: 599px){
  .col{
    width: 70%;
    margin: 0 0 2rem 0;
  }
}



/* WORKS */
.slide img { 
  display: block;
  width: 60%;
  height: 50%;
  margin: 0 auto;
}

.slide p {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  padding: 30px;
}


/* BLOG */
#blog_contents {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.blog_card {
  margin: 30px;
  z-index: 100;
}

.date {
  color: #333;
  font-size: 1.5rem;
  padding-top: 20px;
}
.blog_text {
  color: #333;
  font-size: 1.3rem;
  margin: 0 auto;
  padding-top: 10px;
}

.blog_btn {
  text-align: center;
  margin-bottom: 200px;
}
.blog_btn button {
  color: #333;
  border-color: #fff;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 2px 3px #f0812e;
  border-radius: 10px;
  outline: none;
  padding: 15px 70px;  
}
.blog_btn button:active {
  box-shadow: none;
  position: relative;
  top: 7px;
}

/*ブロググリッド */
.grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 6%;
  margin-bottom: 200px;
}

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

.grid_text {
  width: 100%;
}

/*ブログ個別ページ*/
.blog-flex {
  display: flex;
  justify-content: center;
  padding: 30px;
}

.blog_img {
  width: 70%;
  padding: 10px;
}

.blog_date {
  width: 70%;
  padding: 10px;
}


/* footer */
.footer {
  width: 100%;
  height: 250px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 50px;
}

.copy a {
  color: #fff;
}

.arrow {
  position: relative;
  top: -150px;
}

.twitter {
  position: relative;
  top: -140px;
}


/* コンタクトフォーム */
.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 150px;
  max-width: 720px;
}

.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #f0812e;
  color: #fff;
  font-size: 14px;
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #fff;
  color: #283593;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 2px 3px #f0812e;
  border: none;
  outline: none;
  border-radius: 10px;
  cursor: pointer;
  
}
.Form-Btn:active {
  box-shadow: none;
  position: relative;
  top: 7px;
}


/*ねこアニメーション------------------------------*/
.demo_item{
    width: 80px;
    height: 80px;
    display: block;
    position: relative;
    bottom: 30px;
    cursor: pointer;

}
.demo_item.anime{
    animation-name: upDown;
    animation-iteration-count: infinite;
    animation-duration: 0.1s;
    animation-direction: alternate;
    animation-timing-function: steps(2);
    transition-duration: .3s;
    transition-property: transform;
}

.demo_stage{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    background-image: 
    linear-gradient(135deg,transparent 30%, rgba(255, 204, 0, 0.9) 50%,transparent 70%), 
    linear-gradient(225deg,transparent 30%,rgba(255, 204, 0, 0.9) 50%,transparent 70%); 
    background-size: 16px 8px; 
    background-position: 0px 80%,8px 80%; 
    background-repeat: repeat-x;
    font-size: 3rem;
    color: #fff;
    text-align: center;
    padding: 50px;
    margin-bottom: 50px;
}


.demo_wrap{
    display: block;
    position: absolute;
    top: 20px;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-duration: 15s;
    animation-iteration-count: 1;
    margin-right: -25px;
}

.demo_wrap[data-order="left"] {
  animation-name: GoLeft;
}
.demo_wrap[data-order="right"] {
  animation-name: GoRight;
}

[data-order="right"] > .demo_item {
  transform: rotateY(180deg);
}


@keyframes GoLeft {
  0% {
      right: 10%;
  }
  100% {
      right: 90%;
  }
}
@keyframes GoRight {
  0% {
      right: 90%;
  }
  100% {
      right: 10%;
  }
}
/*ねこアニメーションここまで------------------------------*/





/*メディアクエリ----------------------------*/
/* SP */
@media screen and (max-width: 768px) {
  /* メインタイトル */
  .main-title {
    font-size: 3.8rem;
    font-weight: bold;
    color: #fff;
    padding-top: 250px;
    padding-left: 10vw;
    margin-bottom: 100px;

  }


    /* ABOUT */
  .self {
    flex-direction: column;
    align-items: center;
  }

  .self_intoro {
    padding: 0;
  }

  .myname {
    font-size: 2rem;
    text-align: center;
    padding-top: 20px;
  }

  .myinfo {
    font-size: 1.8rem;
    padding: 0;
  }


  .slide img { 
    display: block;
    width: 80%;
    height: 50%;
    margin: 0 auto;
  }

  
  /* BLOG */
  #blog_contents {
    flex-direction: column;
    align-items: center;
  }

  .blog_card {
    margin: 30px;
    z-index: 100;
  }
  .date {
    font-size: 1.5rem;
    padding-top: 20px;
  }
  .blog_text {
    font-size: 1.5rem;
    padding-top: 10px;
  }


}

@media screen and (max-width: 767px) {
  .Form {
    margin-top: 40px;
  }
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }

  .footer-wrapper {
    position: relative;
    bottom: -100px;
  }
  
  .footer_copy {
    font-size: 1.2rem;
    text-align: center;
  }

}




  

