/* 共通ボタンアニメーション */
@import url("https://fonts.googleapis.com/css?family=Mukta:700");
#container {
  text-align: center;
}

#container * {
  box-sizing: border-box;
  text-align: center;
}
#container *::before, #container *::after {
  box-sizing: border-box;
}
#container body {
  font-family: "Mukta", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 100vh;
  background: #f3f8fa;
}
#container button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
#container button.learn-more {
  width: 12rem;
  height: auto;
}
#container button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #282936;
  border-radius: 1.625rem;
}
#container button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
#container button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
#container button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
#container button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
#container button:hover .circle {
  width: 100%;
}
#container button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
#container button:hover .button-text {
  color: #fff;
}

@charset "UTF-8";
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::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 {
  line-height: 1.15;
  /* 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;
  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] {
  -webkit-text-decoration: underline dotted;
          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.
 */
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

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

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

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

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

legend {
  padding: 0;
}

/**
 * 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;
}

/**
 * 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. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * 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]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

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

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

@supports (display: grid) {
  #container body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0.625rem;
    grid-template-areas: ". main main ." ". main main .";
  }
  #container #container {
    grid-area: main;
    align-self: center;
    justify-self: center;
  }
}

#conference-timeline {
  position: relative;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
  margin-top: 56px;
  margin-bottom: 7.5rem;
}

#conference-timeline .timeline-start,
#conference-timeline .timeline-end {
  display: table;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  background: #AD9D8E;
  padding: 15px 23px;
  color: #fff;
  max-width: 14%;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

#conference-timeline .conference-center-line {
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -2px;
  background: #AD9D8E;
  z-index: -1;
}

#conference-timeline .conference-timeline-content {
  padding-top: 67px;
  padding-bottom: 67px;
}

.timeline-article {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 20px 0;
}

.timeline-article .content-left-container,
.timeline-article .content-right-container {
  max-width: 44%;
  width: 100%;
}

.timeline-article .timeline-author {
  display: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #242424;
  text-align: right;
}

.timeline-article .content-left,
.timeline-article .content-right {
  position: relative;
  width: auto;
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  padding: 27px 25px;
}

.timeline-article p {
  margin: 0 0 0 160px;
  padding: 0;
  font-weight: 400;
  color: #242424;
  font-size: 1rem;
  line-height: 24px;
  position: relative;
}

.timeline-article p span.article-number {
  position: absolute;
  font-weight: 300;
  font-size: 44px;
  top: 10px;
  left: -140px;
  color: #AD9D8E;
}

.timeline-article .content-left-container {
  float: left;
}

.timeline-article .content-right-container {
  float: right;
  margin-top: 40px;
}

.timeline-article .content-left:before,
.timeline-article .content-right:before {
  position: absolute;
  top: 20px;
  font-size: 23px;
  font-family: "FontAwesome";
  color: #fff;
}

.timeline-article .content-left:before {
  content: "\f0da";
  right: -8px;
}

.timeline-article .content-right:before {
  content: "\f0d9";
  left: -8px;
}

.timeline-article .meta-date {
  position: absolute;
  top: 0;
  left: 49.5%; /* 50% */
  width: 72px;
  height: 72px;
  margin-left: -31px;
  color: #fff;
  border-radius: 100%;
  background: #AD9D8E;
}

.timeline-article .meta-date .date,
.timeline-article .meta-date .month {
  display: block;
  text-align: center;
  font-weight: 900;
}

.timeline-article .meta-date .date {
  font-size: 1.5rem;
  line-height: 40px;
  margin-top: 10px;
}

.timeline-article .meta-date .month {
  font-size: 18px;
  line-height: 10px;
}

/*===== // Vertical Timeline =====*/
/*===== Resonsive Vertical Timeline =====*/
@media only screen and (max-width: 830px) {
  #conference-timeline .timeline-start,
  #conference-timeline .timeline-end {
    margin: 0;
  }
  #conference-timeline .conference-center-line {
    margin-left: 0;
    left: 50px;
  }
  .timeline-article .meta-date {
    margin-left: 0;
    left: 25px;
  }
  .timeline-article .content-left-container,
  .timeline-article .content-right-container {
    max-width: 100%;
    width: auto;
    float: none;
    margin-left: 110px;
    min-height: 53px;
  }
  .timeline-article .content-left-container {
    margin-bottom: 20px;
  }
  .timeline-article .content-left,
  .timeline-article .content-right {
    padding: 10px 25px;
    min-height: 65px;
  }
  .timeline-article .content-left:before {
    content: "\f0d9";
    right: auto;
    left: -8px;
  }
  .timeline-article .content-right:before {
    display: none;
  }
}
@media only screen and (max-width: 400px) {
  .timeline-article p {
    margin: 0;
  }
  .timeline-article p span.article-number {
    display: none;
  }
}
@media (max-width: 478px) {
  .timeline-article p span.article-number {
    display: none;
  }
  .timeline-article p {
    margin: 0;
  }
  .timeline-article .content-left:before,
  .timeline-article .content-right:before {
    display: none;
  }
  .timeline-article .timeline-author {
    display: block;
  }
}
/* color */
/* PC:画面幅  */
/* 全投稿ページでタイトル非表示 */
.single.entry-title {
  display: none;
}

/* common */
* {
  box-sizing: border-box;
  max-width: 1280px;
  margin: 0 auto;
}

html {
  font-size: 100%;
  font-family: "Noto Sans", sans-serif;
  font-family: "Noto Sans JP", sans-serif;
}

.sitetitle,
.sitetitle-2,
.sitetitle-3 {
  font-family: "Poppins", sans-serif;
}

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

.wrapper {
  max-width: calc(1068px + 8%);
  width: 100%;
  padding: 0 4%;
  margin: 0 auto;
}

/* パンくずリスト */
.section-bread {
  padding-top: 10rem;
  margin-left: 4%;
}
.section-bread ul {
  list-style: none;
  font-size: 0.88em;
}
.section-bread li {
  display: inline;
}
.section-bread li a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}
.section-bread li a:hover {
  border-bottom: 1px solid #000;
}
.section-bread li + li:before {
  content: ">";
  margin-right: 0.3em;
  margin-left: 0.3em;
}

.section-bread {
  padding-top: 10rem;
}

.home .section-bread {
  display: none;
}

.ja {
  font-size: 2.25rem;
  text-align: center;
  margin-top: 7.0625rem;
  margin-bottom: 0.5rem;
  padding-top: 88px;
  margin-top: -88px;
}

.en {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.5em;
  text-align: center;
  margin-bottom: 24px;
}

#container {
  display: block;
  padding-bottom: 3.5rem;
}

