@charset "UTF-8";
@import url(/css/root.css);
/* ----------------------------------------------

基本設定

------------------------------------------------*/
* {
  box-sizing: border-box;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--maincol);
}

body {
  background: url(/images/bg01.jpg) top left/64px repeat;
}

p {
  text-align: justify;
  font-weight: normal;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

picture {
  display: block;
}

/*見切れ画像の処理*/
.cut_off {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cut_off.cover img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: unset;
  height: 100%;
}
.cut_off.contain img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: unset;
  height: 100%;
}

.yugo, .yugo * {
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

.corm, .corm * {
  font-family: "Cormorant Garamond", serif;
}

/*1行テキストの処理*/
span.br {
  display: block;
  font-weight: normal;
}
span.br.mb {
  margin-bottom: 1.25em;
}

/*hoverするとボーダーが出る*/
.hov_border {
  /*hoverするとボーダーが消える*/
}
.hov_border a:not(:has(.txt)) {
  position: relative;
}
.hov_border a:not(:has(.txt))::after {
  content: "";
  background: var(--gray01);
  width: 100%;
  height: 1px;
  transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform-origin: right top;
  transform: scale(0, 1);
  position: absolute;
  bottom: 0;
  left: 0;
}
.hov_border a .txt {
  position: relative;
}
.hov_border a .txt::after {
  content: "";
  background: var(--gray01);
  width: 100%;
  height: 1px;
  transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform-origin: right top;
  transform: scale(0, 1);
  position: absolute;
  bottom: 0;
  left: 0;
}
.hov_border a:hover:not(:has(.txt))::after {
  transform: scale(1, 1);
}
.hov_border a:hover .txt::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.hov_border.no_border a:not(:has(.txt))::after {
  transform: scale(1, 1);
  transform-origin: left top !important;
}
.hov_border.no_border a .txt::after {
  transform: scale(1, 1);
  transform-origin: left top !important;
}
.hov_border.no_border a:hover:not(:has(.txt))::after {
  transform: scale(0, 1);
  transform-origin: right top !important;
}
.hov_border.no_border a:hover .txt::after {
  transform: scale(0, 1);
  transform-origin: right top !important;
}
.hov_border.white a .txt::after {
  background: #fff;
}
.hov_border.blue a .txt::after {
  background: var(--mainblue);
}

.grade {
  background: linear-gradient(to right, var(--orange1) 0%, var(--orange2) 50%, var(--orange2) 50.01%, var(--orange1) 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
}

#container {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

#contents {
  position: relative;
  z-index: 1;
  margin-bottom: var(--m300);
}

h1.none {
  display: none;
}

/*gsapの機能*/
.rect {
  position: relative;
  overflow: hidden;
}
.rect .curtain {
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(/images/bg01.jpg) top left/64px repeat;
  top: 0;
  left: 0;
  z-index: 10;
}

/*ヘッダー*/
.p-header__main {
  padding-top: var(--m60);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.p-header__logo {
  width: 61.66%;
}
.p-header__catch__text {
  letter-spacing: 0.3em;
}
.p-header__address {
  padding: var(--m27) 0 var(--m27) var(--m30);
  background: url(/images/bg02.jpg) top left/67px repeat;
  width: 100%;
}
.p-header__address__name {
  font-size: var(--fs14);
  font-weight: bold;
  color: var(--gray01);
  display: block;
  line-height: 2;
}
.p-header__address__add {
  display: block;
  font-size: var(--fs13);
  color: var(--gray01);
  line-height: 1.7;
}
.p-header__address__tel {
  display: block;
  font-size: var(--fs13);
  color: var(--gray01);
}
.p-header__address__tel a {
  display: block;
  font-size: var(--fs13);
  color: var(--gray01);
}
.p-header__list {
  position: relative;
}
.p-header__list__inner {
  padding-top: var(--m30);
  max-width: 960px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-header__list__li:not(.insta_bt) .txt {
  font-size: var(--fs14_16);
}
.p-header__list__li.insta_bt img {
  width: var(--m20_30);
}

.subpage .p-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: url(/images/bg01.jpg) top left/64px repeat;
}
.subpage .p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--m16) 5%;
  border-bottom: var(--gray05) 1px solid;
}
.subpage .p-header__main {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
}
.subpage .p-header__list {
  width: calc(95% - 100px);
}
.subpage .p-header__list__inner {
  padding: 0;
  width: 100%;
  margin-right: 0;
}
.subpage .p-header__logo {
  width: 100px;
}
.subpage .p-header .p-header__catch__text {
  display: none;
}
.subpage .p-header .p-header__address {
  display: none;
}

