/* ----- common ----- */
main {
  background: url(../images/lower/background03.png) repeat-y;
  background-size: 100%;
  overflow: hidden;
}

/* title */
.title_box {
  height: 320px;
  background: url(../images/common/background.jpg);
  position: relative;
}
.title_box::after {
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  background: url(../images/common/hminu_af.png) repeat-x;
  background-size: auto 100%;
  position: absolute;
  left: 0;
  bottom: -40px;
}
.sub_title {
  width: 100%;
  height: 100%;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  background: no-repeat center center;
  background-size: cover;
}

.sub_title h2 {
  margin: 0 auto;
  font-size: 42px;
  line-height: 1.4;
  font-weight: bold;
  color: var(--text-color);
}
/* タブレット用のスタイル */
@media screen and (max-width: 1025px) {
  .sub_title h2 {
    font-size: calc(100vw / 24);
  }
  .title_box {
    height: 24vw;
    background-size: contain !important;
  }
}
/* スマホ用のスタイル */
@media screen and (max-width: 768px) {
  .title_box {
    height: 34vw;
  }
  .title_box::after {
    height: 30px;
    bottom: -30px;
  }
  .sub_title h2 {
    padding: 2vw 3vw;
    font-size: calc(100vw / 20);
  }
}

/* 各ページのタイトル背景 */
#about .sub_title {
  background-image: url("../images/lower/about_ttl.png");
}
@media (max-width: 768px) {
  #about .sub_title {
    background-image: url("../images/lower/about_ttl_sp.png");
  }
}
#product .sub_title {
  background-image: url("../images/lower/product_ttl.png");
}
@media (max-width: 768px) {
  #product .sub_title {
    background-image: url("../images/lower/product_ttl_sp.png");
  }
}
#commitment .sub_title {
  background-image: url("../images/lower/commitment_ttl.png");
}
@media (max-width: 768px) {
  #commitment .sub_title {
    background-image: url("../images/lower/commitment_ttl_sp.png");
  }
}
#contact .sub_title {
  background-image: url("../images/lower/contact_ttl.png");
}
@media (max-width: 768px) {
  #contact .sub_title {
    background-image: url("../images/lower/contact_ttl_sp.png");
  }
}
/*  introduction   */
.introduction {
  padding: 100px 0 20px;
  margin: 0 auto;
  position: relative;
}
.introduction .intro_box h3 {
  font-size: 180%;
  font-weight: bold;
  text-shadow:
    3px 3px 0 #fff,
    -3px -3px 0 #fff,
    -3px 3px 0 #fff,
    3px -3px 0 #fff,
    0px 3px 0 #fff,
    0 -3px 0 #fff,
    -3px 0 0 #fff,
    3px 0 0 #fff;
}
.introduction .intro_box .intro_txt {
  padding: 20px 0;
}
.introduction .intro_icon {
  width: 0.75em;
}

@media (max-width: 1081px) {
  .introduction .intro_box .intro_txt {
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  .introduction .intro_box h3 {
    font-size: 150%;
    padding-left: 8vw;
  }
  .introduction .intro_box .intro_txt {
    padding: 10px 0 0 0;
    text-align: right;
  }
}

/* ----- about.php #about ----- */
/* info */
#about .information {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
#about .information .conditions_list {
  width: 80%;
  margin: auto;
  /* max-width: 860px; */
  flex-wrap: wrap;
  margin: 0 auto;
}
#about .information .conditions_item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  font-size: 120%;
  background: #ffffff99;
}
#about .information .conditions_item dt {
  width: 22%;
  max-width: 160px;
  padding: 15px 10px;
  line-height: 1.6;
  position: relative;
  border-bottom: 4px solid var(--main-color);
}
#about .information .conditions_item .list-beasic {
  padding-left: 10px;
}
#about .information .conditions_item .list-beasic::before {
  content: "▼";
  display: inline-block;
  margin-right: 5px;
  font-size: 60%;
  transform: rotate(-90deg);
}
#about .information .conditions_item dd {
  padding: 15px 10px;
  width: calc(100% - 160px);
  line-height: 1.6;
  border-bottom: 4px solid var(--point-color);
}

