@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
@import url("/css/fonts.css?ver=21111701");
/**
 * wfr-company-ext.css
 *
 * @package    WFR
 * @copyright  Copyright (c) 2022 RM Co., Ltd.
 * @version    1.2.220618
 */
:root {
  --base-color: #0075be;
  --base-hover: #0084d7;
  --background: #fff;
  --color: #000;
  --header: rgb(255 255 255 / 70%);
  --flow: #aaa;
  --task: #e6e6e6;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0 auto;
  padding: 0;
  background: var(--background);
  color: var(--color);
  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;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}
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;
}
.effect.moved {
  top: 0;
  opacity: 1;
}
.fadein {
  opacity: 0.5;
  transform: translate(0, 50px);
  transition: 1.3s;
}
.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: var(--header);
  position: fixed;
  z-index: 100;
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 94%;
  height: 100%;
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
}
header .wrap > a {
  display: none;
  width: 30px;
  height: 30px;
  background: #fff url(/image/menu.svg) no-repeat center/30px;
  border: 1px solid #fff;
  cursor: pointer;
}
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 div.menu {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
header ul {
  display: flex;
  justify-content: center;
  list-style: none;
}
header ul li {
  margin-left: 10px;
}
header ul li img {
  width: 24px;
  height: 24px;
}
header ul:last-child li {
  margin: 0 20px;
  cursor: pointer;
}
header ul:last-child li:hover {
  text-decoration: underline;
  color: var(--base-hover);
}
@media screen and (max-width: 767px) {
  header {
    height: 50px;
  }
  header .wrap {
    flex-wrap: wrap;
  }
  header .wrap > a {
    display: block;
    position: absolute;
    top: 10px;
    right: 0px;
  }
  header div.menu {
    flex-direction: column-reverse;
    padding: 30px 0 10px;
    width: 0px;
    max-height: 229px;
    overflow: hidden;
    background: rgb(255 255 255 / 83%);
    position: absolute;
    top: 10px;
    right: 0;
    transition: 0.5s;
  }
  header div.menu.open {
    width: 150px;
    max-height: initial;
  }
  header div.menu > * {
    visibility: hidden;
  }
  header div.menu.open > * {
    visibility: visible;
  }
  header ul:first-child {
    justify-content: space-between;
    width: 70%;
  }
  header ul:first-child li {
    margin: 0;
  }
  header ul:last-child {
    flex-direction: column;
    margin-bottom: 15px;
    width: 100%;
  }
  header ul:last-child li {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
  header ul:last-child li:hover {
    text-decoration: none;
    background: rgb(255 255 255 / 37%);
  }
}
/*--------------------------------------------------------------------------------------
  フッター
---------------------------------------------------------------------------------------*/
footer {
  background: var(--task);
}
footer div.sns {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 15px 0;
  width: 94%;
  max-width: 1120px;
}
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 0 0 10px;
}
footer ul:last-child {
  display: flex;
}
footer ul:last-child li {
  margin: 0 20px;
  cursor: pointer;
}
footer ul:last-child li:hover {
  color: var(--base-hover);
  text-decoration: underline;
}
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.sns {
    flex-direction: column;
  }
  footer div.sns ul:first-child {
    flex-wrap: wrap;
  }
  footer div.sns ul:first-child  li:nth-child(1) {
    width: calc(50% - 10px);
    text-align: right;
  }
  footer div.sns ul:first-child  li:nth-child(2) {
    width: calc(50% - 10px);
  }
  footer div.sns ul:first-child  li:nth-child(n+3) {
    margin: 10px;
  }
  footer div.sns ul:last-child {
    flex-direction: column;
  }
  footer div.sns ul:last-child li {
    margin: 10px 20px;
  }
  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.wrap.toppage {
  padding: 0;
}
section div.layer {
  margin: 50px 0;
  background: no-repeat center center / cover fixed;
  height: 700px;
}
.layerover {
  position: relative!important;
  top: 350px!important;
  margin-top: -350px!important;
}
@media screen and (max-width: 767px) {
  section.wrap {
    padding-top: 50px;
  }
  section.wrap section:last-of-type:not(.contact) {
    margin-bottom: 50px;
  }
  section div.layer {
    height: 400px;
    margin-bottom: 50px;
    margin-top: 50px;
    background-attachment: scroll;
  }
  .layerover {
    top: 0!important;
    margin-top: 50px!important;
  }
}
/*--------------------------------------------------------------------------------------
  タイトル（基本レイアウト）
---------------------------------------------------------------------------------------*/
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%;
    height: 400px;
    object-fit: cover;
  }
  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;
}
/*--------------------------------------------------------------------------------------
  タイトル2
---------------------------------------------------------------------------------------*/
section.title2 {
  margin-bottom: 100px;
  width: 100%;
}
section.title2 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.title2 div.wrap {
  display: flex;
  margin: 10px;
  padding: 10px;
  width: auto;
  max-width: 100%;
  min-height: 100px;
  background: rgb(255 255 255 / 75%);
}
section.title2 div.wrap > div:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  min-height: 100px;
  margin-right: 10px;
}
section.title2 div.wrap img {
  object-fit: scale-down;
}
section.title2 div.wrap > div:last-child {
  padding: 0 20px 0 10px;
  width: calc(100% - 100px);
  text-align: center;
}
section.title2 p:last-child {
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  section.title2 {
    margin-bottom: 0;
  }
  section.title2 div.wrap {
    flex-direction: column;
    align-items: center;
    width: 80%;
  }
  section.title2 div.wrap div {
    width: 100%!important;
  }
}
/*--------------------------------------------------------------------------------------
  メインセクション
---------------------------------------------------------------------------------------*/
section.main {
  margin-bottom: 60px;
  width: 100%;
}
section.main div.wrap {
  width: 100%;
  position: relative;
}
section.main img.poster {
  width: 100%;
}
section.main video {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
section.main img.item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.main div.item {
  display: flex;
  flex-direction: row-reverse;
  height: calc(100% - 10%);
  position: absolute;
  top: 10%;
  left: 10%
}
section.main div.horizon div.item {
  flex-direction: column;
}
section.main div.vertical p {
  writing-mode: vertical-rl;
  line-height: 1.5;
}
section.main div.vertical p:last-child {
  padding: 10px 20px;
}
section.main div.horizon p {
  line-height: 1.5;
}
section.main div.horizon p:last-child {
  padding: 20px 10px;
}
@media screen and (max-width: 767px) {
  section.main img.poster,
  section.main video {
    width: auto;
    height: 100vh;
    object-fit: cover;
  }
  section.main div.item {
    left: 50%;
    transform: translateX(-50%);
  }
  section.main div.horizon div.item {
    width: 90%;
  }
}
/*--------------------------------------------------------------------------------------
  求める人物
---------------------------------------------------------------------------------------*/
section.youwant {
  margin: 50px auto 100px;
  padding-bottom: 300px;
  width: 94%;
  min-height: 600px;
  max-width: 1120px;
  position: relative;
}
section.youwant div.image {
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
section.youwant div.wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 50px;
  width: 80%;
  max-width: 100%;
  min-height: 300px;
  background: #ccc;
  position: relative;
  z-index: 2;
}
section.youwant div.wrap h2 {
  font-size: 30px;
  line-height: 1.2;
  color #ffea00;
}
section.youwant div.wrap p:first-of-type {
  margin-bottom: 20px;
  line-height: 1.2;
  color: #000;
}
section.youwant div.wrap p:last-of-type {
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  section.youwant {
    margin-bottom: 0;
  }
  section.youwant div.wrap {
    width: 100%;
    position: relative;
  }
}
/*--------------------------------------------------------------------------------------
  お問い合わせ
---------------------------------------------------------------------------------------*/
section.contact {
  padding: 100px 0;
  width: 100%;
}
section.contact div.wrap {
  display: flex;
  margin: 0 auto;
  width: 94%;
  min-height: 350px;
  max-width: 1120px;
  position: relative;
}
section.contact div.wrap div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  line-height: 1;
}
section.contact div.wrap div:first-child {
  margin-right: 10px;
  width: calc(40% - 10px);
}
section.contact div.wrap div:last-child {
  width: 60%;
}
section.contact h2 {
  margin-bottom: 20px;
}
section.contact hr {
  display: block;
  margin: 30px 0 40px;
  width: 50px;
  height: 3px;
  background: var(--base-color);
}
section.contact div.wrap p:last-of-type {
  line-height: 1.8em;
  letter-spacing: .1em;
}
section.contact a:not(.link):before {
  display: inline-block;
  content: "\f879";
  margin: 10px 8px 0 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: min(10vw, 40px);
  transform: rotate(10deg);
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}
section.contact a span {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: -0.05em;
}
section.contact a.link {
  display: block;
  width: 360px;
  max-width: 100%;
  margin-top: 30px;
  padding: 30px 10px;
  background-color: var(--base-color);
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  transition: 0.5s;
  cursor: pointer;
}
section.contact a.link:hover {
  background-color: var(--base-hover);
}
@media screen and (max-width: 767px) {
  section.contact div.wrap {
    flex-direction: column;
  }
  section.contact div.wrap > div {
    margin: 0 0 10px 0;
    padding: 50px 10px;
    width: 100% !important;
  }
  section.contact a span {
    font-size: min(10vw,50px);
  }
}
/*--------------------------------------------------------------------------------------
  代表挨拶
---------------------------------------------------------------------------------------*/
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.background {
  margin: 50px 0 100px;
}
section.background > img {
  display: block;
  margin: 0 auto;
}
section.background > p {
  margin: 30px 0;
  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.background div.wrap {
  display: flex;
  margin: 0 auto;
  width: 94%;
  max-width: 900px;
}
section.background div.wrap p {
  margin-left: 5px;
  width: calc(50% - 5px);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 200%;
}
section.background div.image {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-right: 5px;
  width: calc(50% - 5px);
  height: auto;
  background: none!important;
}
section.background div.image > img {
  object-fit: scale-down;
}
@media screen and (max-width: 1140px) {
  section.background {
    margin-bottom: 0;
  }
  section.background > p {
    font-size: 20px!important;
  }
  section.background div.wrap {
    flex-direction: column;
  }
  section.background div.wrap p {
    margin: 0;
    width: 100%;
  }
  section.background div.image {
    justify-content: center;
    margin: 0 0 20px 0;
    width: 100%;
    height: auto;
    background: none!important;
  }
  section.background div.image img {
    display: block;
    max-width: 100%;
  }
}
/*--------------------------------------------------------------------------------------
  大見出し
---------------------------------------------------------------------------------------*/
section.caption {
  margin: 50px auto 100px;
}
section.caption h2 {
  margin: 30px auto;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  line-height: 150%;
  font-weight: 400;
  color: var(--base-color);
  text-align: center;
}
section.caption div.wrap {
  display: flex;
  margin: 0 auto;
  width: 94%;
  max-width: 960px;
}
section.caption div.wrap > div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 450px;
  height: auto;
}
section.caption div.wrap p {
  display: block;
  margin-left: 50px;
  width: calc(100% - 500px);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 200%;
}
section.caption div.wrap:last-child {
  justify-content: space-between;
}
section.caption div.wrap:last-child > div {
  margin: 40px 40px 0 0;
}
section.caption div.wrap:last-child > div:last-child {
  margin-right: 0;
}
section.caption img {
  object-fit: scale-down;
}
@media screen and (max-width: 1140px) {
  section.caption {
    margin-bottom: 80px;
  }
  section.caption div.wrap {
    flex-direction: column;
  }
  section.caption div.wrap > div {
    flex-direction: column;
    margin-bottom: 30px;
    width: 100%;
  }
  section.caption div.wrap p {
    margin: 0;
    width: 100%;
  }
  section.caption div.wrap:last-child > div {
    margin: 30px 0 0;
  }

}
/*--------------------------------------------------------------------------------------
 社長メッセージ
---------------------------------------------------------------------------------------*/
section.messages {
  margin: 50px 0 100px;
}
section.messages > img {
  display: block;
  margin: 0 auto;
  padding: 50px 0;
}
section.messages > 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.messages div.wrap {
  display: flex;
  margin: 0 auto;
  width: 94%;
  max-width: 1120px;
}
section.messages 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.messages div.image {
  display: flex;
  margin-left: 5px;
  width: calc(50% - 5px);
  height: auto;
  background: none!important;
}
section.messages div.image > img {
  object-fit: scale-down;
}
@media screen and (max-width: 1140px) {
  section.messages {
    margin-bottom: 0;
  }
  section.messages > p {
    font-size: 20px!important;
  }
  section.messages div.wrap {
    flex-direction: column;
  }
  section.messages div.wrap p {
    margin: 0;
    width: 100%;
  }
  section.messages div.image {
    margin: 0;
    width: 100%;
    height: auto;
    background: none!important;
  }
  section.messages div.image img {
    display: block;
    margin-top: 20px;
    max-width: 100%;
  }
}
/*--------------------------------------------------------------------------------------
 会社案内（トップページ）
---------------------------------------------------------------------------------------*/
section.comp {
  margin-bottom: 100px;
}
section.comp div.wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
section.comp img {
  display: block;
  width: 50%;
  height: 600px;
  object-fit: cover;
}
section.comp div.wrap div {
  display: flex;
  flex-direction: column;
  padding: 0 10%;
  width: 50%;
}
section.comp p {
  margin-bottom: 20px;
}
section.comp p:first-child {
  line-height: 1.5;
}
section.comp a {
  display: block;
  width: 260px;
  margin: 0;
  padding: 18px 10px;
  background-color: var(--base-color);
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  transition: 0.5s;
  cursor: pointer;
}
section.comp a:hover {
  background-color: var(--base-hover);
}
@media screen and (max-width: 767px) {
  section.comp div.wrap {
    flex-direction: column;
  }
  section.comp img {
    width: 100%;
    height: calc(100vh - 20px);
    max-height: 600px;
  }
  section.comp div.wrap div {
    margin-top: 100px;
    padding: 0 10px;
    width: 90%;
  }
  section.comp a {
    margin: 0 auto;
    max-width: 90%;
  }
}
/*--------------------------------------------------------------------------------------
 事業紹介（トップページ）
---------------------------------------------------------------------------------------*/
section.serv {
  margin-bottom: 100px;
}
section.serv div.wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
section.serv img {
  display: block;
  width: 50%;
  height: 600px;
  object-fit: cover;
}
section.serv div.wrap div {
  display: flex;
  flex-direction: column;
  padding: 0 10%;
  width: 50%;
}
section.serv p {
  margin-bottom: 20px;
}
section.serv p:first-of-type {
  line-height: 1.5;
}
section.serv p:last-of-type {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}
section.serv a {
  display: block;
  width: 260px;
  margin: 0;
  padding: 18px 10px;
  background-color: var(--base-color);
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  transition: 0.5s;
  cursor: pointer;
}
section.serv a:hover {
  background-color: var(--base-hover);
}
@media screen and (max-width: 767px) {
  section.serv div.wrap {
    flex-direction: column;
  }
  section.serv img {
    width: 100%;
    height: calc(100vh - 20px);
    max-height: 600px;
  }
  section.serv div.wrap div {
    margin-top: 100px;
    padding: 0 10px;
    width: 90%;
  }
  section.serv a {
    margin: 0 auto;
    max-width: 90%;
  }
}
/*--------------------------------------------------------------------------------------
 求人案内（トップページ）
---------------------------------------------------------------------------------------*/
section.recr {
  margin-bottom: 100px;
}
section.recr div.wrap {
  display: block;
  width: 100%;
  min-height: 700px;
  background-size: cover;
  background-repeat: no-repeat;
}
section.recr div.wrap::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 70%);
  position: absolute;
  z-index: 1;
}
section.recr img {
  display: block;
  width: 50%;
  height: 400px;
  object-fit: cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}
