@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("/css/fonts.css?ver=21111701");
/**
 * wfr-company.css
 * @version    210919
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0 auto;
  padding: 0;
  background: #fff;
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  border: 0;
}
video {
  max-width: 100%;
}
a {
  text-decoration: none;
}
#detach-button-host {
  display: none;
}
/*----------------------------------------------------------------------------------
  Flex layout
-------------------------------------------------------------------------------------*/
.fit {
  position: relative;
}
.fit > * {
  position: absolute;
}
.fit video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.fit img.region {
  width: 100%;
  position: relative;
}
.fit img.region.hide {
  visibility: hidden;
}
.center {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}
/*----------------------------------------------------------------------------------
  Effect layout
-------------------------------------------------------------------------------------*/
.effect {
  position: relative;
  top: 30px;
  height: 100%;
  opacity: 0;
  transition: 1.3s ease 0s;
}
.effect.moved {
  top: 0;
  opacity: 1;
}
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 500ms;
}
.fadein.moved {
  opacity: 1;
  transform: translate(0, 0);
}
/*----------------------------------------------------------------------------------
  Add line
-------------------------------------------------------------------------------------*/
.line-end {
  display: flex;
  align-items: center;
  word-break: keep-all
}
.line-end span {
  display: block;
  margin-left: 20px;
  width: 100%;
  height: 1px;
  background: #fff;
}
.line-end-vertical {
  display: flex;
  align-items: center;
  word-break: keep-all;
}
.line-end-vertical span {
  display: block;
  margin: 5px auto 10px;
  width: 1px;
  height: calc(100%);
  background: #0075be;
}
/*--------------------------------------------------------------------------------------
  ヘッダー
---------------------------------------------------------------------------------------*/
header {
  width: 100%;
  height: 102px;
  background-color: rgba(255, 255, 255, 0.7);
  position: fixed;
  z-index: 100;
}
header .wrap {
  display: flex;
  align-items: center;
  width: 94%;
  height: 102px;
  margin: 0 auto;
  max-width: 1120px;
}
@media screen and (max-width: 767px) {
  header .wrap {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
header div.logo {
  width: 100%;
}
header div.logo > a {
  display: inline-block;
}
header div.logo div {
  display: inline-block;
}
header div.logo div img {
  display: inline-block;
  height: 34px;
  vertical-align: middle;
}
header div.logo div span {
  display: inline-block;
  margin-left: 10px;
  line-height: 1;
  vertical-align: middle;
}
header ul {
  display: flex;
  justify-content: flex-end;
  min-width: 102px;
  max-width: 102px;
  list-style: none;
}
header ul li {
  margin-left: 10px;
}
/*--------------------------------------------------------------------------------------
  フッター
---------------------------------------------------------------------------------------*/
footer div.sns {
  padding: 15px 0;
  background: #e6e6e6;
}
footer ul {
  display: flex;
  justify-content: center;
  list-style: none;
}
footer ul li {
  margin-left: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 300;
}
footer ul li:first-child {
  margin: 0;
}
footer div.wrap {
  display: flex;
  flex-direction: column;
  padding: 70px 0;
  width: 100%;
  background-color: #000;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
footer div.wrap div {
  display: inline-block;
  margin: 0 auto 25px;
  width: auto;
}
footer div.wrap div img {
  display: inline-block;
  max-height: 70px;
  vertical-align: middle;
}
footer div.wrap div span {
  display: inline;
  margin-left: 20px;
  line-height: 1;
  vertical-align: middle;
}
footer div.wrap p:first-of-type {
  margin-bottom: 15px;
  font-family: 'Vollkorn', serif;
  font-size: 36px;
  line-height: 72px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}
footer div.wrap p:last-of-type {
  font-size: 15px;
  font-weight: 300;
  text-align: center;
}
footer small {
  display: block;
  margin-top: 30px;
  padding: 30px 0 0 0;
  border-top: 1px solid #585656;
  font-size: 15px;
  font-weight: 300;
  text-align: center;
}
footer a.pagetop {
  display: block;
  padding: 15px 20px;
  background: rgb(0 0 0 / 80%);
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  footer div.wrap {
    padding: 30px 0;
  }
  footer div.wrap div span {
    font-size: 22px !important;
  }
  footer div.wrap p:first-of-type {
    margin-bottom: 10px;
    line-height: 42px;
    font-size: 20px;
  }
  footer div.wrap p:last-of-type {
    font-size: 12px;
    line-height: 150%;
  }
}
/*--------------------------------------------------------------------------------------
  セクション
---------------------------------------------------------------------------------------*/
section.wrap {
  padding-top: 102px;
}
section div.layer {
  background: no-repeat center center / cover fixed;
  height: 600px;
  margin-bottom: 175px;
  margin-top: 175px;
}
@media screen and (max-width: 767px) {
  section div.layer {
    height: 400px;
    margin-bottom: 50px;
    margin-top: 50px;
    background-attachment: scroll;
  }
}
/*--------------------------------------------------------------------------------------
  タイトル（基本レイアウト）
---------------------------------------------------------------------------------------*/
section.title.ext {
  margin-bottom: 120px;
  width: 100%;
  height: 500px;
  background: linear-gradient(90deg, #a3acb7 0%, #a3acb7 43%, #fff 43%, #fff 100%);
  position: relative;
}
section.title.ext div.image {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: absolute;
  width: 69%;
  height: 500px;
  right: 0;
  top: 30px;
  z-index: 1;
}
section.title.ext div.image img {
  display: none;
}
section.title.ext div.wrap {
  margin: 0 auto;
  width: 94%;
  max-width: 1120px;
  height: 500px;
}
section.title.ext div.wrap h2 {
  padding-top: 10%;
  color: #fff;
}
section.title.ext div.wrap h2 label {
  display: block;
}
section.title.ext div.wrap h2 label:first-child {
  font-size: 50px;
  line-height: 150%;
  font-weight: 700;
}
section.title.ext div.wrap h2 label:last-child {
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  section.title.ext {
    margin-bottom: 30px;
    height: auto;
    background: #a3acb7;
  }
  section.title.ext div.image {
    width: 100%;
    height: auto;
    background: none!important;
    position: relative;
    top: initial;
    right: initial;
  }
  section.title.ext div.image img {
    display: block;
    max-width: 100%;
  }
  section.title.ext div.wrap {
    width: 100%;
    height: auto;
  }
  section.title.ext div.wrap h2 {
    padding: 10px;
    text-align: center;
  }
  section.title.ext div.wrap h2 label:first-child {
    font-size: 20px;
    line-height: 120%;
  }
}
/*--------------------------------------------------------------------------------------
  タイトル（幅100%画像レイアウト）
---------------------------------------------------------------------------------------*/
section.title.ace {
  margin-bottom: 120px;
  width: 100%;
}
section.title.ace div.image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  min-height: 400px;
}
section.title.ace div.image p {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: rgba(64, 64, 64, 0.2);
  width: 100%;
  min-height: 400px;
  font-size: 30px;
  color: #fff;
  text-align: center;
}
section.title.ace div.wrap {
  padding: 30px 10px 0;
  width: 100%;
  height: auto;
}
section.title.ace div.wrap h2 {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
}
section.title.ace div.wrap h2 label:first-child {
  font-size: 28px;
  line-height: 120%;
  font-weight: 700;
  letter-spacing: 5px;
  font-family: serif;
}
section.title.ace div.wrap h2 label:last-child {
  color: #0075be;
  letter-spacing: 2px;
  font-weight: 400;
}
/*--------------------------------------------------------------------------------------
  挨拶
---------------------------------------------------------------------------------------*/
section.greet {
  margin-bottom: 120px;
}
section.greet > img {
  display: block;
  margin: 0 auto;
  padding: 50px 0;
}
section.greet > p {
  margin-bottom: 30px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  line-height: 150%;
  font-weight: 700;
  color: rgba(51,85,119);
  text-align: center;
}
section.greet div.wrap {
  display: flex;
  margin: 0 auto;
  width: 94%;
  max-width: 1120px;
}
section.greet div.wrap p {
  margin-right: 5px;
  width: calc(50% - 5px);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 200%;
}
section.greet div.image {
  display: flex;
  margin-left: 5px;
  width: calc(50% - 5px);
  height: 600px;
  background: none!important;
}
section.greet div.image > img {
  object-fit: scale-down;
}
@media screen and (max-width: 1140px) {
  section.greet > p {
    font-size: 20px!important;
  }
  section.greet div.wrap {
    flex-direction: column;
  }
  section.greet div.wrap p {
    margin: 0;
    width: 100%;
  }
  section.greet div.image {
    margin: 0;
    width: 100%;
    height: auto;
    background: none!important;
  }
  section.greet div.image img {
    display: block;
    margin-top: 20px;
    max-width: 100%;
  }
}
/*--------------------------------------------------------------------------------------
  理念（背景ループ）
---------------------------------------------------------------------------------------*/
section.loop.view {
  margin-bottom: 120px;
  padding: 80px 0;
  background-size: cover;
  background-repeat: repeat-x;
  animation: bgloop 100s linear infinite;
}
@keyframes bgloop {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -1956px 0;
    }
}
section.loop.view div.wrap {
  margin: 0 auto;
  width: 94%;
  max-width: 1120px;
  text-align: center;
}
section.loop.view h2 {
  margin-bottom: 30px;
  font-size: 34px;
  line-height: 150%;
  font-weight: 400;
  color: #fff;
}
section.loop.view div.wrap div {
  margin: 0 auto 30px;
  padding: 20px;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.7);
}
section.loop.view div.wrap p:nth-child(1) {
  font-size: 23px;
  line-height: 180%;
  font-weight: 400;
}
section.loop.view div.wrap p:nth-child(2) {
  margin-bottom: 10px;
  font-family: 'Vollkorn', serif;
  font-size: 20px;
  line-height: 150%;
  font-weight: 400;
}
section.loop.view div.wrap p:nth-child(3) {
  font-size: 14px;
  line-height: 180%;
  font-weight: 300;
}
/*--------------------------------------------------------------------------------------
  理念（背景2枚重ね）
---------------------------------------------------------------------------------------*/
section.loop.bash {
  margin-bottom: 120px;
  background: url(/image/para_banner.png) no-repeat center top / cover scroll,
  url(/image/para_bg.jpg) no-repeat center center / cover fixed;
  height: 58vw;
  min-height: 706px;
  position: relative;
}
section.loop.bash p {
  line-height: 120%;
}
section.loop.bash p:first-of-type {
  width: 40%;
  font-size: 24px;
  font-weight: 700;
  position: absolute;
  top: 50px;
  left: 50px;
}
section.loop.bash p:last-of-type {
  width: 40%;
  font-size: 30px;
  font-weight: 300;
  position: absolute;
  bottom: 30px;
  right: 50px;
}
@media screen and (max-width: 767px) {
  section.loop.bash {
    margin: 0 auto 50px;
    background-attachment: scroll;
  }
  section.loop.bash p:first-of-type {
    width: 100%;
    padding: 10px;
    left: 0;
  }
  section.loop.bash p:last-of-type {
    width: 100%;
    padding: 10px;
    right: 0;
  }
}
/*--------------------------------------------------------------------------------------
  フリー
---------------------------------------------------------------------------------------*/
section.free {
  margin: 0 auto 180px;
  width: 94%;
  max-width: 1120px;
  position: relative;
}
section.free div.image {
  width: 640px;
  position: absolute;
  top: 0;
  left: 0;
}
section.free div.wrap {
  margin: 0 0 0 18%;
  width: 82%;
  min-height: 319px;
  top: 120px;
  background-color: rgb(255 255 255 / 70%);
  text-align: center;
  padding: 30px;
  position: relative;
}
section.free div.wrap img {
  margin-bottom: 30px;
}
section.free h2 {
  padding: 30px 0;
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  position: relative;
}
section.free h2::before {
  display: block;
  width: 100px;
  height: 100px;
  content: '';
  background: url(/image/region_start.svg);
  background-size: 100px 100px;
  position: absolute;
  top: 0;
  left: 0;
}
section.free h2::after {
  display: block;
  width: 100px;
  height: 100px;
  content: '';
  background: url(/image/region_end.svg);
  background-size: 100px 100px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  section.free {
    margin: 0 auto 30px;
  }
  section.free div.image {
    margin: 0 auto 20px;
    width: 100%;
    max-width: 640px;
    position: static;
  }
  section.free div.wrap {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: inherit;
    top: 0;
    background: none;
  }
  section.free h2 {
    padding: 20px;
    font-size: 15px;
  }
  section.free h2::before {
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
  }
  section.free h2::after {
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
  }
}
/*--------------------------------------------------------------------------------------
  沿革
---------------------------------------------------------------------------------------*/
section.history {
  margin: 0 auto 120px;
  width: 94%;
  max-width: 900px;
  top: 100px;
}
section.history h2 {
  margin-bottom: 40px;
  padding-bottom: 5px;
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  text-align: center;
  background: url(/image/border.svg) no-repeat center bottom;
  background-size: 70px 4px;
}
section.history dl {
  display: flex;
}
section.history dl dt {
  padding: 15px 10px;
  min-width: 240px;
  max-width: 240px;
  border-bottom: 1px solid #000;
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
  text-align: center;
}
section.history dl dd {
  padding: 15px 0;
  width: 100%;
  border-bottom: 1px solid #000;
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  section.history {
    margin-bottom: 30px;
  }
  section.history h2 {
    margin-bottom: 20px;
  }
  section.history dl {
    flex-direction: column;
  }
  section.history dl dt {
    padding: 5px 10px;
    width: 100%;
    min-width: inherit;
    max-width: inherit;
    border: 1px dotted #000;
    text-align: left;
  }
  section.history dl dd {
    padding: 10px 0 20px;
    border: none;
  }
}
/*--------------------------------------------------------------------------------------
  会社概要
---------------------------------------------------------------------------------------*/
section.detail {
  margin: 0 auto 120px;
  width: 94%;
  max-width: 900px;
  top: 100px;
}
section.detail h2 {
  margin-bottom: 40px;
  padding-bottom: 5px;
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  text-align: center;
  background: url(/image/border.svg) no-repeat center bottom;
  background-size: 70px 4px;
}
section.detail dl {
  display: flex;
}
section.detail dl dt {
  display: flex;
  align-items: center;
  margin-right: 2px;
  padding: 15px 10px;
  min-width: 240px;
  max-width: 240px;
  border-bottom: 1px dotted #000;
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
  text-align: left;
}
section.detail dl dd {
  padding: 15px 0;
  width: 100%;
  border-bottom: 1px dotted #000;
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  section.detail {
    margin-bottom: 30px;
  }
  section.detail h2 {
    margin-bottom: 20px;
  }
  section.detail dl {
    flex-direction: column;
  }
  section.detail dl dt {
    padding: 5px 10px;
    width: 100%;
    min-width: inherit;
    max-width: inherit;
    border: 1px dotted #000;
    text-align: left;
  }
  section.detail dl dd {
    padding: 10px 0 20px;
    border: none;
  }
}
/*--------------------------------------------------------------------------------------
  営業拠点
---------------------------------------------------------------------------------------*/
section.address {
  margin: 0 auto 120px;
  width: 94%;
  max-width: 1120px;
}
section.address h2 {
  margin-bottom: 40px;
  padding-bottom: 5px;
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  text-align: center;
  background: url(/image/border.svg) no-repeat center bottom;
  background-size: 70px 4px;
}
section.address > div {
  display: flex;
}
section.address div.photo {
  display: flex;
  flex-wrap: wrap;
  width: 64%;
}
section.address div.wrap {
  margin-left: 2%;
  width: 34%;
}
section.address div.photo div:nth-child(1) {
  margin-right: 2%;
  width: 48%;
}
section.address div.photo div:nth-child(2) {
  margin-left: 2%;
  width: 48%;
}
section.address div.photo div img {
  width: 100%;
}
section.address div.photo div.map {
  margin: 30px 0;
  width: 100%;
}
section.address iframe {
  width: 100%;
  height: 350px;
}
section.address dl {
  display: flex;
}
section.address dl dt {
  margin-right: 2px;
  padding: 15px 10px 15px 0;
  min-width: 110px;
  max-width: 110px;
  border-bottom: 1px dotted #000;
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
}
section.address dl dd {
  padding: 15px 0;
  width: 100%;
  border-bottom: 1px dotted #000;
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  section.address {
    margin-bottom: 60px;
  }
  section.address h2 {
    margin-bottom: 20px;
  }
  section.address div {
    flex-direction: column;
  }
  section.address div.photo {
    margin: 0;
    width: 100%;
  }
  section.address div.photo > div {
    margin: 10px 0!important;
    width: 100%!important;
  }
  section.address div.photo div.wrap {
    margin: 10px 0!important;
    width: 100%;
  }
  section.address div.wrap {
    margin: 0;
    width: 100%;
  }
  section.address dl {
    flex-direction: column;
  }
  section.address dl dt {
    padding: 5px 10px;
    width: 100%;
    min-width: inherit;
    max-width: inherit;
    border: 1px dotted #000;
  }
  section.address dl dd {
    padding: 10px 0 20px;
    border: none;
  }
  section.address div.map {
    margin: 20px 0;
  }
  section.address div.map iframe {
    height: 250px;
  }
}
/*--------------------------------------------------------------------------------------
  メールフォーム
---------------------------------------------------------------------------------------*/
section.mailform {
  margin: 0 auto 120px;
  width: 94%;
  max-width: 900px;
}
section.mailform h2 {
  margin-bottom: 40px;
  padding-bottom: 5px;
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  text-align: center;
  background: url(/image/border.svg) no-repeat center bottom;
  background-size: 70px 4px;
}
section.mailform > p {
  padding: 0 0 30px 0;
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
}
section.mailform div.wrap {
  display: flex;
  justify-content: space-between;
}
section.mailform div.wrap > div {
  width: 48%;
}
section.mailform dl dt {
  padding: 10px 15px;
  background: #f1f1f1;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
}
section.mailform dl dt span {
  margin-left: 10px;
  color: rgb(51 85 119);
}
section.mailform dl dd {
  padding: 10px 15px;
  border: 1px solid #f1f1f1;
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
}
section.mailform dl dd div:last-child {
  display: none;
}
section.mailform dl dd div:last-child span {
  display: block;
  color: #ff0000;
}
section.mailform form + div > div:last-child {
  display: none;
}
section.mailform textarea {
  padding: 5px;
  width: 100%;
  height: 120px;
  border: 1px solid #ccc;
  font-size: 15px;
  line-height: 120%;
  font-weight: 300;
  resize: vertical;
  outline: none;
}
section.mailform input[type="text"] {
  padding: 0 5px;
  width: 100%;
  height: 30px;
  border: 1px solid #ccc;
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
  outline: none;
}
section.mailform input[type="checkbox"] {
  margin-right: 10px;
  outline: none;
}
section.mailform label {
  display: flex;
  align-items: center;
}
section.mailform button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  width: 100%;
  height: 46px;
  background: rgb(0 117 190);
  border: 1px solid #f1f1f1;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  cursor: pointer;
  opacity: 0.8;
  transition: all 500ms;
}
section.mailform button.back {
  background: #a3acb7;
}
section.mailform button:hover {
  opacity: 1;
}
section.mailform h3 {
  border-bottom: 2px solid rgb(0 117 190);
  font-size: 18px;
  line-height: 50px;
  font-weight: 700;
  text-align: center;
}
section.mailform div p {
  padding: 10px 0;
  font-size: 13px;
  line-height: 2;
  font-weight: 300;
}
section.mailform h4 {
  padding: 10px 0;
  font-size: 17px;
  line-height: 150%;
  font-weight: 400;
}
section.mailform ul {
  margin-bottom: 30px;
}
section.mailform ul li {
  margin: 0 0 0 20px;
  list-style: square outside none;
  font-size: 13px;
  line-height: 2;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  section.mailform {
    margin-bottom: 60px;
  }
  section.mailform div.wrap {
    flex-direction: column-reverse;
  }
  section.mailform div.wrap > div {
    width: 100%;
  }
}
/*--------------------------------------------------------------------------------------
  写真集
---------------------------------------------------------------------------------------*/
section.book {
  margin: 0 auto 120px;
  width: 94%;
  max-width: 1120px;
  min-height: 100px;
}
section.book ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
section.book ul li {
  margin: 0 2px 2px 0;
  width: calc(20% - 2px);
  height: auto;
  max-height: 150px;
}
section.book ul li:nth-child(5n) {
  margin: 0;
  width: 20%;
}
section.book ul li img,
section.book ul li video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  section.book {
    margin: 0 auto 30px;
  }
}
/*--------------------------------------------------------------------------------------
  ブログ
---------------------------------------------------------------------------------------*/
section.blog {
  margin: 0 auto 100px;
  width: 94%;
  max-width: 1120px;
}
section.blog h2 {
  margin-bottom: 40px;
  padding-bottom: 5px;
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  text-align: center;
  background: url(/image/border.svg) no-repeat center bottom;
  background-size: 70px 4px;
}
section.blog ul li {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #cfcfcf;
  list-style: none;
}
section.blog ul li > div:first-child {
  width: 130px;
  margin-right: 20px;
}
section.blog ul li > div:last-child {
  width: calc(100% - 150px);
}
section.blog ul li img,
section.blog ul li video {
  width: 100%;
  max-height: 150px;
  object-fit: scale-down;
}
section.blog ul li h3 a {
  font-size: 17px;
  line-height: 150%;
  font-weight: 300;
  color: inherit;
  text-decoration: none;
}
section.blog ul li p {
  font-size: 14px;
  line-height: 180%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
section.blog ul li p.date {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 150%;
}
/*--------------------------------------------------------------------------------------
  ナビゲーション
---------------------------------------------------------------------------------------*/
section nav {
  margin-bottom: 30px;
  padding: 15px 0;
  border-top: 1px #eeeeee solid;
  border-bottom: 1px #eeeeee solid;
}
section nav ul {
  display: flex;
  margin: 0 auto;
  width: 94%;
  max-width: 1120px;
  list-style: none;
}
section nav ul li {
  display: flex;
  align-items: center;
  line-height: 1;
}
section nav ul li::after {
  display: block;
  margin: 0 10px;
  content: '›';
  font-size: 20px;
  line-height: 20px;
  color: inherit;
}
section nav ul li:last-of-type::after {
  display: none;
}
section nav ul li a {
  display: block;
  font-size: 15px;
  line-height: 15px;
  color: inherit;
  text-decoration: none;
}
/*--------------------------------------------------------------------------------------
  ブログトップ
---------------------------------------------------------------------------------------*/
section.blog_top {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 30px;
  width: 94%;
  max-width: 1120px;
}
section.blog_top article {
  width: 48%;
}
section.blog_top article > a {
  display: block;
  width: 100%;
  height: 320px;
}
section.blog_top article > a img,
section.blog_top article > a video {
  width: 100%;
  max-height: 100%;
  object-fit: scale-down;
}
section.blog_top article p.date {
  margin-top: 10px;
  font-size: 14px;
  line-height: 150%;
}
section.blog_top article h3 a {
  font-size: 17px;
  line-height: 150%;
  font-weight: 300;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  section.blog_top {
    flex-direction: column;
  }
  section.blog_top article {
    margin-bottom: 30px;
    width: 100%!important;
  }
  section.blog_top article > a {
    display: inline;
    background: none!important;
  }
  section.blog_top article > a img,
  section.blog_top article > a video {
    object-fit: cover;
  }
}
/*--------------------------------------------------------------------------------------
  ブログページ
---------------------------------------------------------------------------------------*/
section.blog_detail {
  margin: 0 auto 30px;
  width: 94%;
  max-width: 1120px;
}
section.blog_detail article {
  width: 100%;
}
section.blog_detail article > div {
  width: 100%;
  height: 500px;
  background: none!important;
}
section.blog_detail article > div img,
section.blog_detail article > div video {
  width: 100%;
  max-height: 100%;
  object-fit: scale-down;
}
section.blog_detail article h2 {
  margin: 20px 0 0 0;
  font-size: 24px;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}
section.blog_detail article p.date {
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  section.blog_detail article > div {
    background: none!important;
    height: auto;
  }
  section.blog_detail article > div img,
  section.blog_detail article > div video {
    object-fit: cover;
  }
}
