@charset "UTF-8";
/* style */
/* reset */
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Basic */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  height: 100%;
  font-family: 'Meiryo', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  color: #868484;
  line-height: 1.4;
  overflow-x: hidden;
  position: relative;
}

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

a {
  color: #868484;
  text-decoration: none;
  transition: all .3s ease;
}

a:hover {
  color: #c92c10;
}

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

span.nw {
  white-space: nowrap;
}

/**
 * title font
***************************/
.h1-title {
  font-size: 34px;
  font-family: '平成角ゴシック', 'heisei-kaku-gothic-std', 'Osaka', 'ヒラギノ角ゴ Pro W6', sans-serif;
  font-weight: 300;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .h1-title {
    font-size: 30px;
  }
}

.h1-title a {
  color: #bcbcbc;
}

.h1-title span {
  display: block;
  font-size: 15px;
  margin-top: 10px;
  font-family: 'Meiryo', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

@media screen and (max-width: 768px) {
  .h1-title span {
    font-size: 14px;
  }
}

.h2-title {
  font-size: 30px;
  text-align: left;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 2px solid #efefef;
}

@media screen and (max-width: 768px) {
  .h2-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}

.h2-title span {
  display: inline-block;
  font-size: 14px;
  color: #a69e9e;
  vertical-align: middle;
  margin-left: 10px;
}

/**
 * prats
***************************/
.flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.textAlign-left {
  text-align: left;
}

.textAlign-center {
  text-align: center;
}

.textAlign-right {
  text-align: right;
}

/**
 * clm
***************************/
.clm-2 > * {
  width: calc(100% / 2 - 2%);
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .clm-2 > * {
    width: 100%;
  }
}

.clm-3 > * {
  width: calc(100% / 3 - 3%);
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  .clm-3 > * {
    width: 100%;
  }
}

.clm-3::before {
  content: "";
  display: inline-block;
  width: calc(100% / 3 - 3%);
  -ms-flex-order: 1;
      order: 1;
}

@media screen and (max-width: 768px) {
  .clm-3::before {
    display: none;
  }
}

.clm-3 *::-ms-backdrop, .clm-3::before {
  width: 31%;
  /* IE11 */
}

@media screen and (max-width: 768px) {
  .clm-3 *::-ms-backdrop, .clm-3::before {
    width: 100%;
  }
}

.clm-4 > * {
  width: calc(100% / 4 - 3%);
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .clm-4 > * {
    width: calc(100% / 2 - 2%);
  }
}

.clm-4::before {
  content: "";
  display: inline-block;
  width: calc(100% / 4 - 3%);
  -ms-flex-order: 1;
      order: 1;
}

@media screen and (max-width: 768px) {
  .clm-4::before {
    display: none;
  }
}

.clm-4::after {
  content: "";
  display: inline-block;
  width: calc(100% / 4 - 3%);
  -ms-flex-order: 1;
      order: 1;
}

@media screen and (max-width: 768px) {
  .clm-4::after {
    display: none;
  }
}

/**
 * layout
***************************/
.layout__flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .layout__flex {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.layout__flex-image {
  width: 50%;
  padding: 0 50px;
}

@media screen and (max-width: 768px) {
  .layout__flex-image {
    width: 100%;
    margin-bottom: 15px;
    padding: 50px;
  }
}

.layout__flex-details {
  width: 50%;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .layout__flex-details {
    width: 100%;
  }
}

.layout__table {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  text-align: left;
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .layout__table {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.layout__table:nth-child(n+3) {
  padding: 40px 0;
  background-image: url(../img/line.png);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .layout__table:nth-child(n+3) {
    background-size: auto 3px;
  }
}

.layout__table-head {
  -ms-flex-preferred-size: 255px;
      flex-basis: 255px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 25px;
}

@media screen and (max-width: 768px) {
  .layout__table-head {
    width: 100%;
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    margin-bottom: 15px;
  }
}

.layout__table-body {
  width: 100%;
}

.layout__table-body .layout__table {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}

.layout__table-body .layout__table-head {
  -ms-flex-preferred-size: unset;
      flex-basis: unset;
  width: 20%;
  font-size: inherit;
  margin-bottom: 40px;
}

.layout__table-body .layout__table-body {
  width: 80%;
  margin-bottom: 40px;
}

.layout__ratio {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 40px;
}

.layout__ratio:last-child {
  margin-bottom: 0;
}

.layout__ratio-head {
  width: 20%;
}

.layout__ratio-body {
  width: 80%;
}

/**
 * button
***************************/
.button,
.button-more {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #a69e9e;
  padding: 3px 20px;
  border: 1px solid #d5d2d2;
  transition: all .3s ease;
  border-radius: 5px;
}

.button__wrap {
  text-align: right;
  margin-bottom: 50px;
}

.button-more::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  background-image: url(/img/icon-arrow.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/**
 * section
***************************/
.section {
  width: 90%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
}

/**
 * header
***************************/
.header {
  width: 100%;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 30px 0;
  }
}

.header__wrap {
  width: 90%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.header-title {
  font-size: 34px;
  font-family: '平成角ゴシック', 'heisei-kaku-gothic-std', 'Osaka', 'ヒラギノ角ゴ Pro W6', sans-serif;
  font-weight: 300;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .header-title {
    font-size: 30px;
  }
}

.header-title a {
  color: #bcbcbc;
}

.header-title span {
  display: block;
  font-size: 15px;
  margin-top: 10px;
  font-family: 'Meiryo', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

@media screen and (max-width: 768px) {
  .header-title span {
    font-size: 14px;
  }
}

/**
 * main
***************************/
.main {
  padding-bottom: 80px;
}

/**
 * navigation
***************************/
.navigation {
  width: 100%;
}

.navigation__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {
  .navigation__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.navigation__list-item {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .navigation__list-item {
    width: calc(100% / 3);
    margin-bottom: 5%;
  }
  .navigation__list-item *::-ms-backdrop {
    width: 33.33%;
    /* IE11 */
  }
}

/**
 * footer
***************************/
.footer {
  width: 100%;
  padding-top: 20px;
}

.footer__wrap {
  width: 90%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.footer .copy {
  text-align: center;
  padding: 4% 0;
}

@media screen and (max-width: 768px) {
  .footer .copy {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .footer .copy {
    font-size: 10px;
  }
}

/**
 * home
***************************/
.home {
  height: 100vh;
}

.home .header {
  padding: 0;
}

.home .header-title {
  font-size: 46px;
  padding: 20% 0;
}

@media screen and (max-width: 768px) {
  .home .header-title {
    font-size: 30px;
    padding: 30% 0;
  }
}

@media screen and (max-height: 600px) {
  .home .header-title {
    padding: 15% 0;
  }
}

.home .header-title a {
  cursor: default;
}

.home .header-title span {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .home .header-title span {
    font-size: 14px;
  }
}

.home .main {
  padding: 0;
}

/**
 * concept
***************************/
@media screen and (max-width: 768px) {
  .concept.section {
    max-width: 80%;
  }
}

.concept .layout__flex-image {
  padding: 50px;
}

@media screen and (max-width: 768px) {
  .concept .layout__flex-image {
    padding: 0;
  }
}

/**
 * profile
***************************/
.profile {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .profile.section {
    max-width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .profile .layout__flex-image {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .office.section {
    max-width: 80%;
  }
}

.office .layout__ratio-body {
  position: relative;
}

.office .button__wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .office .button__wrap {
    position: relative;
    margin-top: 20px;
  }
}

/**
 * blog
***************************/
.blog.section {
  width: 90%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/**
 * work
***************************/
.work.section {
  width: 90%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.work .title {
  margin-bottom: 30px;
}

.work__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {
  .work__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.work__list-item {
  max-width: 135px;
  margin-bottom: 30px;
}

@media screen and (max-width: 480px) {
  .work__list-item {
    margin-bottom: 15px;
  }
}

/**
 * rss
***************************/
.rss_list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: start;
      justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  .rss_list {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

@media screen and (max-width: 480px) {
  .rss_list {
    display: block;
  }
}

.rss_list a {
  display: inline-block;
  max-width: 200px;
  margin-right: 3.8%;
  margin-bottom: 3.8%;
}

.rss_list a:nth-child(3n+1) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .rss_list a {
    width: calc(100% / 2 - 2%);
    max-width: unset;
    max-height: 200px;
    margin-right: 0px;
  }
}

@media screen and (max-width: 480px) {
  .rss_list a {
    width: 100%;
    margin-bottom: 15px;
  }
}

.rss_list a img {
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 480px) {
  .rss_list a img {
    width: 100%;
  }
}

/**
 * contact
***************************/
.contact.section {
  width: 90%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.contact .title span {
  font-size: 17px;
}

.contact form#mailformpro {
  padding: 0;
}

.contact form#mailformpro .mfp {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-bottom: 1px solid #efefef;
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  .contact form#mailformpro .mfp {
    -ms-flex-direction: column;
        flex-direction: column;
    padding-top: 40px;
  }
}

.contact form#mailformpro .mfp dt {
  float: none;
  font-size: 16px;
  text-align: left;
  border-top: none;
  -ms-flex-preferred-size: 240px;
      flex-basis: 240px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .contact form#mailformpro .mfp dt {
    width: 100%;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    margin-bottom: 15px;
  }
}

.contact form#mailformpro .mfp dt .must {
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  float: none;
  width: 48px;
  height: 25px;
  margin: 0 0 6px 0;
  background: #868484;
  border: solid 2px #868484;
  text-shadow: none;
  box-shadow: none;
}

@media screen and (max-width: 768px) {
  .contact form#mailformpro .mfp dt .must {
    display: inline-block;
    margin: 0 5px 0 0;
  }
}

.contact form#mailformpro .mfp dd {
  font-size: 16px;
  line-height: 1.3;
  padding: 0;
  -ms-flex-positive: 2;
      flex-grow: 2;
  border-top: none;
}

.contact form#mailformpro .mfp_rows {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}

.contact form#mailformpro .mfp_rows > * {
  margin: 0 50px 20px 0;
}

.contact form#mailformpro .mfp_rows > *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .contact form#mailformpro .mfp_rows > * {
    margin: 0 20px 20px;
  }
}

.contact form#mailformpro .mfp_rows-head {
  -ms-flex-preferred-size: 100px;
      flex-basis: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
}

.contact form#mailformpro .mfp_rows-body {
  -ms-flex-positive: 3;
      flex-grow: 3;
  margin: 0;
}

.contact form#mailformpro .mfp_rows-child {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .contact form#mailformpro .mfp_rows-child {
    width: 48%;
    margin: 0 1%;
  }
}