.conditions_map {
  width: 60%;
  max-width: 800px;
  height: 30vw;
  max-height: 400px;
  margin: 60px auto 0;
}
.conditions_map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1081px) {
  .conditions_map {
    height: 40vw;
  }
  #about .information .conditions_item {
    font-size: 100%;
  }
  #about .information .conditions_item dt {
    width: 20%;
    padding: 2vw 1vw 2vw 4vw;
  }
  #about .information .conditions_item dd {
    width: 80%;
    padding: 2vw 1vw;
  }
}
@media screen and (max-width: 768px) {
  #about .information {
    padding: 8vw 0;
  }
  #about .information .conditions_list {
    width: 100%;
    margin: 4vw auto;
  }
  #about .information .conditions_item .list-beasic {
    padding-left: 4vw;
  }
  #about .information .conditions_item .list-beasic::before {
    width: 2vw;
    height: 2vw;
    margin-left: -3vw;
  }
  #about .information .conditions_item dt {
    width: 28%;
    padding: 2vw 1vw 2vw 4vw;
  }
  #about .information .conditions_item dd {
    width: 72%;
    padding: 2vw 1vw;
  }
  #about .information .conditions_item dd a {
    pointer-events: none;
    display: inline;
  }
  .conditions_map {
    width: 100%;
    height: 50vw;
    margin: 5vw auto 6vw;
  }
}

/* history */
#about .histry {
  margin: 80px auto 120px;
}

#about .histry .histry_box {
  max-width: 860px;
  width: 90%;
  margin: auto;
  padding: 50px;
  padding-left: 80px;
  background: #ffffff;
  position: relative;
}
#about .histry .histry_box::before {
  content: "";
  display: block;
  width: 3px;
  height: calc(100% - 100px);
  background: var(--main-color);
  position: absolute;
  left: 60px;
}
#about .histry .histry_item dt {
  width: 100%;
  padding: 10px;
  font-family: "Yusei Magic", sans-serif;
  font-size: 120%;
  font-weight: bold;
  line-height: 1.4;
  color: var(--text-color);
  position: relative;
}
#about .histry .histry_item dt::after {
  content: "";
  display: block;
  background: var(--main-color);
  width: 0;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 1s ease;
}
#about .histry .histry_box .histry_item dt.is-active::after {
  width: 100%;
  transition: all 1s ease;
}
#about .histry .histry_item dt::before {
  content: "";
  display: block;
  background: var(--main-color);
  width: 20px;
  height: 20px;
  border-radius: 30px;
  position: absolute;
  left: -29px;
  top: 0.75em;
}
#about .histry .histry_item dd {
  display: flex;
  flex-wrap: wrap;
  margin-left: 20px;
  margin-bottom: 30px;
  padding: 20px;
  line-height: 1.4;
  gap: 20px;
}
#about .histry .histry_item dd span {
  width: 34%;
  max-width: 180px;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #about .histry .histry_box {
    padding: 5vw;
    padding-left: 8vw;
  }
  #about .histry .histry_item dt::before {
    width: 14px;
    height: 14px;
    border-radius: 30px;
    position: absolute;
    left: -3vw;
  }
  #about .histry .histry_box::before {
    height: calc(100% - 10vw);
    background: var(--main-color);
    position: absolute;
    left: 6vw;
  }
  #about .histry .histry_item dd {
    padding: 2vw;
    line-height: 1.4;
  }
  #about .histry .histry_item dd p {
    width: calc(100% - 180px);
  }
}

