html {
/*  font-family: 'Dancing script' , cursive;*/
  font-family: 'Noto Sans JP', sans-serif;
/*  font-family: 'Poppins', sans-serif;*/
}

.pop {font-family: 'Poppins', sans-serif;}


/*
body {
    background-color: #defa93;
}
*/

.container {
    width: 80%;
    max-width: 1120px;
/*    background-color: aquamarine;*/
    margin: 0 auto;
    position: relative;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}


header {
    padding: 27px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #3664f5;
}
.logo span {
    color: #e7337d;
}
.header_menu li {
    margin-left: 40px;
}
.header_menu li a {
    transition: .3s;
}
.header_menu li a:hover {
    color: #3664f5;
    transition: .3s;
}

@media only screen and (max-width: 768px) {
  header .container {
    justify-content: center;
  }
  .header_menu li {
    margin: 20px 16px 0;
  }
}

/*メイン*/
#hero {
    background-image: url(../imeges/hero.jpg);
    background-position: center;
    background-size: cover;
    height: 540px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 90px;
    overflow: hidden;
}
#hero::before {
   content: ''; 
    width: 100%;
    height: 100%;
    background-color: aqua;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    z-index: 1;
}
.hero_inner {
    z-index: 2;
    color: #3664f5;
    width: 100%;
    text-align: center;
}
.hero_inner p {
   font-size: 20px;
   font-weight: 500;
    margin-bottom: 10px;
}
.hero_inner h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 12px;
}

/*アバウト*/
#About {
    margin-bottom: 120px;
}
.title {
    font-size: 20px;
    font-weight: 600;
    color: #3664f5;
    margin-bottom: 30px
}
#About h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 30px;
}
.column-2 {
    width: 48%;
}
.column-2 p {
    font-size: 16px;
    line-height: 1.5em;
}
.text {
    line-height: 2;
}
.About-img {
    background-image: url(../imeges/About.jpg);
    background-position: center;
    background-size: cover;
    height: 250px;
    border-radius: 20px;
}

/*ワークス*/

#followme {
	text-align:center;
	margin-top: 30px;
	margin-bottom: 100px;
}

#followme img {
	margin-bottom: 5px;
	margin: 20px;
	
}

/*お問い合わせ*/

#Contact {
  padding: 30px 15px 30px 15px;
  margin-bottom: 60px;
  background-color: #adeef4;
}
#Contact .container {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}

#Contact form {
  max-width: 540px;
  margin: 0 auto;
  margin-top: 20px;
    margin-bottom: 20px;
}
#Contact label {
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
}
#Contact input,  textarea {
  background-color: #ffffff;
  display: block;
  width: 100%;
  padding: 13px 16px;
  margin-bottom: 30px;
  color: #16161a;
}
#Contact input[type=submit] {
  text-align: center;
  background-color: #3664f5;
  color: #ffffff;
  font-weight: 700;
  padding: 20px 16px 22px;
  letter-spacing: 6px;
  border-radius: 6px;
  transition-duration: .2s;
}
#Contact input[type=submit]:hover {
  background-color: #9d8ecf;
}


footer {
  background-color: #ffffff;
  text-align: center;
  color: #16161a;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 20px 0;
}

.icon {
  text-align: center;
}
/* 戻るボタンここから */

#page_top{
	width: 60px;
	height: 60px;
	position: fixed;
	right: 30px;
	bottom: 80px;
/*	background: #dcf0f5;*/
	opacity: 0.6;
}
#page_top a{
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	text-decoration: none;
}
#page_top a::before{
/*	font-family: 'Font Awesome 5 Free';*/
/*	font-weight: 900;*/
/*	content: '\f0d8';*/
	font-size: 25px;
/*	color: #000000;*/
	position: absolute;
	width: 25px;
	height: 25px;
	top: 0;
	bottom: 5px;
	right: 0;
	left: 3px;
	margin: auto;
	text-align: center;
}

html {
    scroll-behavior: smooth;
}

/* 戻るボタンここまで */