.nav-rogo {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 7rem;
  font-weight: 800;
  color: #EFEBE8;
  opacity: 0.4;
  padding-top: 40px;
  text-align: center;
  animation: text-focus-in 2.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/* ----------------------------------------------
   * Generated by Animista on 2018-11-27 15:52:19
   * w: http://animista.net, t: @cssanimista
   * ---------------------------------------------- */
/**
   * ----------------------------------------
   * animation text-focus-in
   * ----------------------------------------
   */
@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 0.4;
  }
}
/* header */
header {
  height: 100%;
  max-width: 1280px;
}

.headernavi {
  width: 100%;
  max-width: 1280px;
  height: clamp(88px, 1vw, 136px);
  display: flex;
  position: fixed;
  z-index: 2;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.header-white {
  width: 26%;
  background-color: #fff;
  padding-left: 4%;
  height: clamp(88px, 1vw, 136px);
  margin-left: 0;
}

.sitetitle {
  font-size: clamp(16px, 3vw, 28px);
  font-weight: 400;
  height: clamp(88px, 1vw, 136px);
  line-height: 1.2;
  display: table-cell;
  vertical-align: middle;
  align-items: center;
  white-space: nowrap;
}

.pc {
  margin: 0 0 0 auto;
  margin-right: 8%;
}

.header-black {
  justify-content: flex-end;
}
.header-black ul {
  width: 100%;
  font-size: clamp(12px, 2vw, 18px);
  font-weight: bold;
  display: flex;
  color: #fff;
  height: clamp(88px, 1vw, 136px);
  line-height: 136px;
  align-items: center;
}
.header-black ul li {
  margin-left: 16px;
}
.header-black ul li a:hover {
  color: rgb(198, 3, 3);
  transition: 0.5s ease-in-out;
  border-radius: 10px;
}

.headernavi li:last-child a {
  height: 56px;
  background-color: #AD9D8E;
  padding: 8% 16px;
  border-radius: 4px;
}
.headernavi li:last-child a:hover {
  color: #AD9D8E;
  transition: all 0.8s 0.2s ease-in-out;
  background-color: white;
  border: 2px solid #AD9D8E;
}

.mainvisual {
  max-width: 1280px;
  width: 100%;
  background-color: #000;
  padding-right: 9.6%;
  position: relative;
  margin-top: clamp(88px, 1vw, 136px);
}
.mainvisual .black {
  max-width: 1174px;
  background-color: #000;
}
.mainvisual img {
  width: 100%;
  max-width: 1070px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
}

* {
  box-sizing: border-box;
}

.particle-img {
  position: relative;
}

#particles-js {
  z-index: 1;
  bottom: 0;
  left: 0;
  right: inherit;
  width: 100vw;
  height: 100%;
}

.guide {
  position: absolute;
  display: block;
  width: 50%;
  height: 44%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  display: table;
  position: absolute;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 4% 5% 3% 0;
}
@keyframes fadein {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.5;
  }
}

.guide-text {
  text-align: right;
  justify-content: center;
  align-items: center;
  display: table-cell;
  vertical-align: middle;
}
.guide-text span {
  opacity: 1;
  display: inline-block;
  margin-bottom: 6%;
  font-size: clamp(24px, 4vw, 56px);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 0.05em #aaa, 0 0 0.06em #aaa, 0 0 0.07em #aaa, 0 0 0.08em #aaa, 0 0 0.09em #aaa, 0 0 0.2em #aaa, 0 0 0.2em #aaa, 0 0 0.2em #aaa, 0 0 0.5em #aaa;
}
.guide-text p {
  font-size: clamp(10px, 2vw, 20px);
  color: #fff;
  line-height: 1.3;
}

/* service */
#service {
  margin-top: 3.5rem;
}

.service-box {
  display: flex;
}

.service-navi {
  width: 28%;
  text-align: center;
}
.service-navi h3 {
  font-size: 1.5rem;
  margin: 36px 0;
}
.service-navi p {
  text-align: left;
  margin-bottom: 56px;
  line-height: 1.8;
}

#service a {
  display: block;
  text-align: center;
}

#service #container {
  margin-top: 0;
  padding-bottom: 0;
}

/* about */
#about {
  max-width: 1280px;
}

#about .ja {
  text-align: center;
}

.about-back {
  max-width: 1174px;
  margin-right: 8%;
  background-color: #EFEBE8;
  align-items: center;
  justify-content: center;
  padding-top: 8%;
  padding-bottom: 8%;
  margin-bottom: 7.5rem;
}
.about-back .about-contents {
  margin: 0 auto;
  display: flex;
  margin-right: 8%;
  align-items: center;
}
.about-back .about-pic {
  margin-left: 8%;
}
.about-back .about-pic img {
  width: 80%;
  height: auto;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-back .about-txt {
  width: 100%;
  margin: 0;
  line-height: 1.7;
}
.about-back .about-txt p {
  font-size: clamp(12px, 1vw, 24px);
  margin-bottom: 1.25rem;
}
.about-back .about-txt p:last-child {
  margin-bottom: 51px;
}

.about-back #container {
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

/* works */
#works {
  max-width: 1280px;
  width: 100%;
}

.works-back {
  box-sizing: border-box;
  max-width: 1280px;
  background-color: #EFEBE8;
  margin-top: 56px;
  margin-left: 8%;
  padding-top: 8%;
  padding-right: 8%;
  margin-bottom: 7.5rem;
}
.works-back .group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: clamp(16px, 4vw, 56px);
       column-gap: clamp(16px, 4vw, 56px);
  align-items: center;
}
.works-back .group:nth-child(2) {
  margin-bottom: 0;
}
.works-back .group .work-content {
  margin-bottom: clamp(24px, 6vw, 64px);
}
.works-back .group .work-content img {
  box-shadow: 0 0 8px silver;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-back .group .work-content .work-navi {
  height: auto;
  width: auto;
  background-color: #fff;
  text-align: center;
  margin: 0;
  box-shadow: 0 0 8px silver;
  display: flex;
  justify-content: center;
  align-items: center;
  display: block;
  font-size: clamp(10px, 2vw, 24px);
  line-height: 1.8;
  padding-top: clamp(40px, 3vw, 64px);
  padding-bottom: clamp(40px, 3vw, 64px);
}

.works-back #container {
  padding-bottom: 8%;
}

.work-content:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.group:nth-child(2) {
  padding-bottom: 72px;
}

.animate {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s, transform 0.6s;
  transition-timing-function: ease-in-out;
}

.animate.appear {
  opacity: 1;
  transform: none;
}

/* footer */
#contact {
  width: 100%;
  max-width: 1280px;
  padding: 0;
}

