:root {
  --primary : #1d4ed8;
 /* --primary-light : rgba(37,99,235,0.05);*/
  --primary-light : #EFF6FF;


  --text : #1e293b;
  --text-light : #64748b;
  --gray : #d9dfea;
  --gray-dark: #888;

  --white : #FFFFFF;
  --white-light : #f8fafc;
  --blue-white : #F5F7FF;
  --yellow : #fef3c7;
  --bright-yellow : #fef9c3;
  --yellow-light :#F7F5E9; 


  --container-width : 1200px;
  --section-padding : 80px 20px;
  --section-margin : 0 auto;
  --section-border: #ddcb6e;

  --shadow : 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-light: 0 8px 20px rgba(0,0,0,0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  gap: 0;
  font-family: "Noto Sans JP" , sans-serif;
  color: var(--text);
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease,
  transform 0.6s ease;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

section {
  width: 100%;
  padding: var(--section-padding);
}

.all-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  gap: 30px;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

p {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.p-blue {
  color: var(--primary);
  font-weight:bold;
}

.btn {
  color: var(--white);
  font-weight: 500;
  text-align: center;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 16px 30px;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18),
  0 0 0 8px rgba(254, 243, 199, 0.55);
  transition: transform 0.3s ease,
  opacity 0.3s ease;

  position: relative;
  isolation: isolate;
}
.btn:hover {
  background: var(--yellow);
  color: var(--primary);
  transform: translateY(-4px);
}
 

.btn-nav-gap {
  display: flex;
  align-items: center;
  gap: 35px;
}


.header {
  display: flex;
  justify-content: space-between;
  padding: 15px 10px 10px;
}

.logo {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-favicon {
  width: 40px;
  height: 40px;
  margin: 10px;
}
.header-favicon img {
  border-radius: 20px;
}

.cocoweb-studio {
  font-size: 24px;
}

.logo-company {
  font-size: 14px;
}
.sp-onry {
  display: none;
}

.hamburger {
  cursor: pointer;
  z-index: 100;
}

.hamburger span {
  display: block;
  background: #000;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px,-5px);
}

.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 60%;
  height: 100vh;
  background: var(--white);
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
}

.nav.active {
  right: 0;
}

.nav ul {
  list-style: none;
  text-align: center;
}

.nav li {
  margin: 20px 0;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 50;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}


body.no-scroll {
  overflow: hidden;
}

/*=========セクション===========*/

/*メインセクション*/

.hero {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  margin: var(--section-margin);
  padding: 80px 0;
  gap: 40px;
  background: linear-gradient(
  to bottom,
  rgba(37,99,235,0.15) 0%,
  rgba(0,0,0,0.45) 100%
  ),
  url(images/hero.webp);
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .all-container {
  margin-right: auto;
}
.hero-content {
    max-width: var(--container-width);
}

.hero h1,.hero p {
  text-align: left;
}

.hero a {
  text-decoration: none;
}

.hero p {
  text-align: left;
  line-height: 1.8;
  font-size: x-large;
}

.a-btn-gap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 40px;
  padding: 20px 0;
}

/*Aboutセクション*/

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  background: var(--primary-light);
}

.about-top {
  margin: 20px 70px;
  position: relative;
}
.about-top::before {
  content: "";
  position: absolute;

  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #d6e4f3;
  opacity: 0.5;

  top: -15px;
  left: -20px;

  z-index: -1;
}
.about-top::after {
  content: "";
  position: absolute;

  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #d6e4f3;
  opacity: 0.5;

  bottom: -15px;
  right: -50px;

  z-index: -1;
}
.about-h2-border {
  border-bottom: dotted 3px #d6e4f3;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3 , 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.about-container {
  max-width: 250px;
  width: 100%;
  justify-self: center;

  margin: 0 auto;
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);

  position: relative;
}
 .about-container::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 30px;
    background: #e8ddc4;

    top: 0;
    left: 10px;
    transform: rotate(-5deg);
    opacity: 0.9;
    border-radius: 2px;
  }
  .about-container:nth-child(odd) {
    transform: rotate(-1deg)
    translateX(-8px);
    margin-right: 20px;
  }
  .about-container:nth-child(even) {
    transform: rotate(1deg)
    translateX(8px);
    margin-left: 20px;
  }

