@charset "uft-8";

/*
Theme Name: ftm-web
Description:WordPress ftm用テーマ
Version:1.0 (cssバージョン)
Authur:ftm-sako
*/

/*変数
----------------------------------------------*/
:root {
  --font-jp: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --font-en1: "Teko", sans-serif;
  --font-en2: "Oswald", sans-serif;
  --font-col: #202020;
  --main-col: #f9eb3e;
  --sub-col: #fcf9e8;
  --sub-gray: #666666;
}

/*共通部分
----------------------------------------------*/
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth; /*ページ内リンクへの移動をスムーズにする*/
}
.clip {
  overflow: clip; /*sticky_header指示用*/
  height: 100%;
  min-height: 100%;
}
.wrap {
  max-width: 1060px;
  padding: 0 30px; /*縮小時左右余白*/
  margin: 0 auto;
}
h1,
p,
a {
  color: var(--font-col);
  font-weight: 500;
}

/* body_fade_in */
body {
  opacity: 0;
  animation-name: load_fadein;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}
@keyframes load_fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*各セクション用ボタン*/
.btn {
  display: block;
  width: 170px;
  height: 40px;
  color: var(--font-col);
  font-size: 18px;
  font-family: var(--font-en1);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  padding: 11px 0 10px 15px;
  margin: 60px 0 60px auto;
  position: relative;
  border: 2px solid var(--font-col);
}
.btn:after {
  content: "";
  border-bottom: 2px solid var(--font-col);
  width: 65px;
  position: absolute;
  top: 17px;
  right: 8px;
  transition: all 0.3s;
}
@media (hover: hover) {
  .btn:hover::after {
    right: -20px;
  }
}
@media (hover: none) {
  .btn:active:after {
    right: -20px;
  }
}

/*to_topボタン*/
.to_top {
  width: 50px;
  height: 50px;
  transition: 0.5s;
  position: fixed;
  right: 5%;
  bottom: 5%;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
}
.to_top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.to_top::before {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 4px solid var(--font-col);
  border-right: 4px solid var(--font-col);
  transform: rotate(-45deg);
  position: absolute;
  top: 43%;
  left: 10%;
  transition: 0.5s;
}
@media (hover: hover) {
  .to_top:hover::before {
    transform: scale(1.5) rotate(-45deg);
  }
}
@media (hover: none) {
  .to_top:active::before {
    transform: scale(1.5) rotate(-45deg);
  }
}

/* section-fade-in */
.fade-element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.5s, visibility 0.5s, transform 0.5s;
}
/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/*背景のスクロールストップ*/
.scroll_stop {
  position: fixed;
  width: 100%;
  height: 100%;
}

/*共通ページネーション*/
.nav-links {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.pagination {
  margin-top: 40px;
  position: relative;
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-family: var(--font-en2);
  font-weight: normal;
  color: var(--font-col);
  font-size: 16px;
  border: 2px solid var(--font-col);
  margin-right: 15px;
}
.pagination .current {
  background-color: var(--font-col);
  color: white;
}
.pagination .prev,
.pagination .next {
  background: transparent;
  filter: none;
  color: var(--font-col);
  width: fit-content;
  font-size: 16px;
  font-weight: normal;
  border: none;
}
.pagination .dots {
  background: transparent;
  filter: none;
}

/*Header
----------------------------------------------*/
header {
  position: sticky;
  top: 0;
  z-index: 999;
}
.header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 15px 20px;
}

.header_container a {
  display: flex;
  justify-content: space-between;
  vertical-align: top;
}

@media (hover: hover) {
  .header_container a:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .header_container a:active {
    opacity: 0.6;
  }
}
.header-title {
  width: 30px;
}
.header-title a img {
  max-width: 100%;
}
.header_container a .container {
  padding-left: 15px;
}
.author_name,
.job_name {
  font-family: var(--font-en1);
  color: var(--font-col);
  line-height: 0.8;
}
.author_name {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.13em;
}
.job_name {
  font-size: 18px;
  letter-spacing: 0.05em;
}

/* g-nav */
.pc_nav ul {
  display: flex;
  justify-content: flex-end;
}
.pc_nav li {
  padding-left: 30px;
  font-weight: 500;
}
.pc_nav li:nth-child(1) {
  padding-left: 0;
}
.pc_nav li a {
  font-size: 18px;
  font-weight: 500;
  color: var(--font-col);
  font-family: var(--font-en2);
  letter-spacing: 0.07em;
  position: relative;
}
.pc_nav li a:hover {
  opacity: initial;
}
.pc_nav li a::after {
  background-color: var(--font-col);
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.5s all;
  width: 0;
}
@media (hover: hover) {
  .pc_nav li a:hover::after {
    width: 100%;
  }
}
@media (hover: none) {
  .pc_nav li a:active::after {
    width: 100%;
  }
}
.sp_nav {
  display: none;
}
.sp_menu_btn {
  display: none;
}

/*First-vw
----------------------------------------------*/
.first-vw {
  width: 100%;
  height: calc(100dvh + 80px);
  background-color: var(--main-col);
  position: relative;
  top: -80px;
}

