html {
font-family: 'Hina Mincho', serif;
scroll-behavior: smooth;
background: linear-gradient(-164deg, #00B2D7 0%, #F7B686 54%, #FB979A 70%, #FF77AD 100%);
scroll-padding-top: 120px; 
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  color: #F7B686;
}
li {
  list-style: none;
}




.hamburger-menu {
  display: none;
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
}
.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #242424;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}
.hamburger-menu__bar:first-child {
  top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 24px;
}
.hamburger-menu__bar:last-child {
  top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
.navigation {
  display: none;
  background: #242424;
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 9999;
}
.navigation__list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navigation__list-item {
  border-bottom: solid 1px #474747;
}
.navigation__list-item:first-child {
  border-top: solid 1px #474747;
}
.navigation__link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 24px 0;
  transition: .5s;
}
@media (hover: hover) and (pointer: fine) {
  .navigation__link:hover {
    background: #333;
  }
}





header {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  z-index: 1000;

  .gronav {
    position: fixed;
    top: 0;
    left: 75%;
    translate: -50%;
    margin: 20px 0;
    z-index: 100;
    padding: 0 2rem;
    ul {
      display: flex;
      padding-left: 0px;
      justify-content: center;
    }
    li {
      margin: 0.5rem 1rem;
    }
  }

  .leftwrap {
    height: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .vertical {
    letter-spacing: 1rem;
    margin: 60px 50px 10px;
  }

  .mainvisual {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 85%;
    max-width: 100%;
  }
  .mainvisual img {
    width: 85%px;
    object-fit: cover;
    border-radius: 36% 64% 44% 56% / 53% 52% 48% 47%;
  }

  .label {
    width: 100%;
    padding-left: 50px;
  }
/*
  .label::before {
    content: "";
    width: 50%;
    height: 1px;
    background-color: #000;
    display: block;
    margin-right: 20px;
  }
    */

  .SNS {
    position: absolute;
    bottom: 5%;
    ul {
    display: flex;
    align-items: flex-end;
    } 
    li {
      margin: 1.5rem;
    }
    img {
      width: 15px;
      margin-left: 0.5rem;
    align-items: center;
    }
  }
}

main {
  margin-left: 50%;
}

.intro-outer {
  margin-top: 250px;
}

.intro-wrapper {
  padding:1em;/*内側余白*/
	border-radius: 30px 60px/60px 30px;
	border: solid 8px #ccc7be;
  width: 80%;
  margin: 0 auto;
  background-color: floralwhite;
  .intro {
    width: 80%;
    height: auto;
    margin: 0 auto;
  }
  .intro-inner {
    width: 80%;
    height: auto;
    margin: 20px auto;
    border-radius: 50px;
    background-color: floralwhite;
    padding: 1em;
    border: dotted 5px #CCA99D;
    .introselect {
      ul {
        padding-left: 1rem;
      }
      li {
        margin-block: 0.5rem;
      }
    }
  }
}

.arrow_s {
  position: relative;
  display: inline-block;
  padding-left: 12px;
}
.arrow_s:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 0.5rem;
  left: 0;
  margin: auto;
}

.rotate {
  display: none;
  width: 100px;
  height: 100px;
  text-align: center;
  animation: rotate 10s linear infinite;
  margin: 150px auto;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

.scrool {
  width: 70px;
  height: 70px;
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}



.container_08 {
  height: 300px;
}
.scroll-down_08 {
  position: absolute;
  bottom: 40px;
  left: 75%;
  transform: translateX(-50%);
  text-align: center;
  font-family: serif;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  a {
    color: white;
  }
}

.wavy-text span {
  position: relative;
  display: inline-block;
  animation: wave 2s infinite;
  animation-delay: calc(0.1s * var(--i));
}

.wavy-text_arrow {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
  animation: float 2s infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(-20%) rotate(-45deg);
  }
  50% {
    transform: translateY(20%) rotate(-45deg);
  }
}



.topics,.profile,.works,.contact,.nextstage {
    border-radius: 30px 60px / 60px 30px;
    border: solid 3px #ccc7be;
    width: 80%;
    margin: 150px auto;
    padding: 50px;
    background-color: floralwhite;
}

.topicswrap {
  display: flex;
  align-items: center;
  time {
    margin-right: 1rem;
  }
}

.topics-btn {
  img {
    width: 25px;
    vertical-align: -6px;
  }
}

.box {
  position: relative;
  margin: 2em 0;
  margin-top: 60px;
  padding: 0.5em 1em;
  border: dotted 3px #62c1ce;
  border-radius: 0 50px 50px;
}
.box .box-title {
  position: absolute;
  display: inline-block;
  top: -27px;
  left: -3px;
  padding: 0 9px;
  height: 25px;
  line-height: 25px;
  font-size: 17px;
  background: #62c1ce;
  color: #ffffff;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}
.box p {
  margin: 0; 
  padding: 0;
}

.nextwrap {
  margin: 10px;
}

.nextstage {
  .nextvisual {
    width: 80%;
    margin: 0 auto;
  }
}

.stage {
  margin-bottom: 2rem;
  h4 {
    margin-bottom: 0;
  }
}

.workswrap {
  p {
    margin-bottom: 0;
  }
  ul {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
  }
}

.workstitle {
display: flex;
  align-items: center;
}
.workstitle::before,
.workstitle::after {
  content: '';
  display: block;
  width: 1rem;
  height: 1px;
  background: black;
}

.workstitle::before {
  margin-right: 1rem;
}
.workstitle::after {
  margin-left: 1rem;
}

.worksline {
  width: 100%;
  height: 1px;
  border: none;
  background-color: #ccc7be;
  margin: 50px auto;
}

.works {
  .workstitle {
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
  }
  .works-outer {
    margin: 100px 0;
  }
  .works-link {
    a {
      margin: 2rem;
    }
  }
  .works-inner {
    margin:50px 0;
    p {
      margin-bottom: 2rem;
      line-height: 2;
    }
    ul {
      padding-left: 1rem;
      li {
        line-height: 2;
        margin: 1rem 0;
      }
    }
  }
}

.accordion-003 {
    max-width: 500px;
    margin-bottom: 7px;
    border-bottom: 2px solid lightblue;
    ul {
      li {
        margin: 0.5rem 0;
        img {
          width: 20px;
          vertical-align: -4px;
        }
      }
    }
    }

.design-wrapper {
  margin: 80px 0;

  .design-img {
    img {
      border: solid;
    }
  }

  .design-subimg {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    flex-shrink: 0;
    img {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 50%;
    }
  }
  
  .design-title {
    letter-spacing: 0.5rem;
    }
  .design-contents {
    margin: 0.5rem 0;
    }
  .design-sub {
    letter-spacing: 0.1rem;
    margin: 0.5rem 0px;
    color: dimgray;
    }

  .design-btn {
    a {
      font-size: 0.8rem;
      background-image: linear-gradient( #F7B686, #F7B686 );
      background-size: 0 1px;
      background-position: left bottom;
      background-repeat: no-repeat;
      transition: all .3s;
      img {
        width: 25px;
        vertical-align: -6px;
      }
      }
    a:hover {
      background-size: 100% 1px;
      }
    }
  .design-inner {
    margin-top: 50px;
    ul {
      padding-left: 0.5rem;
      margin: 1.5rem 0;
      li {
        font-size: 0.8rem;
        line-height: 2;
      }
    }    
  }  
  }
  


.accordion-003 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 0;
    color: #333333;
    font-weight: 1000;
    cursor: pointer;
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.accordion-003[open] summary::after {
    transform: rotate(225deg);
}

.accordion-003 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
    transform: none;
    opacity: 1;
    padding: 0;
}




.profileimg {
  width: 150px;
  height: 150px;
  margin-right: 2rem;
  flex-shrink: 0;
 
  img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    object-position:-60px 0px;
  }
}

.profilewrap {
  display: flex;
  align-items: center;
}

.profile {
  .profile-wrapper {
    margin: 100px auto;
  }
  .profile-title {
    font-size: 2rem;
    letter-spacing: 0.5rem;
    margin-top: 50px;
  }
  .profile-text {
    margin: 50px auto;
    line-height: 2;
  }
}

.pr {
  margin: 50px 0;
  .pr-title {
    font-size: 1.5rem;
    margin-right: 1rem;
  }
  .pr-text {
    margin-bottom:50px;
    line-height: 2;
  }
}

.mail-image {
  width: 25px;
  height: 25px;
  margin-right: 1rem;
}

.contactwrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px; 
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  letter-spacing: 0.5rem;
}

