@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-primary: #8CBD3D;
  --color-blue: #0081C2;
  --color-bgGray: #F2F2F2;

  --futura: "futura-pt", sans-serif;
  --header: 6.5vw;
  scroll-padding: var(--header);
}

@media screen and (max-width:767px) {
  :root {
    --header: 16.6vw;
    scroll-padding: var(--header);
  }
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  margin-top: 0 !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  /* font-size 13px */
  font-size: 1.08vw;
  background: var(--color-white);
  color: var(--color-black);
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: .6;
}

img {
  max-width: 100%;
  display: block;
}

p {
  line-height: 2;
  font-weight: 400;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

main {
  margin-top: 6.5vw;
}

/* wrap */
.wrap {
  width: 81.66%;
  margin: 0 auto;
}

.narrow {
  width: 71.8%;
  margin: 0 auto;
}

/* title */


h2.hd {
  font-size: 1.38em;
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 3.22em;
  color: #505051;
}

h2.tv {
  padding-left: 0em;
}


h2.hd.wt {
  color: var(--color-white);
}

h2.hd span:first-of-type {
  font-size: 3.166em;
  font-family: var(--futura);
  color: var(--color-blue);
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 0.35em;
  display: block;
}

h2.hd span:nth-of-type(2) {
  font-size: 0.44em;
  color: var(--color-blue);
  letter-spacing: 0.3em;
  position: absolute;
  top: 1.8em;
  left: 0;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding-bottom: calc(6.25vw + 1em);
}

h2.hd span:nth-of-type(2)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 6.25vw;
  background: var(--color-blue);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

h2.hd.wt span {
  color: var(--color-white) !important;
}

h2.hd.wt span:nth-of-type(2)::before {
  background: var(--color-white);
}


h2.sub {
  font-size: 1.92em;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  text-align: center;
  width: 25.6em;
  font-weight: bold;
  margin: 0 auto;
  position: relative;
}

h2.sub.wt {
  color: var(--color-white);
}

h2.sub::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/sub_hd.png);
  width: 100%;
  height: 0;
  padding-bottom: 2.1em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h2.sub.wt::before {
  background-image: url(../images/sub_hd_wt.png);
}

/* h3 */
h3.hd {
  font-size: 1.69em;
  letter-spacing: 0.1em;
  font-weight: bold;
  background: var(--color-blue);
  color: var(--color-white);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.7em 2.64em;
  margin: 0 auto;
}



@media screen and (max-width:767px) {
  body {
    /* font-size 15px 600px */
    /* font-size: 2.5vw; */
    font-size: clamp(1rem, 2.5vw, 30rem);
  }

  main {
    margin-top: 16.6vw;
  }

  .wrap,
  .narrow {
    width: 82%;
    min-width: 290px;
  }

  /* title */
  h2.hd {
    font-size: 1.2em;
    padding-left: 0;
  }

  h2.hd span:nth-of-type(2) {
    display: none;
  }

  h2.sub {
    width: 80vw;
  }

  h2.sub::before {
    background-image: url(../images/sub_hd_sp.png);
    width: 100%;
    height: 0;
    padding-bottom: 10vw;
  }

  h2.sub.wt {
    color: var(--color-primary);
  }

  h2.sub.wt::before {
    background-image: url(../images/sub_hd_pr_sp.png);
  }

  /* h3 */
  h3.hd {
    font-size: 1.46em;
    padding: 0.7em 0;
    text-align: center;
    width: 100%;
  }
}

/*================================================
 *  header
 ================================================*/
header#mainnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: color .3s linear, background-color .3s linear;
  transition: color .3s linear, background-color .3s linear;
  color: var(--color-white);
  background: var(--color-primary);
  height: 6.5vw;
  padding-right: 3.33vw;
  /* display: flex;
  align-items: center;
  justify-content: space-around; */
}

/* 
.nav__inner {
  width: 85%;
  min-width: 748px;
  margin: 0 auto;
} */

/* nav__left */
header .nav__left {
  width: 25vw;
  height: 6.5vw;
  background: var(--color-white);
}

header .nav__left a {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}

header .nav__left img {
  width: 72%;
  margin: 0 auto;
}

/* nav__right */

.nav__right .nav__tel {
  color: var(--color-white);
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-size: 1.46em;
  font-family: var(--futura);
  letter-spacing: 0.2em;
  padding-bottom: 0.5em;
}

.nav__right .nav__tel span {
  font-size: 0.5em;
  background: var(--color-white);
  color: var(--color-primary);
  display: inline-block;
  padding: 0.4em 0.2em 0.4em 0.5em;
  border-radius: 100px;
  margin-right: 1em;
  text-align: center;
  font-weight: bold;
}

nav.gnav ul.nav__right--menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--color-white);
  padding-top: 0.8em;
}

nav.gnav ul li {
  margin-left: 1.6vw;
  text-align: center;
}