.fv_image {
  width: 24%;
  min-width: 350px;
  height: auto;
  position: absolute;
  top: 46%;
  left: 55%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(5px 5px 3px rgba(100, 100, 100, 0.4));
}

.fv_title {
  text-align: left;
  position: absolute;
  top: 40%;
  left: 10%;
}

.first-vw p:nth-child(1) {
  color: white;
  font-family: var(--font-en1);
  font-weight: 400;
  font-size: clamp(90px, 8.5vw, 130px);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.first-vw p:nth-child(2) {
  color: var(--font-col);
  font-family: var(--font-en1);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 40px;
}
.first-vw p:nth-child(3) {
  color: var(--font-col);
  font-family: var(--font-en2);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/*scroll-anime
-----------------------------------------*/
.scrolldown {
  /*描画位置※位置は適宜調整してください*/
  display: block;
  position: absolute;
  z-index: 999;
  right: 80px;
  bottom: 23%;
  height: 50px;
  padding-bottom: 50px;
  margin: 0 auto;
}
/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  top: 27px;
  left: 0px;
  /*テキストの形状*/
  color: var(--font-col);
  font-size: 32px;
  font-family: var(--font-en1);
  font-weight: 400;
  letter-spacing: 0.07em;
  transform: rotate(-90deg);
}
/* 線の描写 */
.scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0px;
  left: 56px;
  /*線の形状*/
  width: 2px;
  height: 150px;
  background: var(--font-col);
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 2s ease-in-out infinite;
  opacity: 0;
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 150px;
    opacity: 0;
  }
}

/*News --front
----------------------------------------------*/
.news {
  background-color: var(--main-col);
  position: relative;
  top: -80px;
}

.news .wrap {
  width: 80%;
  margin: 0 auto;
  padding: 80px 20px;
}

/*sec-tittle common*/
.sec_title_box {
  display: flex;
  justify-content: flex-start;
  align-items: end;
  width: fit-content;
  border-bottom: 4px solid white;
  margin-bottom: 32px;
}
.sec-title {
  color: var(--font-col);
  font-family: var(--font-en1);
  font-weight: 300;
  font-size: 42px;
  letter-spacing: 0.1em;
  line-height: 1;
}
.sec-rb {
  margin: 0 0 9px 15px;
  letter-spacing: 0.05em;
}

.news .container a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
  padding: 15px 0;
  border-bottom: 2px dotted var(--font-col);
}
.news .container a p {
  font-family: var(--font-en2);
  margin-right: 40px;
  letter-spacing: 0.1em;

  font-weight: 500;
}
.news .container a h3 {
  font-weight: normal;
  padding: 10px 0;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
@media (hover: hover) {
  .news .container a:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .news .container a:active {
    opacity: 0.6;
  }
}

/*Works --front
----------------------------------------------*/
.works {
  background-color: var(--sub-col);
  padding: 80px 20px 40px 20px;
  position: relative;
  top: -80px;
}

/*sec-tittle common*/
.works .sec_title_box {
  border-bottom: 4px solid var(--main-col);
  margin-bottom: 60px;
}

/* モーダルを開くボタン */
.modal_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
  gap: 3em;
  justify-content: center;
  margin-bottom: 50px;
}

.modal_card {
  width: 300px;
  aspect-ratio: 6/7;
  position: relative;
  background-color: white;
}
/*flexの末調整用*/
.modal_cards::after {
  content: "";
  display: block;
  width: 638px;
} /**/

.modal_card .container {
  padding: 15px 15px 0px;
  height: 140px;
  position: relative;
}
.modal_card .container p:nth-child(1) {
  color: var(--sub-gray);
  font-family: var(--font-en2);
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.modal_card .container h3 {
  color: var(--font-col);
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 25px;
}
.modal_card ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  bottom: 12px;
}
.modal_card ul li {
  color: var(--sub-gray);
  font-size: 12px;
  padding-left: 10px;
  padding-right: 15px;
  position: relative;
}
.modal_card ul li::before {
  content: "#";
  color: var(--sub-gray);
  font-size: 12px;
  padding-right: 15px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (hover: hover) {
  .modal_card:hover {
    transform: scale(1.05);
    filter: drop-shadow(5px 5px 3px rgba(100, 100, 100, 0.4));
    transition: 0.3s;
  }
}
@media (hover: none) {
  .modal_card:active {
    transform: scale(1.05);
    filter: drop-shadow(5px 5px 3px rgba(100, 100, 100, 0.4));
    transition: 0.3s;
  }
}

.modal_trigger {
  cursor: pointer;
}
.new-icon {
  width: 60px;
  height: 25px;
  background-color: var(--main-col);
  position: absolute;
  top: -12px;
  right: 0;
  z-index: 1;
  color: var(--font-col);
  font-weight: 500;
  font-family: var(--font-en2);
  letter-spacing: 0.1em;
  padding: 4px 5px 5px 5px;
  text-align: center;
}
.modal_card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}

/* モーダル本体 */
.modal_wrapper {
  display: none;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
}
.modal_layer {
  height: 100%;
  width: 100%;
  background: rgba(50, 50, 50, 0.9);
}
.modal_container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: calc(100% - 80px);
  margin: 60px 0;
}
.modal_inner {
  position: relative;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
}
.modal_inner img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

