/*------------------------------
theme name: hitoshizuku
version: 220521-250823
author: yamabatosha
author uri: https://yamabatosha.com
------------------------------*/
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni&display=swap');

/*------------------------------*/
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  line-height: 1.8;
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, 'Noto Sans JP', 'Helvetica Neue', Arial, YuGothic, 'Yu Gothic', sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

/*------------------------------
basic
------------------------------*/
h1,
h2,
h3,
h4 {
  line-height: 1;
}

h2 {
  font-size: 1.4em;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}

h3 {
  margin-top: 30px;
  font-size: 1.4em;
  font-weight: 500;
  font-family: 'Helvetica Neue', Arial, YuGothic, 'Yu Gothic', 'Noto Sans JP', sans-serif;
  color: #185aa5;
}

h4 {
  font-size: 1.4em;
  font-weight: 700;
  color: #185aa5;
}

p {
  margin: 30px 0 0;
}

p:first-child {
  margin-top: -.5em;
}

a {
  transition: .3s;
}

a,
a:hover,
a:active,
a:focus {
  color: #000;
  text-decoration: none;
}

.hd {
  font-family: 'Libre Bodoni', serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1;
  color: #185aa5;
}

.hd2 {
  font-family: 'Libre Bodoni', serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.2;
  color: #185aa5;
}

#page .hd {
  font-size: 30px;
  /* margin-top: 20px; */
}

#page .hd span {
  font-size: .4em;
  font-weight: 600;
  letter-spacing: .05em;
  margin-top: .5rem;
  display: block;
}

#page .hd.bottom {
  margin-top: 0;
}

.lead {
  font-size: 1em;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  transition: .3s;
}

svg {
  transition: .3s;
}

hr {
  margin: 40px 0;
  width: 100%;
  border: 0;
  border-top: solid 1px #707070;
}

/*------------------------------
fx
------------------------------*/
.fx div {
  position: relative;
  overflow: hidden;
  padding-top: 66.666%;
  background: #185aa5;
}

.fx div a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: .3s;
  opacity: 1;
}

.fx div a:hover img {
  transform: translate(-50%, -50%) scale(1.02);
  cursor: pointer;
  opacity: .15;
}

.fx div p {
  margin: 0;
  font-size: 36px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s ease-in-out;
  opacity: 0;
}

.fx div a:hover p {
  opacity: 1;
}

.fx div.readall {
  background: none;
  padding-top: 2em;
}

.fx div.readall a {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
}

/*------------------------------
btn
------------------------------*/

.btn {
  display: inline-block;
  padding-bottom: 4px;
  font-size: 1em;
  line-height: 1;
  letter-spacing: .05em;
  margin-top: 45px;
  transition: .3s;
  border-bottom: 1px dashed #000;
}

.btn:hover {
  color: #185aa5;
  border-bottom: 1px dashed #185aa5;
}

/*------------------------------
news
------------------------------*/

dl.news dt {
  padding: 30px 0 0;
}

dl.news dd a {
  padding-bottom: 4px;
  border-bottom: 1px dashed #000;
  line-height: 2;
}

dl.news dd a:hover {
  color: #185aa5;
  border-bottom: 1px dashed #185aa5;
}

/*------------------------------
table
------------------------------*/

table {
  margin-top: 40px;
  width: 100%;
  text-align: center;
}

table tr {
  border-bottom: solid 1px #707070;
}

table tr:first-child {
  border-top: solid 1px #707070;
}

table td {
  padding: 20px;
  vertical-align: top;
}

table td:first-child {
  white-space: nowrap;
}

/* table-sp */

@media (max-width: 1023px) {

  .table-sp th,
  .table-sp td {
    display: block;
  }

  .table-sp td {
    text-align: left;
    padding: 5px 10px;
  }

  .table-sp td:first-child {
    padding-top: 20px;
    font-weight: bold;
  }

  .table-sp td:last-child {
    padding-bottom: 20px;
  }
}

/*------------------------------
form
------------------------------*/
.form h3:first-child {
  margin-top: 50px;
}

