/*
Theme Name: yuka-portfolio
Author: Yuka
Description: WordPress Theme
Version: 2025.08
Text Domain: mytheme
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: clamp(15px, 1.2vw, 18px);
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  background-color: #fcf5f8;
  color: #333;
  letter-spacing: .1em;
  vertical-align: bottom;
  max-width: 100%;
}

h2 {
  font-family: "Caveat", cursive;
  font-size: clamp(30px, 3.85vw, 72px);
  font-weight: bold;
  letter-spacing: .1em;
}

h3 {
  font-size: clamp(17px, 2.31vw, 35px);
  font-weight: bold;
}

/* -----------------------------
        ここからheader設定
-------------------------------- */
header {
  background-image: url(img/headerpic.png);
  background-size: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  opacity: 0;
  translate: 0 -30%;
  transition: all .5s;
}

.show,
.fixed {
  translate: 0 0;
  opacity: 1;
  z-index: 3000;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 10vh;
  margin: 0 auto;
}

.btn,
.h1WrapMB {
  display: none;
}

.h1WrapPC {
  width: 100%;
  height: auto;
  margin: 0 5px 0 10px;
  overflow: hidden;
  cursor: pointer;
}

.h1WrapPC img {
  display: block;
  width: clamp(180px, 15.38vw, 280px);
  height: auto;
  margin: 0 5px 0 10px;
}

/* MENU */
.mainNav {
  font-family: "Caveat", cursive;
  width: 100%;
  height: auto;
}

.mainNav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  height: 25px;
}

.mainNavInner {
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  line-height: 2;
  width: 90px;
  height: 25px;
  position: relative;
}

.menunone {
  display: block;
}

.btnText {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  transition: all .3s;
}

.btnText:nth-child(1),
.mainNavInner:hover .btnText:nth-child(2) {
  top: 0;
}

.btnText:nth-child(2) {
  top: -100%;
}

.mainNavInner:hover .btnText:nth-child(1) {
  top: 100%;
}

.menu,
.menuSub {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
}

.menuSub {
  display: block;
}

.menuX {
  display: block;
  width: 25px;
  height: auto;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translate(-50%, -50%);
}

/* -----------------------------
        ここからfooter設定
-------------------------------- */
footer {
  background-color: #d495b0;
  background-size: 100%;
  font-family: "Caveat", cursive;
  width: 100%;
  height: 50vh;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footerNav {
  margin-left: 100px;
  width: 100%;
}

.footerNav ul {
  display: block;
}

.footerNav li {
  font-size: clamp(15px, 1.53vw, 18px);
  margin-top: 20px;
}

.footerNavInner {
  transition: all .2s;
}

.footerNavInner:hover {
  color: #fff;
}

.footerNav-X {
  display: block;
  width: 20px;
}

.footerNav-X:hover {
  transform: rotate(10deg);
}

.fotter-X {
  width: 100%;
}

.fotter-BG {
  display: block;
  width: 60%;
  height: 50vh;
  object-fit: cover;
}

footer p {
  font-size: clamp(12px, 1.15vw, 18px);
  margin-top: 60px;
}

/* -----------------------------
      TOPへ戻るボタン設定
-------------------------------- */
.TopBtn {
  width: 70px;
  position: fixed;
  bottom: 1%;
  right: 0;
  z-index: 101;
}

.TopBtn img {
  width: 100%;
  aspect-ratio: 1/1;
}

.TopBtn img:hover {
  transition: all .5s linear;
  transform: rotate(360deg);
}

.TopBtnInner {
  opacity: 0;
  transition: all 1s;
}

.Btnshow {
  opacity: 1;
  transform: rotate(360deg);
}

/* -----------------------------
        トップページデザイン
-------------------------------- */
.IndexWrapper h2 {
  margin-top: 30px;
  text-align: center;
}

/* --- ボタンデザイン --- */
.worksView,
.skillBtn,
.profileInner {
  display: block;
  font-family: "Caveat", cursive;
  font-size: clamp(23px, 2.3vw, 40px);
  font-weight: bold;
  width: 20vw;
  margin: 50px 60px 0 auto;
  cursor: pointer;
}

.worksView {
  margin: 30px 60px 0 auto;
}

.profileInner {
  margin: 0 60px 0 auto;
}

.text-wrap {
  display: flex;
  gap: 4px;
}

.text-wrap .letter:nth-child(5) {
  margin-left: 10px;
}

.text-wrap::before {
  content: "";
  display: block;
  border: 3px solid;
  border-color: #d495b0 #d495b0 transparent transparent;
  width: 9px;
  height: 9px;
  margin-top: 12px;
  margin-right: 10px;
  transform: rotate(45deg);
  animation: pikopiko .5s linear infinite alternate;
}

@keyframes pikopiko {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.text-wrap:hover .letter {
  animation: sway .4s calc(0.04s * var(--index));
}

@keyframes sway {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-0.2em);
  }

  50% {
    transform: translateX(0.5em);
    color: transparent;
  }

  100% {
    transform: translateY(0);
  }
}