/* ----- product.php #product ----- */
/* product */
.crops_nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}
.vegetables_list {
  position: relative;
  padding-top: 80px;
  margin-bottom: 60px;
}
.vegetables_list .crops_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 100px 0;
  background: url(../images/common/conts_hrbase.png) repeat-x center top;
  background-size: auto 30px;
}
.vegetables_list .crops_items_cont {
  width: 41%;
  max-width: 680px;
}
.vegetables_list .crops_items_name {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: clamp(2.8rem, 2em, 3rem);
  font-weight: bold;
  color: var(--main-color);
  overflow: hidden;
}
.vegetables_list .crops_items_name .name_icon {
  width: 1.5em;
  margin-right: 5px;
}
.vegetables_list .crops_items_season {
  width: 50%;
  max-width: 240px;
  margin-bottom: 20px;
  background: #ffffff;
  line-height: 2;
  color: var(--sub-color);
  border: 3px var(--sub-color) solid;
  border-radius: 10px;
  position: relative;
}
.vegetables_list .crops_items_season span {
  background: var(--sub-color);
  color: #ffffff;
  margin-right: 10px;
  padding: 5px 10px;
}
.vegetables_list .crops_items_txt {
  line-height: 2;
  position: relative;
}
.vegetables_list .crops_items_img {
  width: 52%;
  height: 420px;
  line-height: 0;
  border-radius: 30%;
  overflow: hidden;
}
.vegetables_list .crops_items_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 反転 */
.vegetables_list .crops_item:nth-of-type(even) .crops_items_cont {
  order: 2;
}
.vegetables_list .crops_item:nth-of-type(even) .crops_items_img {
  order: 1;
}

@media (max-width: 1081px) {
  .crops_nav {
    margin-bottom: 6vw;
    gap: 2vw;
  }
  .crops_nav li {
    max-width: 120px;
  }
  .vegetables_list {
    padding-top: 5vw;
  }
  .vegetables_list .crops_item {
    padding: 14vw 0;
    margin-bottom: 2vw;
  }
  .vegetables_list .crops_items_img {
    width: 46%;
    height: 300px;
    top: 60px;
  }
  .vegetables_list .crops_items_cont {
    width: 52%;
  }
}
@media (max-width: 768px) {
  .crops_nav {
    padding: 2vw;
    gap: 10px;
    flex-wrap: wrap;
  }
  .crops_nav li {
    width: calc((100% / 3) - 10px);
    max-width: none;
  }
  .vegetables_list {
    position: relative;
    padding: 5vw 0;
    margin-bottom: 60px;
  }
  .vegetables_list .crops_items_cont {
    width: 80%;
    margin: 0 auto 10px;
    line-height: 2;
    position: relative;
  }
  .vegetables_list .crops_items_name {
    font-size: clamp(1.6rem, 1.4em, 2.4rem);
  }
  .vegetables_list .crops_items_season {
    width: fit-content;
    margin: 0 0 10px auto;
    padding-right: 10px;
  }
  .vegetables_list .crops_items_img {
    width: 100%;
    height: 56vw;
    position: static;
    border-radius: 80px;
  }

  .vegetables_list .crops_item:nth-of-type(even) .crops_items_cont {
    order: 1;
  }
  .vegetables_list .crops_item:nth-of-type(even) .crops_items_img {
    order: 2;
  }
}

