@charset "utf-8";

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #cad5c2cc;
}

/* ヘッダーナビ 固定 */
.header-nav.fixed{
  position: fixed;
    z-index: 999;
    top: 10px;
    right: 0;
    background-color: #86b466;
    padding: 15px 20px;
    font-size: 14px;
    letter-spacing: 0.2em;
    opacity: 0.9;
}


/* ハンバーガーメニュー */
.hamburger-menu {
  width: auto;
  background-color: #a5c68d;
  position: fixed;
  bottom: 0;
  z-index: 2;
  width: 100%;
  display: none;
}

.ham-nav {
  margin: 0 auto;
}

.ham-nav nav {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: black;
}

.ham-nav nav ul li {
  padding: 15px 0;
  text-align: center;
  border-bottom: 2px dotted #fffff08a;
}

.ham-nav nav ul li a{
  color: black;
  text-decoration: none;
  padding-bottom: 5px;
}

.ham-nav nav ul li a:hover{
  color: ivory;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 2px solid ivory;
}

.ham-close {
  font-size: 16px;
}

.open {
  display: block;
}

/* google icon */

.material-icons.md-36 {
  font-size: 36px; 
 }

.material-icons.md-48 {
   font-size: 48px; 
  }

.material-icons.md-64 {
  font-size: 64px; 
}

/* h2じわっと */
.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}

/* divふわっと */
.base-fadeUp {
  width: 980px;
  margin: 0 auto;
  background-color: #fffff7;
  padding: 50px 0;
  border: 3px solid black;
  border-radius: 30px;
  margin-bottom: 70px;
  background-image: url(img/pin.png);
  background-position: right 50% top 10px;
  background-repeat: no-repeat;
  background-size: 4%;
  /* ふわっ */ 
  animation-name:fadeUpAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

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

.base-fadeIn {
  width: 980px;
  margin: 0 auto;
  background-color: #fffff7;
  padding: 40px 0 80px 0;
  border: 3px solid black;
  border-radius: 30px;
  margin-bottom: 70px;
  background-image: url(img/pin.png);
  background-position: right 50% top 10px;
  background-repeat: no-repeat;
  background-size: 4%;
}

/* 見出しタグ */
h1 {
  font-size: 30px;
    /* text-align: center; */
    /* margin: 20px 0px 60px; */
    letter-spacing: 0.1em;
    padding-bottom: 5px;
}

h1 img {
  height: 40px;
  width: auto;
}

h2 {
  font-size: 25px;
  letter-spacing: 20%;
  text-align: center;
  padding: 40px 0;
  letter-spacing: 0.2em;
}

h3 {
  font-size: 20px;
}

/* 1.ヘッダー */

header {
  width: 980px;
  box-sizing: border-box;
  margin: 0 auto;
  margin-top: 200px;
}

.header-title {
  display: flex;
  justify-content: center;
  align-items: end;
  margin-bottom: 30px;
}

.header-title-img {
align-items: center;
background-image: url(img/back-ivory.png);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}

.header-title-h1 {
  padding-left: 30px;
  box-sizing: border-box;
}

.header-title-h1-sp {
  display: none;
}

header img {
  width: 300px;
  display: block;
  margin: 0 auto;
}

.header-greeting {
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-size: 16px;
  color: black;
  margin: 30px 0 150px 0;
}

header nav {
  font-weight: bold;
  /* width: 700px; */
  width: 730px;
  margin: 0 auto;
  font-size: larger;
  letter-spacing: 0.2em;
}

header nav ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
}

header nav ul a {
  color: black;
  text-decoration: none;
  border-bottom: 2px solid black;
  padding-bottom: 5px;
}

header nav ul a:hover {
  color: black;
  padding:10px;
  background-color: yellow;
  border-radius: 10px;
  /* background-color: hwb(59 33% 2%); */
  font-size: medium;
}

header nav ul li {
  font-size: 16px;
  letter-spacing: 2;
  width: 120px;
  text-align: center;
  /* margin-left: 5px;
  margin-right: 5px; */
}

/* 2.サービス */

#service {
  margin-top: 100px;
  padding:40px 0;
}

.service-img {
  width: 100%;
}

.service-img img {
  width: 70%;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;  
}

.service-contents {
  margin-top: 50px;
}

