@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 62.5%;
  vertical-align: baseline;
  background: transparent;
  border: 0;
  outline: 0;
}

body {
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  line-height: 1;
}

div,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  padding: 0;
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  color: #000;
  text-decoration: none;
  background-color: #ff9;
}

/* change colours to suit your needs */
mark {
  font-style: italic;
  font-weight: bold;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #cccccc;
}

input,
select {
  vertical-align: middle;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/*----------------------------------
  カラー
------------------------------------*/
/*----------------------------------
  ハンバーガーメニュー
------------------------------------*/
.hamburger-button {
  display: none;
  width: 30px;
  height: 20px;
  padding: 0;
  margin-top: 30px;
  margin-right: 20px;
  margin-bottom: auto;
  background-color: rgba(255, 255, 255, 0);
  border: 0;
}

.hamburger-button span {
  position: relative;
  display: block;
  height: 4px;
  background-color: #12693F;
  transition: 0.3s;
}

.hamburger-button span::before, .hamburger-button span::after {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  content: "";
  background-color: #12693F;
  transition: 0.3s;
}

.hamburger-button span::before {
  top: -10px;
}

.hamburger-button span::after {
  bottom: -10px;
}

@media (max-width: 767px) {
  .hamburger-button {
    display: block;
  }
}

.js-is-hamburger-active {
  overflow: hidden;
}

.js-is-hamburger-active .js-hamburger-button span {
  background: transparent;
}

.js-is-hamburger-active .js-hamburger-button span::before {
  top: 0;
  transform: rotate(45deg);
}

.js-is-hamburger-active .js-hamburger-button span::after {
  top: 0;
  transform: rotate(-45deg);
}

.js-scroll-prevent {
  overflow: hidden;
}

@media (max-width: 1300px) {
  .js-is-hamburger-active .header_nav {
    transform: translateX(0);
  }
}

/*----------------------------------
  ヘッダー
------------------------------------*/
.header {
  width: 100%;
  height: 100px;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.85);
  min-width: 1120px;
  z-index: 10000;
}

.header_container {
  display: flex;
  justify-content: space-between;
}

.header_logo {
  width: 323px;
  display: flex;
  align-items: center;
  margin: 24px 0 0 50px;
}

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

.header_navlist {
  display: flex;
}

.header_navlistitem {
  margin-right: 24px;
}

.header_navlistitem a {
  font-size: 1.4rem;
  line-height: calc(27 / 16);
  letter-spacing: 1.8px;
}

.header_tel_container {
  width: 140px;
  height: 100px;
  background-color: #8EC22E;
  text-align: center;
}

.header_tel_container img {
  width: 40px;
  margin: 15px 0 10px;
}

.header_tel_container p {
  color: #fff;
}

.header_contact_container {
  width: 140px;
  height: 100px;
  background-color: #12693F;
  text-align: center;
}

.header_contact_container img {
  width: 30px;
  margin: 24px 0 19px;
}

.header_contact_container p {
  color: #fff;
}

@media (max-width: 767px) {
  .header {
    height: 70px;
    position: fixed;
    min-width: 0px;
    width: 100%;
  }
  .header_logo {
    width: 200px;
    display: flex;
    align-items: center;
    margin: 24px 0 0 20px;
  }
  .header_nav {
    position: fixed;
    top: 70px;
    left: 0;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: calc(100vh - 70px);
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.95);
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
  }
  .header_navlist {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
  }
  .header_navlistitem {
    width: 100%;
    margin-right: 0;
    height: auto;
    border-bottom: 1px solid #ddd;
    text-align: center;
  }
  .header_navlistitem a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 100px;
    font-size: 14px;
    letter-spacing: 1.8px;
  }
  .header_tel_container {
    width: 50px;
    height: 50px;
    background-color: #8EC22E;
    text-align: center;
    border-radius: 60px;
    margin-top: 40px;
  }
  .header_tel_container img {
    width: 25px;
    margin: 0 auto;
    margin-top: 14px;
  }
  .header_tel_container p {
    color: #fff;
  }
  .header_contact_container {
    width: 50px;
    height: 50px;
    background-color: #12693F;
    text-align: center;
    border-radius: 60px;
    margin-top: 8px;
  }
  .header_contact_container img {
    width: 20px;
    margin: 0 auto;
    margin-top: 17px;
  }
  .header_contact_container p {
    color: #fff;
  }
}