.contact {
  text-align: center;
  background-color: #222222;
  color: #fff;
  align-items: center;
  padding: 56px 0;
}
.contact .ja {
  margin-top: 0;
  padding-top: 0;
  font-size: 1.6rem;
}
.contact .en {
  font-size: 0.8rem;
}
.contact p {
  margin-bottom: 24px;
}
.contact .contactbtn {
  display: inline-block;
  background-color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  color: #222222;
}
.contact .contactbtn:hover {
  color: #AD9D8E;
  transition: all 0.8s 0.2s ease-in-out;
  background-color: white;
  border: 2px solid #AD9D8E;
}

.footernavi div {
  margin: 0 auto;
  text-align: right;
}

.footernavi {
  background-color: #EFEBE8;
  padding: 56px 8%;
}
.footernavi .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footernavi .container .footer-title {
  margin-right: 0;
  width: 33%;
  text-align: left;
}
.footernavi .container .footer-title .sitetitle-3 {
  font-size: clamp(24px, 1vw, 2rem);
}
.footernavi .container ul {
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.7;
  width: 33%;
  text-align: center;
}
.footernavi .container ul li {
  display: inline-block;
  width: auto;
}
.footernavi .container .footer-info {
  width: 33%;
  margin-right: 0;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.footernavi ul li {
  position: relative;
  padding: 0 0 0 16px;
}

.footernavi ul li::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  box-sizing: border-box;
  border: 5px solid transparent;
  border-left: 8px solid #222;
  z-index: 2;
}

.footernavi ul li::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -6px;
  margin: auto;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 9px;
  background: #EFEBE8;
  z-index: 1;
}

.footernavi ul a:hover {
  opacity: 0.4;
  transition: 0.5s ease-in-out;
}

.copy {
  padding: 12px;
  text-align: center;
  align-items: center;
  background-color: #222;
  color: #fff;
}

.sp {
  display: none;
}

/* 
各詳細ページ 
*/
/* 各ページ共通 */
* {
  box-sizing: border-box;
}

.ja {
  margin-top: 16px;
}

/* service.html */
.service {
  max-width: 100%;
}

.service-design {
  max-width: 1280px;
  margin-bottom: 3.5rem;
  padding-left: 8%;
}

.service-design:first-of-type {
  margin-top: 3.5rem;
}

.service-design:last-child {
  margin-bottom: 7.5rem;
}

.space {
  width: 100%;
  max-width: 1174px;
  display: flex;
  position: relative;
  padding-left: clamp(16%, 1vw, 16%);
}

.service-design .img {
  flex: 1;
}

.service-design .img img {
  width: 31rem;
  max-width: 40%;
  height: auto;
  position: absolute;
  left: 0;
}

.coating {
  background-color: #EFEBE8;
  max-width: 68.5rem;
  width: 100%;
  max-height: 31rem;
  height: auto;
  z-index: -1;
  padding: clamp(1rem, 4vw, 5rem);
  margin-top: clamp(2rem, 4vw, 5rem);
}

.design-text {
  width: clamp(65%, 25vw, 70%);
  margin-right: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.design-text h3 {
  font-size: clamp(16px, 3vw, 24px);
  margin-bottom: 1rem;
  font-weight: bold;
}
.design-text p {
  font-size: clamp(12px, 2vw, 20px);
  line-height: 1.7;
  padding-bottom: 1rem;
}
.design-text .language {
  display: block;
  font-size: clamp(12px, 2vw, 20px);
  border-top: 1px solid #AD9D8E;
  border-bottom: 1px solid #AD9D8E;
  padding: 1rem 0;
}
.design-text .price {
  font-size: clamp(12px, 2vw, 20px);
  line-height: 1.7;
  margin-top: 1rem;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
}
.design-text .price dt {
  width: 65%;
  font-weight: normal;
}
.design-text .price dd {
  width: 35%;
}

.service-design:nth-of-type(2) {
  max-width: 1280px;
  padding-left: 0;
  padding-right: 8%;
}

.reverse .space {
  padding-left: 0;
}
.reverse .space .img img {
  margin-right: 0;
  right: 0;
}
.reverse .space .coating {
  margin-left: 0;
  margin-right: 16%;
  padding: clamp(1rem, 4vw, 5rem);
}
.reverse .space .coating .design-text {
  width: clamp(65%, 25vw, 70%);
  margin-left: 0;
}
.reverse .space .coating .design-text .price dt {
  font-weight: normal;
}

.animate-x {
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 0.3s, transform 0.8s;
  transition-delay: 0.1s;
  transition-duration: 2s;
}

.animate-x.appear {
  opacity: 1;
  transform: none;
}

.animate-xx {
  opacity: 0;
  transform: translateX(-120px);
  transition: opacity 0.3s, transform 0.8s;
  transition-delay: 0.2s;
  transition-duration: 2s;
}

.animate-xx.appear {
  opacity: 1;
  transform: none;
}

/* service-flow */
.flow {
  padding: 0 4%;
  margin-bottom: 7.5rem;
}

.flow-box {
  display: flex;
  align-items: center;
  margin-bottom: 56px;
}

.flow-icon {
  width: 25%;
  align-items: center;
  text-align: center;
  position: relative;
  margin-left: 0;
}
.flow-icon p {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: bold;
}
.flow-icon img {
  width: 5rem;
  height: 5rem;
}
.flow-icon .dotes .dot {
  content: "";
  position: absolute;
  left: 50%;
  top: auto;
  background: #EFEBE8;
  width: 0.88rem;
  height: 0.88rem;
  border-radius: 50%;
}
.flow-icon .dotes .dot:nth-of-type(2) {
  margin-top: 20px;
}
.flow-icon .dotes .dot:nth-of-type(3) {
  margin-top: 40px;
}

.flow-comment {
  width: 70%;
  font-size: clamp(12px, 2vw, 20px);
  line-height: 1.7;
  padding: 2rem;
  position: relative;
  display: inline-block;
  max-width: 100%;
  color: #222;
  background: #EFEBE8;
  border-radius: 10px;
  margin-right: 0;
  margin-left: 0;
}
.flow-comment:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.875rem;
  margin-top: -45px;
  border: 1.5rem solid transparent;
  border-right: 1.5rem solid #EFEBE8;
}
.flow-comment p {
  font-weight: bold;
}

.after {
  width: 100%;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 1.7;
  padding: 2.5rem;
  position: relative;
  display: inline-block;
  max-width: 100%;
  color: #222;
  background: #EFEBE8;
  border-radius: 10px;
}
.after p {
  font-weight: bold;
}

/* about.html*/
.about-about {
  max-width: 1068px;
  width: 100%;
  margin-top: 56px;
  margin-bottom: 7.5rem;
}