.container-p {
  color: var(--text);
  background: #e0f2fe;
  padding: 20px 28px;
  border-radius: 50px 60px 45px 55px;
}
.about-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}
.about p {
  font-size: 20px;
  margin-bottom: 20px;
}
.about-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  background: var(--primary);
  color: var(--white);
  border-radius: 20px;
}
.about-footer strong {
  color: #d97706;
}

/*Lossセクション*/

.loss {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 50px;
  background: var(--white);
}
.loss-top {
  gap: 20px;
  margin: 70px 20px;
  position: relative;
}
.loss-h2-border {
  border-bottom: dotted 3px #d6e4f3;
}
.loss-top::before {
  content: "";
  position: absolute;

  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #eaf3ff;
  opacity: 0.45;

  left: -5px;
  top: -35px;

  z-index: -1;
}
.loss-top::after {
  content: "";
  position: absolute;

  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #d6e4f3;
  opacity: 0.45;

  right: -5px;
  bottom: -35px;

  z-index: -1;
}

.loss-grid {
  display: grid;
  grid-template-columns: repeat(3 , 1fr);
  gap: 20px;
  margin: 70px auto;
}

.loss-container {
  max-width: 250px;
  width: 100%;
  justify-self: center;

  margin: 0 auto;
  padding: 20px;
  border-radius: 20px;

  box-shadow: var(--shadow-light);
  position: relative;
}
.loss-container::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 30px;
    background: #e8ddc4;

    top: 0;
    left: 10px;
    transform: rotate(-5deg);
    opacity: 0.9;
    border-radius: 2px;
  }/*
  .loss-container:nth-child(odd) {
    transform: rotate(-1deg)
    translateX(-8px);
    margin-right: 20px;
  }
  .loss-container:nth-child(even) {
    transform: rotate(1deg)
    translateX(8px);
    margin-left: 20px;
  }*/
.loss-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}
.loss-p {
  text-align: center;

  background: var(--yellow-light);
  border-radius: 30px;
  font-size: 20px;
  padding: 15px 25px;
  margin-bottom: 20px;
}
.loss-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  padding: 12px 0;
  background: var(--primary);
  color: var(--white);
  border-radius: 20px;
}


/*Worksセクション*/

.works {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  background: var(--white);
  box-shadow: var(--shadow-light);
}
.section-divider {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--section-border);
  margin: 0 auto 48px;
  border-radius: 999px;
}

.works h2 {
  color: var(--primary);
}
.works h3 {
  width: 100%;
  text-align: left;
  margin-left: 30px;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-weight: 700;
  color: #252f42;
}
.works-p {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0;
  margin: 20px 0;
  gap: 40px;
}

.works-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 0;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  position: relative;
}

.works-tag {
  position: absolute;
  top: 16px;
  left: 16px;

  display: inline-block;
  padding: 8px 18px;

  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}
.web-corporate {
  background: #5b6f8f;
}
.cafe-corporate {
  background: #d8c9a4;
}
.salon-corporate {
  background: #7fa89b;
}

.works-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.container-divider {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--section-border);
  margin: 0 auto 48px;
  border-radius: 999px;
}

.project {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a8a8a;
  font-weight: 600;
}

.container-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 30px;
}

.container-bottom-left {
  font-size: 10px;
  text-align: left;
  margin-left: 10px;
  color: var(--text-light);
}
.container-bottom-right {
  font-size: 20px;
  text-align: right;
  margin-right: 10px;
  color: var(--text-light);
}

.works-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 60px 0;
}

.works-bottom-p {
  font-size: 14px;
  color: var(--gray-dark);
}






/*Strengthセクション*/

.strength {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  background: var(--white);
}

.vice-title {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888;
}

.strength h2 {
  color: var(--primary);
}

.strength-grid {
  display: grid;
  grid-template-columns: 1fr;
  padding: 30px;
  margin: 40px auto;
  gap: 40px;
}

.strength-container {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
}
.strength-container:last-child{
  border-bottom: none;
}
.strength-flex {
  flex: 2;
}
.strength-img {
  flex: 1;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.strength-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  }
  .strength-heading::before {
  content: "";
  width: 6px;
  height: 56px;
  background: var(--primary);
  border-radius: 999px;
  }


/*Serviceセクション*/