.contact form#mailformpro .mfp_rows select {
  margin-bottom: 8px;
}

.contact form#mailformpro .mfp-caution {
  font-size: 80%;
  margin-top: 10px;
}

.contact form#mailformpro .mfp_buttons {
  padding: 10% 0;
}

.contact form#mailformpro .mfp_buttons button {
  font-size: 1.4rem;
  padding: 2px 8px;
  text-shadow: -1px -1px 1px #ffffff, 1px 1px 1px #dadada;
  background: linear-gradient(to bottom, #ffffff, #dadada);
  border: 1px solid #dadada;
  border-radius: 5px;
}

.contact form#mailformpro label.mfp_not_checked {
  padding: 0;
  border: none;
}

.contact form#mailformpro label.mfp_checked {
  padding: 0;
  border: none;
  background-color: transparent;
  box-shadow: none;
}

.contact .mfp_colored {
  background-color: transparent;
}

.contact .mfp_element_text, .contact .mfp_element_number, .contact .mfp_element_select-one, .contact .mfp_element_email, .contact .mfp_element_tel, .contact .mfp_element_textarea, .contact .mfp_element_date, .contact .mfp_element_password {
  box-shadow: none;
  margin: 0;
}

.contact .mfp_element_all {
  max-width: unset;
}

.contact div#mfp_thanks strong {
  color: #C00;
  font-size: 1rem;
  display: inline-block;
}