nav.gnav ul li a {
  width: 100%;
  height: 100%;
  display: block;
  font-size: 0.92em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.1em;
}



@media screen and (max-width:767px) {
  header#mainnav {
    height: 16.6vw;
    background: var(--color-white);
    padding: 0 0 0 5vw;
  }

  header .nav__left {
    width: 43vw;
    height: 16.6vw;
  }

  header .nav__left img {
    width: 100%;
    margin: 0 auto;
  }

  /* ハンバーガーメニュー内 */
  nav.global__nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 37%;
    width: clamp(22rem, 37vw, 100rem);
    height: 100vh;
    background: var(--color-primary);
    transition: all .2s ease-out;
    z-index: 200;
    overflow-y: auto;
    padding-top: 16.66vw;
  }

  nav.gnav ul.nav__right--menu {
    display: block;
    border-top: unset;
  }

  nav.gnav ul li {
    width: 100%;
    margin-left: 0;
  }

  nav.gnav ul li a {
    font-size: clamp(1.4rem, 1.066em, 10rem);
    font-style: normal;
    font-weight: 500;
    padding: 1.3em 1.3em 1.3em 2.2em;
    border-top: 0.5px solid var(--color-white);
    text-align: left;
  }

  .hamburger {
    position: absolute;
    right: 0px;
    top: 0;
    width: 16.66vw;
    height: 16.66vw;
    cursor: pointer;
    z-index: 300;
  }

  /* line open */
  .hamburger__line {
    position: absolute;
    left: 50%;
    width: 6.66vw;
    height: clamp(1.5px, 0.833vw, 100px);
    background-color: var(--color-primary);
    transition: all .2s ease-out;
    transform: translateX(-50%);
  }

  .hamburger__line--1 {
    top: 35%;
  }

  .hamburger__line--2 {
    top: 50%;
  }

  .hamburger__line--3 {
    top: 65%;
  }

  /* back__bg */
  .back__bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .open_nav .global__nav {
    right: 0;
  }

  .open_nav .back__bg {
    opacity: .8;
    visibility: visible;
  }

  /* line close */
  .open_nav .hamburger__line {
    background-color: var(--color-white);
  }

  .open_nav .hamburger__line--1 {
    transform: translateX(-50%) rotate(45deg);
    top: 50%;
  }

  .open_nav .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .open_nav .hamburger__line--3 {
    transform: translateX(-50%) rotate(-45deg);
    top: 50%;
  }

  .nav__right .nav__tel {
    display: none;
  }
}




/*================================================
 *  fix__recruit
 ================================================*/
#fix__recruit {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 36%;
  background: rgb(140, 189, 61);
  background: linear-gradient(90deg, rgba(140, 189, 61, 1) 20%, rgba(0, 162, 170, 1) 100%);
  padding: 0.8vw;
  color: var(--color-white);
  text-align: center;
  z-index: 10;
}

#fix__recruit a .img {
  display: block;
  width: 24%;
  border-radius: 0.8vw;
  border: 1px solid var(--color-white);
  overflow: hidden;
}

#fix__recruit h2 {
  color: var(--color-white);
  font-size: 1.153em;
  font-weight: bold;
  border: 1px solid var(--color-white);
  padding: 0 1em;
  display: grid;
  place-content: center;
  border-radius: 0.8vw;
}

#fix__recruit h2 span {
  font-size: 2.26em;
  margin-bottom: 0.5em;
  color: var(--color-white);
}

/* close */
#fix__recruit>div {
  position: absolute;
  width: 10%;
  top: 0;
  right: 0;
  margin-top: -10%;
  cursor: pointer;
  opacity: 1;
  transition: .4s;
}


/* recruit__page */
#fix__recruit.recruit__page {
  width: 25.4%;
}

#fix__recruit.recruit__page a {
  height: 9.25vw;
}

#fix__recruit.recruit__page a h2 {
  width: 100%;
  font-size: 1.4em;
  line-height: 1.63;
}

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


  #fix__recruit {
    display: block;
    width: 100%;
  }

  #fix__recruit.recruit__page {
    display: none;
  }

  #fix__recruit a .img {
    border-radius: 1em;
  }

  #fix__recruit h2 {
    border-radius: 1em;
    width: 50%;
  }

  #fix__recruit h2 span {
    margin-bottom: 0em;
  }
}

/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
}

.section {
  padding: 7vw 0;
}

/* btnArea */
.btnArea a {
  display: block;
  width: 100%;
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  color: var(--color-white);
  padding: 1.75em 4.6em 1.75em 1.75em;
  border-radius: 0.8vw;
  position: relative;
  transition: .4s;
}

.btnArea.wt a {
  background: transparent;
  border: 1px solid var(--color-white);
}

.btnArea.center a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.75em 10.1em 1.75em 7.3em;
  margin: 0 auto;
}

.btnArea a::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/btn_arrow.png);
  width: 2.3em;
  height: 0;
  padding-bottom: 2.3em;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  transition: .4s;
}


