@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;700;800&family=Noto+Sans+JP:wght@400;700&display=swap");
/* ---------------------------------------------------------------------------------------------------------

 reset

--------------------------------------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  scroll-behavior: smooth;
  overflow: auto;
}

/* Typography */
body {
  font-family: "Noto Sans JP", serif, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Meiryo", "メイリオ", "Osaka", "MS PGothic", "helvetica", "arial", serif;
  line-height: 1.6;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #514327;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  html {
    font-size: 2.5vw;
  }
}
@media print, screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Layout */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

/* Elements */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

video {
  max-width: 100%;
  height: auto;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

/* Attributes */
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

::selection {
  background: #0165ab;
  color: #ffffff;
}

::-moz-selection {
  background: #0165ab;
  color: #ffffff;
}

iframe {
  vertical-align: bottom;
}

dfn {
  font-style: normal;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* ---------------------------------------------------------------------------------------------------------

 module

--------------------------------------------------------------------------------------------------------- */
[data-action] {
  color: #514327;
}

a {
  text-decoration: none;
  transition: all .2s ease-in;
}

a:link,
a:visited {
  color: #3299FF;
}

a:hover,
a:active {
  color: #004e84;
}

a[target="_blank"] {
  color: limegreen;
}

.link-filter a:hover,
a.link-filter:hover,
button.link-filter:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -moz-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: 1em 1em;
  text-align: center;
  color: #fff !important;
  background: #42c700;
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  font-weight: bold;
  border-radius: 10px;
}
.btn.btn_back, .btn.btn_reset {
  background: gray;
}
.btn.btn_conf, .btn.btn_send {
  background: #42c700;
  margin-top: 1em;
}

button.btn {
  border: none;
}

.mt1 {
  margin-top: 1em;
}

.mt2 {
  margin-top: 2em;
}

.mt3 {
  margin-top: 3em;
}

.mb1 {
  margin-bottom: 1em;
}

.mb2 {
  margin-bottom: 2em;
}

.mb3 {
  margin-bottom: 3em;
}

.mb5 {
  margin-bottom: 5em;
}

@media print, screen and (min-width: 768px) {
  .mt0-md {
    margin-top: 0;
  }

  .mb0-md {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 992px) {
  .mt0-lg {
    margin-top: 0;
  }

  .mb0-lg {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 1200px) {
  .mt0-xl {
    margin-top: 0;
  }

  .mb0-xl {
    margin-bottom: 0;
  }
}
.ptb_box {
  padding-top: 7.5em;
  padding-bottom: 7.5em;
}

.pt_box {
  padding-top: 7.5em;
}

.pb_box {
  padding-bottom: 7.5em;
}

.align-l {
  text-align: left;
}

.align-c {
  text-align: center;
}

.align-r {
  text-align: right;
}

.f-bold {
  font-weight: bold;
}

.fz12 {
  font-size: 1.2rem;
}

.fz13 {
  font-size: 1.3rem;
}

.fz17 {
  font-size: 1.7rem;
}

.fz34 {
  font-size: 3.4rem;
}

.fz14 {
  font-size: clamp(1.2rem, 1.727vw, 1.4rem);
}

.fz16 {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}

.fz18 {
  font-size: clamp(1.4rem, 1.727vw, 1.8rem);
}

.fz19 {
  font-size: clamp(1.7rem, 2vw, 1.9rem);
}

.fz20 {
  font-size: clamp(1.8rem, 1.727vw, 2rem);
}

.fz22 {
  font-size: clamp(2rem, 2.4vw, 2.2rem);
}

.fz24 {
  font-size: clamp(2.2rem, 2.4vw, 2.4rem);
}

.fz30 {
  font-size: clamp(2.4rem, 3vw, 3rem);
}

.fz32 {
  font-size: clamp(2.4rem, 3.18vw, 3.2rem);
}

.fz36 {
  font-size: clamp(2.6rem, 3.18vw, 3.6rem);
}

.fz38 {
  font-size: clamp(3rem, 3vw, 3.8rem);
}

.fz48 {
  font-size: clamp(4rem, 4vw, 4.8rem);
}

.fz60 {
  font-size: clamp(3rem, 5.35vw, 6rem);
}

.fz80 {
  font-size: clamp(5rem, 5.35vw, 8rem);
}

/* indent 二行目以降を1字下げる*/
.att {
  padding-left: 1em;
  text-indent: -1em;
}

/* カウンタ */
ol.counter {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}

ol.counter li {
  text-indent: -1.3em;
  padding-left: 1.3em;
}

ol.counter li:before {
  counter-increment: item;
  content: counter(item) ".";
  padding-right: .5em;
  color: #514327;
  font-weight: bold;
}

ul.list-disc {
  list-style: none;
}

ul.list-disc li {
  position: relative;
  padding-left: 1em;
  margin-bottom: .8em;
}

ul.list-disc li:last-child {
  margin-bottom: 0;
}

ul.list-disc li::after {
  display: block;
  content: '';
  position: absolute;
  top: .75em;
  left: 0em;
  width: 6px;
  height: 6px;
  background-color: #42c700;
  border-radius: 100%;
}

/* table
----------------------------------------------------------*/
.tbl02 {
  width: 100%;
  background: #fff;
}

.tbl02 th {
  background: #fff;
  padding: 2rem;
  border: #DADADA solid 1px;
  width: 30%;
  text-align: left;
}

.tbl02 td {
  padding: 2rem;
  border: #DADADA solid 1px;
}

@media screen and (max-width: 992px) {
  .tbl02 th {
    width: 100%;
    display: block;
  }

  .tbl02 td {
    width: 100%;
    display: block;
  }
}
.tbl03 {
  width: 100%;
  border-right: #42c700 solid 1px;
}

.tbl03 tbody td {
  padding: 2rem;
  border-left: #DADADA solid 1px;
  border-bottom: #DADADA solid 1px;
}

.tbl_line {
  width: 100%;
  border-collapse: separate;
}

.tbl_line th {
  padding: 2rem;
  border-bottom: #42c700 solid 2px;
  width: 25%;
  text-align: left;
}

.tbl_line td {
  padding: 2rem;
  border-bottom: #ccc solid 1px;
}

@media screen and (max-width: 992px) {
  .tbl_line th {
    width: 100%;
    display: block;
    border-top: #42c700 solid 2px;
    background: #eee;
  }

  .tbl_line td {
    width: 100%;
    display: block;
    border-bottom: none;
  }
}
/* 縦横比の画像
---------------------------------------------------- */
.photo-ofi {
  height: 0;
  display: block;
  padding-bottom: 75%;
  /* 高さを指定（ボックスの横幅を基準） */
  background-color: #f0f0f0;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  font-family: 'object-fit: scale-down;';
  position: absolute;
  left: 0;
  top: 0;
}

/* ---------------------------------------------------------------------------------------------------------

 layout

--------------------------------------------------------------------------------------------------------- */
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

@media print, screen and (min-width: 768px) {
  .hidden-md {
    display: none !important;
  }

  .visible-md {
    display: block !important;
  }
}
@media print, screen and (min-width: 992px) {
  .hidden-lg {
    display: none !important;
  }

  .visible-lg {
    display: block !important;
  }
}
@media print, screen and (min-width: 1200px) {
  .hidden-xl {
    display: none !important;
  }

  .visible-xl {
    display: block !important;
  }
}
.order1 {
  -ms-flex-order: 1;
  order: 1;
}

.order2 {
  -ms-flex-order: 2;
  order: 2;
}

.order3 {
  -ms-flex-order: 3;
  order: 3;
}

@media print, screen and (min-width: 768px) {
  .order1-md {
    -ms-flex-order: 1;
    order: 1;
  }

  .order2-md {
    -ms-flex-order: 2;
    order: 2;
  }

  .order3-md {
    -ms-flex-order: 3;
    order: 3;
  }
}
@media print, screen and (min-width: 992px) {
  .order1-lg {
    -ms-flex-order: 1;
    order: 1;
  }

  .order2-lg {
    -ms-flex-order: 2;
    order: 2;
  }

  .order3-lg {
    -ms-flex-order: 3;
    order: 3;
  }
}
@media print, screen and (min-width: 1200px) {
  .order1-xl {
    -ms-flex-order: 1;
    order: 1;
  }

  .order2-xl {
    -ms-flex-order: 2;
    order: 2;
  }

  .order3-xl {
    -ms-flex-order: 3;
    order: 3;
  }
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media print, screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media print, screen and (min-width: 1200px) {
  .container {
    max-width: 1110px;
  }
}

.container-full {
  margin: 0 calc(50% - 50vw);
}

.container-wide {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.justify-sb {
  justify-content: space-between;
}

.justify-c {
  justify-content: center;
}

.items-c {
  align-items: center;
}

/* ---------------------------------------------------------------------------------------------------------

 common

--------------------------------------------------------------------------------------------------------- */
.ofi_cover {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  font-family: 'object-fit: cover;object-position:center center;';
}

/*
#al01,
#al02 {
  padding-top: 12rem;
  margin-top: -12rem;
}
@media print, screen and (min-width: 992px) {
  #al01,
  #al02 {
    padding-top: 12rem;
    margin-top: -12rem;
  }
}
*/

/* page title
----------------------------------------------------------*/
.page_title {
  background: url("../images/pt_img.jpg") no-repeat center center/cover;
  height: 50vw;
  position: relative;
  margin-bottom: 6em;
}
@media print, screen and (min-width: 768px) {
  .page_title {
    height: 30vw;
    margin-bottom: 10em;
  }
}
@media print, screen and (min-width: 992px) {
  .page_title {
    height: 25vw;
    margin-bottom: 13em;
  }
}
.page_title .pt_wrap {
  padding: 0 5vw;
}
@media print, screen and (min-width: 1200px) {
  .page_title .pt_wrap {
    padding: 0 10vw;
  }
}
.page_title h2 {
  position: absolute;
  top: 42vw;
}
@media print, screen and (min-width: 768px) {
  .page_title h2 {
    top: 23vw;
  }
}
@media print, screen and (min-width: 992px) {
  .page_title h2 {
    top: 18vw;
  }
}
@media print, screen and (min-width: 1200px) {
  .page_title h2 {
    top: 20vw;
  }
}
.page_title h2 span {
  display: block;
  color: #42c700;
  line-height: 1;
}
.page_title h2 .en {
  font-family: "Barlow";
  font-size: clamp(6rem, 12vw, 15rem);
}
.page_title h2 .jp {
  font-size: clamp(2.2rem, 5vw, 6rem);
}

/* heading
----------------------------------------------------------*/
.heading01 {
  text-align: center;
  line-height: 1.2;
}
.heading01 span {
  display: block;
}
.heading01 .en {
  font-size: clamp(5rem, 5.35vw, 8rem);
  font-family: "Barlow";
  font-weight: 800;
  color: #42c700;
  position: relative;
  padding-top: .25em;
}
.heading01 .en::before {
  content: '';
  background: #42c700;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -5px;
}
@media print, screen and (min-width: 768px) {
  .heading01 .en::before {
    width: 14px;
    height: 14px;
    margin-left: -7px;
  }
}
.heading01 .jp {
  font-size: clamp(1.4rem, 1.727vw, 1.8rem);
  font-weight: 700;
}

.heading02 {
  text-align: left;
  line-height: 1.2;
}
.heading02 span {
  display: block;
}
.heading02 .en {
  font-size: clamp(5rem, 5.35vw, 8rem);
  font-family: "Barlow";
  font-weight: 800;
  color: white;
  position: relative;
  padding-top: .25em;
}
.heading02 .en::before {
  content: '';
  background: white;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media print, screen and (min-width: 768px) {
  .heading02 .en::before {
    width: 14px;
    height: 14px;
  }
}
.heading02 .jp {
  font-size: clamp(1.4rem, 1.727vw, 1.8rem);
  font-weight: 700;
  color: white;
}

.heading03 {
  font-size: clamp(2.6rem, 3.18vw, 3.6rem);
  border-bottom: #DADADA solid 1px;
  padding-left: 1em;
  margin-bottom: 1em;
  position: relative;
}
.heading03::before {
  content: '';
  background: #42c700;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: -5px;
}
@media print, screen and (min-width: 768px) {
  .heading03::before {
    width: 10px;
    height: 10px;
    margin-left: -7px;
  }
}

.clr-r {
  color: #B13A3A;
}

.clr-n {
  color: #0C274A;
}

.clr-w {
  color: white;
}

/* button
----------------------------------------------------------*/
.btn_more {
  display: flex;
  align-items: center;
  font-family: "Barlow";
  font-weight: 500;
  color: #fff !important;
  font-size: 1.8rem;
  background: #42c700;
  border-radius: 100px;
  width: 250px;
  height: 80px;
  padding: 0 1em;
  position: relative;
}
@media print, screen and (min-width: 992px) {
  .btn_more {
    width: 330px;
    height: 90px;
    padding: 0 2em;
  }
}
.btn_more::after {
  content: '';
  background: #fff;
  width: 36px;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2em;
  transition: all 0.5s 0s ease;
}
.btn_more:hover {
  opacity: 0.7;
}
.btn_more:hover::after {
  right: 0;
}

.btn_base {
  display: inline-block;
  background: #0C274A;
  color: #fff !important;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1em;
  border-radius: 8px;
  text-align: center;
  width: 80%;
  letter-spacing: .05em;
}
@media print, screen and (min-width: 768px) {
  .btn_base {
    width: 350px;
  }
}
.btn_base:hover {
  opacity: 0.7;
}
.btn_base.arrow {
  position: relative;
}
.btn_base.arrow::after {
  content: '';
  background: url("../images/arrow02.png");
  width: 18px;
  height: 9px;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -4px;
}

.note {
  background: #f9f8f3;
  background: #effae3;
  border-radius: 10px;
  border: #514327 solid 2px;
  padding: 2em;
  width: 90%;
  margin-top: 4em;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media print, screen and (min-width: 992px) {
  .note {
    padding: 3em;
  }
}
.note::before {
  content: '';
  background: #42c700;
  border-radius: 10px;
  width: 100px;
  height: 100px;
  position: absolute;
  left: -30px;
  top: -30px;
  z-index: -1;
}

/* ---------------------------------------------------------------------------------------------------------

 header

--------------------------------------------------------------------------------------------------------- */
.header {
  background: #fff;
}

.h_container {
  width: 90vw;
  margin: 0 auto;
  padding: 30px 0;
}
@media print, screen and (min-width: 1200px) {
  .h_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 0;
  }
}
.h_container h1 {
  width: 250px;
}
@media print, screen and (min-width: 1200px) {
  .h_container h1 {
    width: calc(748px / 2);
  }
}
.h_container .pc_tel {
  display: none;
  text-align: center;
/*  padding-right: 4vw;*/
  padding-right: 100px;
}
@media print, screen and (min-width: 1200px) {
  .h_container .pc_tel {
    display: block;
  }
}
.h_container .pc_tel p {
  font-size: 1.6rem;
  font-weight: 700;
}
.h_container .pc_tel [data-action="call"] {
  font-size: 3rem;
  color: #42c700;
  font-weight: 700;
}
.h_container .pc_tel em {
  font-style: normal;
  padding-left: 30px;
  position: relative;
}
.h_container .pc_tel em::before {
  content: '';
  background: url("../images/h_tel.png");
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------------------------------------------------------------------------------------------------------

 Gnavi

--------------------------------------------------------------------------------------------------------- */
.spmenucontainer {
  height: 100vh;
  background: #f9f8f3;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  top: 0;
  right: 0;
  transform: translate(100vw, 0);
  transition: .6s ease-in-out;
  z-index: 100;
}

.spmenu__navlist {
  margin: 30px 0;
  text-align: center;
}

.spmenu__navlist a {
  color: #514327;
  font-size: 1.8rem;
  font-weight: bold;
}
.spmenu__navlist a:hover {
  opacity: 0.7;
}

.spmenu__navlist.current a {
  color: #42c700;
}

/* バーガーボタン */
.burgerbtn {
  position: relative;
  z-index: 100;
}

.burgerbtn {
  position: fixed;
  display: block;
  width: 70px;
  height: 70px;
  top: 8px;
  right: 12px;
  background: #42c700;
  border-radius: 100%;
  cursor: pointer;
}
@media print, screen and (min-width: 1200px) {
  .burgerbtn {
    right: 60px;
    top: 38px;
  }
}

.burgerbtn__border {
  position: absolute;
  width: 28px;
  height: 2px;
  background-color: #fff;
  transition: .6s;
}

.burgerbtn__border:nth-child(1) {
  top: 29px;
  left: 21px;
}

.burgerbtn__border:nth-child(2) {
  top: 39px;
  left: 21px;
}

/* メニュー開閉 */
.spmenuvisible {
  transform: translate(0, 0);
  transition: 0.6s ease-in-out;
  transition-delay: .1s;
}

/* ボタン開閉時のクラス */
.bordertop_open {
  transform: translateY(10px) rotate(45deg);
  transform: translateY(5px) rotate(45deg);
  transition: .6s;
}

.bordermiddle_open {
  transform: translateY(-5px) rotate(-45deg);
  transition: .6s;
}

.sp_tel {
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 1.5em 2em;
}
.sp_tel p {
  font-size: 1.4rem;
  font-weight: 700;
}
.sp_tel [data-action="call"] {
  font-size: 3rem;
  color: #42c700;
  font-weight: 700;
}
.sp_tel em {
  font-style: normal;
  padding-left: 30px;
  position: relative;
}
.sp_tel em::before {
  content: '';
  background: url("../images/h_tel.png");
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 1200px) {
  .sp_tel {
    display: none;
  }
}

/* ---------------------------------------------------------------------------------------------------------

 footer

--------------------------------------------------------------------------------------------------------- */
.footer {
  padding-top: 7.5em;
}
.footer .f_contact {
  background: #f9f8f3;
}
.footer .f_contact .container {
  padding-top: 4em;
  padding-bottom: 4em;
  position: relative;
}
.footer .f_contact .container::before {
  content: '';
  background: #42c700;
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
.footer .f_contact h3 {
  font-size: clamp(4rem, 4vw, 4.8rem);
  font-weight: 700;
  text-align: center;
}
.footer .f_contact h3 + p {
  font-size: 1.8rem;
  text-align: center;
  padding-top: 2em;
}
.footer .f_contact ul {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 3em;
}
.footer .f_contact ul li {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .footer .f_contact ul li {
    width: 48%;
  }
}
.footer .f_contact ul li [data-action="call"],
.footer .f_contact ul li a {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #42c700;
  color: #fff;
  border-radius: 100px;
}
.footer .f_contact .f_tel [data-action="call"] {
  font-size: 3rem;
  font-family: "Barlow";
  font-weight: 700;
}
.footer .f_contact .f_tel [data-action="call"] em {
  font-style: normal;
  position: relative;
  padding-left: 30px;
}
.footer .f_contact .f_tel [data-action="call"] em::before {
  content: '';
  background: url("../images/f_tel.png");
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer .f_contact .f_mail {
  padding-top: 1em;
}
@media print, screen and (min-width: 768px) {
  .footer .f_contact .f_mail {
    padding-top: 0;
  }
}
.footer .f_contact .f_mail a {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer .f_contact .f_mail a:hover {
  opacity: 0.7;
}
.footer .f_contact .f_mail a span {
  position: relative;
  padding-left: 37px;
}
.footer .f_contact .f_mail a span::before {
  content: '';
  background: url("../images/f_mail.png");
  width: 27px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer .f_info {
  background: #514327;
  padding-top: 3.75em;
  padding-bottom: 3.75em;
}
.footer .f_info .d-flex {
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .f_info [data-action="call"],
.footer .f_info a {
  color: #fff;
}
.footer .f_info a:hover {
  opacity: 0.7;
}
.footer .f_info .f_address {
  width: 100%;
  text-align: center;
}
@media print, screen and (min-width: 1200px) {
  .footer .f_info .f_address {
    width: 50%;
    text-align: left;
  }
}
.footer .f_info .f_address dt {
  width: 250px;
  padding-bottom: 3em;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 1200px) {
  .footer .f_info .f_address dt {
    width: calc(748px / 2);
    margin-left: 0;
  }
}
.footer .f_info .f_address dd {
  color: #fff;
}
.footer .f_info .f_sitemap {
  display: none;
  width: 20em;
}
@media print, screen and (min-width: 1200px) {
  .footer .f_info .f_sitemap {
    display: block;
  }
  .footer .f_info .f_sitemap li {
    font-weight: 700;
    display: inline-block;
    width: 9em;
    line-height: 2;
  }
}
.footer .copyright {
  text-align: center;
  padding-top: 3.75em;
}
.footer .copyright small {
  font-size: 1.2rem;
  color: #aca694;
}

/* pagetop
----------------------------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 90;
}

/* ---------------------------------------------------------------------------------------------------------

 top

--------------------------------------------------------------------------------------------------------- */
.visual {
  padding-left: 3vw;
  padding-right: 3vw;
  position: relative;
}
@media print, screen and (min-width: 992px) {
  .visual {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.visual h2 {
  width: 70%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
  z-index: 10;
}
@media print, screen and (min-width: 768px) {
  .visual h2 {
    width: 50%;
  }
}
@media print, screen and (min-width: 992px) {
  .visual h2 {
    width: 30%;
    position: static;
    left: 0;
    transform: translateY(0);
  }
}
.visual .swiper-container {
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .visual .swiper-container {
    width: 65%;
  }
}

.swiper-slide img {
  height: 45vh;
  border-radius: 60px;
}
@media print, screen and (min-width: 768px) {
  .swiper-slide img {
    height: 55vh;
  }
}
@media print, screen and (min-width: 992px) {
  .swiper-slide img {
    border-radius: 100px;
    height: 45vh;
  }
}
@media print, screen and (min-width: 1200px) {
  .swiper-slide img {
    height: 750px;
  }
}

.top_msg {
  background: url("../images/wave_top.png") no-repeat center bottom/contain;
  padding-top: 5em;
  padding-bottom: 7em;
  margin-top: 3em;
  position: relative;
}
@media print, screen and (min-width: 992px) {
  .top_msg {
    padding-bottom: 14em;
    margin-top: 7em;
  }
}
.top_msg::before {
  content: 'MESSAGE';
  font-family: "Barlow";
  font-weight: 500;
  font-size: clamp(8rem, 15.35vw, 20rem);
  line-height: 1;
  color: #96DF00;
  opacity: 0.17;
  position: absolute;
  right: 0;
  top: 0;
}
.top_msg .d-flex {
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.top_msg .photo {
  width: 100%;
  text-align: center;
  margin-bottom: 2em;
}
@media print, screen and (min-width: 992px) {
  .top_msg .photo {
    width: 50%;
    margin-left: -25%;
    margin-bottom: 0;
  }
}
.top_msg .photo img {
  border-radius: 50px;
  height: 300px;
}
@media print, screen and (min-width: 992px) {
  .top_msg .photo img {
    width: 580px;
    height: 750px;
  }
}
.top_msg .text {
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .top_msg .text {
    width: 55%;
  }
}
@media print, screen and (min-width: 1200px) {
  .top_msg .text {
    width: 62%;
  }
}
.top_msg .text h3 {
  font-size: clamp(2.4rem, 3.18vw, 3.2rem);
  color: #42c700;
  padding-bottom: 1.5em;
}
.top_msg .text p {
  font-size: clamp(1.6rem, 1.727vw, 1.8rem);
  letter-spacing: .1;
  line-height: 2;
}

.top_business {
  background: #f9f8f3;
  padding-top: 4em;
  padding-bottom: 6em;
}
@media print, screen and (min-width: 992px) {
  .top_business {
    padding-bottom: 11.25em;
  }
}
.top_business ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 4em;
  padding-bottom: 4.5em;
}
.top_business li {
  width: 100%;
}
.top_business li:first-child {
  margin-bottom: 2em;
}
@media print, screen and (min-width: 992px) {
  .top_business li:first-child {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 992px) {
  .top_business li {
    width: 48%;
  }
}
.top_business li a {
  display: block;
  position: relative;
  color: #fff;
}
.top_business li .photo img {
  border-radius: 50px;
}
.top_business li h4 {
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(66, 199, 0, 0.8);
  border-radius: 50px 0 50px 0;
  width: 85%;
  font-size: clamp(1.8rem, 1.727vw, 2rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  height: 120px;
  padding: 0 2em;
}
@media print, screen and (min-width: 768px) {
  .top_business li h4 {
    width: 65%;
  }
}
.top_business li h4::before {
  content: '\f061';
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 2em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s 0s ease;
}
.top_business li h4:hover {
  opacity: 0.7;
}
.top_business li h4:hover::before {
  right: 1em;
}
.top_business .btn_more {
  margin-left: auto;
  margin-right: auto;
}

.top_works {
  background: #f9f8f3;
  padding-bottom: 5em;
}
@media print, screen and (min-width: 992px) {
  .top_works {
    padding-bottom: 8em;
  }
}
@media print, screen and (min-width: 768px) {
  .top_works .top_works_box {
    position: relative;
  }
}
.top_works .photo {
  width: 100%;
  height: 300px;
}
@media print, screen and (min-width: 768px) {
  .top_works .photo {
    height: 500px;
  }
}
.top_works .photo img {
  border-radius: 50px;
}
.top_works .text {
  width: 90%;
  background: #fff;
  border-radius: 50px 0 50px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 3em 2em;
  margin-left: 10%;
  margin-top: -80px;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .top_works .text {
    width: 70%;
    position: absolute;
    bottom: 0;
    right: 0;
    margin-left: 0;
    margin-top: 0;
    justify-content: space-between;
  }
}
@media print, screen and (min-width: 768px) {
  .top_works .text .heading01 {
    padding-left: 1em;
  }
}
.top_works .text .btn_area {
  text-align: center;
	margin-top: 1em;
}
@media print, screen and (min-width: 992px) {
	.top_works .text .btn_area {
		margin-top: 0;
	}
}
.top_works .text .btn_more {
  margin-left: auto;
  margin-right: auto;
}

.top_news {
  background: url("../images/wave_bottom.png") no-repeat center top/contain;
  padding-top: 7em;
}
@media print, screen and (min-width: 992px) {
  .top_news {
    padding-top: 14em;
  }
}
.top_news .d-flex {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.top_news .ttl {
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .top_news .ttl {
    width: 250px;
  }
}
.top_news .news_area {
  width: 100%;
  height: 360px;
  padding: 1em 30px 1em 0;
  margin-top: 3em;
  overflow: auto;
}
@media print, screen and (min-width: 992px) {
  .top_news .news_area {
    width: calc(100% - 300px);
    margin-top: 0;
  }
}
.top_news .news_area dl .bdr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_news .news_area dl dt {
  width: 10em;
  font-family: "Barlow";
  font-weight: 700;
  font-size: 1.4rem;
  padding-top: .5em;
  padding-bottom: .5em;
}
.top_news .news_area dl dt .icon_new {
  font-weight: 500;
  font-size: 1.2rem;
  display: inline-block;
  border: #42c700 solid 2px;
  background: #fff;
  border-radius: 50px;
  padding: .5em;
  margin-left: 1em;
  line-height: 1;
}
.top_news .news_area dl .text {
  width: 100%;
  padding-top: .5em;
  padding-bottom: .5em;
}
@media print, screen and (min-width: 992px) {
  .top_news .news_area dl .text {
    width: calc(100% - 10em);
  }
}
.top_news .news_area dl .photo {
  width: 100%;
  padding-top: .5em;
  padding-bottom: .5em;
  padding-left: 7vw;
  display: flex;
  justify-content: space-between;
}
.top_news .news_area dl .photo .img {
  width: 48%;
}

.top_recruit .d-flex {
  background: url("../images/top_recruit.jpg") no-repeat center center/cover;
  min-height: 400px;
  border-radius: 50px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2em 2em;
}
@media print, screen and (min-width: 992px) {
  .top_recruit .d-flex {
    padding: 2em 4em;
  }
}
.top_recruit .text p {
  color: #fff;
  padding-top: 2em;
}

/* ---------------------------------------------------------------------------------------------------------

 about

--------------------------------------------------------------------------------------------------------- */
.about_msg {
  background: url("../images/wave_top.png") no-repeat center bottom/contain;
  padding-top: 5em;
  padding-bottom: 7em;
  margin-top: 3em;
}
@media print, screen and (min-width: 992px) {
  .about_msg {
    padding-bottom: 14em;
    margin-top: 7em;
  }
}
.about_msg .text {
  padding: 3em 5vw 0;
}
.about_msg p {
  font-size: clamp(1.6rem, 1.727vw, 1.8rem);
  letter-spacing: .1;
  line-height: 2;
  margin-top: 2em;
}

.about_interview {
  background: #f9f8f3;
  padding-top: 4em;
  padding-bottom: 6em;
}
@media print, screen and (min-width: 992px) {
  .about_interview {
    padding-bottom: 11.25em;
  }
}
.about_interview ul {
  padding-top: 4em;
}
.about_interview ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 3em;
}
.about_interview ul li:last-child {
  padding-bottom: 0;
}
.about_interview ul li:nth-child(odd) {
  flex-direction: row-reverse;
}
.about_interview ul li .photo {
  width: 100%;
  text-align: center;
  padding-bottom: 1em;
}
@media print, screen and (min-width: 992px) {
  .about_interview ul li .photo {
    width: 48%;
    padding-bottom: 0;
  }
}
.about_interview ul li .photo img {
  border-radius: 30px;
}
.about_interview ul li .text {
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .about_interview ul li .text {
    width: 48%;
  }
}
.about_interview ul li .text h4 span {
  display: block;
}
.about_interview ul li .text h4 .jp {
  font-size: clamp(2.6rem, 3.18vw, 3.6rem);
}
.about_interview ul li .text h4 .en {
  font-family: "Barlow";
  font-weight: 700;
  font-size: clamp(1.4rem, 1.727vw, 1.8rem);
  color: #42c700;
}
.about_interview ul li .text p {
  margin-top: 2em;
}

.about_event {
  background: url("../images/wave_bottom.png") no-repeat center top/contain;
  padding-top: 7em;
}
@media print, screen and (min-width: 992px) {
  .about_event {
    padding-top: 14em;
  }
}
.about_event .about_event_list {
  padding-top: 4em;
}
.about_event .about_event_list .d-flex {
  justify-content: space-between;
  flex-wrap: wrap;
}
.about_event .photo {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5em;
}
@media print, screen and (min-width: 992px) {
  .about_event .photo {
    width: 48%;
    margin-bottom: 0;
  }
}
.about_event .photo .img {
  width: 48%;
  margin-bottom: 2%;
}
.about_event .photo .img img {
  border-radius: 20px;
}
.about_event .text {
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .about_event .text {
    width: 48%;
  }
}

/* ---------------------------------------------------------------------------------------------------------

 company

--------------------------------------------------------------------------------------------------------- */
.company_outline {
  padding-top: 5em;
}
@media print, screen and (min-width: 992px) {
  .company_outline {
    margin-top: 7em;
  }
}
.company_outline h3 {
  font-size: clamp(2.4rem, 3.18vw, 3.2rem);
  color: #42c700;
  padding-bottom: 1.5em;
  text-align: center;
}

.company_history {
  padding-top: 7em;
}
@media print, screen and (min-width: 992px) {
  .company_history {
    padding-top: 14em;
  }
}
.company_history dl {
  margin-top: 3em;
  position: relative;
}
.company_history dl::before {
  content: '';
  background: #effae3;
  width: 6px;
  height: 100%;
  position: absolute;
  left: 3px;
  top: 0;
}
.company_history dl div {
  display: flex;
  flex-wrap: wrap;
  padding: 1em 0 1em 50px;
  position: relative;
}
.company_history dl div::before {
  content: '';
  background: #42c700;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 1.5em;
  border-radius: 100%;
}
.company_history dl dt {
  font-family: "Barlow";
  font-weight: 700;
  color: #42c700;
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .company_history dl dt {
    width: 10em;
  }
}
.company_history dl dd {
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .company_history dl dd {
    width: calc(100% - 10em);
  }
}

.company_client,
.company_cooperation {
  padding-top: 7em;
}
@media print, screen and (min-width: 992px) {
  .company_client,
  .company_cooperation {
    padding-top: 14em;
  }
}
.company_client h3 + p,
.company_cooperation h3 + p {
  font-weight: 700;
  color: #42c700;
}
.company_client ul,
.company_cooperation ul {
  padding-top: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media print, screen and (min-width: 768px) {
  .company_client ul::after,
  .company_cooperation ul::after {
    content: '';
    display: block;
    width: 48%;
  }
}
@media print, screen and (min-width: 992px) {
  .company_client ul::after,
  .company_cooperation ul::after {
    width: 32%;
  }
}
.company_client ul li,
.company_cooperation ul li {
  padding: 1em;
  width: 100%;
  border-bottom: #DADADA solid 1px;
}
@media print, screen and (min-width: 768px) {
  .company_client ul li,
  .company_cooperation ul li {
    width: 48%;
  }
}
@media print, screen and (min-width: 992px) {
  .company_client ul li,
  .company_cooperation ul li {
    width: 32%;
  }
}

.company_access {
  padding-top: 7em;
}
@media print, screen and (min-width: 992px) {
  .company_access {
    padding-top: 14em;
  }
}
.company_access .map {
  padding-top: 3em;
  padding-bottom: 3em;
}
.company_access .btn_more {
  margin-left: auto;
  margin-right: auto;
}

/* ---------------------------------------------------------------------------------------------------------

 business

--------------------------------------------------------------------------------------------------------- */
.business_msg .text {
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .business_msg .text {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.business_msg .text .photo {
  padding-top: 3em;
  padding-bottom: 3em;
}
.business_msg .text p {
  font-size: clamp(1.6rem, 1.727vw, 1.8rem);
  letter-spacing: .1;
  line-height: 2;
  margin-top: 2em;
}

.business_ttl {
  position: relative;
  height: 300px;
}
@media print, screen and (min-width: 992px) {
  .business_ttl {
    height: 460px;
  }
}
.business_ttl .photo img {
  border-radius: 60px;
  height: 300px;
}
@media print, screen and (min-width: 992px) {
  .business_ttl .photo img {
    height: 460px;
  }
}
.business_ttl .ttl {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  color: #fff;
}
.business_ttl .ttl h3 {
  font-size: clamp(2.6rem, 3.18vw, 3.6rem);
  font-weight: 700;
}
.business_ttl .ttl p {
  font-family: "Barlow";
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 700;
}

.biz_read {
  padding-top: 3em;
  padding-bottom: 3em;
}
.biz_read p {
  letter-spacing: .1;
  line-height: 2;
}

.point_box {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 18px;
  margin-top: 2em;
  position: relative;
}
.point_box::before {
  content: '';
  background: url("../images/point_deco.png");
  width: 88px;
  height: 21px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -44px;
}
@media print, screen and (min-width: 992px) {
  .point_box {
    margin-top: 3em;
  }
}
.point_box .inner {
  border: #42c700 solid 3px;
  padding: 1em 2em 2em;
  border-radius: 30px;
}
@media print, screen and (min-width: 992px) {
  .point_box .inner {
    padding: 1em 3em 2em;
  }
}
.point_box h4 {
  color: #42c700;
  font-weight: 700;
  text-align: center;
  font-size: 1.8rem;
  padding-bottom: 1em;
}

.business_pit {
  padding-top: 5em;
}
@media print, screen and (min-width: 992px) {
  .business_pit {
    padding-top: 7em;
  }
}
.business_pit ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.business_pit ul li {
  width: 100%;
  margin-bottom: 2em;
}
@media print, screen and (min-width: 768px) {
  .business_pit ul li {
    width: 32%;
    margin-bottom: 0;
  }
}
.business_pit ul li .photo img {
  border-radius: 10px;
}
.business_pit ul li .text {
  margin-top: .5em;
  text-align: center;
  color: #42c700;
  font-weight: 700;
}

.business_inspection {
  padding-top: 5em;
}
@media print, screen and (min-width: 992px) {
  .business_inspection {
    padding-top: 7em;
  }
}

.business_other {
  padding-top: 5em;
}
@media print, screen and (min-width: 992px) {
  .business_other {
    padding-top: 7em;
  }
}
.business_other .other_list01 li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 4em;
}
@media print, screen and (min-width: 768px) {
  .business_other .other_list01 li:nth-child(odd) {
    flex-direction: row-reverse;
  }
}
.business_other .other_list01 .photo {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .business_other .other_list01 .photo {
    width: 48%;
  }
}
.business_other .other_list01 .photo img {
  border-radius: 30px;
}
.business_other .other_list01 .text {
  width: 100%;
  padding-top: 1em;
}
@media print, screen and (min-width: 768px) {
  .business_other .other_list01 .text {
    width: 48%;
    padding-top: 0;
  }
}
.business_other .other_list01 .text h4 {
  color: #42c700;
  font-size: clamp(1.8rem, 1.727vw, 2rem);
  padding-bottom: 1em;
}
.business_other .other_list02 {
  padding-bottom: 4em;
}
.business_other .other_list02 ul {
  padding-top: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.business_other .other_list02 ul li {
  width: 100%;
  margin-bottom: 2em;
}
@media print, screen and (min-width: 768px) {
  .business_other .other_list02 ul li {
    width: 32%;
    margin-bottom: 0;
  }
}
.business_other .other_list02 ul li .photo img {
  border-radius: 10px;
}
.business_other .other_list02 ul li .text {
  margin-top: .5em;
  text-align: center;
  color: #42c700;
  font-weight: 700;
}

.business_area {
  padding-top: 5em;
}
@media print, screen and (min-width: 992px) {
  .business_area {
    padding-top: 7em;
  }
}
.business_area .d-flex {
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.business_area .d-flex {
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.business_area .photo {
  width: 100%;
  text-align: center;
  margin-bottom: 2em;
}
@media print, screen and (min-width: 992px) {
  .business_area .photo {
    width: 50%;
    margin-left: -25%;
    margin-bottom: 0;
  }
}
.business_area .photo img {
  border-radius: 50px;
  height: 300px;
}
@media print, screen and (min-width: 992px) {
  .business_area .photo img {
    width: 580px;
    height: 750px;
  }
}
.business_area .text {
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .business_area .text {
    width: 55%;
  }
}
@media print, screen and (min-width: 1200px) {
  .business_area .text {
    width: 62%;
  }
}
.business_area .text h3 {
  font-size: clamp(2.4rem, 3.18vw, 3.2rem);
  color: #42c700;
  padding-bottom: 1.5em;
}
.business_area .text p {
  font-size: clamp(1.6rem, 1.727vw, 1.8rem);
  letter-spacing: .1;
  line-height: 2;
}

/* ---------------------------------------------------------------------------------------------------------

 works

--------------------------------------------------------------------------------------------------------- */
.works_case h3 {
  font-size: clamp(2.4rem, 3.18vw, 3.2rem);
  color: #42c700;
  padding-bottom: .5em;
  text-align: center;
}
.works_case h3 + p {
  text-align: center;
  padding-bottom: 3em;
}
@media print, screen and (min-width: 992px) {
  .works_case h3 + p {
    padding-bottom: 5em;
  }
}
.works_case .fotorama {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.works_case .case_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 3em;
}
@media print, screen and (min-width: 992px) {
  .works_case .case_list {
    padding-top: 5em;
  }
}
.works_case .case_list li {
  width: 100%;
  background: #f9f8f3;
  border-radius: 15px;
  padding: 1em;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 992px) {
  .works_case .case_list li {
    width: 49%;
  }
}

/* ---------------------------------------------------------------------------------------------------------

 recruit

--------------------------------------------------------------------------------------------------------- */
.recruit_msg_area {
  position: relative;
  padding-top: 4em;
  padding-bottom: 4em;
}
.recruit_msg_area::before {
  content: '';
  background: #f9f8f3;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 992px) {
  .recruit_msg_area::before {
    width: 80%;
    border-radius: 60px;
    left: 10%;
  }
}
.recruit_msg_area .container {
  position: relative;
}
.recruit_msg_area h3 {
  font-size: clamp(2.4rem, 3.18vw, 3.2rem);
  color: #42c700;
  padding-bottom: .5em;
  text-align: center;
}
.recruit_msg_area h3 span {
  display: inline-block;
  background: #42c700;
  color: #fff;
  padding: 0 .25em;
  border-radius: 10px;
}
.recruit_msg_area h3 + p {
  text-align: center;
}
.recruit_msg_area .text {
  text-align: center;
}
.recruit_msg_area .text p {
  padding-top: 2em;
  font-size: clamp(1.6rem, 1.727vw, 1.8rem);
  letter-spacing: .1;
  line-height: 2;
}

.recruit_job {
  padding-top: 7em;
}
@media print, screen and (min-width: 992px) {
  .recruit_job {
    padding-top: 10em;
  }
}
.recruit_job .tbl_line h4 {
  font-size: clamp(1.8rem, 1.727vw, 2rem);
  color: #42c700;
  margin-top: 1em;
  margin-bottom: .5em;
  padding-left: 25px;
  position: relative;
}
.recruit_job .tbl_line h4::before {
  content: '';
  background: #42c700;
  width: 15px;
  height: 5px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.recruit_job .tbl_line dl dt {
  font-weight: 700;
  padding-left: 20px;
  position: relative;
}
.recruit_job .tbl_line dl dt::before {
  content: '';
  background: #514327;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.recruit_job .tbl_line dl dd {
  padding-bottom: 1em;
  padding-left: 2em;
}

/* ---------------------------------------------------------------------------------------------------------

 contact

--------------------------------------------------------------------------------------------------------- */
.contact_tel .ttl {
  text-align: center;
  color: #42c700;
}
.contact_tel ul {
  margin-top: 2em;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media print, screen and (min-width: 768px) {
  .contact_tel ul {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact_tel ul li {
  width: 100%;
  text-align: center;
  padding-top: 1em;
  padding-bottom: 1em;
  border: #999999 solid 1px;
  background: #effae3;
  border-radius: 30px;
}
.contact_tel ul li:first-child {
  margin-bottom: 1em;
}
@media print, screen and (min-width: 992px) {
  .contact_tel ul li:first-child {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 992px) {
  .contact_tel ul li {
    width: 48%;
  }
}
.contact_tel ul li {
  font-size: clamp(2.6rem, 3vw, 3rem);
  font-weight: 700;
  font-family: "Barlow";
}
.contact_tel ul li em {
  font-style: normal;
  font-size: 2rem;
}

.pp {
  margin-top: 5rem;
  background: #fafafa;
  padding: 3rem;
}
@media print, screen and (min-width: 992px) {
  .pp {
    padding: 4rem;
  }
}
.pp h3 {
  font-size: 2rem;
  border-bottom: #42c700 solid 3px;
  margin-bottom: 1.5em;
}
.pp h3 span {
  font-size: 1.4rem;
  color: #B13A3A;
  display: inline-block;
  margin-left: 1em;
}
.pp .pp_txt {
  height: 15em;
  overflow: auto;
  word-break: break-all;
}
.pp .pp_txt dl {
  margin-bottom: 2.5em;
}
.pp .pp_txt dt {
  font-weight: bold;
  font-size: 1.6rem;
  padding-bottom: 1em;
}

/* form
----------------------------------------------------------*/
.contact_form .ttl {
  text-align: center;
  color: #42c700;
}

.pp_check {
  padding-top: 5rem;
}

.form_btn {
  margin-top: 2rem;
  text-align: center;
}

.required, .any {
  display: inline-block;
  color: #fff;
  padding: 3px 5px;
  border-radius: 3px;
  line-height: 1;
  margin-right: 5px;
  font-size: 76%;
}

.required {
  background: #B13A3A;
}

.any {
  background: #999;
}

input[type="checkbox"] {
  border: 1px solid #ccc;
  margin-right: 5px;
}

input[type="text"],
textarea {
  padding: 10px;
  outline: none;
  border-radius: 3px;
  border: 1px solid #ccc;
  -webkit-transition: all .3s;
  transition: all .3s;
  box-sizing: border-box;
}
input[type="text"]::placeholder,
textarea::placeholder {
  color: #999;
}
input[type="text"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}
input[type="text"]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #999;
}

input[type="text"]:focus,
textarea:focus {
  box-shadow: 0 0 7px #1abc9c;
  border: 1px solid #1abc9c;
}

input[type="text"] {
  width: 100%;
}

input.w50[type="text"] {
  width: 100%;
}

textarea {
  width: 100%;
  height: 10em;
}

.select_bg {
  overflow: hidden;
  width: 100%;
  position: relative;
  border: #ccc solid 1px;
  border-radius: 3px;
  padding: 5px 10px;
}
.select_bg select {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  background-image: none;
  background: transparent;
  outline: none;
  border: none;
  text-overflow: ellipsis;
}
.select_bg select::-ms-expand {
  display: none;
}

.select_bg::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #514327;
  pointer-events: none;
}

.contact_form table ul {
  display: flex;
  flex-wrap: wrap;
}

.contact_form table ul li {
  margin-right: 2em;
}

.contact_form table table {
  width: 100%;
}
.contact_form table table th {
  background: transparent;
  padding: 5px 10px;
  border: 0;
  width: 30%;
  text-align: right;
}
.contact_form table table td {
  padding: 5px 10px;
  border: 0;
}

@media screen and (max-width: 992px) {
  .contact_form table table th {
    padding: 5px 0 0;
    width: 100%;
    display: block;
    text-align: left;
  }
  .contact_form table table td {
    width: 100%;
    padding: 0;
    display: block;
  }
}
/* ---------------------------------------------------------------------------------------------------------

 print

--------------------------------------------------------------------------------------------------------- */
@media print {
  @page {
    margin: 8mm;
    /*		margin: 10mm 8mm 10mm 8mm;*/
    margin: 0.5cm;
  }
  * {
    -webkit-print-color-adjust: exact !important;
    background-attachment: initial !important;
    overflow-y: visible !important;
  }

  html {
    overflow: visible !important;
    zoom: 0.6 !important;
  }

  body {
    min-width: 1000px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .container {
    min-width: 1000px !important;
  }

  .page-break-before {
    page-break-before: always;
  }

  #fixed-header {
    position: static;
    display: none;
    visibility: hidden;
  }
}
