@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

@media (min-width: 901px) {
  .wrapper,
  .footer {
    max-width: 850px;
    margin: auto;
  }
  .mobile-nav {
    display: none;
  }
  .mobile-identity-box {
    display: none;
  }
  .mobile-section-about {
    display: none;
  }
}


/* PC */
  .design-inner .text {
    display: flex;
  }

  .design-inner .text-mobile {
    display: none;
  }

/* モバイル */
@media screen and (max-width: 800px) {
  .design-inner .text {
    display: none;
  }

  .design-inner .text-mobile {
    display: block;
  }
}

/*　共有部分
--------------------*/

html {
    font-size: 100%;
}
body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    line-height: 180%;
    color: #373741;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a {
  text-decoration: none;
  color: #373741;
}

/*MAIN
---------------------*/
.article {
  background-color: #f7f7ed;
}

.main {
  width: 85%;
}

/* HEADER
--------------------*/

.pc-nav {
  width: 15%;
  position: fixed;
  height: 100vh;
  top: 0;
  right: 0;
  margin: 0;
  background-color: rgba(195, 197, 185);
  font-size: 16.5px;
  z-index: 100;
}
.pc-nav-list span {
  font-family: 'Montserrat', sans-serif;
}
.pc-nav-list li::marker {
  color: #495e57;
  font-size: 18px;
}
.pc-nav-list {
  padding: 5% 5% 5% 15%;
  position: absolute;
  bottom: 20%;
}



/*HOME
--------------------*/
/*TOP
--------------------*/
.circle {
  position: relative;
  width: 100%;
}

.circle-img {
  position: absolute;
  top: -45px;
  right: -120px;
  z-index: 0;
}


.section-top {
  position: relative;
  z-index: 1; /* circle-imgより上に表示 */
  display: flex;
  padding: 20px;
  background-color: transparent; 
}


.image-section img {
  width: 100%;
  min-width: 235px;
  border-radius: 20px;
  display: block;
  margin-left: 0;
  order: 1;
}
.text-section {
  font-size: 35px;
  font-weight: normal;
  letter-spacing: 0.17em;
  text-align: right;
  order: 2;
  padding: 10% 0 0;

}
.text-section h1 {
  font-weight: normal;
  margin-bottom: 70px;
  white-space: nowrap;
}
.text-section h1 span {
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
}
.text-section h2 {
  font-size: 70px;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
}

/*about
--------------------*/

.section-about {
  background-color: #f7f7ed;
}
.about-inner {
  max-width: 1000px;
  margin: auto;
  padding: 80px 5% 20px;
  justify-content: space-between;
}
.watashi {
  display: flex;
  margin: 10% 0 5% 0;
}

.content {
  display: flex;
  gap: 5%;
}
.about-inner img {
  width: 45%;
  height: 100%;
}
.content h3 {
  font-size: 36px;
  font-weight: normal;
}
.content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 0.1em;
  color: #dbaa1d;
  padding-top: 6px;
}
.about-sentence p {
  line-height: 200%;
}

/*button
---------------------*/

.btn-inner {
  display: flex;
}
.btn {
  display: inline-block;
  margin: 0px 10px 0px;
  padding: 10px 30px;
  color: #495e57;
  font-size: 16px;
  border-radius: 50px;
  background-color: transparent;
  border: 1px solid #495e57;
  font-weight: normal;
  margin-left: auto;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
}
.btn:hover {
  background-color: #495e57;
  color: #fff;
}

/*WORKS
---------------------*/

#circle-topworks {
  left: -90px;
  top: 0px;
}

.topworks-inner {
  position: relative;
  max-width: 1000px;
  margin: auto;
  padding: 80px 5%;
  z-index: 3;
}
.wrapper-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin: 10% 0;
}
.item img {
  width: 100%;
  height: auto;
}
.item h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.1em;  
}
.topworks-inner btn-inner {
  right: 0;
}