.btnArea a:hover {
  background: var(--color-white);
  opacity: 1;
  color: var(--color-blue);
}

.btnArea a:hover::before {
  right: 0.5em;
  background-image: url(../images/btn_bl.png);
}

.mid__bk * {
  color: #505051;
}

@media screen and (max-width:767px) {
  .section {
    padding: 15vw 0 10vw;
  }

  .btnArea a {
    border-radius: 1em;
    padding: 1.4em 4.6em 1.4em 1.75em;
  }

  .btnArea.center a {
    width: 48.5vw;
    padding: 1.4em 2em 1.4em 0;
    text-align: center;
  }

  .btnArea a::before {
    width: 2em;
    padding-bottom: 2em;
  }


}

/*================================================
 *  commom__recruit
 ================================================*/
#commom__recruit {
  display: none;
}

@media screen and (max-width:767px) {
  #commom__recruit {
    display: block;
    padding: 10vw 0;
  }

  #commom__recruit a {
    width: 83%;
    min-width: 300px;
    background: rgb(140, 189, 61);
    background: linear-gradient(90deg, rgba(140, 189, 61, 1) 20%, rgba(0, 162, 170, 1) 100%);
    padding: 2.1vw;
    color: var(--color-white);
    text-align: center;
    margin: 0 auto;
  }

  #commom__recruit>a>img {
    width: 24%;
    border-radius: 1.6vw;
    border: 1px solid var(--color-white);
  }

  #commom__recruit h2 {
    color: var(--color-white);
    font-size: 1.153em;
    font-weight: bold;
    border: 1px solid var(--color-white);
    padding: 0 1em;
    display: grid;
    place-content: center;
    border-radius: 1.6vw;
  }

  #commom__recruit h2 span {
    font-size: 2.26em;
    margin-bottom: 0.2em;
    color: var(--color-white);
  }

}

/*================================================
 *  footer
 ================================================*/
footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 3.33vw 0 1.65vw 7vw;
  position: relative;
  z-index: 1;
}

footer::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background: url(../images/top_dot.png) no-repeat center/cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

footer h1 {
  width: 24.4vw;
}

footer p:first-of-type {
  margin: 3.75vw 0;
  line-height: 2.23;
}

footer ul li {
  margin-right: 2em;
  font-size: 0.92em;
  font-weight: 100;
  font-style: italic;
}

footer p:nth-of-type(2) {
  text-align: center;
  margin-top: 3vw;
  letter-spacing: 0.05em;
}

@media screen and (max-width:767px) {
  footer {
    padding: 10vw 0 3vw;
  }

  footer::before {
    content: unset;
  }

  footer .inner {
    width: 55.2%;
    margin: 0 auto;
    min-width: 300px;
  }

  footer h1 {
    width: 48.8vw;
    margin: 0 auto;
  }

  footer p:first-of-type {
    font-size: clamp(1.3rem, 0.866em, 30rem);
    text-align: center;
    margin: 6.66vw 0;
    line-height: 2.23;
  }

  footer span.sp {
    display: inline-block;
    width: 1.5em;
  }

  .ft__menu {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    gap: 2em;
    margin-bottom: 6.66vw;
  }

  footer ul.flex {
    display: block;
  }

  footer ul.flex li {
    font-style: normal;
    font-weight: 500;
    line-height: 2.5;
    margin-right: 0;
  }

  footer p:nth-of-type(2) {
    font-size: 0.8em;
  }
}

.address-wrap {
  display: flex;
  align-items: center;
  gap: 4em;
  flex-wrap: wrap;
}

.address-wrap p {
  margin: 0;
  line-height: 2;
}

.address-icon {
  width: 10rem;
  height: auto;
}

@media screen and (max-width: 767px) {
  .address-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0em;
  }

  .address-icon {
    margin: 0 0 3em 0;
    width: 50%;
    max-width: 180px;
  }

  .address-wrap p {
    font-size: 0.95rem;
  }
}





/*================================================
 *  subVisual
 ================================================*/
#subVisual {
  height: 17vw;
  z-index: 1;
}

#subVisual::before {
  position: absolute;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#subVisual::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  background: #0081C2;
  z-index: -1;
}

#subVisual .inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 17vw;
}

#subVisual .inner::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/sub_dot.png);
  width: 42.1vw;
  height: 100%;
  top: 0;
  left: 0;
}

#subVisual h2,
#subVisual h2 span {
  color: var(--color-white);
}

#subVisual h2 span {
  width: 43vw;
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 0.1em;
  margin-bottom: 0.2em;
}

@media screen and (max-width:767px) {
  #subVisual {
    height: 66.7vw;
  }

  #subVisual .inner {
    height: 66.7vw;
    justify-content: center;
  }

  #subVisual .inner::before {
    content: none;
  }

  #subVisual h2 {
    text-align: center;
  }

  #subVisual h2 span {
    border: unset;
    width: 100%;
  }
}