/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 }
/* blockquote, body, code, dd, div, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, input, legend, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
} */
body {
  font-family: futura-pt, 'Yu Gothic Medium', '游ゴシック Medium', YuGotic, '游ゴシック体', sans-serif;
}
body, header {
  background: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
}


/* 共通 */
.opacity {
  transition: opacity 0.6s ease;
}
.opacity:hover {
  opacity: 0.6;
}
.underline:hover {
  text-decoration: underline;
}
.hoverBlue:hover {
  background-color: #EEFFFF	;
  color: #005FFF;
}
p {
  line-height: 1.8;
}
.all-container {
  padding-top: 65px;
  position: relative;
}
.main-background {
  /* background-color: #EEFFFF; */
  /* background:
   linear-gradient(135deg, rgba(0,176,255,0.1) 25%, transparent 25%) -40px 0/ 80px 80px,
   linear-gradient(225deg, rgba(0,105,255,0.1) 25%, transparent 25%) -40px 0/ 80px 80px,
   linear-gradient(315deg, rgba(0,176,255,0.1) 25%, transparent 25%) 0px 0/ 80px 80px,
   linear-gradient(45deg, rgba(0,105,255,0.1) 25%, #fafcfc 25%) 0px 0/ 80px 80px; */
}


/* headerは別ファイル */


/* トップ背景画像。work,resultsトップ */
.main-bgimage {
  /* background-imageは各cssに記載 */
  height: 500px;
  position: relative;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .main-bgimage {
    height: 280px;
  }
}
.rcrumbs {
  padding: 24px 20px;
  font-size: 1.1rem;
}
.main-bgimage .rcrumbs a {
  color: #fff;
}
.main-bgimage .rcrumbs a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .rcrumbs {
    height: 35px;
  }
  .rcrumbs ul {
    display: none;
  }
}
.page-title {
  position: relative;
  margin: 0 auto 80px;
  padding-bottom: 30px;
  max-width: 1120px;
  text-align: center;
  letter-spacing: 8px;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.3;
}
.page-title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 1px;
  background: #0d1810;
  content: "";
  transform: translateX(-50%);
}
.page-title-bgimage {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  margin: 0;
  width: 100%;
  color: #fff;
  transform: translate(-50%, -50%);
}
.page-title-bgimage::after {
  background: #fff;
}
.page-title-s {
  position: relative;
  margin: 0 auto 80px;
  padding-bottom: 30px;
  max-width: 1120px;
  text-align: center;
  letter-spacing: 8px;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.3;
}
.page-title-s::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 1px;
  background: #0d1810;
  content: "";
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .page-title, .page-title-s {
    margin: 0 auto 40px;
    font-size: 2rem;
  }
}


/* container関連。work,resultsコンテンツ */
.container-inner {
  margin: 0 auto;
  max-width: 1120px;
}
.container-description {
  margin-bottom: 80px;
  text-align: center;
}
.contents-list {
  display: flex;
  padding: 0 20px;
  list-style: none;
  flex-wrap: wrap;
}
.contents-list li {
  position: relative;
  box-sizing: border-box;
  width: calc(100% / 3 - 33.333333333333336px);
  /* height: 100%; */
  background: #fff;
}
.contents-list li:not(:nth-child(3n)) {
  margin-right: 50px;
}
.contents-list li:not(:nth-child(-n+3)) {
  margin-top: 50px;
}
.contents-list .wrap {
  position: relative;
  display: block;
  padding: 10px 10px 25px;
  background-color: #EEFFFF;
}
.contents-thumbnail {
  margin-bottom: 20px;
}
.contents-list .title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.3;
}
.contents-list .desc {
  padding: 0 10px;
}
.hoverBlue:hover {
  background-color: #EEFFFF	;
}
@media screen and (max-width: 767px) {
  .container-inner {
    padding: 0 20px;
  }
  .container-description {
    text-align: left;
    margin-bottom: 20px;
  }
  .container-description br {
    display: none;
  }
  .contents-list {
    flex-direction: column;
    padding: 0;
  }
  .contents-list li {
    margin-right: auto;
    margin-left: auto;
    max-width: 335px;
    width: auto;
  }
  .contents-list li:not(:nth-child(3n)) {
    margin-right: auto;
  }
  .contents-list li:not(:nth-child(-n+3)) {
    margin-top: inherit;
  }
  .contents-list li:not(:last-child) {
    margin-bottom: 20px;
  }
  .contents-list .wrap {
    padding: 5px 5px 10px;
  }
  .contents-list .title {
    font-weight: 600;
    font-size: 1rem;
  }
  .contents-list .desc {
    font-size: 0.8rem;
  }
}