/*FOOTER
--------------------*/
#contact {
  background-color: #dbaa1d;
  width: 100%;
}
.footer {
  background-color: #dbaa1d;
  height: 500px;
  position: relative;
  padding: 0 5% ;
}
.footer-inner {
  position: absolute;
  right: 5%;
  text-align: right;
}
.footer-inner p {
  margin-top: 0;
  color: #fff;
  padding-top: 25%;
}
.footer-inner .btn {
  color: #fff;
  border: 1px solid #fff;
  font-family: 'Montserrat', sans-serif;
  margin-top: 20px;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.05em;
  width: 100px;
  text-align: center;
}
.footer-inner .btn:hover {
  background-color: #fff;
  color: #dbaa1d;
}
.footer-annotation {
  position: absolute;
  bottom: 5%;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #fff;
}




/*PROFILE
--------------------*/
/*title
--------------------*/

.title-profile {
  background-size: cover;
  background-image: url(images/title_watashinokoto.png);
  height: 320px;
  width: 100%;
}
.title-profile, .title-profile h1 {
  position: relative;
}
.title-profile::before {
  background: rgba(0, 0, 0, 0.45);
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#title-bar h1 {
  color: #fff;
  font-weight: normal;
  letter-spacing: 0.15em;
  font-size: 45px;
  position: absolute;
  left: 10%;
  top: 50%;
}

/*aberina
--------------------*/

.section {
  background-color: #f7f7ed;
}
#circle-name {
  left: -100px;
  top: 80px;
}
.container {
  position: relative;
  max-width: 1000px;
  margin: auto;
  padding: 80px 5% 20px;
  z-index: 4;
}
.identity {
  display: flex;
  justify-content: space-between;
}
.identity-inner {
  width: 60%;
  padding-top: 5%;
}
.pc-identity-box {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-size: 14px;
  display: flex;
  justify-content: flex-start;
  gap: 60px;
  padding-bottom: 3%;
}

.left-box,
.right-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 40%;
}
.left1 li,
.right1 li {
  display: flex;
  align-items: center;
  position: relative;
  width: 120%;
}
.left1 ul span,
.right1 ul span {
  font-size: 25px;
}
.left1 li::after,
.right1 li::after {
  content: "";
  flex-grow: 1;
  background-color: #373741;
  height: 1px;
  margin-left: 5px;
  margin-right: 5px;
}
.left1 ul,
.right1 ul {
  padding: 0;
  margin: 0;
  list-style-position: inside;
}
.left2 ul,
.right2 ul {
  margin: 0;
  padding-left: 35px;
}
.left2 li,
.right2 li {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.toriseikei {
  font-family: 'Noto sans JP',sans-serif;
}


.identity-inner p {
  font-size: 14px;
  line-height: 200%;
  margin: 0;
  padding: 0 0 3% 0;
}
.identity img {
  width: 38%;
  height: 100%;
  padding-top: 5%;
}

/*biography
--------------------*/

#circle-timeline {
  display: none;
}

.timeline > li {
  overflow: hidden;
  position: relative;
}
.timeline {
  padding: 5% 0 0;
  margin: 0;
}
.timeline-date {
  width: 110px;
  float: left;
  padding-top: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}
.timeline-content {
  float: left;
  border-left: 3px #495e57 solid;
  padding: 20px 0 0px 30px;
  font-size: 14px;
}
#adjustment {
  padding-bottom: 20px;
}
.timeline-content:before {
  content: "";
  width: 20px;
  height: 20px;
  background: #495e57;
  position: absolute;
  left: 101px;
  top: 20px;
  border-radius: 100%;
}

/*skills
--------------------*/

.skills-inner {
  display: flex;
  padding: 5% 0 3% 0;
}
.skills-inner h5 {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  color: #373741;
}
.category {
  padding-left: 5%;
}
.category p {
  margin: 0;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  padding-bottom: 10px;
}
.skills-box {
  padding-left: 5%;
}
#circle {
  display: flex;
  justify-content: space-between;
  width: 150px;
}
.circle-filled {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #373741;
  margin-top: 5px;
  margin-bottom: 13.8px;
}
.circle-empty {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #d9d9d9;
  margin-top: 5px;
  margin-bottom: 13.8px;
}

