@charset "UTF-8";
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.3; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

body {
  -webkit-text-size-adjust: 100%; /* 勝手に文字が拡大されるのを防ぐ */
  /* 以下、案件ごとに適宜変更 */
  color: #000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  background-color: #dae0e6;
  font-size: 15px;
  letter-spacing: 0.1em;
}

body,
h1,
h2,
h3,
h4,
h5,
table,
th,
td,
ul,
li,
ol,
dl,
dt,
dd,
form,
p {
  margin: 0px;
  padding: 0px;
  font-weight: 500;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  line-height: 1.3;
}

input,
textArea,
select,
button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none; /* iOS系のスタイルを外す */
}

button {
  cursor: pointer;
}

figure {
  margin: 0px;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top; /* 意図しない余白の削除 */
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.c-width {
  max-width: 1100px;
  margin: 0 auto;
}

.c-padding {
  padding: 0 10px;
}

.c-narrow {
  max-width: 800px;
  margin: 0 auto;
}

/*                レイアウト
======================================================= */
.l-wrapper {
  overflow: hidden;
}
.l-hd {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.l-main {
  padding: 0 0 220px;
}
@media only screen and (max-width: 767px) {
  .l-main {
    padding: 0 0 96px;
  }
}

.l-home-firstview {
  width: 100vw;
  height: 100vh;
}

.l-section {
  padding-top: 180px;
}
@media only screen and (max-width: 767px) {
  .l-section {
    padding-top: 100px;
  }
}

/*                sp-ボタン
======================================================= */
@media only screen and (min-width: 768px) {
  .l-sp-menu-btn {
    display: none;
  }
}

/*                sp-menu
======================================================= */
.l-sp-menu {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
  top: 0px;
  right: -100%;
}
.l-sp-menu.sp-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 100;
  right: 0;
}

/*                inc-footer
======================================================= */
.p-ft {
  background-color: #000;
  text-align: end;
}

.p-copyright {
  color: #ffffff;
}

.p-hd {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.p-hd__logo {
  width: 160px;
}
.p-hd__logo .-img {
  font-size: 16px;
  color: #ffffff;
}

.p-hd__nav {
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .p-hd__nav {
    display: none;
  }
}

.p-hd__ul {
  height: 100%;
  display: flex;
}

.p-hd__li {
  height: 100%;
  list-style: none;
}

.p-hd__link {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5em;
  color: #ffffff;
}

/*                front-pageのみ
======================================================= */
.p-home-kv__bgimg {
  height: 100%;
  width: 100%;
}
.p-home-kv__bgimg .-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-home__script {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #ffffff;
}

.p-home-title {
  font-size: 72px;
}
@media only screen and (max-width: 767px) {
  .p-home-title {
    font-size: 30px;
  }
}

.p-home__text {
  font-size: 32px;
}
@media only screen and (max-width: 767px) {
  .p-home__text {
    margin-top: 0.5em;
    font-size: 15px;
  }
}

/*                他ページで使われるkv
======================================================= */
.p-common__top {
  position: relative;
}

.p-common-kv__bgimg {
  height: 100%;
  width: 100%;
}
.p-common-kv__bgimg .-img {
  height: 240px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-common__script {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #ffffff;
}

/*                sp-メニュー
======================================================= */
.p-sp-menu-btn {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 20px;
  height: 18px;
  z-index: 100;
}

.p-sp-menu__border {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.5s;
}
.p-sp-menu__border--01 {
  top: 0;
}
.p-sp-menu__border--02 {
  top: 8px;
}
.p-sp-menu__border--03 {
  top: 16px;
}

/*                メニュー
======================================================= */
.p-sp-menu {
  width: 100vw;
  height: 100vh;
  background-color: #99c6e4;
}

.p-sp-menu__ul {
  height: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 5em;
}

/*                front-page
======================================================= */
.p-about {
  display: flex;
  justify-content: end;
}

.p-about__img .-img {
  width: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__box {
  width: 300px;
  margin-left: -150px;
}
@media only screen and (max-width: 767px) {
  .p-about__box {
    margin-left: -400px;
    width: 100%;
  }
}

.p-about__title {
  text-align: right;
}

.p-about__bgtitle {
  text-align: center;
}

.p-about__smalltitle {
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

.p-about__text {
  margin-top: 1em;
}

/*                真ん中写真
======================================================= */
.p-space {
  text-align: center;
  width: 100%;
  height: 100%;
}
.p-space .-img {
  -o-object-fit: cover;
     object-fit: cover;
}

/*                background
======================================================= */
.p-background {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-background__title {
  margin-top: 1em;
}

.p-background__dl {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .p-background__dl {
    display: block;
  }
}

.p-background__dt {
  width: 80px;
}

.p-background__dt,
.p-background__dd {
  margin-top: 0.5em;
}

.p-background__img {
  margin-left: 2em;
}
.p-background__img .-img {
  width: 500px;
}
@media only screen and (max-width: 767px) {
  .p-background__img .-img {
    width: 200px;
  }
}

/*                sns・works
======================================================= */
.p-works {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.p-works__list {
  display: flex;
  -moz-column-gap: 1em;
       column-gap: 1em;
}
.p-works__list .-img {
  width: 50px;
  height: 50px;
}