/* table関連（about,contact,privacy） */
.table-contents {
  margin: 0 auto;
  max-width: 800px;
}
.midashi {
  position: relative;
  margin-bottom: 70px;
  padding-left: 60px;
  letter-spacing: 7px;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.2;
}
.midashi::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 50px;
  height: 1px;
  background: blue;
  content: "";
}
.common-table {
  margin-bottom: 150px;
}
.table-default {
  width: 100%;
  border-collapse: collapse;
}
.table-default th, .table-default td {
  padding: 25px 12px;
  vertical-align: top;
  text-align: left;
}
.table-default th {
  border-top: 1px solid blue;
  border-bottom: 1px solid blue;
  font-weight: 600;
}
.common-table th {
  box-sizing: border-box;
  width: 200px;
}
.table-default td {
  position: relative;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
@media screen and (max-width: 767px) {
  .midashi {
    font-size: 1.2rem;
  }
  .table-default, .table-default tr {
    display: block;
  }
  .table-default tbody {
    display: block;
    border-bottom: 1px solid blue;
  }
  .table-default tbody th {
    padding-bottom: 5px;
    border-bottom: none;
    font-size: 0.8rem;    
    /* font-weight: 700; */
  }
  .table-default tbody td {
    padding-top: 0;
    border: none;
    font-size: 0.8rem;    
  }
  .common-table th {
    width: auto;
  }
  .table-default th, .table-default td {
    display: block;
  }
}


/* form関連 */
button, input, optgroup, select, textarea {
  margin: 0;
  color: inherit;
  color: #0d1810;
  font: inherit;
}
input {
  box-sizing: border-box;
  vertical-align: baseline;
}
input[type=text],
input[type=tel],
input[type=number],
input[type=email],
input[type=date] {
  padding: 5px 10px;
  min-height: 30px;
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}
input:placeholder-shown {
  color: #999;
}
label {
  cursor: pointer;
  margin-bottom: 0;
}
textarea {
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px;
  min-height: 150px;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 4px;
}
textarea:placeholder-shown {
  color: #999;
}
button {
  overflow: hidden;
}
/* button, select {
  text-transform: none;
} */
.button input[type=reset],
input[type=submit] {
  cursor: pointer;
  /* -webkit-appearance: button; */
}
.form-control {
  /* display: inline-block; */
  padding: 9px 6px !important;
  border: 1px solid #e9e9e9;
  border-radius: 0;
  vertical-align: middle;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-control:focus {
  border-color: #ccc;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(204, 204, 204, 0.6);;
}
.form-control:hover, .form-control:focus {
  background-color: #fafafa;
}
textarea.form-control {
  height: auto;
}
.input-group {
  display: flex;
  list-style: none;
}
.input-group input {
  margin-right: 10px;
}
.input-group.row {
  flex-wrap: wrap;
}
.input-group.row li:not(:last-child) {
  margin-right: 25px;
}
.input-group.col {
  flex-direction: column;
}
.input-group.col li:not(:last-child) {
  margin-bottom: 15px;
}
.btn-form {
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 30px 0;
  min-height: 30px;
  max-width: 320px;
  width: 100%;
  border: none;
  color: #fff;
  letter-spacing: 4px;
}
.btn-form.confirm {
  background: #005FFF;
}
/* error関連 */
label.error {
  background: red;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=tel],
  input[type=number],
  input[type=email],
  input[type=date] {
    /* font-size: 1.6rem; */
    -webkit-appearance: none;
    appearance: none;
  }
}


/* ＜各results限定＞
page-title-sの上にparent-page
contents-list => contents-list-results
*/
.parent-page {
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 4px;
  font-size: 1.1rem;
}
.contents-list-results {
  display: flex;
  justify-content: center;
  padding: 0 20px;
  list-style: none;
  flex-wrap: wrap;
}
.contents-list-results li {
  position: relative;
  box-sizing: border-box;
  width: calc(100% / 2 - 30px);
  /* height: 100%; */
  background: #fff;
}
.contents-list-results li:not(:nth-child(2n)) {
  margin-right: 50px;
}
.contents-list-results li:not(:nth-child(-n+2)) {
  margin-top: 50px;
}
.contents-list-results .wrap {
  position: relative;
  display: block;
  padding: 10px 10px 25px;
  background-color: #EEFFFF;
}
.results-contents-table {
  width: 100%;
  border-collapse: collapse;
}
.results-contents-table th {
  box-sizing: border-box;
  font-weight: 600;
}
.results-contents-table th, .results-contents-table td {
  padding: 5px;
  vertical-align: top;
  text-align: left;
  /* border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8; */
}
@media screen and (max-width: 992px) {
  .contents-list-results {
    flex-direction: column;
  }
  .contents-list-results li {
    margin-right: auto;
    margin-left: auto;
    max-width: 540px;
    width: auto;
  }
  .contents-list-results li:not(:nth-child(2n)) {
    margin-right: auto;
  }
  .contents-list-results li:not(:nth-child(-n+2)) {
    margin-top: inherit;
  }
  .contents-list-results li:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contents-list-results {
    padding: 0;
    font-size: 0.8rem;
  }
  .results-contents-table th {
    white-space: nowrap;
  }
}


/* footerContact */
.footer-contact {
  margin-top: 80px;
  padding: 60px 0 ;
  /* border-top: 1px solid #e8e8e8; */
  /* border-bottom: 1px solid #e8e8e8; */
  /* background: #EEFFFF; */
}
.footer-contact .title {
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: 5px;
  font-size: 1.2rem;
  line-height: 1.3;
}
.footer-contact .contact-info {
  display: flex;
  justify-content: center;
}
.footer-contact .tel {
  margin-right: 40px;
  padding-right: 30px;
  border-right: 1px solid #e8e8e8;
}
.footer-contact .number {
  position: relative;
  /* padding-left: 45px; */
  color: #005FFF;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
}
.footer-contact .time {
  text-align: right;
  font-size: 1rem;
}
.footer-contact .contact-link {
  display:flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 25px;
  max-width: 430px;
  width: 100%;
  background: #005FFF;
  color: #fff;
  /* text-align: center; */
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .work-description {
    text-align: left;
  }
  .work-description br {
    display: none;
  }
  .work-list {
    flex-direction: column;
  }
  .work-list li {
    margin-right: auto;
    margin-left: auto;
    max-width: 335px;
    width: auto;
  }
  .work-list li:not(:nth-child(3n)) {
    margin-right: auto;
  }
  .work-list li:not(:nth-child(-n+3)) {
    margin-top: inherit;
  }
  .work-list li:not(:last-child) {
    margin-bottom: 20px;
  }
  .footer-contact {
    padding: 30px 10px 40px;
  }
  .footer-contact .title {
    font-size: 1rem;
  }
  .footer-contact .contact-info {
    flex-direction: column;
  }
  .footer-contact .tel {
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
  }
  .footer-contact .number {
    font-size: 3rem;
  }
  .footer-contact .time {
    text-align: center;
    font-size: 0.8rem;
  }
  .footer-contact .contact-link {
    margin: 0 auto;
    font-size: 1rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 500px) {
  .footer-contact .number {
    font-size: 1.5rem;
   }
}
@media screen and (min-width: 577px) {
  .footer-contact br {
    display: none;
  }
}


/* backToTop */
#backToTop a {
  font-size:48px;
  color: #00FFFF;
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 110;
 }


/* footer */
footer {
  background-color: dimgray;
  color: #fff;
 }
 
 footer .container {
   margin: 0 auto;
   padding: 33px 0;
   max-width: 1120px;
 }
 
 footer .header {
   display: flex;
   margin-bottom: 40px;
   font-size: 1rem;
   align-items: center;
 }
 
 footer .header .logo p {
   text-align:justify;
   text-align-last:justify;
   font-weight: bold;
 }
 
 footer .header img {
   width: 120px;
 }
 
 footer .address {
   margin-left: 30px;
 }
 
 
 footer .address-top {
   margin-left: auto;
 }
 
 .footer-contents {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
 }
 
 .footer-menu {
   padding-top: 20px;
   min-width: 200px;
   border-top: 1px solid hsla(0,0%,100%,.15);
 }
 
 .footer-menu-lists {
   opacity: 0.6;
   list-style: none;
 }
 
 .footer-menu-lists li::before {
   content: "┗";
 }
 
 @media screen and (max-width: 1000px) {
   footer .header {
     flex-direction: column;
     text-align: center;
   }
   footer .address {
     margin: 30px 0;
   }
   footer .address-top {
     margin-left: inherit;
   }
   .footer-contents {
     flex-direction: column;
   }
   .footer-menu {
     text-align: center;
     padding-top: 10px 0;
     border-top: none;
   }
   /* .footer-menu-other dt {
     padding-top: 10px;
   } */
   .footer-menu:nth-child(3) dt:nth-child(n+2) {
     padding-top: 20px;
   }
   .footer-contents li {
     display: none;
   }
 }
 .copyright {
   display: block;
   padding: 24px 10px;
   background: #000;
   text-align: center;
   font-size: 0.9rem;
 }