/* --- furusatotax --- */
.furusatotax {
  background: url(../images/common/background.jpg);
  padding: 80px 0 120px;
  border-top: 10px double var(--point-color);
}
.furusatotax h2 {
  width: fit-content;
  margin: 0 auto 60px;
  font-family: "Yusei Magic", sans-serif;
  font-size: 1.8em;
  font-weight: bold;
  position: relative;
}
.furusatotax h2 span::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background: var(--main-color);
  position: absolute;
  bottom: -10px;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.furusatotax h2.is-active span::after {
  width: 100%;
}
.furusatotax h2::before,
.furusatotax h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url(../images/lower/wa-i1_icon.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: calc(50% - 25px);
}
.furusatotax h2::after {
  right: -70px;
}
.furusatotax h2::before {
  left: -70px;
  transform: scale(-1, 1);
}
.furusatotax p {
  text-align: center;
  margin-bottom: 30px;
}
.furusatotax .furusatotax_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5%;
}
.furusatotax .furusatotax_list li {
  width: calc((100% / 3) - 5%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.furusatotax .furusatotax_list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 1.5em 10px 10px;
  width: 100%;
  height: 80px;
  background: var(--main-color);
  font-size: 1.2em;
  line-height: 1;
  align-self: center;
  text-align: center;
  border: #ffffff 3px solid;
  color: #ffffff;
  border-radius: 10px;
}
.furusatotax .furusatotax_list li .tax_arrow {
  display: block;
  width: 1.2em;
  margin: 0 auto;
  position: absolute;
  top: calc(50% - 0.6em);
  right: 1em;
  transform: rotate(-90deg);
  transition: 0.3s;
}
.furusatotax .furusatotax_list li:hover .tax_arrow {
  right: 0.5em;
  transition: 0.3s;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  .furusatotax {
    padding: 6vw 0 10vw;
    border-top: 6px double var(--point-color);
  }
  .furusatotax h2 {
    margin: 0 auto 6vw;
    font-size: 1.4em;
  }
  .furusatotax h2::before {
    width: 1.6em;
    height: 1.6em;
    top: calc(50% - 0.8em);
    left: -2em;
  }
  .furusatotax h2::after {
    width: 1.6em;
    height: 1.6em;
    top: -10px;
    right: -2em;
  }
  .furusatotax .furusatotax_list {
    gap: 2%;
  }
  .furusatotax .furusatotax_list li {
    width: calc((100% / 3) - 2%);
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  .furusatotax {
    padding: 10vw 0 16vw;
  }
  .furusatotax h2 {
    margin: 0 auto 6vw;
    font-size: clamp(1.6rem, 1.4em, 2.4rem);
  }
  .furusatotax .furusatotax_list li {
    width: 80%;
    margin-bottom: 15px;
  }
  .furusatotax .furusatotax_list li a {
    padding: 3vw;
    width: 100%;
    height: auto;
    font-size: 1.4em;
  }
  .furusatotax .furusatotax_list li .tax_arrow {
    width: 1em;
    top: calc(50% - 0.5em);
    right: 12%;
  }
}

/* ----- commitment.php #commitment ----- */
/* commitment */
#commitment .policy_cotns {
  padding: 120px 0 340px;
  position: relative;
  z-index: -1;
}
#commitment .commitment_hl {
  margin-bottom: 15px;
}
#commitment .commitment_hl span {
  font-size: 1.2em;
  display: flex;
  text-align: center;
}
#commitment .commitment_hl span img {
  width: 1.2em;
  margin-right: 5px;
}
#commitment .commitment_hl em {
  font-size: 1.8em;
  display: block;
  font-weight: normal;
}
#commitment .policy_cotns .policy_txt {
  width: 45%;
  /* max-width: 720px; */
  margin: 20px auto 10px 50%;
  padding: 30px 50px;
  background: #ffe6d2aa;
  line-height: 2;
  position: relative;
}
/* #commitment .policy_cotns .policy_txt p {
  color: var(--point-color);
} */
#commitment .policy_cotns .policy_img {
  width: 62%;
  height: 420px;
  line-height: 0;
  position: absolute;
  bottom: 100px;
  left: 0;
  z-index: -1;
}
#commitment .policy_cotns .policy_img2 {
  width: 32%;
  height: 240px;
  position: absolute;
  bottom: 20px;
  left: 52%;
  overflow: hidden;
}
#commitment .policy_cotns .policy_img img,
#commitment .policy_cotns .policy_img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1081px) {
  #commitment .policy {
    margin: 10vw 0;
  }
  #commitment .policy_cotns {
    padding: 0 0 45vw;
  }
  #commitment .policy_cotns dt,
  #commitment .policy_cotns .policy_txt {
    width: 70%;
    margin: 20px auto 10px 5vw;
    line-height: 2;
    position: relative;
  }
  #commitment .commitment_hl em {
    font-size: 1.6em;
  }
  #commitment .policy_cotns .policy_img {
    width: 62%;
    height: 40vh;
    max-height: 360px;
    top: 25vw;
  }
  #commitment .policy_cotns .policy_img2 {
    width: 42%;
    height: 30vh;
    top: 18vw;
    left: auto;
    right: 0;
  }
}