.service-contents img {
  width: 250px;
  display: block;
  margin: 0 auto;
}

.service-contents-inner {
  width: 710px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.service-contents-inner ul {
  margin-left: 35px;
  line-height: 2;
}

.service-contents-inner h3 {
  margin-bottom: 10px;
  color: #DD5A3E;
  padding-left: 15px;
}


/* 3.ポリシー */

#policy h3 {
  margin-top: 10px;
  text-align: center;
  color: #DD5A3E;
}

.policy-p {
  margin: 0 auto;
  line-height: 2;
  text-align: center;
  margin-bottom: 10px;
}

.policy-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 20px 0;
}

.policy-ex {
  width: 51%;
  margin: 0 auto;
  line-height: 2;
  background-color: rgb(252, 246, 227);
  padding: 20px;
}

.policy-ex li {
  list-style: none;
}

.policy-p-sp {
  display: none;
}

/* 4.実績 */

.section-sample-1 {
  width:800px;
  margin: 0 auto;
}

.section-sample-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.section-sample-p{
  width: 96%;
  padding: 2%;
}

.section-sample-p a{
  color: black;
}

.section-sample-img {
  width: 96%;
  padding: 2%;
}

.section-sample-img img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid gray;
}

.section-sample-p h4 {
  margin-bottom: 20px;
}

.section-sample-p p {
  margin-bottom: 15px;
}

section:nth-of-type(even) .section-sample-wrapper {
  flex-direction: row-reverse;
}

.sample-logos {
  margin-top: 20px;
}

.sample-logos img {
  height: 30px;
}

.button {
  margin-top: 50px;
  margin-bottom: 20px;
}

.button-text {
  width: 25%;
  display: block;
  margin: 0 auto;
  text-align: center;
  background-color: #DD5A3E;
  border-radius: 10px;
  color: white;
  font-size:16px;
  font-weight:bold;
  padding: 15px 20px;
}

/* ボタン */
.button a {
  text-decoration: none;
  color: white;
}

.button a:hover{
  opacity: 70%;
}

/* 5.自己紹介 */

.about-wrapper {
  width: 800px;
  margin: 0 auto;
  font-size: 16px;
}

.profile {
  margin-bottom: 30px;
}

.profile img {
  width: 150px;
  border: 2px solid #000;
  border-radius: 130px;
  display: block;
  margin: 0 auto;
}

.profile-left {
  width: 24%;
  margin: 0 auto;
}

.profile-right {
  width: auto;
  text-align: center;
}

.about-wrapper h3 {
  line-height: 2;
  margin: 20px 0 ;
  color: #DD5A3E;
}