.btn-form {
  display: block;
  width: 240px;
  margin: 0 auto;
  padding: 16px;
  font-size: 13px;
  font-weight: 500;
  color: #185aa5;
  line-height: 1;
  letter-spacing: .05em;
  border: 1px solid #185aa5;
  border-radius: 0;
  text-align: center;
}

.btn-form:hover {
  color: #fff;
  background: #185aa5;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
  line-height: 1;
  width: 100%;
  height: 4em;
  margin: 1em 0;
  padding: 1em;
  vertical-align: middle;
  color: #000;
  border: 1px solid #000;
  letter-spacing: .1em;
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, 'Noto Sans JP', 'Helvetica Neue', Arial, YuGothic, 'Yu Gothic', sans-serif;
}

input[type="submit"] {
  cursor: pointer;
}

textarea {
  height: 18em;
  line-height: 1.5;
}

select {
  appearance: none;
  border-radius: none;
  cursor: pointer;
}

.sel-arrow {
  position: relative;
}

.sel-arrow:after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  transform: rotate(135deg);
  top: 50%;
  right: 1.5em;
  margin-top: -8px;
}

/*------------------------------
header
------------------------------*/

header {
  position: fixed;
  display: table;
  width: 100%;
  height: 84px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 10;
  transition: .5s;
}

header .container {
  padding: 0;
}

header h1,
header nav {
  display: table-cell;
  margin: 0;
}

header h1 {
  transition: .5s;
}

header h1 img {
  position: absolute;
  top: 31px;
  left: 0;
  width: auto;
  height: 22px;
}

@media (max-width: 320px) {
  header h1 img {
    top: 33px;
    height: 18px;
  }
}

/*------------------------------
nav
------------------------------*/
header nav ul {
  position: absolute;
}

header nav ul li {
  display: inline-block;
  margin: 0 0 0 20px;
  line-height: 1;
}

header nav ul li svg {
  overflow: visible;
}

header nav ul li svg:hover {
  fill: #185aa5;
}

header nav ul li a.current svg {
  fill: #185aa5;
}

#toggle {
  display: none;
}

/* sp */

@media (max-width: 1023px) {
  header nav {
    visibility: hidden;
    position: fixed;
    overflow: scroll;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .95);
    opacity: 0;
    transition: 0.3s ease-in-out;
  }

  html.open {
    overflow: hidden;
  }

  .open nav {
    visibility: visible;
    opacity: 1;
  }

  header nav ul {
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
  }

  header nav ul li {
    display: block;
    margin: 30px 10px;
  }

  header nav ul li.sp img {
    width: auto;
    height: 20px;
    margin-bottom: 40px;
  }

  /* toggle
  ------------------------------*/

  #toggle {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 27px;
    right: 0px;
    z-index: 100;
    cursor: pointer;
  }

  #toggle div {
    position: relative;
  }

  #toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    transition: 0.3s ease-in-out;
  }

  #toggle span:nth-child(1) {
    top: 5px;
  }

  #toggle span:nth-child(2) {
    top: 14px;
  }

  #toggle span:nth-child(3) {
    top: 23px;
  }

  /* toggle .open */

  .open #toggle span:nth-child(1) {
    top: 14px;
    transform: rotate(45deg);
  }

  .open #toggle span:nth-child(2) {
    opacity: 0;
  }

  .open #toggle span:nth-child(3) {
    top: 14px;
    transform: rotate(-45deg);
  }
}

/*------------------------------
section
------------------------------*/

section {
  margin: 84px auto 0;
}

/*
.frame {
  background: #f9f9f9;
  padding: 40px 60px;
}
*/

.bg-gray {
  background: #e3e3e3;
}

/*------------------------------
#top 
------------------------------*/

.poem p {
  font-size: 1.2em;
  color: #185aa5;
}

.poem p:last-child {
  font-size: 1em;
}

.copy {
  padding: 1.5em 0;
  background: #185aa5;
}

.copy h2 {
  color: #fff;
  line-height: 1.4;
}

.top-works .col-2 {
  padding-bottom: 0;
}