.button a {
  border: solid #cca998;
  border-radius: 50px 60px / 60px 40px;
  background-color: floralwhite;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 25px auto;
  max-width: 300px;
  padding: 10px 25px;
  text-decoration: none;
  color: #333;
  line-height: 1.8;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  z-index: 50;
}
.button a:hover {
background: #edd0ca;
color: #FFF;
}
.button a::after{
  content: '';
  position: absolute;
  top: 42%;
  right: 2rem;
  width: 6px;
  height: 6px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  transition: all .3s;
}

.button a:hover::after{
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  animation: arrowrotate .3s;
}

@keyframes arrowrotate {
100% {
  transform: rotate(360deg);
}
}



footer {
  color: black;
  text-align: center;
  padding: 48px 16px;
}

.pcoff {
  display: none;
 }

.SNS-pcoff {
  display: none;
}

.gronav-off {
  display: none;
}

/*追従ボタン*/
#page-top {
  display: none;
  position: fixed;
  right: 5px;
  bottom: 20px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  line-height: 1.5rem;
  color: black;
  padding: 0 0 0 35px;
  border-top: solid 1px;
}
#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}


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

  .hamburger-menu {
    display: none;
    width: 50px;
    height: 50px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
  }
  .hamburger-menu__bar {
    display: inline-block;
    width: 44%;
    height: 2px;
    background: #242424;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
  }
  .hamburger-menu__bar:first-child {
    top: 16px;
  }
  .hamburger-menu__bar:nth-child(2) {
    top: 24px;
  }
  .hamburger-menu__bar:last-child {
    top: 32px;
  }
  .hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
  }
  .hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
  }
  .navigation {
    display: none;
    background: #242424;
    position: absolute;
    top: 50px;
    width: 100%;
    z-index: 9999;
  }
  .navigation__list {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .navigation__list-item {
    border-bottom: solid 1px #474747;
  }
  .navigation__list-item:first-child {
    border-top: solid 1px #474747;
  }
  .navigation__link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: block;
    padding: 24px 0;
    transition: .5s;
  }
  @media (hover: hover) and (pointer: fine) {
    .navigation__link:hover {
      background: #333;
    }
  }

 .spoff {
  display: none;
 }
 .pcoff {
  display: block;
  height: 100dvh;
 }

 .gronav {
  display: none;
 }

 .gronav-off {
  display: block;
  position: fixed;
  top: 10px;
  left: 50%;
  translate: -50%;
  z-index: 500;
  ul {
    display: flex;
    padding: 0;
    li {
      margin: 0.5rem;
      font-size: 0.8rem;
    }
  }
 }

 .SNS-pcoff {
  display: block;
  ul {
    display: flex;
    align-items: flex-end;
    } 
    li {
      margin: 1rem;
    }
    img {
      width: 15px;
      margin-left: 0.5rem;
    align-items: center;
    }
 }

 #page-top {
  display: block;
 }
 
