* {
      margin: 0px;
      padding: 0px;
  }

body {
  font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', "游ゴシック体", "Yu Gothic", YuGothic,'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .8px;
  color: #333;
}
a {
    transition: opacity .3s;
    text-decoration: none;
    color: #1ca9e3;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

ul,
li {
  list-style: none;
}
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.font-g-serif {
  font-family: 'Playfair Display', serif;
}
/*--------------------------------
 レイアウト
---------------------------------*/
.wrapper {
  padding-top: 73px;
}

.section {
  padding: 90px 0;
}

.section:nth-of-type(odd) {
  background-color: #f7f7f7;
}

.inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}
/*--------------------------------
 ボタン
---------------------------------*/
.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 40px;
  display: inline-block;
  border-radius: 100px;
  transition: all .2s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translate(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-pink {
  background-color: #F0B1B8;
  color: #333;
  transition: all .3s;
}

.btn::after {
  content:"";
  display: inline-block;
  height: 100%;
  width:100%;
  border-radius: 100px;
  position: absolute;
  top:0;
  left:0;
  z-index: -1;
  transition: all .4s;
}

.btn-white::after {
  background-color: #fff;
}

.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}



/*--------------------------------
 見出し
---------------------------------*/
.title {
 
  font-size: 34px;
  font-weight: normal;

  line-height: 1;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: .08em;
  color: #333;

}

.lead {
  margin-bottom: 30px;
  text-align: center;
}
/*--------------------------------
ヘッダー
---------------------------------*/
.header {
  position: fixed;
  top: 0;
  /* z-index: 1; */
  width: 100%;
  /* background-color: pink; */
}

.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

.header-logo {
  font-size: 24px;
 
  line-height: 1.2;
  margin-right: 20px;
  letter-spacing: .05em;
  
}

.header-logo a {
  color: #333;
  
}
.header-logo a:hover{
  color:#e16370;
}

.gnav-list {
  display: flex;
  justify-content: space-between;
  
}

.gnav-item:not(:last-child) {
  margin-right: 20px;
}

.gnav-item a {
  position: relative;
  font-size: 14px;
 
  display: inline-block;
  padding: 5px 0;
  transition: .3s;
  letter-spacing: .08em;
  color: #333;
}


.gnav-item a:hover{
  color:#e16370;
}

/*--------------------------------
 メインビジュアル
---------------------------------*/
.main-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85vh;
  text-align: center;
  background-image: url(../img/1_home/p-top.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.main-visual-inner {
  padding: 0 40px;
  position: absolute;
}

.main-visual-title {
  font-family: 'Dancing Script', cursive;
  font-size: 80px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 5px;
  color:#e16370;
  text-align: center;
  animation-name: moveInLeft;
  animation-duration:2s;
}
@keyframes moveInLeft {
  0% {
    opacity:0;
    transform: translateX(-100px);
  }
  80% {
    transform: translateX(10px);

  }
  100% {
    opacity:1;
    transform: translate(0);
  }
}

/*--------------------------------
 Works
---------------------------------*/
.works-content {
  background-color: #f7f7f7;
}

.works-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -40px;
}
.works-item {
  width: 31.74603%;
  margin-right: 1.58730%;
  margin-bottom: 40px;
  color: #333;
  padding: 15px;
  transition: all .3s;
}
.works-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.works-item:active {
  transform: translate(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.works-item:hover {
  color: #e16370;
}
.works-item:nth-of-type(3n) {
  margin-right: 0;
}

.works-img img {
  border: 1px solid #e6e6e6;
  transition: all .3s;
}

.works-img img:hover {
  opacity: .5;
}

.works-name {
  font-size: 14px;
  font-weight: bold;
  margin-top: 8px;
}

.works-info {
  font-size: 12px;
}

.logo-size {
  width: 34%;
  margin: 0 auto;
}
.w720 {
  width: 720px;
  margin: 0 auto;
}
.w500 {
  width: 500px;
  margin: 0 auto;
}

.business-card-size {
  margin: 0 auto;
}

.retouch-size {
  width: 72%;
  margin: 0 auto;
}

.works-comment {
  margin: 30px auto;
  text-align: center;
}

.text-muted {
  color: #6c757d;
  font-size: 16px;
}

.works-bottom {
  padding-bottom: 40px;
}
/*--------------------------------
  Works-illust
---------------------------------*/

.illust-flower-size {
  width: 60%;
  margin:0 auto;

}
.pt20 {
  padding-top: 20px;
}


/*--------------------------------
  Skill
---------------------------------*/

.text-center {
  text-align: center;
  margin-bottom: 50px;
}
.skill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -50px;
}

.skill-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 48%;
  margin-bottom: 50px;
}

