@charset "utf-8";
/* loading */
.loading {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
}
.loading-bg {
  height: 100%;
  width: 100%;
  background-color: #ff801e;
  transform: translateY(0);
  animation: slideUp 0.8s ease-out forwards;
  animation-delay: 3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.slide-in {
  overflow: hidden;
  display: inline-block;
}
.leftAnime {
  opacity: 0;
}
@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.slide-in_inner {
  font-size: 10vw;
  display: inline-block;
  color: #ffffff;
  font-family: circe, sans-serif;
  font-weight: bold;
}
.writing-text {
  display: block;
  width: 100%;
  margin: 0 auto;
  height: auto;
}
.writing-text-second{
  display: block;
  width: 100%;
  margin: 0 auto;
  margin-top: -13%;
  height: auto;
}
.writing {
  margin: 0 auto;
}
#text {
  fill: #ff801e;
}
#text-path {
  mask: url(#mask-stroke);
}
#mask {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 900;
  transform: translateX(-220px);
  stroke-dasharray: 3500;
  stroke-dashoffset: 3500;
  transition: stroke-dashoffset 0s;/*初期状態ではアニメーション起動しない*/
}
#mask.animate {
  stroke-dashoffset: 0s;/*アニメーション開始のための設定*/
  transition: stroke-dashoffset 5s ease-in-out;
}

@keyframes writeanime {
  from {
      stroke-dashoffset: 3500;
  }
  to {
      stroke-dashoffset: 0;
  }
}



/* =============== 
共通スタイル
=============== */
body {
  background-image: url(../img/first/background@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  font-family: circe, sans-serif;
}
img {
  width: 100%;
}
a {
  transition: 1s;
  color: #252625;
}
a:hover {
  opacity: 0.7;
}
.sp-br {
  display: none;
}
@media screen and (max-width: 1080px) {
  .sp-br {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .sp-br {
    display: block;
  }
}
.header__nav-pc li a{
  /*線の基点とするためrelativeを指定*/
position: relative;
}

.scrolldown {
  position: fixed;
  bottom: 270px;
  right: 30px;
}


/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left: -11px;
  bottom: -225px;
  /*テキストの形状*/
  color: #252625;
  font-size: 18px;
  white-space: nowrap;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown::before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 60px;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #252625;
  /* 丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite; 
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: -155px;
  }
  100% {
    bottom: -95px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: -153px;
  left: 0;
  /*線の形状*/
  width: 1.5px;
  height: 60px;
  background: #252625;
}

/* =============== トップページ =============== */

/* =============== 
header
=============== */
#header {
  position: absolute;
  width: 100%;
  z-index: 9998;
  top: 0;
}
.logo {
  width: 165px;
  padding-top: 83px;
}
.header_nav {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}
.header__nav-pc  {
  display: flex;
  gap: 92px;
  padding-top: 120px;
}

/* hamメニュー */
.hamburger,
.header__nav-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__nav-pc {
    display: none;
  }
  .hamburger {
    display: block;
    position: fixed;
    width: 35px;
    height: 15px;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 9999;
  }
  .hamburger span {
    position: absolute;
    content: "";
    width: 35px;
    height: 2px;
    background-color: #252625;
    top: 0;
    left: 0;
  }
  .hamburger span::after {
    position: absolute;
    content: "";
    width: 35px;
    height: 2px;
    background-color: #252625;
    top: 12px;
    left: 0;
  }
  .hamburger.open {
    right: 20px;
    top: 30px;
  }
  .hamburger.open span {
    transform: rotate(45deg);
    top: 0;
    left: 0;
  }
  .hamburger.open span::after {
    transform: rotate(-90deg);
    top: 2px;
    left: 0;
  }
  .open.header__nav-sp {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #ffffffcc;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 9995;
  }
  .open.header__nav-sp ul {
    height: 100%;
    display: flex;
    row-gap: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 30px;
  }
  .open.header__nav-sp a{
    position: relative;
    text-decoration: none;
    transition: 0.3s;
  }
  .header__nav-sp a:hover{
    color: #252625;
  } 
  .header__nav-sp a::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    border-radius: 10px;
    width: 0;
    height: 3px;
    background: #252625;
    transition: 0.3s;
  }
  a:hover::before{
    width: 100%;
  }
  a:hover{
    color: #252625;
  }
}