.top-works .col-2 p:last-child {
  margin: 0;
}

.top-works .col-2 a div {
  background: #185aa5;
}

.top-works .col-2 a:hover img {
  opacity: .5;
}

.box-sea {
  position: relative;
  padding: 4rem 0 10rem;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0) 33%, rgba(255,255,255,1) 100%),
    url('images/top/sea.jpg') center/cover no-repeat;
}


/*------------------------------
#page 
------------------------------*/

#page p.midashi {
  font-size: 1.1em;
  letter-spacing: .05em;
  color: #185aa5;
  margin-top: 40px;
}

#page p.midashi + p {
  margin-top: 0.5em;
}

#page p.note {
  font-size: .8em;
  font-weight: 400;
  margin-top: 1em;
}

#page .sign {
  width: 33.3%;
  max-width: 200px;
  margin: 3em 0 0;
  display: block;
}

#page .philosophy-copy {
  /* margin: 20px 0 50px -60px; */
  width: 100vw;
  margin: 20px auto 50px calc(50% - 50vw);
  padding: 20px 0;
  background: #185aa5;
}

#page .philosophy-copy h2 {
  margin-left: 60px;
  color: #fff;
  line-height: 1.4;
}

#page .poem_profile {
  font-size: .75em;
}

#page .poem_profile p {
  margin: 90px 0 -20px;
}

#page-title,
#works {
  padding-top: 10px;
}

#works a:hover {
  color: #185aa5;
}

#works .col-1-2 {
  padding: 30px 0 0;
}

#works .categories p {
  font-size: 1.4em;
}

#works .category p {
  margin-top: 1em;
}

#works .category a {
  text-decoration: none;
  display: inline-block;
  padding-bottom: 4px;
  font-size: 1em;
  line-height: 1;
  border-bottom: 1px dashed #000;
  transition: .3s;
}

#works .category a.current,
#works .category a:hover {
  color: #185aa5;
  border-bottom: 1px dashed #185aa5;
}

#works .readall {
  text-align: center;
  padding-bottom: 100px;
}

#works .readall a {
  margin: 0 20px;
}

#works .col-2.works-list {
  padding: 50px 0;
}

#works .works-pickup a div,
#works .works-list a div {
  background: #185aa5;
}

#works .works-pickup a:hover img,
#works .works-list a:hover img {
  opacity: .5;
}

#works .works-pickup p:last-child,
#works .works-list p:last-child {
  margin: 0;
}

#page dl.news div {
  margin-top: 40px;
}

#page dl.news dt,
#page dl.news dd {
  padding-top: 0;
}

#page dl.news p:first-child {
  margin: 0;
}

#page dl.news dd p:not(:first-child) {
  font-size: .9em;
  font-weight: 400;
}

#page .company-top {
  margin: 30px 0 50px;
}

#page .company {
  padding: 50px 0 70px;
}

#page .information {
  margin-top: 30px;
  padding-top: 0;
  grid-template-columns: 100%;
  grid-gap: 30px;
  font-size: clamp(0.625rem, -0.313rem + 4vw, 0.75rem);
}

/* #page .capabilities h2 {
  margin-bottom: 30px;
} */

/* #page .company p {
  margin-top: 1rem;
} */

#page .member {
  padding: 0;
}

#page .member p.name {
  font-size: 1.2em;
  font-weight: 700;
}

#page .member .position {
  overflow: hidden;
  margin-top: 20px;
  line-height: 1;
}

#page .member .position p {
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  float: left;
  margin: 0;
}

#page .member .position .link {
  float: right;
}

#page .member .position .btn {
  font-size: .95em;
  font-weight: 700;
  margin: 0 0 0 1em;
}

#page .member p {
  font-size: .9em;
  font-weight: 400;
  line-height: 1.8;
}

/* #page .policy ul {
  list-style: none;
}

#page .policy ul li {
  margin-top: 30px;
  padding-left: 30px;
  line-height: 1.6em;
  background: url(images/ico_earth.svg) left 0px top 6px no-repeat;
  background-size: 20px auto;
}

#page .policy .lead {
  margin-top: 30px;
}

#page .policy .shishin .lead {
  margin-top: 20px;
} */

