@charset "UTF-8";

/*--------------------------------
 全体
---------------------------------*/
body {
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo,
    sans-serif;
  font-size: 16px;
  color: #333;
  background-image: url(images/bgwhtile.jpg);
  background-repeat: repeat;
  background-size: auto;
  background-position: top left;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*--------------------------------
 レイアウト
---------------------------------*/
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 30px;
}

/*--------------------------------
ヘッダー
---------------------------------*/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding-bottom: 40px;
  background-image: url(images/bgwhtile.jpg);
}

.header .logo {
  width: 400px;
  margin: 10px auto;
}

/*--------------------------------
メインビジュアル
---------------------------------*/
.main-visual {
  text-align: center;
}

/*--------------------------------
 グローバルナビ
---------------------------------*/
.global-nav {
  position: fixed;
  left: 0;
  top: 80px;
  width: 100%;
  padding: 10px 0;
  background-color: #4e7003;
  z-index: 100;
}

.global-nav ul {
  display: flex;
  justify-content: center;
}

.global-nav ul li {
  font-size: 18px;
  color: whitesmoke;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-right: 80px;
}

.global-nav ul li:last-child {
  margin-right: 0;
}

/*--------------------------------
 コンセプト
---------------------------------*/
.concept {
  padding-top: 150px;
}

.concept  .container {
  display: flex;
  align-items: center;
}

.concept .img {
  width: 50%;
  padding-left: 70px;
  padding-right: 40px;
}

.concept .desc {
  width: 50%;
  padding-right: 20px;
  padding-left: 20px;
}

.concept .subtitle {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 20px;
  margin-bottom: 20px;
}

.concept .title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #5f5f5f;
  margin-bottom: 30px;
}

.concept .text p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

/*--------------------------------
 profileプロフィール
---------------------------------*/
.profile {
  margin: 60px;
}

.profile > .container {
  display: flex;
  align-items: center;
}

.profile .img {
  width: 30%;
  padding-left: 10px;
  padding-right: 40px;
}

.profile .desc {
  width: 70%;
  padding-right: 20px;
  padding-left: 20px;
}
.profile .heading {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #4e7003;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 120px;
  margin-top: -120px;
}

.profile .subtitle {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 28px;
  margin-bottom: 20px;
  margin-left: 10px;
}
.profile .title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #5f5f5f;
  margin-bottom: 30px;
}
.profile .text p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

/*--------------------------------
  略歴
  ---------------------------------*/
.history {
  padding: 50px 0;
}

.history .heading {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #4e7003;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 120px;
  margin-top: -120px;
}

.history .subtitle {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 28px;
  margin-bottom: 20px;
  margin-left: 10px;
}

.history .list {
  display: flex;
  flex-flow: wrap;
}

.history .list .item {
  width: calc((100% - 60px) / 2);
  margin: 20px;
  /* flex: 0 1 calc((100% - 60px) / 3); */
}

.history .list .item:nth-child(2n) {
  margin-right: 0;
}

.history .list .item .img img {
  width: 80%;
  /* margin-bottom: 12px; */
  margin: 30px;
  height: auto;
  border-radius: 80%; /* 楕円形にする */
}


.history .list .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  width: 450px;
  margin-left: 40px;
  margin-top: 20px;
}

.history .list .date {
  font-size: 20px;
  margin-left: 40px;
}

/*--------------------------------
 フッター
---------------------------------*/
.footer {
  padding: 70px 0 30px;
  background-image: url(images/bgwhtile.jpg);
  background-repeat: repeat;
}

.footer .logo {
  width: 180px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.footer .copyright {
  height: 50px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: whitesmoke;
  background-color: #4e7003;
  text-align: center;
  padding: 20px;
}

/*media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.7;
  }

  /* レイアウト */
  main .content {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 30px;
  }


  /* ヘッダー */

  /* .header {
    align-items: center;
    flex-direction: column;

  } */
  /* .header {
    position: fixed;
    z-index: 100;
  } */
  .header img {
    width: 300px;
  }



  .header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding-bottom: 40px;
    background-image: url(/images/bgwhtile.jpg);
  }

  .header .logo {
    width: 400px;
    margin: 10px auto;
  }

  /* グローバルナビ */


  .global-nav {
    position: fixed;
    left: 0;
    top: 60px;
    width: 100%;
    padding: 20px 0;
    background-color: #4e7003;
    z-index: 100px;
  }

  .global-nav ul li {
    font-size: 16px;
  }

  .global-nav ul {
    display: flex;
    justify-content: center;
  }

  .global-nav ul li:last-child {
    margin-right: 0;
  }

  /* コンセプト */

  .concept  .container {
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
  }

  .concept {
    padding: 40px 0;
  }

  .concept .img {
    width: 100%;
    margin: 30px;
  }

  .concept .desc {
    width: 100%;
    padding-right: 0;
    padding-left: 20px;
  }

  .concept .subtitle {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .concept .title {
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .concept .text p {
    font-size: 15px;
    line-height: 1.8;
  }

  h2.title {
    text-align: center;
  }

  p {
    text-align: center;
  }
  /* blog */
  .history .heading {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .history .subtitle {
    font-size: 12px;
    margin-top: 10px;
  }

  .history .list {
    display: block;
  }

  .history .list .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .history .list .img {
    margin-bottom: 10px;
  }

  .history .list .date {
    margin-top: 2px;
  }

  /* フッター */
  .footer {
    padding: 60px 0 20px;
  }

  .footer .logo {
    width: 100px;
    margin-bottom: 40px;
  }

  .footer .copyright {
    font-size: 10px;
  }
}