/*likess
--------------------*/
#circle-likes {
  display: none;
}

.last-container {
  max-width: 1000px;
  margin: auto;
  padding: 80px 5% 80px;
  position: relative;
  z-index: 20;
}
.likes-inner {
  padding-top: 5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.card {
  position: relative;
  width: 180px;
}
.card img {
  width: 100%;
}


/*works
--------------------*/
/*title
--------------------*/

.title-works {
  background-size: cover;
  background-image: url(images/title_works.png);
  height: 320px;
  width: 100%;
}
.title-works, .title-works h1 {
  position: relative;
}
.title-works::before {
  background: rgba(0, 0, 0, 0.40);
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#title-bar h1 {
  color: #fff;
  font-weight: normal;
  letter-spacing: 0.15em;
  font-size: 45px;
  position: absolute;
  left: 10%;
  top: 50%;
}

/*works
--------------------*/
#circle-works1 {
  top: 0;
}

.works-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
  position: relative;
  z-index: 5;
}
.works {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}
.works img {
  max-width: 200px;
  height: auto;
}
.caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0;
}
.caption .category,
.caption .date {
  padding: 0;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}
.caption .design {
  color: #373741;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
}
#circle-works2 {
  top: -365px;
  left: -165px;
  width: 55%;
  height: auto;
}

/*pagination
--------------------*/
.pagenavi-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.wp-pagenavi {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: 'Montserrat' , sans-serif;
  font-size: 18px;
}

.wp-pagenavi .page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 33px;
  height: 33px;
  border: solid 2px #495e57;
  border-radius: 50%;
  transition: 0.3s ease-out;
  font-size: 18px;
  text-decoration: none;
  background-color: transparent;
  color: #495e57;
}
.wp-pagenavi .page:hover {
  background-color: #495e57;
  color: #f7f7ed;
  border: 2px solid #495e57;
}
.wp-pagenavi .current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  color: #f7f7ed;
  background-color: #495e57;
  border: 2px solid #495e57;
  border-radius: 50%;
  margin: auto 6px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .extend,
.wp-pagenavi .first,
.wp-pagenavi .last {
  background: none;
  border: none;
  color:  rgba(73, 83, 94, 0.5);
  font-size: 22px; 
  text-decoration: none;
  margin: 0 8px;
  transition: 0.3s ease-out;
}

.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .first:hover,
.wp-pagenavi .last:hover {
  color: #495e57;
}
.wp-pagenavi a,
.wp-pagenavi span {
  box-shadow: none;
  outline: none;
}
.wp-pagenavi span.pages {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 8px !important;
  font-size: 18px !important;
  color: #495e57 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: auto !important;
  width: auto !important;
  box-shadow: none !important;
}


/*design
--------------------*/
/*design
--------------------*/

#circle-design1 {
  top: 0;
  z-index: 0;
}
#circle-design2 {
  top: -300px;
  left: -120px;
  width: 60%;
  height: auto;
  z-index: 0;
}
.design-inner {
  display: flex;
  flex-direction: column;
}
.design-inner img {
  height: auto;
  display: block;
  margin: auto;
  max-width: 720px;
  width: 100%;
}
.design-inner h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: normal;
  padding-top: 5%;
  width: 720px;
  margin: auto;
  text-align: left;
}
.design-inner h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: #dbaa1d;
  font-weight: normal;
  padding-top: 5%;
  width: 720px;
  margin: auto;
}
.design-inner .text {
  display: flex;
  gap: 30px;
  max-width: 720px;
  margin: auto;
  }
.design-inner p {
  font-size: 14px;
  padding-top: 5%;
  position: relative;
  z-index: 7;
  min-width: 70px;
}
.design-inner .link {
  padding: 5% 0;
  width: 720px;
  margin: auto;
}

