@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; */
  overflow-x: hidden;
}

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;
}

h2 {
  line-height: 110%;
  padding: 0px;
}

#detach-button-host {
  display: none;
}

.wfr-wrap {
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  position: fixed;
}

.wrap {
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  /* position: fixed; */
}


/*----------------------------------------------------------------------------------
  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 .pchead {
  width: 100%;
  height: 80px;
  background-color: var(--header);
  position: fixed;
  z-index: 100;
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  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;
  margin-left: 30px;
}

header div.logo h1,
header div.logo div {
  display: inline-block;
}

header div.logo h1 img,
header div.logo div img {
  display: inline-block;
  vertical-align: middle;
  max-height: 80px;
}

header div.logo h1 span,
header div.logo div span {
  display: inline-block;
  margin-left: 10px;
  line-height: 1;
  vertical-align: middle;
}

header .menu {
  height: 80px;
  width: 150px;
}

header ul li {
  text-align: center;
  list-style: none;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

header ul li a {
  line-height: 80px;
  display: block;
  text-decoration: none;
  width: 100%;
  height: 100%;
  z-index: 10;
  position: relative;
}

header ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  display: block;
  filter: brightness(70%);
  z-index: -1;
  height: 100%;
  transition: .2s;
}

header ul li a img:hover {
  width: 100%;
  filter: brightness(70%);
  transition: .4s;
}

header ul li a:hover:before {
  width: 100%;
}

.sphead {
  display: none;
}

@media screen and (max-width: 767px) {
  .sphead {
    display: block;
    width: 100%;
    height: 80px;
    background-color: var(--header);
    position: fixed;
    z-index: 100;
    left: 0;
    bottom: 0;
  }

  header .pchead {
    height: 60px;
  }

  header a {
    font-size: 13px;
  }

  header .menu {
    height: 80px;
    width: 100%;
    display: none;
  }

  header div.logo h1 img {
    width: auto;
    height: 40px;
  }

  .entry_sp_image {
    background: url(/image/_lp01_sp_entry.png230706013013230706033512.png) no-repeat center center / cover;
  }

}

/*--------------------------------------------------------------------------------------
  フッター
---------------------------------------------------------------------------------------*/
footer {
  background: var(--task);
}

footer div.sns {
  display: flex;
  justify-content: end;
  margin: 0 auto;
  padding: 15px 0;
  width: 100%;
}

footer ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding-left: 30px;
  padding-right: 30px;
}

footer ul li {
  /* margin-left: 30px; */
  font-size: 15px;
  line-height: 24px;
  font-weight: 300;
}
footer ul li:nth-child(2) {
  margin-left: 30px;
 margin-right: 30px;
}

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: no-repeat center center / cover;
}

footer div.wrap div {
  display: inline-block;
  margin: 0 auto 25px;
  width: auto;
}

footer div.wrap div img {
  display: inline-block;
  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;
  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;
}

.centered-message {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

@media screen and (max-width: 767px) {
  footer div.sns {
    justify-content: start;
  }

  footer a.pagetop {
    display: none;
  }

  footer div.wrap {
    /* margin-bottom: 50px; */
    padding: 80px 0;
  }

  .centered-message {
    top: 20%;
    font-size: 16px;
  }

}

/*--------------------------------------------------------------------------------------
  セクション
---------------------------------------------------------------------------------------*/
section.wrap.toppage {
  padding: 0;
}

section div.layer {
  background: no-repeat center top / 100% auto fixed;
  height: 700px;
}

section div.layermain {
  background: no-repeat center center / cover fixed;
  height: 100vh;
}

section div.layermain.ipad-background {
  background: initial;
  background-size: cover;
  background-position: center;
}


.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; */
    /* width: 88%; */
  }




  section div.layer {
    background: no-repeat center 50px / 100% auto fixed;
    height: 180px !important;
    margin-top: 80px !important;
  }

  .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 {
  padding-top: 10%;
  color: #fff;
}

section.title.ext div.wrap label {
  display: block;
}

section.title.ext div.wrap label:first-child {
  font-size: 50px;
  line-height: 150%;
  font-weight: 700;
}

section.title.ext div.wrap 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 {
    padding: 10px;
    text-align: center;
  }

  section.title.ext div.wrap 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 {
  width: 100%;
}

section.main div.wrap {
  width: 100%;
  position: relative;
}

section.main img.poster {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
   z-index: 0;
}

section.main video {
  width: 100%;
  position: relative;
}

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;
}

section.main .main_video_sp {
  display: none;
}

@media screen and (max-width: 767px) {

  section.main img.poster,
  section.main video {
    width: auto;
  }

  section.main div.item {
    left: 23%;
    top: 5%;
    transform: translateX(-50%);
  }

  section.main div.horizon div.item {
    width: 90%;
  }

  /* section.main div.item {
    display: none;
  } */

  section.main div.horizon div.item {
    width: 90%;
  }

  section.main div.item p:nth-child(1) {
    font-size: 40px;
  }

  section.main div.item p:nth-child(2) {
    font-size: 18px;
  }

  section.main div.vertical p:last-child {
    padding: 10px 5px;
  }

  section.main .main_video_sp {
    display: block;
    position: static;
  }

  section.main .main_video_pc,
  section.main img {
    display: none;
  }
}

/*--------------------------------------------------------------------------------------
  メイン2セクション
---------------------------------------------------------------------------------------*/
section.main2 {
  width: 100%;
}

section.main2 div.wrap {
  width: 100%;
  position: relative;
}

section.main2 img.poster {
  width: 100%;
}

section.main2 img.item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section.main2 div.item {
  display: flex;
  flex-direction: row-reverse;
  height: calc(100% - 10%);
  position: absolute;
  top: 10%;
  left: 10%
}

section.main2 div.horizon div.item {
  flex-direction: column;
}

section.main2 div.vertical p {
  writing-mode: vertical-rl;
  line-height: 1.5;
}

section.main2 div.vertical p:last-child {
  padding: 10px 20px;
}

section.main2 div.horizon p {
  line-height: 1.5;
}

section.main2 .slide-items,
section.main2 .slide-items_p {
  list-style: none;
  position: relative;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}

section.main2 .slide-items img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  transition: 4s linear transform .4s;
}

section.main2 .slide-items_p img {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  transition: 4s linear transform .4s;
  pointer-events: none;
  z-index: -1;
}

section.main2 .slide-items2_p img {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  transition: 4s linear transform .4s;
  pointer-events: none;
  z-index: -1;
}

section.main2 .slide-items ul li {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  transition: 4s linear transform .4s;
  object-fit: cover;
}

section.main2 .slide-items2 {
  list-style: none;
  position: relative;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}

section.main2 .slide-items2 img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: 4s linear transform .4s;
  width: 100%;
  height: auto;
}

section.main2 .slide-items2 ul li {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: 4s linear transform .4s;
  width: 100%;
}

.para_top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: 4s linear transform .4s;
  width: 100%;
  /* height: 100vh; */
}

.main2_sp,
.op_sp {
  display: none;
}


@media screen and (max-width: 767px) {
  section.main2 div.item {
    left: 23%;
    top: 5%;
    transform: translateX(-50%);
  }

  section.main2 div.horizon div.item {
    width: 90%;
  }

  section.main2 div.item p:nth-child(1) {
    font-size: 40px;
  }

  section.main2 div.item p:nth-child(2) {
    font-size: 18px;
  }

  section.main2 div.vertical p:last-child {
    padding: 10px 5px;
  }

  .main2_sp,
  .op_sp {
    display: block;
  }

  .main2_pc,
  .op_pc {
    display: none;
  }

}

/*--------------------------------------------------------------------------------------
  セカンドメインセクション
---------------------------------------------------------------------------------------*/
section.main3 {
  width: 100%;
  position: relative;
  /* z-index: 1; */
}

section.main3 div.wrap {
  width: 100%;
  margin: 0 auto;
}

section.main3 img.poster {
  /* width: 100%; */
  margin: 0 auto;
}

/* section.main3 div.item {
  display: flex;
  flex-direction: row-reverse;
  height: calc(100% - 10%);
  position: absolute;
  top: 10%;
  left: 10%
}
section.main3 div.horizon div.item {
  flex-direction: column;
}
section.main3 div.vertical p {
  writing-mode: vertical-rl;
  line-height: 1.5;
}
section.main3 div.vertical p:last-child {
  padding: 10px 20px;
}
section.main3 div.horizon p {
  line-height: 1.5;
} */
.main3_sp {
  display: none;
}

.main3_sp img,
.main3_sp img {
  margin: 0 auto;
}

section.main3 div.slide-items {
  /* list-style: none;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden; */
}

section.main3 div.slide-items img {
  /* position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; */
}

/* section div.main3_parallax {
  height: 100vh;
} */
@media screen and (max-width: 767px) {

  section.main3 img.poster {
    width: auto;
    margin: 0 auto;
  }

  .main3_sp {
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  .main3_pc {
    display: none;
  }
}

/*--------------------------------------------------------------------------------------
  コンテンツ画像セクション
---------------------------------------------------------------------------------------*/
section.contentphoto {
  width: 100%;
}

section.contentphoto div.wrap {
  width: 100%;
}

section.contentphoto img.poster {
  margin: 0 auto;
}

.contentphoto_sp {
  display: none;
}

section.contentphoto div.slide-items {
  list-style: none;
  width: 100%;
  height: auto;
}

section.contentphoto div.slide-items img {
  /* width: 100%; */
}

/* section div.contentphoto_parallax {
  height: 100vh;
} */
@media screen and (max-width: 767px) {
  .contentphoto_sp {
    display: block;
    /* width: auto; */
    margin: 0 auto;
  }

  .contentphoto_pc {
    display: none;
  }
}

/*--------------------------------------------------------------------------------------
  沿革
---------------------------------------------------------------------------------------*/
section.history {
  width: 100%;
  margin: 0;
  padding: 0;
}

section.history h2 {
  margin-bottom: 10px;
  padding-bottom: 5px;
  line-height: 150%;
  position: relative;
}

section.history h2:nth-child(2) {
  margin-bottom: 30px;
}

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: left;
}

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 {
    width: 85%;
    margin: 0 auto;
  }

  section.history h2 {
    margin-bottom: 0px;
    line-height: 100%;
  }

  section.history dl dt {
    min-width: 120px;
    max-width: 120px;
  }
}

/*--------------------------------------------------------------------------------------
  会社概要
---------------------------------------------------------------------------------------*/
section.detail {
  width: 100%;
  margin: 0;
  padding: 0;
  /* margin: 0 auto;
  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: 0;
  padding: 0;
  width: 100%;
  /* margin: 0 auto;
  width: 94%;
  max-width: 900px;
  top: 100px; */
}

section.detail2 h2 {
  margin-bottom: 40px;
  line-height: 150%;
  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;
  }
}

/*--------------------------------------------------------------------------------------
  募集要項2
---------------------------------------------------------------------------------------*/
section.detail3 {
  margin: 0 auto;
  width: 100%;
}

section.detail3 div.detailsction {
  margin: 0 auto;
  width: 94%;
  max-width: 900px;
  top: 100px;
}

section.detail3 h2 {
  line-height: 150%;
  text-align: center;
}

section.detail3 h2:nth-child(1) {
  margin-bottom: 5px;
}

section.detail3 h2:nth-child(2) {
  margin-bottom: 40px;
}

section.detail3 dl {
  display: flex;
}

section.detail3 dl dt {
  display: flex;
  align-items: center;
  margin-right: 2px;
  padding: 15px 10px;
  min-width: 240px;
  max-width: 240px;
  line-height: 30px;
  text-align: left;
}

section.detail3 dl dd {
  padding: 15px 10px;
  width: 100%;
  line-height: 30px;
}

section.detail3 dl dd span {
  padding: 0 10px 0;
  border-radius: 100vh;
  letter-spacing: 0.12em;
  margin-right: 5px;
  color: white;
}

@media screen and (max-width: 767px) {
  section.detail3 {
    margin-bottom: 0;
  }

  section.detail3 h2 {
    margin-bottom: 20px;
  }

  section.detail3 dl:first-of-type {
    border: none !important;
  }

  section.detail3 dl {
    flex-direction: column;
    border: none !important;
  }

  section.detail3 dl dd {
    padding: 10px 0 20px;
    border: none;
  }

  section.detail3 h2 {
    margin-bottom: 20px;
  }

  section.detail3 h2:nth-child(2) {
    margin-bottom: 30px;
  }

  section.detail3 div.detailsction {
    width: 85%;
  }

  section.detail3 dl dt {
    padding: 2px 5px;
    width: 100%;
    min-width: inherit;
    max-width: inherit;
  }

  section.detail3 dl dd {
    padding: 7px 10px 30px;
    border: none;
    line-height: 1.6;
  }
}

/*--------------------------------------------------------------------------------------
  募集要項3
---------------------------------------------------------------------------------------*/
section.detail4 {
  margin: 0 auto;
  width: 100%;
}

section.detail4 div.detailsction {
  margin: 0 auto;
  width: 94%;
  max-width: 900px;
  top: 100px;
}

section.detail4 h2 {
  line-height: 150%;
  text-align: center;
}

section.detail4 h2:nth-child(1) {
  margin-bottom: 5px;
}

section.detail4 h2:nth-child(2) {
  margin-bottom: 40px;
}

section.detail4 dl {
  display: flex;
}

section.detail4 dl dt {
  display: flex;
  align-items: center;
  margin-right: 2px;
  padding: 15px 10px;
  min-width: 240px;
  max-width: 240px;
  line-height: 30px;
  text-align: left;
}

section.detail4 dl dd {
  padding: 15px 10px;
  width: 100%;
  line-height: 30px;
}

section.detail4 dl dd span {
  padding: 0 10px 0;
  border-radius: 100vh;
  letter-spacing: 0.12em;
  margin-right: 5px;
  color: white;
}