/*スクロールバー*/
.modal_inner::-webkit-scrollbar {
  width: 15px;
}
.modal_inner::-webkit-scrollbar-track {
  border-radius: 9999px;
}
.modal_inner::-webkit-scrollbar-thumb {
  background-color: var(--sub-gray);
  border-radius: 9999px;
}

/* モーダルを閉じるボタン */
.modal_close {
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 1;
  width: 35px;
  height: 35px;
  background: #888;
  cursor: pointer;
  transition: opacity 0.6s;
}
@media (hover: hover) {
  .modal_close:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .modal_close:active {
    opacity: 0.6;
  }
}
.modal_close:before,
.modal_close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  content: "";
}
.modal_close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal_close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal_text {
  width: 100%;
  background: rgba(50, 50, 50, 0.6);
  margin-top: 20px;
  padding: 35px 25px 25px;
}
.modal_text ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.modal_text ul li {
  color: white;
  margin-right: 15px;
  padding: 7px 15px 5px 30px;
  position: relative;
  border: 1px solid white;
  border-radius: 9999px;
  margin-bottom: 15px;
}
.modal_text ul li::after {
  content: "#";
  position: absolute;
  top: 6px;
  left: 12px;
}

.modal_text p {
  color: white;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  line-height: 1.5;
}
.modal_text h3 {
  color: white;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 25px 0 35px;
}
.modal_text h4 {
  color: white;
  font-size: 16px;
  letter-spacing: 0.1em;
  width: fit-content;
  border-bottom: 1px solid white;
  border-left: 6px solid white;
  padding: 4px 10px 5px 8px;
  margin-bottom: 15px;
}

.modal_link {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  padding: 0 0 5px 23px;
  text-align: center;
  color: white;
  letter-spacing: 0.1em;
  border-bottom: 1px solid white;
  position: relative;
}
.modal_link::before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 1px;
  width: 17px;
  height: 14px;
  border: 2px double white;
}

@media (hover: hover) {
  .modal_link:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .modal_link:active {
    opacity: 0.6;
  }
}
/*投稿コンテンツ*/
.modal_text ul.in-post {
  display: block;
}
.modal_text ul.in-post li {
  /* color: white; */
  line-height: 1.3;
  /* margin-right: 15px; */
  padding: 4px 15px 5px 30px;/**/
  /* position: relative; */
  border: none;/**/
  border-radius: initial;/**/
  margin-bottom: 10px;/**/
}
.modal_text ul.in-post li::after {
  content: "";
  background-image: url("./image/check_icon-04.svg");
  width: 20px;
  height: 20px;
  position: absolute;
  top: 4px;
  left: 0;
}

/* WORKS_SLIDER */
.slick-dots li button:before {
  color: white !important;
}


/*Service --front
----------------------------------------------*/
/*sec-tittle common*/
.service .sec_title_box {
  border-bottom: 4px solid var(--main-col);
  margin-bottom: 15px;
}
.service > p:nth-child(2) {
  margin-bottom: 100px;
  letter-spacing: 0.05em;
}
.service_contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
  gap: 50px;
  justify-content: center;
}