/*navigation-btn
--------------------*/
.navigation-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2%;
  padding: 5% 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #495e57;
  position: relative;
  z-index: 8;
}
.prev,
.next {
  align-items: center;
  text-align: center;
  border-radius: 10px;
  width: 170px;
  height: 50px;
  line-height: 50px;
  border: 1.5px solid #495e57;
}
.prev {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.next {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
.navigation-btn .all-view {
  align-items: center;
  text-align: center;
  border-radius: 10px;
  width: 170px;
  height: 50px;
  line-height: 50px;
  border: 1.5px solid #495e57;
  background-color: rgba(73, 83, 94, 0.3);
}
.scroll-container {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 600px;
  overflow-y: scroll;
  margin: 40px auto;
  border: 1px solid #ccc; /* 任意：スクロールエリアがわかりやすくなる */
  z-index: 9;
}

.scroll-image {
  width: 100%;
  height: auto;
  display: block;
}

/*contact
--------------------*/
/*title
--------------------*/

.title-works {
  background-size: cover;
  background-image: url(images/title_contact.png);
  height: 320px;
  width: 100%;
}
.title-works, .title-works h1 {
  position: relative;
}
.title-works::before {
  background: rgba(0, 0, 0, 0.4);
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#title-bar h1 {
  color: #fff;
  font-weight: normal;
  letter-spacing: 0.15em;
  font-size: 45px;
  position: absolute;
  left: 10%;
  top: 50%;
}

/*contact
--------------------*/
.introduction-inner {
  position: relative;
  z-index: 9;
}
.introduction {
  font-size: 14px;
  line-height: 200%;
}
.instructions {
  font-size: 12px;
  line-height: 200%;
  padding: 3% 0 5% 0;
}

/*form
--------------------*/
.contact-inner {
  position: relative;
  z-index: 10;
}
#circle-contact2 {
  width: 45%;
  height: auto;
  top: -285px;
  left: -120px;
}
.cd p {
  display: flex;
  align-items: center;
}
.inquiry-box, 
.contact-box {
  display: flex;
  padding: 4% 0;
  border-top: 1px solid #495e57;
  position: relative;
  font-size: 14px;
}
.contact {
  position: absolute;
  left: 25%;
}
.check-box {
  position: absolute;
  display: flex;
  gap: 3%;
  left: 25%;
  max-width: 500px;
  width: 70%;

}
.contact-box input {
  max-width: 500px;
  width: 70%;
  height: 30px;
  padding: 0;

}
.contact-box textarea {
  max-width: 500px;
  width: 70%;
  height: 100px;
}
#summary-box {
  height: 100px;
}

.contact-btn {
  display: flex;
  justify-content: center;
}
.contact-btn .btn {
  padding: 5px 45px;
  margin: 0;
  background-color: rgba(73, 83, 94, 0.3);
  color: #495e57;
}
.contact-btn .btn:hover {
  background-color: #495e57;
  color: #f7f7ed;
  border: 1px solid #f7f7ed;
}
/*1060
 ---------------------*/
 @media (max-width: 1060px) {
  #circle-top {
    width: 50%;
    height: auto;
  }
  #ciercle-topworks,
  #circle-name,
  #circle-skills {
    width: 70%;
    height: auto;
  }
  #circle-name {
    right: -10px;
  }
 
  
}


