@charset "UTF-8";
/*-- foundationフォルダの中の_index.scss --*/
/*---------------------------------

 reset

---------------------------------*/
/*** The new CSS Reset - version 1.2.0 (last updated 23.7.2021) ***/
/* ブラウザのUAスタイルシートのすべてのスタイルを削除します、displayは除く */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

/* box-sizingの優先値 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  リストのスタイル（箇条書き・番号）を削除します
  normalize.cssで使用する場合
*/
ol,
ul {
  list-style: none;
}

/* 画像がコンテナを超えないようにするため */
img {
  max-width: 100%;
  vertical-align: top;
}

/* テーブルのセル間のスペースを削除します */
table {
  border-collapse: collapse;
}

/* Safariのtextarea要素のwhite-spaceプロパティを元に戻します */
textarea {
  white-space: revert;
}

/*** The new CSS Reset ***/
/*-- globalフォルダの中の_index.scss --*/
:root {
  --main-text-color: #222;
  --accent-text-color: #FFD900;
  --light-text-color: #fff;
  --accent-text-color-dark:#636363;
  scrollbar-gutter: stable;
}

body {
  color: var(--main-text-color);
}

body,
h1,
h2,
h3,
h4,
p,
a,
li,
summary,
address input {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--main-text-color);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  list-style: none;
}

h1 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  margin: 0;
}

h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0.25rem;
  margin: 0;
  color: var(--main-text-color);
  border-bottom: solid 2px #000;
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  h2 {
    letter-spacing: 0.1rem;
  }
}
h2::after {
  position: absolute;
  content: "";
  display: block;
  border-bottom: solid 2px #FFD900;
  bottom: -px;
  width: 50%;
}

h3 {
  position: relative;
  margin: 0 0 2rem;
  padding: 0.8rem 1rem;
  background-color: #333;
  color: var(--light-text-color);
  text-align: center;
  font-size: clamp(1rem, 3vw, 1.1rem);
  font-weight: 700;
}
@media (max-width: 768px) {
  h3 {
    padding: 0.4rem 1rem;
  }
}
h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #f5d400;
}

.container {
  margin: 0 auto;
  padding: 80px 20px;
}

html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

a:hover {
  cursor: pointer;
}

