@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap");

* {
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  line-height: 1.5;
  word-break: break-all;
  color: #2f2f2f;
  word-break: normal;
}
header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow: hidden;
}
img {
  max-width: 100%;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
  object-fit: contain;
}
a {
  text-decoration: none;
  font-size: inherit;
  color: inherit;
  opacity: 1;
  transition: opacity .2s;
  color: #517aa8;
}
a:hover {
  opacity: .5;
}
button {
  margin: 0;
  padding: 0;
  outline: none;
  border-style: none;
  cursor: pointer;
}
small {
  font-size: smaller;
}
input,
textarea {
  border-style: none;
  outline: none;
}
@media all and (max-width: 400px) {
  body {
    font-size: 14px;
  }
}
/*========================
余白
========================*/
.pb10 {
  padding-bottom: 10px;
}
.pb30 {
  padding-bottom: 30px;
}
.pt40 {
  padding-top: 40px;
}
.pt60 {
  padding-top: 60px;
}
.pb60 {
  padding-bottom: 60px;
}
/*========================
フォント
========================*/
.font-smaller {
  font-size: smaller;
}
.font20 {
  font-size: 1.25em;
}
.font32 {
  font-size: 2em;
}
.font40 {
  font-size: 2.5em;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-ul {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.muted {
  font-size: smaller;
  opacity: .7;
}
.header--logo {
  margin: 10px 20px;
  height: calc(100% - 20px);
}
.header--menu {
  padding-right: 20px;
}
/*========================
トップページ
========================*/
.inner {
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 100px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.inner.header {
  padding: 0;
}
.border-t {
  border-top: solid 1px #eeeeee;
}
.articles {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 50px;
  grid-auto-flow: row;
}
.img--container {
  height: 120px;
  text-align: center;
  margin-bottom: 10px;
}
.img--container img {
  width: 100%;
  height: 100%;
}
.contact {
  text-align: center;
}
.contact a {
  display: inline-block;
  padding: 20px 60px;
  color: #fff;
  font-size: 1.5em;
  background-color: #e06666;
  border-radius: 40px;
}
@media all and (max-width: 400px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .articles {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact a {
    padding: 20px 30px;
  }
}
/*========================
詳細ページ
========================*/
.innerGrid {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 100%;
  grid-template-rows: 80px 1fr;
}
.headerArea {
  grid-column: 1;
  grid-row: 1 / 2;
}
.indexArea {
  grid-column: 1;
  grid-row: 2 / 3;
}
.contentGrid {
  display: grid;
  grid-column: 1;
  grid-row: 2 / 3;
  grid-template-columns: 150px calc(100% - 450px) 300px;
  grid-template-rows: 1fr calc(100% - 1fr);
  overflow-y: auto;
}
.titleArea {
  grid-column: 1 / 4;
  grid-row: 1 / 2;
  padding: 10px;
}
.listArea {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  overflow-y: auto;
}
.imgArea {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  padding: 0 10px 10px;
  overflow-y: hidden;
}
.captionArea {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  padding: 0 10px;
  overflow-y: auto;
}
.title--container {
  width: 100%;
  background-color: #eeeeee;
  padding: 10px 0 10px 20px;
}
/*========================
詳細ページスライダー
========================*/
.slide {
  width: 100%;
  height: 100%;
  padding: 10px;
  text-align: center;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.slide.slick-current {
  overflow-y: auto;
}
.thumbnail--list {
  display: flex;
  flex-direction: column;
}
.thumbnail--list li {
  width: calc(100% - 20px);
  height: auto;
  margin: 0 10px 10px;
}
.thumbnail--list li.slick-active {
  border: solid 1px #2f2f2f;
}
.thumbnail--list li button {
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.thumbnail--list li img {
  width: 100%;
  height: 100%;
}
@media all and (max-width: 750px) {
  .slide {
    height: calc(100vw - 20px);
    padding: 0;
  }
  .slide img {
    height: auto;
  }
}
/*========================
詳細ページ本文
========================*/
.product--list dt,
.product--list dd {
  display: inline;
}
.article--header {
  font-size: 1.25em;
}
.article--subLead {
  font-size: 1.25em;
}
.product--expression {
  text-indent: 1em;
  white-space: pre-line;
}
.keyword--list {
  margin-top: 30px;
}
.keyword--list li {
  position: relative;
}
.btn--back a {
  position: relative;
  font-size: 1.25em;
}
.btn--back a::before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 6px;
  height: 6px;
  top: 50%;
  left: 0;
  border-top: solid 2px #2f2f2f;
  border-left: solid 2px #2f2f2f;
  transform: translateY(calc(-50% + 1px)) rotate(-45deg);
}
/*========================
お問い合わせフォーム
========================*/
.inner.form {
  max-width: 600px;
}
.form--title {
  font-size: 32px;
  padding-bottom: 50px;
}
.notice {
  margin: 0 auto;
  padding-bottom: 8px;
  margin-bottom: 50px;
  font-size: smaller;
  width: 90%;
}
.notice.border {
  border-bottom: solid 1px #2f2f2f;
  width: 100%;
}
.notice a {
  line-height: 2;
}
.indexArea.form {
  overflow-y: auto;
}
.wpcf7.no-js {
  padding: 30px 30px 100px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.wpcf7-form.init label {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.wpcf7-form.init input,
.wpcf7-form.init textarea {
  border: 1px solid #5f5f5f
}
.wpcf7-form.init input[type=checkbox] {
  position: relative;
  margin-right: 8px;
  width: 1.5em;
  height: 1.5em;
  cursor: pointer;
}
.wpcf7-form.init input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 12px;
  border-bottom: solid 2px #5f5f5f;
  border-right: solid 2px #5f5f5f;
  transform: translate(-50%, calc(-50% - 2px)) rotate(45deg);
}
.wpcf7-form.init span.wpcf7-form-control.wpcf7-checkbox {
  display: block;
  max-width: 450px;
  width: 100%;
  margin: 24px auto 0;
}
.wpcf7-form.init span.wpcf7-form-control.wpcf7-checkbox label {
  justify-content: start;
}
.wpcf7-list-item.last.has-free-text input[type=text] {
  display: block;
  width: 80%;
  height: 5em;
  margin: 12px auto 0;
}
.wpcf7-form-control.wpcf7-textarea {
  display: block;
  margin: 12px auto 24px;
  height: 10em;
}
.wpcf7-form.init input[type=submit] {
  display: block;
  margin: 48px auto 0;
  text-align: center;
  width: 150px;
  height: 40px;
  background-color: #000000;
  color: #fff;
  transition: opacity .2s;
}
.wpcf7-form.init input[type=submit]:hover {
  opacity: .4;
}