@media screen and (max-width: 767px) {
  section.detail4 {
    margin-bottom: 0;
  }

  section.detail4 div.detailsction {
    width: 85%;
  }

  section.detail4 h2 {
    margin-bottom: 20px;
  }

  section.detail4 h2:nth-child(2) {
    margin-bottom: 30px;
  }

  section.detail4 dl {
    flex-direction: column;
    border: none;
  }

  section.detail4 dl dt {
    padding: 10px 10px 5px;
    width: 100%;
    min-width: inherit;
    max-width: inherit;
    /* border-bottom: 1px dotted #575f7f; タイトルで指定した色が入るように */
  }

  section.detail4 dl dd {
    padding: 5px 10px 20px;
    border: none;
    line-height: 1.6;
  }
}

/*--------------------------------------------------------------------------------------
  募集要項4
---------------------------------------------------------------------------------------*/
section.detail5 {
  margin: 0 auto;
  width: 100%;
}

section.detail5 div.detailsction {
  margin: 0 auto;
  width: 94%;
  max-width: 900px;
  top: 100px;
}

section.detail5 h2 {
  line-height: 150%;
  text-align: center;
}

section.detail5 h2:nth-child(1) {
  margin-bottom: 5px;
}

section.detail5 h2:nth-child(2) {
  margin-bottom: 40px;
}

section.detail5 dl {
  display: flex;
  padding-bottom: 10px;
}

section.detail5 dl dt {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  min-width: 240px;
  max-width: 240px;
  text-align: left;
  padding-left: 15px;
}

section.detail5 dl dd {
  padding: 15px 10px;
  width: 100%;
  line-height: 30px;
  padding-left: 15px;
}

section.detail5 dl dd span {
  padding: 0 10px 0;
  border-radius: 100vh;
  letter-spacing: 0.12em;
  margin-right: 5px;
  color: white;
}

@media screen and (max-width: 767px) {
  section.detail5 {
    margin-bottom: 0;
  }

  section.detail5 h2 {
    margin-bottom: 20px;
  }

  section.detail5 h2:nth-child(2) {
    margin-bottom: 40px;
  }

  section.detail5 div.detailsction {
    width: 85%;
  }

  section.detail5 dl {
    flex-direction: column;
    border: none;
  }

  section.detail5 dl dt {
    padding: 10px;
    width: 100%;
    min-width: inherit;
    max-width: inherit;
  }

  section.detail5 dl dd {
    padding: 7px 10px 20px;
    border: none;
    line-height: 1.6;
  }
}

/*--------------------------------------------------------------------------------------
  会社概要1
---------------------------------------------------------------------------------------*/
section.companydetail1 {
  margin: 0 auto;
  width: 100%;
}

section.companydetail1 div.detailsction {
  margin: 0 auto;
  width: 94%;
  max-width: 900px;
  top: 100px;
}

section.companydetail1 h2 {
  line-height: 150%;
  text-align: center;
}

section.companydetail1 h2:nth-child(1) {
  margin-bottom: 5px;
}

section.companydetail1 h2:nth-child(2) {
  margin-bottom: 40px;
}

section.companydetail1 dl {
  display: flex;
  border-bottom: 1px solid var(--color);
}

section.companydetail1 dl:first-of-type {
  border-top: 1px solid var(--color);
}

section.companydetail1 dl dt {
  display: flex;
  align-items: center;
  margin-right: 2px;
  padding: 15px 10px;
  min-width: 240px;
  max-width: 240px;
  line-height: 30px;
  text-align: left;
}

section.companydetail1 dl dd {
  padding: 15px 10px;
  width: 100%;
  line-height: 30px;
}

section.companydetail1 dl dd span {
  padding: 0 10px 0;
  border-radius: 100vh;
  letter-spacing: 0.12em;
  margin-right: 5px;
  color: white;
}

@media screen and (max-width: 767px) {
  section.companydetail1 {
    margin-bottom: 0;
  }

  section.companydetail1 h2 {
    margin-bottom: 20px;
  }

  section.companydetail1 h2:nth-child(2) {
    margin-bottom: 30px;
  }

  section.companydetail1 div.detailsction {
    width: 85%;
  }

  section.companydetail1 dl {
    flex-direction: column;
  }

  section.companydetail1 dl dt {
    padding: 15px 10px 5px;
    width: 100%;
    min-width: inherit;
    max-width: inherit;
    text-align: left;
  }

  section.companydetail1 dl dd {
    padding: 0px 10px 15px;
    border: none;
    line-height: 1.6;
  }
}

/*--------------------------------------------------------------------------------------
  会社概要2
---------------------------------------------------------------------------------------*/
section.companydetail2 {
  margin: 0 auto;
  width: 100%;
}

section.companydetail2 div.detailsction {
  margin: 0 auto;
  width: 94%;
  max-width: 900px;
  top: 100px;
}

section.companydetail2 h2 {
  line-height: 150%;
  text-align: center;
}

section.companydetail2 h2:nth-child(1) {
  margin-bottom: 5px;
}

section.companydetail2 h2:nth-child(2) {
  margin-bottom: 40px;
}

section.companydetail2 dl {
  display: flex;
}

section.companydetail2 dl dt {
  display: flex;
  align-items: center;
  margin-right: 2px;
  padding: 15px 10px;
  min-width: 240px;
  max-width: 240px;
  line-height: 30px;
  text-align: left;
}

section.companydetail2 dl dd {
  padding: 15px 10px;
  width: 100%;
  line-height: 30px;
}

section.companydetail2 dl dd span {
  padding: 0 10px 0;
  border-radius: 100vh;
  letter-spacing: 0.12em;
  margin-right: 5px;
  color: white;
}

@media screen and (max-width: 767px) {
  section.companydetail2 {
    margin-bottom: 0;
  }

  section.companydetail2 h2 {
    margin-bottom: 20px;
  }

  section.companydetail2 h2:nth-child(2) {
    margin-bottom: 30px;
  }

  section.companydetail2 div.detailsction {
    width: 85%;
  }

  section.companydetail2 dl {
    flex-direction: column;
    border: none;
  }

  section.companydetail2 dl dt {
    padding: 10px 10px 5px;
    width: 100%;
    min-width: inherit;
    max-width: inherit;
    text-align: left;
  }

  section.companydetail2 dl dd {
    padding: 5px 10px 20px;
    border: none;
    line-height: 1.6;
  }
}

/*--------------------------------------------------------------------------------------
  会社概要3
---------------------------------------------------------------------------------------*/
section.companydetail3 {
  margin: 0 auto;
  width: 100%;
}

section.companydetail3 div.detailsction {
  margin: 0 auto;
  width: 94%;
  max-width: 900px;
  top: 100px;
}

section.companydetail3 h2 {
  line-height: 150%;
  text-align: center;
}

section.companydetail3 h2:nth-child(1) {
  margin-bottom: 5px;
}

section.companydetail3 h2:nth-child(2) {
  margin-bottom: 40px;
}

section.companydetail3 dl {
  display: flex;
  padding-bottom: 10px;
}

section.companydetail3 dl dt {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  min-width: 240px;
  max-width: 240px;
  text-align: left;
  padding-left: 15px;
}

section.companydetail3 dl dd {
  padding: 15px 10px;
  width: 100% !important;
  line-height: 30px;
  padding-left: 15px;
}

section.companydetail3 dl dd span {
  padding: 0 10px 0;
  border-radius: 100vh;
  letter-spacing: 0.12em;
  margin-right: 5px;
  color: white;
}

@media screen and (max-width: 767px) {
  section.companydetail3 {
    margin-bottom: 0;
  }

  section.companydetail3 h2 {
    margin-bottom: 20px;
  }

  section.companydetail2 div.detailsction {
    width: 85%;
  }

  section.companydetail3 dl {
    flex-direction: column;
    border: none;
  }

  section.companydetail3 dl dt {
    padding: 10px 10px 5px;
    width: 100%;
    min-width: inherit;
    max-width: inherit;
    text-align: left;
  }

  section.companydetail3 dl dd {
    padding: 5px 10px 20px;
    border: none;
    line-height: 1.6;
  }
}

/*--------------------------------------------------------------------------------------
  選考フロー
---------------------------------------------------------------------------------------*/
section.flow {
  margin: 0;
  padding: 0;
  width: 100%;
}

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; */
  margin: 0;
  padding: 0;
  width: 100%;
}

section.table h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  line-height: 1em;
  margin-bottom: 10px;
}

section.table h2:nth-child(2) {
  margin-bottom: 30px;
}

/* 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 h2 {
    margin: 0 auto 40px;
  }

  section.table h2 {
    margin: 0 auto 5px;
  }

  section.table h2:nth-child(2) {
    margin-bottom: 30px;
  }

}

/*--------------------------------------------------------------------------------------
  対応エリア
---------------------------------------------------------------------------------------*/
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; */
  border-bottom: 1px solid;
}

section.table2 dl:first-of-type {
  /* border-top: 1px solid #cfcfcf; */
  border-top: 1px solid;
}

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 {
    width: 85%;
    padding-bottom: 50px;
  }

  section.table2 h2 {
    margin-bottom: 3px;
  }

  section.table2 p {
    margin: 0 auto 5px;
  }

  section.table2 dl {
    flex-direction: column;
    border-bottom: 1px solid
  }

  section.table2 dl dt {
    font-size: 13px;
    padding: 15px 10px 5px;
    width: 100%;
    text-align: left;
  }

  section.table2 dl dd {
    padding: 3px 10px 15px;
    width: 100%;
    border: none;
  }
}

/*--------------------------------------------------------------------------------------
  営業拠点
---------------------------------------------------------------------------------------*/
section.address {
  width: 100%;
  margin: 0;
  padding: 0;
}

section.address h2 {
  margin-bottom: 40px;
  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: 60%;
  padding-top: 15px;
}

section.address div.wrap {
  margin-left: 4%;
  width: 40%;
}

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 {
  padding: 15px 10px;
  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 10px;
  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: 30px;
  }

  section.address div {
    flex-direction: column-reverse;
  }

  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: 95%;
  }

  section.address div.wrap {
    margin: 0;
    width: 100%;
  }

  section.address dl {
    flex-direction: column;
  }

  section.address dl dt {
    padding: 5px 10px 0;
    width: 100%;
    min-width: inherit;
    max-width: inherit;
    border: none;
  }

  section.address dl dd {
    padding: 0 10px 15px;
    line-height: 1.6;
    border: none;
  }

  section.address div.map {
    margin: 20px 0;
  }

  section.address div.map iframe {
    height: 250px;
  }
}

/*--------------------------------------------------------------------------------------
  メールフォーム
---------------------------------------------------------------------------------------*/
section.mailform {
  width: 100%;
  margin: 0;
  padding: 0;
}

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: 0 auto;
  width: 100%;
}

section.entryform div.entry_wrap {
  margin: 0 auto;
  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;
  text-align: center;
  margin: 0 auto;
}

section.entryform dl {
  display: flex;
  padding: 30px 0 30px;
  border-bottom: #a0a0a0 solid 1px;
  line-height: 45px;
}

section.entryform dl dt {
  width: 30%;
}

section.entryform dl dd {
  font-size: 20px;
  font-weight: 300;
  width: 70%;
}

section.entryform dl dd .entry_text {
  width: 100%;
  padding: 12px 10px;
}

section.entryform dl dt span {
  margin: 0 10px;
  font-size: 12px;
  color: white;
  padding: 1px 5px 1px;
}

section.entryform dl.gen div {
  display: flex;
  font-size: 15px;
}

section.entryform dl.gen div input {
  margin-right: 10px;
  transform: scale(1.7);
}

section.entryform dl.gen div input:nth-child(2) {
  margin-left: 20px;
}

section.entryform div.privacy_back {
  width: 100%;
  margin: 50px 0 50px;
  /* border: #e6e6e6 1px solid; */
  /* height: 210px; */
}

section.entryform div.privacy {
  /* overflow-x: scroll; */
  /* height: 200px; */
  margin: 0 auto;
  width: 90%;
  margin-top: 10px;
  padding: 15px;
  border: #e6e6e6 1px solid;
}

.privacy li {
  list-style: disc;
  list-style-position: inside;
}

section.entryform div.consent {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}

section.entryform div.consent span {
  margin-left: 10px;
}

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 button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  margin: 0 auto;
  width: 35%;
  height: 70px;
  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:hover {
  filter: brightness(70%);
  transition: 1s;
}

section.entryform .val {
  font-size: 15px;
  color: red;
}

section.entryform div.confirm_btn {
  display: flex;
}


@media screen and (max-width: 767px) {
  section.entryform dl {
    display: block;
    padding: 10px 0 10px !important;
    border-bottom: none;
  }

  section.entryform dl dd {
    width: 95%;
    margin-left: 10px;
    margin: 0 auto;
  }

  section.entryform dl dt {
    width: 100%;
    font-size: 14px;
  }

  section.entryform {
    padding-left: 7.5% !important;
    padding-right: 7.5% !important;
  }

  section.entryform>p {
    padding: 0 0 15px 0 !important;
  }

  section.entryform dl dt span {
    font-size: 11px;
    /*サイズ固定*/
    vertical-align: middle;
  }

  /**プライバシーポリシー**/
  section.entryform div.privacy_back {
    margin: 15px 0 40px !important;
  }

  section.entryform div.privacy {
    width: 100%;
  }

  section.entryform div.consent {
    margin-bottom: 40px !important;
  }

  .privacy li {
    font-size: 13px;
    /*サイズ固定*/
    letter-spacing: 0.02em;
    line-height: 1.6;
  }

  section.entryform div.consent span {
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1.6;
  }

  section.entryform div.confirm_btn {
    display: block;
  }

  section.entryform button {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------------------------------
  写真集
---------------------------------------------------------------------------------------*/
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;
}

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 li {
    width: 32%;
    /* height: 100%; */
  }

  section.book {
    width: 88%;
  }

  section.book ul {
    justify-content: center;
  }

}