/*ナビゲーション*/
nav {
  min-width: unset;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  z-index: 750;
}
nav .bg {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(0);
  transition: background-color 0.5s;
}
nav .inner {
  margin-left: auto;
  padding: 1rem;
  width: 100%;
  max-width: 600px;
  background: url(/images/bg01.jpg) top left/64px repeat;
  overflow: scroll;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.8s;
}
nav .inner .logo {
  margin: 0 auto var(--m40);
  width: 90%;
  max-width: 350px;
}
nav .inner.close {
  transform: translateX(150%);
}
nav .mainmenu {
  margin-bottom: var(--m40);
}
nav .mainmenu .p-header__list__li__link .txt {
  font-size: var(--fs18px);
}
nav .mainmenu .p-header__list__navli {
  width: 100%;
}
nav .mainmenu .p-header__list__navli__link {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.5rem;
  padding: var(--m10px);
  height: 100%;
  width: 100%;
  margin-bottom: var(--m16px);
}
nav .mainmenu .p-header__list__navli__link .txt {
  font-size: var(--fs18_25);
  line-height: 1;
}
nav .mainmenu .p-header__list__navli__link img {
  width: var(--m20_30);
}
nav .mainmenu .p-header__list__navli.mail a {
  border: 2px solid;
  background-color: var(--maincol);
  border-color: var(--gray03);
}
nav .mainmenu .p-header__list__navli.mail a .txt {
  color: #fff;
}
nav .mainmenu .p-header__list__navli.insta a {
  border: 2px solid;
  border-bottom: unset !important;
  background: linear-gradient(to right, var(--orange1), var(--orange2));
  border-color: var(--orange1);
}
nav .mainmenu .p-header__list__navli.insta a .txt {
  color: #fff;
}
nav.open {
  opacity: 1;
}
nav.open .bg {
  background-color: rgba(0, 0, 0, 0.8);
}
nav.nav_none {
  transform: translateX(150%);
  opacity: 0;
}

/*ハンバーガーメニュー*/
.ham_menu {
  cursor: pointer;
  z-index: 10001;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ham_menu .ham_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  grid-gap: 6px;
  transition: all 0.5s;
}
.ham_menu .ham_inner::before, .ham_menu .ham_inner::after {
  content: "";
  right: 0;
  transition: all 0.5s;
  display: block;
  width: 100%;
  height: 2px;
  transform-origin: center;
  background-color: var(--maincol);
  /* position: absolute;
  top: 50%;
  transform: translateY(-50%); */
}
.ham_menu .ham_inner .bar {
  display: block;
  width: 100%;
  height: 2px;
  transform-origin: center;
  background-color: var(--maincol);
}
.ham_menu .ham_inner.open {
  grid-gap: 0;
}
.ham_menu .ham_inner.open .bar {
  display: none;
}
.ham_menu .ham_inner.open.rotate::before {
  transform: translateY(50%) rotate(45deg);
}
.ham_menu .ham_inner.open.rotate::after {
  transform: translateY(-50%) rotate(-45deg);
}
.ham_menu .text {
  font-size: var(--fs13);
  color: var(--maincol);
  font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  display: block;
}

/*フッター*/
.p-footer {
  border-top: 1px solid var(--gray05);
  padding: var(--m50) 0 var(--m45);
}
.p-footer__list {
  position: relative;
  margin-bottom: var(--m100);
}
.p-footer__list__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-footer__list__li:not(.insta_bt) .txt {
  font-size: var(--fs14_16);
}
.p-footer__list__li.insta_bt img {
  width: var(--m20_30);
}
.p-footer__logo {
  width: clamp(7.5rem, 1.25rem + 16.67vw, 9.25rem); /*120~148px(600~768px)*/
  margin: 0 auto var(--m30);
}
.p-footer .copy {
  text-align: center;
}
.p-footer .copy small {
  font-size: var(--fs13);
  color: var(--gray05);
}

