@charset "utf-8";
/* COMMON
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
:root {
  --black: #646464;
  --gray: #bababa;
  --l-gray: #efefef;
  --d-gray: #9d9585;
  --blue: #1e8dd4;
  --l-blue: #e9fbff;
  --navy: #35376a;
  --yellow: #f0bd57;
  --l-yellow: #fcffdb;
  --red: #e6202a;
  --d-orange: #e99542;
  --orange: #ee8c00;
  --green: #23b556;
  --green2: #45a926;
  --l-green: #deffd3;
  --pink: #f56797;
  --purple: #911ebb;
  --white: #fff;
}
body {
  position: relative;
  color: var(--black);
  line-height: 1.75;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .1rem;
}
.mincho {
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}
.mplus {
  font-family: "M PLUS Rounded 1c", sans-serif;
  transform:rotate(0.03deg);
}
main {
  position: relative;
  z-index: 1;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  color: inherit;
  opacity: .7;
}
a:focus {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.container {
  max-width: 1100px;
  width: 90%;
  margin: auto;
}
.invisible {
  visibility: hidden;
}
.hidden_pc {
  display: none;
}
.hidden_sp {
  display: block;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.grid {
  display: grid;
}
@media (min-width:768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
@media (max-width:767px) {
  body {
    font-size: 1.4rem;
  }
  .hidden_pc {
    display: block;
  }
  .hidden_sp {
    display: none;
  }
}
/* HEADER
-------------------------------------------------------------- */
header {
  position: relative;
  z-index: 100;
}
header a {
  display: block;
}
header .logoArea {
  padding: 30px 0 30px calc(5% + 30px);
  justify-content: space-between;
  align-items: center;
}
header .discription {
  padding: 15px 40px;
  width: calc(100% - 250px);
  background: var(--l-yellow);
  border-radius: 20px 0 0 20px;
  color: var(--d-yellow);
  font-weight: 900;
  line-height: 1.4;
}
.hamburger {
  display: none;
}
.global-nav {
  position: sticky;
  top: 0;
  padding: 30px 0;
  width: 100%;
  background: #fff;
  z-index: 100;
}
.global-nav ul {
  margin: auto;
  padding-left: 30px;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  width: 90%;
}
.global-nav li {
  position: relative;
}
.global-nav li a {
  color: var(--navy);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 10px;
}
.global-nav li.recruit a {
  padding: 15px 30px;
  border-radius: 30px;
  background: linear-gradient( 150deg, rgb(254,255,191) 0%, rgb(0,183,90) 0%, rgb(222,219,0) 100%);
  color: var(--white);
  text-align: center;
  letter-spacing: 3px;
}
@media (max-width: 1200px) {
  .global-nav li a {
    font-size: 1.6rem;
    letter-spacing: 5px;
  }
  .global-nav li.recruit a {
    letter-spacing: 2px;
  }
}
@media (max-width: 900px) {
  .global-nav li a {
    font-size: 1.3rem;
  }
  .global-nav li.recruit a {
    padding: 15px 20px;
  }
}
@media (max-width: 767px) {
  header .logoArea {
    padding: 0;
  }
  header .logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 100;
  }
  header .logo a {
    margin: 7px 20px;
    width: 100px;
  }
  header .discription {
    margin: 80px 0 0 5%;
    padding: 10px 20px;
    width: 100%;
    border-radius: 10px 0 0 10px;
  }
  .hamburger {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--navy);
    text-align: center;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 300;
    transition: all 0.5s ease-in-out;
  }
  .global-nav {
    position: fixed;
    left: 0;
    top: 60px;
    width: 100%;
    max-width: 100%;
    padding: 50px 5%;
    background-color: var(--navy);
    height: 100%;
    z-index: 200;
    overflow-y: auto;
    display: none;
  }
  .global-nav__list {
    display: block !important;
    padding: 0 15px;
  }
  .global-nav ul {
    padding: 0;
    display: block;
  }
  .global-nav li {
    padding: 15px;
  }
  .global-nav li a {
    position: relative;
    display: block;
    padding-left: 35px;
    color: var(--white);
    font-size: 1.6rem;
  }
  .global-nav li a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8px;
    width: 6px;
    height: 6px;
    margin: auto;
    border-top: 1px solid var(--navy);
    border-right: 1px solid var(--navy);
    transform: rotate(45deg);
    content: "";
    z-index: 2;
  }
  .global-nav li a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--white);
    content: "";
  }
  .global-nav li.recruit a::before,
  .global-nav li.recruit a::after {
    content: none;
  }
  .hamburger__line {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 34px;
    height: 3px;
    background-color: #fff;
    border-radius: 10px;
    transition: all .6s;
  }
  .hamburger__line--1 {
    top: 18px;
  }
  .hamburger__line--2 {
    top: 28px;
  }
  .hamburger__line--3 {
    top: 38px;
  }
  /* 表示された時用のCSS */
  .nav-open .global-nav {
    display: block;
  }
  .nav-open .black-bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 30px;
  }
  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 30px;
  }
}
/* common style
-------------------------------------------------------------- */
.cloud::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 600px;
  background: url(../img/common/cloud_img.png) no-repeat center bottom / contain;
  content: "";
  z-index: 1;
}
.bgTopWhite::before {
  position: absolute;
  left: 0;
  top: -30px;
  width: 100%;
  height: 100px;
  background: url(../img/common/bg_white-top.png) repeat-x center bottom;
  content: "";
  z-index: 1;
}
.bgBtmWhite::after {
  position: absolute;
  left: 0;
  bottom: -45px;
  width: 100%;
  height: 100px;
  background: url(../img/common/bg_white-bottom.png) repeat-x center bottom;
  content: "";
  z-index: 1;
}
#sv {
  position: relative;
  margin: -2% 0 30px;
  padding: 180px 0 140px;
  background: url(../img/common/sv_bg.jpg) no-repeat center / cover;
}
#sv h1 {
  position: relative;
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
  text-shadow: 0px 0px 4.5px rgba(136, 136, 136, 1);
  line-height: 1;
  z-index: 10;
}
.hdTtlArea {
  margin-bottom: 120px;
  padding-left: calc((100% - 1100px) / 2);
  justify-content: space-between;
}
.hdTtlArea h2 {
  position: relative;
  width: 35%;
  max-width: 360px;
  padding: 50px 0;
  background: url(../img/common/hd_ttl_ico.png) no-repeat top center / contain;
  color: var(--navy);
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  z-index: 10;
}
.hdTtlArea .imgPhoto {
  width: 60%;
}
.hdTtlArea .imgPhoto img {
  width: 100%;
  border-radius: 20px 0 0 20px;
}
.styleh3 {
  position: absolute;
  top: -30px;
  left: 30px;
  display: inline-block;
  padding: 12px 15% 12px 50px;
  border-radius: 30px;
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 900;
}
.btn a {
  position: relative;
  padding: 15px 50px 15px 30px;
  align-items: center;
  border-radius: 30px;
  border: 2px solid var(--navy);
}
.btn a span {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 3px;
}
.arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--navy);
}
.arrow::after {
  position: absolute;
  top: 0;
  left: calc(50% - 4px);
  bottom: 0;
  margin: auto;
  width: 4px;
  height: 4px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  transform: rotate(45deg);
  z-index: 1;
  content: "";
}
.btn a:hover {
  background: var(--navy);
  opacity: 1;
}
.btn a:hover span {
  color: var(--white)!important;
}
@media (max-width: 767px) {
  .bgTopWhite::before {
    height: 50px;
    background-size: 200%;
  }
  .bgBtmWhite::after {
    bottom: -10px;
    height: 50px;
    background-size: 200%;
  }
  #sv {
    margin: 20px 0 30px;
    padding: 80px 0;
  }
  .hdTtlArea {
    margin-bottom: 60px;
  }
  .hdTtlArea h2 {
    margin: auto;
    width: auto;
    max-width: 300px;
    padding: 30px 0;
    font-size: 2.4rem;
    letter-spacing: 2px;
    text-align: center;
  }
  .hdTtlArea .imgPhoto {
    margin-left: 5%;
    width: 95%;
  }
  .hdTtlArea .imgPhoto img {
    border-radius: 10px 0 0 10px;
  }
  .styleh3 {
    top: -25px;
    left: 10px;
    padding: 10px 30px;
    font-size: 1.6rem;
  }
  .btn a span {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
}
/* footer
-------------------------------------------------------------- */
.bnrArea {
  margin-top: 150px;
}
.bnrArea ul {
  padding: 70px 0;
  gap: 40px;
  border-top: 1px solid var(--gray);
}
.bnrArea li {
  width: calc((100% - 40px) / 2);
}
.bnrArea li a {
  padding: 45px 60px 45px 40px;
  border-radius: 40px;
}
.bnrArea li.contact a {
  background: url(../img/common/ft_bnr01_bg.jpg) no-repeat center / cover;
}
.bnrArea li.recruit a {
  background: url(../img/common/ft_bnr02_bg.jpg) no-repeat center / cover;
}
.bnrArea li span {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 900;
  text-shadow: 0px 0px 6.56px rgba(71, 71, 71, 0.5);
}
.bnrArea li .arrow {
  right: 40px;
}
.bnrArea li a:hover {
  background: var(--navy);
}
/*page-top*/
#Pagetop {
  position: fixed;
  bottom: 50px;
  right: 3%;
  padding: 5px 15px;
  background: var(--navy);
  border-radius: 20px;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
}
footer .footerInner {
  padding: 40px 50px 60px;
  background: var(--l-yellow);
  border-radius: 30px;
}
footer .catch {
  margin-bottom: 30px;
  padding: 10px 40px;
  border-radius: 20px;
  background: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}