/* #page .policy p:not(:last-child) {
  margin: 0px;
} */

#page .details .midashi span {
  color: #185aa5;
  font-size: 1.4em;
  vertical-align: middle;
  margin: -4px 5px 0 0;
  display: inline-block;
}

#page .overview .hd2 {
  margin-bottom: 30px;
}

#page .overview p {
  margin-top: 10px;
}

#page .policy-list p.lead {
  margin-top: 40px;
  font-size: 1.3em;
}

#page .policy-list p {
  margin-top: 10px;
}

#page .policy-list p.indent {
  margin-top: 0;
  padding-left: 2.1em;
  text-indent: -2.1em;
}

#page ol.counter {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

#page ol.counter li {
  padding-left: 30px;
  position: relative;
}

#page ol.counter li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #000;
  border: 1px solid;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  width: 18px;
  color: #fff;
  font-size: .8em;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  top: .3em;
  left: 0;
}

/*------------------------------
single
------------------------------*/

#single .content a {
  display: inline;
  padding-bottom: 4px;
  font-size: 1em;
  line-height: 1;
  border-bottom: 1px dashed #000;
  transition: .3s;
}

#single .content a:hover {
  color: #185aa5;
  border-bottom: 1px dashed #185aa5;
}

#single .content {
  padding: 50px 0 100px;
}

#single .content.intro {
  padding: 30px 0 50px;
}

#single .content .case,
#single .content .interview {
  font-family: 'Libre Bodoni', serif;
  font-size: 1.6em;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1;
  color: #185aa5;
  text-align: center;
  margin-top: 50px;
}

#single .content .interview {
  margin-top: 0px;
}

#single .content .company {
  font-size: 1.2em;
  text-align: center;
  margin-top: 20px;
}

#single .content .lead {
  font-size: 1.1em;
  line-height: 1.8;
  /* margin: 20px 0 50px; */
}

#single .content .lead br {
  display: none;
}

#single .content h3 {
  margin-top: 60px;
}

#single .content p {
  margin-top: 15px;
}

#single .bg-gray .interview {
  text-align: left;
}

#single .bg-gray .interview + p {
  font-weight: 700;
}

#single .bg-gray h3 {
  font-size: 1.2em;
  color: #000;
  font-weight: 700;
  margin-top: 50px;
  line-height: 1.8;
}

#single .bg-gray img {
  margin-top: 30px;
}

#single .bg-gray .caption {
  margin-top: 10px;
  font-size: .8em;
  font-weight: 400;
}

#single .bg-gray p {
  font-weight: 400;
}

#single .bg-gray p.name {
  font-weight: 700;
  margin-top: 30px;
}

#single .bg-gray p.name + p {
  margin-top: 0;
}

#single .bg-gray p.credit {
  font-weight: 400;
  margin-top: 50px;
}

#single .bg-gray p.tag {
  font-weight: 700;
  color: #185aa5;
  margin-top: 60px;
}

#single .bg-gray p.tag a {
  color: #185aa5;
  border-color: #185aa5;
}

/*------------------------------
footer
------------------------------*/
footer {
  background: #e3e3e3;
  padding: 0px 0 40px;
}

footer .hd2 {
  color: #fff;
}

footer .company-info {
  color: #fff;
  background: #185aa5;
  padding-top: 40px;
}

footer .company-info p {
  margin: 0 0 10px;
  line-height: 1.2;
}
footer .company-info p a {
  color: #fff;
  border-bottom: 1px dashed #fff;
  padding-bottom: 4px;
}

footer .col-2 {
  padding: 30px 0;
  grid-gap: 0 30px;
}

footer div.copyright {
  overflow: hidden;
  font-size: .9em;
  letter-spacing: .02em;
  font-weight: 600;
}

footer div.copyright div {
  float: left;
}

footer div.copyright div:last-child {
  float: right;
}

footer div.copyright div a.btn {
  margin: 0;
  font-size: 1em;
  letter-spacing: .02em;
}