.about-content {
  display: flex;
  align-items: center;
}
.about-content .author {
  max-width: 504px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 6%;
}
.about-content .name {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.about-content .name h3 {
  font-size: clamp(1.2rem, 2vw, 2rem);
  background: linear-gradient(transparent 70%, #eee 70%);
  padding-left: 12px;
  padding-right: 12px;
}
.about-content .name span {
  margin-left: 0.8rem;
  font-size: clamp(10px, 2vw, 14px);
}
.about-content .info {
  padding-right: 8%;
}
.about-content .info p {
  font-size: clamp(12px, 2vw, 20px);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.parallax {
  margin-bottom: 118px;
}
.parallax .fujisan {
  width: 100%;
  height: 240px;
  background-image: url(../img/hinode.jpg);
  background-attachment: fixed;
  background-size: auto;
  background-position: right;
  background-repeat: no-repeat;
  align-items: center;
  display: flex;
  padding: 0;
  margin-right: auto;
}
.parallax .comment {
  display: block;
  margin: 0 auto;
  max-width: 1068px;
  width: 100%;
  text-align: right;
  font-size: 0.88rem;
  margin-top: 8px;
}

/* about-career */
/* 別scssファイルに記載 */
/* about-concept */
.concept-content {
  width: 100%;
  display: flex;
  margin-bottom: 7.5rem;
  justify-content: space-between;
  padding: 0 4%;
}
.concept-content .concept-box {
  width: 31%;
  padding-top: 32px;
}
.concept-content .concept-box .concept-title {
  font-size: clamp(20px, 4vw, 48px);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #EFEBE8;
}
.concept-content .concept-box .img-box {
  height: clamp(130px, 28vw, 240px);
  border: clamp(6px, 2vw, 16px) solid #EFEBE8;
  text-align: center;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.concept-content .concept-box .img-box img {
  width: clamp(64px, 10vw, 136px);
}
.concept-content .concept-box .img-box .asobi-1 {
  width: clamp(20px, 8vw, 120px);
  margin-bottom: -24px;
}
.concept-content .concept-box .img-box .asobi-2 {
  width: clamp(14px, 6vw, 80px);
}
.concept-content .concept-box .img-box .asobi-3 {
  width: clamp(8px, 4vw, 64px);
  margin-top: -24px;
}

.menu {
  background: #EFEBE8;
  padding-bottom: 0.05rem;
}

.menu-title {
  display: flex;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 16px;
}
.menu-title h3 {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 600;
  padding-left: 1.2rem;
  width: 80%;
}

.menu-icon {
  margin: auto 10px auto auto;
  padding: 3% 6% 4%;
}

.menu-icon:hover {
  cursor: pointer;
  border-radius: 50%;
  background-color: #c7c6c6;
}

.menu-text {
  margin: 0;
  padding: 30px 0;
}

.menu-content {
  background-color: #fff;
  margin: 0 clamp(6px, 2vw, 16px) 1rem;
  border-radius: 10px;
  /* 開くアニメーション */
  transition: border-top 0.3s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
}
.menu-content p {
  padding: 8px;
  line-height: 1.4;
  font-size: clamp(12px, 2vw, 20px);
  /* 開くアニメーション */
  transition: border-top 0.3s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
}

.menu .display-none {
  display: none;
}

/* about-skill */
.skill {
  max-width: calc(784px + 8%);
  width: 100%;
  padding: 0 4%;
  margin-bottom: 7.5rem;
}

.skill-coating {
  background-color: #EFEBE8;
  border-radius: 24px;
  padding: clamp(32px, 4vw, 80px);
  margin-top: 56px;
}

.skill-section {
  display: flex;
  margin-bottom: clamp(40px, 4vw, 72px);
}
.skill-section h3 {
  font-size: clamp(18px, 1vw, 24px);
  font-weight: bold;
  text-align: right;
  width: 33%;
}
.skill-section .skill-icon {
  margin-left: 0;
  text-align: center;
}
.skill-section .skill-icon img {
  width: clamp(72px, 6vw, 96px);
  padding-bottom: 8px;
}
.skill-section .skill-icon span {
  display: block;
  font-size: 1.25rem;
  font-size: clamp(16px, 1vw, 20px);
}
.skill-section .skill-icon-2 {
  text-align: center;
  display: flex;
  width: 65%;
  justify-content: space-between;
}
.skill-section .skill-icon-2 img {
  width: clamp(72px, 6vw, 96px);
  padding-bottom: 8px;
}
.skill-section .skill-icon-2 span {
  display: block;
  font-size: 1.25rem;
  font-size: clamp(16px, 1vw, 20px);
}

.skill-section:nth-child(3) {
  margin-bottom: 0;
}

.skill-icon:nth-child(2) {
  margin-left: 20px;
}

.animate-xxx.appear {
  animation: rotate180 2s;
}

@keyframes rotate180 {
  0% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(0);
  }
}
/* works-1.html */
/* ベースはindex.htmlを流用 */
.works-1 {
  padding-bottom: 7.5rem;
}

.works-back-2 {
  max-width: 1280px;
  padding: 8%;
  background-color: #EFEBE8;
  margin-top: 56px;
}
.works-back-2 .group {
  max-width: 1068px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: right;
  -moz-column-gap: clamp(16px, 4vw, 56px);
       column-gap: clamp(16px, 4vw, 56px);
  align-items: center;
  justify-items: center;
  align-items: center;
}
.works-back-2 .group .work-content {
  margin-bottom: clamp(24px, 6vw, 64px);
}
.works-back-2 .group .work-content img {
  box-shadow: 0 0 8px silver;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-back-2 .group .work-content .work-navi {
  height: auto;
  width: auto;
  background-color: #fff;
  text-align: center;
  margin: 0;
  box-shadow: 0 0 8px silver;
  display: flex;
  justify-content: center;
  align-items: center;
  display: block;
  font-size: clamp(10px, 2vw, 24px);
  line-height: 1.8;
  padding-top: clamp(40px, 3vw, 64px);
  padding-bottom: clamp(40px, 3vw, 64px);
  position: relative;
}

.works-back-2 .work-navi .html-icon {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #F36329;
  color: #fff;
  font-size: clamp(12px, 1vw, 20px);
  padding: 0.2rem;
  margin: 0 auto;
  width: 32%;
}

.works-back-2 .work-navi .wp-icon {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #617CBE;
  color: #fff;
  font-size: clamp(12px, 1vw, 20px);
  padding: 0.2rem 1rem;
  margin: 0 auto;
}

.works-back-2 .work-navi .design-icon {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2B8D38;
  color: #fff;
  font-size: clamp(12px, 1vw, 20px);
  padding: 0.2rem;
  margin: 0 auto;
  width: 32%;
}

.group:nth-of-type(2) {
  margin-bottom: 0px;
  padding-bottom: 0;
}

.pagenation-pc {
  text-align: center;
}
.pagenation-pc dl li {
  display: inline-block;
  width: 3.125rem;
  height: 3.125rem;
  border: 0.5px solid #ddd;
  background-color: #fff;
  text-align: center;
  border-radius: 8px;
  line-height: 3.125rem;
}
.pagenation-pc dl li a {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.pagenation-pc li:nth-of-type(3) {
  background-color: #AD9D8E;
  color: #fff;
}

.pagenation-pc li:nth-of-type(2),
.pagenation-pc li:nth-of-type(6) {
  opacity: 0;
}

/* works-2.html */
.works-2 {
  text-align: center;
  max-width: calc(920px + 8%);
  width: 100%;
}

.detail-content {
  display: flex;
  align-items: center;
  padding: 0 4%;
  height: auto;
  width: auto;
}

.detail-coating {
  background-color: #EFEBE8;
  width: 100%;
  height: auto;
  filter: drop-shadow(4px 6px 1px #ddd);
  padding: 1.5rem;
  transition: transform 2s ease;
}
.detail-coating:hover {
  transition: transform 0.6s ease;
  transform: scale(1.1);
}
.detail-coating .device-img {
  display: flex;
  margin-top: 2rem;
  margin-bottom: 32px;
  gap: 2rem;
}
.detail-coating .device-img .device-sp {
  width: clamp(80px, 8vw, 120px);
  height: clamp(160px, 16vw, 256px);
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(4px 4px 5px #aaa);
  margin-top: 32px;
  margin-left: 0;
}

.device-pc {
  width: clamp(240px, 24vw, 320px);
  height: clamp(180px, 18vw, 248px);
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(4px 4px 5px #aaa);
  margin-right: 0;
}

.pc_screen {
  margin-right: 0;
}

.device span {
  display: block;
  font-size: clamp(12px, 1vw, 16px);
  margin-bottom: 16px;
}

.detail-white {
  background-color: #fff;
  display: flex;
  padding: 2.5rem 1.5rem;
}
.detail-white .detail-left {
  width: 50%;
  border-right: 1px solid #AD9D8E;
  padding-right: 1.5rem;
}
.detail-white .detail-left h3 {
  font-size: clamp(16px, 1vw, 28px);
  margin-bottom: 3rem;
  margin-top: 1rem;
}
.detail-white .detail-left ul {
  text-align: left;
}
.detail-white .detail-left ul li {
  font-size: clamp(12px, 1vw, 16px);
  padding: 12px;
  border-top: 1px solid #AD9D8E;
}
.detail-white .detail-left ul li:last-child {
  border-bottom: 1px solid #AD9D8E;
}
.detail-white .detail-right {
  width: 40%;
  text-align: left;
  margin-top: 0.5rem;
  line-height: 1.7;
}
.detail-white .detail-right p {
  font-size: clamp(12px, 1vw, 16px);
}

#container {
  margin-top: 3.5rem;
  margin-bottom: 7.5rem;
}

/* slider-swiper */
.works-2 {
  max-width: 1280px;
}

.swiper-area {
  position: relative;
}

.swiper-pagination-horizontal {
  display: block;
}

.swiper-pagination-bullet {
  width: 1.2rem;
  height: 1.2rem;
  background-color: #222;
}

.swiper {
  max-width: 1174px;
  height: 53.75rem;
  position: relative;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.swiper-button-next::after {
  background-image: url("../img/next-btn-2.png");
  opacity: 0.8;
  filter: drop-shadow(2px 2px 2px #ddd);
}

.swiper-button-prev::after {
  background-image: url("../img/prev-btn-2.png");
  opacity: 0.8;
  filter: drop-shadow(2px 2px 2px #ddd);
}

.swiper-button-next,
.swiper-button-prev {
  width: clamp(40px, 8vw, 80px);
  height: clamp(40px, 8vw, 80px);
}

.glide__slides {
  height: auto;
}

.glide__slide {
  height: auto;
}

/* スワイパー SP切り替え600px swiper.jsに記載 */
@media (max-width: 600px) {
  .screen {
    top: 3%;
    left: 8%;
    width: 84%;
    height: 54%;
    -o-object-fit: cover;
       object-fit: cover;
    overflow: hidden;
  }
}
/* swiper 切り替わりアニメーション */
@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.5);
  }
}
.swiper-container {
  width: 100%;
  max-width: 500px;
  height: 300px;
  margin: 40px auto;
}
.swiper-container .swiper-wrapper .swiper-slide-prev img,
.swiper-container .swiper-wrapper .swiper-slide-active img,
.swiper-container .swiper-wrapper .swiper-slide-duplicate-active img {
  animation-name: zoom;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}

/* 
制作実績一覧下 ページネーション
*/
/*– ページャーのスタイル指定 灰色ボタンの間に間隔有り –*/
.wp-pagenavi {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5em;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #999;
  background-color: #FFF;
  border: solid 1px #999;
  padding: 8px 15px;
  margin: 0 2px;
  white-space: nowrap;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
}

.wp-pagenavi a:hover {
  color: #FFF;
  background-color: #999;
  border-color: #999;
}

.wp-pagenavi span.current {
  color: #FFF;
  background-color: #AD9D8E;
  border-color: #AD9D8E;
  font-weight: bold;
  border-radius: 6px;
}

/* 
コンタクトフォーム
*/
/* プラグイン MW WP Form */
/*ーーーーーーーーーーーーーーーー*/
/* MW WP Formカスタマイズ */
/*ーーーーーーーーーーーーーーーー*/
.mw_wp_form input[type=email],
.mw_wp_form input[type=tel],
.mw_wp_form input[type=text],
.mw_wp_form textarea {
  padding: 0.5rem 1em;
  width: 100%;
  box-sizing: border-box;
  font-size: 15px;
  border: 1px solid #ccc;
  resize: none;
}

.mw_wp_form input::-moz-placeholder, .mw_wp_form textarea::-moz-placeholder {
  color: #bbb;
}

.mw_wp_form input::placeholder,
.mw_wp_form textarea::placeholder {
  color: #bbb;
}

.mw_wp_form_text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  margin-top: 56px;
  margin-bottom: 2rem;
}

.mw_wp_form select {
  display: block;
  position: relative;
  width: 80%;
  font-size: 14px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  padding: 10px;
}

.mw_wp_form select:after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  pointer-events: none;
}

/*――――「表」デザイン――――*/
.cform th {
  font-size: 15px;
  width: 25%;
  border-bottom: solid 1px #d6d6d6;
  padding-left: 20px;
  font-weight: bolder;
  background-color: #eee;
  vertical-align: middle;
}

.cform td {
  font-size: 15px;
  line-height: 200%;
  border-bottom: solid 1px #d6d6d6;
  padding: 10px 10px;
}

.cform th:first-of-type,
.cform td:first-of-type {
  border-top: solid 1px #d6d6d6;
}

/* 確認画面 */
.mw_wp_form_confirm .cform th {
  padding-right: 20px;
  height: 40px;
}

/* 送信完了画面 */
.mw_wp_form_complete {
  max-width: 720px;
  margin-bottom: 7rem;
}

.mw_wp_form_complete h3 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  font-weight: bold;
  text-align: center;
  display: block;
}

.mw_wp_form_complete p,
.mw_wp_form_complete span {
  display: block;
  line-height: 1.7;
}

.mw_wp_form_complete span {
  margin-bottom: 2px;
}

.mw_wp_form_confirm .required-srt {
  display: none;
}

/*―――――表示―――――*/
.cform {
  max-width: 800px;
  margin: auto;
}

.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .cform th,
  .cform td {
    width: 100%;
    border-top: none;
    border-bottom: none;
    border: 1px solid #d6d6d6;
    padding: 1.5em 1em;
    display: block;
    margin: 0;
  }
}
/*――「送信ボタン」デザイン――*/
.submit-btn input,
.back-btn {
  background-color: #222222;
  border: 0;
  color: #ffffff;
  font-size: 1.3em;
  font-weight: bolder;
  margin: 0 auto;
  padding: 10px 35px;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  margin-bottom: 7rem;
}

.submit-btn {
  text-align: center;
  align-items: center;
  margin-top: 20px;
  cursor: pointer;
}

.submit-btn input:hover,
.back-btn:hover {
  background: #FFFFFF;
  color: #222222;
  border: 1px solid #222222;
  cursor: pointer;
  transition: 0.8s;
}

/*―――「必須」デザイン―――*/
.required-srt {
  font-size: 0.9em;
  padding: 2px 6px;
  border-radius: 5px;
  margin-left: 8px;
  background: #F36329;
  color: #ffffff;
}

/*ーーーーーーー MW WP Form ここまで ーーーーーーーーー*/
/* 404.php */
.page-404 {
  max-width: 720px;
  margin-bottom: 7.2rem;
}
.page-404 h2 {
  font-size: 1.6rem;
  margin-top: 7rem;
  margin-bottom: 2rem;
}
.page-404 p {
  line-height: 1.7;
}

.for_top {
  color: blue;
  text-decoration: underline;
}

/* 
SP-screen 
*/
@media (max-width: 478px) {
  .sp {
    display: block;
  }
  * {
    box-sizing: border-box;
    margin: 0 auto;
  }
  .wrapper {
    max-width: 478px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
  }
  img {
    max-width: 100%;
  }
  .ja {
    font-size: 2rem;
    padding-top: 80px;
    margin-top: -80px;
  }
  p,
  span {
    font-size: 1.2rem;
  }
  .wrap {
    overflow: hidden;
  }
  .section-bread {
    max-width: 478px;
    width: 100%;
    padding-top: 8rem;
    padding-bottom: 3.5rem;
    margin-left: 0;
    padding-left: 4%;
    font-size: 0.88rem;
  }
  .section-bread li a:hover {
    border-bottom: none;
  }
  .home .section-bread {
    display: none;
  }
  /* sp header */
  header {
    height: auto;
    max-width: 478px;
    width: 100%;
    margin-left: 0;
  }
  .headernavi {
    box-sizing: border-box;
    max-width: 478px;
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 400;
    align-items: center;
    overflow: hidden;
  }
  .sitetitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
    width: 40%;
    line-height: 1.2;
    text-shadow: 1px 1px 6px #ddd;
    padding-left: 16%;
  }
  .header-white {
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
  }
  /* ハンバーガーメニューのナビゲーションの設定 */
  #hamburger-navigation {
    width: 48%;
    height: 100vh;
    background-color: rgba(221, 221, 221, 0.8);
    color: #222;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 20;
    opacity: 0;
    text-align: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    visibility: hidden;
    margin-top: 80px;
    text-align: right;
  }
  #hamburger-navigation ul {
    padding-right: 1.5rem;
  }
  #hamburger-navigation .sections {
    margin-top: 40px;
  }
  #hamburger-navigation .sections li {
    margin-bottom: 16px;
  }
  #hamburger-navigation .sections a {
    color: #222;
    font-weight: bold;
    font-size: 1rem;
  }
  #hamburger-navigation .sections li:last-of-type a {
    display: inline-block;
    color: #fff;
    background-color: #222;
    margin-top: 0;
    margin-right: -12%;
    height: auto;
    text-align: center;
    width: 6rem;
  }
  .mainvisual {
    box-sizing: border-box;
    max-width: 478px;
    width: 100%;
    position: relative;
    margin-top: 80px;
    height: auto;
    padding-right: 0;
  }
  .mainvisual img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #particles-js img {
    height: calc(100vh - 80px);
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .particle-img {
    height: calc(100vh - 80px);
  }
  .guide {
    width: 88%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
    top: 64%;
    right: 0;
    transform: translate(0, -50%);
    display: table;
    position: absolute;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding: 12% 5% 12% 0;
  }
  @keyframes fadein {
    0% {
      opacity: 0.1;
    }
    100% {
      opacity: 0.5;
    }
  }
  .guide-text {
    text-align: right;
    justify-content: center;
    align-items: center;
    display: table-cell;
    vertical-align: middle;
  }
  .guide-text .sitetitle-2 {
    font-size: 2rem;
  }
  .guide-text p {
    font-size: 0.88rem;
  }
  /* ハンバーガ―メニューの見た目部分の設定 */
  .pc {
    display: none;
  }
  .sp {
    width: 50px;
    height: 50px;
    margin: 0;
    margin-right: 4%;
  }
  #navArea {
    text-align: center;
    width: 100%;
    position: relative;
  }
  .hamburger-menu {
    display: block;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    margin: 0px 0 0 0;
    top: 0;
    right: 0;
    z-index: 30;
    cursor: pointer;
    transition: 0.4s;
    left: 2.8rem;
  }
  .hamburger-menu:hover {
    opacity: 0.5;
  }
  /* ハンバーガーメニューの線の設定（初期の三本線の状態） */
  .hamburger-menu span {
    width: 40px;
    height: 3px;
    background: #fff;
    position: absolute;
    right: 5px;
    top: 0;
    transition: 0.4s ease-in-out;
    margin-top: -16px;
  }
  /* 1本目の線の位置 */
  .hamburger-menu span:nth-child(1) {
    top: 28px;
  }
  /* 2本目の線の位置 */
  .hamburger-menu span:nth-child(2) {
    top: 40px;
  }
  /* 3本目の線の位置 */
  .hamburger-menu span:nth-child(3) {
    top: 52px;
  }
  /*-------------------------------------------
  hamburger-menuクラスにactiveクラスが付与されたら、三→×に変化するようにする
  -------------------------------------------*/
  /* 1本目の線を-45度回転 */
  .hamburger-menu.active span:nth-child(1) {
    top: 40px;
    left: 6px;
    background: #fff;
    transform: rotate(-45deg);
  }
  /* 2本目と3本目は重ねて45度回転 */
  .hamburger-menu.active span:nth-child(2),
  .hamburger-menu.active span:nth-child(3) {
    top: 40px;
    background: #fff;
    transform: rotate(45deg);
  }
  /*-------------------------------------------
  hamburger-navigationIDにactiveクラスが付与されたら、
  ナビゲーションメニューを表示させる。
  -------------------------------------------*/
  /* opacityを0→1にすることで、ナビゲーションメニューを非表示→表示というふうに実装する */
  #hamburger-navigation.active {
    opacity: 1;
    visibility: visible;
  }
  /*-------------------------------------------
  hamburger-navigationIDにactiveクラスが付与されたら、
  ナビゲーションメニューを表示させる。
  -------------------------------------------*/
  /* opacityを0→1にすることで、ナビゲーションメニューを非表示→表示というふうに実装する */
  #hamburger-navigation.active {
    opacity: 1;
    visibility: visible;
  }
  #mask {
    opacity: 0;
    margin-top: 80px;
    transition: all 0.5s;
  }
  #mask.active {
    display: block;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    opacity: 1;
    position: fixed;
    z-index: 21;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }
  /* sp index.html */
  /* sp service */
  .service-box {
    display: block;
  }
  .service-navi {
    width: 100%;
    text-align: center;
  }
  /* sp about */
  .about-back {
    height: auto;
    align-items: center;
    justify-content: center;
    padding-top: 64px;
    padding-bottom: 64px;
    text-align: center;
    margin-right: 0;
  }
  .about-back .about-contents {
    display: block;
    margin: 0 auto;
  }
  .about-back .about-contents .about-pic {
    width: 64%;
    margin: 0 auto;
  }
  .about-back .about-contents .about-pic img {
    margin-bottom: 64px;
  }
  .about-back .about-txt {
    width: 100%;
    text-align: left;
    padding: 0 8%;
  }
  .about-back .about-txt p {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
  }
  .about-back .about-txt p:last-child {
    margin-bottom: 51px;
  }
  /* sp works */
  .works-back {
    margin-left: 0;
    padding-left: 8%;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .works-back .group {
    grid-template-columns: 1fr;
  }
  .work-navi {
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-size: 1.2rem !important;
  }
  #works .works-back #container {
    margin-bottom: 0;
  }
  /* sp footer */
  #contact {
    max-width: 478px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  #contact a.contactbtn {
    max-width: 260px;
    width: 70%;
  }
  .footernavi .container {
    display: block;
  }
  .footernavi .container .footer-title {
    width: 100%;
    text-align: right;
  }
  .footernavi .container .footer-title .sitetitle-3 {
    margin-bottom: 1.6rem;
  }
  .footernavi .container ul {
    text-align: right;
    margin-bottom: 1.6rem;
    width: 100%;
    text-align: right;
  }
  .footernavi .container .footer-info {
    width: 100%;
  }
  .footernavi ul li::before {
    position: absolute;
  }
  #contact small {
    font-size: 0.6rem;
  }
  /* 各ページ共通 */
  * {
    width: 100%;
    margin: 0 auto;
  }
  .nav-rogo {
    display: none;
  }
  /* sp service.html */
  .service-design {
    margin-bottom: 0;
    padding-left: 0;
  }
  .service {
    width: 100%;
    box-sizing: border-box;
  }
  .space {
    margin: 0 auto;
    display: block;
    max-width: 478px;
    width: 100%;
    padding-bottom: 112px;
    position: relative;
    margin-left: 0;
    padding-left: 0;
  }
  .service-design .img {
    max-width: 478px;
    width: 100%;
    text-align: center;
    left: 0;
  }
  .service-design .img img {
    width: 100%;
    max-width: 478px;
    height: 20rem;
    -o-object-fit: cover;
       object-fit: cover;
    position: relative;
    left: 0;
    margin: 0 auto;
  }
  .coating {
    background-color: #EFEBE8;
    max-width: 478px;
    width: 100%;
    display: inline-block;
    max-height: 680px;
    z-index: -1;
    margin-top: 0;
    margin-left: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .design-text {
    width: 100%;
  }
  .design-text h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    font-weight: bold;
  }
  .design-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    padding-bottom: 24px;
  }
  .design-text .language {
    display: block;
    font-size: 1.25rem;
    padding: 16px 0;
  }
  .design-text .price {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-top: 24px;
    text-align: right;
    display: flex;
    flex-wrap: wrap;
  }
  .design-text .price dt {
    width: 100%;
  }
  .design-text .price dd {
    width: 100%;
    margin-bottom: 8px;
  }
  .service-design .reverse .space .img img {
    margin-right: 0;
  }
  .service-design .reverse .space .coating {
    margin-right: 0;
    padding: 1rem;
  }
  .service-design .reverse .space .coating .design-text {
    width: 100%;
    padding-right: 0;
  }
  .service-design:nth-of-type(2) {
    padding-right: 0;
  }
  .service-design:nth-of-type(2) .design-text {
    padding-right: 8%;
  }
  .animate-x,
  .animate-xx {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .animate-x.appear,
  .animate-xx.appear {
    opacity: 1;
    transform: none;
  }
  /* sp service-flow */
  .flow-box {
    display: block;
  }
  .flow-icon {
    width: 100%;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 8px;
    display: flex;
    text-align: left;
  }
  .flow-icon p {
    display: block;
    width: 100%;
    font-size: 1.6em;
    margin-bottom: 8px;
    font-weight: bold;
  }
  .flow-icon .icon {
    width: 40%;
    margin-right: 72px;
  }
  .flow-icon .icon img {
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .flow-icon .dotes {
    display: none;
  }
  .flow-comment {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.7;
    padding: 1rem;
  }
  .flow-comment:before {
    display: none;
  }
  .flow-comment .after {
    padding: 0;
  }
  .flow-comment p {
    font-weight: bold;
  }
  .after {
    padding: 1rem;
    margin-bottom: 112px;
  }
  /* sp about.html*/
  .about-about {
    width: 100%;
    margin-top: 56px;
    margin-bottom: 56px;
  }
  .about-content {
    display: block;
  }
  .about-content .name {
    margin-top: 40px;
  }
  .about-content .name h3 {
    font-size: 1.5rem;
    background: linear-gradient(transparent 70%, #eee 70%);
  }
  .about-content .name span {
    font-size: 12px;
    margin-right: 0;
  }
  .about-content .info {
    padding-right: 0;
  }
  .about-content .info p {
    font-size: 1rem;
  }
  .parallax {
    margin-bottom: 80px;
  }
  .parallax .fujisan {
    background-attachment: scroll;
    height: 160px;
  }
  .parallax .comment span {
    font-size: 0.88rem;
  }
  /* sp about-concept */
  .concept-content {
    display: block;
  }
  .concept-content .concept-box {
    width: 100%;
  }
  .concept-content .concept-box:last-child {
    margin-bottom: 56px;
  }
  .concept-content .concept-box .concept-title {
    font-size: 3rem;
  }
  .concept-content .box .img-box {
    height: 240px;
    border: 1rem solid #EFEBE8;
  }
  .concept-content .box .img-box img {
    width: 104px;
  }
  .concept-content .box .img-box .asobi-1 {
    width: 80px;
  }
  .concept-content .box .img-box .asobi-2 {
    width: 60px;
  }
  .concept-content .box .img-box .asobi-3 {
    width: 40px;
    margin-top: -24px;
  }
  .menu-title h3 {
    font-size: 1.5rem;
    margin-top: 24px;
    margin-bottom: 24px;
    font-weight: 600;
    padding-left: 1rem;
    width: 100%;
  }
  .menu-icon {
    width: 20%;
    text-align: center;
    margin-right: 24px;
    padding: 10px;
  }
  .menu-content {
    width: 90%;
    height: auto;
    margin: 0 auto 1.4rem;
    background-color: #fff;
    border-radius: 10px;
    padding: 0.5rem;
  }
  .menu-content p {
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
  }
  /* sp about-skill */
  .skill-coating {
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 56px;
  }
  .skill-section {
    display: block;
  }
  .skill-section h3 {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
    width: 100%;
    margin-bottom: 32px;
  }
  .skill-section .skill-icon {
    margin-left: 0;
    text-align: center;
  }
  .skill-section .skill-icon img {
    width: 4.5rem;
    padding-bottom: 8px;
  }
  .skill-section .skill-icon span {
    display: block;
    font-size: 1rem;
  }
  .skill-section .skill-icon-2 {
    margin-left: 0;
    text-align: center;
    display: flex;
    width: 100%;
  }
  .skill-section .skill-icon-2 img {
    width: 4.5rem;
    padding-bottom: 8px;
  }
  .skill-section .skill-icon-2 span {
    display: block;
    font-size: 1rem;
  }
  /* sp works-1.html */
  /* ベースはindex.htmlを流用 */
  .works-back-2 {
    padding-bottom: 120px;
    padding-left: 4%;
    padding-right: 4%;
  }
  .works-back-2 .group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 24px;
         column-gap: 24px;
    align-items: center;
    justify-items: center;
    align-items: center;
  }
  .works-back-2 .group:nth-child(2) {
    margin-bottom: 56px;
  }
  .works-back-2 .group .work-content img {
    box-shadow: 0 0 8px silver;
    height: auto;
  }
  .works-back-2 .work-navi {
    width: auto;
    background-color: #fff;
    text-align: center;
    margin: 0;
    box-shadow: 0 0 8px silver;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 0.9rem !important;
  }
  .works-back-2 .work-navi span {
    display: block;
    line-height: 1.8;
    margin: 0;
    font-size: 0.8rem;
  }
  .works-back-2 .work-navi .html-icon {
    width: 48%;
  }
  .works-back-2 .work-navi .wp-icon {
    width: 64%;
    padding: 0.2rem 0;
  }
  .group:nth-of-type(2) {
    margin-bottom: 0px;
  }
  .pagenation {
    text-align: center;
  }
  .pagenation dl li {
    display: inline-block;
    width: 3.125rem;
    height: 3.125rem;
    border: 0.5px solid #ddd;
    background-color: #fff;
    text-align: center;
    border-radius: 8px;
    line-height: 3.125rem;
  }
  .pagenation dl li a {
    display: block;
    font-size: 1rem;
    font-weight: 800;
  }
  .pagenation-pc li:nth-of-type(3) {
    background-color: #AD9D8E;
    color: #fff;
  }
  .pagenation-pc li:nth-of-type(2),
  .pagenation-pc li:nth-of-type(6) {
    opacity: 0;
  }
  .pagenation-pc {
    width: 70%;
    margin: 0 auto;
  }
  .pagenation-pc dl li {
    width: 26px;
    height: 26px;
    line-height: 26px;
  }
  /* sp works-2.html */
  .works-2 {
    max-width: 478px;
    width: 100%;
  }
  .device span {
    font-size: 0.8rem;
  }
  .detail-coating {
    max-width: 478px;
    width: 100%;
  }
  .detail-coating .device-img {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .detail-coating .device-img .device-pc {
    width: 96%;
    height: 85.5%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .detail-coating .device-img .device-sp {
    width: 25%;
    height: 40%;
    -o-object-fit: cover;
       object-fit: cover;
    filter: drop-shadow(4px 4px 5px #aaa);
    margin-top: 32px;
    margin-left: 0;
  }
  .detail-white {
    display: block;
    padding: 1.5rem 1.5rem;
    position: relative;
  }
  .detail-white .detail-left {
    width: 100%;
    border-right: 0;
    margin-bottom: 1.5rem;
    padding-right: 0;
  }
  .detail-white .detail-left h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .detail-white .detail-left ul li {
    font-size: 0.8rem;
  }
  .detail-white .detail-right {
    width: 100%;
  }
  .detail-white .detail-right p {
    font-size: 0.8rem;
  }
  .swiper {
    max-width: 478px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: clamp(40px, 8vw, 80px);
    height: clamp(40px, 8vw, 80px);
  }
  .site_url {
    font-size: 0.75rem;
  }
  .works-2 #container {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -4px;
  }
  /* sp contact-1.html */
  .contact-1-form .form-box {
    display: flex;
    flex-wrap: wrap;
  }
  .contact-1-form label {
    width: 25%;
    margin: 0;
    padding-bottom: 1rem;
  }
  .contact-1-form .spanbox {
    width: 25%;
    margin: 0;
    text-align: center;
  }
  .contact-1-form input {
    width: 100%;
    margin-bottom: 2rem;
  }
  .contact-1-form textarea {
    width: 100%;
  }
  /* sp contact フォーム下ボタン 共通 */
  .button.btn {
    width: 70%;
  }
  /* sp contact-2.html */
  .contact-2-form .form-box {
    display: flex;
    flex-wrap: wrap;
  }
  .contact-2-form label {
    width: 25%;
    margin: 0;
    padding-bottom: 1rem;
  }
  .contact-2-form .spanbox {
    width: 25%;
    margin: 0;
    text-align: center;
  }
  .contact-2-form input {
    width: 100%;
    margin-bottom: 2rem;
    padding-left: 0;
  }
  .contact-2-form textarea {
    width: 100%;
    padding: 8px 0 8px 16px;
    padding-left: 0;
    -moz-text-align-last: left;
         text-align-last: left;
  }
  /* mw_wp_form_complete */
  .mw_wp_form_complete {
    font-size: 1rem;
    line-height: 1.7;
  }
  .mw_wp_form_complete span {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */