@charset "UTF-8";
/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.8;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*
 * HTML
 * -------------------------------------------------------------------
 */
/* フェードアニメーション */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeInTrigger {
  opacity: 0;
}

.active .fadedown:nth-child(1) {
  animation: fadeDownAnime 0.4s ease 0.1s 1 forwards;
}

.active .fadedown:nth-child(2) {
  animation: fadeDownAnime 0.4s ease 0.2s 1 forwards;
}

.active .fadedown:nth-child(3) {
  animation: fadeDownAnime 0.4s ease 0.3s 1 forwards;
}

.active .fadedown:nth-child(4) {
  animation: fadeDownAnime 0.4s ease 0.4s 1 forwards;
}

.active .fadedown:nth-child(5) {
  animation: fadeDownAnime 0.4s ease 0.5s 1 forwards;
}

.active .fadedown:nth-child(6) {
  animation: fadeDownAnime 0.4s ease 0.6s 1 forwards;
}

.active .fadedown:nth-child(7) {
  animation: fadeDownAnime 0.4s ease 0.7s 1 forwards;
}

.active .fadedown:nth-child(8) {
  animation: fadeDownAnime 0.4s ease 0.8s 1 forwards;
}
@keyframes fadeDownAnime {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --spacing: 0.05em;
}

body {
  font-family: "TsukuMinPr6-M", "Yu Mincho", "YuMincho", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.8;
  position: relative;
}

* {
  letter-spacing: var(--spacing);
}