/* =============== 
main-visual
=============== */
.pass1,
.pass2 {
  width: 100%;
  color: #252625;
}
.pass2 {
  padding-bottom: 95px;
}
.welcome {
  width: 31.9%;
  max-width: 430px;
  position: absolute;
  content: "";
  top: -110px;
  left: 60px;
}
.AYAOOMINE__img {
  position: relative;
  height: 450px;
}
.ayaoomine__image-area {
  width: 56.8%;
  max-width: 780px;
  position: absolute;
  top: 90px;
  left: 200px;
}

/* =============== 
About
=============== */
#about {
  padding: 0 60px;
  max-width: 1100px;
  margin: 0 auto 100px;
}
.about_inner {
  display: flex;
  max-width: 1100px;
  gap: 60px;
  padding-bottom: 100px;
  margin: 0 auto;
}
.about_item {
  display: flex;
  width: calc(100% - 580px);
}
#AYAOOMINE {
  position: relative;
}
.about_h2 {
  padding-bottom: 28px;
  font-size: 65px;
  font-weight: bold;
  position: relative;
}
.about_h2::before {
  position: absolute;
  content: "";
  background-color: #252625;
  border-radius: 5px;
  top: -12px;
  width: 160px;
  height: 3px;
}
h2 span {
  display: block;
  font-size: 30px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  padding-bottom: 20px;
}
.profile_item p {
  color: #252625;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}
.profile {
  width: 275px;
}
.name {
  font-size: 48px;
  padding-bottom: 63px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.from {
  font-size: 18px;
  padding-bottom: 33px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

/*==サークルボタン共通設定==*/
.circle {
  position: absolute;
  width: 360px;
  top: -38px;
  left: -42px;
  transform-origin: center;
  animation: 7s linear infinite rotation1;
}
@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.about_img {
  height: 100%;
  position: relative;
}

/* =============== 
Works
=============== */
#works {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 50px 325px;
}
#works li {
  width: 30%;
}
#works ul {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  gap: 5%;
  padding-top: 45px;
  padding-bottom: 100px;
  justify-content: space-between;
}
.works_text {
  text-align: left;
  padding: 10px;
}

/* =============== 
Contact
=============== */
.contact_inner {
  background-color: #ff801e;
  color: #ffff;
  text-align: center;
  max-width: 1030px;
  border-radius: 10px;
  margin: 0 auto;
  padding: 100px 100px ;
}
#contact {
  padding: 0 60px;
}
.contact_item {
  padding: 0 20px;
  text-align: center;
}
#contact h2 {
  font-size: 50px;
  position: relative;
  font-weight: bold;
}
.contact_h2::before {
  position: absolute;
  content: "";
  width: 160px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 5px;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.contact_button {
  display: block;
  width: 215px;
  margin-left: auto;
}
.contact {
  font-size: 65px;
}
.contact_text {
  color: #ffffff;
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: normal;
  padding-bottom: 72px;
}
.button {
  border: #ffffff;
}
.button_text {
  display: block;
  width: 100%;
  max-width: 465px;
  height: 105px;
  border: 3px solid #ffffff;
  border-radius: 105px;
  color: #ffffff;
  font-size: 41px;
  text-align: center;
  line-height: 105px;
  margin: 0 auto;
}
.button_text:hover{
  color: #ff801e;
  background: #ffffff;
  opacity: 1;
  transition: .4s;
}

/* =============== 
footer
=============== */
#first_footer {
  display: flex;
  align-items: baseline;
  padding: 0 20px;
  max-width: 1100px;
  margin: 180px auto 20px;
}
#footer.logo {
  width: 112px;
  padding: 0;
}
#first_footer .copy {
  padding-bottom: 0;
}
.copyright {
  text-align: left;
  color: #252625;
  font-size: 16px;
}

