@charset "utf-8";

/* 共通 */
* {
  font-family: "Noto Serif JP", "Noto Serif", serif;
  color: #4b1900;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: #fffeff;
}
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-top: 130px;
}

.section-title h2 {
  font-size: 42px;
}

.section-title img {
  width: 580px;
}

.skill-name h4 {
  font-size: 32px;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1.3s ease,
    transform 1.3s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border: 1px solid #4b1900;
  border-radius: 50%;
  background-color: #fff8f5;
  color: #4b1900;
  font-size: 24px;
  cursor: pointer;
  z-index: 900;

  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

#back-to-top.active {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background-color: #fff8f5;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .deco {
    display: none;
  }

  .section-title {
    gap: 10px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title img {
    width: 300px;
  }

  .section-title p {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .deco {
    display: none;
  }

  .section-title {
    gap: 18px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .section-title img {
    width: 350px;
  }

  .section-title p {
    font-size: 18px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .deco {
    display: none;
  }
}

/* ---------------------メインページ-------------------- */
/* ヘッダー */
.header-bg {
  background-image: url(../images/1stview_img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 110vh;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.header-nav ul {
  display: flex;
  gap: 50px;
  list-style: none;
  padding-right: 20px;
}

.header-nav a {
  text-decoration: none;
  font-size: 24px;
  transition: 0.5s;
}
.header-nav a:hover {
  color: #d0a0b6;
}

.header-logo img {
  width: 150px;
}

.hamburger,
.close {
  display: none;
}

@media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    box-sizing: border-box;
    z-index: 1000;
  }
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff8f5;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.5s;
    z-index: 999;
  }

  .header-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

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

  .close {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;

    border: none;
    background: none;
    font-size: 35px;
    cursor: pointer;
  }

  .header-bg {
    background-image: url(../images/mobile_mv.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .header-logo img {
    width: 100px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 40px;
    padding: 0;
    border: none;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #4b1900;
  }
}

@media (max-width: 1024px) {
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff8f5;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.5s;
    z-index: 999;
  }

  .header-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

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

  .header-bg {
    background-image: url(../images/mobile_mv.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .close {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;

    border: none;
    background: none;
    font-size: 35px;
    cursor: pointer;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 40px;
    padding: 0;
    border: none;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #4b1900;
  }
}

/* メインビジュアル */
/* =========================
   MV
========================= */

.mv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 80%;
  margin: 3rem auto;
}

.mv h1,
.mv p {
  width: 680px;
  text-align: center;
  letter-spacing: 0.1em;
}

.mv h1 {
  font-size: 40px;
  line-height: 2;
  margin-top: 130px;
}

.en-title {
  font-size: 24px;
  text-align: center;
  color: #d0a0b6;
}

.mv img {
  width: 680px;
}

/* =========================
   スマホ
========================= */

@media screen and (max-width: 768px) {
  .mv {
    align-items: center;
    width: 80%;
    margin: 0 auto;
    padding-top: 100px;
  }

  .mv h1,
  .mv p {
    width: 100%;
  }

  .mv h1 {
    font-size: 20px;
    width: 100%;
    margin-top: 150px;
  }

  .mv p {
    font-size: 14px;
  }

  .en-title {
    font-size: 18px;
  }

  .mv img {
    width: 90%;
  }
}

/* =========================
   iPad 縦
========================= */

@media screen and (min-width: 769px) and (max-width: 1100px) and (orientation: portrait) {
  .mv {
    width: 80%;
    margin: 200px auto;
    padding: 0;
    align-items: center;
  }

  .mv h1,
  .mv p {
    width: 100%;
    text-align: center;
  }

  .mv h1 {
    font-size: 32px;
    line-height: 2;
    margin-top: 0;
  }

  .mv p {
    font-size: 20px;
  }

  .en-title {
    font-size: 18px;
  }

  .mv img {
    width: 90%;
  }
}

/* =========================
   iPad 横
========================= */

@media screen and (min-width: 769px) and (max-width: 1100px) and (orientation: landscape) {
  .mv {
    width: 70%;
    margin: 100px auto 50px 0;
    padding: 0;
    align-items: flex-start;
  }

  .mv h1,
  .mv p {
    width: min(680px, 100%);
    text-align: center;
  }

  .mv h1 {
    font-size: 32px;
    line-height: 2;
    margin-top: 0;
  }

  .mv p {
    font-size: 20px;
  }

  .en-title {
    font-size: 18px;
  }

  .mv img {
    width: min(680px, 90%);
  }
}

/* CONCEPT */
.concept {
  padding: 142px;
}

.concept p {
  font-size: 18px;
  line-height: 3;
  text-align: center;
  margin-top: 71px;
}

.section-title p {
  font-size: 24px;
  line-height: 2;
  margin: 0;
}

@media (max-width: 1024px) {
  .concept {
    padding: 0;
  }
  .concept p {
    font-size: 18px;
    line-height: 2;
  }

  .section-title p {
    font-size: 24px;
    line-height: 2;
  }
}

@media (max-width: 768px) {
  .concept {
    padding: 0;
  }
  .concept p {
    font-size: 12px;
    line-height: 2;
  }

  .section-title p {
    font-size: 18px;
    line-height: 1.6;
  }
}

/* ABOUT */
.about {
  padding: 131px;
}
.about-me {
  display: flex;
  align-items: center;
  gap: 62px;
  margin-top: 120px;
}

.about-me img {
  width: 500px;
}

.about-me p {
  font-size: 18px;
  line-height: 1.8;
  width: 480px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.about-all {
  transition: 0.5s;
  text-decoration: none;
}
.about-all:hover {
  color: #d0a0b6;
}

@media (max-width: 1024px) {
  .about {
    padding: 0;
  }

  .about-me img {
    width: 500px;
  }

  .about-me {
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
  }

  .about-me p {
    font-size: 16px;
    line-height: 1.8;
    width: 500px;
  }

  .about-text {
    gap: 30px;
  }

  .about-all {
    font-size: 16px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .about-me p {
    width: 100%;
  }

  .about {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 0;
  }

  .about-me img {
    width: 300px;
  }

  .about-me {
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
  }

  .about-me p {
    font-size: 12px;
    line-height: 1.6;
    width: 300px;
  }

  .about-text {
    gap: 30px;
  }

  .about-all {
    font-size: 12px;
  }
}

/* WORK */
.work-list {
  display: flex;
  flex-direction: column;
  gap: 190px;
  margin-top: 150px;
}
.work-item {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.work-item img {
  width: 530px;
}

.item-typ {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.item-text {
  display: flex;
  flex-direction: column;
  gap: 68px;
}

.item-text a {
  text-decoration: none;
  transition: 0.5s;
}
.item-text a:hover {
  color: #d0a0b6;
}

.item-text p {
  font-size: 16px;
  line-height: 1.8;
}

.format {
  color: #d0a0b6;
  font-size: 22px;
}

.item-text h3 {
  font-size: 32px;
}

.tool {
  border: 1px solid #d0a0b6;
  padding: 5px 8px;
  width: fit-content;
}

.all-view a {
  display: flex;
  justify-content: center;
  color: #d0a0b6;
  font-size: 24px;
  transition: 0.5s;
  text-decoration: none;
}
.all-view a:hover {
  color: #4b1900;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .work-item img {
    order: 1;
    width: 80%;
  }

  .work-item {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .work-list {
    gap: 100px;
    margin-top: 80px;
  }

  .work-item .item-text {
    order: 2;
    width: 80%;
  }

  .item-text h3 {
    font-size: 24px;
  }

  .item-text p {
    font-size: 16px;
  }

  .item-typ {
    gap: 15px;
  }

  .item-text {
    gap: 15px;
  }

  .item-text a {
    font-size: 15px;
  }

  .tool {
    display: none;
  }

  .all-view a {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .work-item img {
    order: 1;
    width: 80%;
  }

  .work-item {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .work-list {
    gap: 100px;
    margin-top: 80px;
  }

  .work-item .item-text {
    order: 2;
    width: 80%;
  }

  .item-text h3 {
    font-size: 16px;
  }

  .item-text p {
    font-size: 12px;
  }

  .item-typ {
    gap: 15px;
  }

  .item-text {
    gap: 15px;
  }

  .item-text a {
    font-size: 14px;
  }

  .tool {
    display: none;
  }

  .all-view a {
    font-size: 18px;
  }
}

/* CONTACT */
.contact-mail a {
  display: flex;
  justify-content: center;
  font-size: 30px;
  padding: 10px;
  transition: 0.5s;
  text-decoration: none;
}
.contact-mail a:hover {
  color: #d0a0b6;
  cursor: pointer;
}

.contact-mail {
  border: 1px solid #d0a0b6;
  border-radius: 10px;
  width: 500px;
  position: relative;
  margin: 0 auto;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 65px;
  margin-top: 130px;
}

@media (max-width: 1024px) {
  .contact-mail a {
    font-size: 24px;
  }

  .contact .section-title p {
    font-size: 18px;
  }

  .contact-mail {
    width: 70%;
  }

  .contact {
    gap: 20px;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .contact-mail a {
    font-size: 20px;
  }

  .contact .section-title p {
    font-size: 14px;
  }

  .contact-mail {
    width: 80%;
  }

  .contact {
    gap: 20px;
    margin-top: 0;
  }

  .plan-title p {
    font-size: 14px;
  }
}

/* フッター */
.footer-logo {
  background-image: url(../images/footer_back.png);
  background-size: cover;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  width: 300px;
}

footer {
  margin-top: 50px;
  text-align: center;
}

@media (max-width: 1024px) {
  .footer-logo {
    background-size: contain;
    width: 100%;
    height: auto;
  }

  .footer-logo img {
    width: 150px;
    height: auto;
  }

  footer {
    font-size: 14px;
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .footer-logo {
    background-size: cover;
    width: 100%;
    height: auto;
  }

  .footer-logo img {
    width: 80px;
    height: auto;
  }

  footer {
    font-size: 8px;
    margin-top: 50px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .footer-logo {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
  }

  .footer-logo img {
    width: 200px;
  }
}

/* ----------------------------プロフィールページ------------------------- */

/* ヘッダー */
.second-header {
  background-image: url(../images/header_bg.png);
  background-size: cover;
  background-position: center;
}

/* PROFILE */
.profile-wrap {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
}

.text-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  line-height: 1.6;
}

.profile-text {
  width: 560px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.skill-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-image img {
  width: 590px;
}

@media (max-width: 1024px) {
  .profile-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .text-top {
    gap: 10px;
  }
  .profile-text {
    order: 2;
    width: 85%;
    font-size: 16px;
    gap: 10px;
    line-height: 1.6;
  }

  .profile-image {
    display: flex;
    justify-content: center;
    order: 1;
  }

  .profile-image img {
    width: 85%;
  }
}

@media (max-width: 768px) {
  .profile-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .text-top {
    gap: 10px;
  }
  .profile-text {
    order: 2;
    width: 85%;
    font-size: 12px;
    gap: 10px;
  }

  .profile-image {
    display: flex;
    justify-content: center;
    order: 1;
  }

  .profile-image img {
    width: 85%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .profile-text {
    padding-left: 10px;
  }
}

/* 自己紹介文 */
.myintro {
  margin-top: 83px;
}
.strength,
.value,
.hobby,
.intro-title {
  width: 398px;
  display: flex;
  flex-direction: column;
}

.strength,
.value,
.hobby {
  gap: 40px;
  line-height: 1.6;
}

.intro-title {
  gap: 13px;
  border-bottom: solid 1px #d0a0b6;
}

.intro-title h3 {
  font-size: 36px;
  color: #8f5c73;
}

.second-name {
  font-size: 20px;
  padding-bottom: 10px;
}

.strength,
.value,
.hobby {
  position: relative;
}

.strength {
  left: 185px;
  top: 78px;
}

.value {
  left: 699px;
}

.hobby {
  left: 777px;
  top: 99px;
}

@media (max-width: 1024px) {
  .myintro {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .myintro p {
    font-size: 14px;
  }

  .intro-title h3 {
    font-size: 24px;
  }

  .intro-title {
    width: fit-content;
  }
  .second-name {
    font-size: 16px;
    padding-bottom: 5px;
  }

  .strength,
  .value,
  .hobby {
    gap: 10px;
    width: 85%;
    top: 0;
    left: 70px;
  }
}

@media (max-width: 768px) {
  .myintro {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .myintro p {
    font-size: 12px;
  }

  .intro-title h3 {
    font-size: 20px;
  }

  .intro-title {
    width: fit-content;
  }
  .second-name {
    font-size: 16px;
    padding-bottom: 5px;
  }

  .strength,
  .value,
  .hobby {
    gap: 10px;
    width: 85%;
    top: 0;
    left: 30px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .strength {
    left: 10px;
  }

  .value {
    left: 500px;
  }

  .hobby {
    left: 630px;
  }
}

/* スキル */
.skill {
  margin-top: 250px;
}

.design-typ,
.coding-typ {
  font-size: 32px;
}

.design-typ {
  color: #d0a0b6;
}

.coding-typ {
  color: #588bb4;
}
.skill-wrap {
  display: flex;
  justify-content: center;
  gap: 115px;
  margin-top: 100px;
}

.skill-name {
  display: flex;
  align-items: center;
  gap: 30px;
}

.skill-name img {
  width: 95px;
  transition:
    1.05s ease,
    filter 0.5s ease;
}

.design,
.coding {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

@media (max-width: 1024px) {
  .skill {
    margin-top: 100px;
  }

  .design-typ,
  .coding-typ {
    font-size: 20px;
  }

  .skill-wrap {
    gap: 50px;
  }

  .skill-name img {
    width: 85px;
  }

  .skill-text h4 {
    font-size: 18px;
  }

  .skill-text p {
    font-size: 14px;
  }

  .design,
  .coding {
    gap: 20px;
  }

  .skill-text {
    gap: 5px;
  }
}

@media (max-width: 768px) {
  .skill {
    margin-top: 100px;
  }

  .design-typ,
  .coding-typ {
    font-size: 20px;
  }

  .skill-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    padding-left: 2rem;
  }

  .skill-name img {
    width: 65px;
  }

  .skill-text h4 {
    font-size: 18px;
  }

  .skill-text p {
    font-size: 12px;
  }

  .design,
  .coding {
    gap: 20px;
  }

  .skill-text {
    gap: 5px;
  }
}

/* ツール */
.tool-icon {
  display: flex;
  gap: 55px;
  justify-content: center;
  margin-top: 100px;
}

.tool-icons {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.tool-icons img {
  width: 150px;
}

@media (max-width: 1024px) {
  .tool-icon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 3rem 7rem;
    font-size: 14px;
  }

  .tool-icons img {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .tool-icon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 30px;
    font-size: 12px;
  }

  .tool-icons img {
    width: 80px;
  }

  .tool-icons {
    gap: 1rem;
  }
}

/* ---------------------------ポートフォリオ----------------------- */
.product img {
  width: 1080px;
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.product-text {
  font-size: 18px;
  width: 1080px;
  line-height: 1.6;
  margin-bottom: 200px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 auto;
  width: 65%;
}

.detail {
  display: flex;
  gap: 30px;
  padding: 25px;
  justify-content: center;
  border-bottom: solid 1px #d0a0b6;
}

.detail-title {
  font-size: 18px;
  font-weight: bold;
  width: 200px;
}

.detail-text {
  font-size: 16px;
  width: 70%;
}

th {
  text-align: left;
  padding-right: 30px;
  font-weight: 400;
}

.return a {
  font-size: 20px;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  margin: 7rem;
  text-decoration: none;
}
.return a:hover {
  color: #d0a0b6;
}

/* スライダー */
.slider-left {
  display: flex;
  gap: 50px;
  padding: 20px;
  width: max-content;
}

.slider img {
  width: 500px;
}

.slider {
  width: 100%;
  overflow: hidden;
  margin-bottom: 100px;
}

.slider-left {
  animation: flow 30s linear infinite;
}

@keyframes flow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 15px));
  }
}

@media (max-width: 1024px) {
  .product img {
    width: 80%;
  }

  .product {
    gap: 50px;
  }

  .product-text {
    font-size: 14px;
    line-height: 1.6;
    width: 80%;
    margin-bottom: 7rem;
  }

  .portfolio-grid {
    width: 80%;
  }
  .detail {
    flex-direction: column;
    gap: 1rem;
  }

  .detail-text {
    font-size: 14px;
    width: 100%;
    line-height: 1.6;
  }

  .return a {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .product img {
    width: 80%;
  }

  .product {
    gap: 50px;
  }

  .product-text {
    font-size: 12px;
    line-height: 1.5;
    width: 80%;
    margin-bottom: 80px;
  }

  .portfolio-grid {
    width: 80%;
  }
  .detail {
    flex-direction: column;
    gap: 1rem;
  }

  .detail-text {
    font-size: 12px;
    width: 100%;
    line-height: 1.6;
  }

  .return a {
    font-size: 16px;
  }
}

/* LP制作 */
.lp-mock {
  margin-bottom: 100px;
}
.lp-preview {
  width: 375px;
  height: 667px;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 7rem auto 0;
  border: 1px solid #ddd;
  border-radius: 20px;
}

.lp-preview img {
  display: block;
  width: 100%;
  height: auto;
}

/* バナー制作 */
.banner-mock {
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fffafa;
  width: 100%;
  height: 600px;
}

.banner-mock img {
  width: 509px;
  height: 509px;
}

@media (max-width: 1024px) {
  .banner-mock {
    height: 550px;
  }

  .banner-mock img {
    width: 50%;
    height: auto;
  }

  .lp-mock img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .banner-mock {
    height: 350px;
  }

  .banner-mock img {
    width: 70%;
    height: auto;
  }

  .lp-mock img {
    width: 100%;
  }
}

/* ----------------------WORK------------------------- */
.work-grid img {
  width: 500px;
  transition:
    transform 1.05s ease,
    filter 0.5s ease;
}

.work-grid img:hover {
  transform: scale(1.08);
  filter: brightness(0.8);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  padding-top: 10rem;
  text-align: center;
}

.grid-title {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  gap: 15px;
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .work-grid {
    gap: 1.5rem;
  }
  .work-grid img {
    width: 350px;
  }

  .grid-title {
    font-size: 14px;
    gap: 10px;
  }

  .grid-title .format {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .work-grid img {
    width: 300px;
  }

  .work-grid {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 5rem;
  }

  .grid-title {
    font-size: 12px;
    gap: 10px;
  }

  .grid-title .format {
    font-size: 14px;
  }
}

/* --------------------お問い合わせ -----------------------*/
.message {
  font-size: 28px;
  text-align: center;
  line-height: 1.8;
}

.make-plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10rem auto 0;
  border: solid 1px #d0a0b6;
  width: 75%;
  padding: 3rem 0;
}

.plan-title {
  text-align: center;
  font-size: 32px;
}

.plan-title h3 {
  padding: 20px;
}

.plan-all {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 30px;
}

.plan-all h4 {
  font-size: 28px;
}

.make-plan p,
.make-plan a {
  font-size: 20px;
}

.make-plan p {
  padding: 20px;
}

.plan-all p {
  padding: 0;
  font-size: 18px;
}

.make-plan a {
  text-decoration: none;
  transition: 0.5s;
  padding: 30px;
  border-bottom: solid 1px #d0a0b6;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.make-plan a:hover {
  color: #d0a0b6;
}

.contact-me p {
  text-align: center;
}

.send-mail {
  font-size: 30px;
  text-align: center;
  margin-top: 30px;
}
.contact-me {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 10rem auto 0;
  border: solid 1px #d0a0b6;
  width: 70%;
  padding: 30px;
}

.mail-cta {
  background-color: #d0a0b6;
  width: 40%;
  margin: 30px auto;
  padding: 10px 20px;
  border-radius: 15px;
  transition: 0.5s;
  text-decoration: none;
  color: #ffffff;
  font-size: 28px;
  text-align: center;
}
.mail-cta:hover {
  background-color: #bcd0bd;
}

.mail-cta a {
  font-size: 32px;
  text-decoration: none;
  color: #ffffff;
}

.fin {
  margin: 17rem auto 10rem;
}
.fin p {
  font-family: "Herr Von Muellerhoff", "Noto Serif JP", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 42px;
  text-align: center;
  padding: 10px;
  letter-spacing: 0.1em;
}

.sns-links {
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 2rem;
}

.sns-links a {
  color: #d0a0b6;
  font-size: 60px;
  text-decoration: none;
  transition: 0.3s;
}

.sns-links a:hover {
  color: #bcd0bd;
  transform: scale(1.1);
}

.plan-title p {
  font-size: 20px;
  margin-top: 5px;
}

@media (max-width: 1024px) {
  .make-plan .skill-name h4 {
    font-size: 20px;
  }

  .make-plan .skill-name p {
    font-size: 16px;
  }

  .plan-title p {
    font-size: 18px;
  }

  .plan-title img {
    width: 90%;
  }

  .plan-title h3 {
    font-size: 28px;
  }

  .contact-me p {
    font-size: 12px;
  }

  .mail-cta a,
  .send-mail p {
    font-size: 24px;
  }

  .fin {
    margin: 5rem auto;
  }

  .fin p {
    font-size: 32px;
  }

  .make-plan p,
  .make-plan a {
    font-size: 16px;
    padding: 10px;
  }

  .plan-all p {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .message {
    font-size: 16px;
  }

  .plan-title {
    font-size: 20px;
  }

  .plan-title h3 {
    padding: 10px;
    font-size: 24px;
  }

  .plan-title img {
    width: 90%;
  }

  .plan-all {
    grid-template-columns: repeat(1, 1fr);
  }

  .plan-all h4 {
    font-size: 14px;
  }

  .plan-all .skill-name p,
  .make-plan a,
  .make-plan p {
    font-size: 12px;
  }

  .send-mail p,
  .mail-cta a,
  .fin p {
    font-size: 18px;
  }

  .mail-cta {
    width: 100%;
    font-size: 18px;
  }

  .contact-me {
    border: none;
    width: 90%;
    margin-top: 50px;
  }

  .fin {
    margin: 5rem 1rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 900px) {
  .mail-cta {
    font-size: 22px;
    width: 80%;
  }
}

/* -------------------コンセプト---------------------- */
.concept-message {
  text-align: center;
  font-size: 20px;
  line-height: 3;
  letter-spacing: 0.1em;
}

.about-goenn {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin: 13em auto 0;
  width: 80%;
}
.goenn-typ h3,
.about-tell-typ h3,
.make-process h3 {
  font-size: 24px;
  padding: 15px;
}

.goenn-typ p,
.about-tell-typ p {
  border-top: solid 1px #d0a0b6;
  width: fit-content;
  padding: 15px;
  line-height: 1.8;
}

.goenn-typ,
.about-tell-typ {
  width: 30%;
}

.tell-figure,
.process-figure {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 50px;
}

.tell-figure img,
.process-figure img {
  width: 120px;
}

.goenn-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.goenn-figure p {
  font-size: 20px;
  border: solid 1px #d0a0b6;
  background-color: #fffafa;
  border-radius: 10px;
  padding: 18px 40px;
  margin-top: 50px;
}

.about-tell,
.make-process {
  width: 80%;
  margin: 100px auto;
}

.tell-icons,
.process-typ {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.tell-icons p {
  font-size: 14px;
}

.tell-point {
  display: flex;
  gap: 40px;
  align-items: center;
  border: solid 1px #d0a0b6;
  border-radius: 15px;
  margin: 50px 0;
  padding: 15px;
  width: 40%;
}

.process-typ h4 {
  font-size: 28px;
  color: #d0a0b6;
}

.process-typ h5 {
  font-size: 20px;
}

.process-typ p {
  font-size: 14px;
}

.make-process h3 {
  border-bottom: solid 1px #d0a0b6;
  width: fit-content;
}
@media (max-width: 1024px) {
  .about-goenn {
    flex-direction: column;
    align-items: center;
  }
  .goenn-typ {
    width: 100%;
  }

  .about-tell-typ {
    width: 100%;
  }

  .tell-figure img {
    width: 80px;
  }

  .tell-icons h4 {
    font-size: 14px;
  }

  .tell-icons p {
    font-size: 12px;
  }

  .tell-point {
    width: 80%;
  }

  .tell-point li {
    font-size: 14px;
  }

  .process-typ img {
    width: 80px;
  }

  .process-typ h4 {
    font-size: 24px;
  }

  .process-typ h5 {
    font-size: 14px;
  }

  .process-typ p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .concept-message {
    font-size: 14px;
  }

  .about-goenn {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .goenn-figure img {
    width: 100%;
  }

  .goenn-typ {
    width: 100%;
  }
  .about-tell-typ {
    width: 100%;
  }

  .goenn-figure p {
    font-size: 14px;
  }

  .goenn-typ h3,
  .about-tell-typ h3,
  .make-process h3 {
    font-size: 18px;
    padding: 10px;
  }

  .goenn-typ p,
  .about-tell-typ p {
    font-size: 12px;
  }

  .tell-figure img,
  .process-figure img {
    width: 80px;
  }

  .tell-figure,
  .process-figure {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .tell-icons,
  .process-typ {
    gap: 5px;
  }

  .tell-icons h4,
  .process-typ h4 {
    font-size: 16px;
  }

  .tell-icons p,
  .process-typ p {
    font-size: 12px;
  }

  .tell-point {
    width: 100%;
    font-size: 12px;
  }

  .process-typ h4 {
    font-size: 20px;
  }

  .process-typ h5 {
    font-size: 16px;
  }

  .process-typ p {
    font-size: 12px;
  }

  .make-process h3 {
    width: 100%;
  }
}

/* 背景装飾 */
.deco,
.photo {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.paint-15 {
  top: 1080px;
  left: 93px;
}

.paint-16 {
  top: 1170px;
  left: 1002px;
  width: 700px;
}

.paint-25 {
  top: 2480px;
  left: -250px;
  width: 60%;
}

.paint-26 {
  top: 2700px;
  left: 900px;
  width: 50%;
}
.photo-1 {
  width: 317px;
  left: 924px;
  top: 1100px;
}

.photo-2,
.photo-3 {
  width: 250px;
}

.photo-2 {
  left: 183px;
  top: 1460px;
}

.photo-3 {
  left: 400px;
  top: 1690px;
}

@media (max-width: 768px) {
  .photo-1,
  .photo-2,
  .photo-3 {
    display: none;
  }
}

@media (max-width: 1024px) {
  .photo-1,
  .photo-2,
  .photo-3 {
    display: none;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .photo-1 {
    left: 730px;
  }

  .photo-2 {
    left: 20px;
  }

  .photo-3 {
    left: 200px;
  }
}

#sakura-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.sakura {
  position: absolute;
  top: -30px;
  width: 20px;
  height: 20px;
  background-image: url("../images/sakura_bg.png");
  background-size: contain;
  background-repeat: no-repeat;

  animation:
    fall linear forwards,
    sway ease-in-out infinite alternate;
}

@keyframes fall {
  to {
    transform: translateY(110vh) rotate(360deg);
  }
}

@keyframes sway {
  from {
    margin-left: -30px;
  }

  to {
    margin-left: 30px;
  }
}