.profile-1 {
  line-height: 2;
  padding-left: 20px;
  list-style:none;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.profile-1-sp {
  display:none;
}

.profile-add {
  display: flex;
  justify-content: space-evenly;
}

.profile-2 {
  line-height: 2;
  padding-left: 20px;
  list-style:none;  margin-bottom: 10px;
  margin-bottom: 20px;
}

.profile-add li {
  list-style: none;
}

.thinking {
  line-height: 2;
}

.border {
  font-weight: bold;
  border-bottom: 2px solid;
  padding: 5px 5px 5px 0;
}

.red {
  color: #DD5A3E;
  font-weight: bold;
}

.work-history {
  /* border: 2px dashed black; */
  font-size: 16px;
  background-color: #FCF6E3;
}

.about-wrapper dl {
  width: 800px;
  margin: 0 auto;
  line-height: 2;
  /* margin-bottom: 50px; */
  margin-top: 20px;
}

.about-wrapper dt {
  font-weight: bold;
}

.about-wrapper dd {
  margin-bottom: 20px;
}

.about-wrapper dd ul {
  list-style: none;
  margin-left:10px;
  padding: 20px 0;
}

dl dd ul li {
  padding-left: 10px;
}

.li-title {
  border-bottom: 1px solid black;
  padding: 5px;
}

.li-contents {
  margin-bottom: 15px;
}

/* 6.お問い合わせ */

.contact-text {
  text-align: center;
  font-size: 17px;
  line-height: 2;
  margin-bottom: 40px;
}

.contact-text-sp {
  display: none;
}

.must {
  font-weight: normal;
  font-size: 12px;
  background-color: #DD5A3E;
  color: white;
  padding: 5px;
  border-radius: 20px;
  margin-left: 10px;
}

.contact-form {
  width: 800px;
  margin: 0 auto;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}

.form-label {
  display: block;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 10px;
}

.form-label-name {
  font-weight: normal;
}

.form-label p {
  margin-bottom: 10px;
}

.inputs-name {
  padding: 10px 0;
  width: 41%;
  border: 2px solid black;
  border-radius: 10px;
  margin-right: 20px;
  margin-left: 5px;
  padding-left: 10px;
  box-sizing: border-box;
}

.inputs {
  display: block;
  padding: 10px 0;
  width: 600px;
  border: 2px solid black;
  border-radius: 10px;
  margin: 10px 0;
  padding-left: 10px;
}

input[type="submit"]{
  background: #DD5A3E;
  border-radius: 10px;
  border: none;
  color: white;
  font-size:16px;
  font-weight:bold;
  padding: 10px 20px;
  margin-left: 20px;
}

input[type="submit"]:hover{
  opacity: 0.7;
}

input[type="reset"]{
  background: gray;
  border-radius: 10px;
  border: none;
  color: white;
  font-size:16px;
  font-weight:bold;
  padding: 10px 20px;
  margin-left: 20px;
}

input[type="reset"]:hover {
  opacity: 0.7;
}

.under-form {
  text-align: center;
}

/* フッター */
footer {
  width: 980px;
  margin: 0 auto;
  padding: 70px 0;
}

.footer-nav {
  width: 700px;
  margin: 0 auto;
}

.footer-nav ul{
  display: flex;
  justify-content: space-around;
  list-style: none;
}

.footer-nav ul a {
  color: black;
}

.footer-nav ul a:hover {
  color: black;
  padding:10px;
  background-color: #E6CAEA;
}

footer nav ul li {
  letter-spacing: 2;
}

footer p {
  width: 800px;
  margin: 0 auto;
  margin-bottom: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

footer small {
  display: block;
  width: 800px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 20px;
  text-align: center;
}


/* レスポンシブ */

@media screen and (min-width:1000px) {
  .ham-menu-icon {
    display: none;
  }
}

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

  /* ハンバーガーメニュー */
  .ham-menu-icon {
    display: none;
    /* padding: 10px 0;
    background-color: #86b466;
    color: black;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 3; */
  }

/* ヘッダー */
  header {
    width: 80%;
  }

  .header-title {
    flex-direction: column-reverse;
    align-items: center;
  }

  .header-title-h1 h1{
    text-align: center;
    margin-bottom: 50px;
  }

  .header-img-h1 {
    align-items: center;
    background-image: url(img/back-ivory.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .base-fadeUp {
    width: 95%;
    padding: 0;
  }

  .base-fadeIn {
    width: 95%;
  }

  /* サービス */
  .service-contents {
    margin: 0 auto;
    width: 81%;
  }

  .service-contents-inner {
    width: auto;
  }

  /* 制作実績 */
  .section-sample-1 {
    width: 80%;
  }

  .section-sample-p {
    width: 80%;
    margin: 0 auto;
    font-size: 15px;
}

  .section-sample-wrapper {
    margin-top: 30px;
    flex-direction: column-reverse;
  }

  section:nth-of-type(even) .section-sample-wrapper {
    flex-direction: column-reverse;
    margin-top: 30px;
    margin-bottom: 30px;
    border-top: 1px dashed black;
    padding-top: 30px;
    border-bottom: 1px dashed black;
    padding-bottom: 30px;
  }

  .section-sample-wrapper img {
    display:block;
  }

  .service-img img {
    margin-bottom: 30px;
  }

  .section-sample-img img {
    width: 90%;
    margin: 0 auto;
  }

  /* 自己紹介 */
  .about-wrapper {
    width: auto;
  }

  .profile-1 {
    font-size: 16px;
    padding-left: 0;
  }

  .about-wrapper h3 {
    margin: 10px 0;
  }

  .profile-add {
    display: block;
  }

  .profile-add-left {
    margin-bottom: 20px;
  }

  .thinking {
    width: 81%;
    margin: 0 auto;
    font-size: 16px;
  }

  .about-wrapper dl {
    width: 100%;
    font-size: 15px;
  }

  .contact-text {
    font-size: 16px;
  }

  /* お問い合わせ */

  .contact-form {
    width: 80%;
    margin-bottom: 40px;
    width: auto;
  }

  .contact-form form {
    width: 90%;
  }

  .form-label-name {
    display: flex;
    align-items: center;
  }
  
  .about-wrapper dd {
    width: 90%;
    margin: 0 auto;
  }

   .inputs {
    width: 100%;
   }

  .inputs-name {
    width: 100%
  }

  /* フッター */
  footer {
    width: auto;
  }

  footer p {
    width: auto;
  }

  .footer-nav {
    width: 80%;
  }

  footer small {
    width: 80%;
  }

}

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

  /* ハンバーガーメニュー */
  .ham-menu-icon {
    display: block;
    padding: 10px 0;
    background-color: #86b466;
    color: black;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 3;
  }

  .header-nav {
    display: none;
  }

}

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

  body {
  font-size: 15px;
}

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
    margin-top: 20px;
  }

  h3 {
    font-size: 16px;
  }

  /* ヘッダー */
  header {
    margin-top: 200px;
  }

  .header-title {
    flex-direction: column-reverse;
  }

  .header-title-img img {
    width: 60%;
  }

  .header-title-h1 {
    text-align: center;
    font-size: 30px;
  }

  .header-title-h1 h1{
    margin-bottom: 30px;
    display: none;
  }

  .header-title-h1-sp {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.8;
    letter-spacing: 0.3em;
  }

  /* サービス */

  .base-fadeIn {
    width: 95%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .service-contents {
    padding: 0 20px;
    background-image: none;
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .service-contents-inner {
    margin-bottom: 30px;
  }

  .service-contents-inner ul {
    margin-left: 15px;
    background-image: none;
  }

  /* ポリシー */

  #policy h3 {
    width: 93%;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .policy-icon {
    border: none;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0;
    width: auto;
    height: auto;
  }

  #icon-sp {
    font-size: 48px;
  }

  .policy-p {
    display: none;
  }

  .policy-p-sp {
    display: block;
    width: 96%;
    margin: 0 auto;
  }

  .policy-ex {
    width: 90%;
    margin-top: 20px;
    margin-bottom: 80px;
  }

  .policy-ex li {
    font-size: 15px;
  }

  /* 制作実績 */

  .section-sample-wrapper {
    margin-top: 0;
  }

  .section-sample-p {
    width: 90%;
  }

  .section-sample-p h4 {
    margin: 10px 0;
  }

  .section-sample-p a {
    color: black;
  }

  .button {
    margin-top: 50px;
    margin-bottom: 80px;
  }

  .button-text {
    width: 50%;
    font-size: 15px;
  }

  /* 自己紹介 */
  .about-wrapper dl {
    margin-bottom: 70px;
  }

  .profile-left {
    width: auto;
  }

  .profile img {
    width: 120px;
  }

  .profile-1 {
    display: none;
  }

  .profile-1-sp {
    display:block;
    list-style: none;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.7;
  }

  .profile-2 {
    line-height: normal;
    padding-left: 0;
    margin-bottom: 10px;
    font-size: 15px;
    margin-top: 15px;
  }

  .thinking {
    width: 92%;
    font-size: 14px;
  }

  .work-history {
    font-size: 13px;
  }

  .li-title {
    font-size: 13px;
  } 

  .li-contents {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 5px;
  } 

  .about-wrapper dd {
    width: 95%;
    margin: 0 auto;
  }

  .dl dd ul li {
    padding: 0 10px;
  }

  /* お問い合わせ */
  .contact-text {
    display: none;
  }

  .contact-text-sp {
    display: block;
    text-align: center;
  }

  .contact-form {
    width: 90%;
    margin-bottom: 40px;
    margin-top: 30px;
  }

  .contact-form form {
    width: 90%;
  }

  input[type="submit"] {
    padding: 10px 15px;
  }

  input[type="reset"] {
    padding: 10px 15px;
  }

  .under-form {
    margin-bottom: 40px;
  }

  .form-label-name {
    display: flex;
    align-items: center;
  }

  .under-form {
    font-size: 14px;
    margin-bottom: 60px;
  }

  /* フッター */

  .footer-nav {
    font-size: 14px;
  }

}