section.recr div.wrap div {
  display: flex;
  flex-direction: column;
  padding: 0 5%;
  width: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
section.recr p {
  margin-bottom: 20px;
}
section.recr p:first-child {
  line-height: 1.5;
}
section.recr a {
  box-sizing: border-box;
  display: block;
  width: 260px;
  margin: 0;
  padding: 18px 10px;
  background-color: var(--base-color);
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  transition: 0.5s;
  cursor: pointer;
}
section.recr a:hover {
  background-color: var(--base-hover);
}
@media screen and (max-width: 767px) {
  section.recr img {
    width: 90%;
    height: 30%;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
  }
  section.recr div.wrap div {
    padding: 0 10px;
    width: 90%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, 0);
  }
  section.recr div.wrap p:nth-child(2) {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    margin-bottom: 40px;
    max-height: 150px;
    overflow: hidden;
  }
  section.recr a {
    margin: 0 auto;
    max-width: 90%;
  }
}
/*--------------------------------------------------------------------------------------
  事業紹介
---------------------------------------------------------------------------------------*/
section.introduction {
  margin: 50px 0 100px;
}
section.introduction div.wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
  width: 94%;
  max-width: 900px;
}
section.introduction div.wrap img {
  margin: 50px 0;
  object-fit: scale-down;
}
section.introduction div.wrap p {
  margin-left: 5px;
  width: calc(50% - 5px);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 200%;
}
section.introduction > img {
  margin: 0 auto;
  position: relative;
  top: 24px;
}
@media screen and (max-width: 1140px) {
  section.introduction {
    margin-bottom: 80px;
  }
  section.introduction > p {
    font-size: 20px!important;
  }
  section.introduction div.wrap {
    flex-direction: column;
  }
  section.introduction div.wrap p {
    margin: 0;
    width: 100%;
  }
  section.introduction div.image {
    justify-content: center;
    margin: 0 0 20px 0;
    width: 100%;
    height: auto;
    background: none!important;
  }
  section.introduction div.image img {
    display: block;
    max-width: 100%;
  }
}
/*--------------------------------------------------------------------------------------
  理念（背景ループ）
---------------------------------------------------------------------------------------*/
section.loop.view {
  margin: 50px 0 100px;
  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;
}
@media screen and (max-width: 767px) {
  section.loop.view {
    margin-bottom: 0;
  }
}
/*--------------------------------------------------------------------------------------
  理念（背景2枚重ね）
---------------------------------------------------------------------------------------*/
section.loop.bash {
  margin: 50px 0 100px;
  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-bottom: 0;
    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.environment.image {
  margin: 50px 0 100px;
  min-height: 600px;
  position: relative;
}
section.environment.image div.wrap {
  display: flex;
  flex-direction: row;
}
section.environment.image div.wrap > div:nth-of-type(1) {
  width: 60%;
  background: none!important;
  position: relative;
}
section.environment.image div.wrap > div:nth-of-type(1) img {
  width: 100%;
}
section.environment.image div.wrap > div:nth-of-type(2) {
  width: 40%;
  height: 600px;
  background: no-repeat center/cover;
}
section.environment.image div.wrap > div:nth-of-type(2) img {
  display: none;
}
section.environment.image p {
  display: block;
  width: 900px;
  font-size: 24px;
  font-weight: 400;
  position: absolute!important;
  top: initial!important;
  bottom: 0;
  left: 50%!important;
  transform: translateX(-50%);
  text-shadow: 0px 0px 10px rgb(255 255 255);
}
@media screen and (max-width: 767px) {
  section.environment.image {
    margin-bottom: 0;
  }
  section.environment.image div.wrap {
    flex-direction: column;
  }
  section.environment.image div.wrap > div {
    width: 100%!important;
  }
  section.environment.image div.wrap > div img {
    right: initial!important;
  }
  section.environment.image p {
    width: 100%;
    padding: 10px;
    left: initial!important;
    bottom: 0!important;
    transform: initial;
    xbackground: rgba(64, 64, 64, 0.2);
  }
}
/*--------------------------------------------------------------------------------------
  職場環境（カラー背景）
---------------------------------------------------------------------------------------*/
section.environment.color {
  margin: 50px 0 100px;
}
section.environment.color div.wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
  width: 94%;
  max-width: 900px;
}
section.environment.color div.wrap img {
  margin: 50px 0;
  object-fit: scale-down;
}
section.environment.color div.wrap p {
  margin-left: 5px;
  width: calc(50% - 5px);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 200%;
}
section.environment.color > img {
  margin: 0 auto;
  position: relative;
  top: 24px;
}
@media screen and (max-width: 1140px) {
  section.environment.color {
    margin-bottom: 0;
  }
  section.environment.color > p {
    font-size: 20px!important;
  }
  section.environment.color div.wrap {
    flex-direction: column;
  }
  section.environment.color div.wrap p {
    margin: 0;
    width: 100%;
  }
  section.environment.color div.image {
    justify-content: center;
    margin: 0 0 20px 0;
    width: 100%;
    height: auto;
    background: none!important;
  }
  section.environment.color div.image img {
    display: block;
    max-width: 100%;
  }
}
/*--------------------------------------------------------------------------------------
  フリー
---------------------------------------------------------------------------------------*/
section.free {
  margin: 50px 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-bottom: 0;
  }
  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: 50px auto 100px;
  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;
  position: relative;
}
section.history h2::after {
  display: block;
  content: "";
  width: 70px;
  height: 4px;
  background: var(--base-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
section.history dl {
  display: flex;
}
section.history dl dt {
  padding: 15px 10px;
  min-width: 240px;
  max-width: 240px;
  border-bottom: 1px solid var(--color);
  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 var(--color);
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  section.history {
    margin-bottom: 0;
  }
  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: 50px auto 100px;
  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;
  position: relative;
}
section.detail h2::after {
  display: block;
  content: "";
  width: 70px;
  height: 4px;
  background: var(--base-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
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 var(--color);
  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 var(--color);
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  section.detail {
    margin-bottom: 0;
  }
  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.detail2 {
  margin: 50px auto 100px;
  width: 94%;
  max-width: 900px;
  top: 100px;
}
section.detail2 h2 {
  margin-bottom: 40px;
  font-size: 26px;
  line-height: 150%;
  font-weight: 400;
  text-align: center;
}
section.detail2 dl {
  display: flex;
  border-bottom: 1px solid var(--color);
}
section.detail2 dl:first-of-type {
  border-top: 1px solid var(--color);
}
section.detail2 dl dt {
  display: flex;
  align-items: center;
  margin-right: 2px;
  padding: 15px 10px;
  min-width: 240px;
  max-width: 240px;
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
  text-align: left;
}
section.detail2 dl dd {
  padding: 15px 0;
  width: 100%;
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  section.detail2 {
    margin-bottom: 0;
  }
  section.detail2 h2 {
    margin-bottom: 20px;
  }
  section.detail2 dl {
    flex-direction: column;
    border: none!important;
  }
  section.detail2 dl dt {
    padding: 5px 10px;
    width: 100%;
    min-width: inherit;
    max-width: inherit;
    border: 1px solid #000;
    text-align: left;
  }
  section.detail2 dl dd {
    padding: 10px 0 20px;
    border: none;
  }
}
/*--------------------------------------------------------------------------------------
  選考フロー
---------------------------------------------------------------------------------------*/
section.flow {
  margin: 50px auto 100px;
  width: 94%;
  max-width: 900px;
  top: 100px;
}
section.flow h2 {
  margin-bottom: 40px;
  font-size: 26px;
  line-height: 150%;
  font-weight: 400;
  text-align: center;
}
section.flow dl {
  display: flex;
  border-bottom: 1px solid var(--color);
}
section.flow dl:first-of-type {
  border-top: 1px solid var(--color);
}
section.flow dl dt {
  padding: 15px 10px;
  min-width: 240px;
  max-width: 240px;
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
  text-align: center;
}
section.flow dl dd {
  padding: 15px 0;
  width: 100%;
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  section.flow {
    margin-bottom: 0;
  }
  section.flow h2 {
    margin-bottom: 20px;
  }
  section.flow dl {
    flex-direction: column;
    border: none!important;
  }
  section.flow dl dt {
    padding: 5px 10px;
    width: 100%;
    min-width: inherit;
    max-width: inherit;
    border: 1px solid var(--color);
    text-align: left;
  }
  section.flow dl dd {
    padding: 10px 0 20px;
    border: none;
  }
}
/*--------------------------------------------------------------------------------------
  資格一覧
---------------------------------------------------------------------------------------*/
section.table {
  margin: 50px auto 100px;
  width: 94%;
  max-width: 960px;
}
section.table h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 80px;
  font-size: 28px;
  font-size: min(8vw, 28px);
  line-height: 1em;
  font-weight: 400;
}
section.table h2:before,
section.table h2:after {
  display: block;
  content: "";
  width: 2em;
  height: 1px;
  background: var(--color);
  position: relative;
  top: 2px;
}
section.table h2:before {
  margin-right: 1rem;
}
section.table h2:after {
  margin-left: 1rem;
}
section.table dl {
  display: flex;
  border-bottom: 1px solid var(--color);
}
section.table dl:first-of-type {
  border-top: 1px solid var(--color);
}
section.table dl dt {
  padding: 15px 1em;
  width: calc(100% - 100px);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
}
section.table dl dd {
  padding: 15px 1em;
  width: 100px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  section.table {
    margin-bottom: 0;
  }
section.table dl {
    flex-direction: column;
    border: none!important;
  }
  section.table dl dt {
    padding: 5px 10px;
    width: 100%;
    border: 1px solid var(--color);
    text-align: left;
  }
  section.table dl dd {
    padding: 10px 0 20px;
    width: 100%;
    border: none;
  }
}
/*--------------------------------------------------------------------------------------
  対応エリア
---------------------------------------------------------------------------------------*/
section.table2 {
  display: flex;
  flex-direction: column;
  margin: 50px auto 100px;
  width: 94%;
  max-width: 960px;
}
section.table2 h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-size: min(8vw, 28px);
  line-height: 1em;
  font-weight: 400;
  white-space: nowrap;
}
section.table2 h2:before,
section.table2 h2:after {
  display: block;
  content: "";
  width: 2em;
  height: 1px;
  background: var(--color);
  position: relative;
  top: 2px;
}
section.table2 h2:before {
  margin-right: 1rem;
}
section.table2 h2:after {
  margin-left: 1rem;
}
section.table2 p {
  margin: 10px auto 50px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3.2px;
  color: #777;
}
section.table2 dl {
  display: flex;
  border-bottom: 1px solid #cfcfcf;
}
section.table2 dl:first-of-type {
  border-top: 1px solid #cfcfcf;
}
section.table2 dl dt {
  padding: 30px;
  width: 300px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
section.table2 dl dd {
  padding: 30px;
  width: calc(100% - 300px);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3.2px;
  font-weight: 300;
  color: #777;
}
section.table2 dl dd span {
  white-space: nowrap;
  display: inline-block;
}
section.table2 dl dd span:after {
  content: '/';
  margin: 0 0.5em;
}
@media screen and (max-width: 767px) {
  section.table2 {
    margin-bottom: 0;
  }
  section.table2 dl {
    flex-direction: column;
    border: none!important;
  }
  section.table2 dl dt {
    padding: 5px 10px;
    width: 100%;
    border: 1px solid var(--color);
    text-align: left;
  }
  section.table2 dl dd {
    padding: 30px 0;
    width: 100%;
    border: none;
  }
}
/*--------------------------------------------------------------------------------------
  営業拠点
---------------------------------------------------------------------------------------*/
section.address {
  margin: 50px auto 100px;
  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;
  position: relative;
}
section.address h2::after {
  display: block;
  content: "";
  width: 70px;
  height: 4px;
  background: var(--base-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
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 var(--color);
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
}
section.address dl dd {
  padding: 15px 0;
  width: 100%;
  border-bottom: 1px dotted var(--color);
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  section.address {
    margin-bottom: 0;
  }
  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: 50px auto 100px;
  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;
  position: relative;
}
section.mailform h2::after {
  display: block;
  content: "";
  width: 70px;
  height: 4px;
  background: var(--base-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
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: var(--task);
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
}
section.mailform dl dt span {
  margin-left: 10px;
  color: var(--base-color);
}
section.mailform dl dd {
  padding: 10px 15px;
  border: 1px solid var(--task);
  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);
  background: var(--base-color);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  cursor: pointer;
  transition: all 500ms;
}
section.mailform button.back {
  background: #a3acb7;
}
section.mailform button:hover {
  background: var(--base-hover);
}
section.mailform h3 {
  border-bottom: 2px solid rgb(0 117 190);
  border-bottom: 2px solid var(--base-color);
  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: 0;
  }
  section.mailform div.wrap {
    flex-direction: column-reverse;
  }
  section.mailform div.wrap > div {
    width: 100%;
  }
}
/*--------------------------------------------------------------------------------------
  応募フォーム
---------------------------------------------------------------------------------------*/
section.entryform {
  margin: 50px auto 100px;
  width: 94%;
  max-width: 900px;
}
section.entryform h2 {
  margin-bottom: 40px;
  font-size: 26px;
  line-height: 150%;
  font-weight: 400;
  text-align: center;
}
section.entryform > p {
  padding: 0 0 30px 0;
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
}
section.entryform div.wrap {
  display: flex;
  justify-content: space-between;
}
section.entryform div.wrap > div {
  width: 48%;
}
section.entryform dl dt {
  padding: 10px 15px;
  background: var(--task);
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
}
section.entryform dl dt span {
  margin-left: 10px;
  color: var(--base-color);
}
section.entryform dl dd {
  padding: 10px 15px;
  border: 1px solid var(--task);
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
}
section.entryform dl dd span {
  margin-left: 10px;
}
section.entryform dl dd div {
  display: flex;
}
section.entryform dl dd div:last-child {
  display: none;
}
section.entryform dl dd div:last-child span {
  display: block;
  color: #ff0000;
}
section.entryform form + div > div:last-child {
  display: none;
}
section.entryform 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.entryform 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.entryform select {
  padding: 0 4px;
  height: 30px;
  border: 1px solid #ccc;
  font-size: 15px;
  font-weight: 300;
  outline: none;
}
section.entryform input[type="checkbox"] {
  margin-right: 10px;
  outline: none;
}
section.entryform input[type="radio"] {
  margin-right: 10px;
  outline: none;
}
section.entryform label {
  display: flex;
  align-items: center;
  margin-right: 20px;
  min-width: 60px;
}
section.entryform button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  width: 100%;
  height: 46px;
  background: rgb(0 117 190);
  background: var(--base-color);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  cursor: pointer;
  transition: all 500ms;
}
section.entryform button.back {
  background: #a3acb7;
}
section.entryform button:hover {
  background: var(--base-hover);
}
section.entryform h3 {
  border-bottom: 2px solid rgb(0 117 190);
  border-bottom: 2px solid var(--base-color);
  font-size: 18px;
  line-height: 50px;
  font-weight: 700;
  text-align: center;
}
section.entryform div p {
  padding: 10px 0;
  font-size: 13px;
  line-height: 2;
  font-weight: 300;
}
section.entryform h4 {
  padding: 10px 0;
  font-size: 17px;
  line-height: 150%;
  font-weight: 400;
}
section.entryform ul {
  margin-bottom: 30px;
}
section.entryform 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.entryform {
    margin-bottom: 0;
  }
  section.entryform div.wrap {
    flex-direction: column-reverse;
  }
  section.entryform div.wrap > div {
    width: 100%;
  }
}
/*--------------------------------------------------------------------------------------
  写真集
---------------------------------------------------------------------------------------*/
section.book {
  margin: 50px auto 100px;
  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-bottom: 0;
  }
  section.book ul {
    flex-direction: column;
  }
  section.book ul li {
    width: 100% !important;
    height: 300px;
    max-height: initial;
  }
}
/*--------------------------------------------------------------------------------------
  仕事風景
---------------------------------------------------------------------------------------*/
section.book2 {
  margin: 50px auto 100px;
  width: 94%;
  max-width: 900px;
  min-height: 100px;
}
section.book2 > img {
  margin: 0 auto;
}
section.book2 h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}
section.book2 ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
section.book2 ul li {
  margin-bottom: 20px;
  margin-right: 20px;
  min-height: 200px;
  width: calc((100% - 40px) / 3);
  height: auto;
  max-height: 150px;
}
section.book2 ul li:nth-child(3n) {
  margin-right: 0;
}
section.book2 ul li img,
section.book2 ul li video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  section.book2 {
    margin-bottom: 0;
  }
  section.book2 ul {
    flex-direction: column;
  }
  section.book2 ul li {
    width: 100%;
    max-height: initial;
    height: 300px;
  }
}
/*--------------------------------------------------------------------------------------
  ブログ
---------------------------------------------------------------------------------------*/
section.blog {
  margin: 50px 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;
  position: relative;
}
section.blog h2::after {
  display: block;
  content: "";
  width: 70px;
  height: 4px;
  background: var(--base-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
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%;
}
@media screen and (max-width: 767px) {
  section.blog {
    margin-bottom: 0;
  }
  section.blog ul li {
    flex-direction: column;
  }
  section.blog ul li > div:first-child {
    margin: 0;
    width: 100%;
  }
  section.blog ul li > div:last-child {
    margin: 20px 0 0;
    width: 100%;
  }
  section.blog ul li p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: initial;
  }
}
/*--------------------------------------------------------------------------------------
  施工実績
---------------------------------------------------------------------------------------*/
section.blog2 {
  margin: 50px auto 100px;
  width: 94%;
  max-width: 960px;
}
section.blog2 h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 80px;
  font-size: 28px;
  font-size: min(8vw, 28px);
  line-height: 1em;
  font-weight: 400;
}
section.blog2 h2:before,
section.blog2 h2:after {
  display: block;
  content: "";
  width: 2em;
  height: 1px;
  background: var(--color);
  position: relative;
  top: 2px;
}
section.blog2 h2:before {
  margin-right: 1rem;
}
section.blog2 h2:after {
  margin-left: 1rem;
}
section.blog2 ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
section.blog2 ul li {
  margin: 40px 60px 0 0;
  width: calc(50% - 30px);
}
section.blog2 ul li:nth-child(-n+2) {
  margin-top: 0;
}
section.blog2 ul li:nth-child(2n) {
  margin-right: 0;
}
section.blog2 ul li div:first-child {
  width: 100%;
}
section.blog2 ul li img,
section.blog2 ul li video {
  width: 100%;
  max-height: 420px;
  object-fit: scale-down;
}
section.blog2 ul li div:last-child {
  margin: 0 0 0 auto;
  padding: 20px;
  width: 80%;
  border-top: 2px solid var(--base-color);
  background: #fff;
  position: relative;
  top: -30px;
}
section.blog2 ul li p.date {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}
section.blog2 ul li h3 {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--color);
}
section.blog2 ul li a.arrow {
  display: block;
  position: absolute;
  right: 0;
  bottom: -30px;
}
section.blog2 ul li a.arrow span {
  display: inline-block;
  height: 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  text-align: right;
  vertical-align: middle;
  color: var(--color);
}
section.blog2 ul li a.arrow::before {
  display: inline-block;
  content: "\021C0";
  height: 30px;
  font-size: 30px;
  font-weight: 500;
  transform: scale(1.8, 1);
  line-height: 30px;
  text-align: right;
  vertical-align: middle;
  color: var(--base-color);
  transition: 0.4s cubic-bezier(0.4, 0, 1, 1);
  position: relative;
  right: 25px;
}
section.blog2 ul li a.arrow:hover::before {
  right: 20px;
}
@media screen and (max-width: 767px) {
  section.blog2 {
    margin-bottom: 0;
  }
  section.blog2 h2 {
    margin-bottom: 40px;
  }
  section.blog2 ul {
    flex-direction: column;
  }
  section.blog2 ul li {
    margin: 40px 0 0 0!important;
    width: 100%;
  }
  section.blog2 ul li div:last-child {
    width: 90%;
  }
}
/*--------------------------------------------------------------------------------------
  施工実績（リードオンリー）
---------------------------------------------------------------------------------------*/
section.results {
  margin: 50px auto 100px;
  width: 94%;
  max-width: 960px;
}
section.results h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 80px;
  font-size: 28px;
  font-size: min(8vw, 28px);
  line-height: 1em;
  font-weight: 400;
}
section.results h2:before,
section.results h2:after {
  display: block;
  content: "";
  width: 2em;
  height: 1px;
  background: var(--color);
  position: relative;
  top: 2px;
}
section.results h2:before {
  margin-right: 1rem;
}
section.results h2:after {
  margin-left: 1rem;
}
section.results ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
section.results ul li {
  margin: 40px 60px 0 0;
  width: calc(50% - 30px);
}
section.results ul li:nth-child(-n+2) {
  margin-top: 0;
}
section.results ul li:nth-child(2n) {
  margin-right: 0;
}
section.results ul li div:first-child {
  width: 100%;
}
section.results ul li img,
section.results ul li video {
  width: 100%;
  max-height: 420px;
  object-fit: scale-down;
}
section.results ul li div:last-child {
  margin: 0 0 0 auto;
  padding: 20px;
  width: 80%;
  border-top: 2px solid var(--base-color);
  background: #fff;
  position: relative;
  top: -30px;
}
section.results ul li p.date {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}
section.results ul li h3 {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--color);
}
section.results ul li a.arrow {
  display: block;
  position: absolute;
  right: 0;
  bottom: -30px;
}
section.results ul li a.arrow span {
  display: inline-block;
  height: 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  text-align: right;
  vertical-align: middle;
  color: var(--color);
}
section.results ul li a.arrow::before {
  display: inline-block;
  content: "\021C0";
  height: 30px;
  font-size: 30px;
  font-weight: 500;
  transform: scale(1.8, 1);
  line-height: 30px;
  text-align: right;
  vertical-align: middle;
  color: var(--base-color);
  transition: 0.4s cubic-bezier(0.4, 0, 1, 1);
  position: relative;
  right: 25px;
}
section.results ul li a.arrow:hover::before {
  right: 20px;
}
section.results a.link {
  display: block;
  width: 260px;
  margin: 50px auto 0;
  padding: 18px 10px;
  background-color: var(--base-color);
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  transition: 0.5s;
  cursor: pointer;
  box-sizing: border-box;
}
section.results a.link:hover {
  background-color: var(--base-hover);
}
@media screen and (max-width: 767px) {
  section.results h2 {
    margin-bottom: 40px;
  }
  section.results ul {
    flex-direction: column;
  }
  section.results ul li {
    margin: 40px 0 0 0!important;
    width: 100%;
  }
  section.results ul li div:last-child {
    width: 90%;
  }
}
/*--------------------------------------------------------------------------------------
  NEWS（リードオンリー）
---------------------------------------------------------------------------------------*/
section.news {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 100px auto 180px;
  width: 94%;
  max-width: 1120px;
  position: relative;
}
section.news > a {
  position: absolute;
  bottom: -80px;
  right: 0;
}
section.news > a span {
  display: inline-block;
  height: 30px;
  font-weight: 500;
  line-height: 30px;
  vertical-align: middle;
  color: var(--color);
}
section.news > a::before {
  display: inline-block;
  content: "\021C0";
  width: 45px;
  height: 30px;
  font-size: 30px;
  font-weight: 500;
  transform: scale(1.8, 1);
  line-height: 30px;
  vertical-align: middle;
  color: var(--base-color);
  transition: 0.4s;
}
section.news > a:hover::before {
  width: 40px;
}
section.news h2 {
  margin-bottom: 40px;
  padding-bottom: 5px;
  width: 170px;
  font-size: 24px;
  line-height: 72px;
  font-weight: 700;
  position: relative;
}
section.news h2::after {
  display: block;
  content: "";
  width: 70px;
  height: 4px;
  background: var(--base-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
section.news div.wrap {
  width: calc(100% - 170px);
}
section.news ul li {
  display: flex;
  align-items: center;
  height: 77px;
  border-bottom: 1px dashed #d2d2d2;
  list-style: none;
}
section.news ul li p.date {
  width: 120px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
section.news ul li p.link {
  width: 120px;
}
section.news ul li p.link a {
  display: inline-block;
  padding: 0 10px;
  height: 18px;
  border: 1px solid var(--base-color);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: var(--base-color);
}
section.news ul li p.link a:hover {
  opacity: 0.8;
}
section.news ul li p a  {
  font-weight: 400;
  color: #000;
}
section.news ul li p a:hover {
  color: var(--base-color);
}
@media screen and (max-width: 767px) {
  section.news {
    flex-direction: column;
  }
  section.news h2 {
    width: 100%;
    text-align: center;
  }
  section.news h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  section.news div.wrap {
    width: 100%;
  }
  section.news ul li {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
    margin-bottom: 20px;
    height: auto;
  }
  section.news ul li p.date,
  section.news ul li p.link {
    margin-bottom: 10px;
  }
}
/*--------------------------------------------------------------------------------------
  ナビゲーション
---------------------------------------------------------------------------------------*/
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;
}
@media screen and (max-width: 767px) {
  section nav ul {
    flex-direction: column;
  }
  section nav ul li {
    margin: 10px 0;
  }
}
/*--------------------------------------------------------------------------------------
  ブログトップ
---------------------------------------------------------------------------------------*/
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;
  font-size: 24px;
  line-height: 1.5;
  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;
  }
}
/*--------------------------------------------------------------------------------------
  作業内容
---------------------------------------------------------------------------------------*/
section.works {
  margin: 50px auto 100px;
  width: 94%;
  max-width: 900px;
}
section.works dl {
  margin-bottom: 50px;
}
section.works dl dt {
  text-indent: 0.5em;
  color: #e17009;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
section.works dl dt span {
  display: block;
  margin: 10px 0 20px;
  width: 50px;
  height: 2px;
  background: #e17009;
}
section.works dl:first-child dt {
  text-align: center;
  text-indent: 0;
}
section.works dl:first-child dt span {
  margin: 20px auto 20px;
  width: 6px;
  height: 6px;
  border-radius: 3px;
}
section.works dl dd {
  display: flex;
  justify-content: space-between;
}
section.works dl:nth-child(2n) dd {
  flex-direction: row-reverse;
}
section.works dl dd div {
  width: 400px;
}
section.works dl dd p {
  display: block;
  width: calc(100% - 450px);
}
@media screen and (max-width: 767px) {
  section.works {
    margin-bottom: 0;
  }
  section.works dl dd {
    flex-direction: column!important;
  }
  section.works dl dd div {
    margin: 0 0 20px;
    width: 100%;
  }
  section.works dl dd p {
    width: 100%;
  }
}
/*--------------------------------------------------------------------------------------
  当社の特徴
---------------------------------------------------------------------------------------*/
section.feature {
  margin: 50px 0 100px;
  width: 100%;
}
section.feature div.wrap {
  margin: 0 auto;
  width: 94%;
  max-width: 900px;
}
section.feature dl {
  display: flex;
  margin-bottom: 100px;
}
section.feature dl:nth-child(2n) {
  flex-direction: row-reverse;
}
section.feature dl dt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
  width: 60%;
  line-height: 2em;
}
section.feature dl dt p {
  display: flex;
  align-items: center;
}
section.feature dl dt p span {
  margin-right: 1em;
  width: 5px;
  height: 40px;
  background: #0cb5c6;
  background: linear-gradient(360deg, #0cb5c6 0%, #0cb5c6 50%, #0cb5c67a 50%, #0cb5c67a 100%);
}
section.feature dl dt p:first-child {
  padding: 10px 20px 10px 50px;
  font-size: 20px;
  line-height: 1.2;
}
section.feature dl dt p:last-child {
  padding: 20px 20px 20px 50px;
  background-color: #0cb5c6;
}
section.feature dl:nth-child(2n) dt p:first-child {
  padding: 10px 50px 10px 20px;
}
section.feature dl:nth-child(2n) dt p:last-child {
  padding: 20px 50px 20px 20px;
}
section.feature dl dd {
  padding: 3px;
  width: 40%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 2px 2px #fff, 0 0 5px 5px #e9e9e9;
}
section.feature dl dd img {
  display: none;
}
@media screen and (max-width: 767px) {
  section.feature {
    margin-bottom: 0;
  }
  section.feature dl {
    flex-direction: column!important;
    margin-bottom: 50px;
  }
  section.feature dl dt {
    width: 100%;
  }
  section.feature dl dt p {
    padding: 10px!important;
  }
  section.feature dl dd {
    width: 100%;
    background: none!important;
    box-shadow: initial;
  }
  section.feature dl dd img {
    display: block;
    width: 100%;
  }
}
/*--------------------------------------------------------------------------------------
  人材育成
---------------------------------------------------------------------------------------*/
section.human {
  margin: 50px 0 100px;
  padding: 60px 0 40px;
  width: 100%;
  background: #c5dbec;
}
section.human h2 {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  text-align: center;
}
section.human div.wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 94%;
  max-width: 900px;
}
section.human dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 32%;
}
section.human dl dt p {
  margin: 20px 0;
  font-size: 20px;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  section.human {
    margin-bottom: 0;
  }
  section.human div.wrap {
    flex-direction: column;
  }
  section.human dl {
    margin: 20px 0;
    width: 100%;
  }
}
/*--------------------------------------------------------------------------------------
  3連ブロック（小見出し＋画像＋本文）
---------------------------------------------------------------------------------------*/
section.flexbox.text {
  margin: 50px 0 100px;
  width: 100%;
}
section.flexbox.text div.wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 94%;
  max-width: 960px;
}
section.flexbox.text div.wrap div {
  width: 32%;
}
section.flexbox.text h3 {
  padding: 10px;
  background: var(--base-color);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
section.flexbox.text p {
  padding: 20px 0 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  section.flexbox.text {
    margin-bottom: 0;
  }
  section.flexbox.text div.wrap {
    flex-direction: column;
  }
  section.flexbox.text div.wrap div {
    width: 100%;
  }
}
/*--------------------------------------------------------------------------------------
  3連ブロック（画像＋小見出し＋本文）
---------------------------------------------------------------------------------------*/
section.flexbox.photo {
  margin: 50px 0 100px;
  width: 100%;
}
section.flexbox.photo div.wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 94%;
  max-width: 960px;
}
section.flexbox.photo div.wrap div {
  width: 32%;
}
section.flexbox.photo h3 {
  margin: 10px 0;
  padding: 10px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 300;
  text-align: center;
}
section.flexbox.photo p {
  padding: 0 0 20px;
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  section.flexbox.photo {
    margin-bottom: 0;
  }
  section.flexbox.photo div.wrap {
    flex-direction: column;
  }
  section.flexbox.photo div.wrap div {
    width: 100%;
  }
}
/*--------------------------------------------------------------------------------------
  インタビュー (photo)
---------------------------------------------------------------------------------------*/
section.interview.photo {
  margin: 50px auto 100px;
  width: 94%;
  max-width: 900px;
}
section.interview.photo h2 {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  text-align: center;
  color: #29ced1;
}
section.interview.photo dl {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  line-height: 1.2;
}
section.interview.photo dl dt {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #29ced1;
}
section.interview.photo dl dd {
  display: flex;
  align-items: flex-start;
}
section.interview.photo dl:nth-child(2n) dd {
  flex-direction: row-reverse;
}
section.interview.photo dl dd div:first-child {
  padding: 0 10px;
  width: 360px;
}
section.interview.photo dl dd div:last-child {
  width: calc(100% - 360px);
}
@media screen and (max-width: 767px) {
  section.interview.photo {
    margin-bottom: 0;
  }
  section.interview.photo dl dd {
    flex-direction: column!important;
  }
  section.interview.photo dl dd div {
    padding: 10px 0!important;
    width: 100%!important;
  }
}
/*--------------------------------------------------------------------------------------
  インタビュー (comment)
---------------------------------------------------------------------------------------*/
section.interview.comment {
  margin: 50px auto 100px;
  width: 100%;
  background: #ffff00;
}
section.interview.comment div.wrap {
  margin: 0 auto;
  padding: 50px 0;
  width: 94%;
  max-width: 1120px;
}
section.interview.comment h2 {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
section.interview.comment div > p {
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
  line-height: 1.2;
}
section.interview.comment ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
section.interview.comment ul li {
  margin: 10px 1%;
  width: 31%;
  text-align: center;
}
section.interview.comment ul li p:first-child {
  margin-bottom: 5px;
  font-size: 1.2em;
  line-height: 1.2;
}
section.interview.comment ul li p:last-child {
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  section.interview.comment {
    margin-bottom: 0;
  }
  section.interview.comment ul {
    flex-direction: column;
  }
  section.interview.comment ul li {
    width: 100%;
  }
}
/*--------------------------------------------------------------------------------------
  FAQ
---------------------------------------------------------------------------------------*/
section.faq {
  margin: 50px auto 100px;
  width: 94%;
  max-width: 900px;
}
section.faq h2 {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
section.faq > p {
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.2;
}
section.faq ul {
  margin-bottom: 10px;
  width: 100%;
  list-style: none;
}
section.faq ul li {
  padding: 10px 0;
  width: 100%;
  border-bottom: 1px dashed var(--color);
  color: var(--base-color);
  cursor: pointer;
}
section.faq ul li span {
  color: var(--color);
}
section.faq dl {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  width: 100%;
}
section.faq dl dt {
  padding: 10px;
  width: 50%;
  background: var(--base-color);
  color: var(--background);
  line-height: 1.2;
}
section.faq dl dd {
  padding-left: 20px;
  width: 50%;
}
@media screen and (max-width: 767px) {
  section.faq {
    margin-bottom: 0;
  }
  section.faq dl {
    flex-direction: column;
  }
  section.faq dl dt {
    width: 100%!important;
  }
  section.faq dl dd {
    width: 100%!important;
    padding: 20px 20px 0!important;
  }
}
/*--------------------------------------------------------------------------------------
  Q&A
---------------------------------------------------------------------------------------*/
section.qa {
  display: flex;
  margin: 50px auto 100px;
  width: 100%;
}
section.qa div.image {
  width: 40%;
  min-height: 200px;
  background: no-repeat center / cover;
}
section.qa div.image img {
  display: none;
}
section.qa div.wrap {
  padding: 50px 10%;
  width: 60%;
}
section.qa h2 {
  margin-bottom: 50px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 300;
  text-align: center;
}
section.qa ul li {
  margin-bottom: 30px;
  list-style: none;
}
section.qa dl {
  display: flex;
  flex-direction: column;
}
section.qa dl dt {
  display: flex;
  align-items: flex-start;
  padding-bottom: 10px;
  width: 100%;
  border-bottom: 1px dotted #cfcfcf;
  line-height: 1.2;
  font-size: 15px;
  font-weight: 400;
  color: var(--base-color);
}
section.qa dl dt span:first-child {
  margin-right: 5px;
  color: var(--base-color);
}
section.qa dl dd {
  display: flex;
  align-items: flex-start;
  padding: 5px 0;
  width: 100%;
  line-height: 2;
  font-size: 15px;
  font-weight: 300;
}
section.qa dl dd span:first-child {
  margin-right: 5px;
  color: var(--base-hover);
}
@media screen and (max-width: 767px) {
  section.qa {
    flex-direction: column;
    margin-bottom: 0;
    max-width: 94%;
  }
  section.qa div.image {
    margin: 0 auto;
    width: 100%;
    background: none!important;
  }
  section.qa div.image img {
    display: block;
    object-fit: scale-down;
  }
  section.qa div.wrap {
    padding: 50px 0 0;
    width: 100%;
  }
}
/*--------------------------------------------------------------------------------------
  一日の流れ
---------------------------------------------------------------------------------------*/
section.daysflow {
  margin: 50px auto 100px;
  width: 94%;
  max-width: 900px;
}
section.daysflow h2 {
  margin-bottom: 50px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #000;
}
section.daysflow dl {
  display: flex;
  margin-bottom: 100px;
  position: relative;
}
section.daysflow dl:after {
  display: block;
  width: 30px;
  height: 30px;
  content: "\02228";
  font-size: 30px;
  color: var(--flow);
  transform: scale(2, 1);
  position: absolute;
  bottom: -50px;
  left: 50%;
}
section.daysflow dl:last-child:after {
  display: none;
}
section.daysflow dl dt {
  margin-right: 20px;
  width: 300px;
}
section.daysflow dl dd {
  width: calc(100% - 320px);
}
section.daysflow dl dd p:first-child {
  display: block;
  padding: 0.5em 10px;
  background: var(--color);
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}
section.daysflow dl dd p:last-child {
  padding: 10px 0px;
}
@media screen and (max-width: 767px) {
  section.daysflow {
    margin-bottom: 0;
  }
  section.daysflow h2 {
    text-align: left;
  }
  section.daysflow dl {
    flex-direction: column!important;
  }
  section.daysflow dl dt {
    margin: 0 0 20px 0 !important;
    width: 100%!important;
  }
  section.daysflow dl dd {
    width: 100%!important;
  }
}
/*--------------------------------------------------------------------------------------
  繰り返し（文字見出し）
---------------------------------------------------------------------------------------*/
section.repeat.text {
  margin: 50px auto 100px;
  width: 94%;
  max-width: 960px;
}
section.repeat.text h2 {
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--base-color);
  font-size: 28px;
  line-height: 1em;
  font-weight: 400;
  text-align: center;
  color: #0075be;
}
section.repeat.text dl {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
section.repeat.text dl dt {
  margin-bottom: 30px;
  border-bottom: 2px solid var(--base-color);
}
section.repeat.text dl dt h3 {
  padding: 0 0 20px 1em;
  font-size: 20px;
  line-height: 1em;
  font-weight: 300;
  color: #0075be;
}
section.repeat.text dl dd {
  display: flex;
}
section.repeat.text dl dd img {
  margin-right: 30px;
  width: 360px;
}
@media screen and (max-width: 767px) {
  section.repeat.text {
    margin-bottom: 0;
  }
  section.repeat.text dl dd {
    flex-direction: column;
  }
  section.repeat.text dl dd img {
    margin: 0 auto 30px auto;
  }
}
/*--------------------------------------------------------------------------------------
  繰り返し（画像見出し）
---------------------------------------------------------------------------------------*/
section.repeat.bgimage {
  margin: 50px auto 100px;
  width: 100%;
}
section.repeat.bgimage dl {
}
section.repeat.bgimage dl dt {
  display: block;
  height: 400px;
  background-size: cover;
}
section.repeat.bgimage dl dd {
  display: flex;
  justify-content: space-between;
  margin: 100px auto;
  width: 960px;
  max-width: 94%;
}
section.repeat.bgimage dl dd h2 {
  display: flex;
  width: calc(50% - 5px);
  font-size: 30px;
  line-height: 30px;
  font-weight: 300;
  color: var(--base-color);
}
section.repeat.bgimage dl dd p {
  display: flex;
  width: calc(50% - 5px);
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
  color: #000;
}
section.repeat.bgimage dl:nth-child(even) dd {
  flex-direction: row-reverse;
}
section.repeat.bgimage dl:nth-child(even) dd h2 {
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  section.repeat.bgimage {
    margin-bottom: 0;
  }
  section.repeat.bgimage dl dt {
    height: 600px;
    background-position: center top;
  }
  section.repeat.bgimage dl dd {
    flex-direction: column!important;
    margin: 30px auto;
  }
  section.repeat.bgimage dl dd h2 {
    justify-content: center!important;
    margin-bottom: 30px;
    width: 100%;
  }
  section.repeat.bgimage dl dd p {
    width: 100%;
  }
}
