@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%; /* iphoneで文字サイズが変わる対策 */
  -ms-text-size-adjust: 100%;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px; /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

.both {
  clear: both;
}

.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/* ここからWordpress用初期設定 */
/* 本文中の画像 */
article img {
  border: none;
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 30px auto;
}

.alignright {
  float: right;
  margin-bottom: 30px;
  margin-left: 30px;
}

.alignleft {
  float: left;
  margin-bottom: 30px;
  margin-right: 30px;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  margin: 0;
  color: #666;
  font-size: 14px;
  text-align: center;
}

body {
  width: 100%;
  color: var(--baseColor);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

/*-----------------------

         変数

-----------------------*/
:root {
  --baseColor: #4d4d4d;
  --mainColor: #f86596;
  --accentColor: #7d99cd;
  --subColor: #f9e7e6;
  --colorW: #fff;
  --senobi: "MyCustomFont", sans-serif;
}

/*-----------------------

         font

-----------------------*/
/* 通常のフォント（400） */
@font-face {
  font-family: "MyCustomFont";
  src: url("../font/Senobi-Gothic-Regular.ttf") format("opentype");
  font-weight: 400; /* 通常の太さ */
  font-style: normal;
}
/* 太字フォント（700） */
@font-face {
  font-family: "MyCustomFont";
  src: url("../font/Senobi-Gothic-Bold.ttf") format("opentype");
  font-weight: 700; /* 太字 */
  font-style: normal;
}
/* さらに中太のフォント（500） */
@font-face {
  font-family: "MyCustomFont";
  src: url("../font/Senobi-Gothic-Medium.ttf") format("opentype");
  font-weight: 500; /* 中太 */
  font-style: normal;
}
/*-----------------------

         COMMON

-----------------------*/
body {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #4d4d4d;
  letter-spacing: 0.1em;
  background-color: var(--subColor);
  overflow: hidden;
}

html {
  font-size: 0.6944444444vw;
  height: 100%;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

main {
  margin: 0 3rem;
  border-inline: 2px solid;
}
@media only screen and (max-width: 768px) {
  main {
    margin: 0 1rem;
    border-inline: 1px solid;
  }
}

.container,
.wrapper {
  width: 120rem;
  padding: 0;
  margin: 0 auto;
  min-height: auto;
}
@media only screen and (max-width: 768px) {
  .container,
  .wrapper {
    width: 100%;
  }
}

.holder {
  width: 100rem;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .holder {
    width: 100%;
    padding: 0 2rem;
  }
}

.pink {
  color: var(--mainColor);
}

.blue {
  color: var(--accentColor);
}

li {
  list-style-type: none;
}

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

.sec {
  padding: 12rem 0 8rem;
  border-bottom: 2px solid;
}
@media only screen and (max-width: 559px) {
  .sec {
    padding: 6rem 0;
    border-bottom: 1px solid;
  }
}

.o-hamburger {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 9000;
  transition: 0.6s;
  background-color: var(--subColor);
  opacity: 0;
  visibility: hidden;
  height: auto;
  border-radius: 0 0 0 2rem;
}
@media only screen and (min-width: 769px) {
  .o-hamburger {
    width: 40rem;
    right: -40rem;
    padding: 4.75rem 4.55rem 5.95rem 3.55rem;
  }
}
.o-hamburger__inner {
  margin: 2rem;
  border: 1px solid;
  padding: 2rem 2rem 10rem 1rem;
  border-radius: 0 0 0 2rem;
}
.o-hamburger .l-hdr__navlist {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2.4rem;
}
.o-hamburger .l-hdr__navitem:not(:last-child)::after {
  display: none;
}
.o-hamburger .l-hdr__navlink {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  position: relative;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  align-items: center;
}
.o-hamburger .l-hdr__navlink::before {
  content: "";
  background: url(../images/diamond.svg) no-repeat center center/contain;
  width: 3.1rem;
  height: 3.1rem;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .o-hamburger .l-hdr__navlink::before {
    width: 2rem;
    height: 2rem;
  }
}
.o-hamburger .l-hdr__nav {
  padding: 0;
  justify-content: flex-start;
}
.o-hamburger .l-hdr__navlist {
  gap: 1.1rem;
  margin-bottom: 1.7rem;
}

html.is-open .o-hamburger {
  right: 0;
  visibility: visible;
  opacity: 1;
  top: 0;
  pointer-events: all;
}

.is-open .overlay {
  opacity: 1;
  visibility: visible;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.6);
}

html.is-open {
  overflow: hidden;
  height: 100%;
}
html.is-open::-webkit-scrollbar {
  display: none;
}

/*------------------------------------
  メニュークリック後メニュー外の背景 ↓
  ------------------------------------*/
.overlay {
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 10000;
}

/* ボタン全体の設定 */
.o-hamburger__btn {
  position: fixed;
  width: 5rem;
  height: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  top: 4rem;
  right: 2rem;
  z-index: 99999;
  transition: 0.5s;
}
.o-hamburger__btn img {
  width: 5rem;
  height: 5rem;
}

/* 線のスタイル */
.o-hamburger__icon {
  visibility: visible;
  width: 3rem;
  height: 2px;
  background-color: var(--mainColor);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

html.is-open .o-hamburger__icon {
  transform: rotate(45deg) translate(0.9rem, 0.2rem);
  background-color: var(--mainColor);
}
html.is-open .o-hamburger__icon:nth-child(2) {
  transform: rotate(-45deg) translate(1rem, -0.5rem);
  background-color: var(--mainColor);
}
html.is-open .o-hamburger__icon:last-child {
  display: none;
}

/*====================================================================
　モーダル/*---------------数値など任意で書き換えを行う---------------------
====================================================================*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100vh;
}

.modal__bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
}

.modal__content1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 660px;
  height: 90vh;
  padding: 6.5rem 3.5rem 2.5rem;
  overflow-y: auto;
  background: #fff;
  transform: translate(-50%, -50%);
}

.modal__content1 .top-close {
  position: absolute;
  top: -1rem;
  right: 1.5rem;
}

.modal__content1 .bottom-close {
  position: relative;
  top: 1rem;
  left: -2rem;
}

.modal__content1 .top-close a,
.modal__content1 .bottom-close a {
  display: block;
  font-size: 5rem;
  font-weight: 400;
  color: #787878;
}

/**/
.modal-window {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  justify-content: center;
  align-items: center;
}

.remodal {
  width: 80%;
  max-width: 60rem;
  height: 90%;
  overflow: auto;
  margin: 0;
  position: relative;
  border-radius: 1rem;
  padding: 3rem 3.5rem 3rem;
  text-align: left;
}
@media only screen and (max-width: 559px) {
  .remodal {
    width: 95%;
    padding: 3rem 2.5rem 3rem;
  }
}

.remodal-close {
  width: 6rem;
  height: 5rem;
  font-weight: 400;
}

.remodal-close.top {
  right: 1rem;
  top: 1rem;
  left: inherit;
}

.remodal-close.bottom {
  position: static;
  margin: 4rem 0 0;
}

.remodal-close::before {
  height: 7rem;
  line-height: 5rem;
  width: 6rem;
  font-size: 7rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif !important;
  position: static;
  color: var(--baseColor);
  background: linear-gradient(90deg, rgb(100, 123, 197) 0%, rgb(218, 112, 220) 50%, rgb(237, 136, 170) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/**/
.modal-area__name__wrap {
  display: inline-block;
  padding: 1.5rem 7.2rem;
  border-radius: 5rem;
  position: relative;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 559px) {
  .modal-area__name__wrap {
    padding: 1rem 5.2rem;
    bottom: 3rem;
  }
}
.modal-area__name {
  font-size: clamp(2rem, 1.7572815534rem + 0.6472491909vw, 3rem);
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.5;
}
.modal-area__name span {
  font-size: clamp(1.2rem, 1.1757281553rem + 0.0647249191vw, 1.3rem);
  letter-spacing: 0.2em;
}
.modal-area__ttl {
  font-size: clamp(1.8rem, 1.5572815534rem + 0.6472491909vw, 2.8rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 3rem;
  position: relative;
  margin-top: -3rem;
}
@media only screen and (max-width: 559px) {
  .modal-area__ttl {
    margin-top: -2rem;
    margin-bottom: 1rem;
  }
}
.modal-area__ttl::after {
  content: "";
  background: url(../img/message-img.webp) no-repeat center center/contain;
  width: 31.5rem;
  height: 24.9rem;
  display: inline-block;
  position: absolute;
  top: -7rem;
  right: -2rem;
}
.modal-area__textarea p {
  font-size: clamp(1.4rem, 1.1572815534rem + 0.6472491909vw, 2.4rem);
  line-height: 1.75;
}
.modal-area figure img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 3rem;
}
.modal-area .ttl-secondary {
  margin-bottom: 1.8rem;
}

.ttl-primary {
  width: fit-content;
  margin-inline: auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 3rem;
}
@media only screen and (max-width: 768px) {
  .ttl-primary {
    font-size: 2.1rem;
  }
}
.ttl-primary::before {
  content: "";
  background: url(../images/diamond.svg) no-repeat center center/contain;
  width: 3.1rem;
  height: 3.1rem;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .ttl-primary::before {
    width: 2rem;
    height: 2rem;
  }
}
.ttl-primary__area {
  font-family: var(--senobi);
  letter-spacing: 0.2em;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .ttl-primary__area {
    margin-bottom: 3rem;
  }
}

.sec {
  position: relative;
}
.sec::before {
  font-size: 23rem;
  color: var(--colorW);
  position: absolute;
  top: 0.4rem;
  letter-spacing: -0.1em;
  left: -3rem;
  opacity: 0.1;
  -webkit-text-stroke: 2px #333;
  line-height: 0.7;
  font-family: "MyCustomFont";
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .sec::before {
    font-size: 10rem;
    left: -0.9rem;
    top: 0.1rem;
    -webkit-text-stroke: 1px #333;
  }
}

.thought::before {
  content: "Thought";
}

.work::before {
  content: "Work";
}

.about::before {
  content: "About";
}

.service::before {
  content: "Service";
}

.contact::before {
  content: "Contact";
}

.o-btn__link {
  width: 35rem;
  height: 6rem;
  color: #fff;
  border-radius: 3rem;
  background-color: var(--mainColor);
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
}

.o-card {
  display: grid;
}
.o-card--2wrap {
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}
.o-card--3wrap {
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media only screen and (max-width: 559px) {
  .o-card--3wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.o-card--4wrap {
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
@media only screen and (max-width: 559px) {
  .o-card--4wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.o-card__img {
  overflow: hidden;
  border-radius: 2rem;
}
@media only screen and (max-width: 559px) {
  .o-card__img {
    border-radius: 1rem;
  }
}
.o-card__img img {
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 2rem;
  transform: scale(1);
  transition: 0.5s ease;
}
@media only screen and (max-width: 559px) {
  .o-card__img img {
    border-radius: 1rem;
  }
}
.o-card__cat {
  margin-top: -1rem;
  z-index: 10;
  position: relative;
  gap: 0.4rem;
  display: flex;
  flex-wrap: wrap;
}
.o-card__cat span {
  font-size: clamp(1.2rem, 1.1514563107rem + 0.1294498382vw, 1.4rem);
  padding: 0.4rem 0.8rem;
  border-radius: 1.3rem;
  background: var(--mainColor);
  line-height: 1;
}
.o-card__item {
  position: relative;
}
.o-card__new {
  display: inline-block;
  padding: 0.6rem 1.5rem 0.3rem;
  border-radius: 2rem;
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  left: -1rem;
  z-index: 10;
}
@media only screen and (max-width: 559px) {
  .o-card__new {
    font-size: 1rem;
    padding: 0.5rem 1rem 0.1rem;
    top: 0.5rem;
  }
}
.o-card__link:hover {
  opacity: 1;
}
.o-card__link:hover .o-card__img img {
  transform: scale(1.1);
  transition: 0.5s ease;
}
@media only screen and (max-width: 559px) {
  .o-card__link:hover .o-card__img img {
    transform: inherit;
  }
}
.o-card__date {
  font-size: clamp(1.2rem, 1.1514563107rem + 0.1294498382vw, 1.4rem);
  line-height: 1;
  margin-top: 0.7rem;
}
.o-card__ttl {
  margin-top: 0.7rem;
  font-size: clamp(1.4rem, 1.3514563107rem + 0.1294498382vw, 1.6rem);
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.o-flex {
  display: flex;
  gap: 6rem;
}
@media only screen and (max-width: 559px) {
  .o-flex {
    gap: 3rem;
  }
}
.o-flex--c {
  justify-content: center;
}
.o-flex--b {
  justify-content: space-between;
}
.o-flex--e {
  justify-content: flex-end;
}
.o-flex__item {
  width: calc((100% - 6rem) / 2);
}
@media only screen and (max-width: 559px) {
  .o-flex__item {
    width: 100%;
  }
}
.o-flex__item--1 {
  width: calc((100% - 6rem) / 3);
}
.o-flex__item--2 {
  width: calc((100% - 6rem) / 3 * 2);
}
@media only screen and (max-width: 559px) {
  .o-flex {
    flex-direction: column;
  }
}

/*faq*/
.o-faq {
  max-width: 100rem;
  margin: 0 auto;
}
.o-faq__question {
  padding: 4rem 8rem 0 0;
  position: relative;
  border-bottom: 1px solid;
}
.o-faq__question__text {
  font-size: clamp(1.6rem, 1.454368932rem + 0.3883495146vw, 2.2rem);
  font-weight: 700;
  display: flex;
  align-items: baseline;
}
.o-faq__mark__q {
  color: var(--mainColor);
  font-weight: 700;
  margin-right: 1rem;
}
.o-faq__answer {
  font-size: clamp(1.6rem, 1.5029126214rem + 0.2588996764vw, 2rem);
  background: #fff;
  margin-top: 1rem;
  display: none;
  padding: 2.5rem 8rem 3rem 2.5rem;
}
.o-faq__answer__inner {
  display: flex;
  align-items: baseline;
}
.o-faq__answer__text {
  font-size: clamp(1.6rem, 1.5029126214rem + 0.2588996764vw, 2rem);
}
.o-faq__mark__a {
  color: var(--mainColor);
  font-size: clamp(2rem, 1.6844660194rem + 0.8414239482vw, 3.3rem);
  font-weight: 700;
  margin-right: 1rem;
}
.o-faq__list:hover {
  cursor: pointer;
}
.o-faq__question::before {
  content: "";
  position: absolute;
  bottom: 1rem;
  right: 2.9rem;
  width: 2px;
  height: 2rem;
  background: var(--mainColor);
  transition: all 0.3s ease;
}
.o-faq__question::after {
  content: "";
  position: absolute;
  bottom: 1.9rem;
  right: 2rem;
  width: 2rem;
  height: 2px;
  background: var(--mainColor);
}
.o-faq__list.js-open .o-faq__question::before {
  transform: rotate(90deg);
}

.l-hdr {
  padding-top: 3rem;
}
@media only screen and (max-width: 768px) {
  .l-hdr {
    padding-top: 2rem;
  }
}
.l-hdr__inner {
  margin-inline: 3rem;
  border-radius: 1rem 1rem 0 0;
  padding: 1.6rem 5rem;
  border: 2px solid;
}
@media only screen and (max-width: 768px) {
  .l-hdr__inner {
    margin-inline: 1rem;
    padding: 0.6rem 1.5rem;
    border: 1px solid;
  }
}
.l-hdr__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .l-hdr__flex {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
  }
}
.l-hdr__menu {
  display: flex;
  gap: 4rem;
}
.l-hdr__menu__link {
  font-size: 2rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .l-hdr__menu__link {
    font-size: 1.4rem;
  }
}
.l-hdr__menu__link::before {
  content: "";
  background: url(../images/diamond.svg) no-repeat center center/contain;
  width: 2rem;
  height: 2rem;
  display: inline-block;
}
.l-hdr__logo img {
  width: 26.4rem;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .l-hdr__logo img {
    width: 12rem;
  }
}

.ftr {
  padding-bottom: 5rem;
}
.ftr__inner {
  margin-inline: 3rem;
  border-inline: 2px solid;
  border-bottom: 2px solid;
  border-radius: 0 0 1rem 1rem;
  padding: 3.5rem 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .ftr__inner {
    margin-inline: 1rem;
    padding: 2rem 0;
    border-bottom: 1px solid;
    border-inline: 1px solid;
  }
}
.ftr__inner::before, .ftr__inner::after {
  content: "";
  position: absolute;
  bottom: -4rem;
}
.ftr__inner::before {
  background: url(../images/ftr__01.webp) no-repeat center center/contain;
  width: 40.9rem;
  height: 25.8rem;
  left: 0rem;
}
@media only screen and (max-width: 768px) {
  .ftr__inner::before {
    width: 11.8rem;
    height: 7.4rem;
  }
}
.ftr__inner::after {
  background: url(../images/ftr__02.webp) no-repeat center center/contain;
  width: 39.2rem;
  height: 26rem;
  right: 0rem;
}
@media only screen and (max-width: 768px) {
  .ftr__inner::after {
    width: 11.3rem;
    height: 7.5rem;
  }
}
.ftr__logo {
  text-align: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .ftr__logo {
    margin-bottom: 0;
  }
}
.ftr__logo img {
  width: 11.9rem;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .ftr__logo img {
    width: 8rem;
  }
}
.ftr__nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .ftr__nav {
    margin-bottom: 1rem;
  }
}
.ftr__navlink {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .ftr__navlink {
    font-size: 1.4rem;
    gap: 0.5rem;
  }
}
.ftr__navlink::before {
  content: "";
  background: url(../images/diamond.svg) no-repeat center center/contain;
  width: 1.7rem;
  height: 1.7rem;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .ftr__navlink::before {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.ftr__copy {
  display: block;
  font-size: 1rem;
  text-align: center;
}

.catch {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-color: var(--mainColor);
  color: white;
  padding: 0.5rem 0;
  position: relative;
  gap: 5rem;
  border-bottom: 1px solid var(--baseColor);
}
.catch__inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 200s linear infinite;
}
.catch__copy {
  position: relative;
  padding-right: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .catch__copy {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
  }
}
.catch__copy::after {
  content: "";
  background: url(../images/diamond-w.svg) no-repeat center center/contain;
  width: 1.4rem;
  height: 1.4rem;
  display: inline-block;
  margin-left: 1rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.hero {
  border-bottom: 2px solid;
  padding: 6rem 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .hero {
    padding: 0;
  }
}
.hero__imgarea {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .hero__imgarea {
    padding: 1rem 0px;
  }
}
.hero__copy {
  font-family: "MyCustomFont";
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 8rem;
  position: absolute;
  letter-spacing: 0;
  transform: rotate(5deg);
  opacity: 0.85;
}
@media only screen and (max-width: 768px) {
  .hero__copy {
    font-size: 4.4rem;
    transform: rotate(0deg);
    letter-spacing: -0.1rem;
    font-weight: 700;
  }
}
.hero__copy--right {
  top: 3rem;
  right: 5rem;
}
@media only screen and (max-width: 768px) {
  .hero__copy--right {
    top: 2rem;
    right: 0rem;
  }
}
.hero__copy--right02 {
  bottom: 3rem;
  right: 16rem;
}
@media only screen and (max-width: 768px) {
  .hero__copy--right02 {
    right: 3rem;
  }
}
.hero__copy--left {
  top: 3rem;
  left: 16rem;
}
@media only screen and (max-width: 768px) {
  .hero__copy--left {
    top: 5rem;
    left: 0.5rem;
  }
}
.hero__copy--left02 {
  bottom: 3rem;
  left: 5rem;
}
@media only screen and (max-width: 768px) {
  .hero__copy--left02 {
    left: -1rem;
  }
}
.hero img {
  width: 71.2rem;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .hero img {
    width: 32rem;
    height: auto;
  }
}

.thought {
  overflow: hidden;
}
.thought__copy {
  font-family: var(--senobi);
  font-size: 5rem;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 6rem;
  letter-spacing: -0.1em;
}
@media only screen and (max-width: 768px) {
  .thought__copy {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    line-height: 1.2;
  }
}
.thought__copy span {
  font-size: 150%;
  letter-spacing: -0.1em;
}
.thought__textarea {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 768px) {
  .thought__textarea {
    margin-bottom: 4rem;
  }
}
.thought__text {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .thought__text {
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.6;
  }
}

.service__card {
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media only screen and (max-width: 768px) {
  .service__card {
    grid-template-columns: repeat(1, 1fr);
  }
}
.service__card figure {
  text-align: center;
  margin-bottom: 1rem;
}
.service__card img {
  width: 20.4rem;
}
@media only screen and (max-width: 768px) {
  .service__card img {
    width: 13.4rem;
  }
}
.service__subttl {
  background-color: var(--mainColor);
  color: var(--colorW);
  font-size: 1.6rem;
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid var(--baseColor);
  margin-bottom: 1rem;
  line-height: 3rem;
}
@media only screen and (max-width: 768px) {
  .service__subttl {
    font-size: 1.4rem;
  }
}
.service__subtext {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .service__subtext {
    font-size: 1.4rem;
  }
}

.work__imgarea {
  position: relative;
  text-align: center;
}
.work__imgarea::before {
  content: "";
  width: 40%;
  height: 2px;
  background-color: var(--baseColor);
  top: 65%;
  z-index: -1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .work__imgarea::before {
    top: 63.4%;
  }
}
.work__imgarea img {
  width: 30rem;
}
@media only screen and (max-width: 768px) {
  .work__imgarea img {
    width: 17rem;
  }
}
.work__text {
  font-size: 1.6rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .work__text {
    font-size: 1.4rem;
  }
}

.about__subttl {
  background-color: var(--mainColor);
  color: var(--colorW);
  font-size: 1.7rem;
  font-family: "MyCustomFont";
  width: fit-content;
  padding: 0.4rem 4rem;
  border-radius: 0.5rem 0.5rem 0 0;
  border-top: 1px solid var(--baseColor);
  border-inline: 1px solid var(--baseColor);
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .about__subttl {
    font-size: 1.4rem;
    padding: 0.2rem 2rem;
  }
}
.about__name {
  font-size: 3.2rem;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .about__name {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    font-family: "MyCustomFont";
  }
}
.about__name span {
  font-family: "MyCustomFont";
  font-size: 1.2rem;
}
.about__text {
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .about__text {
    font-size: 1.4rem;
  }
}
.about__cont {
  background: var(--colorW);
  border-radius: 0 1rem 1rem 1rem;
  border: 1px solid;
  padding: 2rem 3rem;
}
@media only screen and (max-width: 768px) {
  .about__cont {
    padding: 2rem;
  }
}
.about__flex {
  gap: 3rem;
  align-items: center;
}
.about__flex figure {
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .about__flex figure {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .about__flex img {
    width: 25rem;
    height: auto;
  }
}

.contact__text {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .contact__text {
    font-size: 1.4rem;
    text-align: left;
  }
}

.flow-slider {
  text-align: center;
  height: 100%;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .flow-slider {
    padding-inline: 2rem;
  }
}
.flow-slider img {
  width: 33.5rem;
  height: 18.8rem;
}
.flow-slider .swiper-slide-active .flow__cont {
  background-color: var(--mainColor);
}
.flow-slider .swiper-slide-active .flow__number {
  background-color: var(--accentColor);
}

.flow__subttl {
  color: var(--colorW);
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid;
  margin-inline: 3rem;
}
@media only screen and (max-width: 768px) {
  .flow__subttl {
    font-size: 1.4rem;
    margin-inline: 0rem;
  }
}
.flow__subtext {
  font-size: 1.4rem;
  min-height: 10rem;
  color: var(--colorW);
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .flow__subtext {
    font-size: 1.2rem;
    text-align: left;
  }
}
.flow__cont {
  background-color: var(--mainColor);
  padding: 1rem 1rem 3rem;
  border: 1px solid;
  border-radius: 1rem;
  background-color: var(--accentColor);
  transition: 0.5s;
  height: 100%;
}
.flow__number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -2rem;
  background-color: var(--mainColor);
  color: var(--colorW);
  width: fit-content;
  border: 1px solid var(--baseColor);
  border-radius: calc(infinity * 1px);
  padding: 0.2rem 9rem;
  font-size: 2.3rem;
  font-family: "MyCustomFont";
  transition: 0.5s;
}
@media only screen and (max-width: 768px) {
  .flow__number {
    top: -1rem;
    font-size: 1.6rem;
    padding: 0.1rem 6rem;
  }
}

.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
  position: static;
  margin: 0;
  width: inherit;
}

.slider-nav {
  justify-content: center;
  gap: 1.7rem;
  align-items: center;
  display: flex;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
  display: inline-block;
  border-radius: 50%;
  background-color: var(--colorW);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--mainColor);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 6.8rem;
  height: 6.8rem;
  margin: auto;
  position: absolute;
  top: -25rem;
}
@media only screen and (max-width: 768px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 4.2rem;
    height: 4.2rem;
  }
}

.swiper-button-prev,
.swiper-button-next {
  top: 92%;
  z-index: 1000;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: 90%;
  }
}

.swiper-button-prev {
  left: 28%;
}
@media only screen and (max-width: 768px) {
  .swiper-button-prev {
    left: 7%;
  }
}

.swiper-button-next {
  right: 28%;
}
@media only screen and (max-width: 768px) {
  .swiper-button-next {
    right: 7%;
  }
}

.swiper-button-prev::after {
  background-image: url(../images/btn-icon.webp);
  transform: rotate(180deg);
}

.swiper-button-next::after {
  background-image: url(../images/btn-icon.webp);
}

.swiper-slide img {
  height: auto;
  width: 100%;
  margin-bottom: 1rem;
}

.swiper-slide {
  height: auto;
}
/*# sourceMappingURL=style.css.map */