@media (max-width: 768px) {
  #commitment .policy_cotns {
  }
  #commitment .policy_cotns dt,
  #commitment .policy_cotns .policy_txt {
    width: 90%;
    margin: 20px auto 10px auto;
  }
  #commitment .policy_cotns .policy_img {
    width: 60%;
    height: 24vh;
    top: auto;
    bottom: 10vw;
  }
  #commitment .policy_cotns .policy_img2 {
    width: 45%;
    height: 24vh;
    top: auto;
    bottom: 0;
  }
}

/* training */
#commitment .policy_items_box {
  width: 82%;
  margin: 120px 0 120px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#commitment .policy_items_box:nth-of-type(even) {
  margin: 10px 5% 120px auto;
}
#commitment .policy_items_box::after {
  content: "";
  display: block;
  width: 0;
  height: 310px;
  background: #a2d7a554;
  mix-blend-mode: multiply;
  position: absolute;
  bottom: -50px;
  left: -5vw;
  z-index: -1;
  transition: all 0.8s ease;
}
#commitment .policy_items_box:nth-of-type(even)::after {
  right: -5vw;
  left: auto;
}
#commitment .policy_items_box.is-active::after {
  width: 90%;
  transition: all 0.8s ease;
}
#commitment .policy_items_box .policy_items_txt {
  width: calc(50% - 20px);
  order: 2;
}
#commitment .policy_items_box dt {
  padding: 15px;
  margin: 0 auto 20px;
  background: #ffffff;
  border-top: 8px double #a67c52;
  border-bottom: 8px double #a67c52;
  position: relative;
}
#commitment .policy_items_box .policy_items_txt dd {
  line-height: 1.6;
  padding: 0 10px 20px;
  position: relative;
}
#commitment .policy_items_box .policy_items_img {
  width: calc(50% - 20px);
  order: 1;
}
#commitment .policy_items_box .policy_items_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 反転 */
#commitment .policy_items_box:nth-of-type(even) .policy_items_txt {
  order: 1;
}
#commitment .policy_items_box:nth-of-type(even) .policy_items_img {
  order: 2;
}

.dashed-note {
  background-color: #fff;
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(0deg, #ccc 1px, transparent 1px);
  background-size:
    8px 100%,
    100% 1.7em;
  line-height: 1.72em;
  padding-bottom: 5px;
  flex-grow: 2;
}

.point {
  background-color: #ffffff;
  margin: 20px auto;
  padding: 20px 30px;
  font-size: 80%;
  line-height: 1.5em;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}
.point::before {
  content: "";
  display: block;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 2px solid var(--sub-color);
  position: absolute;
  top: calc(50% - ((100% - 10px) / 2));
  left: calc(50% - ((100% - 10px) / 2));
  transition: all 0.5s;
  z-index: 1;
  border-radius: 10px;
}
.point em {
  display: block;
  width: fit-content;
  margin: 0 0 5px;
  padding: 2px 10px 2px;
  background: #8cc63f33;
  border-left: 6px solid var(--sub-color);
  border-right: 6px solid var(--sub-color);
  font-size: 1.2em;
  font-weight: bold;
  z-index: 2;
}

@media (max-width: 1081px) {
  #commitment .policy {
    padding: 8vw 0 6vw;
  }
  #commitment .policy_items_box {
    width: 100%;
    margin: 10px 0 120px 0;
  }
  #commitment .policy_items_box .policy_items_txt dd {
    margin-top: 10px;
    padding: 15px 0;
  }
  #commitment .policy_items_box .policy_items_img {
    height: auto;
  }
}

@media (max-width: 768px) {
  #commitment .training {
    padding: 12vw 0 6vw;
  }
  #commitment .policy_items_box .policy_items_txt {
    width: 80%;
    order: 1 !important;
  }

  #commitment .policy_items_box .policy_items_img {
    width: 75%;
    margin: 0 0 0 auto;
    order: 2 !important;
  }
  /* 反転 */
  #commitment .policy_items_box:nth-of-type(even) .policy_items_txt {
    margin: 0 0 0 auto;
  }
  #commitment .policy_items_box:nth-of-type(even) .policy_items_img {
    margin: 0 0 auto 0;
  }
  .point {
    font-size: 90%;
  }
}