.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border-width: 0;
  white-space: nowrap;
}

/* -----------------------------
       トップページWORKS設定
-------------------------------- */
.sectionWorks {
  background-color: #fcf5f8;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding-bottom: 50px;
  position: sticky;
  top: -15vh;
  overflow: hidden;
}

.sectionWorks .title {
  line-height: 2;
  letter-spacing: .1em;
  width: 100%;
}

/* カルーセル */
.carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 50vh;
  position: relative;
}

.carousel__container {
  display: block;
  width: 100vw;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  perspective: 1200px;
}

.carousel__container li {
  width: 220px;
  height: 150px;
  position: absolute;
  top: 35%;
  left: 40%;
  transform-style: preserve-3d;
  transform-origin: center center;
  transition: transform .2s ease, filter .2s ease;
}

.carousel__container a,
.carousel__container img {
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: auto;
}

.carousel__container img {
  border-radius: 10px;
  width: 220px;
  height: 150px;
  object-fit: cover;
  object-position: bottom;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.carousel__container a::before,
.carousel__container a::after {
  content: "";
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
  opacity: 0;
}

.carousel__container a::before {
  background-color: #3e001936;
  border-radius: 10px;
  width: 100%;
  height: 150px;
}

.carousel__container a::after {
  content: "View More";
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3e001e50;
  border-radius: 10px;
  font-family: "Caveat", cursive;
  color: #f6f5ed;
  text-align: center;
  font-size: clamp(17px, 1.5vw, 27px);
  width: 100%;
  height: 150px;
  bottom: 0;
  right: 0;
}

.carousel__container a:hover::before,
.carousel__container a:hover::after {
  opacity: 1;
}

/* -----------------------------
      トップページSKILL設定
-------------------------------- */
.sectionSkill {
  background-color: #fcf5f8;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 0 50px;
  position: sticky;
  top: -30vh;
  overflow: hidden;
}

.sectionSkill .skillWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4vw;
  width: 100%;
  margin-top: 30px;
}

.sectionSkill .skillInner,
.sectionSkill .skillInnerCode {
  border-radius: 10px;
  background-color: #fff;
  height: clamp(300px, 65vh, 550px);
  padding: 30px 20px;
}

.sectionSkill .skillInner {
  width: clamp(200px, 28vw, 500px);
}

.sectionSkill .skillInnerCode {
  font-size: clamp(15px, 1vw, 18px);
  width: clamp(180px, 37vw, 580px);
}

.sectionSkill .skillInner h3,
.sectionSkill .skillInnerCode h3 {
  font-size: clamp(20px, 1.85vw, 30px);
  text-align: center;
}

.sectionSkill .skillFlexbox {
  display: flex;
  justify-content: center;
}

.sectionSkill .appwrap {
  width: 100%;
}

.sectionSkill .myskill {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.7;
  width: 100%;
}

.sectionSkill .skillimg img {
  display: block;
  margin: 0 auto;
}

.sectionSkill .skillInner div,
.sectionSkill .skillimg {
  width: 100px;
  margin: 10px auto 0;
  padding-bottom: 10px;
}

.sectionSkill .app {
  background-color: #fcf5f8;
  border: 1px solid #3e0019;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
  text-align: center;
  width: 80%;
  margin: 7px auto 0;
  padding: 5px;
}

.sectionSkill .app img {
  width: clamp(18px, 1.15vw, 25px);
}

/* -----------------------------
     トップページPROFILE設定
-------------------------------- */
.sectionProf {
  background-color: #fcf5f8;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 30px 0 50px;
  position: sticky;
  top: -10vh;
}