.service_contents li {
  width: 300px;
  margin-bottom: 60px;
}
.service_contents li:nth-last-child(1) {
  margin-bottom: 0;
}
.service_title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 5px;
  border-bottom: 3px solid var(--main-col);
  margin-bottom: 15px;
  color: var(--font-col);
}
.service_title h3 {
  font-family: var(--font-en1);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.15em;
}
.service_title p {
  font-size: 14px;
  letter-spacing: 0.2em;
  padding-bottom: 5px;
}
.service_image {
  width: 300px;
  height: 180px;
}
.service_contents li img {
  display: block;
  margin: 0 auto;
}
.service_contents li:nth-child(1) img {
  width: 170px;
}
.service_contents li:nth-child(2) img {
  width: 165px;
  padding-top: 5px;
}
.service_contents li:nth-child(3) img {
  width: 110px;
}
.service_contents li .text {
  color: var(--font-col);
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service_contents li .sub_text {
  color: var(--font-col);
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding-left: 15px;
  position: relative;
}
.service_contents li .sub_text::after {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.example p:nth-child(1) {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}
.example p:nth-child(2),
.example p:nth-child(3) {
  font-size: 12px;
}
.example p:nth-child(2) {
  margin-bottom: 5px;
}
.example p:nth-child(3) {
  margin-bottom: 20px;
}

/*About --front
----------------------------------------------*/
.about {
  background-color: var(--main-col);
  padding-top: 80px;
  padding-bottom: 120px;
}
.vision_sec {
  margin-top: 55px;
  font-family: var(--font-en1);
}
.vision_sec h3 {
  color: var(--font-col);
  font-size: 32px;
  font-family: var(--font-en1);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 35px;
}
.vision_sec p {
  color: var(--font-col);
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.vision_sec p:nth-child(2) {
  font-family: var(--font-en1);
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}
.vision_sec p:nth-child(3) {
  font-size: 22px;
  margin-bottom: 45px;
}
.vision_sec p:nth-child(3) span {
  background: linear-gradient(transparent 50%, white 50%);
  line-height: 1;
}
.vision_sec p:nth-child(4) {
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

/*footer
----------------------------------------------*/
.footer {
  background-color: var(--font-col);
  padding-top: 60px;
}
.footer .pc_nav ul {
  width: 540px;
  justify-content: space-evenly;
  margin: 0 auto;
}
.footer .pc_nav li {
  position: relative;
  padding-right: 26px;
  border-right: 2px solid white;
}
.footer .pc_nav li:nth-child(5) {
  padding-right: initial;
  border-right: none;
}

.footer a.sns {
  color: white;
  font-family: var(--font-en2);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
  width: fit-content;
  display: block;
  margin: 25px auto 25px;
  padding-left: 20px;
}
.footer a.sns::after {
  content: "";
  background-image: url("./image/instagram_logo.png");
  background-size: 100%;
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
}

@media (hover: hover) {
  .footer a.sns:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}
@media (hover: none) {
  .footer a.sns:active {
    opacity: 0.7;
    transition: 0.3s;
  }
}

.footer .pc_nav li a {
  font-family: var(--font-en2);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.15em;
  color: white;
}
@media (hover: hover) {
  .footer .pc_nav li a:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .footer .pc_nav li a:active {
    opacity: 0.6;
  }
}
.copy_right {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 50px;
}
.copy_right small {
  color: white;
}

/*news-archive用
------------------------------------*/
.news.archive {
  background-color: initial;
  min-height: calc(100dvh - 300px);
  position: relative;
  top: 0;
}
.news.archive .wrap {
  padding-bottom: 40px;
}
/*sec-tittle common*/
.news.archive .sec_title_box {
  border-bottom: 4px solid var(--main-col);
  margin-bottom: 50px;
}
.news.archive .container a p {
  color: var(--sub-gray);
}
.news.archive .container a h2 {
  font-weight: normal;
  padding: 10px 0;
  letter-spacing: 0.02em;
  line-height: 1.3;
  font-size: 18px;
}

/*works-archiveページ
-------------------------------------*/
.works.archive {
  background-color: initial;
  min-height: calc(100dvh - 300px);
  position: relative;
  top: 0;
}
.works_bg_col {
  background-color: var(--sub-col);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
}

.works.archive .modal_card .container h2 {
  color: var(--font-col);
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 25px;
}

/*Individual-Service
----------------------------------------------*/
/*sec-tittle common*/
.service.individual .sec_title_box {
  margin-top: 80px;
}
.service.individual .service_contents {
  margin-bottom: 100px;
}
.service.individual .service_title h2 {
  font-family: var(--font-en1);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.15em;
}

/* STEP */
.service_step {
  background-color: var(--main-col);
  padding: 60px 0 100px;
  margin-bottom: 100px;
}
.service_step .sec_title_box {
  display: block;
  border: none;
  text-align: center;
  margin: 0 auto 35px;
}
.service_step h2 {
  letter-spacing: 0.2em;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.service_step h2::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -8px;
  left: -4px;
  z-index: -1;
  border-bottom: 10px solid white;
}
.service_step .sec-rb {
  font-size: 14px;
  letter-spacing: 0.1em;
  margin: 0;
}
.service_step ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 180px));
  gap: 25px;
  justify-content: center;
}

.service_step ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  min-height: 70px;
  background-color: white;
  position: relative;
}
.service_step ul li p {
  font-weight: bold;
  font-size: 16px;
  position: relative;
  line-height: 1.4;
  letter-spacing: 0.05em;
  position: relative;
}
.service_step ul li > span {
  font-family: var(--font-en1);
  font-weight: 600;
  border: 2px solid var(--font-col);
  line-height: 1;
  padding: 4px 7px 0;
  position: absolute;
  top: 4px;
  left: 5px;
}
.service_step ul li p span {
  font-size: 12px;
  font-weight: normal;
}
.service_step ul li:nth-last-child(1) span {
  padding: 4px 5px 0;
}
.service_step ul li:nth-child(3) p,
.service_step ul li:nth-child(4) p,
.service_step ul li:nth-child(6) p {
  padding-left: 15px;
}
.service_step ul li::after {
  content: "";
  border-bottom: 4px solid var(--main-col);
  border-right: 4px solid var(--main-col);
  width: 12px;
  height: 12px;
  transform: rotate(-45deg);
  position: absolute;
  top: 52px;
  right: 6px;
  z-index: 1;
}
.service_step ul li:nth-last-child(1):after {
  content: "";
  border: none;
}

/* ATTENTION */
.service_attention {
  margin-bottom: 100px;
}