/* =============== プロフィールページ =============== */
/* =============== 
profile 
=============== */
#profile {
  max-width: 1060px;
  margin: -23% auto 0;
  padding: 0 50px;
  display: flex;
  gap: 7%;
}
#profile_inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 10%;
  justify-content: space-between;
  margin-bottom: 100px;
  padding: 0 16px;
}
#profile img {
  position: absolute;
}
#profile h1 {
  font-size: 48px;
  letter-spacing: 0.3em;
  line-height: 1.5;
  white-space: nowrap;
}
.name_title {
  width: 250px;
}
.profile_name {
  font-size: 20px;
  padding-bottom: 125px;
  letter-spacing: 0.6em;
  white-space: nowrap;
}
.profile__sub {
  margin-top: 200px;
  width: calc(100% - 250px);
}
.title {
  font-size: 44px;
  padding-bottom: 60px;
  line-height: 2.2;
  letter-spacing: 130;
}
.profile_text {
  font-size: 18px;
  padding-bottom: 100px;
  line-height: 2;
}
.profile_copy p {
  padding-bottom: 70px;
}

/* =============== 
history
=============== */
/*タイムライン全体の設定*/
.timeline {
  width: 100%;
  margin: 50px auto;
  padding: 0 30px 0 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.timeline li {
  /*線の起点とするためrelativeを設定*/
  position: relative;
  list-style: none;
  padding: 0 0 30px 0;
}

.timeline dl {
  margin: 0 0 20px 3em;
}

.timeline dd strong {
  display: block;
  padding: 10px 0;
}

/*絶対配置で線を設定*/
.border-line {
  /*線の位置*/
  position: absolute;
  left: 4px;
  top: 0;
  width: 2px; /*線の太さ*/
  height: 0; /*はじめは高さを0に*/
  background: #252625;
}

/*タイムラインの見出し横の丸の位置と形状*/
.timeline li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: #252625;
  border-radius: 50%;
}
#history {
  padding: 86px;
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}
#history::after {
  position: absolute;
  content: "";
  height: 70px;
  width: 2px;
  background-color: #252625;
  top: 190px;
  left: 90px;
}
.history {
  display: block;
  width: 215px;
}

/* =============== 
favorite
=============== */
#favorite {
  padding: 0 20px;
  position: relative;
}
.favorite_inner {
  display: flex;
  justify-content: end;
  padding-bottom: 60px;
}
.favorite {
  width: 260px;
  position: absolute;
  left: 20px;
  top: 46px;
}
.favorite h4 {
  text-align: center;
}
#favorite ul {
  border: 3px solid #252625;
  border-radius: 10px;
  width: calc(100% - 221px);
  padding: 43px 0 43px 52px;
}

/* =============== 
skill
=============== */
h4 {
  border: solid;
  background-color: #252625;
  border: none;
  border-radius: 8px;
  font-size: 22px;
  width: 100%;
  max-width: 460px;
  height: 75px;
  text-align: center;
  line-height: 75px;
  color: #bfc4bf;
  margin-bottom: 40px;
}
.skill,
.strengths {
  width: 45%;
}
.skill_item li {
  display: flex;
  padding: 8px;
}
.strengths_item li {
  display: flex;
  padding: 16px;
}
.strengths_item li span {
  padding-right: 16px;
}
.favorite span {
  padding: 20px 80px;
}
.favorite_item {
  border: solid;
  border-color: #252625;
  height: 7px;
}
#favorite {
  max-width: 1100px;
  margin: 0 auto;
}
.favorite_text {
  font-size: 22px;
  display: flex;
  align-items: center;
  line-height: 2;
}
.favorite_text_small {
  font-size: 16px;
}

/* =============== 
footer
=============== */
#profile_footer {
  position: relative;
  width: 100%;
}
.profile_footer {
  margin-top: 10%;
}
.profile_copy {
  display: block;
  width: 100%;
  position: absolute;
  text-align: center;
  bottom: 0;
}