.sectionProf .profileMain {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  margin: 0 auto;
  padding: 70px 0 50px;
  overflow: hidden;
}

.sectionProf .pict {
  width: clamp(180px, 24vw, 400px);
  position: relative;
}

.sectionProf .pictA {
  position: relative;
  z-index: 900;
}

.sectionProf .pictB,
.sectionProf .pictC {
  position: absolute;
  z-index: 850;
}

.sectionProf .pictB {
  width: clamp(160px, 21vw, 300px);
  transform: rotate(180deg);
  bottom: -5%;
  left: -15%;
  animation: kurukuru1 5s infinite linear;
}

.sectionProf .pictC {
  width: clamp(100px, 13vw, 200px);
  top: 0;
  right: 0;
  animation: kurukuru1 8s infinite linear;
}

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

.sectionProf .myname {
  font-size: clamp(18px, 2vw, 25px);
  font-weight: bold;
}

.sectionProf .about {
  width: clamp(400px, 53vw, 800px);
}

.sectionProf .aboutInner {
  margin-top: 25px;
  line-height: 1.7;
}

.sectionProf .aboutInner .span {
  font-weight: bold
}

.profileSNSX {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  font-size: clamp(14px, 1.15vw, 20px);
  line-height: 1.5;
  margin-top: 20px;
}

.profileSNSX img {
  width: 30px;
}

.profileSNSX img:hover {
  transform: rotate(10deg);
}

/* -----------------------------
      トップページCONTACT設定
-------------------------------- */
.sectionCon {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  background-color: #fcf5f8;
  width: 100%;
  height: auto;
  padding: 10px 50px 50px;
  position: sticky;
  top: 0;
}

.contactMain {
  font-size: clamp(17px, 1.5vw, 25px);
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  width: 100%;
  margin-top: 50px;
}

.contactInner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 50px auto 0;
}

.contactMail {
  display: block;
  background-color: #3e0019;
  border: 1px solid #3e0019;
  border-radius: 30px;
  font-family: "Caveat", cursive;
  color: #fff;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  transition: all .5s;
}

.contactMail:nth-of-type(1) {
  background-image: url(img/common/logo-white.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  transition: all .5s;
  width: 100px;
  height: 60px;
}

.contactMail:nth-of-type(1):hover {
  background-image: url(img/common/logo-black.png);
}

.contactMail:nth-of-type(2) {
  width: 300px;
}

.contactMail:hover {
  background-color: #fcf5f8;
  border: 1px solid #3e0019;
  color: #3e0019;
}

/* アコーディオンメニュー */
.accordion_wrap {
  width: 100%;
  margin-top: 50px;
}

.accordion_wrap .accordion_one {
  width: 500px;
  margin: 0 auto;
}

.accordion_wrap .accordion_one .accordion_header {
  background-color: #fcf5f8;
  font-size: clamp(14px, 1.2vw, 16px);
  color: #af0000;
  font-weight: bold;
  padding: 20px 10px;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: .2s;
}

.accordion_wrap .accordion_one:nth-of-type(2) .accordion_header,
.accordion_wrap .accordion_one:nth-of-type(3) .accordion_header {
  background-color: #fcf5f8;
  border-top: 1px solid #3333338a;
}

.accordion_wrap .accordion_one .accordion_header:hover {
  opacity: .7;
}

.accordion_wrap .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  right: 5%;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}

.accordion_wrap .accordion_one .accordion_header.stay .i_box {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.accordion_wrap .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

.accordion_wrap .accordion_one .accordion_header.stay .i_box .one_i {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.accordion_wrap .accordion_one .accordion_header.stay.open .i_box .one_i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.accordion_wrap .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.accordion_wrap .accordion_one .accordion_header.stay.open .i_box {
  -webkit-transform: rotate(315eg);
  transform: rotate(315deg);
}

.accordion_wrap .accordion_one .accordion_header .i_box .one_i:before,
.accordion_wrap .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: "";
  background-color: #333;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}

.accordion_wrap .accordion_one .accordion_header .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}

.accordion_wrap .accordion_one .accordion_header.stay .i_box .one_i:before,
.accordion_wrap .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}

.accordion_wrap .accordion_one .accordion_header.stay.open .i_box .one_i:before {
  content: "";
}