.skill-img {
  width: 60px;
  height: auto;
  margin-right: 20px;
}

.skill-body {
  flex: 1;
}

.skill-name {
  margin-bottom: 3px;
  font-weight: bold;
  font-size: 16px;
}
.rate {
  position: relative;
  font-size: 16px;
  display: inline-block;
  width: 100%;
  height: 20px;
  letter-spacing: .3em;
}

.rate:before,
.rate:after {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 20px;
  display: inline-block;
  height: 20px;
  content: "★★★★★";
}

.rate:before {
  color: #ddd;
}

.rate:after {
  overflow: hidden;
  white-space: nowrap;
  color: #f181b4;
}

.rate1:after {
  width: 20px;
}

.rate2:after {
  width: 40px;
}

.rate3:after {
  width: 60px;
}

.rate4:after {
  width: 80px;
}

.rate5:after {
  width: 100px;
}
/*--------------------------------
  About
---------------------------------*/
.profile {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.profile-img {
  width: 20%;
  margin-right: 30px;
  border-radius: 50%;
}
.profile-img img {
  border-radius: 50%;
}
.profile-body {
  flex: 1;
}
.profile-body p:not(:last-child) {
  margin-bottom: 30px;
}
/*--------------------------------
  Contact
---------------------------------*/
.pt10 {
  padding-top: 10px;
}

.contact-item:not(:last-child) {
  margin-right: 10px;
}

.contact-text {
  margin-top: 10px;
}
/*フォーム*/
form div {
  margin-bottom: 14px;
}
label {
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}
input[type="name"],
input[type="text"],
input[type="email"],
textarea {
  
  border:1px #e16370 solid;
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
}
input[type="text"],
input[type="email"]{
  width:100%;
  max-width:240px;
}
textarea {
  width:100%;
  max-width:480px;
  height:6rem;
}
input[type="submit"]{
  border:none;
  cursor:pointer;
  line-height: 1;
  margin-top:20px;
}
.submit-btn {
  display       : inline-block;
  border-radius : 3%;          
  font-size     : .9rem;       
  text-align    : center;    
  cursor        : pointer;    
  padding       : 12px 35px;  
  background    : #e16370;    
  color         : #ffffff;    
  line-height   : 1em;         
  opacity       : 0.8;         
  transition    : .3s;         
  display: block;
  width: 200px;        
  margin-top: 40px;
}
.submit-btn:hover {
  opacity       : 1;         
}
.back-btn {
  display       : inline-block;
  border-radius : 3%;         
  font-size     : .9rem;        
  text-align    : center;      
  cursor        : pointer;     
  padding       : 12px 35px;   
  background    : #a9a9a9;    
  color         : #333333;    
  line-height   : 1em;        
  opacity       : 0.8;         
  transition    : .3s; 
  display: block;
  width: 200px;        
  margin: 25px auto 60px auto;
}
.back-btn:hover {
  opacity       : 1;          
}

.check-btn {
  margin: 15px auto 30px auto;
}
/*--------------------------------
  check.php
---------------------------------*/
main .check-title {
  font-size: 1.2rem;
  font-weight: normal;
  text-align: center;
  padding: 20px 0 10px 0;
}

.check dt {
  margin-top: 1em;
  padding: 0 2em;
  color: #FFF;
  background-color: #F0B1B8;
  width:50%;
  display: block;
  margin:0 auto;
  
  
}
.check dd {
  padding: 1em 1em 2em 1em;
    margin-left: 0;
    font-size: .8em;
    border-width: 0 1px 1px;
    border-style: none;
    
    width:50%;
    display: block;
    margin:0 auto;
    
    
  }

  .check-submit {
    display: block;
    width: 200px;        
    margin: 0px auto 50px auto;
  }
  .container-check {
    display: flex;
    justify-content: center;
  }
 
 /*--------------------------------
thanks.html
---------------------------------*/
.thanks-height {
  padding-bottom: 120px;
}
/*--------------------------------
 ページトップ
---------------------------------*/

.page-top {
  color: #e16370;
  font-weight: bold;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  background-color: #f7f7f7;
}

.page-top .material-icons-outlined {
  vertical-align: bottom;
  color: #fff;
}


/*--------------------------------
 フッター
---------------------------------*/
.footer {
  padding: 30px;
  background-color: #e16370;
  opacity: .5;
}

.copyright {
  font-size: 10px;
  text-align: center;
  color: #ffffff;
}

/*--------------------------------
 下層：Worksページ
---------------------------------*/
.article {
  padding: 80px 0;
}

.article-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-title {
  font-size: 21px;
  margin-bottom: 30px;
  text-align: center;
}

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

.article-img-sp {
  width: 50%;
  margin: 0 auto;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 80px;
}

.article-body h3 {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: .5rem 0;
  border-left: 5px solid #e16370;
  background: #fff;
}

.article-info-title {
  font-size: 16px;
  font-weight:bold;
}

.article-body img {
  margin-bottom: 30px;
}

.article-body p {
  margin-bottom: 30px;
}

.home-link {
  text-align: center;
}

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

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  /* 見出し */
  .title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  /* レイアウト */
  .wrapper {
    padding-top: 57px;
  }

  .section {
    padding: 60px 0;
  }

  .inner {
    padding: 0 20px;
  }

  /* ヘッダー */
  .header .inner {
    padding: 15px;
  }

  .header-logo {
    font-size: 15px;
    margin-right: 15px;
  }

  .header-nav-item:not(:last-child) {
    margin-right: 10px;
  }

  .header-nav-item a {
    font-size: 10px;
  }

  .header-nav-item a:after {
    display: none;
  }

  /*  メインビジュアル */
  .main-visual {
    height: 75vh;
  }

  .main-visual-inner {
    padding: 0 20px;
  }

  .main-visual-title {
    font-size: 42px;
  }
  .main-visual-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .main-visual-text {
    text-align: center;
  }

  /* Works */
  .works-name {
    font-size: 10px;
  }

  .works-list {
    justify-content: space-between;
  }

  .works-item {
    flex: 0 0 48%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .article-img-sp {
  width: 100%;
  }

  .logo-size {
    width: 60%;
    margin: 0 auto;
   }

 .illust-flower-size {
  width: 80%;
  margin:0 auto;
 }

 .mario-sp-size {
   width: 50%;
 }

  /* Skill */
  .skill-list {
    display: block;
    margin-bottom: 0;
  }

  .skill-item {
    width: 100%;
    margin-bottom: 35px;
  }

  .skill-item:last-child {
    margin-bottom: 0;
  }

  /* About */
  .profile {
    display: block;
  }
  .profile-img {
    width: 150px;
    margin: 0 auto;
    margin-bottom: 25px;
  }

  .profile-body p:not(:last-child) {
    margin-bottom: 20px;
  }

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

  /* 下層ページ */
  .article {
    padding: 50px 0;
  }
  /* フォーム */
 input[type="text"],
 input[type="email"],
 textarea {
   max-width:100%;
 }

 .submit-btn {      
  display: block;
  width: 200px;        
  margin:35px auto 0px auto;
}

 /*--------------------------------
 check.php
---------------------------------*/
main .check-title {
  padding: 25px 0 15px 0;
}


.check dt {
 
  width:80%;
  display: block;

}
.check dd {
    padding: 1em 1em 2.5em 1em;
    width:80%;
  }

.check-submit {
  margin-bottom: 40px;
}


  
/*--------------------------------
 thanks.html
---------------------------------*/
  .thanks-height {
    padding-bottom: 200px;
  }

}