@media (max-width: 768px) {
  p {
    font-size: 14.4px;
  }
}
/*-- layoutフォルダの中の_index.scss --*/
.main-visual {
  width: 100%;
  height: 90vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .main-visual {
    height: clamp(420px, 75vh, 600px);
  }
}
.main-visual__media {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.main-visual__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .main-visual__slide {
    background-position: center center;
  }
}
.main-visual__slide--01 {
  background-image: url("/img/top1.jpg");
  animation: slide-animation-01 24s infinite;
}
.main-visual__slide--02 {
  background-image: url("/img/top2.jpg");
  animation: slide-animation-02 24s infinite;
}
.main-visual__slide--03 {
  background-image: url("/img/top3.jpg");
  animation: slide-animation-03 24s infinite;
}
.main-visual__Textwrap {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 6%;
  display: block;
  color: var(--light-text-color, #fff);
}
@media (max-width: 768px) {
  .main-visual__Textwrap {
    top: 60%;
  }
}
.main-visual__Textwrap p {
  color: inherit;
}
.main-visual__Textwrap .Text1 {
  font-weight: 600;
  font-size: clamp(1.5rem, 6.5vw, 4.8rem);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .main-visual__Textwrap .Text1 {
    line-height: 1.5;
  }
}
.main-visual__Textwrap .Text2 {
  font-size: 1.2rem;
  font-size: clamp(0.95rem, 6.5vw, 1.2rem);
}

.line-banner {
  position: absolute;
  right: 1%;
  bottom: -15%;
  transform: translateY(-60%);
  z-index: 20;
  width: 280px;
  padding: 20px 20px;
  background-color: #158b00;
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.line-banner > div {
  background-color: var(--light-text-color);
  border-radius: 28px;
  padding: 6px 10px;
  margin-bottom: 10px;
}
.line-banner strong {
  display: block;
  color: #158b00;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}
.line-banner > div span {
  display: block;
  margin-top: 0.2rem;
  color: #158b00;
  font-weight: 700;
}
.line-banner p {
  margin: 0 0 0.5rem;
  color: inherit;
  font-size: 0.9rem;
}
.line-banner > span {
  display: inline-block;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  margin-top: 5px;
  background-color: #ffd900;
  color: #158b00;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.line-banner:hover {
  transform: translateY(-60%) translateY(-5px);
  opacity: 0.92;
}
.line-banner:hover > span {
  transform: scale(1.05);
  background-color: #ffe45c;
}
.line-banner .line-banner__sp-text {
  display: none;
}

@media (max-width: 768px) {
  .line-banner {
    right: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 999;
    width: 48px;
    padding: 12px 6px;
    border-radius: 12px 0 0 12px;
  }
  .line-banner > div,
  .line-banner p,
  .line-banner .line-banner__pc-text {
    display: none;
  }
  .line-banner .line-banner__sp-text {
    display: inline-block;
    text-orientation: upright;
    padding: 0;
    margin: 0;
    background-color: transparent;
    color: #fff;
    font-size: 0.85rem;
    border-radius: 0;
    writing-mode: vertical-rl;
  }
  .line-banner .line-banner__line-text {
    display: inline-block;
    transform: translateX(0px);
  }
  .line-banner:hover {
    transform: translateY(-50%);
    opacity: 1;
  }
  .line-banner:hover .line-banner__sp-text {
    transform: none;
    background-color: transparent;
  }
}
@keyframes slide-animation-01 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    transform: scale(1.15);
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slide-animation-02 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
    transform: scale(1.1);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-animation-03 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
.message-section__inner {
  padding: 80px 0 80px;
  position: relative;
}
.message-section__image {
  width: 65%;
}
.message-section__image img {
  display: block;
  width: 80%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.message-section__text {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50%;
  background-color: rgba(99, 99, 99, 0.9);
  padding: 2.5rem 5rem;
  color: var(--light-text-color);
}
.message-section__text::after {
  content: "Beginning";
  position: absolute;
  right: 1rem;
  bottom: 0.25rem;
  font-size: 4.2rem;
  letter-spacing: 0.02em;
  color: var(--light-text-color);
  opacity: 0.25;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: italic;
}
.message-section__text p {
  font-weight: 400;
  margin: 0;
  color: inherit;
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.08em;
}
.message-section__text span {
  color: var(--accent-text-color);
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .message-section__inner {
    padding: 50px 0;
  }
  .message-section__image {
    width: 100%;
  }
  .message-section__image img {
    width: 90%;
    margin: 0 auto;
  }
  .message-section__text {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 85%;
    margin: -30px auto 0;
    box-sizing: border-box;
    padding: 2rem 1.3rem;
  }
  .message-section__text::after {
    right: 0.6rem;
    bottom: 0.2rem;
    font-size: clamp(2rem, 7vw, 3.5rem);
  }
  .message-section__text p {
    position: relative;
    z-index: 1;
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
    line-height: 1.9;
    letter-spacing: 0.05em;
  }
}
.service > div:first-child {
  width: 80%;
  margin: 0 auto 40px;
}
.service > div:first-child p {
  line-height: 0;
}
.service > div:last-child {
  display: flex;
  width: 100%;
}
.service > div:last-child a {
  position: relative;
  display: block;
  width: 50%;
  height: 450px;
  overflow: hidden;
  color: var(--light-text-color);
}
.service > div:last-child a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.45);
}
.service > div:last-child a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.service > div:last-child a:hover img {
  transform: scale(1.08);
}
.service > div:last-child a > div {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
}
.service > div:last-child a > div p {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  color: inherit;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.service > div:last-child a > div p::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 50%;
  bottom: -0.8rem;
  transform: translateX(-50%);
  width: 100%;
  background-color: #fff;
}
.service > div:last-child a > div span {
  position: relative;
  display: block;
  letter-spacing: 0.14em;
}

@media screen and (max-width: 767px) {
  .service > div:first-child {
    width: 90%;
    margin: 0 auto 30px;
  }
  .service > div:first-child p {
    line-height: 1;
  }
  .service > div:last-child {
    flex-direction: column;
  }
  .service > div:last-child a {
    width: 100%;
    height: 280px;
  }
  .service > div:last-child a > div {
    width: 85%;
  }
  .service > div:last-child a > div p {
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 4vw, 1.2rem);
    letter-spacing: 0.08em;
  }
  .service > div:last-child a > div p::after {
    bottom: -0.6rem;
  }
  .service > div:last-child a > div span {
    font-size: 0.9rem;
    line-height: 1.7;
    letter-spacing: 0.08em;
  }
}
.about {
  padding: 60px 0 0 0;
}
.about > div:first-child {
  width: 80%;
  margin: 0 auto 40px;
}
.about > div:first-child > p {
  line-height: 0;
}
.about > div:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 8%;
  width: 80%;
  max-width: 1100px;
  margin: 0 auto;
}
.about > div:nth-child(2) > div:first-child {
  width: 49%;
}
.about > div:nth-child(2) > div:first-child p {
  margin: 0 0 1.5rem;
}
.about > div:nth-child(2) > div:first-child p span {
  display: inline-block;
  margin: 0.5rem 0;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--main-text-color);
  font-size: 1.2rem;
  font-weight: 700;
}
.about > div:nth-child(2) > div:first-child h4 {
  width: 80%;
  margin: 0 auto 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background-color: var(--accent-text-color);
  text-align: center;
  font-weight: 700;
}
.about > div:nth-child(2) > div:first-child ul {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0.5rem 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
}
.about > div:nth-child(2) > div:first-child ul li {
  color: var(--main-text-color);
  font-size: 0.95rem;
}
.about > div:nth-child(2) > div:last-child {
  width: 50%;
}
.about > div:nth-child(2) > div:last-child img {
  display: block;
  width: 100%;
  height: auto;
}
.about > div:nth-child(3) {
  margin-top: 80px;
  padding: 60px 0 90px;
  background-image: linear-gradient(rgba(80, 80, 80, 0.65), rgba(80, 80, 80, 0.65)), url("/img/reason_back.jpg");
  background-size: 110%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.about > div:nth-child(3) > div {
  width: 80%;
  max-width: 1100px;
  margin: 0 auto;
}
.about > div:nth-child(3) h3 {
  width: 46%;
  margin: 0;
}
.about > div:nth-child(3) > ul {
  display: flex;
  justify-content: center;
  gap: 5%;
  width: 80%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  margin-top: 40px;
}
.about > div:nth-child(3) > ul .fade-up:nth-child(1) {
  transition-delay: 0.1s;
}
.about > div:nth-child(3) > ul .fade-up:nth-child(2) {
  transition-delay: 0.25s;
}
.about > div:nth-child(3) > ul .fade-up:nth-child(3) {
  transition-delay: 0.4s;
}
.about > div:nth-child(3) > ul > li {
  width: 28%;
  min-height: 340px;
  padding: 2.5rem 1.8rem 2rem;
  border-radius: 28px;
  background-color: #fff;
  text-align: center;
}
.about > div:nth-child(3) > ul > li img {
  display: block;
  width: 90%;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}
.about > div:nth-child(3) > ul > li h4 {
  margin: 0 0 1.3rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.about > div:nth-child(3) > ul > li p {
  margin: 0;
  font-size: 0.95rem;
}

@media screen and (max-width: 767px) {
  .about {
    padding: 60px 0 0;
  }
  .about > div:first-child {
    width: 90%;
    margin: 0 auto 30px;
  }
  .about > div:nth-child(2) {
    flex-direction: column;
    gap: px;
    width: 90%;
    max-width: none;
  }
  .about > div:nth-child(2) > div:first-child {
    width: 100%;
  }
  .about > div:nth-child(2) > div:first-child p {
    margin: 0 0 1.2rem;
    line-height: 1.8;
  }
  .about > div:nth-child(2) > div:first-child p span {
    margin: 0.4rem 0;
    font-size: 1rem;
  }
  .about > div:nth-child(2) > div:first-child h4 {
    width: 80%;
  }
  .about > div:nth-child(2) > div:first-child ul {
    grid-template-columns: repeat(3, auto);
    gap: 0.5rem 1.2rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  .about > div:nth-child(2) > div:first-child ul li {
    font-size: 0.9rem;
  }
  .about > div:nth-child(2) > div:last-child {
    width: 100%;
  }
  .about > div:nth-child(3) {
    margin-top: 60px;
    padding: 50px 0 60px;
    background-attachment: scroll;
    background-position: center center;
  }
  .about > div:nth-child(3) > div {
    width: 90%;
  }
  .about > div:nth-child(3) h3 {
    width: 100%;
  }
  .about > div:nth-child(3) > ul {
    flex-direction: column;
    gap: 1.4rem;
    width: 90%;
    margin-top: 2rem;
  }
  .about > div:nth-child(3) > ul > li {
    width: 80%;
    margin: 0 auto;
    min-height: auto;
    box-sizing: border-box;
    padding: 0.5rem 1.4rem 1.5rem;
    border-radius: 22px;
  }
  .about > div:nth-child(3) > ul > li img {
    width: 80%;
    max-width: 280px;
    margin: 0 auto 1.2rem;
  }
  .about > div:nth-child(3) > ul > li h4 {
    margin: 0 0 1rem;
    font-size: 1.05rem;
  }
  .about > div:nth-child(3) > ul > li p {
    font-size: 0.9rem;
    line-height: 1.8;
  }
}
.company {
  padding: 80px 0;
  background-color: #F7F7F7;
}
.company > div:first-child {
  width: 80%;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .company > div:first-child {
    width: 90%;
    margin: 0 auto 30px;
  }
}
.company > div:first-child > p {
  line-height: 0;
}
.company table {
  width: 80%;
  max-width: 1100px;
  margin: 0 auto;
  letter-spacing: 0.12em;
  font-size: clamp(0.95rem, 2vw, 1rem);
}

tr {
  border-bottom: 1px solid #bfbfbf;
}

th,
td {
  padding: 0.9rem 1.2rem;
  vertical-align: middle;
  color: var(--main-text-color);
}

th {
  width: 22%;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(0.85rem, 2vw, 1rem);
}

td {
  width: 78%;
}

iframe {
  width: 100%;
  height: 300px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-style: normal;
}

li {
  position: relative;
  line-height: 1.9;
}

/* スマホ */
@media screen and (max-width: 767px) {
  table {
    width: 100%;
    letter-spacing: 0.06em;
  }
  tr {
    display: block;
    padding: 1rem 0;
  }
  th,
  td {
    display: block;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  th {
    text-align: left;
    white-space: normal;
    margin-bottom: 0.5rem;
  }
  td {
    line-height: 1.8;
  }
  li {
    line-height: 1.8;
    font-size: 15.2px;
  }
}
/* 外枠：はみ出た画像を隠す */
.scroll-container {
  margin-top: 60px;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.scroll-container img {
  padding: 0 10px;
  width: 15%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .scroll-container img {
    width: 40%;
  }
}
.scroll-container {
  /* トラック：画像を横並びにしてアニメーションさせる */
}
.scroll-container .scroll-track {
  display: flex;
  animation: loop-anime 20s linear infinite;
}

/* アニメーションの定義 */
@keyframes loop-anime {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.contact {
  padding: 80px 0;
}
.contact > div:first-child {
  width: 80%;
  margin: 0 auto 40px;
}
.contact > div:first-child > p {
  line-height: 1;
}
.contact .contact__inner {
  width: 80%;
  max-width: 1100px;
  margin: 0 auto;
}
.contact .contact__inner > p {
  margin: 0 auto 35px;
  text-align: center;
  line-height: 2;
}
.contact .contact__inner > ul {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto 45px;
  padding: 0;
}
.contact .contact__inner > ul li {
  width: 350px;
}
.contact .contact__inner > ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1.2rem 1rem;
  max-width: 400px;
  color: var(--main-text-color);
  text-align: center;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.contact .contact__inner > ul a:hover {
  transform: translateY(-4px);
  opacity: 0.85;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
.contact .contact__inner > ul a img {
  display: block;
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  margin-right: 8px;
}
.contact .contact__inner > ul a span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.contact .contact__inner > ul li:nth-child(1) a {
  background-color: var(--accent-text-color);
  font-weight: 700;
}
.contact .contact__inner > ul li:nth-child(2) a {
  background-color: #111;
  color: var(--light-text-color);
}
.contact .contact__inner > ul li:nth-child(3) a {
  background-color: #168b18;
  color: var(--light-text-color);
}
.contact .blog-link {
  position: relative;
  display: block;
  width: 100%;
  height: 250px;
  margin: 0 auto;
  overflow: hidden;
  color: var(--light-text-color);
}
.contact .blog-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.45);
}
.contact .blog-link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.contact .blog-link:hover img {
  transform: scale(1.08);
}
.contact .blog-link > div {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}
.contact .blog-link p {
  margin: 0 0 0.5rem;
  color: inherit;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}
.contact .blog-link p:nth-child(2) {
  margin: 0;
  color: inherit;
  font-size: 0.95rem;
}

@media screen and (max-width: 767px) {
  .contact {
    padding: 50px 0;
  }
  .contact > div:first-child {
    width: 90%;
    margin: 0 auto 30px;
  }
  .contact .contact__inner {
    width: 90%;
  }
  .contact .contact__inner > p {
    margin: 0 auto 28px;
    text-align: left;
    line-height: 1.8;
    font-size: 0.95rem;
  }
  .contact .contact__inner > ul {
    flex-direction: column;
    gap: 0.8rem;
    margin: 0 auto 35px;
  }
  .contact .contact__inner > ul li {
    width: 100%;
  }
  .contact .contact__inner > ul a {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding: 1rem;
    font-size: 1rem;
    display: grid;
    grid-template-columns: 32px auto;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 8px;
         column-gap: 8px;
    min-height: 58px;
    line-height: 1;
  }
  .contact .contact__inner > ul a img {
    display: block;
    width: 28px;
    height: 28px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-right: 0;
    justify-self: center;
  }
  .contact .contact__inner > ul a span {
    width: 220px;
    display: inline-block;
    align-items: center;
    text-align: left;
    line-height: 1;
  }
  .contact .contact__inner > ul li:nth-child(1) a span {
    letter-spacing: 0.25rem;
    font-size: 1.1rem;
  }
  .contact .blog-link {
    height: 180px;
  }
  .contact .blog-link p {
    font-size: clamp(2rem, 10vw, 3.2rem);
    letter-spacing: 0.08em;
  }
  .contact .blog-link p:nth-child(2) {
    font-size: 0.85rem;
  }
}
/*-- componentフォルダの中の_index.scss --*/
.fade-up {
  transform: translateY(35px);
  transition: transform 1s ease;
  will-change: transform;
}

.fade-up.is-show {
  transform: translateY(0);
}

/*-- projectフォルダの中の_index.scss --*/
.footer-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.footer-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  filter: brightness(0.55);
}

.footer {
  position: relative;
  padding: 45px 0;
  background-color: #000;
  color: var(--light-text-color);
}
.footer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}
.footer > div > div {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.footer > div > div img {
  width: 50px;
  height: auto;
}
.footer p {
  margin: 0;
  color: inherit;
  letter-spacing: 0.08em;
}
.footer nav ul {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer nav a {
  color: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
  color: var(--light-text-color);
}
.footer nav a:hover {
  opacity: 0.6;
}
.footer > div > ul {
  display: flex;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer > div > ul a {
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer > div > ul a:hover {
  transform: translateY(-3px);
  opacity: 0.75;
}
.footer > div > ul img {
  display: block;
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 768px) {
  .footer-img {
    height: 140px;
  }
  .footer-img img {
    -o-object-position: center center;
       object-position: center center;
  }
  .footer {
    padding: 35px 0;
  }
  .footer > div {
    width: 90%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    text-align: center;
  }
  .footer > div > div {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  .footer > div > div img {
    width: 45px;
  }
  .footer p {
    font-size: 0.85rem;
    line-height: 1.7;
    letter-spacing: 0.06em;
  }
  .footer nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
  }
  .footer nav a {
    font-size: 0.8rem;
  }
  .footer > div > ul {
    justify-content: center;
    gap: 1rem;
  }
  .footer > div > ul img {
    width: 26px;
    height: 26px;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 80px;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.header__left {
  display: flex;
  align-items: center;
  padding: 0 20px 0 40px;
  background-color: var(--light-text-color);
  z-index: 1002;
}
.header__left a {
  text-decoration: none;
}
.header__left h1 {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: clamp(1.2rem, 1.2vw, 1.5rem);
  white-space: nowrap;
}
.header__left .symbol {
  width: 50px;
  height: auto;
  margin-right: 15px;
}
.header__right {
  background: transparent;
}

.global-nav {
  display: flex;
  align-items: center;
  height: 100%;
  background-color: var(--light-text-color);
}
.global-nav ul {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-nav li {
  height: 100%;
}
.global-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 clamp(8px, 1.2vw, 20px);
  color: var(--main-text-color);
  font-size: clamp(0.85rem, 1vw, 1rem);
  text-decoration: none;
  white-space: nowrap;
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 18px;
  width: calc(100% - 28px);
  height: 2px;
  background: linear-gradient(to right, var(--main-text-color) 0%, var(--main-text-color) 40%, var(--accent-text-color) 40%, var(--accent-text-color) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.global-nav a:hover {
  color: var(--accent-text-color-dark);
}
.global-nav a:hover::after {
  transform: scaleX(1);
}

.tell__number {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px clamp(16px, 2vw, 40px);
  background-color: var(--accent-text-color);
  white-space: nowrap;
}
.tell__number a {
  display: block;
  padding: 0;
  height: auto;
}
.tell__number a::after {
  display: none;
}
.tell__number p {
  margin: 0 0 0.2rem;
  font-size: 0.8rem;
  line-height: 1;
}
.tell__number__under {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.tell__number__under img {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
.tell__number__under span {
  font-size: 1.5rem;
  font-weight: 700;
}

.hamburger {
  display: none;
}

/* ハンバーガー */
@media screen and (max-width: 1086px) {
  .header {
    position: fixed;
    height: 64px;
  }
  .header__inner {
    background-color: var(--light-text-color);
  }
  .header__left {
    padding: 0 16px;
  }
  .header__left h1 {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
  }
  .header__left .symbol {
    width: 42px;
    margin-right: 10px;
  }
  .hamburger {
    position: relative;
    z-index: 1002;
    display: flex;
    width: 64px;
    height: 64px;
    padding: 0;
    border: none;
    background-color: var(--accent-text-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background-color: var(--main-text-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .header__right {
    position: fixed;
    top: 64px;
    right: 0;
    z-index: 1001;
    width: 100%;
    height: calc(100vh - 64px);
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header__right.is-active {
    opacity: 1;
    visibility: visible;
  }
  .global-nav {
    display: block;
    width: 82%;
    max-width: 360px;
    height: 100%;
    margin-left: auto;
    padding: 35px 24px;
    box-sizing: border-box;
    background-color: var(--light-text-color);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .header__right.is-active .global-nav {
    transform: translateX(0);
  }
  .global-nav ul {
    display: block;
    height: auto;
  }
  .global-nav li {
    height: auto;
    border-bottom: 1px solid #ddd;
  }
  .global-nav a {
    display: block;
    height: auto;
    padding: 1.1rem 0;
    font-size: 1rem;
  }
  .global-nav a::after {
    display: none;
  }
  .tell__number {
    height: auto;
    margin-top: 30px;
    padding: 1rem;
    justify-content: center;
  }
  .tell__number a {
    text-align: center;
  }
  .tell__number p {
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
  }
  .tell__number__under {
    justify-content: center;
  }
  .tell__number__under img {
    width: 28px;
    height: 28px;
  }
  .tell__number__under span {
    font-size: 1.2rem;
  }
}
.global-nav a {
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 700;
}

.page-visual {
  height: 450px;
  position: relative;
  background-image: url("/img/work-back01.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.page-visual > div {
  width: 280px;
  padding: 40px 55px;
  background-color: var(--light-text-color);
}
.page-visual span {
  margin: 0 0 0.8rem;
  color: var(--main-text-color);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
}
.page-visual p {
  margin: 0;
  color: #777;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .page-visual {
    height: 280px;
    background-position: center center;
  }
  .page-visual > div {
    width: auto;
    min-width: 180px;
    padding: 15px 26px;
    box-sizing: border-box;
  }
  .page-visual span {
    display: block;
    margin: 0 0 0.6rem;
    font-size: clamp(1.3rem, 6vw, 1.8rem);
    letter-spacing: 0.12em;
  }
  .page-visual p {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
  }
}
.service-detail {
  padding: 80px 0;
  background-color: #f7f7f7;
}
.service-detail > div:first-child {
  width: 80%;
  margin: 0 auto 40px;
}
.service-detail > div:first-child > p {
  line-height: 0;
}
.service-detail > div:nth-child(2) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6%;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto 70px;
}
.service-detail > div:nth-child(2) > div:first-child {
  width: 48%;
}
.service-detail > div:nth-child(2) > div:first-child h3 {
  display: inline-block;
}
.service-detail > div:nth-child(2) > div:first-child p {
  margin: 0 0 1.5rem;
  padding: 1.3rem 0;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  color: var(--main-text-color);
  font-size: 0.95rem;
  line-height: 2;
}
.service-detail > div:nth-child(2) > div:first-child ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-detail > div:nth-child(2) > div:first-child li {
  position: relative;
  padding-left: 1em;
  color: var(--main-text-color);
  font-size: 0.95rem;
}
.service-detail > div:nth-child(2) > div:first-child li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.service-detail > div:nth-child(2) > div:last-child {
  width: 46%;
}
.service-detail > div:nth-child(2) > div:last-child img {
  display: block;
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-detail > div:nth-child(3) {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
.service-detail > div:nth-child(3) h4 {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 35px;
  padding: 0 6rem;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
}
.service-detail > div:nth-child(3) h4::before, .service-detail > div:nth-child(3) h4::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5rem;
  height: 1px;
  background-color: var(--main-text-color);
}
.service-detail > div:nth-child(3) h4::before {
  left: 0;
}
.service-detail > div:nth-child(3) h4::after {
  right: 0;
}
.service-detail > div:nth-child(3) ul {
  display: flex;
  justify-content: center;
  gap: 4%;
  margin: 0;
  padding: 0;
}
.service-detail > div:nth-child(3) li {
  width: 46%;
}
.service-detail > div:nth-child(3) li .fade-up:nth-child(1) {
  transition-delay: 0.1s;
}
.service-detail > div:nth-child(3) li .fade-up:nth-child(2) {
  transition-delay: 0.25s;
}
.service-detail > div:nth-child(3) img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .service-detail {
    padding: 50px 0;
  }
  .service-detail > div:first-child {
    width: 90%;
    margin: 0 auto 30px;
  }
  .service-detail > div:first-child > p {
    line-height: 1;
  }
  .service-detail > div:nth-child(2) {
    flex-direction: column;
    gap: 30px;
    width: 90%;
    margin: 0 auto 50px;
  }
  .service-detail > div:nth-child(2) > div:first-child {
    width: 100%;
  }
  .service-detail > div:nth-child(2) > div:first-child h3 {
    display: block;
  }
  .service-detail > div:nth-child(2) > div:first-child p {
    margin: 0 0 1.2rem;
    padding: 1rem 0;
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .service-detail > div:nth-child(2) > div:first-child ul {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .service-detail > div:nth-child(2) > div:first-child li {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .service-detail > div:nth-child(2) > div:last-child {
    width: 100%;
  }
  .service-detail > div:nth-child(2) > div:last-child img {
    height: 220px;
  }
  .service-detail > div:nth-child(3) {
    width: 90%;
  }
  .service-detail > div:nth-child(3) h4 {
    margin: 0 auto 25px;
    padding: 0 3rem;
    font-size: 1.05rem;
  }
  .service-detail > div:nth-child(3) h4::before, .service-detail > div:nth-child(3) h4::after {
    width: 2.4rem;
  }
  .service-detail > div:nth-child(3) ul {
    flex-direction: column;
    gap: 1rem;
  }
  .service-detail > div:nth-child(3) li {
    width: 100%;
  }
  .service-detail > div:nth-child(3) img {
    width: 100%;
  }
}
.service-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.service-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

@media screen and (max-width: 767px) {
  .service-image {
    height: 150px;
  }
  .service-image img {
    -o-object-position: center center;
       object-position: center center;
  }
}/*# sourceMappingURL=style.css.map */