/* footer a:hover .policy-svg {
  fill: #185aa5;
}

footer div.copyright img {
  vertical-align: text-top;
} */

/*------------------------------
js
------------------------------*/

/* slick
------------------------------*/
.slide {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.slick-dots {
  width: auto;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.slick-dots li {
  margin: 0 5px;
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background: #fff;
  opacity: 1;
}

.carousel {
  padding: 100px 0;
}

@media (min-width: 1024px) {
  .carousel {
    padding: 100px 0 200px;
  }
}

/*------------------------------
wp
------------------------------*/
/* 画像のキャプション */
.wp-block-image,
.wp-block-image figcaption {
  font-size: .8em;
  margin: 0;
}

/* カラムのマージン */
.wp-block-columns {
  margin: 0;
}

/* 引用 */
.wp-block-quote {
  border-left: solid 3px #000;
  padding-left: 30px;
}

.wp-block-quote cite a {
  font-style: normal;
  color: #999;
}

/* pagination
------------------------------*/

/*
.page-link {
  text-align: center;
  margin-top: 80px;
  display: inline-block;
  width: 100%;
}

.page-link a {
  color: #185aa5;
  font-weight: bold;
  margin: 0 20px;
}
*/

/*
#the_posts_pagination nav {
  display: inline-block;
}

.pagination h2.screen-reader-text {
  display: none;
}
*/

.pagination {
  text-align: center;
}

.page-numbers {
  font-size: 1em;
  display: inline-block;
  letter-spacing: 0;
  margin: 80px 5px 0;
}

.page-numbers.current {
  color: #185aa5;
}

a.page-numbers:hover {
  color: #185aa5;
}

/*------------------------------
wpcf7
------------------------------*/
span.wpcf7-not-valid-tip,
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.wpcf7-response-output,
div.wpcf7-mail-sent-ok {
  border: none !important;
  color: #185aa5;
  font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  text-align: center;
}

div.wpcf7 .ajax-loader {
  display: none;
}

div.wpcf7 .wpcf7-list-item {
  margin: 0;
}

div.wpcf7 {
  font-size: .9em;
}

@media (min-width: 1024px) {
  div.wpcf7 {
    font-size: 1em;
  }
}
/*------------------------------
768px
------------------------------*/

@media (min-width: 600px) {
  header h1 img {
    top: 30px;
    height: 24px;
  }

  .nml-50 {
    margin-left: -50px;
  }

  .nml-140 {
    margin-left: -140px;
  }

  .nmr-50 {
    margin-right: -50px;
  }

  .nmr-140 {
    margin-right: -140px;
  }

  #page .philosophy-copy {
    margin: 20px 30px 50px -60px;
    width: auto;
    padding: 20px 0;
  }

  #page .hd.bottom {
    margin-top: 240px;
  }

  .fx div.readall {
    padding-top: 66.666%;
  }

  .fx div.readall a {
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }

  /* #works .readall a {
    margin-top: 94px;
  } */

  #single .content .lead {
    text-align: center;
    /* margin: 20px 0 100px; */
  }

  #single .content .lead br {
    display: block;
  }
}

/*------------------------------
1024px
------------------------------*/