/*900
  --------------------*/
  @media (max-width: 900px) {
    body {
      max-width: 100%;
    }
    /*--main--*/
    .main {
    width: 100%;
    }
  
     /*--header--*/
     .pc-nav {
      display: none;
      z-index: 100;
    }
    /* チェックボックスを非表示にする */
    .drawer_hidden {
      display: none;
    }
    /* ハンバーガーアイコンの設置スペース */
    .drawer_open {
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      right: 20px;
      z-index: 100;
      cursor: pointer;
      top: 30px;
    }
     /* ハンバーガーメニューのアイコン */
    .drawer_open span,
    .drawer_open span:before,
    .drawer_open span:after {
      content: '';
      display: block;
      height: 3px;
      width: 25px;
      border-radius: 3px;
      background-color: #fff;
      transition: 0.5s;
      position: absolute;
      right: 5px;
    }
    .drawer_open span:before, 
    .drawer_open span:after {
      right: 0;
    }
    #yellow span,
    #yellow span::before,
    #yellow span::after {
      background-color: #dbaa1d;
    }
    /* 三本線の一番上の棒の位置調整 */
    .drawer_open span:before {
      bottom: 8px;
    }
    /* 三本線の一番下の棒の位置調整 */
    .drawer_open span:after {
      top: 8px;
    }
    /* アイコンがクリックされたら真ん中の線を透明にする */
    #drawer_input:checked ~ .drawer_open span {
      background: rgba(255, 255, 255, 0);
    }
    /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
    #drawer_input:checked ~ .drawer_open span::before {
      background-color: #dbaa1d;
      bottom: 0;
      transform: rotate(45deg)
    }
    #drawer_input:checked ~ .drawer_open span::after {
      background-color: #dbaa1d;
      top: 0;
      transform: rotate(-45deg);
    }
    /* メニューのデザイン*/
    .nav-content {
      width: 100%;
      height: 100%;
      position: fixed;
      bottom: 100%;
      left: 0%;
      z-index: 99;
      background: #f7f7ed;
      transition: 0.5s;
      text-align: center;
      padding-top: 20px;
    }
    /* メニュー黒ポチを消す */
    .m-nav-list {
      list-style: none;
      padding: 50px 0 0 0;
      margin: 16px auto;
      line-height: 3.5;
    }
    .nav-item a {
      color: #373741;
      text-decoration: none;
    }
    /* アイコンがクリックされたらメニューを表示 */
    #drawer_input:checked ~ .nav-content {
      bottom: 0;
    }
   
    .m-nav-list span {
      font-family: 'Montserrat', sans-serif;
    }

    .text-section h1,
    .text-section h2 {
     font-size: 55px;
    }
    
    /*--top---*/
    .circle-img {
      right: 0;
    }
    .image-section img {
      padding-top: 20px;
    }
    /*--top-about--*/
    .mobile-section-about {
      display: none;
    }
    .content {
      flex-direction: column;
    }
    .content h4 {
      padding-top: 20px;
    }

    /*--profile--*/
    .pc-identity-box {
      display: none;
    }
    .mobile-identity-box {
      font-family: 'Montserrat', sans-serif;
      letter-spacing: 0.1em;
      font-size: 14px;
      padding-bottom: 3%;
    }
    .sum-box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 40%;
    }
    .sum1 li {
      display: flex;
      align-items: center;
      position: relative;
      width: 120%;
    }
    .sum1 ul span  {
      font-size: 25px;
    }
    .sum1 li::after {
      content: "";
      flex-grow: 1;
      background-color: #373741;
      height: 1px;
      margin-left: 5px;
      margin-right: 5px;
    }
    .sum1 ul {
      padding: 0;
      margin: 0;
      list-style-position: inside;
    }
    .sum2 ul {
      margin: 0;
      padding-left: 35px;
    }
    .sum2 li {
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
    }
    .identity img {
      width: 50%;
    }
    .likes-inner .card {
      padding-right: 15px;
    }
    
    #circle-likes {
      display: block;
      width: 70%;
      height: auto;
      top: -200px;
    }
  

  }

  /*825
  --------------------*/
  @media (max-width: 825px) {
    body {
      max-width: 100%;
    }
    /*--main--*/
    .main {
    width: 100%;
    }
    .mobile-section-about {
      display: block;
    }
    /*--top-about--*/  
  .section-about {
    display: none;
  }
  .mobile-section-about {
    background-color: #f7f7ed;
  }
  .mobile-about-inner {
    padding: 30px 5% 10px;
    flex-direction: column;
  }
  .content h3 {
    font-size: 30px;
  }
  .content h4 {
    font-size: 28px;
    padding-top: 15px;
  }
  .mobile-about-sentence img {
    max-width: 745px;
    margin: 5% 0 0;
    width: 100%;
  }
  .mobile-about-sentence p {
    font-size: 14px;
    margin: 5% 0;
  }
  .mobile-about-sentence {
    width: 100%;
  }
  /*--top-works--*/ 
  .wrapper-grid {
    margin: 0;
    display: block;
  }
  .item h5 {
    font-size: 28px;
    padding-bottom: 3%;
  }
  /*--profile--*/
  /*--identity--*/
  .container {
    padding: 45px 5% 0;
  }
  .identity {
    flex-direction: column-reverse;
    margin: 5% 0;
  }
  .identity img {
    width: 100%;
    height: auto;
    padding: 0;
  }
  .likes-inner .card {
    padding-right: 0px;
  }
  }
  @media (max-width: 800px) {
    .design-inner h3, 
    .design-inner h4, 
    .design-inner .link {
      width: 100%;
    }
    .caption .category,
    .caption .date {
      font-size: 12;
    }
    .caption .design {
      font-size: 19px;
    }
    #circle-contact1 {
      width: 55%;
      height: auto;
    }
    #circle-contact2 {
      width: 40%;
      height: auto;
      left: -80px;
    }

   .design-inner .text {
    display: none;
   } 

  .design-inner .text-mobile {
    display: block;
   }

   .scroll-container {
    height: 360px; /* ← モバイル時の高さ */
  }
  }
  
  @media (max-width: 680px) {
    .likes-inner {
      justify-content: flex-start;
    }
    
  }
 