/*ボタン設定*/
.c-button {
  width: 100%;
  max-width: 400px;
}
.c-button__link {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid var(--maincol);
  padding: 0.5em;
}
.c-button__text {
  font-size: 16px;
  color: var(--maincol);
}

/*パンくず*/
.breadcrumb {
  padding: var(--m10px) 0 var(--m60);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 0.5rem;
}
.breadcrumb li {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.breadcrumb li * {
  font-size: 14px;
}
.breadcrumb li:not(:last-of-type)::after {
  content: ">";
  display: inline-block;
  font-size: 14px;
  margin-left: 0.5rem;
}

/*top_return*/
.top_return {
  width: var(--m42_60);
  aspect-ratio: 1/1;
  margin-left: auto;
  z-index: 300;
  transition: opacity 0.5s, transform 1s, background-color 0.5s, z-index 1s, bottom 0.5s;
  transform: translateY(100%);
}
.top_return a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--maincol);
  width: 100%;
  height: 100%;
}
.top_return a img {
  width: 62.71%;
}
.top_return.return_fixed {
  opacity: 1;
  transform: translateY(0%);
  position: fixed;
  bottom: 0%;
  right: 0;
}
.top_return.default {
  transform: translateY(0%);
}

/*縦書きキャッチフレーズ*/
.c-catch {
  writing-mode: vertical-rl;
}
.c-catch__text {
  font-size: var(--fs18_25);
  font-weight: 400;
  display: block;
  line-height: 2.5;
}

/*タイトル*/
.c-title {
  display: flex;
  flex-direction: column;
}
.c-title:not(.vert) {
  align-items: center;
  grid-gap: 10px 0;
  margin-bottom: var(--m60);
}
.c-title.vert {
  writing-mode: vertical-rl;
}
.c-title.vert .c-title__jp {
  letter-spacing: 0.1em;
}
.c-title.vert .c-title__en {
  letter-spacing: 0.15em;
}
.c-title__jp {
  font-size: var(--fs20_30);
}
.c-title__en {
  font-size: var(--fs16);
  line-height: 1;
  color: var(--gray02);
}

/* load_anime
----------------------------------------------------------------- */
.load_anime {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  opacity: 1;
  top: 0;
  left: 0;
  z-index: 100000;
  transform: translateX(0%);
  transition: all 0.5s;
  background: url(/images/bg01.jpg) top left/64px repeat;
}
.load_anime.complate {
  animation: disnone 1s 0s linear forwards;
}
.load_anime.opacity {
  background: unset;
}
.load_anime.opacity .load_logo {
  display: none;
}
.load_anime.reload {
  display: none !important;
  z-index: -100 !important;
  transform: translateX(-500%) !important;
  opacity: 0 !important;
}
.load_anime__contet {
  width: 60%;
  max-width: 300px;
  opacity: 0;
}
.load_anime__contet .cls-1 {
  fill: #f39800;
}
.load_anime__contet.load {
  opacity: 1;
}

@keyframes disnone {
  0% {
    display: flex;
    z-index: 100000;
    transform: translateX(0%);
    opacity: 1;
  }
  99% {
    display: flex;
    z-index: 100000;
    transform: translateX(0%);
    opacity: 0;
  }
  100% {
    display: none;
    z-index: -100;
    transform: translateX(-500%);
    opacity: 0;
  }
}
/* ----------------------------------------------
  トップページ
------------------------------------------------*/
@keyframes scrollDown {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(70%);
  }
}
@keyframes scrollDown02 {
  0% {
    top: 50%;
  }
  100% {
    top: 80%;
  }
}
/*swiperのボタン設定*/
#container .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  grid-gap: var(--m16) var(--m40);
  justify-content: center;
  left: unset;
  bottom: var(--m40);
  right: 4.615%;
  width: -moz-fit-content;
  width: fit-content;
}

#container .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  margin: 0;
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 0;
  position: relative;
  z-index: 1;
}

#container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--gray01);
}