.accordion_wrap .accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.accordion_wrap .accordion_one .accordion_header.stay.open .i_box .one_i:after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.accordion_wrap .accordion_one .accordion_inner {
  display: none;
  padding: 10px 30px 20px;
}

.accordion_wrap .accordion_one .accordion_inner.stay {
  display: block;
}

.accordion_wrap .accordion_one .accordion_inner .box_one {
  height: auto;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.7;
}

.accordion_wrap .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
}

/* -----------------------------
   トップページ背景パララックス設定
-------------------------------- */
.IndexWrapper .background,
.IndexWrapper .background02,
.IndexWrapper .background03,
.IndexWrapper .background04 {
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
  background-color: #fcf5f8;
  width: 100%;
  height: 30vh;
  position: sticky;
  animation: parallax linear both;
  animation-timeline: view();
}

.IndexWrapper .background {
  background-image: url(img/mainpict1.jpg);
}

.IndexWrapper .background02 {
  background-image: url(img/mainpict2.jpg);
}

.IndexWrapper .background03 {
  background-image: url(img/mainpict3.jpg);
}

.IndexWrapper .background04 {
  background-image: url(img/mainpict4.jpg);
}

@keyframes parallax {
  from {
    background-position: center 0;
  }

  to {
    background-position: center -500px;
  }
}

/* -----------------------------
     サイト全体 フェードイン設定
-------------------------------- */
.fadeIn {
  opacity: 0;
  transition: 2.5s;
}

.fadeIn.fade {
  opacity: 1;
}

/* -----------------------------
    トップページSlickSlider設定
-------------------------------- */
.split-slideshow {
  position: relative;
  background-color: #e6dcd7;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.scrollbtn {
  background-color: transparent;
  position: absolute;
  bottom: 9%;
  left: 45%;
  z-index: 600;
  cursor: pointer;
  transform: scale(1);
  transition: all .3s;
}

.scrollbtn:hover {
  transform: scale(0.95);
}

.scrolltext {
  font-family: "Caveat", cursive;
  font-size: clamp(16px, 1.9vw, 23px);
  letter-spacing: .1em;
  font-weight: bold;
  text-align: center;
}

.scrollboll {
  border-radius: 50%;
  background-color: #d495b0;
  text-align: center;
  width: clamp(40px, 3.85vw, 60px);
  aspect-ratio: 1/1;
  margin: 10px auto 0;
  position: relative;
}

.scrollboll span {
  border: 2px solid;
  border-color: transparent transparent #fff #fff;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  transform: rotate(-45deg);
  position: absolute;
  top: 40%;
  left: 40%;
}