@media (min-width: 1024px) {
  body {
    font-size: 15px;
    line-height: 2;
    letter-spacing: .14em;
  }

  h2 {
    font-size: 2.5em;
  }

  h3 {
    margin-top: 40px;
  }

  h4 {
    font-size: 2em;
  }

  hr {
    margin: 80px 0;
  }

  .lead {
    font-size: 1.2em;
  }

  .btn {
    font-size: 1.2em;
  }

  /* header 1024px
  ------------------------------*/
  header nav ul {
    top: 34px;
    right: 0px;
    line-height: 1;
  }

  /* hover-fx 1024px
  ------------------------------*/
  header nav ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }

  header nav ul li a::after {
    position: absolute;
    top: -5px;
    left: -1px;
    content: '';
    width: 100%;
    height: 2px;
    background: #185aa5;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
  }

  header nav ul li a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }

  header nav ul li a.current::after {
    transform-origin: center top;
    transform: scale(1, 1);
  }

  header nav ul li.icon a:hover::after {
    transform: scale(0, 1);
  }

  /* #top 1024px
  ------------------------------*/
  .box-sea {
    padding: 6rem 0 10rem;
    font-size: 22px;
  }

  dl.news {
    margin-top: 30px;
    font-size: 1.2em;
  }

  dl.news dt,
  dl.news dd {
    padding: 20px 0 0;
  }

  dl.news dt {
    float: left;
  }

  dl.news dd {
    padding-left: 9em;
  }

  /* #page 1024px
  ------------------------------*/
  #page .philosophy-copy {
    margin: 40px 0 100px -60px;
  }

  .hd {
    font-size: 68px;
    margin: 0 0 30px;
  }

  .hd2 {
    font-size: 40px;
  }
  
  #page .hd {
    font-size: 68px;
    /* margin-bottom: 30px; */
  }

  #page .hd span {
    font-size: .3em;
    margin-top: 1rem;
  }

  #page .hd.bottom {
    margin-top: 300px;
  }

  #page p.midashi {
    font-size: 1.3em;
  }

  #page .sign {
    margin: 4em 80px 0 auto;
  }

  #page .company-top {
    margin: 30px 0 100px;
  }

  #page .information {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px;
    font-size: 15px;
  }

  #page .company {
    padding: 100px 0;
  }

  #page-title,
  #works {
    padding-top: 100px;
  }

  #page .member {
    padding: 2.5em 0 0;
  }

  #works .works-pickup p {
    font-size: 1.2em;
  }

  #works .col-2.works-list {
    padding: 100px 0;
  }

  /* #works .readall a {
    margin-top: 150px;
  } */

  /* #page .capabilities h2 {
    margin-bottom: 50px;
  } */

  #page .overview p {
    margin-top: 0;
    line-height: 2.4;
  }

  #page .overview p.jigyo {
    padding-left: 5.6em;
    text-indent: -5.6em;
  }

  #page .overview p br:first-child {
    display: none;
  }

  #page ol.counter li:before {
    height: 20px;
    width: 20px;
    top: .4em;
  }

  .btn-form {
    width: 300px;
    padding: 24px;
    font-size: 18px;
  }

  /* #single 1024px
  ------------------------------*/
  #single .content .case,
  #single .content .interview {
    font-size: 2.3em;
    margin-top: 50px;
  }

  #single .content.intro {
    padding: 30px 0 100px;
  }

  #single .content .lead {
    font-size: 2em;
    text-align: center;
  }

  #single .bg-gray h3 {
    font-size: 1.3em;
    margin-top: 100px;
  }

  #single .bg-gray img {
    margin-top: 50px;
  }

  #single .bg-gray .caption {
    margin-top: 20px;
  }
  #single .bg-gray p.credit {
    margin-top: 100px;
  }

  #page dl.news div {
    margin-top: 80px;
  }

  /* footer 1024px
  ------------------------------*/
  footer .company-info p {
    font-size: 18px;
    line-height: 1.6;
  }
}

/*------------------------------
container
------------------------------*/
.container {
  position: relative;
  width: 85%;
  margin: 0 auto;
}

.container.top-works {
  margin: -3rem auto 100px;
}

@media (min-width: 1024px) {
  .container {
    width: 960px;
  }
  .container.top-works {
    margin: -3rem auto 200px;
  }
}

@media (min-width: 1280px) {
  .container {
    width: 1040px;
  }
}

/* inview
------------------------------*/
section img {
  transition: all 0.8s ease-out;
  transform: translateY(20px);
  opacity: 0;
}

section #works img,
section img.is_show {
  transform: none;
  opacity: 1;
}

/*------------------------------
display
------------------------------*/
@media (min-width: 1024px) {
  .sp {
    display: none !important
  }

  .sp-center {
    text-align: left;
  }

  .pc-center {
    text-align: center;
  }
}

@media (max-width: 1023px) {
  .pc {
    display: none !important
  }

  .sp-center {
    text-align: center;
  }

  .pc-center {
    text-align: left;
  }

}