/* ----- よくある質問CSS  ----- */
.faq {
  padding: 60px 0 120px;
}

.faq_box {
  max-width: 860px;
  margin: 20px auto;
}
.faq_box dl {
  margin-bottom: 20px;
}

.faq_box dl:last-child {
  margin-bottom: 60px;
}

.faq_box:last-of-type dl:last-child {
  margin-bottom: 20px;
}
/* カテゴリータイトル */
.faq_ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: 32px;
  font-weight: bold;
  position: relative;
}
.faq_ttl::before,
.faq_ttl::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #cccccc;
}
.faq_ttl::before {
  position: absolute;
  top: 50%;
  left: -140px;
}
.faq_ttl::after {
  position: absolute;
  top: 50%;
  right: -140px;
}
.faq_Q {
  background: #f8eaed;
  font-size: 20px;
  font-weight: normal;
  color: var(--main-color);
  padding: 10px 10px 10px 40px;
  position: relative;
  cursor: pointer;
}
.faq_Q .btn_arrow {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 10px;
  transition: all 0.2s ease-in-out;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.faq_A {
  padding: 15px 40px;
  margin: 0;
  line-height: 1.8;
}
.faq_box .faq_A {
  background: #ffffff;
  border: 3px solid #f8eaed;
}
.faq_box .faq_A a {
  color: var(--main-color);
  text-decoration: underline;
  transition: all 0.25s;
}
.faq_box .faq_A a:hover {
  color: var(--sub-color);
  transition: all 0.25s;
}
.faq_Q.open .btn_arrow {
  background: url(../images/common/faq_c.png) no-repeat center center;
  transition: all 0.2s ease-in-out;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.faq_contact {
  padding: 60px 0;
}

.faq_contact p {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
}

/* ----- online-shop.php #shop ----- */
/* 商品一覧（product上書き） */
/* フォーム（コンタクト上書き） */

/* ----- recruit.php #recruit ----- */
#recruit .sub_title::after {
  z-index: 5;
}
/* greeting */
#recruit .greeting_cotns {
  padding: 120px 0;
  position: relative;
}
#recruit .greeting_cotns dt,
#recruit .greeting_cotns .greeting_cotns_txt {
  width: 45%;
  margin: 20px auto 10px 50%;
  line-height: 2;
  position: relative;
}
#recruit .greeting_cotns .greeting_cotns_img {
  width: 45%;
  line-height: 0;
  position: absolute;
  top: 100px;
  left: 0;
}
#recruit .greeting_cotns .greeting_cotns_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
@media (max-width: 1081px) {
  #recruit .greeting_cotns {
    padding: 35vw 0 6vw;
  }
  #recruit .greeting_cotns dt,
  #recruit .greeting_cotns .greeting_cotns_txt {
    width: 90%;
    margin: 20px auto 10px auto;
    line-height: 2;
    position: relative;
  }
  #recruit .greeting_cotns .greeting_cotns_img {
    width: 100%;
    height: 24vh;
    top: 0;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  #recruit .greeting_cotns .greeting_cotns_img {
    height: 16vh;
  }
}

#recruit .looking {
  padding: 120px 0;
}
#recruit .looking .looking_box {
  width: 90%;
  margin: 0 auto 100px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  position: relative;
}
#recruit .looking .looking_box .looking_txt {
  width: calc(62% - 20px);
}
#recruit .looking .looking_box .looking_txt dt {
  font-size: 160%;
  font-weight: bold;
  padding: 0 0 10px 0;
  margin-bottom: 20px;
  border-bottom: 4px dotted #8cc63f;
  position: relative;
}
#recruit .looking .looking_box .looking_txt dd {
  line-height: 1.6;
}
#recruit .looking .looking_box .looking_img {
  width: calc(36% - 20px);
  margin-top: 10px;
  overflow: hidden;
  line-height: 0;
  border: 5px #fff solid;
  box-shadow: 0 0 10px #49382155;
}
#recruit .looking .looking_txt2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#recruit .looking .looking_txt2 p:nth-of-type(1) {
  width: 50%;
}
#recruit .looking .looking_video {
  width: 46%;
}
#recruit .looking .looking_video video {
  margin-top: 10px;
  box-shadow: 0 0 10px #49382155;
  border: 5px #fff solid;
}