footer .logo {
  width: 200px;
}
footer .logo figcaption {
  padding-top: 10px;
  text-align: center;
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 900;
}
footer nav {
  justify-content: flex-end;
  width: calc(100% - 200px);
}
footer nav ul {
  padding-left: 12%;
}
footer nav li a {
  display: block;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 700;
}
footer nav li a span {
  display: block;
  color: var(--yellow);
  font-size: 1.2rem;
  font-weight: 700;
}
footer .copy {
  padding: 20px 0;
  font-size: 1.2rem;
  text-align: right;
}
@media (max-width: 1300px) {
  .bnrArea li a {
    padding: 25px 60px 25px 40px;
    min-height: 50px;
  }
  .bnrArea li span {
    font-size: 2rem;
  }
}
@media (max-width: 900px) {
  footer nav ul {
    padding-left: 6%;
  }
}
@media (max-width: 767px) {
  .bnrArea {
    margin-top: 80px;
  }
  .bnrArea ul {
    padding: 40px 0;
    gap: 20px;
  }
  .bnrArea li {
    width: 100%;
  }
  .bnrArea li a {
    padding: 30px 40px 30px 20px;
    border-radius: 20px;
  }
  .bnrArea li span {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
  .bnrArea li .arrow {
    right: 20px;
  }
  /*page-top*/
  #Pagetop {
    bottom: 10px;
    right: 3%;
    padding: 5px 10px;
    font-size: 1rem;
  }
  footer .footerInner {
    padding: 20px;
    border-radius: 15px;
  }
  footer .catch {
    margin-bottom: 20px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1rem;
  }
  footer .logo {
    margin: 0 auto 20px;
  }
  footer .logo figcaption {
    font-size: 1.3rem;
  }
  footer nav {
    width: 100%;
    justify-content: space-between;
  }
  footer nav ul {
    padding: 0 10px;
  }
  footer nav li a {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  footer nav li a span {
    font-size: 1rem;
  }
  footer .copy {
    padding: 10px 0;
    font-size: 1rem;
  }
}