.service {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 50px;
}

.service-top-3 {
  font-size: 50px;
  color: var(--section-border);
}

.service-vice-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;/*
  color: #888;*/
  color: var(--section-border);
}
.service-vice-title::before,.service-vice-title::after {
  content: "";
  width: 20px;
  height: 1px;
  margin: 0 5px;
  background: var(--section-border);
}

.service h2 {
  color: var(--text);
  margin: 60px;
  font-size: 36px;
  letter-spacing: 0.25em;
}
.service h2 br {
  display: none;
}
.service h3 {
  color: var(--gray);
  font-size: 180px;
  font-weight: 400;
  opacity: 0.8;
  margin: 0;

  font-family: "Cormorant Garamond";
  opacity: 0.55;
}
.service h4 {
  font-size: 28px;
}

.service-top-p {
  width: 100%;
  text-align: center;
}
.service-container-p {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 480px;
}

.service-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 0 60px;
  margin-bottom: 50px;
}

.service-container {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 400px 1fr;
  width: 100%;
  height: auto;
  min-height: 240px;
  padding: 30px 20px;
  gap: auto;
  border-bottom: solid 1px var(--gray);
  justify-self: center;
  
  position: relative;
}
.service-container-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 50px;
}
.service-container:last-child {
  border-bottom: none;
}

.service-container-middle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0 14px;
}
.service-container-gold-border {
  display: block;
    width: 2px;
    height: 150px;
    background: var(--section-border);
    margin: 0 auto ;
    border-radius: 999px;
}

.reason-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 50%;
  /*
  background: #f8f6ef;*/
}
.reason-icon svg {
  width: 70px;
  height: 70px;
  color: var(--section-border);
}

.service-container-right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}


.service-bottom-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;

  text-decoration: none;
  color: var(--text);

  padding: 24px;
  border-radius: 12px;
  background: #f7f9fc;

  transition: 0.3s;
}
.service-bottom-link svg {
  width: 26px;
  height: 26px;
  margin-right: 5px;
  color: var(--section-border);
}
.service-bottom-link:hover {
  transform: translateY(-2px);
  background: var(--yellow);
  color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-light);
}



/*Flowセクション*/

.flow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 50px;
  background: var(--white);
}
.flow h2 {
  color: var(--text);
  margin-bottom: 80px;
}
.flow h3 {
  padding: 30px;
  color: var(--primary);
}

.flow-top-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-dark);
}
.flow-top-flow::before,.flow-top-flow::after {
  content: "";
  width: 20px;
  height: 1px;
  margin: 0 10px;
  background: var(--gray);
}

.flow-top-p {
  margin-bottom: 80px;
}
.flow-top-p br {
  display: none;
}

.flow-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flow-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 10px;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);

  position: relative;
  transition: 0.3s;
}
.flow-container:hover {
  transform: translateY(-3px);
}

.flow-container::after {
  content: "";
  position: absolute;

  top: 0;
  right: 0;

  width: 24px;
  height: 24px;

  background: #EFF6FF;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);

  clip-path: polygon(0 0,100% 0,100% 100%);

  transition: all 0.3s ease,width 0.3s ease,height 0.3s ease;
}
.flow-container:hover::after {
  width: 34px;
  height: 34px;
}
.step {
  display: inline-flex;

  width: 34px;
  height: 34px;

  justify-content: center;
  align-items: center;

  border-radius: 50%;

  background: var(--primary);
  color: var(--white);

  margin-right: 10px;
}

.flow-container p {
  font-size: 14px;
}
.flow-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
}
.arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: var(--primary);
}

.flow-list {
  list-style: none;
  padding: 0;
}
.flow-list li {
  margin-bottom: 8px;
}
.flow-list li::before {
  content: "✔︎";
  color: var(--section-border);
  margin-right: 8px;
}

/*FAQセクション*/

.faq {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 50px;
}

.faq-top {
  color: var(--text);
  font-size: 34px;
  margin-bottom: 60px;
}