.c-content__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  grid-gap: var(--m50) 2.125%;
}
.c-content__textArea {
  width: 54.625%;
  padding-left: 5%;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  grid-gap: var(--m35) min(8.125vw, 110px);
}
.c-content__textArea .c-title,
.c-content__textArea .c-catch {
  margin-right: min(3.75vw, 60px);
}
.c-content__textArea__text {
  writing-mode: vertical-rl;
}
.c-content__textArea__text__span {
  line-height: min(4vw, 3em);
  font-size: var(--fs14_16);
  display: block;
  white-space: nowrap;
}
.c-content__imageArea {
  width: 43.25%;
  aspect-ratio: 70/45;
  overflow: hidden;
}
.c-content__imageArea img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv {
  margin-bottom: var(--m160);
  position: relative;
}
.p-mv .p-header__inner {
  display: flex;
  flex-wrap: wrap;
}
.p-mv .p-header__main {
  order: 2;
  width: 18.75%;
  min-width: 250px;
  min-height: min(80vw, 700px);
}
.p-mv .p-header__list {
  order: 3;
  width: 81.25%;
}
.p-mv .p-header__list__inner {
  margin-left: auto;
  margin-right: 0;
}
.p-mv .p-header__list .insta_bt {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--m70);
  aspect-ratio: 70/72;
  border-top-right-radius: var(--m16);
  background: url(/images/bg01.jpg) top left/64px repeat;
  transform: translateY(-100%);
  z-index: 10;
}
.p-mv .p-header__list .insta_bt .p-header__list__li__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.p-mv .p-header__list.scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: url(/images/bg01.jpg) top left/64px repeat;
  border-bottom: var(--gray05) 1px solid;
  z-index: 1000;
}
.p-mv .p-header__list.scroll .p-header__list__inner {
  width: 100%;
  max-width: unset;
  padding: var(--m16) 5%;
}
.p-mv .p-header__list.scroll .p-header__list__li.insta_bt {
  position: static;
  width: -moz-fit-content;
  width: fit-content;
  aspect-ratio: unset;
  background: unset;
  transform: unset;
}
.p-mv__sliderArea {
  order: 1;
  width: 81.25%;
  max-width: calc(100% - 250px);
  position: relative;
  aspect-ratio: 1300/835;
}
.p-mv__sliderArea::after {
  content: "";
  display: inline-block;
  width: 100%;
  aspect-ratio: 13/2;
  background: linear-gradient(to top, var(--gray01), rgba(211, 211, 211, 0));
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.p-mv__sliderArea__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-mv__sliderArea__slider__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-mv__sliderArea__slider__slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mv__scroll {
  position: absolute;
  bottom: var(--m45);
  left: 50%;
  transform: translate(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
}
.p-mv__scroll__text {
  font-size: var(--fs20);
  color: #fff;
  font-weight: 400;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  line-height: 1;
}
.p-mv__scroll::after {
  content: "";
  display: inline-block;
  width: 21px;
  aspect-ratio: 21/10;
  background: url(/images/arrow_scroll.svg) center/100% no-repeat;
  animation: scrollDown 2.5s infinite;
}

.p-concept {
  margin-bottom: var(--m170);
}
.p-concept__textArea__image {
  width: 100%;
}

.p-works {
  margin-bottom: var(--m110);
}
.p-works__list {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 14px;
  margin-bottom: var(--m100);
}
.p-works__list__text {
  font-size: var(--fs14_16);
  text-align: center;
  color: var(--red01);
  width: 100%;
  margin-bottom: 1.25em;
}
.p-works__list__image {
  width: calc(33.3333333333% - 9.3333333333px);
}
.p-works__textArea {
  display: flex;
  flex-direction: row-reverse;
  grid-gap: var(--m40) min(5.625vw, 90px);
}
.p-works__buttonArea {
  width: 100%;
  max-width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-works__buttonArea__text {
  width: 60%;
  max-width: 113px;
  margin: 0 auto var(--m16);
}

.p-company {
  padding: var(--m150) 0 var(--m200);
  background: url(/images/bg02.jpg) top left/67px repeat;
}
.p-company .c-title {
  margin-bottom: var(--m95);
}
.p-company .c-content__textArea {
  grid-gap: var(--m35) min(4.6875vw, 75px);
}
.p-company .c-content__imageArea img {
  -o-object-position: 0% -13%;
     object-position: 0% -13%;
}
.p-company__scroll {
  position: relative;
  margin: calc(min(18vw, 139px) * -1) auto var(--m55);
  width: -moz-fit-content;
  width: fit-content;
}
.p-company__scroll::before, .p-company__scroll::after {
  content: "";
  display: inline-block;
}
.p-company__scroll::before {
  width: 1px;
  height: min(36vw, 278px);
  background-color: var(--maincol);
}
.p-company__scroll::after {
  width: 5px;
  height: 20px;
  background-color: var(--maincol);
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: scrollDown02 2.5s infinite;
}
.p-company__outline {
  display: flex;
  flex-wrap: wrap;
  grid-gap: var(--m70) min(4.06%, 65px);
  max-width: 905px;
  margin: 0 auto;
  padding: 0 var(--m100);
}
.p-company__outline__row {
  width: 47.97%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  grid-gap: var(--m16) var(--m40);
}
.p-company__outline__row.full {
  width: 100%;
}
.p-company__outline__row__dt {
  font-weight: bold;
  font-size: var(--fs14_16);
  min-width: 5em;
}
.p-company__outline__row__dd {
  font-size: var(--fs14_16);
}

.p-message {
  padding-top: var(--m150);
  margin-bottom: var(--m180);
  background-color: #fff;
}
.p-message .c-title {
  margin: 0 auto var(--m45);
  justify-content: center;
  align-content: center;
  width: 100%;
}
.p-message__textArea {
  padding: var(--m65) 0 var(--m130);
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  grid-gap: var(--m30) min(81.25vw, 130px);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(/images/message.jpg) bottom 19% center/cover no-repeat;
}

/* ----------------------------------------------
  PC設定
  ------------------------------------------------*/
@media all and (min-width: 769px) {
  #container .pad_under,
  #container .pad_only,
  #container .sp_only {
    display: none !important;
  }
  .wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 1200px;
  }
  a img {
    transition: all 0.3s;
  }
  a:hover img {
    opacity: 0.8;
  }
  /*top_return*/
  /*spフロートメニュー*/
  .spCv {
    display: none;
  }
  .grade:hover {
    background-position: 99% 50%;
  }
  /*ボタン設定*/
  .c-button__link:hover {
    transition: all 0.5s;
    background-color: var(--gray01);
  }
  .c-button__link:hover .c-button__text {
    transition: all 0.5s;
    color: #fff;
  }
}
/* ----------------------------------------------
  画面幅調整
  ------------------------------------------------*/
@media all and (min-width: 1335px) {
  .c-content__textArea {
    max-width: 742px;
    margin-left: auto;
  }
}
@media all and (min-width: 1601px) {
  .wrapper {
    width: 75%;
  }
  .c-content__textArea {
    width: 41.375%;
    padding-left: 0;
    max-width: 662px;
  }
  .c-content__imageArea {
    width: 43.75%;
  }
}
@media all and (max-width: 1024px) {
  #container .full_pc {
    display: none !important;
  }
  .p-company {
    padding: var(--m150) 0 var(--m200);
    background: url(/images/bg02.jpg) top left/67px repeat;
  }
  .p-company .c-title {
    margin-bottom: var(--m95);
  }
  .p-company .c-content__textArea {
    grid-gap: var(--m35) min(4.6875vw, 75px);
  }
  .p-company .c-content__imageArea img {
    -o-object-position: 0% -13%;
       object-position: 0% -13%;
  }
  .p-company__scroll {
    position: relative;
    margin: calc(min(18vw, 139px) * -1) auto var(--m55);
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-company__scroll::before, .p-company__scroll::after {
    content: "";
    display: inline-block;
  }
  .p-company__scroll::before {
    width: 1px;
    height: min(36vw, 278px);
    background-color: var(--maincol);
  }
  .p-company__scroll::after {
    width: 5px;
    height: 20px;
    background-color: var(--maincol);
    border-radius: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: scrollDown02 2.5s infinite;
  }
  .p-company__outline {
    padding: 0;
  }
}
@media all and (min-width: 601px) and (max-width: 768px) {
  #container .pc_only,
  #container .full_pc,
  #container .full_pc_under,
  #container .pc_only,
  #container .sp_only {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .wrapper {
    margin-left: 3%;
    margin-right: 3%;
    width: 94%;
  }
  /*spフロートメニュー*/
  .spCv {
    transition: opacity 0.5s, transform 0.5s;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    z-index: 500;
    position: relative;
    transform: translateY(100%);
  }
  .spCv .bt {
    width: 49%;
  }
  .spCv .bt a {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 0.5rem;
    padding: var(--m10px);
    height: 100%;
    width: 100%;
    border: 2px solid;
    border-bottom: unset !important;
  }
  .spCv .bt a .txt {
    font-size: var(--fs18_25);
    line-height: 1;
  }
  .spCv .bt a img {
    width: var(--m20_30);
  }
  .spCv .bt.mail a {
    background-color: #fff;
    border-color: var(--maincol);
  }
  .spCv .bt.mail a .txt {
    color: var(--maincol);
  }
  .spCv .bt.insta a {
    background: linear-gradient(to right, var(--orange1), var(--orange2));
    border-color: var(--orange1);
  }
  .spCv .bt.insta a .txt {
    color: #fff;
  }
  .spCv.jsfix {
    position: fixed;
    bottom: 0;
    opacity: 1;
    width: 100%;
    width: calc(98% - var(--m42_60));
    transform: translateY(0%);
    /* background-color: unset; */
  }
  .spCv.default {
    transform: translateY(0%);
  }
  .spCv.opa {
    opacity: 0;
  }
  .spCv.none {
    display: none !important;
  }
  .p-mv .p-header__list {
    width: 100%;
  }
  .p-mv .p-header__list__inner {
    margin: 0;
    padding: var(--m30) 5% 0;
  }
}
@media all and (max-width: 767px) {
  /*ヘッダー*/
}
@media all and (min-width: 601px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* ----------------------------------------------
  SP設定
  ------------------------------------------------*/
@media all and (max-width: 600px) {
  #container .pc_only,
  #container .full_pc,
  #container .full_pc_under,
  #container .pc_only,
  #container .pad_only,
  #container .pad_over {
    display: none !important;
  }
  /*ヘッダー*/
  .p-header__logo {
    width: 30% !important;
  }
  .subpage .p-header__main {
    width: 100%;
    flex-direction: row;
  }
  .subpage .p-header__rightArea {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-gap: var(--m16px);
  }
  .subpage .p-header__rightArea .insta_bt img {
    width: 40px;
  }
  .subpage .p-header__list {
    display: none;
  }
  /*フッター*/
  .p-footer__list__inner {
    flex-wrap: wrap;
    grid-gap: var(--m10px) 0;
  }
  .p-footer__list__li {
    width: 50%;
    text-align: center;
  }
  .c-content__textArea {
    width: 100%;
    padding-left: 0;
    justify-content: center;
  }
  .c-content__textArea .c-title,
  .c-content__textArea .c-catch {
    margin-right: 3%;
  }
  .c-content__textArea__text {
    writing-mode: vertical-rl;
  }
  .c-content__textArea__text__span {
    line-height: 2em;
  }
  .c-content__imageArea {
    width: 100%;
  }
  .p-mv .p-header__main {
    width: 100%;
    order: 1;
    min-height: unset;
    padding: var(--m8px) var(--m16px);
    flex-direction: row;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: url(/images/bg01.jpg) top left/64px repeat;
  }
  .p-mv .p-header__list {
    display: none;
  }
  .p-mv .p-header__rightArea {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-gap: var(--m16px);
  }
  .p-mv .p-header__rightArea .insta_bt img {
    width: 40px;
  }
  .p-mv__sliderArea {
    order: 2;
    width: 100%;
    max-width: unset;
    aspect-ratio: 1/2;
  }
  .p-mv__sliderArea .c-catch {
    position: absolute;
    top: 25px;
    right: 4.615%;
    z-index: 10;
  }
  .p-mv__sliderArea .c-catch__text {
    font-size: 25px;
    text-shadow: 3px 3px 5px rgba(255, 255, 255, 0.5);
  }
  .p-mv__scroll {
    left: 4.615%;
    transform: unset;
  }
  .p-works__list__image {
    width: calc(50% - 7px);
  }
  .p-works__textArea {
    flex-wrap: wrap;
  }
  .p-works__buttonArea {
    width: 100%;
    max-width: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .p-works__buttonArea__text {
    width: 60%;
    max-width: 113px;
    margin: 0 auto var(--m16);
  }
  .p-company__scroll {
    margin: var(--m55) auto;
  }
  .p-company__scroll::before {
    height: 15vw;
  }
  .p-company__outline {
    padding: 0;
  }
  .p-company__outline__row {
    width: 100%;
  }
  .p-message .c-catch__text {
    line-height: 1.8;
  }
  .p-message__textArea {
    grid-gap: var(--m30);
  }
  }