.slideshow {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.slideshow .slider {
  width: 100vw;
  height: 100vw;
  z-index: 2;
}

.slideshow .slider * {
  outline: none;
  cursor: default;
}

.slideshow .slider .item {
  border: none;
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.slideshow .slider .item .text {
  display: none;
}

.slideshow .slider .item img {
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  padding: 0;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  transform: translate(-50%, -50%);
}

.slideshow .slick-dots {
  display: block;
  color: #d495b0;
  width: 30px;
  height: auto;
  bottom: auto;
  top: 15%;
  left: auto;
  right: 0;
  z-index: 2000;
  transform: translateY(-50%);
  cursor: pointer;
  overflow: hidden;
  position: fixed;
}

.slideshow .slick-dots li {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.slideshow .slick-dots li button {
  position: relative;
  text-align: center;
  width: 20px;
  height: 15px;
  cursor: pointer;
}

.slideshow .slick-dots li button:before {
  content: "";
  border-radius: 30%;
  background: #d495b0;
  color: #d495b0;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  transform: translateY(-50%);
  transition: all .4s ease-in-out;
  opacity: .6;
  overflow: hidden;
}

.slideshow .slick-dots li.slick-active button:before {
  width: 10px;
  height: 10px;
  opacity: 1;
  position: absolute;
  top: 50%;
  right: 50%;
  left: auto;
}

.slideshow.slideshow-right {
  width: 50vw;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.slideshow.slideshow-right .slider {
  position: absolute;
  left: 0;
}

.slideshow-text {
  font-family: "Caveat", cursive;
  font-size: clamp(20px, 8.5vw, 150px);
  text-align: center;
  color: #333;
  font-weight: 100;
  letter-spacing: 10px;
  line-height: 2;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, -50%);
  pointer-events: none;
  overflow: hidden;
}

/* -----------------------------
        Contactページ設定
-------------------------------- */
.wpcf7 {
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-padding-top: 10vh;
  padding-bottom: 50px;
}

.wpcf7 h2 {
  text-align: center;
  padding-bottom: 30px;
}

.wpcf7-form {
  margin: 0 auto;
}

.wpcf7-list-item-label {
  font-size: clamp(15px, 1vw, 18px);
}

label {
  display: block;
  font-size: clamp(15px, 1vw, 18px);
  margin-top: 18px;
  margin-left: 60px;
}

.hissu {
  border: 1px solid #333;
  font-size: clamp(11px, 0.7vw, 15px);
  margin-left: 1em;
  padding: 2px;
}

.wpcf7-radio {
  display: block;
  width: 250px;
}

input,
textarea {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #b6b6b6;
  color: #333;
  margin-top: 5px;
  padding: 5px;
}

textarea {
  height: 250px;
  padding: 10px;
}

.wpcf7-form-control-wrap,
.wpcf7-textarea {
  font-size: clamp(15px, 1vw, 18px);
}

.wpcf7-submit {
  display: block;
  border-radius: 10px;
  border: 1px solid #b6b6b6;
  background-color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(15px, 1.15vw, 20px);
  color: #333;
  width: 100px;
  margin: 20px auto 0;
  cursor: pointer;
  transition: all .5s;
}

.wpcf7-submit:hover {
  background-color: #d495b0;
  border: 1px solid #d495b0;
  color: #fff;
}

.wpcf7-response-output {
  font-weight: bold;
  line-height: 1.7;
}

/* -----------------------------
         Worksページ設定
-------------------------------- */
.works_wrapper {
  scroll-padding-top: 10vh;
  padding: 0 60px;
}

.page-title {
  text-align: center;
}

.worksCategory {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  font-size: clamp(16px, 1.53vw, 25px);
  font-family: "Caveat", cursive;
  text-align: center;
  margin-top: 15px;
}

.worksCategory a {
  display: block;
  transition: all .5s;
}

.worksCategory a:hover {
  color: #333333c3;
  transform: translateY(-10%);
}

.worksCategory .count {
  font-size: .8em;
}

.product-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 50px;
  padding-bottom: 50px;
}

.product-list li {
  width: clamp(200px, 23.08vw, 400px);
  aspect-ratio: 300/350;
  transform: scale(1);
  transition: transform 0.3s;
}

.product-list li:hover {
  transform: scale(0.95);
  transition: transform 0.3s;
}

.product-list a {
  display: inline-block;
  line-height: 1.6;
  font-size: clamp(15px, 1vw, 18px);
}

.product-img {
  display: block;
  width: clamp(200px, 23.08vw, 400px);
  aspect-ratio: 1/1;
  margin: 0 auto;
  object-fit: cover;
}

.product-list-inner {
  display: flex;
  gap: 10px;
}

.product-list-inner img {
  width: 20px;
}

.link-text {
  display: block;
  background-color: #3e0019;
  border: 1px solid #3e0019;
  border-radius: 30px;
  font-size: clamp(18px, 1.53vw, 30px);
  text-align: center;
  font-family: "Caveat", cursive;
  line-height: 3;
  color: #fcf5f8;
  width: clamp(150px, 15.38vw, 300px);
  margin: 50px auto 30px;
  transition: all 0.5s;
}

.link-text:hover {
  background-color: #fcf5f8;
  border: 1px solid #3e0019;
  color: #3e0019;
}

/* -----------------------------
        パンくずリスト設定
-------------------------------- */
.bread-menu {
  display: inline;
  font-size: 13px;
}

.bread-menu:last-of-type {
  font-size: 15px;
}

.bread-menu a:hover {
  text-decoration: underline 1px solid #333;
}

.bread-menu+.bread-menu::before {
  content: ">";
  margin: .5em;
}

.page-wrap {
  margin-top: 13vh;
  margin-left: 40px;
}

.works_wrapper .bread-wrap {
  margin-left: 0;
  padding: 0;
}

/* -----------------------------
     ここからレスポンシブ対応設定
-------------------------------- */
@media(max-width:850px) {
  html {
    font-size: clamp(14px, 3.3vw, 18px);
  }

  h2 {
    font-size: clamp(35px, 11.25vw, 60px);
  }

  h3 {
    font-size: clamp(25px, 7.5vw, 50px);
  }

  /* -----------------------------
          ここからheader設定
  -------------------------------- */
  header {
    height: 10vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
  }

  .h1WrapPC {
    display: none;
  }

  .h1WrapMB {
    display: block;
    width: 50vw;
    margin: 15px 0 0 10px;
    position: relative;
    z-index: 400;
  }

  /* -- ハンバーガーメニュー -- */
  .btn {
    display: block;
    background-color: transparent;
    outline: none;
    border: none;
    cursor: pointer;
    width: 40px;
    aspect-ratio: 1/1;
    margin-right: 10px;
  }

  .btn span,
  .btn span::before,
  .btn span::after {
    display: block;
    background-color: #333;
    width: 100%;
    height: 2px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    transition: all .5s ease;
  }

  .btn span {
    position: relative;
    top: 0;
  }

  .btn span::before {
    content: "";
    position: absolute;
    top: -10px;
  }

  .btn span::after {
    content: "";
    position: absolute;
    top: 10px;
  }

  /* -- ハンバーガーメニュークリック後 -- */
  .btn.active span {
    display: block;
    background-color: transparent;
    width: 40px;
    height: 2px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    transition: all .5s ease;
  }

  .btn.active span::before,
  .btn.active span::after {
    content: "";
    display: block;
    background-color: #333;
    width: 40px;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all .5s ease;
  }

  .btn.active span::before {
    transform: rotate(45deg);
  }

  .btn.active span::after {
    transform: rotate(-45deg);
  }

  /* -- メニュー -- */
  .mainNav {
    height: 100vh;
    opacity: 0;
    position: absolute;
    top: 0%;
    right: -100%;
    left: 100%;
    transition: all .8s;
  }

  .mainNav.is-show {
    background-color: transparent;
    opacity: 1;
    left: 0%;
    right: 100%;
    z-index: 500;
  }

  .mainNav.is-show ul {
    left: 0%;
    right: 100%;
    z-index: 500;
  }

  .mainNav ul {
    background-color: #fcf5f8;
    background-image: url(img/common/menumb.png);
    background-size: 100vw;
    background-position: bottom;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    width: 85%;
    height: 100vh;
    margin-left: 15%;
    padding-top: 33%;
    position: absolute;
    top: 0%;
    left: 100%;
    right: -100%;
    z-index: 500;
    transition: all .5s;
  }

  .mainNavInner {
    line-height: 1;
    letter-spacing: .1em;
    text-shadow: 2px 2px 0 #fcf5f8;
    position: relative;
    width: 200px;
    height: 50px;
  }

  .menunone,
  .menuSub {
    display: none;
  }

  .btnText {
    transition: 0s;
  }

  .btnText:nth-child(1),
  .btnText:nth-child(2),
  .mainNavInner:hover .btnText:nth-child(1),
  .mainNavInner:hover .btnText:nth-child(2) {
    top: 0;
  }

  .menu {
    font-size: clamp(20px, 6.25vw, 30px);
    font-weight: bold;
    width: 100%;
  }

  .menuX {
    margin-right: 5px;
    position: absolute;
    top: 50%;
    right: 15%;
  }

  /* -----------------------------
          ここからfooter設定
  -------------------------------- */
  footer {
    height: 40vh;
  }

  .footerNav {
    margin-left: 10vw;
  }

  .footerNav li {
    font-size: clamp(16px, 4vw, 23px);
  }

  .footerNavInner:hover {
    color: #333;
  }

  .footerNav-X:hover {
    transform: none;
  }

  .fotter-BG {
    width: 40%;
    height: 40vh;
  }

  footer p {
    font-size: clamp(10px, 2vw, 14px);
    text-align: center;
    margin-top: 35px;
  }

  /* -----------------------------
          TOPへ戻るボタン設定
  -------------------------------- */
  .TopBtn {
    width: 60px;
    position: fixed;
    bottom: 0;
    right: 0;
    animation: fuwa 1.5s .3s ease-in infinite alternate;
  }

  @keyframes fuwa {
    0% {
      transform: translateY(5px);
    }

    100% {
      transform: translateY(-5px);
    }

  }

  .TopBtn img:hover {
    transition: none;
    transform: none;
  }


  /* -----------------------------
          トップページ設定
  -------------------------------- */
  .IndexWrapper h2 {
    margin-top: 20px;
  }

  .IndexWrapper .title {
    width: 100%;
    line-height: 2;
    letter-spacing: .2em;
  }

  /* ボタンデザイン */
  .worksView,
  .skillBtn,
  .profileInner {
    font-size: clamp(18px, 6vw, 25px);
    width: 40vw;
    margin: 50px auto 0;
  }

  .worksView {
    margin: 0 auto;
  }

  .profileInner {
    margin: 10px auto 0;
  }

  .text-wrap {
    gap: 2px;
  }

  .text-wrap::before {
    border: 2px solid;
    border-color: #d495b0 #d495b0 transparent transparent;
    width: 5px;
    height: 5px;
    margin-top: 10px;
    margin-right: 10px;
  }

  .text-wrap:hover .letter {
    animation: none;
  }

  /* -----------------------------
         トップページWORKS設定
  -------------------------------- */
  .sectionWorks {
    margin: 0 auto 0;
    position: sticky;
    top: -10vh;
  }

  /* カルーセル */
  .carousel {
    width: 100vw;
    height: 40vh;
  }

  .carousel__container {
    width: 100vw;
    height: 100%;
    perspective: 600px;
  }

  .carousel__container li {
    width: 130px;
    height: 90px;
    position: absolute;
    top: 30%;
    left: 35%;
    pointer-events: auto;
  }

  .carousel__container a,
  .carousel__container img {
    user-drag: auto;
    -webkit-user-drag: auto;
    user-select: auto;
    pointer-events: auto;
  }

  .carousel__container img {
    width: 130px;
    height: 90px;
    pointer-events: auto;
  }

  .carousel__container a::before,
  .carousel__container a::after,
  .carousel__container a:hover::before,
  .carousel__container a:hover::after {
    pointer-events: auto;
  }

  .carousel__container a::before {
    height: 90px;
    pointer-events: auto;
  }

  .carousel__container a::after {
    font-size: clamp(16px, 4.8vw, 25px);
    height: 90px;
    pointer-events: auto;
  }

  /* -----------------------------
         トップページSKILL設定
  -------------------------------- */
  .IndexWrapper .sectionSkill {
    padding: 0 0 50px 0;
    position: sticky;
    top: -230vh;
  }

  .IndexWrapper .skillWrap {
    gap: 20px;
    margin: 0 auto;
    padding: 20px;
  }

  .IndexWrapper .skillInner,
  .IndexWrapper .skillInnerCode {
    font-size: clamp(15px, 3.3vw, 18px);
    font-weight: bold;
    width: 95%;
    height: auto;
    padding: 30px 0;
  }

  .IndexWrapper .skillInnerCode h3,
  .IndexWrapper .skillInner h3 {
    line-height: 2;
    font-size: clamp(20px, 6.25vw, 30px);
  }

  .IndexWrapper .skillFlexbox {
    display: block;
  }

  .IndexWrapper .myskill {
    display: block;
    width: 85%;
    margin: 20px auto 0;
  }

  .IndexWrapper .skillInner div,
  .IndexWrapper .skillimg {
    width: 25%;
  }

  .IndexWrapper .app {
    font-size: clamp(17px, 5vw, 20px);
    margin: 7px auto 0;
  }

  /* -----------------------------
        トップページPROFILE設定
  -------------------------------- */
  .sectionProf {
    position: sticky;
    top: -50vh;
  }

  .sectionProf .profileMain {
    display: block;
    padding: 10px 0 30px 0;
  }

  .sectionProf .pict {
    width: 60%;
    margin: 0 auto;
  }

  .sectionProf .myname {
    font-size: clamp(20px, 5vw, 30px);
  }

  .sectionProf .about {
    font-size: clamp(15px, 3.3vw, 18px);
    line-height: 1.7;
    width: 90%;
    margin: 35px auto 0;
  }

  .sectionProf .aboutInner {
    margin-top: 30px;
  }

  .profileSNSX {
    font-size: clamp(15px, 3.3vw, 18px);
    margin-top: 30px;
  }

  .profileSNSX img:hover {
    transform: none;
  }

  /* ---------- ここからCONTACT ---------- */
  .sectionCon {
    padding: 30px 0 50px;
  }

  .contactMain {
    margin-top: 30px;
  }

  .contactInner {
    gap: 3vw;
    width: 100%;
    margin: 30px auto 0;
  }

  .contactMail {
    font-size: clamp(20px, 6.25vw, 30px);
    width: 50%;
  }

  .contactMail:nth-of-type(1) {
    background-size: 25px;
    width: 30%;
  }

  .contactMail:nth-of-type(1):hover {
    background-image: url(img/common/logo-white.png);
  }

  .contactMail:hover {
    background-color: #3e0019;
    color: #fff;
    border: 1px solid #3e0019;
  }

  .accordion_wrap .accordion_one {
    width: 85%;
    margin: 0 auto;
  }

  /* アコーディオンメニュー */
  .accordion_wrap .accordion_one .accordion_header {
    font-size: clamp(14px, 3.3vw, 17px);
    padding: 15px 60px 15px 15px;
  }

  .accordion_wrap .accordion_one .accordion_header .i_box {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }

  /* -----------------------------
         トップページ背景設定
  -------------------------------- */
  .IndexWrapper .background,
  .IndexWrapper .background02,
  .IndexWrapper .background03,
  .IndexWrapper .background04 {
    height: 15vh;
    position: sticky;
    top: 0;
    animation: none;
    animation-timeline: none;
  }

  /* -----------------------------
     トップページSlickSlider設定
  -------------------------------- */
  .scrollbtn {
    position: absolute;
    bottom: 15%;
    left: 45%;
    transform: none;
    transition: none;
    animation: TtoB .6s ease-in-out infinite alternate;
  }

  @keyframes TtoB {
    0% {
      transform: translateY(10%);
    }

    100% {
      transform: translateY(-5%);
    }
  }

  .scrollbtn:hover {
    transform: none;
  }

  .scrolltext {
    font-size: 4.5vw;
  }

  .scrollboll {
    width: clamp(30px, 12.5vw, 50px);
  }

  .slideshow .slick-dots {
    bottom: auto;
    top: 7%;
    right: 0;
    left: auto;
  }

  .slideshow-text {
    font-size: 12.5vw;
    width: 100%;
    height: auto;
    font-weight: 500;
    letter-spacing: .2em;
    line-height: 1.5;
  }

  /* -----------------------------
          Contactページ設定
  -------------------------------- */
  .wpcf7 {
    margin: 20px auto 0;
  }

  .wpcf7 h2 {
    padding-bottom: 0;
  }

  label {
    font-weight: bold;
    width: 300px;
    margin-top: 20px;
    margin-left: 0;
  }

  textarea {
    width: 300px;
    height: 200px;
  }

  .wpcf7-submit:hover {
    background-color: #fff;
    border: 1px solid #b6b6b6;
    color: #333;
  }

  /* -----------------------------
            Worksページ設定
  -------------------------------- */
  .works_wrapper {
    scroll-padding-top: 10vh;
    margin-top: 13vh;
    padding: 0;
  }

  .worksCategory {
    gap: 0;
    font-size: clamp(16px, 4vw, 20px);
    margin-top: 20px;
    padding: 0 20px;
  }

  .worksCategory a:hover {
    color: #333;
    transform: none;
  }

  .product-list {
    gap: 30px;
    margin-top: 30px;
  }

  .product-list li {
    width: 80%;
    height: auto;
    transform: none;
    transition: none;
  }

  .product-list li:hover {
    transform: none;
  }

  .product-list a {
    font-size: clamp(15px, 4.3vw, 20px);
    line-height: 1.5;
    text-align: center;
  }

  .product-img {
    width: 100%;
  }

  .link-text {
    font-weight: bold;
    line-height: 2;
    letter-spacing: .1em;
    width: 200px;
    padding: 10px 20px;
    margin: 0 auto 50px;
  }

  .link-text:hover {
    background-color: #3e0019;
    border: 1px solid #3e0019;
    color: #fcf5f8;
  }

  /* -----------------------------
        パンくずリスト設定
  -------------------------------- */
  .bread-menu {
    font-size: 13px;
  }

  .bread-menu a:hover {
    text-decoration: none;
  }

  .page-wrap {
    margin-left: 10px;
  }

  .works_wrapper .bread-wrap {
    margin-left: 10px;
    padding: 0 0 20px;
  }

}