header {
  width: 100%;
  height: 50%;
  position: static;
  z-index: 1000;
}

.gronav {
  position: fixed;
  top: 0;
  ul {
    display: flex;
  }
  li {
    font-size: 0.8rem;
    margin: 0.5rem;
  }
}

.container_08 {
  height: 0;
}

.vertical-off {
  letter-spacing: 1rem;
  margin: 90px 30px 10px;
}

.mainvisual {
  position: absolute;
  top: 30%;
  right: 0;
  width: 496px;
  max-width: 100%;
}
.mainvisual img {
  width: 496px;
  object-fit: cover;
 
}

.label-off {
  padding-left: 50px;
  width: 100%;
}

.SNS-off {
  position: absolute;
  top: 70%;
    ul {
    display: flex;
    padding-left: 0px;
    justify-content: center;
    align-items: flex-end;
    } 
    li {
      margin: 1.5rem;
    }
    img {
      width: 15px;
      margin-left: 0.5rem;
      align-items: center;
    }
}

main {
  width: 100%;
  display: block;
  margin: 0;
}

.intro-outer {
  margin-top: 0;
}

.intro-wrapper {
  padding:1em;/*内側余白*/
	border-radius: 30px 60px/60px 30px;
	border: solid 8px #ccc7be;
  width: 90%;
  margin: 0 auto;
  background-color: floralwhite;
  /*border: 1px solid #000;
  padding: 50px 0;*/
  .intro-inner {
    width: 80%;
    height: auto;
    margin: 20px auto;
    border-radius: 50px;
    background-color: floralwhite;
    padding: 1em;
    border: dotted 5px #CCA99D;
    }
    }

.scroll-down_08 {
  position: absolute;
  bottom: 40px;
  left: 50%;
  }

.topics,.profile,.works,.contact,.nextstage {
  border-radius: 30px 60px / 60px 30px;
  border: solid 3px #ccc7be;
  width: 90%;
  margin: 100px auto;
  padding: 20px;
  background-color: floralwhite;
}

.profilewrap {
display: block;
  }

.profileimg {
  margin: 0 auto;
}

}