.service_attention .sec_title_box {
  border: none;
  margin: 0 auto 60px;
}
.service_attention h2 {
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.2em;
  position: relative;
}
.service_attention h2::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -2px; /**/
  left: -4px;
  z-index: -1;
  border-bottom: 12px solid var(--main-col);
}
.service_attention ul li {
  border-left: 2px solid var(--font-col);
  border-bottom: 2px solid var(--font-col);
  padding-left: 8px;
  padding: 20px 20px 20px 25px;
  margin-bottom: 60px;
}
.service_attention ul li h3 {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding-left: 25px;
  margin-bottom: 15px;
  position: relative;
}
.service_attention ul li h3::after {
  content: "!";
  background-color: var(--main-col);
  font-weight: bold;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -3px;
  left: 0;
  padding: 3px 0 0 7px;
}
.service_attention ul li:nth-last-child(1) h3::after {
  content: "";
  background-color: initial;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
}
.service_attention ul li:nth-last-child(1) h3 {
  border-left: 5px solid var(--font-col);
  padding-left: 12px;
  padding-top: 3px;
}
.service_attention ul li p {
  color: var(--font-col);
  font-size: 16px;
  line-height: 1.5;
}
.service_attention ul li:nth-child(1) p:nth-child(3),
.service_attention ul li:nth-child(1) p:nth-child(4) {
  font-size: 12px;
  position: relative;
  margin-left: 40px;
}
.service_attention ul li:nth-child(1) p:nth-child(3) {
  margin-bottom: 5px;
}
.service_attention ul li:nth-child(1) p:nth-child(3)::after,
.service_attention ul li:nth-child(1) p:nth-child(4)::after {
  content: "";
  width: 25px;
  height: 1px;
  border-bottom: 1px solid var(--font-col);
  position: absolute;
  top: 7px;
  left: -35px;
}
.service_attention ul li:nth-child(1) p:nth-child(2),
.service_attention ul li:nth-child(1) p:nth-child(4) {
  margin-bottom: 10px;
}
.service_attention ul li:nth-child(1) p:nth-child(5) {
  font-size: 10px;
  letter-spacing: 0.08em;
}
/*service-confirm*/
.service_confirm {
  background-color: var(--sub-col);
  padding-bottom: 80px;
  padding-top: 80px;
}
.service_confirm .sec_title_box {
  display: block;
  border: none;
  margin: 0 auto 35px;
}
.service_confirm h2 {
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.3em;
  position: relative;
  width: fit-content;
  margin: 0 auto 10px auto;
}
.service_confirm h2::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -2px;
  left: -4px;
  z-index: -1;
  border-bottom: 12px solid var(--main-col);
}
.service_confirm .sec-rb {
  font-size: 12px;
  margin: 0;
  letter-spacing: 0.05em;
}
.service_confirm ol {
  border: 2px solid var(--font-col);
  padding: 50px;
  margin-bottom: 60px;
}
.service_confirm ol li {
  margin-bottom: 20px;
}
.service_confirm ol li h3 {
  font-size: 18px;
  color: var(--font-col);
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.7;
  padding-left: 5px;
}
li::marker {
  font-weight: bold;
  font-family: var(--font-en2);
}
.service_confirm ol li p {
  font-size: 14px;
  color: var(--font-col);
  letter-spacing: 0.1em;
  line-height: 1.7;
  padding-left: 5px;
}
.order_btn {
  display: block;
  width: 210px;
  height: 55px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  letter-spacing: 0.05em;
  background-color: var(--font-col);
  text-align: center;
  padding-top: 21px;
  margin: 0 auto;
  transition: 0.3s;
}
@media (hover: hover) {
  .order_btn:hover {
    background-color: var(--sub-gray);
  }
}
@media (hover: none) {
  .order_btn:active {
    background-color: var(--sub-gray);
  }
}