/* =============== ワークスページ =============== */
.works_page img {
  padding-left: 10%;
  width: 23%;
}
.works_img img {
  width: 60%;
  padding-left: 15%;
  padding-top: 93px;
}
#works_area h2 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 280px 20px 95px;
  font-size: 35px;
}
.pc_img img {
  width: 65%;
  display: block;
  margin: 0 auto;
  padding-bottom: 90px;
}
.banner img {
  width: 40%;
  display: block;
  margin: 0 auto;
  padding-bottom: 90px;
}
.life_hair_design img {
  display: block;
  margin: 0 auto;
  width: 60%;
}
.design {
  padding-bottom: 40px;
  padding-left: 133px;
}
.item {
  padding-bottom: 10px;
}
.works_inner_text {
  max-width: 530px;
  line-height: 1.7em;
  letter-spacing: 0.1em;
}
.workstext_inner {
  border-right: 1px #252625 solid;
  padding-right: 5%;
  width: 65%;
}
.workstext_inner h3 {
  padding-bottom: 20px;
  font-weight: bold;
}
.workstext_list {
  padding-left: 5%;
}
.workstext_list h3 {
  font-weight: bold;
}
.text_list {
  padding-left: 3%;
  padding-bottom: 30px;
}
#works_area p {
  padding-bottom: 120px;
  line-height: 2;
}
.works_pic {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding-top: 105px;
}
.page__btn-area {
  max-width: 1000px;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.backtoindex_botton,
.nexttoindex_botton {
  display: block;
  width: 100px;
  margin-right: auto;
}
.page__btn-area .backToTop img {
  width: 180px;
}
#works_text {
  max-width: 1000px;
  display: flex;
  /* gap: 50px; */
  margin: 0 auto;
  padding: 0 50px 60px;
}
.workstext_list {
  width: 35%;
}
.back-btn {
  max-width: 1000px;
  margin: 0 auto 200px;
  display: block;
}
footer ul {
  display: flex;
  justify-content: center;
  gap: 98px;
  padding-bottom: 10%;
  padding-top: 10%;
  font-size: 20px;
}
.copy {
  text-align: center;
  padding: 40px;
  font-size: 14px;
}

/* =============== コンタクトページ =============== */
#contact_page {
  margin-top: 200px;
}
.contact_area {
  text-align: center;
  padding-top: 180px;
  margin: 0 auto;
  position: relative;
}
.contact_area img{
  width: 490px;
  padding: 180px 40px 0;
}
.line {
  position: absolute;
  height: 18px;
  max-width: 474px;
  width: 100%;
  background-color: #ff801e;
  z-index: -1;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
}
#contact_page h1 {
  font-size: 36px;
  padding-top: 6%;
  padding-bottom: 6%;
  text-align: center;
  color: #252625;
}
#contact_page {
  font-size: 16px;
  text-align: center;
  padding-bottom: 7%;
  line-height: 1.7;
  color: #252625;
}
#inquiry {
  display: flex;
  justify-content: center;
  padding-bottom: 175px;
  gap: 3%;
}

.inquiry_item {
  padding-bottom: 6%;
  padding-left: 15%;
  color: #252625;
}
.inquiry_area {
  padding-bottom: 6%;
  max-width: 600px;
  border-radius: 10px;
  color: #bcc1bc;
  border: solid #bcc1bc;
  background-color: #ffffff;
}
.send {
  color: #bcc1bc;
  font-size: 25px;
  text-align: center;
}
.send_button {
  text-align: center;
  border: none;
  background-color: #252625;
  border-radius: 100px;
  width: 439px;
  height: 130px;
  line-height: 130px;
  text-align: center;
  margin: 0 auto;
}
.c-form{
  max-width: 840px;
  margin: 0 auto;
  font-family: circe, sans-serif;
  letter-spacing: 0.2em;
  line-height: 2;
  padding: 5%;
}
.c-form__item{
  display: flex;
  padding-bottom: 30px;
}
.c-form__label{
  display: block;
  width: 240px;
}
.c-form__input{
  display: block;
  width: calc(100% - 240px);
  background-color: #ffffff;
  border: 1px solid #252625;
  border-radius: 7px;
  padding-left: 10px;
}
.c-form__message{
  height: 200px;
}
.c-form__submit button{
  display: block;
  max-width: 200px;
  width: 100%;
  height: 80px;
  margin: 00px auto 0;
  text-align: center;
  line-height: 80px;
  border: 1px solid #252625;
  background-color: #252625;
  color: #ffffff;
  border-radius: 80px;
  cursor: pointer;
  transition: .3s;
}
.c-form__submit button:hover{
  background-color: #ffffff;
  color: #252625;
}