a {
  text-decoration: none;
  outline: none;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
.cont-wrapper {
  display: block;
  margin: 0px auto;
  padding: 0px;
  min-height: 100vh;
  color: #454545;
}

.header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
}
@media (max-width: 768px) {
  .header {
    background-color: #fff;
  }
}
.header .g-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
  padding: 1rem;
}
@media (max-width: 768px) {
  .header .g-nav {
    top: 0;
    left: 0;
    padding: 0.5rem 1rem;
  }
}
.header .g-nav__logo {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.header .g-nav__logo img {
  height: 20px;
}
.header .g-nav__logo.is-active {
  opacity: 1;
  transition: opacity 0.2s ease;
}
.header .g-nav__hamburger {
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 1010;
}
@media (max-width: 480px) {
  .header .g-nav__hamburger {
    width: 30px;
  }
}
.header .g-nav__hamburger span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 0;
  height: 1px;
  background: #454545;
  width: 100%;
}
.header .g-nav__hamburger span:nth-of-type(1) {
  top: 10px;
}
.header .g-nav__hamburger span:nth-of-type(2) {
  top: 20px;
}
.header .g-nav__hamburger span:nth-of-type(3) {
  top: 30px;
}
.header .g-nav__hamburger.active span:nth-of-type(1) {
  top: 20px;
  left: 0;
  transform: rotate(-35deg);
  width: 100%;
}
.header .g-nav__hamburger.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.header .g-nav__hamburger.active span:nth-of-type(3) {
  top: 20px;
  left: 0;
  transform: rotate(35deg);
  width: 100%;
}
.header .l-header-drawer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  color: #fff;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.header .l-header-drawer__wrap {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0 2.5rem;
}
@media (max-width: 768px) {
  .header .l-header-drawer__wrap {
    min-height: 100svh;
    padding: 56px 2rem 2.5rem;
  }
}
.header .l-header-drawer__nav {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(8rem, -8.516rem + 34.41vw, 16rem);
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
}
@media (max-width: 1140px) {
  .header .l-header-drawer__nav {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .header .l-header-drawer__nav {
    flex-direction: column-reverse;
    gap: clamp(3rem, 1.092rem + 8.14vw, 5rem);
    width: 100%;
    margin: 0 auto;
    padding: 1rem 0 0;
  }
}
.header .l-header-drawer__logo {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .header .l-header-drawer__logo {
    margin-bottom: clamp(2rem, 1.046rem + 4.07vw, 3rem);
  }
}
.header .l-header-drawer__logo img {
  width: 240px;
}
@media (max-width: 768px) {
  .header .l-header-drawer__logo img {
    width: clamp(8.5rem, 3.49rem + 21.37vw, 13.75rem);
    margin: 0 auto;
  }
}
.header .l-header-drawer__company {
  color: #454545;
  font-size: 14px;
}
@media (max-width: 768px) {
  .header .l-header-drawer__company {
    font-size: clamp(0.75rem, 0.631rem + 0.51vw, 0.875rem);
    text-align: center;
  }
}
.header .l-header-drawer__navlink {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 3rem;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .header .l-header-drawer__navlink {
    gap: 0.75rem clamp(2rem, 1.046rem + 4.07vw, 3rem);
    margin: 0 auto clamp(3rem, 2.046rem + 4.07vw, 4rem);
  }
}
.header .l-header-drawer__navlink a {
  color: #454545;
  font-family: "TsukuMinPr6-B";
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .header .l-header-drawer__navlink a {
    font-size: clamp(0.813rem, 0.693rem + 0.51vw, 0.938rem);
  }
}
.header .l-header-drawer__contact--title {
  margin-bottom: 0.5rem;
  color: #454545;
  font-family: "FOT-筑紫明朝 Pr6 D";
  font-size: 28px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .header .l-header-drawer__contact--title {
    font-size: clamp(1.5rem, 1.261rem + 1.02vw, 1.75rem);
  }
}
.header .l-header-drawer__contact--txt {
  margin-bottom: 2rem;
  color: #454545;
  font-size: 14px;
  font-weight: 400;
}
.header .l-header-drawer__contact--btn {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  /* 左上へ配置 */
  /* 右下へ配置 */
  /* 左下へ配置 */
  /* 右上へ配置 */
  /* hover */
}
@media (max-width: 768px) {
  .header .l-header-drawer__contact--btn {
    width: 100%;
  }
}
.header .l-header-drawer__contact--btn a {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 400px;
  height: 60px;
  padding: 0.5rem 1.5rem;
  background-color: #f6f6f6;
  color: #454545;
  font-size: 14px;
}
@media (max-width: 768px) {
  .header .l-header-drawer__contact--btn a {
    width: 100%;
    max-width: 400px;
    height: clamp(2.75rem, 2.154rem + 2.54vw, 3.375rem);
    background-color: #fff;
    border: solid 0.75px #454545;
    font-size: clamp(0.813rem, 0.753rem + 0.25vw, 0.875rem);
  }
}
.header .l-header-drawer__contact--btn a span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header .l-header-drawer__contact--btn a span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #454545;
  border-right: 1px solid #454545;
  transform: rotate(45deg);
}
.header .l-header-drawer__contact--btn::after, .header .l-header-drawer__contact--btn::before, .header .l-header-drawer__contact--btn a::after, .header .l-header-drawer__contact--btn a::before {
  background-color: #454545;
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.header .l-header-drawer__contact--btn::after {
  width: 0px;
  height: 1px;
  top: -1px;
  left: -1px;
}
.header .l-header-drawer__contact--btn::before {
  width: 0px;
  height: 1px;
  right: -1px;
  bottom: -1px;
}
.header .l-header-drawer__contact--btn a::after {
  width: 1px;
  height: 0px;
  left: -1px;
  bottom: -1px;
}
.header .l-header-drawer__contact--btn a::before {
  width: 1px;
  height: 0px;
  top: -1px;
  right: -1px;
}
.header .l-header-drawer__contact--btn:hover::after, .header .l-header-drawer__contact--btn:hover::before {
  width: 100%;
  width: calc(100% + 1px);
}
.header .l-header-drawer__contact--btn:hover a::after, .header .l-header-drawer__contact--btn:hover a::before {
  height: 100%;
  height: calc(100% + 1px);
}
.header.is-nav-open {
  mix-blend-mode: unset;
}
.header.is-nav-open .l-header-drawer {
  opacity: 1;
  z-index: 1000;
  pointer-events: auto;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .header.is-nav-open .l-header-drawer {
    overflow-y: scroll;
  }
}
.header.is-nav-open .l-header-drawer__bg {
  background-color: #fff;
}
.header.is-nav-open .l-header-drawer__nav {
  opacity: 1;
}

.l-contents {
  max-width: 1100px;
  margin: 0 auto;
  padding: 130px 0;
}
@media (max-width: 1140px) {
  .l-contents {
    padding: 130px 30px;
  }
}
@media (max-width: 768px) {
  .l-contents {
    padding: clamp(5.375rem, 3.347rem + 8.65vw, 7.5rem) clamp(1.125rem, 0.648rem + 2.04vw, 1.625rem);
  }
}
.l-contents p {
  font-size: 15px;
  line-height: 2.26;
}
@media (max-width: 768px) {
  .l-contents p {
    font-size: clamp(0.75rem, 0.571rem + 0.76vw, 0.938rem);
  }
}

.contents__bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.contents__bg.shooting {
  background-image: url(../img/bg-shooting.png);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .contents__bg.shooting {
    background-image: none;
  }
}
.contents__bg.direction {
  background-image: url(../img/bg-VisualDirection.png);
}
@media (max-width: 768px) {
  .contents__bg.direction {
    background-image: none;
  }
}
.contents__bg.studio {
  background-color: #f6f6f6;
}

.hero {
  display: flex;
  justify-content: center;
  margin-bottom: 120px;
  padding: 0;
}
@media (max-width: 1140px) {
  .hero {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: 100svh;
    overflow-x: hidden;
    margin-bottom: clamp(5.375rem, 4.54rem + 3.56vw, 6.25rem);
    padding: 0 clamp(1.125rem, 0.648rem + 2.04vw, 1.625rem);
  }
}
.hero__main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 2.5;
  height: 100svh;
  width: 100%;
  margin-left: calc(50% - 50vw);
  background-image: url(../img/hero-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1140px) {
  .hero__main {
    flex: 2;
  }
}
@media (max-width: 768px) {
  .hero__main {
    width: 100vw;
    flex: auto;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.hero__main img {
  height: 58px;
}
.hero__txt {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  margin-left: 4rem;
}
@media (max-width: 1140px) {
  .hero__txt {
    margin-left: clamp(2rem, -1.097rem + 6.45vw, 3.5rem);
  }
}
@media (max-width: 768px) {
  .hero__txt {
    flex: initial;
    margin: 0 auto;
    padding: 2rem 0;
  }
}
.hero__txt h1 {
  margin-bottom: clamp(0.5rem, 0.255rem + 1.05vw, 1rem);
  font-family: "TsukuMinPr6-D";
  font-size: clamp(1.188rem, 1.096rem + 0.39vw, 1.375rem);
  letter-spacing: 0.2rem;
}
.hero__txt p {
  padding-bottom: 7rem;
}
@media (max-width: 768px) {
  .hero__txt p {
    padding-bottom: 0;
  }
}

.l-contents.works {
  position: relative;
  height: 100svh;
}
@media (max-width: 768px) {
  .l-contents.works {
    height: auto;
    padding: clamp(2.625rem, 1.552rem + 4.58vw, 3.75rem) clamp(1.125rem, 0.648rem + 2.04vw, 1.625rem);
  }
}
.l-contents.works .our-works {
  position: absolute;
  top: -2.4rem;
  left: 50%;
  transform: translateX(-50%);
  color: #6a6a6a;
  font-family: "TsukuMinPr6-E";
  font-size: 42px;
  font-weight: bold;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .l-contents.works .our-works {
    top: -3.4rem;
    font-size: clamp(1.625rem, 0.909rem + 3.05vw, 2.375rem);
  }
}
.l-contents.works .our-works span {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.l-contents.works .our-works span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  border-bottom: solid 2px #6a6a6a;
}
.l-contents .works-cont {
  position: absolute;
  bottom: 13.5svh;
}
@media (max-width: 768px) {
  .l-contents .works-cont {
    position: relative;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .l-contents .works-cont__thumb {
    width: 100svw;
    margin: 0 calc(50% - 50vw) 2rem;
  }
}
.l-contents .works-cont__title {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-family: "TsukuMinPr6-D";
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 0;
  text-shadow: 3px 1px 3px rgba(49, 49, 49, 0.1);
}
@media (max-width: 768px) {
  .l-contents .works-cont__title {
    color: #454545;
    font-size: clamp(1.625rem, 0.909rem + 3.05vw, 2.375rem);
    text-shadow: none;
  }
}
.l-contents .works-cont__title.gray {
  color: #6a6a6a;
}
@media (max-width: 768px) {
  .l-contents .works-cont__title.gray {
    color: #454545;
  }
}
.l-contents .works-cont__txt {
  color: #fff;
  width: 34rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .l-contents .works-cont__txt {
    width: 100%;
    color: #454545;
  }
}
.l-contents .works-cont__txt.gray {
  color: #6a6a6a;
}
@media (max-width: 768px) {
  .l-contents .works-cont__txt.gray {
    color: #454545;
  }
}
.l-contents .read-btn {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  /* 左上へ配置 */
  /* 右下へ配置 */
  /* 左下へ配置 */
  /* 右上へ配置 */
  /* hover */
}
@media (max-width: 768px) {
  .l-contents .read-btn {
    width: 100%;
  }
}
.l-contents .read-btn a {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 230px;
  height: 40px;
  padding: 0.5rem 1rem;
  background-color: #fff;
  color: #454545;
  font-size: 14px;
}
@media (max-width: 768px) {
  .l-contents .read-btn a {
    width: 100%;
    height: clamp(2.75rem, 2.154rem + 2.54vw, 3.375rem);
    border: solid 0.75px #454545;
    font-size: clamp(0.813rem, 0.753rem + 0.25vw, 0.875rem);
  }
}
.l-contents .read-btn a span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.l-contents .read-btn a span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #454545;
  border-right: 1px solid #454545;
  transform: rotate(45deg);
}
.l-contents .read-btn.coms {
  pointer-events: none;
}
.l-contents .read-btn.coms a {
  filter: brightness(0.9);
}
.l-contents .read-btn::after, .l-contents .read-btn::before, .l-contents .read-btn a::after, .l-contents .read-btn a::before {
  background-color: #454545;
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .l-contents .read-btn::after, .l-contents .read-btn::before, .l-contents .read-btn a::after, .l-contents .read-btn a::before {
    display: none;
  }
}
.l-contents .read-btn::after {
  width: 0px;
  height: 1px;
  top: -1px;
  left: -1px;
}
.l-contents .read-btn::before {
  width: 0px;
  height: 1px;
  right: -1px;
  bottom: -1px;
}
.l-contents .read-btn a::after {
  width: 1px;
  height: 0px;
  left: -1px;
  bottom: -1px;
}
.l-contents .read-btn a::before {
  width: 1px;
  height: 0px;
  top: -1px;
  right: -1px;
}
.l-contents .read-btn:hover::after, .l-contents .read-btn:hover::before {
  width: 100%;
  width: calc(100% + 1px);
}
.l-contents .read-btn:hover a::after, .l-contents .read-btn:hover a::before {
  height: 100%;
  height: calc(100% + 1px);
}
.l-contents .c-title {
  margin-bottom: 40px;
  color: #454545;
  font-family: "TsukuMinPr6-D";
  font-size: 36px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .l-contents .c-title {
    margin-bottom: clamp(1rem, -0.431rem + 6.11vw, 2.5rem);
    font-size: clamp(1.5rem, 0.904rem + 2.54vw, 2.125rem);
  }
}
.l-contents .c-title.l-left {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .l-contents .c-title.l-left {
    margin-bottom: clamp(1rem, 0.046rem + 4.07vw, 2rem);
  }
}
.l-contents .c-title.l-left::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: solid 1px #454545;
}
.l-contents .profile-link {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-contents .profile-link {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem 1.6rem;
  }
}
.l-contents .profile-link a {
  transition: filter 0.3s ease;
}
.l-contents .profile-link a:hover {
  filter: brightness(1.15);
  transition: filter 0.3s ease;
}
.l-contents .profile-link__img {
  margin-bottom: 1rem;
}
.l-contents .profile-link__name {
  color: #454545;
  font-family: "TsukuMinPr6-D";
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .l-contents .profile-link__name {
    font-size: clamp(1.25rem, 1.071rem + 0.76vw, 1.438rem);
  }
}
.l-contents .profile-link__job {
  color: #454545;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 768px) {
  .l-contents .profile-link__job {
    font-size: clamp(0.75rem, 0.69rem + 0.25vw, 0.813rem);
  }
}
.l-contents.studio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
@media (max-width: 1140px) {
  .l-contents.studio {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .l-contents.studio {
    flex-direction: column-reverse;
    padding: 0 clamp(1.125rem, 0.648rem + 2.04vw, 1.625rem);
  }
}
.l-contents.studio .studio__textarea {
  width: 50%;
  padding-right: 1.5rem;
}
@media (max-width: 768px) {
  .l-contents.studio .studio__textarea {
    width: 100%;
    padding: 2rem 0 3rem;
  }
}
.l-contents.studio .studio__textarea p {
  width: 31.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 1140px) {
  .l-contents.studio .studio__textarea p {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .l-contents.studio .studio__textarea p {
    margin-bottom: clamp(1.5rem, 1.023rem + 2.04vw, 2rem);
  }
}
.l-contents.studio .studio__thumb {
  width: 50vw;
  height: 100%;
  margin-right: calc(50% - 50vw);
}
@media (max-width: 1140px) {
  .l-contents.studio .studio__thumb {
    height: 530px;
  }
}
@media (max-width: 768px) {
  .l-contents.studio .studio__thumb {
    width: 100vw;
    height: clamp(15.625rem, 3.101rem + 53.44vw, 28.75rem);
    margin: 0 calc(50% - 50vw);
  }
}
.l-contents.studio .studio__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-contents.about .about__txt {
  width: 40rem;
  margin: 0 auto 3rem;
}
@media (max-width: 768px) {
  .l-contents.about .about__txt {
    width: 100%;
    margin: 0 auto clamp(1.5rem, 0.069rem + 6.11vw, 3rem);
  }
}
.l-contents.about .profile__info {
  width: 40rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-contents.about .profile__info {
    width: 100%;
  }
}
.l-contents.about .profile__info tr {
  display: flex;
  width: 100%;
  border-bottom: 0.75px solid #d6d6d6;
}
@media (max-width: 768px) {
  .l-contents.about .profile__info tr {
    display: inline-block;
  }
}
.l-contents.about .profile__info th, .l-contents.about .profile__info td {
  padding: 0.5rem 1rem 0.7rem 0;
  text-align: left;
  font-size: 15px;
}
@media (max-width: 768px) {
  .l-contents.about .profile__info th, .l-contents.about .profile__info td {
    display: block;
    padding: 0.5rem 0 0.5rem;
    font-size: 14px;
  }
}
.l-contents.about .profile__info th {
  width: 30%;
  font-family: "TsukuMinPr6-E";
  text-align: left;
}
@media (max-width: 768px) {
  .l-contents.about .profile__info th {
    width: 100%;
    padding-bottom: 0;
  }
}
.l-contents.about .profile__info td {
  text-align: left;
}
@media (max-width: 768px) {
  .l-contents.about .profile__info td {
    padding-top: 0;
  }
}
.l-contents.about .profile__info a {
  border-bottom-style: solid;
  border-width: 1px;
  color: #454545;
  text-decoration: none;
}
@media (max-width: 768px) {
  .l-contents.about .profile__info a {
    border-width: 0.7px;
    padding-bottom: -0.1rem;
  }
}

.footer {
  padding: 80px 0 50px;
  background-color: #f6f6f6;
}
@media (max-width: 768px) {
  .footer {
    padding: clamp(2.5rem, 1.307rem + 5.09vw, 3.75rem) 0 clamp(2.25rem, 1.415rem + 3.56vw, 3.125rem);
  }
}
.footer p {
  font-size: 15px;
  line-height: 2.26;
}
@media (max-width: 768px) {
  .footer p {
    font-size: clamp(0.75rem, 0.571rem + 0.76vw, 0.938rem);
  }
}
.footer__container {
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1140px) {
  .footer__container {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .footer__container {
    padding: 0 clamp(1.125rem, 0.648rem + 2.04vw, 1.625rem);
  }
}
.footer__container hr {
  border: none;
  border-bottom: solid 0.75px #454545;
  margin: 6.25rem 0 3rem;
}
@media (max-width: 768px) {
  .footer__container hr {
    margin: 3rem 0;
  }
}
.footer .l-contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .footer .l-contact {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .l-contact__info--title {
  color: #454545;
  font-size: 36px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer .l-contact__info--title {
    margin-bottom: 0;
    font-size: clamp(1.5rem, 0.784rem + 3.05vw, 2.25rem);
  }
}
.footer .l-contact__info--txt {
  width: 21rem;
}
@media (max-width: 768px) {
  .footer .l-contact__info--txt {
    width: 100%;
    margin-bottom: clamp(1.8rem, 1.132rem + 2.85vw, 2.5rem);
  }
}
.footer .l-contact__btn {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  /* 左上へ配置 */
  /* 右下へ配置 */
  /* 左下へ配置 */
  /* 右上へ配置 */
  /* hover */
}
@media (max-width: 768px) {
  .footer .l-contact__btn {
    width: 100%;
  }
}
.footer .l-contact__btn a {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 476px;
  height: 80px;
  padding: 0.5rem 1.5rem;
  background-color: #fff;
  color: #454545;
  font-size: 18px;
}
@media (max-width: 1140px) {
  .footer .l-contact__btn a {
    width: clamp(21.25rem, 3.702rem + 36.56vw, 29.75rem);
  }
}
@media (max-width: 768px) {
  .footer .l-contact__btn a {
    width: 100%;
    height: clamp(2.75rem, 2.154rem + 2.54vw, 3.375rem);
    border: solid 0.75px #454545;
    font-size: clamp(0.813rem, 0.753rem + 0.25vw, 0.875rem);
  }
}
.footer .l-contact__btn a span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer .l-contact__btn a span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #454545;
  border-right: 1px solid #454545;
  transform: rotate(45deg);
}
.footer .l-contact__btn::after, .footer .l-contact__btn::before, .footer .l-contact__btn a::after, .footer .l-contact__btn a::before {
  background-color: #454545;
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .footer .l-contact__btn::after, .footer .l-contact__btn::before, .footer .l-contact__btn a::after, .footer .l-contact__btn a::before {
    display: none;
  }
}
.footer .l-contact__btn::after {
  width: 0px;
  height: 1px;
  top: -1px;
  left: -1px;
}
.footer .l-contact__btn::before {
  width: 0px;
  height: 1px;
  right: -1px;
  bottom: -1px;
}
.footer .l-contact__btn a::after {
  width: 1px;
  height: 0px;
  left: -1px;
  bottom: -1px;
}
.footer .l-contact__btn a::before {
  width: 1px;
  height: 0px;
  top: -1px;
  right: -1px;
}
.footer .l-contact__btn:hover::after, .footer .l-contact__btn:hover::before {
  width: 100%;
  width: calc(100% + 1px);
}
.footer .l-contact__btn:hover a::after, .footer .l-contact__btn:hover a::before {
  height: 100%;
  height: calc(100% + 1px);
}
.footer .l-footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .footer .l-footer-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.footer .l-footer-wrap .company__info {
  display: flex;
  flex-direction: column;
}
.footer .l-footer-wrap .company__info--logo {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .footer .l-footer-wrap .company__info--logo {
    margin: 0 auto 1.5rem;
  }
}
.footer .l-footer-wrap .company__info--logo img {
  width: 150px;
}
.footer .l-footer-wrap .company__info--address {
  font-size: 14px;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer .l-footer-wrap .company__info--address {
    margin-bottom: 2rem;
    text-align: center;
  }
}
.footer .l-footer-wrap .company__info--address .company-name {
  font-weight: 600;
}
.footer .l-footer-wrap .company__info--copy {
  font-size: 10px;
}
.footer .l-footer-wrap .f-nav {
  padding-top: 0.5rem;
}
@media (max-width: 768px) {
  .footer .l-footer-wrap .f-nav {
    padding-top: 0;
    margin-bottom: 2rem;
  }
}
.footer .l-footer-wrap .f-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  align-items: center;
  gap: 0.5rem 2rem;
  font-family: "TsukuMinPr6-B";
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer .l-footer-wrap .f-nav ul {
    flex-direction: column;
    justify-content: center;
    gap: 1rem 0;
  }
}
.footer .l-footer-wrap .f-nav ul a {
  color: #454545;
}

/*
 * 汎用
 * -------------------------------------------------------------------
 */
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
.tx_c {
  text-align: center;
}

.tx_l {
  text-align: left;
}

.tx_r {
  text-align: right;
}

/* 余白 */
.ma-0 {
  margin: 0rem !important;
}
.mb-0 {
  margin-bottom: 0rem !important;
}
.mt-0 {
  margin-top: 0rem !important;
}
.ml-0 {
  margin-left: 0rem !important;
}
.mr-0 {
  margin-right: 0rem !important;
}

.pa-0 {
  padding: 0rem !important;
}
.pb-0 {
  padding-bottom: 0rem !important;
}
.pt-0 {
  padding-top: 0rem !important;
}
.pl-0 {
  padding-left: 0rem !important;
}
.pr-0 {
  padding-right: 0rem !important;
}

.ma-1 {
  margin: 1rem !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.mt-1 {
  margin-top: 1rem !important;
}
.ml-1 {
  margin-left: 1rem !important;
}
.mr-1 {
  margin-right: 1rem !important;
}

.pa-1 {
  padding: 1rem !important;
}
.pb-1 {
  padding-bottom: 1rem !important;
}
.pt-1 {
  padding-top: 1rem !important;
}
.pl-1 {
  padding-left: 1rem !important;
}
.pr-1 {
  padding-right: 1rem !important;
}

.ma-2 {
  margin: 2rem !important;
}
.mb-2 {
  margin-bottom: 2rem !important;
}
.mt-2 {
  margin-top: 2rem !important;
}
.ml-2 {
  margin-left: 2rem !important;
}
.mr-2 {
  margin-right: 2rem !important;
}

.pa-2 {
  padding: 2rem !important;
}
.pb-2 {
  padding-bottom: 2rem !important;
}
.pt-2 {
  padding-top: 2rem !important;
}
.pl-2 {
  padding-left: 2rem !important;
}
.pr-2 {
  padding-right: 2rem !important;
}

.ma-3 {
  margin: 3rem !important;
}
.mb-3 {
  margin-bottom: 3rem !important;
}
.mt-3 {
  margin-top: 3rem !important;
}
.ml-3 {
  margin-left: 3rem !important;
}
.mr-3 {
  margin-right: 3rem !important;
}

.pa-3 {
  padding: 3rem !important;
}
.pb-3 {
  padding-bottom: 3rem !important;
}
.pt-3 {
  padding-top: 3rem !important;
}
.pl-3 {
  padding-left: 3rem !important;
}
.pr-3 {
  padding-right: 3rem !important;
}

.ma-4 {
  margin: 4rem !important;
}
.mb-4 {
  margin-bottom: 4rem !important;
}
.mt-4 {
  margin-top: 4rem !important;
}
.ml-4 {
  margin-left: 4rem !important;
}
.mr-4 {
  margin-right: 4rem !important;
}

.pa-4 {
  padding: 4rem !important;
}
.pb-4 {
  padding-bottom: 4rem !important;
}
.pt-4 {
  padding-top: 4rem !important;
}
.pl-4 {
  padding-left: 4rem !important;
}
.pr-4 {
  padding-right: 4rem !important;
}

.ma-5 {
  margin: 5rem !important;
}
.mb-5 {
  margin-bottom: 5rem !important;
}
.mt-5 {
  margin-top: 5rem !important;
}
.ml-5 {
  margin-left: 5rem !important;
}
.mr-5 {
  margin-right: 5rem !important;
}

.pa-5 {
  padding: 5rem !important;
}
.pb-5 {
  padding-bottom: 5rem !important;
}
.pt-5 {
  padding-top: 5rem !important;
}
.pl-5 {
  padding-left: 5rem !important;
}
.pr-5 {
  padding-right: 5rem !important;
}

.ma-6 {
  margin: 6rem !important;
}
.mb-6 {
  margin-bottom: 6rem !important;
}
.mt-6 {
  margin-top: 6rem !important;
}
.ml-6 {
  margin-left: 6rem !important;
}
.mr-6 {
  margin-right: 6rem !important;
}

.pa-6 {
  padding: 6rem !important;
}
.pb-6 {
  padding-bottom: 6rem !important;
}
.pt-6 {
  padding-top: 6rem !important;
}
.pl-6 {
  padding-left: 6rem !important;
}
.pr-6 {
  padding-right: 6rem !important;
}

.ma-7 {
  margin: 7rem !important;
}
.mb-7 {
  margin-bottom: 7rem !important;
}
.mt-7 {
  margin-top: 7rem !important;
}
.ml-7 {
  margin-left: 7rem !important;
}
.mr-7 {
  margin-right: 7rem !important;
}

.pa-7 {
  padding: 7rem !important;
}
.pb-7 {
  padding-bottom: 7rem !important;
}
.pt-7 {
  padding-top: 7rem !important;
}
.pl-7 {
  padding-left: 7rem !important;
}
.pr-7 {
  padding-right: 7rem !important;
}

.ma-8 {
  margin: 8rem !important;
}
.mb-8 {
  margin-bottom: 8rem !important;
}
.mt-8 {
  margin-top: 8rem !important;
}
.ml-8 {
  margin-left: 8rem !important;
}
.mr-8 {
  margin-right: 8rem !important;
}

.pa-8 {
  padding: 8rem !important;
}
.pb-8 {
  padding-bottom: 8rem !important;
}
.pt-8 {
  padding-top: 8rem !important;
}
.pl-8 {
  padding-left: 8rem !important;
}
.pr-8 {
  padding-right: 8rem !important;
}

.ma-9 {
  margin: 9rem !important;
}
.mb-9 {
  margin-bottom: 9rem !important;
}
.mt-9 {
  margin-top: 9rem !important;
}
.ml-9 {
  margin-left: 9rem !important;
}
.mr-9 {
  margin-right: 9rem !important;
}

.pa-9 {
  padding: 9rem !important;
}
.pb-9 {
  padding-bottom: 9rem !important;
}
.pt-9 {
  padding-top: 9rem !important;
}
.pl-9 {
  padding-left: 9rem !important;
}
.pr-9 {
  padding-right: 9rem !important;
}

.ma-10 {
  margin: 10rem !important;
}
.mb-10 {
  margin-bottom: 10rem !important;
}
.mt-10 {
  margin-top: 10rem !important;
}
.ml-10 {
  margin-left: 10rem !important;
}
.mr-10 {
  margin-right: 10rem !important;
}

.pa-10 {
  padding: 10rem !important;
}
.pb-10 {
  padding-bottom: 10rem !important;
}
.pt-10 {
  padding-top: 10rem !important;
}
.pl-10 {
  padding-left: 10rem !important;
}
.pr-10 {
  padding-right: 10rem !important;
}