@charset "UTF-8";
/* mixin */
/* 変数定義 */
/* サイト全体のベースとなるスタイルと、_reset.scssでリセットしきれなかったスタイル */
body {
  font-family: "Josefin Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
  color: #243955;
  background-color: #FBFBFB;
}

body.noscroll {
  overflow: hidden;
}

img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

.js-fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s;
}

.js-fadein_up {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 1100px) {
  .l-main {
    margin-top: 100px;
  }
}

/* リセットCSS */
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  font-size: 62.5%;
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  /* padding: 0;
   margin: 0;
   outline: 0; */
  /* border-radius: 0; */
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* WordPress記事CSS */
.p-blogSingle_content p,
.p-worksSingle_content p {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .p-blogSingle_content p,
  .p-worksSingle_content p {
    font-size: 1.4rem;
  }
}
.p-blogSingle_content img,
.p-worksSingle_content img {
  margin-bottom: 0.5em;
}

.c-button {
  width: 120px;
  text-align: center;
  border: 3px solid #436F8F;
  font-size: 1.6rem;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.3s;
}
.c-button:hover {
  border: 3px solid #96C1C6;
  background-color: #96C1C6;
  border-radius: 5px;
  color: #EEEEEE;
  text-shadow: 0px 8px 1px rgba(0, 0, 0, 0.54);
  transition: 0.3s;
  letter-spacing: 0.2em;
}
.c-button--bgWhite {
  background-color: #FBFBFB;
}
.c-button a {
  display: block;
  padding: 8px 0;
}

.c-h2 {
  font-size: 3rem;
  position: relative;
  display: inline-block;
}
.c-h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #96C1C6;
}
@media screen and (max-width: 768px) {
  .c-h2 {
    font-size: 3rem;
  }
}