/*----------------------------------
  フッター
------------------------------------*/
.footer {
  width: 100%;
  margin-top: 120px;
}

.footer_recruit {
  margin: 0 auto;
  width: 920px;
  padding: 24px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.footer_recruit a {
  display: flex;
}

.footer_recruit h2 {
  width: 270px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: calc(27 / 16);
  letter-spacing: 1.8px;
}

.footer_recruit .footer_recruit_text {
  width: 650px;
  padding: 0 0 0 100px;
  border-left: 1px solid #ddd;
  position: relative;
}

.footer_recruit .footer_recruit_text ::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  position: absolute;
  top: 50%;
  right: 6px;
  margin-top: -3px;
  transform: rotate(45deg);
}

.footer_contact {
  width: 100%;
  background-color: #1c1c1c;
  margin-top: 40px;
  padding: 40px 0;
}

.footer_contact h2 {
  margin: 0 auto;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 1px;
  color: #fff;
}

.footer_contact .footer_contact_text p {
  color: #fff;
  text-align: center;
  margin: 24px 0 40px 0;
}

.footer_contact_flexcontainer {
  display: flex;
  justify-content: space-between;
  width: 500px;
  margin: 0 auto;
}

.footer_contact_flexcontainer p {
  color: #fff;
  text-align: center;
}

.footer_telcontainer {
  justify-content: center;
}

.footer_tel_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 10px 32px;
  margin-top: 10px;
  border-radius: 100px;
}

.footer_tel_btn p {
  color: #12693F;
}

.footer_tel_ico {
  width: 28px;
  margin-right: 3px;
}

.footer_mail_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #12693f;
  background: radial-gradient(circle, #12693f 0%, #0d4e2f 83%);
  padding: 10px 32px;
  margin-top: 10px;
  border-radius: 100px;
}

.footer_mail_ico {
  width: 27px;
  margin-right: 9px;
}

.footer_bottom {
  width: 1120px;
  margin: 0 auto;
  padding: 64px 0;
}

.footer_bottom_flexcontainer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #ddd;
}

.footer_bottom_left {
  display: flex;
  align-items: flex-end;
}

.footer_logo {
  display: block;
  width: 320px;
  margin-right: 40px;
  margin-bottom: 5px;
}

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

.footer_bottom_right p {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 1.8px;
}

.footer_bottom_right .ico_backtotop {
  width: 15px;
  margin-left: 10px;
}

.copyright {
  font-weight: normal;
}

