@charset "UTF-8";
/* CSS Information
---------------------------------------------------------------
Site URL:https://it.eishin-japan.works/
File name:style.css
Summary:base styles
Created:2023-08-01
--------------------------------------------------------------- */
/* Fonts */
/* ------------------------------------------------------------ */
/* Link */
/* ------------------------------------------------------------ */
a {
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: text;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/* Animation */
/* ------------------------------------------------------------ */
a,
img {
  transition: all 0.5s ease;
}

a:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* Font */
/* ------------------------------------------------------------ */
sup {
  font-size: 66%;
  vertical-align: top;
}

sub {
  font-size: 66%;
  vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */
.indent {
  text-indent: -1em;
  margin-left: 1em;
}

/* Clear */
/* ------------------------------------------------------------ */
.clfx:after {
  content: "";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */
.pc_mode {
  display: inherit;
}

.sp_mode {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pc_mode {
    display: none;
  }
  .sp_mode {
    display: inherit;
  }
}
/* Style */
/* ------------------------------------------------------------ */
html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html body {
  font-size: 16px;
}
html body::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1024px) {
  html body {
    font-size: 14px;
  }
}
html body #loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
html body #loading img {
  width: 100px;
  height: auto;
}
html body header {
  position: relative;
  z-index: 2;
}
html body header .inner {
  background: rgba(255, 255, 255, 0);
  width: 100%;
  position: fixed;
  transition: all 0.5s ease;
}
html body header .inner .header_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 100px);
  height: 100px;
  margin: 0 auto;
}
html body header .inner .header_area > h1 a {
  background: url(../img/logo_white.svg) no-repeat center center;
  width: 230px;
  height: 55px;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
html body header .inner .header_area #nav_toggle {
  cursor: pointer;
  position: relative;
  width: 31px;
  height: 31px;
}
html body header .inner .header_area #nav_toggle span {
  width: 31px;
  height: 1px;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.3s ease-in-out, top 0.2s ease;
}
html body header .inner .header_area #nav_toggle span:nth-child(1) {
  top: 7px;
}
html body header .inner .header_area #nav_toggle span:nth-child(2) {
  top: 15px;
}
html body header .inner .header_area #nav_toggle span:nth-child(3) {
  top: 23px;
}
html body header .inner > nav#global_nav {
  background: rgb(37, 37, 37);
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  z-index: 4;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
html body header .inner > nav#global_nav > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 1000px;
}
html body header .inner > nav#global_nav > div > ul > li {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.3s ease, opacity 0.1s ease;
}
html body header .inner > nav#global_nav > div > ul > li:nth-of-type(1) {
  transition-delay: 0.1s !important;
}
html body header .inner > nav#global_nav > div > ul > li:nth-of-type(2) {
  transition-delay: 0.2s !important;
}
html body header .inner > nav#global_nav > div > ul > li:nth-of-type(3) {
  transition-delay: 0.3s !important;
}
html body header .inner > nav#global_nav > div > ul > li:nth-of-type(4) {
  transition-delay: 0.4s !important;
}
html body header .inner > nav#global_nav > div > ul > li:nth-of-type(n+2) {
  margin: 0 60px 0 0;
}
html body header .inner > nav#global_nav > div > ul > li a {
  color: #fff;
}
html body header .inner > nav#global_nav > div > ul > li a span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 24px;
}
html body header .inner > nav#global_nav > div > ul > li a span::after {
  content: attr(data-subtitle);
  display: block;
  font-size: 14px;
  margin: 20px 0 0 0;
}
html body header .inner > nav#global_nav > div > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
html body header .inner > nav#global_nav > div > div > ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
html body header .inner > nav#global_nav > div > div > ul > li {
  display: block;
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.3s ease, opacity 0.1s ease;
}
html body header .inner > nav#global_nav > div > div > ul > li:nth-of-type(1) {
  transition-delay: 0.5s !important;
}
html body header .inner > nav#global_nav > div > div > ul > li:nth-of-type(2) {
  transition-delay: 0.6s !important;
}
html body header .inner > nav#global_nav > div > div > ul > li:nth-of-type(3) {
  transition-delay: 0.7s !important;
}
html body header .inner > nav#global_nav > div > div > ul > li:nth-of-type(n+2) {
  margin: 20px 0 0 0;
}
html body header .inner > nav#global_nav > div > div > small {
  opacity: 0;
  font-size: 14px;
  transition-delay: 0.7s !important;
  margin: 0 60px 0 0;
  transform: translateY(30px);
  transition: transform 0.3s ease, opacity 0.1s ease;
}
html body header .inner.fixed, html body header .inner.secondlevel {
  background: rgb(255, 255, 255) !important;
}
html body header .inner.fixed .header_area > h1 a, html body header .inner.secondlevel .header_area > h1 a {
  background: url(../img/logo.svg) no-repeat center center;
}
html body header .inner.fixed .header_area > #nav_toggle span, html body header .inner.secondlevel .header_area > #nav_toggle span {
  background: #000;
}
html body header .inner.open .header_area > h1 {
  z-index: 5;
}
html body header .inner.open .header_area > h1 a {
  background: url(../img/logo_white.svg) no-repeat center center;
}
html body header .inner.open .header_area > #nav_toggle {
  z-index: 5;
}
html body header .inner.open .header_area > #nav_toggle span {
  background: #fff;
}
html body header .inner.open .header_area > #nav_toggle span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
html body header .inner.open .header_area > #nav_toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
html body header .inner.open .header_area > #nav_toggle span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}
html body header .inner.open > nav#global_nav {
  visibility: visible;
  opacity: 1;
}
html body header .inner.open > nav#global_nav > div > ul > li {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s ease, opacity 0.9s ease;
}
html body header .inner.open > nav#global_nav > div > div > ul > li {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s ease, opacity 0.9s ease;
}
html body header .inner.open > nav#global_nav > div > div > small {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s ease, opacity 0.9s ease;
}
@media screen and (max-width: 1024px) {
  html body header .inner .header_area {
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    height: 51px;
    padding: 0 4vw;
  }
  html body header .inner .header_area > h1 a {
    width: 175px;
    height: 42px;
  }
  html body header .inner > nav#global_nav {
    writing-mode: horizontal-tb;
  }
  html body header .inner > nav#global_nav > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0 4vw;
  }
  html body header .inner > nav#global_nav > div > ul > li:nth-of-type(n+2) {
    margin: 30px 0 0 0;
  }
  html body header .inner > nav#global_nav > div > ul > li a {
    color: #fff;
  }
  html body header .inner > nav#global_nav > div > ul > li a span {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    font-size: 18px;
  }
  html body header .inner > nav#global_nav > div > ul > li a span::after {
    font-size: 12px;
    margin: 0 0 0 20px;
  }
  html body header .inner > nav#global_nav > div > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    margin: 80px 0 0 0;
  }
  html body header .inner > nav#global_nav > div > div > ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  html body header .inner > nav#global_nav > div > div > ul > li {
    width: 25px;
    height: 25px;
  }
  html body header .inner > nav#global_nav > div > div > ul > li:nth-of-type(n+2) {
    margin: 0 0 0 10px;
  }
  html body header .inner > nav#global_nav > div > div > small {
    font-size: 12px;
    margin: 30px 0 0 0;
  }
}
html body main {
  overflow: hidden;
}
html body main section:not(#mainvisual) {
  margin: 160px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section:not(#mainvisual) {
    margin: 80px 0 0;
  }
}
html body main section:not(#mainvisual) .inner {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  html body main section:not(#mainvisual) .inner {
    box-sizing: border-box;
    padding: 0 4vw;
  }
}
html body main section#mainvisual {
  width: 100%;
  height: 100vh;
}
html body main section#mainvisual div.movie {
  position: relative;
}
html body main section#mainvisual div.movie::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
html body main section#mainvisual div.movie img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main section#mainvisual div.movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main section#mainvisual div.headline {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
html body main section#mainvisual div.headline div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
  color: #fff;
  font-size: 20px;
  line-height: 2.5;
  text-shadow: #000 1px 1px 3px;
}
@media screen and (max-width: 1024px) {
  html body main section#mainvisual div.headline div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  html body main section#mainvisual div.headline div p.mainvisualtext_en {
    display: none;
  }
}
html body main section#philosophy .inner {
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: calc(100% - 100px);
  max-width: 1300px;
  height: 285px;
}
@media screen and (max-width: 1024px) {
  html body main section#philosophy .inner {
    writing-mode: horizontal-tb;
    display: block;
    width: 100%;
    height: auto;
  }
}
html body main section#philosophy .inner > p {
  text-orientation: upright;
  text-indent: 1.1em;
  line-height: 2;
}
html body main section#philosophy .inner > p:nth-of-type(n+2) {
  margin: 0 3.3em 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#philosophy .inner > p {
    writing-mode: horizontal-tb;
  }
  html body main section#philosophy .inner > p:nth-of-type(n+2) {
    margin: 1.1em 0 0 0;
  }
}
html body main section#web .inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  html body main section#web .inner {
    display: block;
  }
}
html body main section#web .inner figure {
  flex-shrink: 0;
  width: 40%;
  max-width: 540px;
  margin: 0;
  display: block;
  position: relative;
}
html body main section#web .inner figure::before {
  content: "";
  display: block;
  padding-top: 115.555%;
}
@media screen and (max-width: 1024px) {
  html body main section#web .inner figure {
    width: 100%;
    max-width: 100%;
  }
  html body main section#web .inner figure::before {
    padding-top: 61.804%;
  }
}
html body main section#web .inner figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main section#web .inner figcaption {
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  html body main section#web .inner figcaption {
    writing-mode: horizontal-tb;
    width: 100%;
  }
}
html body main section#web .inner figcaption > h2 {
  text-orientation: mixed;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 24px;
  line-height: 1.5;
}
html body main section#web .inner figcaption > h2 > span {
  display: block;
  color: #A0A0A0;
  font-size: 14px;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#web .inner figcaption > h2 {
    display: block;
    font-size: 18px;
  }
  html body main section#web .inner figcaption > h2 > span {
    font-size: 12px;
    margin: 0 0 0 0;
  }
}
html body main section#web .inner figcaption > ul {
  text-orientation: upright;
  box-sizing: content-box;
  margin: 100px 6vw 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#web .inner figcaption > ul {
    display: block;
    margin: 20px 0 0 0;
  }
}
html body main section#web .inner figcaption > ul > li {
  line-height: 2;
  text-indent: -1.1em;
  margin: 1.1em 0 0 0;
}
html body main section#web .inner figcaption > ul > li::before {
  content: "・";
}
@media screen and (max-width: 1024px) {
  html body main section#web .inner figcaption > ul > li {
    margin: 0 0 0 1.1em;
  }
}
html body main section#design .inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  html body main section#design .inner {
    display: block;
  }
}
html body main section#design .inner figure {
  flex-shrink: 0;
  width: 40%;
  max-width: 540px;
  margin: 0;
  display: block;
  position: relative;
}
html body main section#design .inner figure::before {
  content: "";
  display: block;
  padding-top: 115.555%;
}
@media screen and (max-width: 1024px) {
  html body main section#design .inner figure {
    width: 100%;
    max-width: 100%;
  }
  html body main section#design .inner figure::before {
    padding-top: 61.804%;
  }
}
html body main section#design .inner figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main section#design .inner figcaption {
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  html body main section#design .inner figcaption {
    writing-mode: horizontal-tb;
    width: 100%;
  }
}
html body main section#design .inner figcaption > h2 {
  text-orientation: mixed;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 24px;
  line-height: 1.5;
}
html body main section#design .inner figcaption > h2 > span {
  display: block;
  color: #A0A0A0;
  font-size: 14px;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#design .inner figcaption > h2 {
    display: block;
    font-size: 18px;
  }
  html body main section#design .inner figcaption > h2 > span {
    font-size: 12px;
    margin: 0 0 0 0;
  }
}
html body main section#design .inner figcaption > ul {
  text-orientation: upright;
  box-sizing: content-box;
  margin: 100px 6vw 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#design .inner figcaption > ul {
    display: block;
    margin: 20px 0 0 0;
  }
}
html body main section#design .inner figcaption > ul > li {
  line-height: 2;
  text-indent: -1.1em;
  margin: 1.1em 0 0 0;
}
html body main section#design .inner figcaption > ul > li::before {
  content: "・";
}
@media screen and (max-width: 1024px) {
  html body main section#design .inner figcaption > ul > li {
    margin: 0 0 0 1.1em;
  }
}
html body main section#grant .inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  html body main section#grant .inner {
    display: block;
  }
}
html body main section#grant .inner figure {
  flex-shrink: 0;
  width: 40%;
  max-width: 540px;
  margin: 0;
  display: block;
  position: relative;
}
html body main section#grant .inner figure::before {
  content: "";
  display: block;
  padding-top: 115.555%;
}
@media screen and (max-width: 1024px) {
  html body main section#grant .inner figure {
    width: 100%;
    max-width: 100%;
  }
  html body main section#grant .inner figure::before {
    padding-top: 61.804%;
  }
}
html body main section#grant .inner figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main section#grant .inner figcaption {
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  html body main section#grant .inner figcaption {
    writing-mode: horizontal-tb;
    width: 100%;
  }
}
html body main section#grant .inner figcaption > h2 {
  text-orientation: mixed;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 24px;
  line-height: 1.5;
}
html body main section#grant .inner figcaption > h2 > span {
  display: block;
  color: #A0A0A0;
  font-size: 14px;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#grant .inner figcaption > h2 {
    display: block;
    font-size: 18px;
  }
  html body main section#grant .inner figcaption > h2 > span {
    font-size: 12px;
    margin: 0 0 0 0;
  }
}
html body main section#grant .inner figcaption > ul {
  text-orientation: upright;
  box-sizing: content-box;
  margin: 100px 6vw 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#grant .inner figcaption > ul {
    display: block;
    margin: 20px 0 0 0;
  }
}
html body main section#grant .inner figcaption > ul > li {
  line-height: 2;
  text-indent: -1.1em;
  margin: 1.1em 0 0 0;
}
html body main section#grant .inner figcaption > ul > li::before {
  content: "・";
}
@media screen and (max-width: 1024px) {
  html body main section#grant .inner figcaption > ul > li {
    margin: 0 0 0 1.1em;
  }
}
html body main section#manda .inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  html body main section#manda .inner {
    display: block;
  }
}
html body main section#manda .inner figure {
  flex-shrink: 0;
  width: 40%;
  max-width: 540px;
  margin: 0;
  display: block;
  position: relative;
}
html body main section#manda .inner figure::before {
  content: "";
  display: block;
  padding-top: 115.555%;
}
@media screen and (max-width: 1024px) {
  html body main section#manda .inner figure {
    width: 100%;
    max-width: 100%;
  }
  html body main section#manda .inner figure::before {
    padding-top: 61.804%;
  }
}
html body main section#manda .inner figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main section#manda .inner figcaption {
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  html body main section#manda .inner figcaption {
    writing-mode: horizontal-tb;
    width: 100%;
  }
}
html body main section#manda .inner figcaption > h2 {
  text-orientation: mixed;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 24px;
  line-height: 1.5;
}
html body main section#manda .inner figcaption > h2 > span {
  display: block;
  color: #A0A0A0;
  font-size: 14px;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#manda .inner figcaption > h2 {
    display: block;
    font-size: 18px;
  }
  html body main section#manda .inner figcaption > h2 > span {
    font-size: 12px;
    margin: 0 0 0 0;
  }
}
html body main section#manda .inner figcaption > ul {
  text-orientation: upright;
  box-sizing: content-box;
  margin: 100px 6vw 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#manda .inner figcaption > ul {
    display: block;
    margin: 20px 0 0 0;
  }
}
html body main section#manda .inner figcaption > ul > li {
  line-height: 2;
  text-indent: -1.1em;
  margin: 1.1em 0 0 0;
}
html body main section#manda .inner figcaption > ul > li::before {
  content: "・";
}
@media screen and (max-width: 1024px) {
  html body main section#manda .inner figcaption > ul > li {
    margin: 0 0 0 1.1em;
  }
}
html body main section#other .inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  html body main section#other .inner {
    display: block;
  }
}
html body main section#other .inner figure {
  flex-shrink: 0;
  width: 40%;
  max-width: 540px;
  margin: 0;
  display: block;
  position: relative;
}
html body main section#other .inner figure::before {
  content: "";
  display: block;
  padding-top: 115.555%;
}
@media screen and (max-width: 1024px) {
  html body main section#other .inner figure {
    width: 100%;
    max-width: 100%;
  }
  html body main section#other .inner figure::before {
    padding-top: 61.804%;
  }
}
html body main section#other .inner figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main section#other .inner figcaption {
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  html body main section#other .inner figcaption {
    writing-mode: horizontal-tb;
    width: 100%;
  }
}
html body main section#other .inner figcaption > h2 {
  text-orientation: mixed;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 24px;
  line-height: 1.5;
}
html body main section#other .inner figcaption > h2 > span {
  display: block;
  color: #A0A0A0;
  font-size: 14px;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#other .inner figcaption > h2 {
    display: block;
    font-size: 18px;
  }
  html body main section#other .inner figcaption > h2 > span {
    font-size: 12px;
    margin: 0 0 0 0;
  }
}
html body main section#other .inner figcaption > ul {
  text-orientation: upright;
  box-sizing: content-box;
  margin: 100px 6vw 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#other .inner figcaption > ul {
    display: block;
    margin: 20px 0 0 0;
  }
}
html body main section#other .inner figcaption > ul > li {
  line-height: 2;
  text-indent: -1.1em;
  margin: 1.1em 0 0 0;
}
html body main section#other .inner figcaption > ul > li::before {
  content: "・";
}
@media screen and (max-width: 1024px) {
  html body main section#other .inner figcaption > ul > li {
    margin: 0 0 0 1.1em;
  }
}
html body main section#web .inner, html body main section#grant .inner, html body main section#other .inner {
  flex-direction: row-reverse;
}
html body main section#web .inner figcaption, html body main section#grant .inner figcaption, html body main section#other .inner figcaption {
  margin: 0 6vw 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#web .inner figcaption, html body main section#grant .inner figcaption, html body main section#other .inner figcaption {
    margin: 20px 0 0 0;
  }
}
html body main section#design .inner, html body main section#manda .inner {
  flex-direction: row;
}
html body main section#design .inner figcaption, html body main section#manda .inner figcaption {
  margin: 0 0 0 6vw;
}
@media screen and (max-width: 1024px) {
  html body main section#design .inner figcaption, html body main section#manda .inner figcaption {
    margin: 20px 0 0 0;
  }
}
html body main section#parallax {
  height: 400px !important;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  html body main section#parallax {
    height: 200px !important;
  }
}
html body main section#parallax .background {
  position: absolute;
  background-image: url(../img/parallax.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  html body main section#parallax .background {
    background-image: url(../img/parallax_sp.jpg);
    min-height: 800px !important;
  }
}
html body main section#works .inner > div {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row-reverse;
  width: calc(100% - 100px);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  html body main section#works .inner > div {
    display: block;
    width: 100%;
  }
}
html body main section#works .inner > div > h2 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  html body main section#works .inner > div > h2 {
    writing-mode: horizontal-tb;
    font-size: 18px;
  }
}
html body main section#works .inner > div > h2 > span {
  display: block;
  color: #A0A0A0;
  font-size: 14px;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#works .inner > div > h2 > span {
    font-size: 12px;
    margin: 0;
  }
}
html body main section#works .inner > div > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  html body main section#works .inner > div > div {
    justify-content: space-between;
    width: 100%;
    margin: 40px 0 0 0;
  }
}
html body main section#works .inner > div > div article {
  width: 30%;
  margin: 0 5% 0 0;
}
html body main section#works .inner > div > div article:nth-of-type(3n) {
  margin: 0;
}
html body main section#works .inner > div > div article:nth-of-type(n+4) {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#works .inner > div > div article {
    width: 48%;
    margin: 0 0 0 0;
  }
  html body main section#works .inner > div > div article:nth-of-type(n+3) {
    margin-top: 20px;
  }
}
html body main section#works .inner > div > div article a {
  color: #000;
}
html body main section#works .inner > div > div article a figure {
  width: 100%;
  margin: 0;
  display: block;
  position: relative;
}
html body main section#works .inner > div > div article a figure::before {
  content: "";
  display: block;
  padding-top: 61.804%;
}
html body main section#works .inner > div > div article a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main section#works .inner > div > div article a figcaption {
  margin-top: 10px;
}
html body main section#works .inner > div > div article a figcaption h1 {
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1024px) {
  html body main section#works .inner > div > div article a figcaption h1 {
    font-size: 14px;
  }
}
html body main section#works .inner > div > div article a figcaption time {
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  html body main section#works .inner > div > div article a figcaption time {
    font-size: 12px;
  }
}
html body main section#works .inner p.slide_btn {
  width: calc(100% - 100px);
  margin: 40px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#works .inner p.slide_btn {
    display: block;
    width: 100%;
  }
}
html body main section#works .inner p.slide_btn a {
  display: inline-block;
  color: #000;
  width: 170px;
  position: relative;
}
html body main section#works .inner p.slide_btn a::before, html body main section#works .inner p.slide_btn a::after {
  content: "";
  display: block;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: -5px;
}
html body main section#works .inner p.slide_btn a::before {
  width: 100%;
  right: 0;
}
html body main section#works .inner p.slide_btn a::after {
  width: 0;
  left: 0;
}
html body main section#works .inner p.slide_btn a:hover::before {
  width: 0;
  transition: 0.4s ease-in-out;
}
html body main section#works .inner p.slide_btn a:hover::after {
  width: 100%;
  transition: 0.4s 0.1s ease-in-out;
}
html body main section#itvendor .inner {
  width: calc(100% - 100px);
  max-width: 1000px;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor .inner {
    width: 100%;
  }
}
html body main section#itvendor .inner figure {
  max-width: 1000px;
  margin: 0 auto;
}
html body main section#company .inner {
  width: calc(100% - 100px);
  max-width: 1000px;
}
@media screen and (max-width: 1024px) {
  html body main section#company .inner {
    width: 100%;
  }
}
html body main section#company .inner > h2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  html body main section#company .inner > h2 {
    display: block;
    font-size: 18px;
  }
}
html body main section#company .inner > h2 > span {
  display: block;
  color: #A0A0A0;
  font-size: 14px;
  margin: 0 0 0 30px;
}
@media screen and (max-width: 1024px) {
  html body main section#company .inner > h2 > span {
    font-size: 12px;
    margin: 0;
  }
}
html body main section#company .inner > div {
  margin: 80px 0 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#company .inner > div {
    margin: 40px 0 0 0;
  }
}
html body main section#company .inner > div > dl {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  line-height: 1.3;
  padding: 30px 0;
  border-bottom: 1px #B5B5B5 solid;
}
html body main section#company .inner > div > dl:first-of-type {
  border-top: 1px #B5B5B5 solid;
}
@media screen and (max-width: 1024px) {
  html body main section#company .inner > div > dl {
    display: block;
    padding: 20px 0;
  }
}
html body main section#company .inner > div > dl > dt {
  flex-shrink: 0;
  display: block;
  text-align: left;
  width: 300px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  html body main section#company .inner > div > dl > dt {
    width: 100%;
  }
}
html body main section#company .inner > div > dl > dd {
  display: block;
  text-align: left;
  width: 100%;
}
html body main section#company .inner > div > dl > dd a {
  color: #000;
}
@media screen and (max-width: 1024px) {
  html body main section#company .inner > div > dl > dd {
    margin: 10px 0 0 0;
  }
}
html body main section#company .inner > div > dl > dd > dl {
  line-height: 2;
}
html body main section#company .inner > div > dl > dd > dl:nth-of-type(n+2) {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#company .inner > div > dl > dd > dl {
    font-size: 12px;
  }
  html body main section#company .inner > div > dl > dd > dl:nth-of-type(n+2) {
    margin: 10px 0 0 0;
  }
}
html body main section#company .inner > div > dl > dd > dl > dt {
  font-weight: 700;
}
html body main section#company .inner > div > dl > dd > dl > dd {
  text-indent: -1.1em;
  margin-left: 1.6em;
}
html body main section#company .inner > div > dl > dd > dl > dd::before {
  content: "・";
}
html body main section#works_list .inner {
  max-width: 100%;
}
html body main section#works_list .inner > div:nth-of-type(1) {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: calc(100% - 100px);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  html body main section#works_list .inner > div:nth-of-type(1) {
    width: 100%;
    align-items: flex-start;
  }
}
html body main section#works_list .inner > div:nth-of-type(1) h2 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  html body main section#works_list .inner > div:nth-of-type(1) h2 {
    font-size: 18px;
  }
}
html body main section#works_list .inner > div:nth-of-type(1) h2 > span {
  text-orientation: mixed;
  display: block;
  color: #A0A0A0;
  font-size: 14px;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#works_list .inner > div:nth-of-type(1) h2 > span {
    font-size: 12px;
    margin: 0;
  }
}
html body main section#works_list .inner > div:nth-of-type(1) ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  html body main section#works_list .inner > div:nth-of-type(1) ul {
    display: block;
  }
}
html body main section#works_list .inner > div:nth-of-type(1) ul li {
  margin: 10px 10px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#works_list .inner > div:nth-of-type(1) ul li {
    margin: 0 10px 0 0;
  }
  html body main section#works_list .inner > div:nth-of-type(1) ul li:nth-of-type(n+2) {
    margin: 5px 10px 0 0;
  }
}
html body main section#works_list .inner > div:nth-of-type(1) ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1.2;
  padding: 10px 20px;
  border: 1px #B5B5B5 solid;
}
html body main section#works_list .inner > div:nth-of-type(1) ul li a:hover {
  background: #000;
  color: #fff;
  border: 1px #000 solid;
}
@media screen and (max-width: 1024px) {
  html body main section#works_list .inner > div:nth-of-type(1) ul li a {
    font-size: 12px;
    padding: 5px 10px;
  }
}
html body main section#works_list .inner > div:nth-of-type(1) ul li.active a {
  background: #000;
  color: #fff;
  border: 1px #000 solid;
}
html body main section#works_list .inner > div:nth-of-type(2) {
  width: calc(100% - 100px);
  max-width: 1300px;
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#works_list .inner > div:nth-of-type(2) {
    width: 100%;
    margin: 40px auto 0;
  }
}
html body main section#works_list .inner > div:nth-of-type(2) p {
  line-height: 2;
}
html body main section#works_detail .inner {
  max-width: 100%;
}
html body main section#works_detail .inner > div:nth-of-type(1) {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: calc(100% - 100px);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  html body main section#works_detail .inner > div:nth-of-type(1) {
    width: 100%;
    align-items: flex-start;
  }
}
html body main section#works_detail .inner > div:nth-of-type(1) h2 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  html body main section#works_detail .inner > div:nth-of-type(1) h2 {
    font-size: 18px;
  }
}
html body main section#works_detail .inner > div:nth-of-type(1) h2 > span {
  text-orientation: mixed;
  display: block;
  color: #A0A0A0;
  font-size: 14px;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#works_detail .inner > div:nth-of-type(1) h2 > span {
    font-size: 12px;
    margin: 0;
  }
}
html body main section#works_detail .inner > div:nth-of-type(1) ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  html body main section#works_detail .inner > div:nth-of-type(1) ul {
    display: block;
  }
}
html body main section#works_detail .inner > div:nth-of-type(1) ul li {
  margin: 10px 10px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#works_detail .inner > div:nth-of-type(1) ul li {
    margin: 0 10px 0 0;
  }
  html body main section#works_detail .inner > div:nth-of-type(1) ul li:nth-of-type(n+2) {
    margin: 5px 10px 0 0;
  }
}
html body main section#works_detail .inner > div:nth-of-type(1) ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1.2;
  padding: 10px 20px;
  border: 1px #B5B5B5 solid;
}
html body main section#works_detail .inner > div:nth-of-type(1) ul li a:hover {
  background: #000;
  color: #fff;
  border: 1px #000 solid;
}
@media screen and (max-width: 1024px) {
  html body main section#works_detail .inner > div:nth-of-type(1) ul li a {
    font-size: 12px;
    padding: 5px 10px;
  }
}
html body main section#works_detail .inner > div:nth-of-type(1) ul li.active a {
  background: #000;
  color: #fff;
  border: 1px #000 solid;
}
html body main section#works_detail .inner > div:nth-of-type(2) {
  width: calc(100% - 100px);
  max-width: 1300px;
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#works_detail .inner > div:nth-of-type(2) {
    width: 100%;
    margin: 40px auto 0;
  }
}
html body main section#works_detail .inner > div:nth-of-type(2) p {
  line-height: 2;
}
html body main section#itvendor_detail .inner {
  max-width: 100%;
}
html body main section#itvendor_detail .inner > div:nth-of-type(1) {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: calc(100% - 100px);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail .inner > div:nth-of-type(1) {
    width: 100%;
    align-items: flex-start;
  }
}
html body main section#itvendor_detail .inner > div:nth-of-type(1) h2 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail .inner > div:nth-of-type(1) h2 {
    font-size: 18px;
  }
}
html body main section#itvendor_detail .inner > div:nth-of-type(1) h2 > span {
  text-orientation: mixed;
  display: block;
  color: #A0A0A0;
  font-size: 14px;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail .inner > div:nth-of-type(1) h2 > span {
    font-size: 12px;
    margin: 0;
  }
}
html body main section#itvendor_detail .inner > div:nth-of-type(1) ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail .inner > div:nth-of-type(1) ul {
    display: block;
  }
}
html body main section#itvendor_detail .inner > div:nth-of-type(1) ul li {
  margin: 10px 10px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail .inner > div:nth-of-type(1) ul li {
    margin: 0 10px 0 0;
  }
  html body main section#itvendor_detail .inner > div:nth-of-type(1) ul li:nth-of-type(n+2) {
    margin: 5px 10px 0 0;
  }
}
html body main section#itvendor_detail .inner > div:nth-of-type(1) ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1.2;
  padding: 10px 20px;
  border: 1px #B5B5B5 solid;
}
html body main section#itvendor_detail .inner > div:nth-of-type(1) ul li a:hover {
  background: #000;
  color: #fff;
  border: 1px #000 solid;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail .inner > div:nth-of-type(1) ul li a {
    font-size: 12px;
    padding: 5px 10px;
  }
}
html body main section#itvendor_detail .inner > div:nth-of-type(1) ul li.active a {
  background: #000;
  color: #fff;
  border: 1px #000 solid;
}
html body main section#itvendor_detail .inner > div:nth-of-type(2) {
  width: calc(100% - 100px);
  max-width: 1300px;
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail .inner > div:nth-of-type(2) {
    width: 100%;
    margin: 40px auto 0;
  }
}
html body main section#itvendor_detail .inner > div:nth-of-type(2) p {
  line-height: 2;
}
html body main section#itvendor_detail_invoice .inner {
  max-width: 100%;
}
html body main section#itvendor_detail_invoice .inner > div:nth-of-type(1) {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: calc(100% - 100px);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail_invoice .inner > div:nth-of-type(1) {
    width: 100%;
    align-items: flex-start;
  }
}
html body main section#itvendor_detail_invoice .inner > div:nth-of-type(1) h2 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail_invoice .inner > div:nth-of-type(1) h2 {
    font-size: 18px;
  }
}
html body main section#itvendor_detail_invoice .inner > div:nth-of-type(1) h2 > span {
  text-orientation: mixed;
  display: block;
  color: #A0A0A0;
  font-size: 14px;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail_invoice .inner > div:nth-of-type(1) h2 > span {
    font-size: 12px;
    margin: 0;
  }
}
html body main section#itvendor_detail_invoice .inner > div:nth-of-type(1) ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail_invoice .inner > div:nth-of-type(1) ul {
    display: block;
  }
}
html body main section#itvendor_detail_invoice .inner > div:nth-of-type(1) ul li {
  margin: 10px 10px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail_invoice .inner > div:nth-of-type(1) ul li {
    margin: 0 10px 0 0;
  }
  html body main section#itvendor_detail_invoice .inner > div:nth-of-type(1) ul li:nth-of-type(n+2) {
    margin: 5px 10px 0 0;
  }
}
html body main section#itvendor_detail_invoice .inner > div:nth-of-type(1) ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1.2;
  padding: 10px 20px;
  border: 1px #B5B5B5 solid;
}
html body main section#itvendor_detail_invoice .inner > div:nth-of-type(1) ul li a:hover {
  background: #000;
  color: #fff;
  border: 1px #000 solid;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail_invoice .inner > div:nth-of-type(1) ul li a {
    font-size: 12px;
    padding: 5px 10px;
  }
}
html body main section#itvendor_detail_invoice .inner > div:nth-of-type(1) ul li.active a {
  background: #000;
  color: #fff;
  border: 1px #000 solid;
}
html body main section#itvendor_detail_invoice .inner > div:nth-of-type(2) {
  width: calc(100% - 100px);
  max-width: 1300px;
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail_invoice .inner > div:nth-of-type(2) {
    width: 100%;
    margin: 40px auto 0;
  }
}
html body main section#itvendor_detail_invoice .inner > div:nth-of-type(2) p {
  line-height: 2;
}
html body main section#contact .inner {
  max-width: 100%;
}
html body main section#contact .inner > div:nth-of-type(1) {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: calc(100% - 100px);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner > div:nth-of-type(1) {
    width: 100%;
    align-items: flex-start;
  }
}
html body main section#contact .inner > div:nth-of-type(1) h2 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner > div:nth-of-type(1) h2 {
    font-size: 18px;
  }
}
html body main section#contact .inner > div:nth-of-type(1) h2 > span {
  text-orientation: mixed;
  display: block;
  color: #A0A0A0;
  font-size: 14px;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner > div:nth-of-type(1) h2 > span {
    font-size: 12px;
    margin: 0;
  }
}
html body main section#contact .inner > div:nth-of-type(1) ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner > div:nth-of-type(1) ul {
    display: block;
  }
}
html body main section#contact .inner > div:nth-of-type(1) ul li {
  margin: 10px 10px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner > div:nth-of-type(1) ul li {
    margin: 0 10px 0 0;
  }
  html body main section#contact .inner > div:nth-of-type(1) ul li:nth-of-type(n+2) {
    margin: 5px 10px 0 0;
  }
}
html body main section#contact .inner > div:nth-of-type(1) ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1.2;
  padding: 10px 20px;
  border: 1px #B5B5B5 solid;
}
html body main section#contact .inner > div:nth-of-type(1) ul li a:hover {
  background: #000;
  color: #fff;
  border: 1px #000 solid;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner > div:nth-of-type(1) ul li a {
    font-size: 12px;
    padding: 5px 10px;
  }
}
html body main section#contact .inner > div:nth-of-type(1) ul li.active a {
  background: #000;
  color: #fff;
  border: 1px #000 solid;
}
html body main section#contact .inner > div:nth-of-type(2) {
  width: calc(100% - 100px);
  max-width: 1300px;
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner > div:nth-of-type(2) {
    width: 100%;
    margin: 40px auto 0;
  }
}
html body main section#contact .inner > div:nth-of-type(2) p {
  line-height: 2;
}
html body main section#content .inner {
  max-width: 100%;
}
html body main section#content .inner > div:nth-of-type(1) {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: calc(100% - 100px);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  html body main section#content .inner > div:nth-of-type(1) {
    width: 100%;
    align-items: flex-start;
  }
}
html body main section#content .inner > div:nth-of-type(1) h2 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  html body main section#content .inner > div:nth-of-type(1) h2 {
    font-size: 18px;
  }
}
html body main section#content .inner > div:nth-of-type(1) h2 > span {
  text-orientation: mixed;
  display: block;
  color: #A0A0A0;
  font-size: 14px;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#content .inner > div:nth-of-type(1) h2 > span {
    font-size: 12px;
    margin: 0;
  }
}
html body main section#content .inner > div:nth-of-type(1) ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  html body main section#content .inner > div:nth-of-type(1) ul {
    display: block;
  }
}
html body main section#content .inner > div:nth-of-type(1) ul li {
  margin: 10px 10px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#content .inner > div:nth-of-type(1) ul li {
    margin: 0 10px 0 0;
  }
  html body main section#content .inner > div:nth-of-type(1) ul li:nth-of-type(n+2) {
    margin: 5px 10px 0 0;
  }
}
html body main section#content .inner > div:nth-of-type(1) ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1.2;
  padding: 10px 20px;
  border: 1px #B5B5B5 solid;
}
html body main section#content .inner > div:nth-of-type(1) ul li a:hover {
  background: #000;
  color: #fff;
  border: 1px #000 solid;
}
@media screen and (max-width: 1024px) {
  html body main section#content .inner > div:nth-of-type(1) ul li a {
    font-size: 12px;
    padding: 5px 10px;
  }
}
html body main section#content .inner > div:nth-of-type(1) ul li.active a {
  background: #000;
  color: #fff;
  border: 1px #000 solid;
}
html body main section#content .inner > div:nth-of-type(2) {
  width: calc(100% - 100px);
  max-width: 1300px;
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#content .inner > div:nth-of-type(2) {
    width: 100%;
    margin: 40px auto 0;
  }
}
html body main section#content .inner > div:nth-of-type(2) p {
  line-height: 2;
}
html body main section#works_list .inner > div:nth-of-type(1) {
  flex-direction: row-reverse;
  justify-content: space-between;
}
html body main section#works_list .inner > div:nth-of-type(2) {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: calc(100% - 200px);
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#works_list .inner > div:nth-of-type(2) {
    justify-content: space-between;
    width: 100%;
    margin: 40px 0 0 0;
  }
}
html body main section#works_list .inner > div:nth-of-type(2) article {
  width: 30%;
  margin: 0 5% 0 0;
}
html body main section#works_list .inner > div:nth-of-type(2) article:nth-of-type(3n) {
  margin: 0;
}
html body main section#works_list .inner > div:nth-of-type(2) article:nth-of-type(n+4) {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#works_list .inner > div:nth-of-type(2) article {
    width: 48%;
    margin: 0 0 0 0;
  }
  html body main section#works_list .inner > div:nth-of-type(2) article:nth-of-type(n+3) {
    margin-top: 20px;
  }
}
html body main section#works_list .inner > div:nth-of-type(2) article a {
  color: #000;
}
html body main section#works_list .inner > div:nth-of-type(2) article a figure {
  width: 100%;
  margin: 0;
  display: block;
  position: relative;
}
html body main section#works_list .inner > div:nth-of-type(2) article a figure::before {
  content: "";
  display: block;
  padding-top: 61.804%;
}
html body main section#works_list .inner > div:nth-of-type(2) article a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main section#works_list .inner > div:nth-of-type(2) article a figcaption {
  margin-top: 10px;
}
html body main section#works_list .inner > div:nth-of-type(2) article a figcaption h1 {
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1024px) {
  html body main section#works_list .inner > div:nth-of-type(2) article a figcaption h1 {
    font-size: 14px;
  }
}
html body main section#works_list .inner > div:nth-of-type(2) article a figcaption time {
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  html body main section#works_list .inner > div:nth-of-type(2) article a figcaption time {
    font-size: 12px;
  }
}
html body main section#works_detail .inner > article {
  width: calc(100% - 200px);
  max-width: 1300px;
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#works_detail .inner > article {
    width: 100%;
    margin: 40px auto 0;
  }
}
html body main section#works_detail .inner > article h1 {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  html body main section#works_detail .inner > article h1 {
    font-size: 16px;
  }
}
html body main section#works_detail .inner > article time {
  display: block;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#works_detail .inner > article time {
    font-size: 12px;
    margin-top: 10px;
  }
}
html body main section#works_detail .inner > article figure {
  text-align: center;
  width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#works_detail .inner > article figure {
    margin: 20px auto 0;
  }
}
html body main section#works_detail .inner > article figure img {
  width: auto;
}
html body main section#works_detail .inner > article figcaption p {
  margin-top: 40px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  html body main section#works_detail .inner > article figcaption p {
    margin-top: 20px;
  }
}
html body main section#itvendor_detail .inner > div:nth-of-type(1) {
  flex-direction: row-reverse;
  justify-content: space-between;
}
html body main section#itvendor_detail .inner > figure {
  width: calc(100% - 200px);
  max-width: 1000px;
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail .inner > figure {
    width: 100%;
    margin: 40px auto 0;
  }
}
html body main section#itvendor_detail .inner > article {
  width: calc(100% - 200px);
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 80px 0 0;
  line-height: 2;
  border-top: 1px #B5B5B5 solid;
}
html body main section#itvendor_detail .inner > article:last-of-type {
  padding: 80px 0 80px;
  border-bottom: 1px #B5B5B5 solid;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail .inner > article {
    width: 100%;
    margin-top: 40px;
    padding: 40px 0 0;
  }
  html body main section#itvendor_detail .inner > article:last-of-type {
    padding: 40px 0 40px;
  }
}
html body main section#itvendor_detail .inner > article h1 {
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail .inner > article h1 {
    font-size: 16px;
  }
}
html body main section#itvendor_detail .inner > article p {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail .inner > article p {
    margin-top: 20px;
  }
}
html body main section#itvendor_detail .inner > article dl {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail .inner > article dl {
    margin-top: 20px;
  }
}
html body main section#itvendor_detail .inner > article dl dd {
  margin-left: 1.1em;
}
html body main section#itvendor_detail .inner > article dl dd a {
  color: #000;
  text-decoration: underline;
}
html body main section#itvendor_detail .inner > article dl dd a::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 24px;
  background: url(../img/icon_pdf.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 10px;
}
html body main section#itvendor_detail_invoice .inner > div:nth-of-type(1) {
  flex-direction: row-reverse;
  justify-content: space-between;
}
html body main section#itvendor_detail_invoice .inner > figure {
  width: calc(100% - 200px);
  max-width: 1000px;
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail_invoice .inner > figure {
    width: 100%;
    margin: 40px auto 0;
  }
}
html body main section#itvendor_detail_invoice .inner > article {
  width: calc(100% - 200px);
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 80px 0 0;
  line-height: 2;
  border-top: 1px #B5B5B5 solid;
}
html body main section#itvendor_detail_invoice .inner > article:last-of-type {
  padding: 80px 0 80px;
  border-bottom: 1px #B5B5B5 solid;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail_invoice .inner > article {
    width: 100%;
    margin-top: 40px;
    padding: 40px 0 0;
  }
  html body main section#itvendor_detail_invoice .inner > article:last-of-type {
    padding: 40px 0 40px;
  }
}
html body main section#itvendor_detail_invoice .inner > article h1 {
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail_invoice .inner > article h1 {
    font-size: 16px;
  }
}
html body main section#itvendor_detail_invoice .inner > article h2 {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail_invoice .inner > article h2 {
    margin-top: 20px;
  }
}
html body main section#itvendor_detail_invoice .inner > article p {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail_invoice .inner > article p {
    margin-top: 20px;
  }
}
html body main section#itvendor_detail_invoice .inner > article dl {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#itvendor_detail_invoice .inner > article dl {
    margin-top: 10px;
  }
}
html body main section#itvendor_detail_invoice .inner > article dl dt a {
  color: #000;
  text-decoration: underline;
}
html body main section#itvendor_detail_invoice .inner > article dl dt a::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 24px;
  background: url(../img/icon_pdf.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 10px;
}
html body main section#itvendor_detail_invoice .inner > article dl dd {
  margin-left: 1.1em;
}
html body main section#contact .inner > div.mw_wp_form_complete {
  width: calc(100% - 200px);
  max-width: 1000px;
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner > div.mw_wp_form_complete {
    margin: 40px auto 0;
  }
}
html body main section#contact .inner > div.mw_wp_form_complete p {
  line-height: 2;
}
html body main section#contact .inner .must {
  color: #E60012;
}
html body main section#contact .inner span.error {
  text-align: center;
  margin-top: 5px;
}
html body main section#contact .inner form {
  max-width: 1000px;
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form {
    width: 100%;
    margin: 40px auto 0;
  }
}
html body main section#contact .inner form > p:nth-of-type(1) {
  line-height: 2;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form > p:nth-of-type(1) {
    margin-bottom: 15px;
  }
}
html body main section#contact .inner form dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 30px 0;
  border-bottom: 1px #B5B5B5 solid;
}
html body main section#contact .inner form dl:first-of-type {
  border-top: 1px #B5B5B5 solid;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form dl {
    display: block;
    padding: 20px 0;
  }
}
html body main section#contact .inner form dl dt {
  display: block;
  text-align: left;
  width: 300px;
  margin: 0 40px 0 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form dl dt {
    width: 100%;
    margin: 0;
  }
}
html body main section#contact .inner form dl dt .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
html body main section#contact .inner form dl dd {
  display: block;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form dl dd {
    margin: 10px 0 0 0;
  }
}
html body main section#contact .inner form dl dd .wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 2;
}
html body main section#contact .inner form :is(input:not([type=file]), select, textarea) {
  border-radius: 0;
  border: 1px #000 solid;
  background: #fff;
  color: #000;
  font-size: 16px;
  letter-spacing: 1px;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form :is(input:not([type=file]), select, textarea) {
    font-size: 14px;
  }
}
html body main section#contact .inner form input[type=text].input_number {
  text-align: right;
  width: 5.4em;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form input[type=text].input_number {
    width: 3.8em;
  }
}
html body main section#contact .inner form input[type=text].zip {
  width: 30%;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form input[type=text].zip {
    width: 40%;
  }
}
html body main section#contact .inner form input[type=file] {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form input[type=file] {
    font-size: 14px;
  }
}
html body main section#contact .inner form select.prefecture {
  width: 30%;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form select.prefecture {
    width: 40%;
  }
}
html body main section#contact .inner form .mwform-zip-field {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
html body main section#contact .inner form .mwform-zip-field input {
  margin: 0 10px;
}
html body main section#contact .inner form .select {
  width: 100%;
  position: relative;
}
html body main section#contact .inner form .select::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-color: #000;
  border-style: solid;
  position: absolute;
  right: 20px;
  top: 15px;
  transform-origin: center;
  transform: rotate(45deg);
}
html body main section#contact .inner form .radio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
html body main section#contact .inner form .radio input[type=radio] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main section#contact .inner form .radio .mwform-radio-field-text {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  margin: 0 20px 0 0;
  cursor: pointer;
  position: relative;
}
html body main section#contact .inner form .radio .mwform-radio-field-text::before {
  display: inline-block;
  position: relative;
  left: 0;
  top: 0;
  content: "";
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
  background: #fff;
  border: 1px solid #B5B5B5;
  box-sizing: border-box;
  border-radius: 50%;
  vertical-align: middle;
}
html body main section#contact .inner form .radio input[type=radio]:checked + .mwform-radio-field-text::before {
  border: 1px solid #000;
}
html body main section#contact .inner form .radio input[type=radio]:checked + .mwform-radio-field-text::after {
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 5px;
  content: "";
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  box-sizing: border-box;
  vertical-align: middle;
}
html body main section#contact .inner form input[type=checkbox] {
  display: none;
}
html body main section#contact .inner form .mwform-checkbox-field {
  display: block;
  text-align: center;
}
html body main section#contact .inner form .mwform-checkbox-field label {
  display: flex;
}
html body main section#contact .inner form .mwform-checkbox-field label .mwform-checkbox-field-text {
  text-align: left;
  display: inline-block;
  position: relative;
  padding: 0 0 0 36px;
}
html body main section#contact .inner form .mwform-checkbox-field label .mwform-checkbox-field-text::before, html body main section#contact .inner form .mwform-checkbox-field label .mwform-checkbox-field-text::after {
  display: block;
  content: "";
  position: absolute;
}
html body main section#contact .inner form .mwform-checkbox-field label .mwform-checkbox-field-text::before {
  background: #fff;
  border: 1px solid #000;
  border-radius: 0;
  width: 20px;
  height: 20px;
  top: 54%;
  left: 0;
  transform: translateY(-50%);
}
html body main section#contact .inner form .mwform-checkbox-field label .mwform-checkbox-field-text::after {
  border-width: 2px;
  border-color: transparent transparent #000 #000;
  border-style: solid;
  width: 20px;
  height: 10px;
  margin-top: -0.2em;
  top: 30%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
}
html body main section#contact .inner form input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}
html body main section#contact .inner form div.privacypolicy {
  box-sizing: border-box;
  border-radius: 0;
  background: #fff;
  width: 100%;
  height: 360px;
  padding: 20px 30px;
  overflow-y: auto;
  border: 1px #B5B5B5 solid;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form div.privacypolicy {
    padding: 2vw 4vw;
  }
}
html body main section#contact .inner form div.privacypolicy strong {
  display: block;
  font-weight: 700;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form div.privacypolicy strong {
    margin-top: 30px;
  }
}
html body main section#contact .inner form div.privacypolicy p {
  margin-top: 10px;
  line-height: 2;
}
html body main section#contact .inner form div.btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form div.btn_area {
    margin: 20px auto 0;
  }
}
html body main section#contact .inner form div.btn_area .btn_submit {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000 url(../img/arrow.svg) no-repeat right 20px center;
  background-size: 8px 14px;
  width: 100%;
  max-width: 280px;
  height: 60px;
  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form div.btn_area .btn_submit {
    background: #000 url(../img/arrow.svg) no-repeat right 10px center;
    background-size: 4px 7px;
    height: 50px;
    font-size: 14px;
  }
}
html body main section#contact .inner form div.btn_area .btn_submit:hover {
  background: #6c6c6c url(../img/arrow.svg) no-repeat right 20px center;
  background-size: 8px 14px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form div.btn_area .btn_submit:hover {
    background: #6c6c6c url(../img/arrow.svg) no-repeat right 10px center;
    background-size: 4px 7px;
  }
}
html body main ul.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main ul.pagination {
    margin: 40px auto 0;
  }
}
html body main ul.pagination li.prev {
  margin: 0 60px 0 0;
  width: 2em;
}
html body main ul.pagination li.next {
  margin: 0 0 0 60px;
  width: 2em;
}
html body main ul.pagination li .page-numbers {
  background: #fff;
  color: #000;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
html body main ul.pagination li .page-numbers.current {
  background: #000;
  color: #fff;
}
html body main ul.pagination li a {
  color: #000;
}
html body main ul.pagination li a span {
  letter-spacing: 0;
}
html body footer {
  background: #252525;
  margin: 160px 0 0;
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  html body footer {
    margin: 80px 0 0;
    padding: 60px 0;
  }
}
html body footer .inner {
  width: 100%;
}
html body footer .inner > nav {
  color: #fff;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: calc(100% - 100px);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > nav {
    writing-mode: horizontal-tb;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    padding: 0 4vw;
  }
}
html body footer .inner > nav > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
html body footer .inner > nav > div:nth-of-type(1) > h1 {
  font-size: 18px;
  margin: 0 0 0 160px;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > nav > div:nth-of-type(1) > h1 {
    font-size: 16px;
    margin: 0 0 40px 0;
  }
}
html body footer .inner > nav > div:nth-of-type(1) > ul > li {
  display: block;
}
html body footer .inner > nav > div:nth-of-type(1) > ul > li:nth-of-type(n+2) {
  margin: 0 60px 0 0;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > nav > div:nth-of-type(1) > ul > li:nth-of-type(n+2) {
    margin: 20px 0 0 0;
  }
}
html body footer .inner > nav > div:nth-of-type(1) > ul > li a {
  color: #fff;
}
html body footer .inner > nav > div:nth-of-type(1) > ul > li a span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 18px;
}
html body footer .inner > nav > div:nth-of-type(1) > ul > li a span::after {
  content: attr(data-subtitle);
  display: block;
  font-size: 12px;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > nav > div:nth-of-type(1) > ul > li a span {
    font-size: 14px;
  }
  html body footer .inner > nav > div:nth-of-type(1) > ul > li a span::after {
    font-size: 10px;
    margin: 0 0 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  html body footer .inner > nav > div:nth-of-type(2) {
    margin: 40px 0 0 0;
  }
}
html body footer .inner > nav > div:nth-of-type(2) > ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
html body footer .inner > nav > div:nth-of-type(2) > ul > li {
  text-align: center;
  display: block;
  width: 20px;
  height: 20px;
}
html body footer .inner > nav > div:nth-of-type(2) > ul > li:nth-of-type(n+2) {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > nav > div:nth-of-type(2) > ul > li {
    width: 25px;
    height: 25px;
  }
  html body footer .inner > nav > div:nth-of-type(2) > ul > li:nth-of-type(n+2) {
    margin: 0 0 0 10px;
  }
}
html body footer .inner > nav > div:nth-of-type(2) > small {
  font-size: 12px;
  margin: 0 60px 0 0;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > nav > div:nth-of-type(2) > small {
    font-size: 10px;
    margin: 20px 0 0 0;
  }
}

/* fadein */
/* ------------------------------------------------------------ */
.fadein {
  transform: translate(0, 40px);
  transition: all 700ms;
  opacity: 0;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* トップページに戻るボタン */
/* ------------------------------------------------------------ */
.pagetop {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 50px;
}
@media screen and (max-width: 1024px) {
  .pagetop {
    width: 40px;
  }
}
.pagetop a {
  display: block;
}
.pagetop a img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=style.css.map */