.c-page_top {
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 50px;
  height: 50px;
  background-color: #243955;
  text-align: center;
  box-sizing: border-box;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  transform: translateY(30px);
}
.c-page_top:hover {
  background-color: #96C1C6;
  border-radius: 5px;
  color: #EEEEEE;
  text-shadow: 0px 5px 1px rgba(0, 0, 0, 0.54);
  letter-spacing: 0.2em;
}
.c-page_top:hover .c-page_top__text::before {
  top: 6px;
}
.c-page_top__text {
  color: #EEEEEE;
  display: block;
  padding: 28px 0 10px;
  line-height: 1;
  position: relative;
  font-size: 1.3rem;
}
.c-page_top__text::before {
  content: url(../img/arrow.png);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
.c-page_top.display {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.c-header {
  padding: 100px 4vw;
  background-color: #436F8F;
  text-align: center;
}
.c-header__head {
  color: #EEEEEE;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
}
.c-header__desc {
  color: #EEEEEE;
  font-size: 1.3rem;
}

.l-header {
  width: 100%;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  /* バーガーボタン */
}
@media screen and (max-width: 1100px) {
  .l-header {
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
  }
}
.l-header__inner {
  height: 100px;
  max-width: calc(100% - 6vw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo {
  width: 140px;
  z-index: 100;
}
.l-header .cls-1 {
  fill: #243955;
  transition: 0.3s;
}
.l-header .cls-2 {
  fill: none;
  stroke: #243955;
  stroke-miterlimit: 10;
  stroke-width: 5px;
  transition: 0.3s;
}
.l-header__svg.color-white .cls-1 {
  fill: #EEEEEE;
}
.l-header__svg.color-white .cls-2 {
  stroke: #EEEEEE;
}
.l-header__nav {
  transition: 0.5s;
}
@media screen and (max-width: 1100px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    height: 100svh;
    min-height: 100svh;
    /* mobile viewport bug fix */
    min-height: -webkit-fill-available;
    background-color: #96C1C6;
    color: #EEEEEE;
    justify-content: center;
    display: flex;
    align-items: center;
    display: none;
    opacity: 0;
  }
}
.l-header .open {
  display: flex;
  opacity: 1;
}
.l-header__list {
  display: flex;
}
@media screen and (max-width: 1100px) {
  .l-header__list {
    flex-direction: column;
    text-align: center;
  }
}
.l-header__item {
  font-size: 1.6rem;
}
@media screen and (max-width: 1100px) {
  .l-header__item {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1100px) {
  .l-header__item:not(:last-child) {
    margin-bottom: 25px;
  }
}
.l-header__itemLink {
  position: relative;
  padding: 20px 30px;
  transition: 0.3s;
}
.l-header__itemLink::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 100%;
  background-color: #96C1C6;
  transition: 0.3s;
  z-index: -1;
}
.l-header__itemLink::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  width: 0%;
  height: 100%;
  background-color: #96C1C6;
  transition: 0.3s;
  z-index: -1;
}
.l-header__itemLink:hover {
  color: #EEEEEE;
  letter-spacing: 0.2em;
  text-shadow: 0px 8px 1px rgba(0, 0, 0, 0.54);
}
.l-header__itemLink:hover:hover.l-header__itemLink::before, .l-header__itemLink:hover:hover.l-header__itemLink::after {
  width: 50%;
}
.l-header__burgerButton {
  position: fixed;
  right: 4%;
  top: 40px;
  display: none;
  cursor: pointer;
  z-index: 250;
}
.l-header__burgerButton:hover .l-header__burgerLine {
  width: 45px;
}
@media screen and (max-width: 1100px) {
  .l-header__burgerButton {
    display: block;
  }
}
.l-header__burgerLine {
  display: block;
  height: 2px;
  background-color: #243955;
  transition: 0.3s;
}
.l-header__burgerLine:first-child {
  width: 45px;
}
.l-header__burgerLine:nth-child(2) {
  width: 30px;
  margin: 0 0 0 auto;
}
.l-header__burgerLine:nth-child(3) {
  width: 20px;
  margin: 0 0 0 auto;
}
.l-header__burgerLine:not(:last-child) {
  margin-bottom: 7px;
}
.l-header__burgerButton.erase .l-header__burgerLine {
  background-color: #EEEEEE;
}
.l-header__burgerButton.erase .l-header__burgerLine:nth-child(2) {
  opacity: 0;
  transform: translateY(-100px);
}
.l-header__burgerButton.erase .l-header__burgerLine:nth-child(3) {
  opacity: 0;
  transform: translateY(100px);
}

.l-contact {
  max-width: 800px;
  padding: 50px 35px;
  margin: 0 auto;
  background-color: #FBFBFB;
  box-shadow: 20px 20px 60px #d5d5d5, -20px -20px 60px #ffffff;
}
.l-contact__container {
  position: relative;
  padding: 150px 4vw;
}
.l-contact__container::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f7f7f7;
  transform: skewY(2deg);
  transform-origin: top left;
  box-shadow: inset 20px 20px 60px #e9e9e9, inset -20px -20px 60px #ffffff;
}
.l-contact__h2 {
  text-align: center;
  margin-bottom: 70px;
}
.l-contact__text {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-bottom: 50px;
}
.l-contact__buttonArea {
  display: flex;
  justify-content: center;
}

.l-footer {
  position: relative;
  padding: 100px 4vw 20px;
  background-color: #436F8F;
}
.l-footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  clip-path: polygon(100% 90%, 0% 100%, 100% 100%);
  background-color: #436F8F;
}
.l-footer__list {
  display: flex;
  justify-content: space-between;
  max-width: 560px;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .l-footer__list {
    flex-direction: column;
    text-align: center;
  }
}
.l-footer__item:not(:last-child) {
  margin-bottom: 15px;
}
.l-footer__itemLink {
  font-size: 1.6rem;
  color: #EEEEEE;
  transition: 0.3s;
}
.l-footer__itemLink:hover {
  color: #EEEEEE;
  text-shadow: 0px 8px 1px rgba(0, 0, 0, 0.54);
  letter-spacing: 0.2em;
}
.l-footer__copyright {
  text-align: center;
  display: flex;
  justify-content: center;
  font-size: 1.3rem;
  color: #EEEEEE;
}

.p-top_mv {
  padding-bottom: 100px;
  position: relative;
}
.p-top_mv::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 45%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #436F8F;
  transform: skewY(-2deg);
  transform-origin: top left;
}
.p-top_mv__img {
  width: calc(100% - 6vw);
  height: 65svh;
  margin: 0 auto;
  position: relative;
}
.p-top_mv__copy {
  position: absolute;
  left: 50px;
  top: 50%;
  padding-right: 4vw;
  transform: translateY(-50%);
  text-shadow: 5px 10px 0px rgba(88, 88, 88, 0.8);
}
@media screen and (max-width: 768px) {
  .p-top_mv__copy {
    left: 20px;
  }
}
.p-top_mv__text {
  overflow: hidden;
  color: #EEEEEE;
  font-size: 6rem;
  font-weight: 700;
  font-style: italic;
}
@media screen and (max-width: 1100px) {
  .p-top_mv__text {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top_mv__text {
    font-size: 3rem;
  }
}
.p-top_mv__text span {
  opacity: 0;
  transform: translateY(100%);
  transition: 1s;
  display: block;
}
.p-top_mv__text span.in {
  opacity: 1;
  transform: translateY(0);
}

.p-top_about {
  padding: 60px 4vw;
}
.p-top_about__inner {
  max-width: 800px;
  margin: 0 auto;
}
.p-top_about__h2 {
  text-align: center;
  margin-bottom: 70px;
}
.p-top_about__content {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 70px;
  line-height: 1.8;
}
.p-top_about__buttonArea {
  display: flex;
  justify-content: center;
}
.p-top_about__buttonArea .c-button:first-child {
  margin-right: 20px;
}

.p-top_service {
  position: relative;
  padding: 60px 4vw;
}
.p-top_service__inner {
  max-width: 960px;
  margin: 0 auto;
}
.p-top_service__h2 {
  text-align: center;
  margin-bottom: 70px;
}
.p-top_service__list {
  display: flex;
  justify-content: space-between;
  align-items: top;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .p-top_service__list {
    flex-direction: column;
  }
}
.p-top_service__item {
  width: 31%;
}
@media screen and (max-width: 768px) {
  .p-top_service__item {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.p-top_service__img {
  height: 210px;
  margin-bottom: 30px;
  box-shadow: 20px 20px 60px #d5d5d5, -20px -20px 60px #ffffff;
}
.p-top_service__itemHead {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}
.p-top_service__itemContent {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  padding: 3px;
}
.p-top_service__buttonArea {
  display: flex;
  justify-content: center;
}
.p-top_service::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f7f7f7;
  transform: skewY(2deg);
  transform-origin: top left;
  box-shadow: inset 20px 20px 60px #e9e9e9, inset -20px -20px 60px #ffffff;
}

.p-top_works {
  padding: 60px 4vw;
}
.p-top_works__inner {
  max-width: 960px;
  margin: 0 auto;
}
.p-top_works__h2 {
  text-align: center;
  margin-bottom: 70px;
}
.p-top_works__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .p-top_works__list {
    flex-wrap: wrap;
  }
}
.p-top_works__item {
  width: 32%;
  position: relative;
  overflow: hidden;
  box-shadow: 10px 10px 30px #d9d9d9, -15px -15px 15px #ffffff;
}
.p-top_works__item:hover .p-top_works__musk {
  top: 0;
}
.p-top_works__item:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .p-top_works__item {
    width: 48%;
  }
}
@media screen and (max-width: 576px) {
  .p-top_works__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-top_works__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.p-top_works__img {
  position: relative;
}
.p-top_works__img::before {
  content: "";
  padding-top: 110%;
  display: block;
}
.p-top_works__img img {
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top_works__musk {
  position: absolute;
  background-color: rgba(36, 57, 85, 0.7);
  z-index: 2;
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  transition: 0.3s;
}
.p-top_works__muskBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #EEEEEE;
}
.p-top_works__itemHead {
  font-size: 2rem;
  margin-bottom: 10px;
  white-space: nowrap;
}
.p-top_works__itemCat {
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
}
.p-top_works__buttonArea {
  display: flex;
  justify-content: center;
}

.p-top_gallery {
  position: relative;
  padding: 60px 4vw 60px 0;
}
.p-top_gallery__inner {
  max-width: 1120px;
}
.p-top_gallery__h2 {
  width: calc(100% - 200px);
  margin: 0 auto 70px;
}
@media screen and (max-width: 768px) {
  .p-top_gallery__h2 {
    width: 100%;
    padding-left: 4vw;
  }
}
.p-top_gallery__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.p-top_gallery__item {
  width: 25%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  transition: 0.5s;
}
.p-top_gallery__item::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.p-top_gallery__item img {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.p-top_gallery__item:hover {
  transition: 0.5s;
}
.p-top_gallery__item:hover img {
  transform: scale(1.1);
  filter: saturate(50%);
}
@media screen and (max-width: 768px) {
  .p-top_gallery__item {
    width: 50%;
  }
}
.p-top_gallery__buttonArea {
  width: calc(100% - 200px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top_gallery__buttonArea {
    width: 100%;
    padding-left: 4vw;
  }
}
.p-top_gallery::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f7f7f7;
  transform: skewY(-2deg);
  transform-origin: top left;
  box-shadow: inset 20px 20px 60px #e9e9e9, inset -20px -20px 60px #ffffff;
}

.p-top_blog {
  padding: 60px 4vw;
}
.p-top_blog__inner {
  max-width: 960px;
  margin: 0 auto;
}
.p-top_blog__h2 {
  text-align: center;
  margin-bottom: 70px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .p-top_blog__h2 {
    width: 100%;
    padding-right: 4vw;
  }
}
.p-top_blog__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .p-top_blog__list {
    flex-wrap: wrap;
  }
}
.p-top_blog__item {
  width: 32%;
  position: relative;
  overflow: hidden;
  box-shadow: 10px 10px 30px #d9d9d9, -15px -15px 15px #ffffff;
}
@media screen and (max-width: 768px) {
  .p-top_blog__item {
    width: 48%;
  }
}
@media screen and (max-width: 576px) {
  .p-top_blog__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-top_blog__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .p-top_blog__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.p-top_blog__link:hover .p-top_blog__musk {
  top: 0;
}
.p-top_blog__link:hover img {
  transform: scale(1.1);
}
.p-top_blog__link a {
  display: block;
}
.p-top_blog__img {
  position: relative;
  margin-bottom: 15px;
  transition: 0.3s;
  overflow: hidden;
  box-sizing: border-box;
}
.p-top_blog__img::before {
  content: "";
  padding-top: 90%;
  display: block;
}
.p-top_blog__img img {
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top_blog__cat {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #436F8F;
  color: #EEEEEE;
  padding: 5px 10px;
  font-size: 1.3rem;
}
.p-top_blog__itemHead {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.p-top_blog__itemDate {
  font-size: 1.3rem;
  display: block;
}
.p-top_blog__musk {
  position: absolute;
  background-color: rgba(36, 57, 85, 0.7);
  z-index: 2;
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  transition: 0.3s;
  text-align: center;
}
.p-top_blog__muskText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px 10px;
  color: #EEEEEE;
  font-size: 1.6rem;
  border: solid 1px #EEEEEE;
}
.p-top_blog__buttonArea {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

/* top */
/* About / Description */
.p-about_desc {
  padding: 80px 4vw;
}
.p-about_desc__text {
  max-width: 800px;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 1100px) {
  .p-about_desc {
    padding: 50px 4vw;
  }
}
.p-about_desc__recommend {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
}

/* About / Outline */
.p-about_outline {
  padding: 80px 0;
}
@media screen and (max-width: 1100px) {
  .p-about_outline {
    padding: 50px 0;
  }
}
.p-about_outline__container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .p-about_outline__container {
    flex-direction: column;
  }
}
.p-about_outline__img {
  width: 55%;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  .p-about_outline__img {
    width: 95%;
    margin: 0 auto 0 0;
  }
}
@media screen and (max-width: 768px) {
  .p-about_outline__img {
    height: 300px;
  }
}
.p-about_outline__box {
  padding: 50px;
  width: 40%;
  margin: 0 auto;
  box-shadow: inset 20px 20px 60px #e9e9e9, inset -20px -20px 60px #ffffff;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .p-about_outline__box {
    width: 95%;
    margin: -150px 0 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
  }
}
.p-about_outline__h2 {
  text-align: center;
  margin-bottom: 50px;
}
.p-about_outline__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.5rem;
  max-width: 250px;
  margin: 0 auto;
}
.p-about_outline__term {
  width: 35%;
  margin-bottom: 10px;
}
.p-about_outline__desc {
  width: 65%;
  margin-bottom: 10px;
}

/* About / Profile */
.p-about_profile {
  padding: 80px 0;
}
@media screen and (max-width: 1100px) {
  .p-about_profile {
    padding: 50px 0;
  }
}
.p-about_profile__container {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1100px) {
  .p-about_profile__container {
    flex-direction: column;
  }
}
.p-about_profile__img {
  width: 55%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .p-about_profile__img {
    width: 95%;
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .p-about_profile__img {
    height: 300px;
  }
}
.p-about_profile__box {
  padding: 50px;
  width: 40%;
  margin: 0 auto;
  box-shadow: inset 20px 20px 60px #e9e9e9, inset -20px -20px 60px #ffffff;
  box-sizing: border-box;
  z-index: 10;
}
@media screen and (max-width: 1100px) {
  .p-about_profile__box {
    width: 95%;
    margin: -150px auto 0 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    z-index: 10;
  }
}
.p-about_profile__h2 {
  text-align: center;
  margin-bottom: 50px;
}
.p-about_profile__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

/* About / Chronology */
.p-about_chronology {
  padding: 80px 0;
}
@media screen and (max-width: 1100px) {
  .p-about_chronology {
    padding: 50px 4vw;
  }
}
.p-about_chronology__inner {
  box-shadow: inset 20px 20px 60px #e9e9e9, inset -20px -20px 60px #ffffff;
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 4vw;
  box-sizing: border-box;
}
.p-about_chronology__h2 {
  text-align: center;
  margin-bottom: 50px;
}
.p-about_chronology__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  width: 100%;
}
.p-about_chronology__term {
  width: 10%;
  position: relative;
  min-width: 50px;
  text-align: center;
  box-sizing: border-box;
}
.p-about_chronology__term:not(:last-of-type) {
  padding-bottom: 20px;
}
.p-about_chronology__desc {
  width: 85%;
  border-left: 2px solid #EEEEEE;
  padding-left: 30px;
  position: relative;
  box-sizing: border-box;
}
.p-about_chronology__desc::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #96C1C6;
  transform: translateX(-54%);
  z-index: 1;
  box-sizing: border-box;
}
.p-about_chronology__desc:not(:last-of-type) {
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-about_chronology__desc {
    padding-left: 20px;
  }
}
@media screen and (max-width: 576px) {
  .p-about_chronology__desc {
    width: 79%;
    padding-left: 15px;
  }
}

/* About / Origin */
.p-about_origin {
  padding: 80px 0;
}
@media screen and (max-width: 1100px) {
  .p-about_origin {
    padding: 50px 0;
  }
}
.p-about_origin__container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .p-about_origin__container {
    flex-direction: column;
  }
}
.p-about_origin__img {
  width: 55%;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  .p-about_origin__img {
    width: 95%;
    margin: 0 auto 0 0;
  }
}
@media screen and (max-width: 768px) {
  .p-about_origin__img {
    height: 300px;
  }
}
.p-about_origin__box {
  padding: 50px;
  width: 40%;
  margin: 0 auto;
  box-shadow: inset 20px 20px 60px #e9e9e9, inset -20px -20px 60px #ffffff;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .p-about_origin__box {
    width: 95%;
    margin: -150px 0 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
  }
}
.p-about_origin__h2 {
  text-align: center;
  margin-bottom: 50px;
}
.p-about_origin__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

/* Service / Description */
.p-service_desc {
  padding: 50px 4vw 10px;
}
.p-service_desc__text {
  max-width: 960px;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .p-service_desc {
    padding: 50px 4vw;
  }
}

.p-service__recommend {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
}

/* Service / Web */
.p-service_web {
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 4vw;
}
.p-service_web__h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-service_web__h2 {
    text-align: center;
  }
}
.p-service_web__desc {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.p-service_web__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-service_web__list {
    flex-direction: column;
  }
}
.p-service_web__item {
  width: 31%;
  background-color: #fff;
  box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
  padding-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-service_web__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-service_web__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.p-service_web__order {
  background-color: #436F8F;
  color: #EEEEEE;
  display: inline-block;
  padding: 10px 15px;
  font-size: 1.5rem;
}
.p-service_web__img {
  position: relative;
  margin-bottom: 15px;
  height: 150px;
}
.p-service_web__h3 {
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-service_web__h3 {
    font-size: calc(2rem - 2px);
  }
}
.p-service_web__price {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
}

/* Service / Design */
.p-service_design {
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 4vw;
}
.p-service_design__h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-service_design__h2 {
    text-align: center;
  }
}
.p-service_design__desc {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}
.p-service_design__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-service_design__list {
    flex-direction: column;
  }
}
.p-service_design__item {
  width: 31%;
  background-color: #fff;
  box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
  padding-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-service_design__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-service_design__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.p-service_design__order {
  background-color: #436F8F;
  color: #EEEEEE;
  display: inline-block;
  padding: 10px 15px;
  font-size: 1.5rem;
}
.p-service_design__img {
  position: relative;
  margin-bottom: 15px;
  height: 150px;
}
.p-service_design__h3 {
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-service_design__h3 {
    font-size: calc(2rem - 2px);
  }
}
.p-service_design__price {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
}

/* Service / Others */
.p-service_others {
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 4vw;
}
.p-service_others__h2 {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-service_others__h2 {
    text-align: center;
  }
}
.p-service_others__desc {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.p-service_others__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-service_others__list {
    flex-direction: column;
  }
}
.p-service_others__item {
  width: 31%;
  background-color: #fff;
  box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
}
@media screen and (max-width: 768px) {
  .p-service_others__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-service_others__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.p-service_others__order {
  background-color: #436F8F;
  color: #EEEEEE;
  display: inline-block;
  padding: 10px 15px;
  font-size: 1.5rem;
}
.p-service_others__img {
  position: relative;
  margin-bottom: 15px;
  height: 150px;
}
.p-service_others__h3 {
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-service_others__price {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  text-align: center;
}

/* Service / Design */
.p-service_flow {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 4vw;
}
.p-service_flow__head {
  text-align: center;
  font-size: 3rem;
  border-bottom: solid 5px #96C1C6;
  margin-bottom: 10px;
}
.p-service_flow__desc {
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  text-align: center;
}
.p-service_flow__item {
  margin-bottom: 30px;
}
.p-service_flow__item:nth-child(2), .p-service_flow__item:nth-child(5) {
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .p-service_flow__item:nth-child(2), .p-service_flow__item:nth-child(5) {
    padding-left: 25px;
  }
}
.p-service_flow__item:nth-child(3n) {
  padding-left: 80px;
}
@media screen and (max-width: 768px) {
  .p-service_flow__item:nth-child(3n) {
    padding-left: 50px;
  }
}
.p-service_flow__box {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.p-service_flow__number {
  background-color: #436F8F;
  color: #EEEEEE;
  display: inline-block;
  padding: 5px 14px;
  font-size: 1.5rem;
  margin-right: 15px;
}
.p-service_flow__h3 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.p-service_flow__text {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding-left: 50px;
}

/* Works / index */
.p-works__container {
  max-width: 960px;
  padding: 80px 4vw;
  margin: 0 auto;
}
.p-works__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-works__item {
  width: 48%;
  position: relative;
  overflow: hidden;
  box-shadow: 10px 10px 30px #d9d9d9, -15px -15px 15px #ffffff;
  margin-bottom: 40px;
}
.p-works__item:hover .p-works__musk {
  top: 0;
}
.p-works__item:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 576px) {
  .p-works__item {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .p-works__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.p-works__img {
  position: relative;
}
.p-works__img::before {
  content: "";
  padding-top: 80%;
  display: block;
}
.p-works__img img {
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}
.p-works__musk {
  position: absolute;
  background-color: rgba(36, 57, 85, 0.7);
  z-index: 2;
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  transition: 0.3s;
}
.p-works__muskBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #EEEEEE;
}
.p-works__itemHead {
  font-size: 3rem;
  margin-bottom: 10px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-works__itemHead {
    font-size: calc(3rem - 6px);
  }
}
.p-works__itemCat {
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
}

/* Works_single / mv */
.p-worksSingle_mv {
  height: 70svh;
}
.p-worksSingle_mv__img {
  height: 100%;
  position: relative;
}
.p-worksSingle_mv__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.p-worksSingle_mv__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #EEEEEE;
  text-align: center;
  z-index: 2;
}
.p-worksSingle_mv__head {
  font-size: 3.6rem;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-worksSingle_mv__head {
    font-size: 3rem;
  }
}
.p-worksSingle_mv__cat {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.p-worksSingle_mv__scope {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.p-worksSingle_mv__link {
  font-size: 1.5rem;
  position: relative;
  transition: 0.3s;
}
.p-worksSingle_mv__link::before {
  content: url(..//img/outer_link.png);
  position: absolute;
  left: -20px;
  top: -1px;
}
.p-worksSingle_mv__link:hover {
  text-shadow: 0px 8px 1px rgba(0, 0, 0, 0.54);
  letter-spacing: 0.1em;
}

.p-worksSingle_content {
  max-width: 960px;
  margin: 0 auto;
  padding: 100px 4vw;
}

.p-worksSingle_nav {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 4vw;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

/* Works_single / other */
.p-worksSingle_other {
  padding: 60px 4vw;
  max-width: 960px;
  margin: 0 auto;
}
.p-worksSingle_other__h2 {
  text-align: center;
  margin-bottom: 70px;
}
.p-worksSingle_other__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .p-worksSingle_other__list {
    flex-wrap: wrap;
  }
}
.p-worksSingle_other__list::after {
  content: "";
  display: block;
  width: 31%;
  height: 0;
}
.p-worksSingle_other__item {
  width: 31%;
  position: relative;
  overflow: hidden;
  box-shadow: 10px 10px 30px #d9d9d9, -15px -15px 15px #ffffff;
}
.p-worksSingle_other__item:hover .p-worksSingle_other__musk {
  top: 0;
}
.p-worksSingle_other__item:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .p-worksSingle_other__item {
    width: 48%;
  }
}
@media screen and (max-width: 576px) {
  .p-worksSingle_other__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-worksSingle_other__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.p-worksSingle_other__img {
  position: relative;
}
.p-worksSingle_other__img::before {
  content: "";
  padding-top: 110%;
  display: block;
}
.p-worksSingle_other__img img {
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}
.p-worksSingle_other__musk {
  position: absolute;
  background-color: rgba(36, 57, 85, 0.7);
  z-index: 2;
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  transition: 0.3s;
}
.p-worksSingle_other__muskBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #EEEEEE;
}
.p-worksSingle_other__itemHead {
  font-size: 2rem;
  margin-bottom: 10px;
  white-space: nowrap;
}
.p-worksSingle_other__itemCat {
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
}
.p-worksSingle_other__buttonArea {
  display: flex;
  justify-content: center;
}

/* Gallery */
.p-gallery_nav {
  padding: 80px 4vw;
  display: flex;
  justify-content: center;
}
.p-gallery_nav__list {
  display: flex;
}
.p-gallery_nav__item {
  font-size: 2rem;
  cursor: pointer;
  box-sizing: border-box;
  transition: text-shadow 0.3s, letter-spacing 0.3s;
}
.p-gallery_nav__item:not(:last-child) {
  margin-right: 20px;
}
.p-gallery_nav__item.active {
  border-bottom: 4px solid #96C1C6;
}
.p-gallery_nav__item:hover {
  text-shadow: 0px 8px 1px rgba(0, 0, 0, 0.34);
  letter-spacing: 0.2em;
}

.p-gallery_content {
  width: 100%;
  margin-bottom: 100px;
}
.p-gallery_content__link {
  position: relative;
  box-sizing: border-box;
  transition: 0.3s;
}
.p-gallery_content__link::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.p-gallery_content__link img {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.p-gallery_content__link:hover {
  transition: 0.5s;
}
.p-gallery_content__link:hover img {
  transform: scale(1.1);
  filter: saturate(50%);
}

.grid {
  position: relative;
}

.item {
  display: block;
  position: absolute;
  width: 19.9%;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .item {
    width: 33%;
  }
}
@media screen and (max-width: 768px) {
  .item {
    width: 49.9%;
  }
}

/* Blog  */
.p-blog {
  padding: 100px 4vw;
  /* pagenavi */
}
.p-blog__inner {
  max-width: 960px;
  margin: 0 auto;
}
.p-blog__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .p-blog__list {
    flex-wrap: wrap;
  }
}
.p-blog__list::after {
  content: "";
  display: block;
  width: 31%;
  height: 0;
}
.p-blog__item {
  width: 31%;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  box-sizing: border-box;
  box-shadow: 10px 10px 10px #f5f5f5;
}
@media screen and (max-width: 768px) {
  .p-blog__item {
    width: 48%;
  }
}
@media screen and (max-width: 576px) {
  .p-blog__item {
    width: 100%;
  }
}
.p-blog__link {
  cursor: pointer;
  display: block;
}
.p-blog__link:hover .p-blog__musk {
  top: 0;
}
.p-blog__link:hover img {
  transform: scale(1.1);
}
.p-blog__img {
  position: relative;
  margin-bottom: 15px;
  transition: 0.3s;
  overflow: hidden;
  box-sizing: border-box;
}
.p-blog__img::before {
  content: "";
  padding-top: 90%;
  display: block;
}
.p-blog__img img {
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}
.p-blog__cat {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #436F8F;
  color: #EEEEEE;
  padding: 5px 10px;
  font-size: 1.3rem;
}
.p-blog__itemHead {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.p-blog__itemDate {
  font-size: 1.3rem;
  display: block;
}
.p-blog__musk {
  position: absolute;
  background-color: rgba(36, 57, 85, 0.7);
  z-index: 2;
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  transition: 0.3s;
  text-align: center;
}
.p-blog__muskText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px 10px;
  color: #EEEEEE;
  font-size: 1.6rem;
  border: solid 1px #EEEEEE;
}
.p-blog .wp-pagenavi {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
}
.p-blog .wp-pagenavi .pages {
  display: none;
}
.p-blog .wp-pagenavi a,
.p-blog .wp-pagenavi span {
  text-decoration: none;
  border: 2px solid #436F8F;
  padding: 5px 12px;
  margin: 2px;
  transition: 0.3s;
}
.p-blog .wp-pagenavi span.current {
  border-color: #243955;
}
.p-blog .wp-pagenavi a:hover {
  border-color: #96C1C6;
  border-radius: 5px;
  background-color: #96C1C6;
  color: #EEEEEE;
}

/*  blog_single / mv */
.p-blogSingle_mv {
  height: 70svh;
}
.p-blogSingle_mv__img {
  height: 100%;
  position: relative;
}
.p-blogSingle_mv__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.p-blogSingle_mv__box {
  position: absolute;
  padding: 0 4vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #EEEEEE;
  text-align: center;
  z-index: 2;
}
.p-blogSingle_mv__head {
  font-size: 3.6rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-blogSingle_mv__head {
    font-size: 2rem;
  }
}
.p-blogSingle_mv__cat {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.p-blogSingle_mv__scope {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.p-blogSingle_mv__link {
  font-size: 1.5rem;
  position: relative;
}
.p-blogSingle_mv__link::before {
  content: url(/img/outer_link.png);
  position: absolute;
  left: -20px;
  top: -1px;
}

.p-blogSingle_content {
  max-width: 960px;
  margin: 0 auto;
  padding: 100px 4vw;
  font-size: 1.5rem;
}

.p-worksSingle_nav {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 4vw;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

/* Contact */
.p-contact {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 4vw;
}
.p-contact__inner {
  padding: 80px 4vw;
  box-shadow: inset 20px 20px 60px #e9e9e9, inset -20px -20px 60px #ffffff;
  font-size: 1.5rem;
}
.p-contact__desc {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.p-contact__list {
  margin-bottom: 50px;
}
.p-contact__item {
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-contact__item {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.p-contact textarea,
.p-contact input[type=text] {
  width: 70%;
  padding: 5px;
  box-sizing: border-box;
  border: 2px solid #436F8F;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .p-contact textarea,
  .p-contact input[type=text] {
    width: 100%;
  }
}
.p-contact input[type=text]:focus-visible,
.p-contact input[type=text]:focus,
.p-contact textarea:focus-visible,
.p-contact textarea:focus,
.p-contact input[type=submit]:focus-visible,
.p-contact input[type=submit]:focus {
  border: 2px solid #96C1C6 !important;
  outline: none;
  border-radius: 5px;
}
.p-contact__term {
  width: 15%;
  display: block;
  margin-right: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-contact__term {
    width: 100%;
    margin-right: 0;
  }
}
.p-contact .error {
  width: 100%;
  margin-top: 5px;
  text-align: center;
}
.p-contact__submitArea {
  text-align: center;
}
.p-contact__submit {
  width: 120px;
  height: 40px;
  text-align: center;
  border: 3px solid #436F8F;
  font-size: 1.6rem;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.3s;
}
.p-contact__submit:hover {
  border: 3px solid #96C1C6;
  background-color: #96C1C6;
  border-radius: 5px;
  color: #EEEEEE;
  text-shadow: 0px 8px 1px rgba(0, 0, 0, 0.54);
  transition: 0.3s;
  letter-spacing: 0.2em;
}
.p-contact__submit--bgWhite {
  background-color: #FBFBFB;
}
.p-contact__submit a {
  display: block;
  padding: 12px 0;
}

.mw_wp_form_confirm .p-contact__desc,
.mw_wp_form_complete .p-contact__desc {
  display: none;
}

.p-404__text {
  font-size: 1.5rem;
  padding: 80px 4vw;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.p-404__buttonArea {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

/* foundation */
/* component */
/* global */
/* layout */
/* project */

/*# sourceMappingURL=style.css.map */