@media (max-width: 1081px) {
  #recruit .looking {
    padding: 8vw 0 6vw;
  }
  #recruit .looking .looking_box {
    width: 100%;
    margin: 0 auto 6vw auto;
    align-items: end;
  }
  #recruit .looking .contact_hl::before {
    width: 52vw;
    left: calc(50% - 26vw);
  }
  #recruit .looking .looking_box .looking_txt {
    width: calc(62% - 2vw);
  }
  #recruit .looking .looking_box .looking_img {
    width: calc(38% - 2vw);
  }
  #recruit .looking .looking_box .looking_txt dt {
    font-size: 150%;
  }
}

@media (max-width: 768px) {
  #recruit .looking {
    padding: 12vw 0 6vw;
  }
  #recruit .introduction {
    background: url(../images/common/singl_ttlanime_sp.gif) no-repeat top center;
    background-size: contain;
  }
  #recruit .looking .contact_hl::before {
    width: 90vw;
    left: calc(50% - 45vw);
  }
  #recruit .looking .looking_box .looking_txt,
  #recruit .looking .looking_box .looking_img {
    width: 90%;
    margin: auto;
    order: 2;
  }
  #recruit .looking .looking_box .looking_img {
    order: 1;
    margin-bottom: 20px;
  }
  #recruit .looking .looking_box .looking_txt dt {
    font-size: 140%;
  }
  #recruit .looking .looking_txt2 p:nth-of-type(1) {
    width: 100%;
  }
  #recruit .looking .looking_video {
    width: 90%;
    margin: 0 auto 6vw;
    border: 3px #fff solid;
  }
}

/* wanted */
#recruit .wanted {
  padding: 120px 0 60px;
}

#recruit .wanted .introduction {
  margin-bottom: 80px;
  padding: 0;
  background: none;
}
#recruit .wanted .introduction .intro_txt {
  padding: 0;
  width: fit-content;
  text-align: center;
  margin: auto;
}
#recruit .wanted .job_info .job_info_list {
  width: 80%;
  max-width: 780px;
  margin: 0 auto;
}
#recruit .wanted .job_info .job_info_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 2px solid #493821;
  border-width: 2px 2px 0 2px;
  background: #8cc63f;
}
#recruit .wanted .job_info .job_info_item dt {
  padding: 10px;
  font-weight: bold;
  font-size: 110%;
  width: 20%;
}
#recruit .wanted .job_info .job_info_item dd {
  padding: 10px;
  width: 80%;
  background: #fff8ed;
  line-height: 1.4;
}
#recruit .wanted .job_info .job_info_item:last-child {
  border-bottom-width: 2px;
}
#recruit .wanted .job_info small {
  display: block;
}
#recruit .wanted .job_info em {
  font-weight: bold;
}
#recruit .wanted .main_btn {
  margin: 30px auto;
}

@media (max-width: 1081px) {
  #recruit .wanted {
    padding: 8vw 0 6vw;
  }
  #recruit .wanted .job_info .job_info_item dt {
    padding: 1vw 2vw 1vw;
  }
  #recruit .wanted .job_info .job_info_item dd {
    padding: 1vw 2vw 1vw;
  }
}

@media (max-width: 768px) {
  #recruit .wanted {
    padding: 12vw 0 14vw;
  }
  #recruit .wanted .introduction {
    margin-bottom: 8vw;
  }
  #recruit .wanted .introduction .intro_txt {
    text-align: left;
  }
  #recruit .wanted .job_info .job_info_list {
    width: 100%;
  }
  #recruit .wanted .job_info .job_info_item dt {
    width: 100%;
    font-size: 100%;
    text-align: center;
  }
  #recruit .wanted .job_info .job_info_item dd {
    width: 100%;
  }
}