/*--------------------------------------------------------------------------------------
  写真のみパターン
---------------------------------------------------------------------------------------*/
section.photo {
  width: 100%;
}

section.photo div.image_items1,
section.photo div.image_items2 {
  display: flex;
  width: 100%;
  margin: 0 auto;
  /* height: 40%; */
}

section.photo img.poster {
  width: 25%;
}

@media screen and (max-width: 767px) {

  section.photo div.image_items1,
  section.photo div.image_items2 {
    flex-wrap: wrap;
  }

  section.photo img.poster {
    width: 50%;
  }
}

/* パターン6枚 */
section.photo div.image2_items1,
section.photo div.image2_items2 {
  display: flex;
  width: 100%;
  height: auto;
}

section.photo div.image2_items1 .image2_poster,
section.photo div.image2_items2 .image2_poster6 {
  width: 50%;
  height: auto;
}

section.photo div.image2_items1 .image2_poster,
section.photo div.image2_items1 .image2_poster2 {
  padding-right: 5px;
  padding-bottom: 5px;
}

section.photo div.image2_items1 .image2_poster3 {
  padding-bottom: 5px;
}

section.photo div.image2_items2 .image2_poster6,
section.photo div.image2_items2 .image2_poster5 {
  padding-left: 5px;
}

section.photo div.image2_items1 .image2_poster2,
section.photo div.image2_items1 .image2_poster3,
section.photo div.image2_items2 .image2_poster4,
section.photo div.image2_items2 .image2_poster5 {
  width: 25%;
  /* padding: 5px; */
}