label {
  position: relative;
}

label.label-select {
  border-radius: 0px !important;
  margin: 0 !important;
}

label.label-select::before {
  position: absolute;
  content: "";
  top: 28%;
  right: 10px;
  width: 0px;
  height: 0px;
  border: 5px solid transparent;
  border-top: 8px solid #868484;
  z-index: -1;
}

label.label-select select {
  cursor: pointer;
  background: transparent;
  font-size: 1em;
  padding: 4px 60px 4px 4px;
  color: #868484;
  border: 1px solid #b8b8b8;
  border-radius: 0px;
}

select {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media screen and (max-width: 768px) {
  select {
    width: 100%;
  }
}

select::-ms-expand {
  display: none;
}

textarea {
  font-size: 1em;
  width: 100%;
  border: 1px solid #b8b8b8;
}

@media screen and (max-width: 768px) {
  textarea {
    width: 100% !important;
  }
}

input {
  font-size: 1em;
  border: 1px solid #b8b8b8;
}

@media screen and (max-width: 768px) {
  input {
    width: 100% !important;
  }
}

input:checked {
  border: 1px solid #868484;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="email"], input[type="email"] {
  padding: 4px;
}

input[type="checkbox"] {
  max-width: 13px !important;
}

input[type="radio"] {
  max-width: 13px !important;
}

@media screen and (max-width: 768px) {
  input {
    width: 100%;
  }
}

.notFound h2.title {
  text-align: center;
}

.notFound-text {
  font-size: 16px;
  text-align: center;
}

.notFound-text a {
  text-decoration: underline;
}