.faq-top-border {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--section-border);
  margin: 0 auto 80px;
  border-radius: 999px;
}

 .faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin: 20px;
 }

 .faq-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  border-radius: 8px;

  flex: 1;
  gap: 10px;
  padding:  20px 0;
  justify-self: center;
 }

 .faq-question {
  width: 100%;
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  font-size: 18px;

  box-shadow: var(--shadow-light);
 }
 .faq-answer {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  overflow: hidden;
  max-height: 0;

  border-bottom: 1px solid #e5e7eb ;
  transition: max-height 0.3s ease;

  border-radius: 12px;
  border-top: 1px solid #eee;
}
.faq-answer.open {
  max-height: 400px;
  padding: 20px;
}

.faq-icon {
  transition: 0.3s;
}
.faq-icon svg {
  width: 18px;
  height: 18px;
}

.faq-question.open .faq-icon {
  transform: rotate(180deg);
}

 .faq-question,
 .faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
 }
 .faq-question::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  text-align: center;
  color: var(--white);
  background:  var(--section-border);
  font-weight: bold;
  border-radius: 50%;
  margin-right: 8px;
 }
 .faq-answer::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-right: 30px;
  text-align: center;
  color: var(--white);
  background: var(--section-border);
  font-weight: bold;
  border-radius: 50%;
 }

 .faq-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
 }

 .faq-bottom-p {
  font-size: 14px;
  color: var(--gray-dark);
 }
 
 /*Formセクション*/
 
 ::placeholder {
   color: #94a3b8;
 }
 
 .contact {
   position: relative;
   padding-bottom: 120px;
 
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
 }
 .contact::after {
   content: "";
   position: absolute;
   left: 0;
   bottom: 0;
   width: 100%;
   height: 350px;
   background: url("images/wave.svg") no-repeat bottom center;
   background-size: cover;
   z-index: 10;
 }
 
  form {
   width: 100%;
 }

  .contact-form {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   padding: 50px;
   
   position: relative;
   z-index: 11;
   background: #FFFFFF;
   border-radius: 16px;
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
   width: 100%;
   max-width: 800px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px 50px;
    gap: 10px;
  }

  .form-group label {
    width: 100%;
    text-align: left;
  }
 
  .contact-form input,
  .contact-form textarea {
   width: 100%;
   box-sizing: border-box;
   padding: 16px;
   border: 1px solid #ccc;
   border-radius: 8px;
   transition: 0.3s;
  }
  .contact-form textarea {
   min-height: 100px;
   resize: vertical;
  }
 .step-number {
   color: var(--primary);
   margin-right: 8px;
 }
 
 input:focus,
 textarea:focus {
   outline: none;
   border-color: #2563ed;
   box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
 }
 
 
 .contact-form.btn {
   width: 100%;
 }
 
 .required-badge {
   display: inline-block;
   margin-left: 8px;
   padding: 2px 6px;
   background: #ef4444;
   color: #FFFFFF;
   border-radius: 4px;
   font-size: 12px;
   font-weight: bold;
 }
 
 .border {
   display: block;
   background: var(--primary);
   width: 100%;
   max-width: 100px;
   height: 2px;
   margin: 5px 0;
 }

 .contact-btn {
  color: var(--white);
  font-weight: 500;
  text-align: center;
  margin: 10px;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 16px 30px;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18),
  0 0 0 8px rgba(254, 243, 199, 0.55);
  transition: transform 0.3s ease,
  opacity 0.3s ease;
 }

.contact-btn:hover {
  color: var(--primary);
  background: var(--bright-yellow);
}


 /*Footerセクション*/

 .footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-top: 4px solid #fef3c7;

  background: #1e293b;
  color: var(--white-light);
 }

 .footer .all-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
 }

 .footer h3 {
  font-size: 40px;
  font-weight: 600;
  margin: 10px auto;
 }
 .footer h3 span {
  font-weight: 400;
  color: var(--yellow);
 }
 .catch-phrase {
  font-size: 14px;
 }

 .footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 70px auto;
 }
/*案件を取ったらアカウントを作る
 .footer-main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  gap: 40px;
  margin-top: 40px;

  background: var(--white-light);
  border-radius: 16px;
 }
 .footer-main a {
  text-decoration: none;
 }
 .icons {
  width: 70px;
  height: 70px;

  opacity: 0.8;
  transition: all 0.3s ease;
 }
 
.icons:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.08);
 }*/

 .footer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
}

.copyright {
  background: var(--text);
  color: #94a3b8;
  font-size: 14px;
}