footer ul {
  display: flex;
  justify-content: center;
  gap: 98px;
  padding-bottom: 10%;
  font-size: 20px;
}

/* =============== サンクスページ =============== */
.thanks img {
  width: 50%;
}
#thanks {
  max-width: 1000px;
  margin: 200px auto 0;
  padding: 60px;
}
#thanks p {
  font-size: 22px;
  line-height: 1.5;
  padding-top: 120px;
  margin: 0 auto;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
#thanks .thanks_page{
  text-align: center;
}
#thanks .thanks-message {
  background:linear-gradient(transparent 80%, #ff801e 50%);
  display: inline-block;
  padding: 0 40px;
  font-size: 80px;
  font-weight: bold;
  color: #252625;
  text-align: center;
  font-family: circe, sans-serif;
}
    
/* =============== レスポンシブ =============== */

/* ▼ 1000px以下 */
@media screen and (max-width: 1000px) {
  .favorite_text {
    display: block;
  }
  .welcome {
    display: none;
  }
  .ayaoomine__image-area {
    position: absolute;
    width: 80%;
    left: 20px;
    top: 35%;
    transform: translateY(-50%);
  }
  .about_item {
    display: flex;
    width: calc(100% - 500px);
  }
  .profile {
    width: 200px;
  }
  .circle {
    width: 270px;
    display: block;
    left: 81%;
    top: -31px;
    margin-left: -195px;
  }
  .name{
    font-size: 40px;
  }
  .title{
    font-size: 35px;
  }
  #thanks p{
    font-size: 69%;
  }
}
/* ▼ 800px以下 */
@media screen and (max-width: 800px) {
  #works_text {
    display: block;
  }
  #works_area h2 {
    font-size: 28px;
    text-align: center;
    padding-left: 0;
  }
  .works_inner_text {
    max-width: 100%;
  }
  .workstext_inner {
    border-right: none;
    border-bottom: 1px #252625 solid;
    width: 100%;
    padding: 0 0 40px 0;
    margin-bottom: 40px;
  }
  .workstext_list {
    width: 100%;
    padding: 0;
  }
  .text_list {
    padding-left: 0;
  }
  .works_pic {
    padding: 105px 20px 0;
    margin: 0 auto;
  }

}