/*mobile
--------------------*/
@media (max-width: 600px) {
  body {
    max-width: 600px;
  }
  /*--main--*/
  .main {
    width: 100%;
  }

  /*--top--*/
  .image-section img {
    min-width: 165px;
    padding-top: 20px;
  }
  .text-section h1,
  .text-section h2 {
    font-size: 28px;
    margin: 0;
  }
  .image-section img ,
  .text-section h1, 
  .text-section h2 {
    position: relative;
  } 

  /*--top-about--*/  
  .section-about {
    display: none;
  }
  .mobile-section-about {
    background-color: #f7f7ed;
  }
  .mobile-about-inner {
    padding: 30px 5% 10px;
    flex-direction: column;
  }
  .content h3 {
    font-size: 25px;
  }
  .content h4 {
    font-size: 25px;
    padding-top: 20px;
  }
  .mobile-about-sentence img {
    max-width: 540px;
    margin: 10% 0 0;
    width: 100%;
  }
  .mobile-about-sentence p {
    font-size: 14px;
    margin: 5% 0;
  }
  .mobile-about-sentence {
    width: 100%;
  }
  
  /*top-btn--*/
  .btn {
    font-size: 14px;
    align-items: center;
    text-align: center;
    margin: 0 auto 10%;
    padding: 5px 15px;
  }

  /*--top-works--*/
  .topworks-inner {
    padding: 30px 5% 30px;
  }
  .grid {
    margin: 2% 0;
  }
  .item h5 {
    font-size: 16px;
  }
  
  .topworks-inner .btn-inner {
    margin-top: 10%;
  }

  /*--footer--*/
  .footer {
    height: 250px;
  }
  .footer-inner {
    padding-right: 2%;
  }
  .footer-inner p {
    padding-top: 10%;
    font-size: 14px;
  }
  .footer-inner .btn {
    font-size: 14px;

  }
  .footer-annotation p {
    font-size: 10px;
  }

  /*profile
  -------------------*/
  /*title
  -------------------*/
  #title-bar {
    height: 115px;
  }
  #title-bar h1 {
    font-size: 22px;
  }

  /*identity
  -------------------*/
  .pc-identity-box {
    display: none;
  }
  .mobile-identity-box {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.1em;
    font-size: 14px;
  }
  .sum-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40%;
  }
  .sum1 li {
    display: flex;
    align-items: center;
    position: relative;
    width: 120%;
  }
  .sum1 ul span  {
    font-size: 25px;
  }
  .sum1 li::after {
    content: "";
    flex-grow: 1;
    background-color: #373741;
    height: 1px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .sum1 ul {
    padding: 0;
    margin: 0;
    list-style-position: inside;
  }
  .sum2 ul {
    margin: 0;
    padding-left: 35px;
  }
  .sum2 li {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .identity-inner {
    width: 100%;
    padding-top: 10%;
  }

  .identity-inner p {
    font-size: 12px;
    width: 100%;
    padding: 10% 0 0;
  }

  /*biography
  --------------------*/
  .timeline-date {
    width: 67px;
  }
  .timeline-content:before {
    left: 58px;
    top: 22px;
  }
  .timeline-content {
    padding-left: 20px;
    padding-bottom: 10px;
  }
  .timeline p {
    font-size: 12px;
    max-width: 245px;
    line-height: 160%;
  }
  #circle-timeline {
    display: block;
    width: 70%;
    height: auto;
    left: -25px;
  }

  /*skills
  -------------------*/
  .skills-inner h5 {
    font-size: 14px;
  }
  .category p {
    font-size: 12px;
  }
  /*likes
  -------------------*/
  .likes-inner {
    gap: 15px;
  } 
  .card {
    width: 150px;
  }
  .last-container {
    padding: 45px 5%;
  }

  /*works
  -------------------*/
  /*works
  -------------------*/
  .works-inner {
    display: block;
    padding: 0;
  }
  .works {
    flex-direction: column;
    width: 85%;
    margin: 20px auto 0;
  }
  
  .caption .category {
    height: 20px;
  }
  .caption .date {
    font-size: 12px;
    color: #dbaa1d;
    height: 16px;
  }
  .caption .design {
    font-size: 18px;
  }
  #circle-works2 {
    left: -50px;
  }

  /*pagination
  -------------------*/
  .pagenavi-wrapper {
    padding-top: 30px;
  }
  .pagenavi-wrapper .page,
  .pagenavi-wrapper .smaller,
  .pagenavi-wrapper .current,
  .pagenavi-wrapper .larger {
    font-size: 16px;
    width: 23px;
    height: 23px;
    border: 1px solid #495e57;
  }
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .extend,
  .wp-pagenavi .first, 
  .wp-pagenavi .last {
    font-size: 12px;
  }

  /*design
  -------------------*/
  /*design
  -------------------*/
  .design-inner  {
    max-width: 600px;
  }
  .design-inner img {
    max-width: 540px;
    margin: 0;
    width: 100%;
  }
  .design-inner h3 {
    max-width: 540px;
    width: 100%;
    font-size: 20px;
    padding: 0;
  }
  .design-inner h4 {
    max-width: 540px;
    width: 100%;
    font-size: 14px;
    padding: 0 0 2%;
  }
  
  #circle-design1 {
    width: 70%;
    height: auto;
  }
  #circle-design2 {
    width: 50%;
    height: auto;
    top: -190px;
    left: -95px;
  }

  /*navigation-btn
  -------------------*/
  .prev,
  .next {
    font-size: 14px;
    width: 100px;
    height: 30px;
    line-height: 30px;
  }
  .navigation-btn .all-view {
    font-size: 14px;
    width: 100px;
    height: 30px;
    line-height: 30px;
  }


  /*contact
  --------------------*/
  /*contact
  --------------------*/
  .introduction,
  .instructions {
    line-height: 180%;
  }

  /*form
  --------------------*/
  .check-box {
    display: flex;
    flex-direction: column;
    max-width: 340px;
    width: 63%;
    left: 32%;
  }
  .inquiry-box {
    height: 80px;
    font-size: 12px;
  }
  .contact-box {
    font-size: 12px;
  }
  .contact-box input {
    max-width: 340px;
    width: 63%;
    height: 28px;
  }
  .contact-box textarea {
    max-width: 340px;
    width: 63%;
    height: 60px;
  }
  .contact {
    left: 32%;
  }
  #summary-box {
    height: 70px;
  }
}

@media (max-width: 460px) {
  #wine,
  #family,
  #grass {
    padding: 0;
  }
  #circle-topworks {
    left: 0;
    width: 70%;
    height: auto;
  }
}
 

.wpcf7-form-control-wrap {
  position: static !important;
}