@media (max-width: 767px) {
  .footer {
    width: 100%;
    margin-top: 100px;
  }
  .footer_recruit {
    margin: 0 auto;
    width: 100%;
    padding: 24px 0 40px;
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .footer_recruit a {
    display: block;
  }
  .footer_recruit h2 {
    width: auto;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    line-height: calc(27 / 16);
    letter-spacing: 1.8px;
  }
  .footer_recruit .footer_recruit_text {
    width: auto;
    padding: 0;
    margin-top: 16px;
    border-left: 1px solid #ddd;
    position: relative;
  }
  .footer_recruit .footer_recruit_text ::after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    position: absolute;
    bottom: -20px;
    right: calc(50% - 3px);
    margin-top: 32px;
    transform: rotate(135deg);
  }
  .footer_contact {
    width: 100%;
    background-color: #1c1c1c;
    margin-top: 40px;
    padding: 40px 30px;
  }
  .footer_contact h2 {
    margin: 0 auto;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 1px;
    color: #fff;
  }
  .footer_contact .footer_contact_text p {
    color: #fff;
    text-align: center;
    margin: 24px 0 40px 0;
  }
  .footer_contact_flexcontainer {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  .footer_contact_flexcontainer p {
    color: #fff;
    text-align: center;
  }
  .footer_tel_btn {
    width: 220px;
    margin: 0 auto;
    padding: 10px 0px;
    margin-top: 0px;
    border-radius: 100px;
  }
  .footer_tel_btn p {
    color: #12693F;
  }
  .footer_tel_ico {
    width: 28px;
    margin-right: 3px;
  }
  .footer_mailcontainer {
    margin-top: 24px;
  }
  .footer_mail_btn {
    width: 220px;
    margin: 0 auto;
    padding: 10px 0px;
    margin-top: 0px;
    border-radius: 100px;
  }
  .footer_mail_ico {
    width: 27px;
    margin-right: 9px;
  }
  .footer_bottom {
    width: 90%;
    margin: 0 auto;
    padding: 64px 0;
  }
  .footer_bottom_flexcontainer {
    display: block;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #ddd;
  }
  .footer_bottom_left {
    display: block;
    text-align: center;
  }
  .footer_logo {
    width: 200px;
    margin: 0 auto;
    margin-bottom: 5px;
  }
  .footer_bottom_text {
    margin-top: 40px;
  }
  .footer_bottom_right {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 40px auto 0;
    text-align: center;
  }
  .footer_bottom_right p {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 1.8px;
  }
  .footer_bottom_right .ico_backtotop {
    width: 15px;
    margin-left: 10px;
  }
  .copyright {
    display: block;
    font-weight: normal;
    font-size: 10px;
    text-align: center;
    margin: 0 auto;
  }
}

/*----------------------------------
  ホバーアクション時のスタイル
------------------------------------*/
.hover {
  transition: opacity 0.3s;
}

.hover_transparent:hover {
  opacity: 0.6;
  transition: opacity 0.3s;
}

/*----------------------------------
  見出し
------------------------------------*/
.h_underline {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 4px 2px;
  border-bottom: 1px solid #000;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1.8px;
}

.h_sideline {
  display: flex;
  align-items: center;
  margin: 0 auto;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1.8px;
}

.h_sideline:before, .h_sideline:after {
  border-top: 1px solid;
  content: "";
  flex-grow: 1;
}

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

.h_sideline:after {
  margin-left: 1rem;
}

.h_sidebar {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 24px;
  letter-spacing: 1.8px;
  margin-top: 20px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}

.h_sidebar:before {
  content: '';
  display: block;
  width: 10px;
  height: 24px;
  margin-right: 10px;
  background-color: #12693F;
}

/*----------------------------------
  テキスト
------------------------------------*/
.text {
  font-size: 16px;
  line-height: calc(27 / 16);
  letter-spacing: 1.8px;
}

@media (max-width: 767px) {
  .text {
    font-size: 14px;
  }
}

.text2 {
  font-size: 14px;
  line-height: calc(27 / 16);
  letter-spacing: 1.8px;
}

.text3 {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 1.8px;
}

.text4 {
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 1.8px;
  font-weight: bold;
}

/*----------------------------------
  ボタン
------------------------------------*/
.btn2 {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  padding: 16px 48px;
  box-shadow: 0px 3px 20px rgba(3, 44, 25, 0.08);
  transition: 0.2s;
}

.btn2:hover {
  box-shadow: 0px 0px 0px rgba(3, 44, 25, 0.08);
}

.btn2 p {
  color: #12693F;
}

/*----------------------------------
  iframe
------------------------------------*/
.iframe_wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.iframe_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*----------------------------------
  下層MV
------------------------------------*/
.MV {
  width: 100%;
  padding-top: 100px;
  min-width: 1100px;
}

.MV_container {
  height: 220px;
  background: url(../img/bg_underpagemv.png) no-repeat;
  background-size: cover;
  padding-top: 72px;
}

.MV_container p {
  margin: 0 auto;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1.8px;
  color: #000;
}

.MV_container h1 {
  padding-top: 20px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 6px;
  color: #000;
}

@media (max-width: 768px) {
  .MV {
    width: 100%;
    padding-top: 70px;
    min-width: 0px;
  }
  .MV_container {
    height: 200px;
    background: url(../img/bg_underpagemv.png) no-repeat;
    background-size: cover;
    padding-top: 72px;
  }
}

/*----------------------------------
  hide
------------------------------------*/
.hide {
  display: none;
}

@media (max-width: 768px) {
  .hide {
    display: block;
  }
}

.hide2 {
  display: block;
}

@media (max-width: 768px) {
  .hide2 {
    display: none;
  }
}


.hide3{
  display: none;
}



/*# sourceMappingURL=style.css.map */