/* ▼ 767px以下 */
@media screen and (max-width: 767px) {
  .pc-only{
    display: none;
  }
  .scrolldown{
    right: 12px;
  }
  footer ul {
    display: none;
  }
  .about_inner {
    display: block;
  }
  .about_item {
    width: 100%;
  }
  .about_h2 {
    font-size: 33px;
    text-align: center;
    color: #252625;
  }
  .about_h2::before {
    width: 80px;
    left: 50%;
    transform: translateX(-50%);
  }
  .about_img {
    text-align: center;
  }
  .about_item {
    text-align: center;
  }
  .contact_button{
    margin: 0 auto;
  }
  .logo {
    padding: 10px 0 0 10px;
    width: 116px;
  }
  #profile h1 {
    font-size: 30px;
  }
  .profile_name {
    font-size: 13px;
    padding-bottom: 20px;
  }

  #history {
    padding: 60px 20px;
  }
  #history::after {
    top: 160px;
    left: 24px;
  }
  h4 {
    max-width: 100%;
    width: 100%;
    height: 47px;
    line-height: 47px;
    font-size: 20px;
  }
  .favorite {
    width: 105px;
    top: -14px;
    left: 10px;
    font-size: 12px;
  }
  .favorite h4 {
    height: 33px;
    line-height: 33px;
  }
  .skill,
  .strengths {
    width: 100%;
  }

  .favorite_text {
    font-size: 15px;
  }
  .favorite_text_small {
    font-size: 12px;
  }
  .favorite_inner {
    display: block;
  }
  #favorite ul {
    width: 94%;
    padding: 20px;
  }
  #profile {
    display: block;
    padding: 0 20px;
    padding-top: 15%;
  }
  .profile__sub {
    margin-top: 20px;
    width: 100%;
  }
  #profile_inner {
    flex-direction: column;
    align-items: center;
    padding-bottom: 1%;
  }
  .skill {
    padding-bottom: 14%;
  }
  .title {
    font-size: 27px;
  }
  .profile_text{
    font-size: 14px;
  }

  #about {
    padding: 0 7%;
    margin-bottom: 200px;
  }
  .profile_item p {
    text-align: left;
  }

  #works {
    width: 90%;
  }
  /* Slickスライダーの矢印をカスタマイズ */
  .slick-prev,
  .slick-next {
    background-size: cover;
    height: 30px; /* 矢印の高さ */
    width: 30px; /* 矢印の幅 */
    z-index: 25;
    top: 31%;
  }
  .slick-prev {
    left: -30px;
    background-image: url("../img/first/aroow-prev@2x.png"); /* 左矢印の画像パス */
  }
  .slick-next {
    right: -30px;
    background-image: url("../img/first/arrow-next@2x.png"); /* 右矢印の画像パス */
  }
  .slick-prev:before,
  .slick-next:before {
    content: none;
  }
  .slick-slide img {
    margin-left: 7px;
  }
  .slick-prev:hover,
  .slick-prev:focus {
    background: url("../img/first/arrow-prev@2x.png");
    background-size: 100%;
  }
  .slick-next:hover,
  .slick-next:focus {
    background: url("../img/first/arrow-next@2x.png");
    background-size: 100%;
  }
  .button_text {
    font-size: 22px;
    max-width: 200px;
    height: 50px;
    line-height: 50px;
  }
  .about_inner {
    padding-bottom: 55px;
  }
  .about_img {
    overflow: hidden;
    padding: 50px 0;
    text-align: center;
  }
  .profile {
    width: 200px;
  }
  .circle {
    width: 270px;
    display: block;
    left: 60%;
    top: 16px;
    margin-left: -195px;
  }
  .backtoindex_botton,
  .nexttoindex_botton {
    width: 70px;
  }
  .page__btn-area .backToTop img {
    width: 122px;
  }
  #contact{
    padding: 0 45px;
  }
  #contact h2{
    font-size: 33px;
  }
  h2 span{
    font-size: 18px;
  }
  .contact_inner{
    padding: 100px 20px;
  }


  /* =============== コンタクトページ =============== */
  .c-form__item{
    display: block;
  }
  .c-form__input{
    width: 100%;
  }
  #contact_page{
    margin-top: 150px;
  }
  #contact_page h1{
    padding-top: 0;
    font-size: 24px;
  }
  #contact_page p{
    font-size: 14px;
    text-align: left;
    padding: 0 5%;
    text-align: center;
  }
  .contact_area{
    padding-top: 30px;
  }
  .contact_area img{
    width: 300px;
    padding-top: 0;
  }
  .line{
    max-width: 280px;
    bottom: 17px;
  }
  .c-form__submit button{
    height: 60px;
    line-height: 60px;
  }
}

@media screen and (max-width: 500px) {
  .circle {
    left: 63%;
    top: 12px;
  }
  #thanks .thanks-message{
    font-size: 65px;
  }
  .contact_text{
    font-size: 12px;
  }
  .name {
    font-size: 38px;
  }
  .pc_img img{
    width: 80%;
  }
  .banner img{
    width: 70%;
  }
}
@media screen and (max-width: 400px) {
  .circle {
    left: 69%;
    top: 15px;
  }
  .contact_text{
    font-size: 67%;
  }
  .title{
    font-size: 23px;
  }
  
}