@media screen and (max-width: 959px) {

  section.photo div.image2_items1,
  section.photo div.image2_items2 {
    flex-wrap: wrap;
  }

  section.photo div.image2_items1 .image2_poster,
  section.photo div.image2_items2 .image2_poster6 {
    width: 100%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  section.photo div.image2_items2 .image2_poster6 {
    padding-top: 5px;
  }

  section.photo div.image2_items1 .image2_poster2,
  section.photo div.image2_items1 .image2_poster3,
  section.photo div.image2_items2 .image2_poster4,
  section.photo div.image2_items2 .image2_poster5 {
    width: 50%;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------------------------------
  写真文字ありパターン
---------------------------------------------------------------------------------------*/
section.pattern {
  width: 100%;
}

section.pattern .wrap_image .item,
section.pattern .wrap_image2 .item,
section.pattern .wrap_image3 .item,
section.pattern .wrap_image4 .item {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 20px;
}

/* パターン4枚 */
section.pattern div.pattern_items {
  display: flex;
  width: 80%;
  margin: 0 auto;
}

section.pattern .pattern_items img {
  width: 25%;
  padding: 10px;
  padding-bottom: 20px;
}

@media screen and (max-width: 1000px) {

  section.pattern div.pattern_items {
    flex-wrap: wrap;
  }

  section.pattern .pattern_items img {
    width: 50%;
  }
}

/* パターン６枚 */
section.pattern div.image2_items1 {
  width: 55%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

section.pattern div.image2_items1 {
  padding-bottom: 20px;
}

section.pattern .wrap_image2 img {
  width: 33%;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  section.pattern .wrap_image2 img {
    width: 50%;
  }
}

/* パターン8枚 */
section.pattern div.image3_items1,
section.pattern div.image3_items2 {
  width: 75%;
  display: flex;
  margin: 0 auto;
}

section.pattern div.image3_items2 {
  padding-bottom: 20px;
}

section.pattern .wrap_image3 img {
  width: 25%;
  padding: 5px;
}

@media screen and (max-width: 767px) {

  section.pattern div.image3_items1,
  section.pattern div.image3_items2 {
    flex-wrap: wrap;
  }

  section.pattern .wrap_image3 img {
    width: 50%;
  }

  section.pattern .wrap_image .item,
  section.pattern .wrap_image2 .item,
  section.pattern .wrap_image3 .item,
  section.pattern .wrap_image4 .item {
    width: 88%;
    margin: 0 auto;
    padding-bottom: 20px;
  }

  section.pattern div.pattern_items {
    width: 88%;
  }

  section.pattern .pattern_items img {
    padding-bottom: 10px;
  }
}

/* スライド */
section.pattern div.image4_items1 {
  width: 90%;
  display: flex;
  margin: 0 auto;
  /* overflow: hidden; */
}

section.pattern div.image4_items1 {
  padding-bottom: 20px;
}

section.pattern .wrap_image4 img {
  width: 25%;
  padding: 5px;
}

/*--------------------------------------------------------------------------------------
  バナー
---------------------------------------------------------------------------------------*/
section.banner {
  width: 100%;
}

section.banner div.wrap_banner {
  /* width: 50%; */
  margin: 0 auto;
}

section.banner img {
  width: auto;
  height: auto;
  margin: 0 auto;
}

section.banner .banner_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  section.banner .banner_sp {
    display: block;
  }

  section.banner .banner_pc {
    display: none;
  }

}

/*--------------------------------------------------------------------------------------
  求人背景
---------------------------------------------------------------------------------------*/
section.offer {
  width: 100%;
}

section.offer .offer_items {
  width: 100%;
  margin: 0 auto;
}

section.offer img {
  width: 40%;
  height: auto;
  margin: 0 auto;
}

section.offer div.item {
  text-align: left;
  padding: 30px 0 30px;
  width: 35%;
  margin: 0 auto;
}

section.offer div.item h2 {
  border-bottom: 1px solid rgb(156, 156, 156);
  padding-bottom: 10px;
}

section.offer div.item p {
  padding-top: 10px;
}

@media screen and (max-width: 1000px) {
  section.offer img {
    width: 90%;
  }

  section.offer div.item {
    width: 90%;
  }

  section.offer div.item {
    padding: 0;
  }

  section.offer div.item h2 {
    padding: 15px 0 5px;
  }

  section.offer div.item p {
    padding-top: 5px;
  }
}

@media screen and (max-width: 767px) {
  section.offer {
    width: 88%;
    margin: 0 auto;
  }

  section.offer img {
    width: 100%;
  }

  section.offer div.item {
    width: 100%;
  }
}

/*--------------------------------------------------------------------------------------
  求人背景2
---------------------------------------------------------------------------------------*/
section.offer2 {
  width: 100%;
  margin: 0;
}

section.offer2 div.offer2_items {
  display: flex;
  width: 80%;
  margin: 0 auto;
}

section.offer2 img {
  width: 25%;
  padding: 30px 0 30px;
  height: 100%;
}

section.offer2 div.item1,
section.offer2 div.item2 {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

section.offer2 div.item2 p {
  padding: 15px 0 15px;
}

@media screen and (max-width: 1000px) {
  section.offer2 div.offer2_items {
    width: 100%;
    flex-wrap: wrap;
    padding: 0;
  }

  section.offer2 img {
    width: 50%;
    padding: 0;
  }

  section.offer2 div.item2 h2 {
    padding-top: 30px;
  }

  section.offer2 div.item2 {
    text-align: left;
    width: 90%;
  }
}

@media screen and (max-width: 767px) {

  section.offer2 div.item1,
  section.offer2 div.item2 {
    width: 88%;
    padding-bottom: 15px;
  }

  section.offer2 div.item2 p {
    padding: 10px 0 30px;
  }
}

/*--------------------------------------------------------------------------------------
求人背景3
---------------------------------------------------------------------------------------*/
section.offer3 div.offer3_items {
  width: 85%;
  margin: 0 0 0 auto;
  display: flex;
}

section.offer3 div.offer3_item1 {
  position: relative;
  z-index: 99;
  padding-top: 100px;
}

section.offer3 div.offer3_item1 p {
  margin-right: -50px;
  line-height: 100%;
}

section.offer3 div.offer3_item1 p:nth-child(1) {
  width: 80px;
  padding-top: 20px;
}

section.offer3 div.offer3_item1 p:nth-child(2) {
  margin-top: 20px;
  width: 300px;
  text-align: center;
  padding: 7px 0 5px;
}

section.offer3 div.offer3_item2 {
  padding: 100px 0 100px;
}

section.offer3 div.offer3_item3 {
  width: 60%;
  margin: 0 auto;
}

section.offer3 div.offer3_item3 h2 {
  line-height: 150%;
  margin-bottom: 30px;
}

section.offer3 div.offer3_item3 div {
  width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 1400px) {
  section.offer3 div.offer3_items {
    display: block;
  }

  section.offer3 div.offer3_item1 p {
    margin-left: -20px;
  }

  section.offer3 div.offer3_item2 {
    padding: 200px 0 50px;
  }

  section.offer3 div.offer3_item2 {
    margin-top: -130px;
  }

  section.offer3 div.offer3_item3 {
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  section.offer3 div.offer3_item1 p:nth-child(2) {
    margin-top: 10px;
    width: 250px;
    text-align: right;
  }

  section.offer3 div.offer3_item2 {
    padding: 170px 0 80px;
  }

  section.offer3 div.offer3_item3 h2 {
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------------------------------
求人背景4
---------------------------------------------------------------------------------------*/
section.offer4 {
  width: 100%;
}

section.offer4 div.offer4_item1 {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 40px;
}

section.offer4 div.offer4_item1 p {
  line-height: 150%;
}

section.offer4 div.offer4_item2 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  margin: 0 auto;
  padding: 30px 30px 20px;
  margin-left: -30px;
  margin-right: -30px;
  border: #000 solid 1px;
}

section.offer4 div.offer4_item2 img {
  width: 100%;
  height: auto;
}

section.offer4 div.offer4_background {
  width: 70%;
  margin: 0 auto;
  padding: 30px 0 30px;
}

section.offer4 div.offer4_item2 div {
  width: 50%;
  text-align: center;
}

section.offer4 h2 {
  margin-bottom: 20px;
  line-height: 150%;
}

@media screen and (max-width: 1000px) {
  section.offer4 div.offer4_item1 {
    margin-bottom: 20px;
    width: 95%;
  }

  section.offer4 div.offer4_item2 {
    display: block;
    padding: 10px 30px 20px;
    margin-left: -5px;
    margin-right: -5px;
  }

  section.offer4 div.offer4_background {
    width: 95%;
    padding: 15px 0 15px;
  }

  section.offer4 div.offer4_item2 div {
    width: 98%;
    text-align: center;
    margin: 0 auto;
  }

  section.offer4 div.offer4_item2 div h2 {
    margin-top: 20px;
  }

  section.offer4 div.offer4_item2 div p br {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  section.offer4 div.offer4_item1 {
    margin-bottom: 15px;
    width: 88%;
  }

  section.offer4 div.offer4_background {
    width: 88%;
    padding: 20px 0 20px;
  }

  section.offer4 div.offer4_item2 {
    padding: 30px 25px 30px;
    margin-left: -10px;
    margin-right: -10px;
  }

  section.offer4 div.offer4_item2 div h2 {
    margin-top: 15px;
  }

  section.offer4 h2 {
    margin-bottom: 5px;
    line-height: 160%;
  }
}

/*--------------------------------------------------------------------------------------
求人背景5
---------------------------------------------------------------------------------------*/
section.offer5.view {
  padding: 120px 5% 170px;
  background-size: cover;
  background-position: center center;
}

section.offer5.view div.wrap {
  margin: 0 auto;
  width: 94%;
  max-width: 1120px;
  text-align: center;
}

section.offer5.view h2 {
  line-height: 150%;
}

section.offer5.view div.wrap p:nth-child(1) {
  margin-bottom: 50px;
}

section.offer5.view div.wrap p:nth-child(2) {
  margin-bottom: 20px;
  font-family: 'Vollkorn', serif;
}

@media screen and (max-width: 767px) {
  section.offer5.view {
    margin-bottom: 0;
  }

  section.offer5.view div.wrap p:nth-child(2),
  section.offer5.view div.wrap p:nth-child(3) {
    text-align: left;
    width: 94%;
  }

  section.offer5.view h2 {
    line-height: 100%;
  }

  section.offer5.view div.wrap {
    width: 88%;
  }

  section.offer5.view div.wrap p:nth-child(2) {
    margin-bottom: 20px;
  }

  section.offer5.view div.wrap p:nth-child(1) {
    margin-bottom: 5px;
  }
}

/*--------------------------------------------------------------------------------------
  求人背景6
---------------------------------------------------------------------------------------*/
section.offer6 {
  width: 100%;
}

section.offer6 div.offer6_items {
  display: flex;
  width: 80%;
  margin: 0 auto;
  margin-bottom: -250px;
}

section.offer6 img {
  width: 27%;
  height: 100%;
}

section.offer6 div.item1 {
  width: 80%;
  margin: 0 auto;
}

section.offer6 div.item1 p:nth-child(1) {
  line-height: 130%;
}

section.offer6 div.item1 p:nth-child(2) {
  margin-bottom: 50px;
}

section.offer6 div.item2 {
  text-align: left;
}

section.offer6 div.item2 {
  width: 80%;
  margin: 0 0 0 auto;
  padding: 330px 0 60px;
}

section.offer6 div.item2 div {
  width: 80%;
  margin: 0 auto;
  padding-right: 150px;
}

section.offer6 div.item2 h2 span {
  padding: 10px 20px 10px;
}

section.offer6 div.item2 h2 {
  margin-bottom: 35px;
}

section.offer6 div.item2 p {
  padding: 15px 0 15px;
}

@media screen and (max-width: 1000px) {
  section.offer6 div.offer6_items {
    width: 100%;
    margin-bottom: 0;
  }

  section.offer6 div.item1 {
    width: 95%;
  }

  section.offer6 img {
    width: 33%;
    margin: 0 auto;
  }

  section.offer6 div.item2 {
    width: 100%;
    margin: 0 0 0 auto;
    padding: 50px 0 60px;
  }

  section.offer6 div.item2 div {
    width: 95%;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  section.offer6 div.item1 {
    width: 88%;
  }

  section.offer6 div.item1 p:nth-child(2) {
    margin-bottom: 15px;
  }

  section.offer6 div.item2 {
    margin: 0 auto;
    padding: 30px 0;
  }

  section.offer6 div.item2 div {
    width: 88%;
  }

  section.offer6 div.item2 h2 {
    margin-bottom: 20px;
  }

  section.offer6 div.item2 h2 span {
    padding: 7px 15px 4px;
  }

  section.offer6 div.item2 p {
    padding: 5px 0;
  }

}

/*--------------------------------------------------------------------------------------
求人の背景7
---------------------------------------------------------------------------------------*/
section.offer7.view {
  background-size: cover;
  background-position: center center;
}

section.offer7.view div.wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 1120px;
  text-align: center;
}

section.offer7.view h2 {
  margin-bottom: 30px;
  line-height: 150%;
}

section.offer7.view div.wrap div {
  margin: 0 auto;
  padding: 90px 50px;
  max-width: 800px;
}

section.offer7.view div.wrap p {
  line-height: 180%;
}

@media screen and (max-width: 767px) {
  section.offer7.view {
    margin-bottom: 0;
  }

  section.offer7.view div.wrap div {
    padding: 30px 20px;
    width: 88%;
  }

  section.offer7.view h2 {
    margin-top: 30px;
    padding-bottom: 20px;
    line-height: 100%;
    width: 95%;
    margin: 0 auto;
  }

  section.offer7.view div.wrap p {
    line-height: 130%;
    width: 95%;
    margin: 0 auto;
  }

  section.offer7.view div.wrap {
    text-align: left;
  }
}

/*--------------------------------------------------------------------------------------
求人の背景8
---------------------------------------------------------------------------------------*/
section.offer8.view div.wrap {
  margin: 0 auto;
  width: 80%;
  text-align: center;
}

section.offer8.view h2 {
  margin-bottom: 30px;
  line-height: 150%;
}

section.offer8.view div.wrap p {
  line-height: 180%;
}

@media screen and (max-width: 767px) {
  section.offer8.view {
    margin-bottom: 0;
  }

  section.offer8.view div.wrap {
    margin: 0 auto;
    width: 88%;
  }

  section.offer8.view br {
    display: none
  }

  section.offer8.view h2 {
    margin-bottom: 15px;
  }

  section.offer8.view div.wrap p {
    line-height: 160%;
  }
}

/*--------------------------------------------------------------------------------------
求人の背景9
---------------------------------------------------------------------------------------*/
section.offer9 {
  width: 100%;
}

section.offer9 .wrap_image .item {
  text-align: center;
  padding-bottom: 20px;
}

section.offer9 div.offer9_items {
  display: flex;
  width: 80%;
  margin: 0 auto;
  margin-bottom: -100px;
}

section.offer9 div.offer9_items img {
  width: 100%;
  height: auto;
}

section.offer9 div.offer9_items .offer9_item1 {
  padding: 10px;
  width: 40%;
}

section.offer9 div.offer9_items .offer9_item2 {
  display: flex;
  flex-wrap: wrap;
  width: 60%;
}

section.offer9 div.offer9_items .offer9_poster2,
section.offer9 div.offer9_items .offer9_poster3 {
  width: 50%;
  padding: 10px;
}

section.offer9 div.offer9_items .offer9_poster4 {
  width: 100%;
  padding: 10px;
}

section.offer9 div.offer9_items img {
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.1);
}

section.offer9 div.offer9_item3 {
  width: 60%;
  margin: 0 auto;
  padding: 10px;
  position: relative;
  z-index: 99;
}

section.offer9 div.offer9_item3 div {
  width: 100%;
  padding: 40px 0 40px;
}

section.offer9 div.offer9_item3 div p:nth-child(1) {
  padding-bottom: 20px;
}

section.offer9 div.offer9_item3 div p:nth-child(1),
section.offer9 div.offer9_item3 div p:nth-child(2) {
  width: 95%;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  section.offer9 div.offer9_items {
    width: 95%;
    margin-bottom: -50px;
  }

  section.offer9 div.offer9_item3 div {
    padding: 20px 0 20px;
  }

  section.offer9 div.offer9_item3 {
    width: 95%;
  }
}

@media screen and (max-width: 767px) {
  section.offer9 div.offer9_item3 {
    width: 88%;
  }

  section.offer9 div.offer9_item3 div p:nth-child(1) {
    width: 100%;
    padding-bottom: 10px;
  }

  section.offer9 div.offer9_item3 div p:nth-child(2) {
    width: 100%;
  }

  section.offer9 div.offer9_item3 div {
    padding: 30px 20px;
  }

  section.offer9 div.offer9_items img {
    box-shadow: 4px 4px 4px#bdbdbd;
  }

  section.offer9 div.offer9_items {
    display: block;
  }

  section.offer9 div.offer9_items .offer9_item1 {
    width: 100%;
  }

  section.offer9 div.offer9_items .offer9_item2 {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {

  section.offer9 div.offer9_items .offer9_poster2,
  section.offer9 div.offer9_items .offer9_poster3 {
    padding: 5px;
  }

  section.offer9 div.offer9_items .offer9_poster4 {
    padding: 5px;
  }

  section.offer9 div.offer9_items .offer9_item1 {
    padding: 5px;
  }
}

/*--------------------------------------------------------------------------------------
求人背景10
---------------------------------------------------------------------------------------*/
section.offer10.view {
  padding: 150px 0 100px;
  background-size: cover;
  background-position: center center;
  width: 100%;
}

section.offer10.view div.wrap {
  margin: 0 auto;
  width: 80%;
  text-align: left;
}

section.offer10.view h2 {
  line-height: 150%;
}

section.offer10.view div.wrap p:nth-child(1) {
  margin-bottom: 20px;
}

section.offer10.view div.wrap p:nth-child(3),
section.offer10.view div.wrap p:nth-child(5) {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  section.offer10.view {
    margin-bottom: 0;
  }

  section.offer10.view div.wrap {
    width: 88%;
  }
}

/*--------------------------------------------------------------------------------------
  求人背景11
---------------------------------------------------------------------------------------*/
section.offer11 {
  width: 100%;
  margin: 0;
}

section.offer11 div.offer11_item1 {
  text-align: center;
  padding-bottom: 50px;
  width: 75%;
  margin: 0 auto;
}

section.offer11 div.offer11_item1 p:nth-child(2) {
  margin-bottom: 30px;
}

section.offer11 div.offer11_item1 p:nth-child(3) {
  line-height: 200%;
}

section.offer11 div.offer11_items {
  display: flex;
  width: 75%;
  margin: 0 auto;
}

section.offer11 div.offer11_item:nth-child(1),
section.offer11 div.offer11_item:nth-child(2) {
  margin-right: 40px;
}

section.offer11 div.offer11_item {
  width: 33%;
  margin: 0 auto;
}

section.offer11 div.offer11_item2 {
  width: 90%;
  margin: 0 auto;
}

section.offer11 div.offer11_item2 p:nth-child(2) {
  padding-top: 15px;
}

section.offer11 div.offer11_item2 p:nth-child(3) {
  padding-top: 5px;
}

section.offer11 div.offer11_item img {
  width: 100%;
  margin-bottom: -30px;
}

@media screen and (max-width: 1024px) {
  section.offer11 div.offer11_items {
    display: block;
    width: 75%;
  }

  section.offer11 div.offer11_item {
    width: 80%;
    padding-bottom: 40px;
    margin: 0 auto;
  }

  section.offer11 div.offer11_item:nth-child(1),
  section.offer11 div.offer11_item:nth-child(2) {
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  section.offer11 div.offer11_items {
    width: 88%;
  }

  section.offer11 div.offer11_item1 p:nth-child(2) {
    margin-bottom: 15px;
  }

  section.offer11 div.offer11_item {
    width: 100%;
    padding-bottom: 40px;
    margin: 0 auto;
  }

  section.offer11 div.offer11_item2 {
    width: 97%;
    margin: 0 auto;
  }

  section.offer11 div.offer11_item:nth-child(1),
  section.offer11 div.offer11_item:nth-child(2) {
    margin: 0 auto;
  }

  section.offer11 div.offer11_item1 p:nth-child(3) br {
    display: none;
  }

  section.offer11 div.offer11_item2 p:nth-child(2) {
    padding-top: 15px;
  }

  section.offer11 div.offer11_item2 p:nth-child(3) {
    padding-top: 5px;
  }
}

/*--------------------------------------------------------------------------------------
  求人背景12
---------------------------------------------------------------------------------------*/
section.offer12 .offer12_items1 {
  margin: 0 auto;
}

section.offer12 .offer12_items .item {
  width: 60%;
  margin: 0 auto;
}

section.offer12 .offer12_items1 li {
  margin: 20px;
  height: auto;
  padding-bottom: 20px;
}

section.offer12 .slider-3 {
  display: flex;
}

section.offer12 .offer12_items1 img {
  margin-bottom: -140px;
  width: 100%;
  height: 50vh;
  padding: 20px;
}

section.offer12 h1 {
  font-size: 100px;
  margin-bottom: -40px;
}

section.offer12 .offer12_items1 h2:nth-of-type(1) {
  margin: 0;
  width: 95%;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 20px;
  line-height: 130%;
}

section.offer12 .offer12_items1 p {
  padding: 20px 0 10px;
  padding-left: 20px;
  width: 95%;
}

.slider-3 .slick-slide {
  margin: 0 60px;
  position: relative;
}

.slider-3 .slick-slide .slide-img {
  width: 900px;
}

.slider-3 .slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.slider-3 .slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #09000d;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}

.slider-3 .slick-next {
  right: 0;
}

.slider-3 .slick-prev {
  left: 0;
}

.slider-3 .slick-next::before {
  left: 20px;
}

.slider-3 .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 22px;
}

.dots-3 .slick-dots {
  text-align: center;
}

.dots-3 .slick-dots li {
  display: inline-block;
}

.dots-3 .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}

.dots-3 .slick-dots .slick-active button {
  background: #0a467d;
}

@media screen and (max-width: 1000px) {
  .slider-3 .slick-slide .slide-img {
    max-width: 750px;
  }
}

@media screen and (max-width: 767px) {
  .slider-3 .slick-slide .slide-img {
    max-width: 400px;
    padding-bottom: 50px;
  }

  .slider-3 .slick-arrow {
    display: none !important;
  }

  section.offer12 .offer12_items1 img {
    height: 25vh;
    margin-bottom: -147px;
    padding: 25px;
  }

  section.offer12 h1 {
    font-size: 70px;
    margin-top: 40px;
    margin-left: 5px;
  }

  section.offer12 .offer12_items .item {
    width: 88%;
  }

  section.offer12 .offer12_items1 h2:nth-of-type(1) {
    width: 88%;
    padding-top: 40px;
    padding-bottom: 5px;
  }

  section.offer12 .offer12_items1 p {
    padding: 10px 0;
    width: 88%;
    margin: 0 auto;
  }

  section.offer12 .offer12_items1 li {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 400px) {
  .slider-3 .slick-slide .slide-img {
    max-width: 300px;
  }
}

@media screen and (max-width: 300px) {
  .slider-3 .slick-slide .slide-img {
    max-width: 250px;
  }
}

/*--------------------------------------------------------------------------------------
求人背景13
---------------------------------------------------------------------------------------*/

section.offer13 div.offer13_item1 {
  display: flex;
  padding-bottom: 30px;
  width: 80%;
  margin: 0 auto;
}

section.offer13 div.offer13_item1 p:nth-child(1) {
  line-height: 30px;
}

section.offer13 div.offer13_item1 p:nth-child(2) {
  line-height: 50px;
  margin-left: 30px;
}

section.offer13 div.offer13_item2 {
  width: 72%;
  margin: 0 auto;
  margin-bottom: 30px;
}

section.offer13 div.offer13_item2 h2 {
  margin-bottom: 20px;
  line-height: 150%;
}

section.offer13 div.offer13_item2 p {
  line-height: 120%;
}

section.offer13 div.offer13_item3 {
  width: 80%;
  margin: 0 auto;
}

section.offer13 div.offer13_item3 img {
  width: 90%;
  margin: 0 auto;
}


@media screen and (max-width: 767px) {

  section.offer13 div.offer13_item1 {
    padding-bottom: 0;
    width: 88%;
    display: block;
    margin: 0 auto;
  }

  section.offer13 div.offer13_item1 p:nth-child(2) {
    line-height: 150%;
  }

  section.offer13 div.offer13_item2 {
    width: 88%;
    margin-bottom: 15px;
  }

  section.offer13 div.offer13_item2 h2 {
    margin: 15px 0 5px;
  }

  section.offer13 div.offer13_item3 img {
    width: 95%;
  }

  section.offer13 div.offer13_item3 {
    width: 100%;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------------------------------
求人背景14
---------------------------------------------------------------------------------------*/

section.offer14 div.offer14_item1 {
  display: flex;
  padding-bottom: 30px;
  width: 70%;
  margin: 0 auto;
}

section.offer14 div.offer14_item1 p:nth-child(1) {
  line-height: 30px;
}

section.offer14 div.offer14_item1 p:nth-child(2) {
  line-height: 60px;
  margin-left: 30px;
}

section.offer14 div.offer14_item2 {
  width: 80%;
  margin: 0 auto;
  margin-bottom: -170px;
}

section.offer14 div.offer14_item2 img {
  width: 80%;
  height: auto;
}

section.offer14 div.offer14_item3 {
  width: 500px;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 0 150px 0 auto;
  padding: 30px;
  z-index: 99;
}

section.offer14 div.offer14_item3 h2 {
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  section.offer14 div.offer14_item1 {
    padding-bottom: 20px;
    width: 95%;
    margin: 0 auto;
  }

  section.offer14 div.offer14_item1 p:nth-child(2) {
    line-height: 45px;
    margin-left: 30px;
  }

  section.offer14 div.offer14_item2 {
    width: 95%;
    margin: 0 auto;
    margin-bottom: -30px;
  }

  section.offer14 div.offer14_item2 img {
    width: 85%;
  }

  section.offer14 div.offer14_item3 {
    width: 95%;
    box-shadow: 0 0 0;
    margin: 0 0 0 auto;
    padding: 20px;
  }

  section.offer14 div.offer14_item3 h2 {
    margin-top: 0px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  section.offer14 div.offer14_item1 {
    width: 88%;
  }

  section.offer14 div.offer14_item2 {
    width: 100%;
  }

  section.offer14 div.offer14_item2 img {
    width: 88%;
  }

  section.offer14 div.offer14_item3 {
    width: 95%;
    padding: 30px 20px 30px 30px;
  }

  section.offer14 div.offer14_item3 h2 {
    margin-bottom: 5px;
  }
}

/*--------------------------------------------------------------------------------------
求人背景15
---------------------------------------------------------------------------------------*/
section.offer15.view {}

section.offer15.view div.wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 1120px;
  text-align: center;
}

section.offer15.view .offer15_item1 {
  margin-bottom: -100px;
}

section.offer15.view .offer15_item1 img {
  width: 100%;
  /* height: 40vh; */
}

section.offer15.view .offer15_item2 {
  width: 60%;
  position: relative;
  z-index: 99;
  margin: 0 auto;
}

section.offer15.view .offer15_item2 div {
  width: 90%;
  margin: 0 auto;
  padding: 50px 0 50px;
  text-align: center;
}

section.offer15.view .offer15_item2 h2 {
  margin-bottom: 30px;
}

section.offer15.view .sp_offer15 {
  display: none;
}

@media screen and (max-width: 767px) {
  section.offer15.view .pc_offer15 {
    display: none;
  }

  section.offer15.view .sp_offer15 {
    display: block;
  }

  section.offer15.view .offer15_item1 {
    margin-bottom: -50px;
  }

  section.offer15.view .offer15_item2 {
    width: 88%;
  }

  section.offer15.view .offer15_item2 div {
    width: 85%;
    padding: 40px 0;
  }

  section.offer15.view .offer15_item2 div br {
    display: none
  }

  section.offer15.view .offer15_item2 h2 {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 576px) {
  section.offer15.view .offer15_item1 {
    margin-bottom: -20px;
  }
}

/*--------------------------------------------------------------------------------------
メッセージ1
---------------------------------------------------------------------------------------*/
section.message1 {
  width: 100%;
}

section.message1 .message1_image {
  width: 100%;
  margin: 0 auto;
  margin-bottom: -100px;
  max-width: 1200px;
}

section.message1 .message1_image img {
  width: 100%;
}

section.message1 div.message1_item2 {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 99;
  padding: 50px 70px 70px;
}

section.message1 div.message1_item3 {
  width: 95%;
  padding-bottom: 20px;
}

section.message1 div.message1_item3 p:nth-child(1) {
  line-height: 100%;
}

.message1_boder {
  display: flex;
  align-items: center;
}

.message1_boder:before {
  border-top: 1px solid;
  content: "";
  flex-grow: 0.1;
}

.message1_boder:before {
  margin-right: 1rem;
}

section.message1 div.message1_item4 {
  width: 95%;
}

@media screen and (max-width: 767px) {
  section.message1 div.message1_item2 {
    width: 70%;
  }

  section.message1 div.message1_item3,
  section.message1 div.message1_item4 {
    width: 100%;
  }

  .message1_boder:before {
    flex-grow: 0.2;
  }

  section.message1 .message1_image {
    margin-bottom: -60px;
  }

  section.message1 div.message1_item2 {
    width: 88%;
    padding: 50px 30px 30px;
  }

  section.message1 div.message1_item3 p:nth-child(1) {
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}

/*--------------------------------------------------------------------------------------
メッセージ2
---------------------------------------------------------------------------------------*/
section.message2.view {
  padding: 100px 0 100px;
  background-size: cover;
  background-position: center center;
}

section.message2.view div.wrap {
  margin: 0 auto;
  width: 100%;
  /* max-width: 1120px; */
  text-align: center;
}

section.message2.view h2 {
  line-height: 150%;
  width: 70%;
  margin: 0 auto;
  text-align: left;
  padding-bottom: 50px;
}

section.message2.view div.wrap div {
  padding: 100px 0 100px;
  max-width: 750px;
  margin: 0 250px 0 auto;
}

section.message2.view div.wrap p {
  line-height: 180%;
  width: 70%;
  margin: 0 auto;
  text-align: left;
}

@media screen and (max-width: 1000px) {
  section.message2.view {
    padding: 40px 0 40px;
  }

  section.message2.view div.wrap div {
    padding: 30px 0 30px;
    width: 90%;
    margin: 0 auto;
  }

  section.message2.view div.wrap h2,
  section.message2.view div.wrap p {
    width: 90%;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  section.message2.view div.wrap div {
    padding: 30px 30px;
    width: 88%;
  }

  section.message2.view div.wrap h2,
  section.message2.view div.wrap p {
    width: 100%;
  }

  section.message2.view h2 {
    padding-bottom: 15px;
  }

  section.message2.view div.wrap p {
    line-height: 1.6;
  }
}

/*--------------------------------------------------------------------------------------
  メッセージ3
---------------------------------------------------------------------------------------*/
section.message3 {
  width: 100%;
  margin: 0;
}

section.message3 div.message3_items {
  display: flex;
  width: 80%;
  margin: 0 auto;
}

section.message3 img {
  width: 25%;
  height: 100%;
  padding: 30px 0 30px;
}

section.message3 div.item1,
section.message3 div.item2 {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

section.message3 div.item2 p {
  padding: 15px 0 15px;
}

section.message3 div.item2 h2 {
  line-height: 150%;
  margin-bottom: 10px;
}

@media screen and (max-width: 1000px) {
  section.message3 div.message3_items {
    width: 100%;
    flex-wrap: wrap;
    padding: 0;
  }

  section.message3 img {
    width: 50%;
    padding: 0;
  }

  section.message3 div.item2 h2 {
    padding-top: 30px;
  }

  section.message3 div.item2 {
    width: 90%;
  }

  section.message3 div.item2 p {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {

  section.message3 div.item1,
  section.message3 div.item2 {
    width: 88%;
  }

  section.message3 div.item2 {
    width: 88%;
    padding-bottom: 20px;
  }

  section.message3 div.item2 h2 {
    padding-top: 20px;
    margin-bottom: 0;
  }

  section.message3 div.item1 {
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------------------------------
メッセージ4
---------------------------------------------------------------------------------------*/
section.message4 {
  position: relative;
}

section.message4 div.message4_item1 {
  width: 70%;
  margin: 0 auto;
  margin-bottom: -10px;
  transform: translate(0, -5ex);
}

section.message4 div.message4_item1 p {
  line-height: 150%;
}

section.message4 div.message4_item2 {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 80%;
  position: relative;
  z-index: 2;
}

section.message4 div.message4_item2 img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

section.message4 div.message4_background1 {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 100px;
}

section.message4 div.message4_background {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -55%);
  height: 75%;
  width: 40%;
  z-index: 1;
}

section.message4 div.message4_item2 div {
  width: 50%;
  text-align: left;
}

section.message4 h2 {
  margin-bottom: 20px;
  line-height: 150%;
  margin-top: 100px;
}

section.message4 div.message4_item2 h2,
section.message4 div.message4_item2 p {
  margin-left: 80px;
  max-width: 700px;
}

@media screen and (max-width: 1000px) {
  section.message4 div.message4_background {
    top: 55%;
    left: 50%;
    transform: translate(-50%, -55%);
    height: 80%;
    width: 60%;
    z-index: 1;
  }

  section.message4 div.message4_item2 {
    display: block;
    width: 95%;
  }

  section.message4 div.message4_item2 div {
    width: 95%;
    margin: 0 auto;
    text-align: center;
  }

  section.message4 div.message4_item2 h2 {
    margin-top: 10px;
  }

  section.message4 div.message4_item2 h2,
  section.message4 div.message4_item2 p {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  section.message4 div.message4_item1 {
    width: 88%;
  }

  section.message4 div.message4_item1 p {
    margin-bottom: 3px;
  }

  section.message4 div.message4_item2 {
    width: 88%;
  }

  section.message4 div.message4_item2 div {
    width: 100%;
  }

  section.message4 div.message4_item2 h2 {
    margin: 20px 0 10px;
  }

  section.message4 div.message4_background {
    top: 55%;
    left: 50%;
    transform: translate(-30%, -47%);
    height: 60%;
    width: 71%;
    z-index: 1;
  }
}

/*--------------------------------------------------------------------------------------
メッセージ5
---------------------------------------------------------------------------------------*/
section.message5 div.wrap {
  margin: 0 auto;
  width: 100%;
}

section.message5 .message5_item1 {
  margin-bottom: -330px;
  background-size: cover;
  background-position: center center;
  padding-bottom: 300px;
}

section.message5 .message5_item1 h2:nth-of-type(1) {
  padding-top: 150px;
}

section.message5 .message5_item1 p:nth-of-type(1),
section.message5 .message5_item1 p:nth-of-type(2) {
  padding-bottom: 50px;
}

section.message5 .message5_item1 h2:nth-of-type(1),
section.message5 .message5_item1 p:nth-of-type(1) {
  text-align: center;
}

section.message5 .message5_item1 h2:nth-of-type(1),
section.message5 .message5_item1 p:nth-of-type(1),
section.message5 .message5_item1 p:nth-of-type(2) {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 10px;
}

section.message5 .message5_item2 {
  /* padding: 10px; */
  margin: 0 auto;
  max-width: 1000px;
}

section.message5 .message5_item2 img,
section.message5 .message5_item2 p {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 20px;
}

@media screen and (max-width: 1000px) {

  section.message5 .message5_item1 h2:nth-of-type(1),
  section.message5 .message5_item1 p:nth-of-type(1),
  section.message5 .message5_item1 p:nth-of-type(2) {
    max-width: 700px;
  }

  section.message5 .message5_item1 h2:nth-of-type(1) {
    padding-top: 50px;
  }

  section.message5 .message5_item2 img,
  section.message5 .message5_item2 p {
    max-width: 700px;
  }

  section.message5 .message5_item1 {
    margin-bottom: -200px;
    padding-bottom: 150px;
  }
}

@media screen and (max-width: 767px) {

  section.message5 .message5_item1 h2:nth-of-type(1),
  section.message5 .message5_item1 p:nth-of-type(1),
  section.message5 .message5_item1 p:nth-of-type(2) {
    width: 95%;
  }

  section.message5 .message5_item2 img,
  section.message5 .message5_item2 p {
    width: 95%;
  }

  section.message5 .message5_item1 {
    margin-bottom: -100px;
    padding-bottom: 100px;
  }

  section.message5 .message5_item1 h2:nth-of-type(1) {
    margin-bottom: 3px;
    width: 88%;
    padding-left: 0;
  }

  section.message5 .message5_item1 p:nth-of-type(1) {
    padding-bottom: 15px;
  }

  section.message5 .message5_item2 {
    width: 88%;
  }

  section.message5 .message5_item2 img,
  section.message5 .message5_item2 p {
    width: 100%;
  }
}

@media screen and (max-width: 350px) {

  section.message5 .message5_item1 h2:nth-of-type(1),
  section.message5 .message5_item1 p:nth-of-type(1),
  section.message5 .message5_item1 p:nth-of-type(2) {
    width: 95%;
  }

  section.message5 .message5_item2 img,
  section.message5 .message5_item2 p {
    width: 95%;
  }

  section.message5 .message5_item1 {
    margin-bottom: -100px;
    padding-bottom: 100px;
  }
}

/*--------------------------------------------------------------------------------------
  メッセージ6
---------------------------------------------------------------------------------------*/
section.message6 .wrap_message6 {
  width: 100%;
}

section.message6 .slide2 {
  display: none;
}

section.message6 div.message6_item1 {
  width: 60%;
  margin: 0 auto;
  margin-bottom: 50px;
}

section.message6 div.message6_item1 p:nth-child(1) {
  line-height: 130%;
}

section.message6 div.message6_item1 p:nth-child(2) {
  margin-bottom: 50px;
}

section.message6 div.message6_item {
  position: relative;
}

section.message6 div.message6_items {
  width: 55%;
  max-width: 800px;
  margin: 0 auto;
}

section.message6 img:nth-child(1),
section.message6 img:nth-child(2) {
  width: 23%;
  position: absolute;
  top: 0;
  left: 300px;
  z-index: 5;
  margin-top: 30px;
}

section.message6 img:nth-child(3),
section.message6 img:nth-child(4) {
  width: 18%;
  z-index: 6;
  position: absolute;
  top: 200px;
  left: 35%;
}

section.message6 .message6_item {
  display: flex;
  flex-direction: row-reverse;
}

section.message6 div.message6_item2 {
  width: 100%;
  margin: 0 0 0 auto;
}

section.message6 div.message6_item3 {
  max-width: 1200px;
  margin: 0 0 0 auto;
  padding-right: 80px;
  padding-top: 140px;
  padding-bottom: 100px;
}

section.message6 div.message6_item3 h2 span {
  padding: 10px 20px 10px;
}

section.message6 div.message6_item3 h2 {
  margin-bottom: 35px;
  padding-left: 350px;
}

section.message6 div.message6_item3 p {
  padding: 15px 0 15px 350px;
}

@media screen and (max-width: 1200px) {
  section.message6 div.message6_items {
    display: flex;
    width: 100%;
    margin: auto 0 0 50px;
    position: relative;
  }

  section.message6 div.message6_item1 {
    width: 95%;
  }

  section.message6 img:nth-child(1),
  section.message6 img:nth-child(2) {
    position: static;
    width: 60%;

  }

  section.message6 img:nth-child(3),
  section.message6 img:nth-child(4) {
    width: 40%;
    position: absolute;
    top: 200px;
    left: 50%;
  }

  section.message6 div.message6_item2 {
    width: 100%;
    margin: 0 auto;
    margin-bottom: -80px;
  }

  section.message6 div.message6_item3 {
    width: 90%;
    margin: 0 auto;
    padding-top: 10px;
    padding-right: 0;
  }

  section.message6 div.message6_item {
    display: block;
  }

  section.message6 div.message6_item3 h2:nth-child(1) {
    padding-top: 50px;
  }

  section.message6 div.message6_item3 h2,
  section.message6 div.message6_item3 p {
    padding-left: 0;
  }

}

@media screen and (max-width: 767px) {
  section.message6 div.message6_items {
    margin: auto 0 0 10px;
  }

  section.message6 div.message6_item1 {
    width: 88%;
  }

  section.message6 .wrap_message6 {
    width: 90%;
    padding-bottom: 0px;
  }

  section.message6 div.message6_item1 p:nth-child(1) {
    margin-bottom: 3px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  section.message6 div.message6_item1 p:nth-child(2) {
    margin-bottom: 30px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  section.message6 div.message6_item3 {
    width: 88%;
    padding-top: 0px;
  }

  section.message6 img:nth-child(3),
  section.message6 img:nth-child(4) {
    top: 150px;
  }
}

@media screen and (max-width: 432px) {

  section.message6 img:nth-child(3),
  section.message6 img:nth-child(4) {
    top: 100px;
  }
}

/*--------------------------------------------------------------------------------------
  メッセージ7
---------------------------------------------------------------------------------------*/
section.message7 {
  width: 100%;
  margin: 0;
}

section.message7 div.message7_items {
  display: flex;
  width: 80%;
  margin: 0 auto;
}

section.message7 img {
  width: 25%;
  height: 100%;
  padding: 30px 0 30px;
  margin-right: 15px;
}

section.message7 div.item2 {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

section.message7 div.item2 p {
  padding: 15px 0 15px;
}

section.message7 div.item2 h2 {
  line-height: 150%;
  margin-bottom: 10px;
}

@media screen and (max-width: 1000px) {
  section.message7 div.message7_items {
    width: 100%;
    flex-wrap: wrap;
    padding: 0;
    justify-content: center;
  }

  section.message7 img {
    width: 48%;
    padding: 0;
    margin: 3px;
  }

  section.message7 div.item2 h2 {
    padding-top: 30px;
  }

  section.message7 div.item2 {
    width: 90%;
  }

  section.message7 div.item2 p {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  section.message7 div.message7_items {
    width: 88%;
  }

  section.message7 div.item2 {
    width: 88%;
  }

  section.message7 div.item2 h2 {
    padding-top: 20px;
  }
}

/*--------------------------------------------------------------------------------------
  メッセージ8
---------------------------------------------------------------------------------------*/
section.message8 .message8_items1 {
  margin: 0 auto;
  max-width: 900px;
  width: 80%;
}

section.message8 .message8_num {
  display: flex;
  padding: 30px 0 0 30px;
}

section.message8 .message8_items .item {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}

section.message8 .message8_items1 li {
  margin-bottom: 40px;
  height: auto;
  padding-bottom: 20px;
  list-style: none;
}

section.message8 .message8_items1 h2:nth-of-type(1) {
  position: relative;
  top: 0;
  left: 0;
  border-radius: 50%;
  padding: 15px;
  font-size: 25px;
  text-align: center;
}


section.message8 .message8_items1 h2:nth-of-type(2) {
  padding-left: 20px;
  padding-top: 20px;
}

section.message8 .message8_items1 h2:nth-child(1) {
  text-align: center;
}

section.message8 .message8_items1 p {
  padding: 20px 0 10px;
  padding-left: 40px;
  width: 95%;
}

@media screen and (max-width: 767px) {
  section.message8 .message8_items1 {
    margin: 0 auto;
    max-width: 900px;
    width: 88%;
  }

  section.message8 .message8_items1 li {
    margin-bottom: 20px;
  }

  section.message8 .message8_items1 h2:nth-of-type(1) {
    font-size: 18px;
  }

  section.message8 .message8_items .item {
    width: 88%;
  }

  section.message8 .message8_num {
    padding: 30px 20px 5px;
  }

  section.message8 .message8_items1 p {
    padding: 10px 25px;
    width: 100%;
  }
}

/*--------------------------------------------------------------------------------------
  メッセージ9
---------------------------------------------------------------------------------------*/
section.message9 {
  width: 100%;
}

section.message9 .message9_items {
  width: 100%;
  margin: 0 auto;
}

section.message9 img {
  width: 40%;
  margin: 0 auto;
}

section.message9 div.item {
  text-align: left;
  padding: 30px 0 30px;
  width: 50%;
  margin: 0 auto;
}

section.message9 div.item h2 {
  padding-bottom: 10px;
}

section.message9 div.item p {
  padding-top: 10px;
}

@media screen and (max-width: 1000px) {
  section.message9 img {
    width: 90%;
  }

  section.message9 div.item {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  section.message9 img {
    width: 88%;
  }

  section.message9 div.item {
    width: 88%;
  }

  section.message9 div.item h2 {
    padding-bottom: 5px;
  }

  section.message9 div.item p {
    padding-top: 5px;
  }

  section.message9 div.item {
    padding: 30px 0 10px;
  }
}

/*--------------------------------------------------------------------------------------
  メッセージ10
---------------------------------------------------------------------------------------*/
section.message10 {
  width: 100%;
  padding-top: 0;
}

section.message10 .message10_items {
  width: 100%;
}

section.message10 img {
  width: 60%;
  margin: 0 auto;
  padding-top: 0;
  margin-bottom: -130px;
}

section.message10 div.item {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding-top: 180px;
}

section.message10 div.item h2 {
  padding-bottom: 10px;
  width: 75%;
  margin: 0 auto;
}

section.message10 div.item p {
  padding-top: 10px;
  width: 75%;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  section.message10 img {
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding-top: 0;
  }

  section.message10 div.item h2 {
    width: 90%;
    margin-top: 10px;
  }

  section.message10 div.item {
    text-align: center;
    padding: 200px 0 30px;
    width: 100%;
    margin: 0 auto;
    margin-top: -200px;
  }

  section.message10 div.item p {
    width: 90%;
    margin: 0 auto;
  }

  section.message10 div.item p br {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  section.message10 div.item h2 {
    width: 88%;
    margin-top: 20px;
  }

  section.message10 div.item p {
    width: 90%;
    padding-top: 0;
  }

  section.message10 div.item {
    text-align: center;
    padding: 80px 0 30px;
    width: 100%;
    margin: 0 auto;
    margin-top: -80px;
  }
}

/*--------------------------------------------------------------------------------------
  メッセージ11
---------------------------------------------------------------------------------------*/
section.message11 {
  width: 100%;
}

section.message11 .wrap_image4 .item {
  width: 95%;
  margin: 0 auto;
  margin-bottom: 30px;
}

section.message11 .wrap_image4 .item p:nth-of-type(1) {
  padding-bottom: 5px;
  line-height: 100%;
}

section.message11 .wrap_image4 .item h2:nth-of-type(1) {
  padding-bottom: 30px;
}

section.message11 .wrap_image4 .item p:nth-of-type(2) {
  padding-bottom: 15px;
  line-height: 130%;
}

section.message11 .wrap_image4 .item p:nth-of-type(3) {
  padding-bottom: 15px;
}

.message11_boder {
  display: flex;
  align-items: center;
}

.message11_boder:before {
  border-top: 1px solid;
  content: "";
  flex-grow: 0.08;
}

.message11_boder:before {
  margin-right: 1rem;
}

/* スライド */
section.message11 div.message11_items {
  width: 100%;
  display: flex;
  margin: 0 auto;
}

section.message11 div.message11_items {
  padding-bottom: 20px;
}

section.message11 .wrap_image4 img {
  width: 33%;
  padding-right: 15px;
}

section.message11 .wrap_image4 .item {
  max-width: 1400px;
}

@media screen and (max-width: 767px) {
  section.message11 .wrap_image4 .item {
    width: 88%;
  }

  section.message11 div.message11_items {
    width: 98%;
  }

  section.message11 .wrap_image4 .item h2:nth-of-type(1) {
    padding-bottom: 20px;
  }

  section.message11 .wrap_image4 .item p:nth-of-type(2) {
    padding-bottom: 10px;
  }

  section.message11 .wrap_image4 .item p:nth-of-type(3) {
    padding-bottom: 10px;
  }
}

/*--------------------------------------------------------------------------------------
メッセージ12
---------------------------------------------------------------------------------------*/
section.message12 {
  /* padding: 180px 0 180px; */
  background-size: cover;
  background-position: center center;
}

section.message12 div.wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 1120px;
  text-align: center;
}

section.message12 h2 {
  margin-bottom: 30px;
  line-height: 150%;
}

section.message12 div.wrap div {
  margin: 0 auto;
  padding: 80px 50px;
  max-width: 800px;
}

section.message12 div.wrap p {
  line-height: 180%;
}

@media screen and (max-width: 767px) {
  section.message12 {
    margin-bottom: 0;
  }

  section.message12 div.wrap div {
    padding: 50px 30px;
    width: 88%;
  }

  section.message12 h2 {
    margin-bottom: 15px;
    line-height: 100%;
    text-align: center;
  }

  section.message12 div.wrap p {
    width: 100%;
    margin: 0 auto;
  }

  section.message12 div.wrap {
    text-align: left;
  }

  section.message12 div.wrap div {
    padding: 50px 20px;
    width: 90%;
  }
}

/*--------------------------------------------------------------------------------------
メッセージ13
---------------------------------------------------------------------------------------*/
section.message13 div.message13_item1 {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 40px;
}

section.message13 div.message13_item1 p {
  line-height: 150%;
}

section.message13 div.message13_item1 p:nth-of-type(2) {
  display: inline-block;
  padding: 1px 120px 0 120px;
}

section.message13 div.message13_item2 {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

section.message13 div.message13_item2 img {
  width: 100%;
  height: auto;
}

section.message13 div.message13_img,
section.message13 div.message13_item3 {
  width: 50%;
  max-width: 650px;
}

section.message13 div.message13_item3 {
  padding-left: 50px;
}

section.message13 div.message13_item3 h2 {
  margin-bottom: 20px;
  line-height: 150%;
}

@media screen and (max-width: 1000px) {
  section.message13 div.message13_item1 {
    margin-bottom: 20px;
    width: 88%;
  }

  section.message13 div.message13_item2 {
    display: block;
    width: 88%;
    padding: 0;
  }

  section.message13 div.message13_item2 div {
    width: 100%;
    margin: 0 auto;
  }

  section.message13 div.message13_item3 {
    padding-left: 0;
    padding-top: 20px;
  }

  section.message13 div.message13_item2 div p br {
    display: none;
  }
}


/*--------------------------------------------------------------------------------------
メッセージ13パターン2
---------------------------------------------------------------------------------------*/
section.message13 div.message13p_item1 {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 40px;
}

section.message13 div.message13p_item1 p {
  line-height: 150%;
}

section.message13 div.message13p_item1 p:nth-of-type(2) {
  display: inline-block;
}

section.message13 div.message13p_item2 {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  margin: 0 auto;
}

section.message13 div.message13p_item2 img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 0 0 auto;
}

section.message13 div.message13p_img,
section.message13 div.message13p_item3 {
  max-width: 650px;
  width: 50%;
  margin: 0;
}

section.message13 div.message13p_item3 {
  padding-left: 50px;
  padding-top: 50px;
}

section.message13 div.message13p_item3 h2 {
  margin-bottom: 20px;
  line-height: 150%;
  padding: 10px 0 10px;
}

@media screen and (max-width: 1000px) {
  section.message13 div.message13p_item1 {
    margin-bottom: 20px;
    width: 88%;
  }

  section.message13 div.message13p_item2 {
    display: block;
    width: 88%;
    padding: 0;
  }

  section.message13 div.message13p_item2 img {
    margin: 0 auto;
  }

  section.message13 div.message13p_item2 div {
    width: 100%;
    margin: 0 auto;
  }

  section.message13 div.message13p_item3 {
    padding-left: 0;
    padding-top: 20px;
  }

  section.message13 div.message13p_item2 div p br {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  section.message13 div.message13p_item2 img {
    width: 300px;
    height: 300px;
  }
}

/*--------------------------------------------------------------------------------------
メッセージ14
---------------------------------------------------------------------------------------*/

section.message14 div.message14_item1 {
  display: flex;
  width: 80%;
  justify-content: center;
  margin: 0 auto;
}

section.message14 div.message14_item2 {
  width: 55%;
  margin: 0 auto;
  margin-right: -200px;
}

section.message14 div.message14_item2 img {
  width: 99%;
  height: auto;
}

section.message14 div.message14_item3 {
  width: 45%;
  margin: 0 auto;
  margin-top: 80px;
  padding: 0px 50px;
}

section.message14 div.message14_item3 h2 {
  max-width: 880px;
  padding-top: 80px;
}

section.message14 div.message14_item3 p {
  padding-top: 40px;
  max-width: 880px;
  margin: 0 auto;
  padding-bottom: 50px;
}

@media screen and (max-width: 1000px) {
  section.message14 div.message14_item1 {
    display: block;
    width: 100%;
  }

  section.message14 div.message14_item2 {
    width: 93%;
    margin: 0;
    position: relative;
    margin-bottom: -100px;
  }

  section.message14 div.message14_item3 h2 {
    padding-top: 30px;
  }

  section.message14 div.message14_item3 {
    width: 93%;
    margin: 0 0 0 auto;
    padding: 0px 20px;
    position: relative;
    z-index: 99;
  }
}

@media screen and (max-width: 767px) {
  section.message14 div.message14_item2 {
    margin-bottom: -50px;
  }

  section.message14 div.message14_item2 {
    width: 100%;
  }

  section.message14 div.message14_item2 img {
    width: 88%;
    height: auto;
    margin-left: auto;
    margin-right: 0;
  }

  section.message14 div.message14_item3 {
    width: 88%;
    padding: 0px 30px;
    margin-left: 0;
    margin-right: auto;
  }

  section.message14 div.message14_item3 p {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}

/*--------------------------------------------------------------------------------------
  魅力1
---------------------------------------------------------------------------------------*/
section.charm1 {
  width: 100%;
}

section.charm1 .wrap_image2 .item {
  width: 55%;
  margin: 0 auto;
  padding-bottom: 20px;
}

/* パターン６枚 */
section.charm1 div.image2_items1 {
  width: 55%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

section.charm1 div.image2_items1 {
  padding-bottom: 20px;
}

section.charm1 .wrap_image2 img {
  width: 33%;
  padding: 10px;
  height: 100%;
}

@media screen and (max-width: 767px) {
  section.charm1 div.image2_items1 {
    width: 95%;
  }

  section.charm1 .wrap_image2 img {
    width: 50%;
  }

  section.charm1 .wrap_image2 .item {
    width: 95%;
  }
}


/*--------------------------------------------------------------------------------------
  ブログ　デザインパターン1
---------------------------------------------------------------------------------------*/
section.design_pattern1 div.blogsection {
  margin: 0 auto;
  width: 94%;
  max-width: 1000px;
  padding-bottom: 50px;
}

section.design_pattern1 h2 {
  margin-bottom: 5px;
}

section.design_pattern1 h2:nth-child(2) {
  margin-bottom: 40px;
}

section.design_pattern1 p {
  margin-bottom: 40px;
  padding-bottom: 5px;
  line-height: 150%;
}

section.design_pattern1 ul li h3 {
  position: relative;
}

section.design_pattern1 ul li h3 span {
  margin-left: 10px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 15px;
  position: absolute;
}

section.design_pattern1 ul li div.blog_img {
  width: 30%;
}

section.design_pattern1 ul li div.blog_text {
  width: 70%;
  margin: 0 auto;
}

section.design_pattern1 div.blogsection ul li,
section.design_pattern1 section.blogsection ul li {
  display: flex;
  padding: 20px 0;
  list-style: none;
}

section.design_pattern1 div.blogsection ul li:first-child,
section.design_pattern1 section.blogsection ul li:first-child {
  border: none;
}

section.design_pattern1 div.blogsection ul li,
section.design_pattern1 section.blogsection ul li {
  border-top: 1px solid #cfcfcf;
  padding: 30px 0;
}

.design_pattern1pagenate {
  margin-top: 20px;
}

section.design_pattern1 ul li>div:first-child {
  width: 30%;
  margin-right: 50px;
}

section.design_pattern1 ul li>div:last-child {
  width: calc(100% - 150px);
}

section.design_pattern1 ul li img,
section.news1 ul li img,
section.design_pattern1 ul li video {
  width: 100%;
  max-height: 250px;
  object-fit: scale-down;
}

section.design_pattern1 ul li h3 a,
section.news1 ul li h3 a {
  line-height: 150%;
  color: inherit;
  text-decoration: none;
}

section.design_pattern1 ul li p,
section.news1 ul li p {
  line-height: 150%;
  overflow: hidden;
  margin: 0;
  /* white-space: nowrap; */
  /* text-overflow: ellipsis; */
}

section.design_pattern1 ul li p.date,
section.news1 ul li p.date {
  margin-top: 5px;
  font-size: 14px;
}

section.design_pattern1 a span,
.blogsection_back a span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 200px;
  height: 35px;
  /* background:  #585656; */
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  cursor: pointer;
}

section.design_pattern1 a span:hover,
.blogsection_back a span:hover,
.design_pattern1blogsection_back:hover {
  filter: brightness(70%) !important;
  /* transition: transform 0.5s ease;
  transform: scale(1.1); */
}

section.design_pattern1 ul li img:hover,
section.news1 ul li img:hover,
section.design_pattern1 ul li video:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease;
  opacity: 0.6;
}

@media screen and (max-width: 767px) {

  section.design_pattern1 div.blogsection ul li,
  section.design_pattern1 section.blogsection ul li {
    display: block;
  }

  section.design_pattern1 ul li div.blog_img,
  section.design_pattern1 ul li div:nth-child(1) {
    width: 90%;
    margin: 0 auto;
  }

  section.design_pattern1 ul li div.blog_text,
  section.design_pattern1 ul li div:nth-child(2) {
    width: 85%;
    padding-top: 20px;
    margin: 0 auto;
  }

  section.design_pattern1 div.blogsection {
    width: 88%;
  }

  section.design_pattern1 h2:nth-child(2) {
    margin-bottom: 0 !important;
  }

  section.design_pattern1 div.blogsection ul li,
  section.design_pattern1 section.blogsection ul li {
    padding: 30px 0;
  }

  section.design_pattern1 ul li div:nth-child(2) {
    width: 100%;
  }

  section.design_pattern1 ul li h3 {
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  section.design_pattern1 ul li p,
  section.news1 ul li p {
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}

/*--------------------------------------------------------------------------------------
  ブログ一覧ページ デザインパターン1
---------------------------------------------------------------------------------------*/
section.design_pattern1 section.blogsection {
  margin: 0 auto;
  width: 94%;
  max-width: 1000px;
}

div.design_pattern1bloginfo_header,
div.design_pattern2bloginfo_header,
div.design_pattern3bloginfo_header {
  height: 18vh;
  width: 100%;
}

div.design_pattern1bloginfo_header h1,
div.design_pattern2bloginfo_header h1,
div.design_pattern3bloginfo_header h1 {
  max-width: 1150px;
  margin: 0 auto;
  color: white;
  font-size: 35px;
  line-height: 23vh;
  padding-left: 10px;
}

section.design_pattern1section.blog ul li h3 span {
  margin-left: 10px;
  padding: 0 5px;
  color: white;
  background: #000;
  border-radius: 10px;
}

.design_pattern1pagenate {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 50px;
}

.design_pattern1pagenate div {
  padding: 5px 11px;
  margin: 5px;
}

.design_pattern1pagenate div.numpage {
  border-radius: 50%;
  padding: 5px 12px;
}

.design_pattern1blogsection_back {
  margin: 30px 0 50px;
}

.design_pattern1blogsection_back a span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 160px;
  height: 35px;
  background: #585656;
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  cursor: pointer;
}

section nav {
  margin-bottom: 40px;
}

section.design_pattern1 section.blogsection ul li {
  padding: 30px 0;
}

@media screen and (max-width: 767px) {

  div.design_pattern1bloginfo_header,
  div.design_pattern2bloginfo_header,
  div.design_pattern3bloginfo_header {
    height: 15vh;
    width: 100%;
  }

  div.design_pattern1bloginfo_header h1,
  div.design_pattern2bloginfo_header h1,
  div.design_pattern3bloginfo_header h1 {
    font-size: 25px;
    line-height: 16vh;
    padding-left: 6%;
  }

  section.design_pattern1 {
    padding-top: 0;
  }

  header.design_pattern1bloginfo_header {
    height: 17vh;
    width: 100%;
    margin: 0 6%;
  }

  section nav ul {
    width: 88%;
    margin-bottom: 10px;
  }

  section.design_pattern1 section.blogsection {
    width: 88%;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  section.design_pattern1 ul li div.blog_img,
  section.design_pattern1 ul li div:nth-child(1) {
    width: 100%;
  }

  section.design_pattern1 ul li div.blog_text,
  section.design_pattern1 ul li div:nth-child(2) {
    width: 100%;
  }

  section.design_pattern1 section.blogsection ul li {
    padding: 30px 0;
  }

  section.wrap section:last-of-type:not(.contact) {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------------------------------
  ブログ詳細ページ デザインパターン1
---------------------------------------------------------------------------------------*/
section.detail_design_pattern1 .detail_pagenate,
section.detail_design_pattern2 .detail_pagenate,
section.detail_design_pattern3 .detail_pagenate {
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  justify-content: space-between
}

section.detail_design_pattern1 .blog_detail,
section.detail_design_pattern2 .blog_detail,
section.detail_design_pattern3 .blog_detail {
  max-width: 1000px;
  margin: 0 auto;
}

section.detail_design_pattern1 .detail_pagenate a span,
section.detail_design_pattern2 .detail_pagenate a span,
section.detail_design_pattern3 .detail_pagenate a span {
  margin: 0 20px;
  border-radius: 50%;
  padding: 0 5px;
  /* border: 1px solid black; */
  margin-bottom: 20px;
  display: inline-block;
}

section.detail_design_pattern1 .blog_detail div img,
section.detail_design_pattern2 .blog_detail div img,
section.detail_design_pattern3 .blog_detail div img {
  margin: 0 auto;
  width: 80%;
}

section.detail_design_pattern1 .blog_detail p,
section.detail_design_pattern1 .blog_detail h2,
section.detail_design_pattern2 .blog_detail p,
section.detail_design_pattern2 .blog_detail h2,
section.detail_design_pattern3 .blog_detail p,
section.detail_design_pattern3 .blog_detail h2 {
  width: 90%;
  margin: 0 auto;
}

section.detail_design_pattern1 .blog_detail p:nth-child(2),
section.detail_design_pattern2 .blog_detail p:nth-child(2),
section.detail_design_pattern3 .blog_detail p:nth-child(2) {
  padding: 5px 0 40px;
}

section.detail_design_pattern1 .blog_detail p:last-child,
section.detail_design_pattern2 .blog_detail p:last-child,
section.detail_design_pattern3 .blog_detail p:last-child {
  padding: 40px 0 50px;
}

section.detail_design_pattern1 .blogsection_back,
section.detail_design_pattern2 .blogsection_back,
section.detail_design_pattern3 .blogsection_back {
  margin: 30px 0 50px;
}

section nav {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  section.wrap {
    padding-top: 0;
  }

  header.design_pattern1bloginfo_header,
  header.design_pattern2bloginfo_header,
  header.design_pattern3bloginfo_header {
    height: 17vh;
    width: 100%;
    margin: 0 6%;
  }

  header.design_pattern1bloginfo_header h1,
  header.design_pattern2bloginfo_header h1,
  header.design_pattern3bloginfo_header h1 {
    line-height: 20vh;
    font-size: 25px;
  }

  section nav ul {
    width: 88%;
    margin-bottom: 10px;
  }
  section.detail_design_pattern1 .blog_detail h2,
  section.detail_design_pattern2 .blog_detail h2,
  section.detail_design_pattern3 .blog_detail h2 {
    margin-top: 10px;
  }

  section.detail_design_pattern1 .blog_detail p,
  section.detail_design_pattern1 .blog_detail h2,
  section.detail_design_pattern2 .blog_detail p,
  section.detail_design_pattern2 .blog_detail h2,
  section.detail_design_pattern3 .blog_detail p,
  section.detail_design_pattern3 .blog_detail h2 {
    width: 88%;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  section.detail_design_pattern1 .blog_detail div img,
  section.detail_design_pattern2 .blog_detail div img,
  section.detail_design_pattern3 .blog_detail div img {
    width: 88%;
  }

  section.design_pattern1 h2:nth-child(2),
  section.design_pattern2 h2:nth-child(2),
  section.design_pattern3 h2:nth-child(2) {
    margin-bottom: 30px;
  }

  section.detail_design_pattern1 .blog_detail p:nth-child(2),
  section.detail_design_pattern2 .blog_detail p:nth-child(2),
  section.detail_design_pattern3 .blog_detail p:nth-child(2) {
    padding: 5px 0 20px;
  }

  section.detail_design_pattern1 .blog_detail p:last-child,
  section.detail_design_pattern2 .blog_detail p:last-child,
  section.detail_design_pattern3 .blog_detail p:last-child {
    padding: 20px 0 50px;
  }

  section.wrap section:last-of-type:not(.contact) {
    margin-bottom: 40px;
  }

  section.detail_design_pattern1 .blogsection_back,
  section.detail_design_pattern2 .blogsection_back,
  section.detail_design_pattern3 .blogsection_back {
    margin: 30px 0;
  }
}

/*--------------------------------------------------------------------------------------
  ブログ　デザインパターン2
---------------------------------------------------------------------------------------*/
section.design_pattern2 div.blogsection {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
  padding-bottom: 50px;
}

section.design_pattern2 h2 {
  margin-bottom: 5px;
  text-align: center;
}

section.design_pattern2 h2:nth-child(2) {
  margin-bottom: 40px;
}

section.design_pattern2 ul .pattern2_item {
  display: flex;
  justify-content: center; 
  align-items: center; 
  margin-bottom: 50px;
  
}

section.design_pattern2 ul .pattern2_item li,
section .blogsection2 ul li {
  width: 30%;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.1);
  list-style: none;
  background: white;
  margin-bottom: 30px;
}

section.design_pattern2 ul .pattern2_item li:nth-child(2),
section.blogsection2 ul li:nth-child(2) {
  margin-left: 30px;
  margin-right: 30px;
}

section.design_pattern2 ul li p:nth-child(3) {
  display: none;
}

section.design_pattern2 ul li p:nth-child(1) {
  padding-top: 10px;
}

section.design_pattern2 ul li h3,
section.design_pattern2 ul li p:nth-child(1) {
  width: 85%;
  margin: 0 auto;
}

section.design_pattern2 ul li p:nth-child(4) {
  width: 85%;
  margin: 0 auto;
  padding: 20px 0 30px;
  font-size: 12px;
}

.yazirusi2 {
  display: flex;
  justify-content: end;
  position: relative;
}

section.design_pattern2 .yazirusi2::after {
  content: '';
  width: 25px;
  height: 5px;
  border-bottom: solid 2px;
  border-right: solid 2px;
  transform: skew(45deg);
  position: relative;
  bottom: -4px;
  margin-left: 7px;
}

section.design_pattern2 ul li div:nth-child(1) {
  width: 100%;
  height: 200px; 
  overflow: hidden;
  margin-bottom: 20px;
}

section.design_pattern2 ul li div img {
  width: 100%;
  height: 100%; 
  object-fit: cover;
  object-position: center;
}


section.design_pattern2 a span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 300px;
  height: 50px;
  background: #585656;
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  cursor: pointer;
}

section.design_pattern2 ul li p {
  position: relative;
}

section.design_pattern2 ul li p span {
  margin-left: 10px;
  padding: 0 10px 1px 10px;
  border-radius: 10px;
  font-size: 15px;
  position: absolute;
}

section.design_pattern2 a span:hover,
section.design_pattern2 .yazirusi2:hover,
.design_pattern2blogsection_back:hover {
  filter: brightness(70%) !important;
}

section.design_pattern2 ul li img:hover,
section.news2 ul li img:hover,
section.design_pattern2 ul li video:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  section.design_pattern2 ul .pattern2_item {
    display: block;
  }

  section.design_pattern2 ul .pattern2_item li,
  section .blogsection2 ul li {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 15px;
  }

  section.design_pattern2 ul .pattern2_item li:nth-child(2),
  section .blogsection2 ul li:nth-child(2) {
    margin: 0 auto;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------------------------------
  ブログ一覧ページ デザインパターン2
---------------------------------------------------------------------------------------*/
section.design_pattern2 section.blogsection2 {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 30px;
}

div.design_pattern2bloginfo_header {
  /* max-width: 1150px; */
  margin: 0 auto;
  margin-bottom: 50px;
}

div.design_pattern2bloginfo_header div {
  max-width: 1150px;
  margin: 0 auto;
}

section.design_pattern2 section.blogsection2 ul {
  display: flex;
  flex-wrap: wrap;
}

/* section.design_pattern2 ul li {
  margin-bottom: 20px;
} */
section.design_pattern2 ul .pattern2_item li:nth-child(5),
section.blogsection2 ul li:nth-child(5) {
  margin-left: 30px;
  margin-right: 30px;
}

.design_pattern2pagenate {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.design_pattern2pagenate div {
  padding: 5px 11px;
  margin: 5px;
}

.design_pattern2pagenate div.numpage {
  border: 1px solid black;
}

.design_pattern2blogsection_back {
  margin-bottom: 30px;
}

.design_pattern2blogsection_back a span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 150px;
  height: 40px;
  background: #585656;
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  cursor: pointer;
}



@media screen and (max-width: 767px) {
  section.design_pattern2 section.blogsection2 ul {
    display: block;
  }

  section.design_pattern2 ul .pattern2_item li:nth-child(5),
  section.blogsection2 ul li:nth-child(5) {
    margin-left: 0;
    margin-right: 0;
    margin: 0 auto;
    margin-bottom: 15px;
  }
  
  section.design_pattern2 div.blog_title {
    width: 88%;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------------------------------
  ブログ詳細ページ デザインパターン2
---------------------------------------------------------------------------------------*/
/* .design_pattern2bloginfo_header {
  padding-top: 50px;
}

section.detail_design_pattern2 .detail_pagenate {
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
}

section.detail_design_pattern2 .blog_detail {
  max-width: 1000px;
  margin: 0 auto;
}

section.detail_design_pattern2 .detail_pagenate a span {
  padding: 0 5px;
  margin-bottom: 20px;
}

section.detail_design_pattern2 .detail_pagenate a {
  border-bottom: 1px solid black;
}

section.detail_design_pattern2 .blog_detail div img {
  margin: 0 auto;
  width: 70%;
}

section.detail_design_pattern2 .blog_detail p,
section.detail_design_pattern2 .blog_detail h2 {
  width: 90%;
  margin: 0 auto;
}

section.detail_design_pattern2 .blog_detail h2 {
  border-bottom: rgb(146, 146, 146) 3px solid;
  border-radius: 3px;
  padding-bottom: 5px;
}

section.detail_design_pattern2 .blog_detail p:nth-child(2) {
  padding: 5px 0 5px;
}

section.detail_design_pattern2 .blog_detail p:last-child {
  padding: 15px 0 20px;
}

section.detail_design_pattern2 .blogsection_back {
  margin-bottom: 20px;
}

section.detail_design_pattern2 .detail_pagenate {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {} */

/*--------------------------------------------------------------------------------------
  ブログ　デザインパターン3
---------------------------------------------------------------------------------------*/
section.design_pattern3 div.blogsection {
  margin: 0 auto;
  width: 94%;
  max-width: 1100px;
  padding-bottom: 50px;
}

section.design_pattern3 div.blogtext {
  width: 100%;
}

section.design_pattern3 div.blogsection,
div.blog_item3 {
  display: flex;
  justify-content: space-between;
}

section.design_pattern3 div.blog_item3 span a {
  margin: 0 20px;
  border-radius: 50%;
  padding: 0px 9px;
  margin-bottom: 20px;
  display: inline-block;
  display: flex;
  align-items: center; 
  justify-content: center;  
}

section.design_pattern3 ul li h3 {
  position: relative;
  margin-bottom: 5px;
}

section.design_pattern3 ul li h3 span {
  margin-left: 10px;
  padding: 0 3px;
  border-radius: 2px;
  position: absolute;
}


section.design_pattern3 ul li div.blog_img,
section.design_pattern3 div.wrap img {
  display: none;
}

section.design_pattern3 div.blog_title {
  width: 30%;
  padding-right: 20px;
  text-align: center;
  margin: 0 auto;
}
section.design_pattern3 div.blog_title h2:nth-child(1) {
  margin-bottom: 3px;
}

section.design_pattern3 ul li p:nth-child(1) {
  border-radius: 20px;
}

section.design_pattern3 ul li h3 {
  margin-top: 10px;
}

section.design_pattern3 div.wrap {
  width: 70%;
  /* position: relative; */
}

section.design_pattern3 div.wrap ul li {
  padding: 15px 0 5px;
  border-bottom: 1px solid #cfcfcf;
  list-style: none;
}

section.design_pattern3 div.wrap ul li {
  padding-left: 20px;
}

section.design_pattern3 ul a span {
  position: absolute;
  top: 100px;
  left: -230px;
  font-size: 17x;
  font-weight: 500;
}

section.design_pattern3 div.wrap ul {
  position: relative;
}

.yazirusi {
  display: flex;
  position: relative;
}

section.design_pattern3 .yazirusi::after {
  content: '';
  width: 40px;
  height: 8px;
  border-bottom: solid 2px;
  border-right: solid 2px;
  transform: skew(45deg);
  position: relative;
  bottom: -4px;
  margin-left: 7px;
}

section.design_pattern3 a span:hover,
section.design_pattern3 .blog_item3 a:hover,
section.design_pattern3 .yazirusi:hover,
.design_pattern3blogsection_back:hover {
  filter: brightness(70%) !important;
  /* transition: transform 0.5s ease;
  transform: scale(1.1); */
}


@media screen and (max-width: 1100px) {
  section.design_pattern3 div.blogsection {
    display: block;
    justify-content: space-between;
    width: 100%;
  }

  section.design_pattern3 div.blog_title {
    width: 88%;
    margin: 0 auto;
  }

  section.design_pattern3 div.wrap {
    width: 88%;
    margin: 0 auto;
    padding-bottom: 50px;
  }

  section.design_pattern3 ul a span {
    position: absolute;
    bottom: -50px;
    right: 60px;
    top: auto;
    left: auto;
    transform: translate(50%, 50%);
  }


  section.design_pattern3 .yazirusi::after {
    width: 40px;
    height: 8px;
  }
}

/*--------------------------------------------------------------------------------------
  ブログ一覧ページ デザインパターン3
---------------------------------------------------------------------------------------*/
section.design_pattern3 section.blogsection3 {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}

header.design_pattern3bloginfo_header {
  max-width: 1050px;
  margin: 0 auto;
  margin-bottom: 20px;
  padding-left: 10px;
}

section.blogsection3 ul li p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

section.blogsection3 ul li span a {
  margin: 0 20px;
  border-radius: 50%;
  padding: 0 9px;
  margin-bottom: 20px;
  display: inline-block;
  display: flex;
  align-items: center; 
  justify-content: center; 
}

section.blogsection3 ul li {
  padding: 15px 0 5px;
  border-bottom: 1px solid #cfcfcf;
  list-style: none;
}

section.blogsection3 ul li div {
  padding-left: 20px;
}

.design_pattern3pagenate {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

.design_pattern3pagenate div {
  padding: 5px 11px;
  margin: 5px;
}

.design_pattern3pagenate div.numpage {
  border: 1px solid black;
}

.design_pattern3blogsection_back {
  margin-bottom: 30px;
}

.design_pattern3blogsection_back a span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 150px;
  height: 40px;
  background: #585656;
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  cursor: pointer;
}

section.blogsection3 ul li h3 {
  position: relative;
}

section.blogsection3 ul li h3 span {
  margin-left: 10px;
  padding: 0 3px;
  border-radius: 2px;
  position: absolute;
}

@media screen and (max-width: 767px) {}

/*--------------------------------------------------------------------------------------
  ブログ詳細ページ デザインパターン3
---------------------------------------------------------------------------------------*/
/* .design_pattern3bloginfo_header {
  padding-top: 50px;
}

section.detail_design_pattern3 .detail_pagenate {
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
}

section.detail_design_pattern3 .blog_detail {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 20px;
}

section.detail_design_pattern3 .detail_pagenate {
  margin-bottom: 20px;
}

section.detail_design_pattern3 .detail_pagenate a span {
  margin: 0 20px;
  border-radius: 50%;
  padding: 0 5px;
  border: 1px solid black;
  margin-bottom: 20px;
}

section.detail_design_pattern3 article div:nth-child(1) {
  height: 100px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  padding-top: 30px;
}

section.detail_design_pattern3 article div:nth-child(2) {
  display: flex;
  padding: 50px;
  background: white;
}

section.detail_design_pattern3 article div img {
  margin: 0 auto;
  width: 80%;
}

section.detail_design_pattern3 article p {
  width: 85%;
  margin: 0 auto;
}

section.detail_design_pattern3 div.blogsection_back {
  margin-bottom: 30px;
}


@media screen and (max-width: 767px) {

  section.design_pattern3,
  section.detail_design_pattern3 {
    padding-top: 0;
  }

  section.detail_design_pattern3 article div:nth-child(1) {
    height: 50px;
    background: red;
    border-radius: 20px;
    margin-bottom: 20px;
    text-align: center;
    color: white;
    padding-top: 2px;
    margin: 0 20px;
  }

  section.detail_design_pattern3 article div:nth-child(2) {
    display: block;
    padding: 0;
  }

  section.detail_design_pattern3 article div:nth-child(2) img {
    width: 85%;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 5px;
  }
} */


/*--------------------------------------------------------------------------------------
  ナビゲーション
---------------------------------------------------------------------------------------*/
section nav {
  margin-bottom: 30px;
  padding: 15px 0;
  margin-top: 20px;
  /* border-top: 1px #eeeeee solid; */
  /* border-bottom: 1px #eeeeee solid; */
}

section nav ul li:hover {
  opacity: 0.6;
}

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 nav {
    margin: 0;
    padding: 0;
  }
}

/* --------------　ポップアップウィンドウ　------------------- */




/* ウィンドウ影 */
.chat_shadow {
  box-shadow: 1px 1px 5px 0 black;
}

/* ウィンドウ枠 */
.chat_border-2 {
  border: 2px solid black;
}

.chat_rounded-lg {
  border-radius: 0.5rem;
}

.chat_overflow-hidden {
  overflow: hidden;
}

.chat_w-96 {
  width: 24rem;
}

.chat_h-\[500px\] {
  height: 500px;
}

.chat_z-30 {
  z-index: 3000 !important;
}

.chat_right-10 {
  right: 2.5rem;
}

.chat_bottom-40 {
  bottom: 10rem;
}

.chat_fixed {
  position: fixed;
}


/* <div class="relative"> */
.chat_relative {
  position: relative;
}

/* <div class="w-full h-10 bg-accent flex justify-between items-center px-4"> */
.chat_px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ヘッダー部分 */
.chat_bg-accent {
  background-color: black;
}

.chat_justify-between {
  justify-content: space-between;
}

.chat_items-center {
  align-items: center;
}

.chat_w-full {
  width: 100%;
}

.chat_h-10 {
  height: 2.5rem;
}

.chat_flex {
  display: flex;
}

/* <p class="text-white text-sm">プレビュー画面</p> */
.chat_text-white {
  color: white;
}

.chat_text-sm {
  font-size: .875rem;
  line-height: 1.25rem;
}




/* <svg class="fill-white w-6 h-6 cursor-pointer hover:fill-gray-300" viewBox="0 0 24 24"><path d="M19,3H16.3H7.7H5A2,2 0 0,0 3,5V7.7V16.4V19A2,2 0 0,0 5,21H7.7H16.4H19A2,2 0 0,0 21,19V16.3V7.7V5A2,2 0 0,0 19,3M15.6,17L12,13.4L8.4,17L7,15.6L10.6,12L7,8.4L8.4,7L12,10.6L15.6,7L17,8.4L13.4,12L17,15.6L15.6,17Z"></path></svg> */
.chat_fill-white {
  fill: #fff;
}

.chat_cursor-pointer {
  cursor: pointer;
}

.chat_w-6 {
  width: 1.5rem;
}

.chat_h-6 {
  height: 1.5rem;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}




/* <iframe class="w-full h-full" src="http://xs142754.xsrv.jp/chatbot/13e1a0d4-778f-46e3-b1e2-5ee672512fe4" frameborder="0"></iframe> */
.chat_w-full {
  width: 100%;
}

.chat_h-full {
  height: 100%;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}



/* easys対応にあたって追加したクラス */
.chat_hidden {
  display: none;
}

.chat_showInFront {
  z-index: 100;
}

@media (max-width: 480px) {
  .chat_bottom-16 {
    bottom: 80px;
  }

  .chat_right-16 {
    right: 1rem;
  }

  .chat_w-96 {
    width: 22rem;
  }
}