/*Individual -About
----------------------------------------------*/
.about.individual {
  background-color: initial;
}
/*sec-tittle common*/
.about.individual .sec_title_box {
  border-bottom: 4px solid var(--main-col);
  margin-bottom: 100px;
}
.about.individual .vision_sec {
  width: 90%;
  margin: 0 auto 120px auto;
}
.about.individual .vision_sec h2 {
  color: var(--font-col);
  font-size: 32px;
  font-family: var(--font-en1);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 35px;
}
.about.individual .vision_sec p:nth-child(3) span {
  background: linear-gradient(transparent 50%, var(--main-col) 50%);
  line-height: 1;
}
.about.individual .profile_sec {
  width: 90%;
  margin: 0 auto;
}
.profile_sec h2 {
  color: var(--font-col);
  font-size: 32px;
  font-family: var(--font-en1);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 35px;
}
.profile_sec p:nth-child(2) {
  color: var(--font-col);
  font-family: var(--font-en1);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.profile_sec p:nth-child(2) span:nth-child(1) {
  font-size: 12px;
  line-height: 1;
  padding: 0 3px;
}
.profile_sec p:nth-child(2) span:nth-child(2) {
  font-family: var(--font-jp);
  font-size: 12px;
  line-height: 1;
  padding-left: 10px;
}
.profile_sec p:nth-child(3) {
  width: fit-content;
  font-family: var(--font-en1);
  color: var(--font-col);
  font-weight: 500;
  font-size: 48px;
  letter-spacing: 0.15em;
  background: linear-gradient(transparent 50%, var(--main-col) 50%);
  margin-bottom: 30px;
}
.profile_sec p:nth-child(4),
.profile_sec p:nth-child(5),
.profile_sec p:nth-child(6),
.profile_sec p:nth-child(7) {
  color: var(--font-col);
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-bottom: 20px;
}
.profile_sec p:nth-child(7) {
  margin-bottom: 60px;
}
.profile_sec p:nth-child(8) {
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 14px;
  margin-bottom: 15px;
}
.profile_sec p:nth-child(9),
.profile_sec p:nth-child(10),
.profile_sec p:nth-child(11),
.profile_sec p:nth-child(12) {
  font-size: 14px;
  letter-spacing: 0.05em;
  border-left: 1px solid var(--font-col);
  margin-left: 15px;
  margin-bottom: 10px;
  padding-left: 15px;
  line-height: 1.4;
}

/*single 投稿ページ用
----------------------------------------*/
.news.single {
  background-color: initial;
  position: relative;
  top: initial;
}
.news.single .sec_title_box {
  border-bottom: 4px solid var(--main-col);
  margin: 60px 0 70px 5%;
}

/*個別投稿ページ*/
article.single_news {
  width: 70%;
  max-width: 1000px;
  min-width: 600px;
  margin: 0 auto 100px auto;
}

.single_news .news_date {
  font-family: var(--font-en2);
  color: var(--sub-gray);
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.single_news .news_title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
  color: var(--font-col);
  line-height: 1.5;
}
.news_thumbnail {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.news_content > p {
  font-size: 16px;
  margin-bottom: 1.4em;
  line-height: 1.5;
}

/*個別投稿ページネーション*/
.single_paginate_links {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto 50px auto;
  text-align: center;
}
.single_paginate_links p {
  display: block;
  width: fit-content;
  margin: 0 5px;
  color: var(--font-col);
}
@media (hover: hover) {
  .single_paginate_links p:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .single_paginate_links p:active {
    opacity: 0.6;
  }
}

/*404ページ用
-------------------------------------------*/
.error-page {
  width: 100%;
  height: calc(100dvh - 250px);
  position: relative;
}
.error-page .container {
  width: 100%;
  max-width: 700px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 55px 5% 35px;
}
.error-page .container p {
  color: var(--font-col);
  text-align: center;
  letter-spacing: 0.1em;
}
.error-page .container p:nth-child(1) {
  font-size: 70px;
  font-family: var(--font-en1);
  font-weight: 500;
  color: var(--sub-gray);
  letter-spacing: 0.15em;
}

/*Contact_form
----------------------------------------------*/
.contact_form {
  width: 700px;
  margin: 50px auto 70px auto;
  padding: 3.5% 5% 1% 5%;
}
.contact_form h1 {
  font-size: 34px;
  font-family: var(--font-en1);
  color: var(--font-col);
  letter-spacing: 0.1em;
}
.contact_form p {
  font-size: 14px;
  font-weight: bold;
  color: var(--font-col);
}
.contact_form > p:nth-child(2) {
  margin-top: 5px;
}
.contact_form > p:nth-child(3) {
  font-size: 12px;
  font-weight: normal;
  margin-top: 45px;
  margin-bottom: 10px;
}
.contact_form > p:nth-child(4) {
  font-weight: normal;
  font-size: 12px;
  margin-bottom: 50px;
  line-height: 1.3;
}
.contact_form dt {
  margin-bottom: 5px;
}
.contact_form dd {
  margin-bottom: 30px;
}
.contact_form dd input {
  width: 100%;
  border: 1px solid var(--sub-gray);
  border-radius: 5px;
  font-weight: normal;
  padding-left: 5px;
}
/* ドロップダウンメニュー */
.cf7__select {
  width: fit-content;
  border: 1px solid var(--sub-gray);
  border-radius: 5px;
  color: var(--sub-gray);
  position: relative;
}
.cf7__select::before {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 999;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid var(--sub-gray);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  pointer-events: none;
  content: "";
}
.cf7__select select {
  color: var(--sub-gray);
  padding: 7px 30px 5px 10px;
  cursor: pointer;
}
.contact_form dd textarea {
  width: 100%;
  min-height: 250px;
  border: 1px solid var(--sub-gray);
  border-radius: 5px;
  font-weight: normal;
  padding: 5px;
  line-height: 1.3;
  font-size: 14px;
}
.contact_form dd p span {
  margin-top: 5px;
  color: red;
}
.confirm_btn {
  display: block;
  margin: 20px auto 0 auto;
  padding: 10px 30px 12px 30px;
  color: white;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  background-color: var(--font-col);
  transition: all 0.4s;
}
@media (hover: hover) {
  .confirm_btn:hover {
    background-color: var(--sub-gray);
    color: white;
  }
}
@media (hover: none) {
  .confirm_btn:active {
    background-color: var(--sub-col);
    color: white;
  }
}

/*確認ページ用*/
.contact_form-confirm {
  width: 700px;
  margin: 50px auto 70px auto;
  padding: 3.5% 5% 1% 5%;
}
.contact_form-confirm h1 {
  font-size: 34px;
  font-family: var(--font-en1);
  color: var(--font-col);
}
.contact_form-confirm p {
  font-size: 14px;
  font-weight: bold;
  color: var(--font-col);
}
.contact_form-confirm > p:nth-child(2) {
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-top: 5px;
  margin-bottom: 40px;
}
.contact_form-confirm dt {
  margin-bottom: 10px;
}
.contact_form-confirm dd {
  word-break: break-all;
  margin-bottom: 30px;
}
.contact_form-confirm dd:nth-child(12) {
  min-height: 200px;
}
.contact_form-confirm dd p {
  font-weight: normal;
  white-space: pre-wrap;
  line-height: 1.5;
}

/*確認ページ用btn*/
.btn_container {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  width: 100%;
  margin: 0 auto 40px auto;
}

.back_btn input {
  display: inline-block;
  width: 100px;
  height: 30px;
  color: white;
  letter-spacing: 0.2em;
  background-color: var(--sub-gray);
  border-radius: 9999px;
  padding-bottom: 2px;
  transition: all 0.4s;
}
@media (hover: hover) {
  .back_btn input:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .back_btn input:active {
    opacity: 0.6;
  }
}

.submit_btn input {
  display: inline-block;
  width: 100px;
  height: 30px;
  color: white;
  background-color: var(--font-col);
  border-radius: 9999px;
  transition: all 0.4s;
  padding-bottom: 2px;
  letter-spacing: 0.2em;
}
@media (hover: hover) {
  .submit_btn input:hover {
    color: var(--sub-gray);
    background-color: var(--main-col);
  }
}
@media (hover: none) {
  .submit_btn input:active {
    color: var(--sub-gray);
    background-color: var(--main-col);
  }
}
.submit_btn span {
  display: none;
}

/*Thanks*/
.thanks {
  width: 100%;
  height: calc(100dvh - 250px);
  position: relative;
}

.thanks .container {
  width: 700px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 55px 5% 35px;
}

.thanks .container h2 {
  text-align: center;
  color: var(--font-col);
  font-family: var(--font-jp);
  letter-spacing: 0.05em;
}
.thanks .container > p {
  text-align: center;
  color: var(--font-col);
  font-family: var(--font-en2);
  letter-spacing: 0.1em;
  margin: 10px 0 50px;
}
.thanks .container > p:nth-child(4) {
  text-align: right;
  color: var(--font-col);
  font-family: var(--font-en2);
  letter-spacing: 0.05em;
  margin: 50px 0 0 0;
}
.thanks .container .text {
  width: 90%;
  color: var(--main-col);
  line-height: 2;
  margin: 0 auto;
}
.thanks .container .text p {
  line-height: 1.7;
}

/* reCAPTCHA
----------------------------------------------*/
.recaptcha {
  text-align: center;
}
.recaptcha p {
  line-height: 1.4;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.05em;
}
.recaptcha p a {
  font-weight: bold;
  color: #9797d7;
}
/* reCAPTCHAバッジを非表示にする */
.grecaptcha-badge {
  visibility: hidden;
}

/*----------------------------------------------
|                ★ SP-size ★                 |
----------------------------------------------*/

@media screen and (max-width: 767px) {
  /*SP-header
  -------------------------------*/
  .header-title {
    width: 26px;
  }
  .header_container a .container {
    padding-left: 8px;
  }
  .author_name {
    font-size: 36px;
  }
  .job_name {
    font-size: 16px;
  }

  /*ハンバーガーメニュー*/
  .sp_menu_btn {
    position: relative;
    top: 10px;
    z-index: 1000;
    cursor: pointer;
    width: 33px;
    height: 30px;
    display: block;
  }
  .sp_menu_btn span {
    width: 33px;
    height: 4px;
    display: block;
    background: var(--font-col);
    position: relative;
    top: 0;
    transition: 0.3s;
  }
  .sp_menu_btn span::before,
  .sp_menu_btn span::after {
    width: 33px;
    height: 4px;
    content: "";
    background: var(--font-col);
    position: absolute;
    transition: 0.3s;
  }
  .sp_menu_btn span::before {
    top: -10px;
  }
  .sp_menu_btn span::after {
    top: 10px;
  }

  /* メニューが開いた時 */
  .open span::before {
    display: none;
  }
  .open span {
    transform: rotate(45deg);
    bottom: 0;
    background-color: white;
  }
  .open span::after {
    transform: rotate(90deg);
    top: 0;
    background-color: white;
  }
  .pc_nav {
    display: none;
    width: 100%;
  }
  .sp_nav {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100vh;
    background: rgba(33, 33, 33, 0.8);
  }
  .sp_nav ul {
    display: flex;
    flex-flow: column;
    width: 100%;
    justify-content: center;
    padding-top: 17%;
  }
  .sp_nav li {
    margin: 0 auto;
    font-size: 30px;
    width: 50%;
    padding: 25px 0;
    text-align: center;
  }
  .sp_nav li a {
    display: block;
    color: white;
    font-family: var(--font-en1);
    font-weight: 300;
    letter-spacing: 0.2em;
  }
  .sp_nav li a:hover {
    opacity: 0.7;
  }
  .sp_nav .copy_right {
    color: white;
    font-size: 16px;
    position: fixed;
    bottom: 20px;
    width: 100%;
    margin: 0 auto;
  }
  .sp_nav .copy_right small {
    color: white;
    font-size: 16px;
  }

  /*SP-first-vw --front
  --------------------------------*/
  .fv_image {
    width: 43%;
    min-width: 230px;
    top: 41%;
    left: 52%;
  }
  .fv_title {
    top: 42%;
    left: 0;
    padding-left: 10%;
  }
  .first-vw p:nth-child(1) {
    font-size: clamp(54px, 14vw, 80px);
    margin-bottom: 180px;
    line-height: 0.9;
  }
  .first-vw p:nth-child(2) {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .first-vw p:nth-child(3) {
    font-size: 12px;
  }

  /*SP-news --front
  ------------------------------*/
  .news .wrap {
    width: 90%;
  }
  .news .container a {
    font-size: 14px;
  }

  /*SP-works --front
  ------------------------------*/
  .modal_container {
    width: 90%;
  }
  .modal_text ul li {
    padding: 6px 10px 4px 20px;
  }
  .modal_text ul li::after {
    left: 9px;
  }
  .modal_text h3 {
    font-size: 20px;
    line-height: 1.4;
  }
  /*SP-Service --front
  ------------------------------*/
  .service > p:nth-child(2) {
    font-size: 12px;
    line-height: 1.5;
  }

  /*SP-About --front
  -------------------------------*/
  .vision_sec p:nth-child(2) {
    font-size: 48px;
  }
  .vision_sec p:nth-child(3) {
    font-size: 20px;
  }
  .vision_sec p:nth-child(3) span {
    background: linear-gradient(transparent 40%, white 40%);
  }
  .vision_sec p:nth-child(4) {
    font-size: 16px;
  }

  /*SP-footer --front
  -------------------------------*/
  .footer .pc_nav {
    display: block;
  }
  .footer .pc_nav ul {
    width: 330px;
  }
  .footer .pc_nav li {
    padding-right: 10px;
    padding-left: 0;
  }
  .footer .pc_nav li a {
    font-size: 12px;
  }

  /*SP-news-archive用
  ------------------------------*/
  .news .container a h2 {
    font-size: 16px;
  }

  /*SP-service-individual  
  -----------------------------*/
  .service_attention ul li p {
    font-size: 14px;
  }
  .service_confirm ol li h3 {
    font-size: 16px;
  }
  .service_confirm ol {
    padding: 20px 15px 5px 35px;
  }
  /*SP-about-individual  
  -----------------------------*/
  .about.individual .vision_sec {
    width: 100%;
  }
  .about.individual .profile_sec {
    width: 100%;
  }

  /*SP-single
  -----------------------------*/
  .news.single {
    background-color: initial;
    position: relative;
    top: initial;
  }
  .news.single .sec_title_box {
    border-bottom: 4px solid var(--main-col);
    margin-left: 0;
  }
  /*個別投稿ページ*/
  article.single_news {
    width: 100%;
    max-width: 550px;
    min-width: 300px;
  }
  .single_news .news_title {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.2;
  }
  .news_content > p {
    font-size: 16px;
  }

  /*SP-Contact_form7
  --------------------------*/
  .contact_form {
    width: 90%;
    padding-top: 30px;
  }
  /*確認ページ用*/
  .contact_form-confirm {
    width: 90%;
    padding-top: 30px;
  }
  /*Thanks*/
  .thanks {
    height: calc(100dvh - 250px);
  }
  .thanks .container {
    width: 90%;
  }
  .thanks .container h2 {
    font-size: 18px;
    line-height: 1.3;
  }
  .thanks .container .text {
    width: 100%;
  }
  /* reCAPTCHA
----------------------------------------------*/
  .recaptcha p {
    font-size: 10px;
    letter-spacing: 0.04em;
  }
}

/*********************************************
|---------------- breadcrumb ----------------|
*********************************************/
.breadcrumb_container {
  background-color: var(--sub-col);
}
.breadcrumb {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 10px 0 0;
  width: fit-content;
}

.breadcrumb li {
  margin-right: 20px;
  padding-bottom: 10px;
}
.breadcrumb li a {
  position: relative;
  padding-right: 15px;
}
.breadcrumb li a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 1px solid var(--sub-gray);
  border-right: 1px solid var(--sub-gray);
  position: absolute;
  transform: rotate(-45deg);
  top: 7px;
  right: -4px;
}
.breadcrumb li:nth-child(1) {
  padding-left: 17px;
}
.breadcrumb li:nth-child(1) a::before {
  content: "";
  background-image: url("./image/home_logo.svg");
  position: absolute;
  width: 20px;
  height: 16px;
  top: 2px;
  left: -20px;
  color: var(--sub-gray);
}
.breadcrumb li a::after:nth-last-child(1) {
  content: "";
}
.breadcrumb li span {
  font-family: var(--font-en2);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--sub-gray);
}
.breadcrumb li:nth-last-child(1) span {
  border-bottom: 1px solid var(--sub-gray);
}
.breadcrumb li span {
  line-height: 1.5;
}
