@charset "UTF-8";
/* CSS Document */
/* CSS Document */
/*---------------------
カラム幅設定
----------------------*/
/*---------------------
カラー設定
----------------------*/
/*---------------------
ベンダープレフィックス初期設定
----------------------*/
/*---------------------
透明度　初期設定
----------------------*/
/*---------------------
フォントサイズ初期設定
----------------------*/
/*---------------------
フォントファミリー初期設定
----------------------*/
/*----------------
Retina,高解像度 対策
-----------------*/
/*---------------------
角丸　初期設定
----------------------*/
/*
.box {
     @include circle(100px);
     background: #fc0;
}
*/
/*---------------------
ボックスシャドウ　mixin
----------------------*/
/*
div { @include box-shadow(8px, 8px);}
*/
/*---------------------
グラデーション　mixin
----------------------*/
/* 使用例
 div { @include gradient(#ff00ff, #ff00cc, vertical);}
*/
/*---------------------
デュレーション　mixin
----------------------*/
/*
.move{
    @include transition(0.5s);
}
*/
/*---------------------
キーフレーム　mixin
----------------------*/
@keyframes $animation-name {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes $animation-name {
  0% {
    color: #fff;
  }
  100% {
    color: #007235;
  }
}
/*---------------------
カラムグリッド mixin
----------------------*/
/*---------------------
カラムグリッド mixin
----------------------*/
/*　使用例 
div { @include ghost-button(“Trebuchet”, 12px, #ffffff, 5px, #34dec6, 4px, 300ms, #000000 );}
*/
/*---------------------
リンクカラー初期設定
----------------------*/
/*---------------------
汎用BOX用　マージンMIXIN リセット
----------------------*/
.m_0 {
  margin: 0 !important;
}

.p_0 {
  padding: 0 !important;
}

/*---------------------
HTML BODY初期設定
----------------------*/
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  color: #111;
}

html {
  margin: 0;
  padding: 0;
}
html li {
  list-style-type: none;
}

body {
  overflow-x: hidden;
}

/*---------------------
wrapper設定 
----------------------*/
#wrapper {
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

.contentsWrap {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

header {
  position: relative;
  width: 100%;
  z-index: 100;
  overflow-x: hidden;
}

.headerInner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 20px;
  justify-content: space-between;
  box-sizing: border-box;
}

.headerLogo {
  display: flex;
  width: 100%;
  max-width: 280px;
}

@media screen and (max-width: 979px) {
  .headerLogo {
    display: flex;
    width: 100%;
  }
}
h1.officialLogo {
  width: 260px;
  margin: 0;
  padding: 0;
  transition: all 0.3s linear;
}
h1.officialLogo img {
  display: block;
  width: 100%;
  max-width: 260px;
}
h1.officialLogo img {
  opacity: 1;
  transition: all 0.3s ease;
}
h1.officialLogo img:hover {
  opacity: 0.7;
  cursor: pointer;
}

@media screen and (max-width: 979px) {
  h1.officialLogo {
    width: 240px;
    margin: 0;
    padding: 0;
  }
  h1.officialLogo img {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  h1.officialLogo {
    margin: 0;
    padding: 0;
  }
  h1.officialLogo img {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  h1.officialLogo {
    width: 200px;
    margin: 0;
    padding: 0;
  }
  h1.officialLogo img {
    display: block;
    width: 100%;
    height: auto;
  }
}
section.slideArea {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
  overflow: hidden;
}

.headline {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

section.aboutArea {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.topAbout {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 0 50px;
  justify-content: space-between;
  box-sizing: border-box;
}
.topAbout .topAboutTxt {
  width: calc(50% - 25px);
  padding: 20px;
  box-sizing: border-box;
  transition: all 0.3s linear;
}
.topAbout .topAboutImages {
  width: calc(50% - 25px);
  padding: 20px;
  box-sizing: border-box;
  transition: all 0.3s linear;
}

@media only screen and (max-width: 979px) {
  .topAbout .topAboutTxt {
    width: 100%;
    padding: 0;
  }
  .topAbout .topAboutImages {
    width: 100%;
    padding: 0;
  }
}
.topAboutTxt {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
.topAboutTxt > div {
  padding: 20px 30px;
}
.topAboutTxt h3 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
}
.topAboutTxt p {
  margin-top: 50px;
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 400;
}

@media only screen and (max-width: 1279px) {
  .topAboutTxt > div {
    padding: 10px 10px;
  }
  .topAboutTxt h3 {
    font-size: 3rem;
  }
  .topAboutTxt p {
    margin-top: 30px;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 979px) {
  .topAboutTxt > div {
    padding: 15px 20px;
  }
  .topAboutTxt h3 {
    font-size: 3rem;
  }
  .topAboutTxt p {
    margin-top: 30px;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .topAboutTxt > div {
    padding: 0;
  }
  .topAboutTxt h3 {
    font-size: 3rem;
  }
  .topAboutTxt p {
    margin-top: 20px;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .topAboutTxt h3 {
    font-size: 2.6rem;
  }
}
.topAboutImages {
  position: relative;
  text-align: center;
}
.topAboutImages figure {
  display: block;
  margin: 0;
  padding: 0;
}
.topAboutImages figure:nth-child(1) {
  margin-top: -100px;
}
.topAboutImages figure:nth-child(1) img {
  display: block;
  width: 100%;
  max-width: 960px;
}
.topAboutImages figure:nth-child(2) {
  margin-top: -100px;
  z-index: 2;
}
.topAboutImages figure:nth-child(2) img {
  display: block;
  width: 100%;
  max-width: 960px;
}

@media only screen and (max-width: 1179px) {
  .topAboutImages figure:nth-child(1) {
    margin-top: 0;
  }
  .topAboutImages figure:nth-child(2) {
    margin-top: -30px;
  }
}
@media only screen and (max-width: 979px) {
  .topAboutImages figure:nth-child(1) {
    margin-top: 30px;
  }
  .topAboutImages figure:nth-child(1) img {
    max-width: 640px;
    margin: 0 auto;
  }
  .topAboutImages figure:nth-child(2) {
    margin-top: -50px;
  }
  .topAboutImages figure:nth-child(2) img {
    max-width: 640px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .topAboutImages figure:nth-child(1) {
    margin-top: 30px;
  }
  .topAboutImages figure:nth-child(1) img {
    max-width: 640px;
    margin: 0 auto;
  }
  .topAboutImages figure:nth-child(2) {
    margin-top: -50px;
  }
  .topAboutImages figure:nth-child(2) img {
    max-width: 640px;
    margin: 0 auto;
  }
}
.topAboutLineup {
  position: relative;
  width: 100%;
  margin-top: -45px;
  margin-bottom: 80px;
}

.topAboutBg {
  position: absolute;
  width: 100%;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.topAboutBg img {
  display: block;
  width: 100%;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 979px) {
  .topAboutLineup {
    margin-top: -35px;
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .topAboutLineup {
    margin-top: -25px;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 480px) {
  .topAboutLineup {
    margin-top: -25px;
    margin-bottom: 40px;
  }
}
.topLineupInner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: space-between;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.topLineupInner .lineup {
  position: relative;
  width: 33.3333333333%;
  min-height: 450px;
  text-align: center;
}
.topLineupInner .lineup .num {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 8rem;
  font-family: "Barlow", sans-serif;
  font-style: italic;
  font-weight: 100;
  color: #007235;
}
.topLineupInner .lineupInner {
  position: relative;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
}
.topLineupInner .lineupInner h2, .topLineupInner .lineupInner p {
  font-family: "Noto Sans JP", sans-serif;
}
.topLineupInner .lineupInner h2 {
  font-size: 3.4rem;
  font-weight: 700;
  color: #fff;
}
.topLineupInner .lineupInner p {
  margin-top: 50px;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #fff;
}
.topLineupInner .lineupInner p.en {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #04c45d;
}

@media only screen and (max-width: 979px) {
  .topLineupInner .lineup {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 50px 0;
    text-align: center;
  }
  .topLineupInner .lineup .num {
    font-size: 7rem;
  }
  .topLineupInner .lineupInner h2 {
    font-size: 3rem;
  }
  .topLineupInner .lineupInner p {
    margin-top: 30px;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .topLineupInner .lineup {
    padding: 50px 0;
  }
  .topLineupInner .lineup .num {
    font-size: 6rem;
  }
  .topLineupInner .lineupInner {
    padding: 0 20px;
  }
  .topLineupInner .lineupInner h2 {
    font-size: 3rem;
  }
  .topLineupInner .lineupInner p {
    margin-top: 20px;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .topLineupInner .lineup {
    padding: 50px 0;
  }
  .topLineupInner .lineup .num {
    font-size: 6rem;
  }
  .topLineupInner .lineupInner {
    padding: 0 20px;
  }
  .topLineupInner .lineupInner h2 {
    font-size: 2.6rem;
  }
}
.lineupBg01 {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.7)), url(../img/top/bg_lineup01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.lineupBg02 {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.7)), url(../img/top/bg_lineup02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.lineupBg03 {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.7)), url(../img/top/bg_lineup03.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

section.newsArea {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.topNews {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  margin-bottom: 80px;
  justify-content: space-between;
  box-sizing: border-box;
}
.topNews .news {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

@media only screen and (max-width: 979px) {
  .topNews {
    display: block;
    margin-bottom: 70px;
  }
  .topNews .news {
    width: 100%;
    padding: 0;
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 979px) {
  .topNews {
    display: block;
    margin-bottom: 40px;
  }
}
.newsList {
  width: 100%;
  margin: 0 auto;
}
.newsList dl {
  display: flex;
  align-items: flex-start;
  padding: 35px 0;
  margin-bottom: 0;
  gap: 0 50px;
  box-sizing: border-box;
  line-height: 1.5;
  border-bottom: 1px solid #bdbdbd;
}
.newsList dl:last-child {
  border-bottom: none;
}
.newsList dl dt {
  box-sizing: border-box;
}
.newsList dt {
  min-width: 6em;
  font-size: 1.6rem;
  text-align: left;
  font-family: "Inter", sans-serif;
  color: #007235;
  font-weight: 400;
}
.newsList dd {
  font-size: 1.7rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.newsList dd span.new {
  font-weight: 600;
  color: #007235;
  margin-right: 0.4em;
}
.newsList dd p {
  font-size: 1.5rem;
  font-weight: 400;
}

@media only screen and (max-width: 979px) {
  .newsList dl {
    padding: 25px 0;
  }
  .newsList dt {
    font-size: 1.6rem;
  }
  .newsList dd {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .newsList dl {
    display: block;
    padding: 20px 0;
  }
  .newsList dt {
    font-size: 1.5rem;
    min-width: 5em;
  }
  .newsList dd {
    font-size: 1.5rem;
  }
}
section.ownerArea {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.topOwnerArea {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-top: 130px;
  margin-bottom: 120px;
  gap: 0 30px;
  justify-content: space-between;
  box-sizing: border-box;
}
.topOwnerArea .owner {
  width: calc(50% - 15px);
  padding: 20px;
  box-sizing: border-box;
}
.topOwnerArea .feature {
  width: calc(50% - 15px);
  padding: 20px;
  box-sizing: border-box;
}

@media only screen and (max-width: 979px) {
  .topOwnerArea {
    display: block;
    margin-bottom: 70px;
  }
  .topOwnerArea .owner {
    width: 100%;
    padding: 0;
    margin-bottom: 70px;
  }
  .topOwnerArea .feature {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 979px) {
  .topOwnerArea {
    display: block;
    margin-bottom: 40px;
  }
}
.topOwnerInner {
  position: relative;
  width: 100%;
  background: url(../img/top/owner.jpg) no-repeat top center;
  background-size: cover;
  padding-top: 600px;
  margin-top: -100px;
}
.topOwnerInner .ownerTxt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 275px;
  padding: 40px 10%;
  background: #007235;
}
.topOwnerInner .ownerTxt h3, .topOwnerInner .ownerTxt p {
  display: block;
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
}
.topOwnerInner .ownerTxt h3 {
  max-width: 505px;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.topOwnerInner .ownerTxt p {
  max-width: 455px;
  font-size: 1.8rem;
  line-height: 1.6;
}

@media only screen and (max-width: 979px) {
  .topOwnerInner {
    padding-top: 600px;
    margin-top: 20px;
  }
  .topOwnerInner .ownerTxt {
    min-height: 200px;
    padding: 40px 5%;
  }
  .topOwnerInner .ownerTxt h3 {
    max-width: 500px;
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .topOwnerInner .ownerTxt p {
    max-width: 500px;
    font-size: 1.6rem;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .topOwnerInner {
    padding-top: 500px;
    margin-top: 20px;
  }
  .topOwnerInner .ownerTxt {
    min-height: 200px;
    padding: 30px 5%;
  }
  .topOwnerInner .ownerTxt h3 {
    max-width: 500px;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
  }
  .topOwnerInner .ownerTxt p {
    max-width: 500px;
    font-size: 1.6rem;
    text-align: left;
  }
}
@media only screen and (max-width: 480px) {
  .topOwnerInner {
    padding-top: 400px;
    margin-top: 20px;
  }
  .topOwnerInner .ownerTxt {
    min-height: 200px;
    padding: 20px 5%;
  }
  .topOwnerInner .ownerTxt h3 {
    max-width: 500px;
    font-size: 2.4rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .topOwnerInner .ownerTxt p {
    max-width: 500px;
    font-size: 1.5rem;
    text-align: left;
  }
}
.featureInner {
  position: relative;
  width: 100%;
  background: url(../img/top/feature.jpg) no-repeat top center;
  background-size: cover;
  padding-top: 600px;
  margin-top: -100px;
}
.featureInner .featureTxt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 275px;
  padding: 40px 10%;
  background: #393939;
}
.featureInner .featureTxt h3, .featureInner .featureTxt p {
  display: block;
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
}
.featureInner .featureTxt h3 {
  max-width: 505px;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.02em;
}
.featureInner .featureTxt p {
  max-width: 455px;
  font-size: 1.8rem;
  line-height: 1.6;
}

@media only screen and (max-width: 979px) {
  .featureInner {
    padding-top: 600px;
    margin-top: 20px;
  }
  .featureInner .featureTxt {
    min-height: 200px;
    padding: 40px 5%;
  }
  .featureInner .featureTxt h3 {
    max-width: 500px;
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .featureInner .featureTxt p {
    max-width: 500px;
    font-size: 1.6rem;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .featureInner {
    padding-top: 500px;
    margin-top: 20px;
  }
  .featureInner .featureTxt {
    min-height: 200px;
    padding: 30px 5%;
  }
  .featureInner .featureTxt h3 {
    max-width: 500px;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
  }
  .featureInner .featureTxt p {
    max-width: 500px;
    font-size: 1.6rem;
    text-align: left;
  }
}
@media only screen and (max-width: 480px) {
  .featureInner {
    padding-top: 400px;
    margin-top: 20px;
  }
  .featureInner .featureTxt {
    min-height: 200px;
    padding: 20px 5%;
  }
  .featureInner .featureTxt h3 {
    max-width: 500px;
    font-size: 2.4rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .featureInner .featureTxt p {
    max-width: 500px;
    font-size: 1.5rem;
    text-align: left;
  }
}
section.bannerArea {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.bannerAreaInner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 200px;
  justify-content: space-between;
  box-sizing: border-box;
}
.bannerAreaInner .bn_recruit {
  width: 50%;
  box-sizing: border-box;
}
.bannerAreaInner .bn_message {
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 979px) {
  .bannerAreaInner {
    display: block;
    max-width: 1440px;
    margin-bottom: 120px;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .bannerAreaInner .bn_recruit {
    width: 100%;
    box-sizing: border-box;
  }
  .bannerAreaInner .bn_message {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .bannerAreaInner {
    display: block;
    margin-bottom: 80px;
  }
}
.bannerAreaInner .bn_recruit {
  position: relative;
  background: url(../img/top/bg_recruit2.jpg) no-repeat top center;
  background-size: cover;
}
.bannerAreaInner .bn_recruit .bn_recruitInner {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: space-between;
  box-sizing: border-box;
}
.bannerAreaInner .bn_recruit .catch {
  position: absolute;
  width: 46%;
  height: 100%;
  padding: 20px 30px;
  box-sizing: border-box;
  background: rgba(4, 57, 29, 0.67);
}
.bannerAreaInner .bn_recruit .catch h3 {
  display: block;
  font-size: 6rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 65px;
}
.bannerAreaInner .bn_recruit .catch h3 span {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 1.6rem;
  text-align: right;
  color: #fff;
}
.bannerAreaInner .bn_recruit .catch p {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
  color: #fff;
}
.bannerAreaInner .bn_message {
  position: relative;
  background: url(../img/top/bg_message3.jpg) no-repeat top center;
  background-size: cover;
  height: 100%;
}
.bannerAreaInner .bn_message .bn_messageInner {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 100%;
  min-height: 500px;
  margin: 0 auto;
  box-sizing: border-box;
}
.bannerAreaInner .bn_message .catch {
  position: absolute;
  width: 100%;
  max-width: 600px;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -20%);
  box-sizing: border-box;
}
.bannerAreaInner .bn_message .catch h3 {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #002c14;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}
.bannerAreaInner .bn_message .catch h3 span {
  font-family: "Inter", sans-serif;
  display: block;
  font-size: 2rem;
  color: #007235;
  margin-bottom: 20px;
}
.bannerAreaInner .bn_message .catch p {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
  color: #111;
}
.bannerAreaInner .bn_messageBottom {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  max-width: 960px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: space-between;
  box-sizing: border-box;
}
.bannerAreaInner .bn_messageBottom .btn_enkaku {
  width: 50%;
  box-sizing: border-box;
}
.bannerAreaInner .bn_messageBottom .btn_company {
  width: 50%;
  box-sizing: border-box;
}
.bannerAreaInner .bn_messageBottom .btn_enkaku a,
.bannerAreaInner .bn_messageBottom .btn_company a {
  display: block;
  padding: 30px;
  text-align: center;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #fff;
}
.bannerAreaInner .bn_messageBottom .btn_enkaku a img,
.bannerAreaInner .bn_messageBottom .btn_company a img {
  display: block;
  width: 100%;
  max-width: 50px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.bannerAreaInner .bn_messageBottom .btn_enkaku a {
  background: #393939;
  transition: all 0.3s linear;
}
.bannerAreaInner .bn_messageBottom .btn_enkaku a:hover {
  background: #747474;
}
.bannerAreaInner .bn_messageBottom .btn_enkaku a:hover img {
  margin-top: -5px;
  margin-bottom: 25px;
  transition: all 0.2s linear;
}
.bannerAreaInner .bn_messageBottom .btn_company a {
  background: #007235;
  transition: all 0.3s linear;
}
.bannerAreaInner .bn_messageBottom .btn_company a:hover {
  background: #009143;
}
.bannerAreaInner .bn_messageBottom .btn_company a:hover img {
  margin-top: -5px;
  margin-bottom: 25px;
  transition: all 0.2s linear;
}

@media screen and (max-width: 1279px) {
  .bannerAreaInner .bn_recruit .bn_recruitInner {
    min-height: 500px;
    display: flex;
  }
  .bannerAreaInner .bn_recruit .catch {
    position: absolute;
    width: 50%;
    height: 100%;
    padding: 30px 20px;
  }
  .bannerAreaInner .bn_recruit .catch h3 {
    display: block;
    font-size: 5.5rem;
    margin-bottom: 55px;
  }
  .bannerAreaInner .bn_recruit .catch h3 span {
    font-size: 1.6rem;
    text-align: left;
  }
  .bannerAreaInner .bn_message .bn_messageInner {
    min-height: 500px;
    display: flex;
  }
  .bannerAreaInner .bn_message .catch {
    width: 100%;
  }
  .bannerAreaInner .bn_message .catch h3 {
    font-size: 3.5rem;
    margin-bottom: 30px;
  }
  .bannerAreaInner .bn_message .catch h3 span {
    font-size: 2rem;
  }
  .bannerAreaInner .bn_message .catch p {
    font-size: 1.8rem;
  }
  .bannerAreaInner .bn_messageBottom .btn_enkaku a,
  .bannerAreaInner .bn_messageBottom .btn_company a {
    padding: 30px;
    font-size: 1.8rem;
  }
  .bannerAreaInner .bn_messageBottom .btn_enkaku a img,
  .bannerAreaInner .bn_messageBottom .btn_company a img {
    max-width: 50px;
  }
}
@media screen and (max-width: 979px) {
  .bannerAreaInner .bn_recruit {
    margin-bottom: 70px;
  }
  .bannerAreaInner .bn_recruit .bn_recruitInner {
    min-height: 500px;
    display: block;
  }
  .bannerAreaInner .bn_recruit .catch {
    position: absolute;
    width: 50%;
    height: 100%;
    padding: 30px 20px;
  }
  .bannerAreaInner .bn_recruit .catch h3 {
    display: block;
    font-size: 5.5rem;
    margin-bottom: 45px;
  }
  .bannerAreaInner .bn_recruit .catch h3 span {
    font-size: 1.6rem;
    text-align: left;
  }
  .bannerAreaInner .bn_recruit .catch p {
    margin: 0;
    font-size: 1.6rem;
  }
  .bannerAreaInner .bn_message .bn_messageInner {
    min-height: 500px;
    display: flex;
  }
  .bannerAreaInner .bn_message .catch {
    width: 100%;
  }
  .bannerAreaInner .bn_message .catch h3 {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }
  .bannerAreaInner .bn_message .catch h3 span {
    font-size: 1.8rem;
  }
  .bannerAreaInner .bn_message .catch p {
    font-size: 1.6rem;
  }
  .bannerAreaInner .bn_messageBottom .btn_enkaku a,
  .bannerAreaInner .bn_messageBottom .btn_company a {
    padding: 25px;
    font-size: 1.8rem;
  }
  .bannerAreaInner .bn_messageBottom .btn_enkaku a img,
  .bannerAreaInner .bn_messageBottom .btn_company a img {
    max-width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .bannerAreaInner .bn_recruit {
    margin-bottom: 40px;
  }
  .bannerAreaInner .bn_recruit .bn_recruitInner {
    min-height: 430px;
    display: block;
  }
  .bannerAreaInner .bn_recruit .catch {
    position: absolute;
    width: 60%;
    height: 100%;
    padding: 30px 20px;
  }
  .bannerAreaInner .bn_recruit .catch h3 {
    display: block;
    font-size: 5rem;
    margin-bottom: 35px;
  }
  .bannerAreaInner .bn_recruit .catch h3 span {
    font-size: 1.5rem;
    text-align: left;
  }
  .bannerAreaInner .bn_recruit .catch p {
    margin: 0;
    font-size: 1.5rem;
  }
  .bannerAreaInner .bn_message .bn_messageInner {
    min-height: 430px;
    display: block;
  }
  .bannerAreaInner .bn_message .catch {
    width: 100%;
  }
  .bannerAreaInner .bn_message .catch h3 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .bannerAreaInner .bn_message .catch h3 span {
    font-size: 1.8rem;
  }
  .bannerAreaInner .bn_message .catch p {
    font-size: 1.6rem;
  }
  .bannerAreaInner .bn_messageBottom .btn_enkaku a,
  .bannerAreaInner .bn_messageBottom .btn_company a {
    padding: 20px;
    font-size: 1.8rem;
  }
  .bannerAreaInner .bn_messageBottom .btn_enkaku a img,
  .bannerAreaInner .bn_messageBottom .btn_company a img {
    max-width: 40px;
  }
}
@media screen and (max-width: 480px) {
  .bannerAreaInner .bn_recruit .bn_recruitInner {
    min-height: 400px;
    display: block;
  }
  .bannerAreaInner .bn_recruit .catch {
    position: absolute;
    width: 65%;
    height: 100%;
    padding: 30px 20px;
  }
  .bannerAreaInner .bn_recruit .catch h3 {
    display: block;
    font-size: 4rem;
    margin-bottom: 30px;
  }
  .bannerAreaInner .bn_recruit .catch h3 span {
    font-size: 1.5rem;
    text-align: left;
  }
  .bannerAreaInner .bn_recruit .catch p {
    margin: 0;
    font-size: 1.5rem;
  }
  .bannerAreaInner .bn_message .bn_messageInner {
    min-height: 380px;
    display: block;
  }
  .bannerAreaInner .bn_message .catch {
    width: 100%;
  }
  .bannerAreaInner .bn_message .catch h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .bannerAreaInner .bn_message .catch h3 span {
    font-size: 1.6rem;
  }
  .bannerAreaInner .bn_message .catch p {
    font-size: 1.5rem;
  }
  .bannerAreaInner .bn_messageBottom .btn_enkaku a,
  .bannerAreaInner .bn_messageBottom .btn_company a {
    padding: 20px 10px;
    font-size: 1.6rem;
  }
  .bannerAreaInner .bn_messageBottom .btn_enkaku a img,
  .bannerAreaInner .bn_messageBottom .btn_company a img {
    max-width: 30px;
  }
}
.bannerAreaInner .bn_recruit {
  top: -70px;
}
.bannerAreaInner .bn_message {
  top: 70px;
}

@media screen and (max-width: 979px) {
  .bannerAreaInner .bn_recruit {
    top: 0;
  }
  .bannerAreaInner .bn_message {
    top: 0;
  }
}
.bannerAreaBg {
  position: absolute;
  width: 100%;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ebebeb;
  min-height: 610px;
}

.footerCredit {
  position: relative;
  width: 100%;
  min-height: 80px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .footerCredit {
    min-height: 60px;
  }
}
@keyframes footerCredit {
  0% {
    background-position: 0 top;
  }
  100% {
    background-position: -1400px top;
  }
}
.footerCreditTxt {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 100%;
  height: 80px;
  z-index: -1;
  background-image: url("../img/footercredit.svg");
  background-position: 0 top;
  background-repeat: repeat-x;
  background-size: 1400px 79px;
  animation: footerCredit 19s linear 0s infinite;
}

@media only screen and (max-width: 768px) {
  .footerCreditTxt {
    height: 61px;
    background-size: 1000px 56px;
  }
}
@media only screen and (max-width: 480px) {
  .footerCreditTxt {
    height: 48px;
    background-size: 767px 43px;
  }
}
section.footerArea {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-top: 100px;
}

.footerContents {
  width: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.7)), url(../img/bg_footer.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 70px 0 60px;
  margin-top: -25px;
  z-index: 1;
}

.footerContentsInner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 auto;
  padding-bottom: 80px;
  justify-content: space-between;
  box-sizing: border-box;
}
.footerContentsInner .boxTel {
  position: relative;
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
  border-right: 1px solid #848484;
  text-align: center;
}
.footerContentsInner .boxMail {
  position: relative;
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
.footerContentsInner .headline {
  width: 100%;
  text-align: center;
}
.footerContentsInner .headline h3 {
  display: block;
  font-size: 6rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 50px;
}
.footerContentsInner .headline h3 span {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 1.7rem;
  letter-spacing: 0.025em;
  color: #fff;
  margin-bottom: 10px;
}

@media only screen and (max-width: 979px) {
  section.footerArea {
    margin-top: 80px;
  }
  .footerContents {
    padding: 50px 0 40px;
    margin-top: -25px;
  }
  .footerContentsInner {
    padding-bottom: 50px;
  }
  .footerContentsInner .boxTel {
    width: 100%;
    box-sizing: border-box;
  }
  .footerContentsInner .boxMail {
    width: 100%;
    box-sizing: border-box;
  }
  .footerContentsInner .headline h3 {
    display: block;
    font-size: 5rem;
    margin-bottom: 30px;
  }
  .footerContentsInner .headline h3 span {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  section.footerArea {
    margin-top: 60px;
  }
  .footerContents {
    padding: 40px 0 40px;
    margin-top: -25px;
  }
  .footerContentsInner {
    padding-bottom: 20px;
  }
  .footerContentsInner .boxTel {
    width: 100%;
    box-sizing: border-box;
  }
  .footerContentsInner .boxMail {
    width: 100%;
    box-sizing: border-box;
  }
  .footerContentsInner .headline h3 {
    display: block;
    font-size: 4rem;
    margin-bottom: 30px;
  }
  .footerContentsInner .headline h3 span {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .footerContents {
    padding: 40px 0 40px;
    margin-top: -25px;
  }
  .footerContentsInner {
    padding-bottom: 20px;
  }
  .footerContentsInner .headline h3 {
    display: block;
    font-size: 3.8rem;
    margin-bottom: 30px;
  }
  .footerContentsInner .headline h3 span {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.footerContentsInner .boxTel {
  position: relative;
}
.footerContentsInner .boxTel .boxTelInner {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}
.footerContentsInner .boxTel .boxTelInner {
  text-align: center;
}
.footerContentsInner .boxTel .boxTelInner h4 {
  font-size: 2.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff;
}
.footerContentsInner .boxTel .telNumber {
  display: block;
  padding: 0;
  margin: 0;
  font-size: 5rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.footerContentsInner .boxTel .telNumber span {
  font-size: 2.8rem;
  letter-spacing: 0.025em;
  color: #fff;
}
.footerContentsInner .boxTel .telTxt {
  padding: 0;
  margin: 0;
  line-height: 1.5;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff;
}
.footerContentsInner .boxMail {
  position: relative;
}
.footerContentsInner .boxMail .boxMailInner {
  text-align: center;
}
.footerContentsInner .boxMail .boxMailInner h4 {
  font-size: 2.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff;
}

@media only screen and (max-width: 979px) {
  .footerContentsInner .boxTel .boxTelInner h4 {
    font-size: 2rem;
  }
  .footerContentsInner .boxTel .telNumber {
    font-size: 4rem;
    margin-bottom: 5px;
  }
  .footerContentsInner .boxTel .telNumber span {
    font-size: 2.5rem;
  }
  .footerContentsInner .boxTel .telTxt {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .footerContentsInner .boxTel .boxTelInner h4 {
    font-size: 2rem;
  }
  .footerContentsInner .boxTel .telNumber {
    font-size: 3.8rem;
    margin-bottom: 5px;
  }
  .footerContentsInner .boxTel .telNumber span {
    font-size: 2.2rem;
  }
  .footerContentsInner .boxTel .telTxt {
    font-size: 1.6rem;
  }
}
.footerSubInner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 auto;
  padding: 40px 20px;
  justify-content: space-between;
  box-sizing: border-box;
}
.footerSubInner .footerLogo {
  width: 35%;
}
.footerSubInner .footerLogo img {
  display: block;
  width: 100%;
  max-width: 260px;
}
.footerSubInner .footerLogo .addressTxt {
  margin-top: 40px;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.footerSubInner .footerMenu ul {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  box-sizing: border-box;
}
.footerSubInner .footerMenu ul li {
  padding: 0 15px;
}
.footerSubInner .footerMenu ul li a {
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #111;
  text-decoration: none;
}
.footerSubInner .footerMenu ul li a:hover {
  color: #007235;
}

@media only screen and (max-width: 979px) {
  .footerSubInner {
    padding: 30px 20px;
  }
  .footerSubInner .footerLogo {
    width: 100%;
    margin-top: 30px;
    order: 2;
  }
  .footerSubInner .footerLogo img {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
  .footerSubInner .footerLogo .addressTxt {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
  .footerSubInner .footerMenu {
    width: 100%;
    order: 1;
  }
  .footerSubInner .footerMenu ul {
    max-width: 100%;
    margin: 0 auto;
    justify-content: flex-start;
  }
  .footerSubInner .footerMenu ul li {
    width: 50%;
    display: block;
    padding: 0 15px;
    border-bottom: 1px solid #e8e8e8;
  }
  .footerSubInner .footerMenu ul li a {
    display: block;
    padding: 15px 0;
    font-size: 1.7rem;
    text-decoration: none;
  }
  .footerSubInner .footerMenu ul li a:hover {
    color: #007235;
  }
  .footerSubInner .footerMenu ul li:last-child {
    border-bottom: none;
  }
}
@media only screen and (max-width: 767px) {
  .footerSubInner {
    padding: 30px 20px;
  }
  .footerSubInner .footerLogo {
    width: 100%;
    margin-top: 30px;
    order: 2;
  }
  .footerSubInner .footerLogo img {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  .footerSubInner .footerLogo .addressTxt {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
  .footerSubInner .footerMenu {
    width: 100%;
    order: 1;
  }
  .footerSubInner .footerMenu ul {
    max-width: 100%;
    margin: 0 auto;
    justify-content: flex-start;
  }
  .footerSubInner .footerMenu ul li {
    width: 100%;
    display: block;
    padding: 0 15px;
    border-bottom: 1px solid #e8e8e8;
  }
  .footerSubInner .footerMenu ul li a {
    position: relative;
    display: block;
    padding: 15px 0;
    margin-bottom: 5px;
    font-size: 1.7rem;
    text-decoration: none;
  }
  .footerSubInner .footerMenu ul li a:hover {
    color: #007235;
  }
  .footerSubInner .footerMenu ul li a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 1px solid #888;
    border-right: 1px solid #888;
    transition: all 0.3s;
  }
  .footerSubInner .footerMenu ul li a:hover::after {
    right: 10px;
  }
  .footerSubInner .footerMenu ul li:last-child {
    border-bottom: none;
  }
}
.footerEnd {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid #c8c8c8;
}

.footerEndInner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: space-between;
  box-sizing: border-box;
}
.footerEndInner .copyright {
  width: 50%;
}
.footerEndInner .copyright p {
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #111;
}
.footerEndInner .others {
  width: 50%;
  text-align: right;
}
.footerEndInner .others a {
  color: #111;
}
.footerEndInner .others a:hover {
  color: #007235;
}

@media only screen and (max-width: 979px) {
  .footerEndInner .copyright {
    width: 100%;
    text-align: center;
  }
  .footerEndInner .others {
    width: 100%;
    text-align: center;
  }
}
#page_top {
  position: fixed;
  bottom: 10%;
  right: 30px;
  z-index: 10;
}

#page_top a {
  text-align: center;
}

#page_top a img {
  display: block;
  width: 100%;
  max-width: 62px;
  transition: all 0.3s ease;
}

#page_top a:hover img {
  opacity: 0.8;
}

@media screen and (max-width: 640px) {
  #page_top a img {
    max-width: 40px;
  }
}
@media screen and (max-width: 480px) {
  #page_top {
    bottom: 15%;
  }
  #page_top a img {
    max-width: 30px;
  }
}
section.pageNavi {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
section.pageNavi .pnImg {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0 auto;
  padding-top: 20.8%;
  border-bottom: 7px solid #007235;
  box-sizing: border-box;
  z-index: 1;
  transition: all 0.3s linear;
}
section.pageNavi .pnImgBottom {
  z-index: 0;
  display: block;
  width: 100%;
  height: 80px;
  background: #f6f6f6;
}

@media only screen and (max-width: 1279px) {
  section.pageNavi .pnImg {
    height: 300px;
  }
}
@media only screen and (max-width: 979px) {
  section.pageNavi .pnImg {
    height: 250px;
  }
}
@media only screen and (max-width: 767px) {
  section.pageNavi .pnImg {
    height: 200px;
  }
}
.pn_about {
  background: url(../img/pn/about2.jpg) no-repeat top center;
  background-size: cover;
}

.pn_service {
  background: url(../img/pn/recruit.jpg) no-repeat top center;
  background-size: cover;
}

.pn_recruit {
  background: url(../img/pn/recruit.jpg) no-repeat top center;
  background-size: cover;
}

.pn_company {
  background: url(../img/pn/company.jpg) no-repeat top center;
  background-size: cover;
}

.pn_contact {
  background: url(../img/pn/contact.jpg) no-repeat top center;
  background-size: cover;
}

.pageHeadlineWrap {
  position: relative;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  text-align: left;
  margin-top: -150px;
  transition: all 0.3s linear;
}

.pageHeadline {
  position: relative;
  width: 50%;
  max-width: 1480px;
  padding: 20px 40px;
  box-sizing: border-box;
  z-index: 2;
  background: #fff;
  transition: all 0.3s linear;
}

@media only screen and (max-width: 1440px) {
  .pageHeadline {
    padding: 20px 20px;
  }
}
@media only screen and (max-width: 1279px) {
  .pageHeadlineWrap {
    margin-top: -130px;
  }
  .pageHeadline {
    width: 60%;
  }
}
@media only screen and (max-width: 979px) {
  .pageHeadlineWrap {
    margin-top: -110px;
  }
  .pageHeadline {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .pageHeadlineWrap {
    margin-top: -110px;
  }
  .pageHeadline {
    width: 70%;
  }
}
@media only screen and (max-width: 480px) {
  .pageHeadlineWrap {
    margin-top: -100px;
  }
  .pageHeadline {
    width: 80%;
  }
}
.breadCrumb {
  position: relative;
  width: 100%;
  max-width: 1440px;
  box-sizing: border-box;
  padding: 0 20px;
  padding-bottom: 20px;
  margin: 0 auto;
  margin-bottom: 70px;
  border-bottom: 1px solid #ebebeb;
}
.breadCrumb p {
  font-size: 1.65rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.breadCrumb p a {
  color: #111;
}
.breadCrumb p a:hover {
  color: #007235;
  text-decoration: underline;
}

@media only screen and (max-width: 1279px) {
  .breadCrumb {
    padding: 0 20px;
    padding-bottom: 20px;
  }
  .breadCrumb p {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 979px) {
  .breadCrumb {
    margin-bottom: 50px;
    padding: 0 20px;
    padding-bottom: 20px;
  }
  .breadCrumb p {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .breadCrumb {
    margin-bottom: 40px;
    padding: 0 20px;
    padding-bottom: 10px;
  }
  .breadCrumb p {
    font-size: 1.5rem;
  }
}
.baseWidth {
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

@media only screen and (max-width: 979px) {
  .baseWidth {
    padding: 0 0;
    box-sizing: border-box;
  }
}
.baseWidth2 {
  width: 100%;
  max-width: 1440px;
  box-sizing: border-box;
  margin: 0 auto;
}

.baseWidth3 {
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  margin: 0 auto;
}

.aboutStrength {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 90px;
  gap: 0 50px;
  box-sizing: border-box;
}
.aboutStrength .aboutInfo {
  width: calc(50% - 25px);
  box-sizing: border-box;
}
.aboutStrength .aboutImg {
  width: calc(50% - 25px);
  box-sizing: border-box;
}

@media only screen and (max-width: 979px) {
  .aboutStrength {
    padding: 0;
  }
  .aboutStrength .aboutInfo {
    width: 100%;
    box-sizing: border-box;
    order: 2;
  }
  .aboutStrength .aboutImg {
    width: 100%;
    box-sizing: border-box;
    order: 1;
    margin-bottom: 30px;
  }
}
.aboutStrength .aboutInfo p {
  font-size: 1.7rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.025rem;
}
.aboutStrength .aboutInfo h3.sh-title {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.025em;
  margin-top: 30px;
  margin-bottom: 20px;
}
.aboutStrength .aboutInfo h3.sh-title span {
  position: relative;
  display: inline-block;
  background: #fff;
  color: #007235;
  padding-right: 10px;
  text-shadow: 0 0 5px #fff;
  z-index: 1;
}
.aboutStrength .aboutImg {
  position: relative;
}
.aboutStrength .aboutImg figure {
  position: relative;
  display: block;
  width: 100%;
  z-index: 0;
}
.aboutStrength .aboutImg figure img {
  display: block;
  width: 100%;
}
.aboutStrength .bottomChip {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  z-index: 1;
}
.aboutStrength .topChip {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 1;
}
.aboutStrength .bottomChip,
.aboutStrength .topChip {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.aboutStrength .bottomChip img,
.aboutStrength .topChip img {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

@media only screen and (max-width: 979px) {
  .aboutStrength .bottomChip {
    width: 40px;
    height: 40px;
  }
  .aboutStrength .topChip {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .aboutStrength .aboutInfo h3.sh-title {
    margin-top: 0;
  }
  .aboutStrength .aboutInfo p {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .aboutStrength .bottomChip {
    width: 36px;
    height: 36px;
  }
  .aboutStrength .topChip {
    width: 36px;
    height: 36px;
  }
}
.visionHeadline {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 60px;
  box-sizing: border-box;
}
.visionHeadline h3 {
  display: block;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  text-align: center;
}

@media only screen and (max-width: 979px) {
  .visionHeadline {
    padding: 0;
    margin-bottom: 50px;
  }
  .visionHeadline h3 {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .visionHeadline {
    margin-bottom: 40px;
  }
  .visionHeadline h3 {
    font-size: 2rem;
    text-align: left;
  }
}
@media only screen and (max-width: 480px) {
  .visionHeadline h3 {
    font-size: 1.8rem;
  }
}
.aboutVision {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 90px;
  gap: 0 50px;
  box-sizing: border-box;
}
.aboutVision .visionInfo {
  width: calc(50% - 25px);
  box-sizing: border-box;
}
.aboutVision .visionImg {
  width: calc(50% - 25px);
  box-sizing: border-box;
}
.aboutVision .visionImg img {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 979px) {
  .aboutVision {
    padding: 0;
    margin-bottom: 70px;
  }
  .aboutVision .visionInfo {
    width: 100%;
    box-sizing: border-box;
    order: 2;
  }
  .aboutVision .visionImg {
    width: 100%;
    box-sizing: border-box;
    order: 1;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .aboutVision {
    margin-bottom: 50px;
  }
  .aboutVision .visionImg {
    margin-bottom: 10px;
  }
}
.aboutVision .visionInfo h3 {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 3rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.025em;
  margin-bottom: 20px;
}
.aboutVision .visionInfo h3 span {
  position: relative;
  display: inline-block;
  background: #fff;
  color: #007235;
  padding-right: 10px;
  text-shadow: 0 0 5px #fff;
  z-index: 1;
}
.aboutVision .visionInfo h3::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: #007235;
  z-index: 0;
}
.aboutVision .visionInfo p.txt {
  font-size: 1.7rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
}
.aboutVision .visionInfo p.num {
  display: block;
  position: relative;
  font-size: 8rem;
  font-weight: 200;
  font-family: "Barlow", sans-serif;
  line-height: 1;
  font-style: italic;
  padding: 0;
  color: #cfdbd5;
}
.aboutVision .visionInfo p.num span {
  position: relative;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.8rem;
}

@media only screen and (max-width: 979px) {
  .aboutVision .visionInfo h3 {
    font-size: 2.6rem;
  }
  .aboutVision .visionInfo p.txt {
    font-size: 1.7rem;
  }
  .aboutVision .visionInfo p.num {
    font-size: 6rem;
  }
  .aboutVision .visionInfo p.num span {
    font-size: 2.4rem;
  }
}
section.serviceContents {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

section.serviceContents .headImg {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
section.serviceContents .headImg img {
  display: block;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
section.serviceContents .overviewWrap {
  margin-bottom: 450px;
}
section.serviceContents .overviewWrap2 {
  margin-bottom: 520px;
}
section.serviceContents .overviewWrap3 {
  margin-bottom: 50px;
}
section.serviceContents .overview {
  position: absolute;
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
  padding: 30px 20px;
  margin-top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  z-index: 1;
}
section.serviceContents .overview h2 {
  display: block;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: #007235;
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
  text-align: center;
  line-height: 1.6;
}
section.serviceContents .overview h2 span {
  display: block;
  font-size: 1.6rem;
}
section.serviceContents .overview p.overviewCatch {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 30px;
}
section.serviceContents .overview p.overviewTxt {
  display: block;
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}
section.serviceContents .overviewPlainWrap {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 30px 20px;
  box-sizing: border-box;
  border-top: 3px solid #007235;
}
section.serviceContents .overviewPlain {
  position: relative;
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
}
section.serviceContents .overviewPlain h2 {
  display: block;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: #007235;
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
  text-align: center;
  line-height: 1.6;
}
section.serviceContents .overviewPlain h2 span {
  display: block;
  font-size: 1.6rem;
}
section.serviceContents .overviewPlain p.overviewCatch {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 30px;
}
section.serviceContents .overviewPlain p.overviewTxt {
  display: block;
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}

@media only screen and (max-width: 979px) {
  section.serviceContents .headImg {
    position: relative;
  }
  section.serviceContents .headImg img {
    height: 400px;
  }
  section.serviceContents .overviewWrap {
    margin-bottom: 450px;
  }
  section.serviceContents .overviewWrap2 {
    margin-bottom: 520px;
  }
  section.serviceContents .overviewWrap3 {
    margin-bottom: 50px;
  }
  section.serviceContents .overview {
    position: absolute;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 30px 20px;
    margin-top: -80px;
    transition: all 0.3s linear;
  }
  section.serviceContents .overview h2 {
    font-size: 3.5rem;
  }
  section.serviceContents .overview h2 span {
    font-size: 1.6rem;
  }
  section.serviceContents .overview p.overviewCatch {
    font-size: 3.5rem;
  }
  section.serviceContents .overview p.overviewTxt {
    max-width: 800px;
    font-size: 1.6rem;
  }
  section.serviceContents .overviewPlain h2 {
    font-size: 3.5rem;
  }
  section.serviceContents .overviewPlain h2 span {
    font-size: 1.6rem;
  }
  section.serviceContents .overviewPlain p.overviewCatch {
    font-size: 3.5rem;
  }
  section.serviceContents .overviewPlain p.overviewTxt {
    max-width: 800px;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  section.serviceContents .headImg {
    position: relative;
  }
  section.serviceContents .headImg img {
    height: 400px;
  }
  section.serviceContents .overviewWrap {
    margin-bottom: 30px;
  }
  section.serviceContents .overviewWrap2 {
    margin-bottom: 30px;
  }
  section.serviceContents .overviewWrap3 {
    margin-bottom: 30px;
  }
  section.serviceContents .overview {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 30px 20px;
    margin-top: -80px;
    transition: all 0.3s linear;
  }
  section.serviceContents .overview h2 {
    font-size: 3rem;
  }
  section.serviceContents .overview h2 span {
    font-size: 1.6rem;
  }
  section.serviceContents .overview p.overviewCatch {
    font-size: 3rem;
  }
  section.serviceContents .overview p.overviewTxt {
    max-width: 650px;
    font-size: 1.6rem;
  }
  section.serviceContents .overviewPlain {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }
  section.serviceContents .overviewPlain h2 {
    font-size: 3rem;
  }
  section.serviceContents .overviewPlain h2 span {
    font-size: 1.6rem;
  }
  section.serviceContents .overviewPlain p.overviewCatch {
    font-size: 3rem;
  }
  section.serviceContents .overviewPlain p.overviewTxt {
    max-width: 650px;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 480px) {
  section.serviceContents .headImg {
    position: relative;
  }
  section.serviceContents .headImg img {
    height: 250px;
  }
  section.serviceContents .overviewWrap {
    margin-bottom: 30px;
  }
  section.serviceContents .overviewWrap2 {
    margin-bottom: 30px;
  }
  section.serviceContents .overviewWrap3 {
    margin-bottom: 30px;
  }
  section.serviceContents .overview {
    position: relative;
    width: 100%;
    max-width: auto;
    margin: 0 auto;
    padding: 20px 0;
  }
  section.serviceContents .overview h2 {
    font-size: 2.6rem;
  }
  section.serviceContents .overview h2 span {
    font-size: 1.5rem;
  }
  section.serviceContents .overview p.overviewCatch {
    font-size: 2.6rem;
  }
  section.serviceContents .overview p.overviewTxt {
    max-width: auto;
    font-size: 1.5rem;
  }
  section.serviceContents .overviewPlain {
    position: relative;
    width: 100%;
    max-width: auto;
    margin: 0 auto;
  }
  section.serviceContents .overviewPlain h2 {
    font-size: 2.6rem;
  }
  section.serviceContents .overviewPlain h2 span {
    font-size: 1.5rem;
  }
  section.serviceContents .overviewPlain p.overviewCatch {
    font-size: 2.6rem;
  }
  section.serviceContents .overviewPlain p.overviewTxt {
    max-width: auto;
    font-size: 1.5rem;
  }
}
.serviceOffice {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 90px;
  gap: 0 50px;
  box-sizing: border-box;
}
.serviceOffice .officeInfo {
  width: 360px;
  padding: 0 20px;
  box-sizing: border-box;
}
.serviceOffice .officeImg {
  width: calc(100% - 410px);
  box-sizing: border-box;
}

.serviceOfficePlain {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 90px;
  gap: 0 50px;
  box-sizing: border-box;
}
.serviceOfficePlain .officeInfoPlain {
  width: 360px;
  padding: 0 20px;
  box-sizing: border-box;
}
.serviceOfficePlain .officeDetailPlain {
  width: calc(100% - 410px);
  box-sizing: border-box;
}

@media only screen and (max-width: 979px) {
  .serviceOffice {
    margin-bottom: 70px;
  }
  .serviceOffice .officeInfo {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    box-sizing: border-box;
    order: 1;
  }
  .serviceOffice .officeImg {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    order: 2;
    margin-bottom: 20px;
  }
  .serviceOfficePlain .officeInfoPlain {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    box-sizing: border-box;
    order: 1;
  }
  .serviceOfficePlain .officeDetailPlain {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    order: 2;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .serviceOffice {
    margin-bottom: 40px;
  }
  .serviceOfficePlain {
    margin-bottom: 40px;
  }
}
.serviceOffice .officeInfo h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #007235;
  line-height: 1;
  margin: 0;
  padding: 0;
  padding-top: 30px;
  border-top: 3px solid #007235;
}
.serviceOffice .officeInfo h3 span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.serviceOffice .officeInfo .spec {
  display: block;
  margin-top: 60px;
  font-size: 1.7rem;
  line-height: 1.8;
}
.serviceOffice .officeInfo .spec span {
  font-weight: 600;
}
.serviceOffice .officeImgInner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 40px 40px;
  justify-content: space-between;
}
.serviceOffice .officeImgInner .photo1 {
  width: 100%;
}
.serviceOffice .officeImgInner .photo2 {
  width: calc(50% - 20px);
}
.serviceOffice .officeImgInner .photo3 {
  width: calc(50% - 20px);
}
.serviceOffice .officeImgInner .photo1 img {
  display: block;
  width: 100%;
}
.serviceOffice .officeImgInner .photo2 img {
  display: block;
  width: 100%;
}
.serviceOffice .officeImgInner .photo3 img {
  display: block;
  width: 100%;
}

.officeInfoPlain h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #007235;
  line-height: 1;
  margin: 0;
  padding: 0;
  padding-top: 30px;
  border-top: 3px solid #007235;
}
.officeInfoPlain h3 span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.officeDetailPlain .spec {
  display: block;
  font-size: 1.7rem;
  line-height: 1.8;
}
.officeDetailPlain .spec span {
  font-weight: 600;
}

@media only screen and (max-width: 979px) {
  .serviceOffice .officeInfo h3 {
    font-size: 3.5rem;
    padding-top: 30px;
  }
  .serviceOffice .officeInfo h3 span {
    font-size: 1.6rem;
  }
  .serviceOffice .officeInfo .spec {
    margin-top: 40px;
    font-size: 1.6rem;
  }
  .serviceOffice .officeImgInner {
    position: relative;
    gap: 30px 30px;
  }
  .officeInfoPlain h3 {
    font-size: 3.5rem;
    padding-top: 30px;
  }
  .officeInfoPlain h3 span {
    font-size: 1.6rem;
  }
  .officeDetailPlain .spec {
    margin-top: 40px;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .serviceOffice .officeInfo h3 {
    font-size: 3rem;
    padding-top: 30px;
  }
  .serviceOffice .officeInfo h3 span {
    font-size: 1.5rem;
  }
  .serviceOffice .officeInfo .spec {
    margin-top: 20px;
    font-size: 1.5rem;
  }
  .serviceOffice .officeImgInner {
    position: relative;
    gap: 20px 20px;
  }
  .serviceOffice .officeImgInner .photo1 {
    width: 100%;
  }
  .serviceOffice .officeImgInner .photo2 {
    width: calc(50% - 10px);
  }
  .serviceOffice .officeImgInner .photo3 {
    width: calc(50% - 10px);
  }
  .officeInfoPlain h3 {
    font-size: 3rem;
    padding-top: 30px;
  }
  .officeInfoPlain h3 span {
    font-size: 1.5rem;
  }
  .officeDetailPlain .spec {
    margin-top: 20px;
    font-size: 1.5rem;
  }
}
.serviceLogistics {
  margin-bottom: 120px;
}

.aboutLogistics {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 90px;
  gap: 0 50px;
  box-sizing: border-box;
}
.aboutLogistics .logisticsImg {
  width: calc(50% - 50px);
  box-sizing: border-box;
}
.aboutLogistics .logisticsInfo {
  width: calc(50% - 50px);
  padding: 0 20px;
  box-sizing: border-box;
}

@media only screen and (max-width: 979px) {
  .serviceLogistics {
    margin-bottom: 80px;
  }
  .aboutLogistics {
    margin-bottom: 70px;
  }
  .aboutLogistics .logisticsImg {
    width: 100%;
    margin-bottom: 30px;
    box-sizing: border-box;
    order: 1;
  }
  .aboutLogistics .logisticsInfo {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    order: 2;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .serviceLogistics {
    margin-bottom: 40px;
  }
  .aboutLogistics {
    margin-bottom: 40px;
  }
}
.aboutLogistics .logisticsThumb {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 40px 40px;
  justify-content: space-between;
}
.aboutLogistics .logisticsThumb .photo1 {
  width: calc(50% - 20px);
}
.aboutLogistics .logisticsThumb .photo2 {
  width: calc(50% - 20px);
}
.aboutLogistics .logisticsThumb .photo3 {
  width: calc(50% - 20px);
}
.aboutLogistics .logisticsThumb .photo4 {
  width: calc(50% - 20px);
}
.aboutLogistics .logisticsThumb .photo1 img,
.aboutLogistics .logisticsThumb .photo2 img,
.aboutLogistics .logisticsThumb .photo3 img,
.aboutLogistics .logisticsThumb .photo4 img {
  display: block;
  width: 100%;
}
.aboutLogistics .logisticsInfo h3 {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 20px;
}
.aboutLogistics .logisticsInfo h3 i {
  color: #007235;
  margin-right: 0.3em;
}
.aboutLogistics .logisticsInfo ul {
  width: 100%;
  margin-bottom: 20px;
}
.aboutLogistics .logisticsInfo li {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.8;
  padding-left: 15px;
}
.aboutLogistics .logisticsInfo li:before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #007235;
  border-radius: 50%;
}
.aboutLogistics .logisticsInfo p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 30px;
}

@media only screen and (max-width: 979px) {
  .aboutLogistics .logisticsThumb {
    position: relative;
    width: 100%;
    gap: 30px 30px;
  }
  .aboutLogistics .logisticsThumb .photo1 {
    width: calc(50% - 15px);
  }
  .aboutLogistics .logisticsThumb .photo2 {
    width: calc(50% - 15px);
  }
  .aboutLogistics .logisticsThumb .photo3 {
    width: calc(50% - 15px);
  }
  .aboutLogistics .logisticsThumb .photo4 {
    width: calc(50% - 15px);
  }
  .aboutLogistics .logisticsInfo h3 {
    font-size: 2.2rem;
  }
  .aboutLogistics .logisticsInfo li {
    font-size: 1.6rem;
    line-height: 1.8;
    padding-left: 15px;
  }
  .aboutLogistics .logisticsInfo p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .aboutLogistics .logisticsThumb {
    position: relative;
    width: 100%;
    gap: 20px 20px;
  }
  .aboutLogistics .logisticsThumb .photo1 {
    width: calc(50% - 10px);
  }
  .aboutLogistics .logisticsThumb .photo2 {
    width: calc(50% - 10px);
  }
  .aboutLogistics .logisticsThumb .photo3 {
    width: calc(50% - 10px);
  }
  .aboutLogistics .logisticsThumb .photo4 {
    width: calc(50% - 10px);
  }
  .aboutLogistics .logisticsInfo h3 {
    font-size: 2rem;
  }
  .aboutLogistics .logisticsInfo li {
    font-size: 1.5rem;
    line-height: 1.8;
    padding-left: 15px;
  }
  .aboutLogistics .logisticsInfo p {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }
}
.serviceEquip {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 120px;
  gap: 0 50px;
  box-sizing: border-box;
}
.serviceEquip .equipInfo {
  width: 360px;
  padding: 0 20px;
  box-sizing: border-box;
}
.serviceEquip .equipImg {
  width: calc(100% - 410px);
  box-sizing: border-box;
}

@media only screen and (max-width: 979px) {
  .serviceEquip {
    position: relative;
    margin-bottom: 100px;
    box-sizing: border-box;
  }
  .serviceEquip .equipInfo {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 30px;
    order: 1;
  }
  .serviceEquip .equipImg {
    width: 100%;
    box-sizing: border-box;
    order: 2;
  }
}
.serviceEquip .equipInfo {
  padding: 0;
}
.serviceEquip .equipInfo h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #007235;
  line-height: 1;
  margin: 0;
  padding: 0;
  padding-top: 30px;
  border-top: 3px solid #007235;
}
.serviceEquip .equipInfo h3 span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.serviceEquip .equipInfo .spec {
  display: block;
  margin-top: 60px;
  font-size: 1.7rem;
  line-height: 1.8;
}
.serviceEquip .equipInfo .spec span {
  font-weight: 600;
}
.serviceEquip .equipImgInner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 40px 40px;
  justify-content: space-between;
}
.serviceEquip .equipImgInner .photo {
  width: calc(50% - 20px);
}
.serviceEquip .equipImgInner .photo img {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 979px) {
  .serviceEquip .equipInfo h3 {
    font-size: 3.5rem;
  }
  .serviceEquip .equipInfo h3 span {
    font-size: 1.6rem;
  }
  .serviceEquip .equipInfo .spec {
    display: block;
    margin-top: 40px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .serviceEquip .equipImgInner {
    position: relative;
    width: 100%;
    gap: 30px 30px;
  }
  .serviceEquip .equipImgInner .photo {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 767px) {
  .serviceEquip .equipInfo h3 {
    font-size: 3rem;
  }
  .serviceEquip .equipInfo h3 span {
    font-size: 1.5rem;
  }
  .serviceEquip .equipInfo .spec {
    display: block;
    margin-top: 40px;
    font-size: 1.5rem;
  }
  .serviceEquip .equipImgInner {
    position: relative;
    width: 100%;
    gap: 20px 20px;
  }
  .serviceEquip .equipImgInner .photo {
    width: calc(50% - 10px);
  }
}
table.tblEquip {
  width: 100%;
  margin-top: 60px;
  border: 1px solid #e8e8e8;
}
table.tblEquip tr {
  border-bottom: 1px solid #e8e8e8;
}
table.tblEquip th, table.tblEquip td {
  padding: 10px 14px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.7;
}
table.tblEquip th {
  background: #f7f7f7;
}
table.tblEquip td {
  text-align: right;
}
table.tblEquip td span {
  font-size: 1.4rem;
}

@media only screen and (max-width: 979px) {
  table.tblEquip {
    width: 100%;
    margin-top: 40px;
  }
  table.tblEquip th, table.tblEquip td {
    padding: 10px 14px;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  table.tblEquip {
    width: 100%;
    margin-top: 30px;
  }
  table.tblEquip th, table.tblEquip td {
    padding: 10px 14px;
    font-size: 1.5rem;
  }
}
section.recruitContents {
  position: relative;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

section.recruitContents .headImg {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
section.recruitContents .headImg img {
  display: block;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
section.recruitContents .overviewWrap {
  margin-bottom: 270px;
}
section.recruitContents .overview {
  position: absolute;
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
  padding: 40px 20px 30px;
  margin-top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  z-index: 1;
}
section.recruitContents .overview h2 {
  display: block;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: #007235;
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
  text-align: center;
  line-height: 1.6;
}
section.recruitContents .overview h2 span {
  display: block;
  font-size: 1.6rem;
}
section.recruitContents .overview p.overviewCatch {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #007235;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 30px;
}
section.recruitContents .overview p.overviewTxt {
  display: block;
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}

@media only screen and (max-width: 979px) {
  section.recruitContents .headImg {
    position: relative;
  }
  section.recruitContents .headImg img {
    height: 400px;
  }
  section.recruitContents .overviewWrap {
    margin-bottom: 270px;
  }
  section.recruitContents .overview {
    position: absolute;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 30px 20px;
    margin-top: -80px;
    transition: all 0.3s linear;
  }
  section.recruitContents .overview h2 {
    font-size: 3.5rem;
  }
  section.recruitContents .overview h2 span {
    font-size: 1.6rem;
  }
  section.recruitContents .overview p.overviewCatch {
    font-size: 3.5rem;
  }
  section.recruitContents .overview p.overviewTxt {
    max-width: 800px;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  section.recruitContents .headImg {
    position: relative;
  }
  section.recruitContents .headImg img {
    height: 300px;
  }
  section.recruitContents .overviewWrap {
    margin-bottom: 30px;
  }
  section.recruitContents .overview {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 30px 20px;
    margin-top: -80px;
    transition: all 0.3s linear;
  }
  section.recruitContents .overview h2 {
    font-size: 3rem;
  }
  section.recruitContents .overview h2 span {
    font-size: 1.6rem;
  }
  section.recruitContents .overview p.overviewCatch {
    font-size: 3rem;
  }
  section.recruitContents .overview p.overviewTxt {
    max-width: 800px;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 480px) {
  section.recruitContents .headImg {
    position: relative;
  }
  section.recruitContents .headImg img {
    height: 250px;
  }
  section.recruitContents .overviewWrap {
    margin-bottom: 30px;
  }
  section.recruitContents .overview {
    position: relative;
    width: 100%;
    max-width: auto;
    margin: 0 auto;
    padding: 20px 0;
  }
  section.recruitContents .overview h2 {
    font-size: 2.6rem;
  }
  section.recruitContents .overview h2 span {
    font-size: 1.5rem;
  }
  section.recruitContents .overview p.overviewCatch {
    font-size: 2.6rem;
  }
  section.recruitContents .overview p.overviewTxt {
    max-width: auto;
    font-size: 1.5rem;
  }
}
.recruitNavi {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 120px;
  border: 5px solid #ebebeb;
}
.recruitNavi ul {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  box-sizing: border-box;
}
.recruitNavi li {
  width: 25%;
  border-right: 2px solid #ebebeb;
}
.recruitNavi li a {
  position: relative;
  display: block;
  padding: 20px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #007235;
  text-align: center;
}
.recruitNavi li a::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  width: 24px; /*画像の幅*/
  height: 24px; /*画像の高さ*/
  background-image: url(../img/recruit/i_arrow.png);
  background-size: contain;
  vertical-align: middle;
  margin-right: 8px;
  margin-top: -2px;
}
.recruitNavi li a:hover {
  color: #349f2d;
  transition: all 0.2s linear;
}
.recruitNavi li a:hover::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  width: 24px; /*画像の幅*/
  height: 24px; /*画像の高さ*/
  background-image: url(../img/recruit/i_arrow_on.png);
  background-size: contain;
  vertical-align: middle;
  margin-right: 8px;
  margin-top: -2px;
  transition: all 0.2s linear;
}
.recruitNavi li:last-child {
  border-right: none;
}

@media only screen and (max-width: 979px) {
  .recruitNavi {
    margin-bottom: 90px;
  }
  .recruitNavi ul {
    position: relative;
  }
  .recruitNavi li {
    width: 50%;
    border-right: 2px solid #ebebeb;
    border-bottom: 2px solid #ebebeb;
  }
  .recruitNavi li a {
    padding: 20px;
    font-size: 2rem;
    text-align: left;
  }
  .recruitNavi li:nth-child(3),
  .recruitNavi li:nth-child(4) {
    border-bottom: none;
  }
}
@media only screen and (max-width: 767px) {
  .recruitNavi {
    margin-bottom: 70px;
  }
  .recruitNavi ul {
    position: relative;
  }
  .recruitNavi li {
    width: 50%;
    border-right: 2px solid #ebebeb;
    border-bottom: 2px solid #ebebeb;
  }
  .recruitNavi li a {
    padding: 20px;
    font-size: 1.8rem;
    text-align: left;
  }
}
@media only screen and (max-width: 480px) {
  .recruitNavi {
    margin-bottom: 70px;
  }
  .recruitNavi ul {
    position: relative;
  }
  .recruitNavi li {
    width: 50%;
    border-right: 2px solid #ebebeb;
    border-bottom: 2px solid #ebebeb;
  }
  .recruitNavi li a {
    padding: 10px;
    font-size: 1.6rem;
    text-align: left;
  }
  .recruitNavi li a::before {
    content: ""; /*何も入れない*/
    display: inline-block;
    width: 18px; /*画像の幅*/
    height: 18px; /*画像の高さ*/
    background-image: url(../img/recruit/i_arrow.png);
  }
  .recruitNavi li a:hover {
    color: #349f2d;
    transition: all 0.2s linear;
  }
  .recruitNavi li a:hover::before {
    content: ""; /*何も入れない*/
    display: inline-block;
    width: 18px; /*画像の幅*/
    height: 18px; /*画像の高さ*/
    background-image: url(../img/recruit/i_arrow_on.png);
  }
  .recruitNavi li:nth-child(3),
  .recruitNavi li:nth-child(4) {
    border-bottom: none;
  }
  .recruitNavi li:nth-child(2),
  .recruitNavi li:nth-child(4) {
    border-right: none;
  }
}
.aboutCompany {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 90px;
  padding: 0 20px;
  gap: 0 50px;
  box-sizing: border-box;
}
.aboutCompany .aboutInfo {
  width: calc(50% - 25px);
  box-sizing: border-box;
}
.aboutCompany .aboutImg {
  width: calc(50% - 25px);
  box-sizing: border-box;
}

@media only screen and (max-width: 979px) {
  .aboutCompany {
    padding: 0;
    margin-bottom: 70px;
  }
  .aboutCompany .aboutInfo {
    width: 100%;
    box-sizing: border-box;
    order: 2;
  }
  .aboutCompany .aboutImg {
    width: 100%;
    box-sizing: border-box;
    order: 1;
    margin-bottom: 20px;
  }
}
.aboutCompany .aboutInfo h3 {
  font-size: 2.4rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.025rem;
  margin-bottom: 40px;
}
.aboutCompany .aboutInfo p {
  font-size: 1.7rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.025rem;
}
.aboutCompany .aboutImg {
  position: relative;
}
.aboutCompany .aboutImg figure {
  position: relative;
  display: block;
  width: 100%;
  z-index: 0;
}
.aboutCompany .aboutImg figure img {
  display: block;
  width: 100%;
}
.aboutCompany .aboutImg .captionTxt {
  display: block;
  margin-top: 15px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.025rem;
  color: #007235;
}
.aboutCompany .bottomChip {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  z-index: 1;
}
.aboutCompany .topChip {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 1;
}
.aboutCompany .bottomChip,
.aboutCompany .topChip {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.aboutCompany .bottomChip img,
.aboutCompany .topChip img {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

@media only screen and (max-width: 979px) {
  .aboutCompany .aboutInfo h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .aboutCompany .aboutInfo p {
    font-size: 1.6rem;
  }
  .aboutCompany .bottomChip {
    width: 40px;
    height: 40px;
  }
  .aboutCompany .topChip {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .aboutCompany {
    margin-bottom: 50px;
  }
  .aboutCompany .aboutInfo h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .aboutCompany .aboutInfo p {
    font-size: 1.6rem;
  }
  .aboutCompany .aboutImg {
    position: relative;
  }
  .aboutCompany .aboutImg .captionTxt {
    text-align: left;
    font-size: 1.6rem;
  }
  .aboutCompany .bottomChip {
    width: 40px;
    height: 40px;
  }
  .aboutCompany .topChip {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .aboutCompany {
    margin-bottom: 40px;
  }
  .aboutCompany .aboutInfo h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .aboutCompany .aboutInfo p {
    font-size: 1.5rem;
  }
  .aboutCompany .bottomChip {
    width: 36px;
    height: 36px;
  }
  .aboutCompany .topChip {
    width: 36px;
    height: 36px;
  }
}
.commonHeadline {
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
  margin-bottom: 60px;
  box-sizing: border-box;
}
.commonHeadline h3 {
  display: block;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  text-align: center;
}

@media only screen and (max-width: 979px) {
  .commonHeadline {
    padding: 0;
    margin-bottom: 50px;
  }
  .commonHeadline h3 {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .commonHeadline {
    margin-bottom: 40px;
  }
  .commonHeadline h3 {
    font-size: 2rem;
    text-align: left;
  }
}
@media only screen and (max-width: 480px) {
  .commonHeadline h3 {
    font-size: 1.8rem;
  }
}
.featurePoint {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 90px;
  padding: 0 20px;
  gap: 0 30px;
  box-sizing: border-box;
}
.featurePoint .featureInfo {
  width: calc(25% - 30px);
  box-sizing: border-box;
  border: 1px solid #ebebeb;
}
.featurePoint .featureInfo {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.featurePoint .featureInfo figure {
  display: block;
  padding: 30px 0 20px;
}
.featurePoint .featureInfo figure img {
  display: block;
  width: 100%;
  max-width: 100px;
  margin: 0 auto;
}
.featurePoint .featureInfo .title {
  display: block;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 30px;
  box-sizing: border-box;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  color: #007235;
}
.featurePoint .featureInfo .explain {
  display: block;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: left;
  font-size: 1.7rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
}
.featurePoint .featureInfo .explain span.small {
  font-size: 1.4rem;
}

@media only screen and (max-width: 1279px) {
  .featurePoint .featureInfo {
    width: calc(50% - 15px);
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 979px) {
  .featurePoint {
    padding: 0;
  }
  .featurePoint .featureInfo {
    width: calc(50% - 15px);
  }
  .featurePoint .featureInfo .title {
    font-size: 2.2rem;
  }
  .featurePoint .featureInfo .explain {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .featurePoint .featureInfo {
    width: 100%;
    margin-bottom: 30px;
  }
  .featurePoint .featureInfo .title {
    font-size: 2rem;
  }
  .featurePoint .featureInfo .explain {
    font-size: 1.5rem;
  }
}
.recruitList {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 90px;
  padding: 0 20px;
  gap: 0 30px;
  box-sizing: border-box;
}
.recruitList .overviewInfo {
  width: calc(33.3333333333% - 20px);
  box-sizing: border-box;
  border: 3px solid #ebebeb;
}
.recruitList .overviewInfo {
  position: relative;
  margin-bottom: 30px;
}
.recruitList .overviewInfo figure {
  display: block;
}
.recruitList .overviewInfo figure img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.recruitList .overviewInfo .status {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 14px;
  background: #009143;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.recruitList .overviewInfo .inner {
  position: relative;
  padding: 20px;
  padding-bottom: 30px;
  box-sizing: border-box;
}
.recruitList .overviewInfo .inner .tags {
  display: inline-block;
  margin: 0 0 10px;
  margin-top: -30px;
  padding: 5px 8px;
  background: #fff;
  border: 1px solid #009143;
  font-size: 1.5rem;
  font-weight: 600;
  color: #009143;
  border-radius: 40px;
}
.recruitList .overviewInfo .inner h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}
.recruitList .overviewInfo .inner ul {
  position: relative;
}
.recruitList .overviewInfo .inner ul li {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
.recruitList .overviewInfo .inner ul li i {
  color: #009143;
  margin-right: 0.4em;
}

@media only screen and (max-width: 979px) {
  .recruitList {
    padding: 0;
  }
  .recruitList .overviewInfo {
    width: calc(50% - 15px);
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitList .overviewInfo {
    width: 100%;
    margin-bottom: 40px;
  }
  .recruitList .overviewInfo .status {
    padding: 7px 10px;
    font-size: 1.6rem;
  }
  .recruitList .overviewInfo .inner {
    position: relative;
    padding: 15px;
    padding-bottom: 20px;
    box-sizing: border-box;
  }
  .recruitList .overviewInfo .inner h4 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .recruitList .overviewInfo .inner ul {
    position: relative;
  }
  .recruitList .overviewInfo .inner ul li {
    font-size: 1.6rem;
  }
}
.guidelineWrap {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 90px;
  gap: 0 50px;
  box-sizing: border-box;
}
.guidelineWrap .aboutInfo {
  width: calc(60% - 25px);
  box-sizing: border-box;
}
.guidelineWrap .aboutImg {
  width: calc(40% - 25px);
  box-sizing: border-box;
}

@media only screen and (max-width: 979px) {
  .guidelineWrap {
    margin-bottom: 70px;
  }
  .guidelineWrap .aboutInfo {
    width: 100%;
    box-sizing: border-box;
    order: 2;
  }
  .guidelineWrap .aboutImg {
    width: 100%;
    box-sizing: border-box;
    order: 1;
    margin-bottom: 20px;
  }
}
.guidelineWrap table.tblGuideline {
  width: 100%;
  border: 1px solid #e8e8e8;
}
.guidelineWrap table.tblGuideline tr {
  border-bottom: 1px solid #e8e8e8;
}
.guidelineWrap table.tblGuideline th, .guidelineWrap table.tblGuideline td {
  padding: 16px 20px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  box-sizing: border-box;
}
.guidelineWrap table.tblGuideline th {
  width: 30%;
  background: #f7f7f7;
  text-align: center;
  font-weight: 600;
  vertical-align: middle;
}
.guidelineWrap table.tblGuideline td {
  width: 70%;
  box-sizing: border-box;
}
.guidelineWrap table.tblGuideline td .iTxt {
  font-weight: 600;
}
.guidelineWrap table.tblGuideline td .iTxt span {
  display: inline-block;
  margin-right: 0.8em;
}
.guidelineWrap table.tblGuideline td .iTxt span i {
  color: #009143;
  margin-right: 0.3em;
}
.guidelineWrap table.tblGuideline td .iTxt span:last-child {
  margin-right: 0;
}
.guidelineWrap .aboutImg figure {
  position: relative;
  display: block;
}
.guidelineWrap .aboutImg figure img {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .guidelineWrap table.tblGuideline th, .guidelineWrap table.tblGuideline td {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .guidelineWrap table.tblGuideline th, .guidelineWrap table.tblGuideline td {
    padding: 15px 15px 20px;
    display: block;
    width: 100%;
  }
}
@media only screen and (min-width: 980px) {
  .spOuboBtn {
    display: none;
    visibility: hidden;
  }
  .pcOuboBtn {
    display: block;
    visibility: visible;
  }
}
@media only screen and (max-width: 979px) {
  .spOuboBtn {
    display: block;
    visibility: visible;
  }
  .pcOuboBtn {
    display: none;
    visibility: hidden;
  }
}
section.companyContents {
  position: relative;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

.ceoMessage {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 90px;
  padding: 0;
  gap: 0 50px;
  box-sizing: border-box;
}
.ceoMessage .messageInfo {
  width: calc(60% - 25px);
  box-sizing: border-box;
}
.ceoMessage .ceoImg {
  width: calc(40% - 25px);
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .ceoMessage .messageInfo {
    width: 100%;
    box-sizing: border-box;
    order: 2;
  }
  .ceoMessage .ceoImg {
    width: 100%;
    box-sizing: border-box;
    order: 1;
    margin-bottom: 30px;
  }
}
.ceoMessage .messageInfo h3 {
  display: block;
  position: relative;
  font-size: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #007235;
  letter-spacing: -0.025em;
  padding: 0;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.ceoMessage .messageInfo h3 span {
  display: block;
  font-size: 1.7rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0;
  color: #007235;
}
.ceoMessage .messageInfo p {
  font-size: 1.7rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.025rem;
}
.ceoMessage .messageInfo p.ceoName {
  margin-top: 20px;
  font-size: 1.7rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.025rem;
}
.ceoMessage .messageInfo p.ceoName span {
  font-size: 2rem;
  font-weight: 600;
  margin-left: 1rem;
}
.ceoMessage .ceoImg {
  position: relative;
}
.ceoMessage .ceoImg figure {
  position: relative;
  display: block;
  width: 100%;
  z-index: 0;
}
.ceoMessage .ceoImg figure img {
  display: block;
  width: 100%;
}
.ceoMessage .bottomChip {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  z-index: 1;
}
.ceoMessage .topChip {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 1;
}
.ceoMessage .bottomChip,
.ceoMessage .topChip {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ceoMessage .bottomChip img,
.ceoMessage .topChip img {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

@media only screen and (max-width: 979px) {
  .ceoMessage .messageInfo h3 {
    font-size: 3.5rem;
  }
  .ceoMessage .messageInfo h3 span {
    font-size: 1.6rem;
  }
  .ceoMessage .messageInfo p {
    font-size: 1.6rem;
  }
  .ceoMessage .messageInfo p.ceoName {
    margin-top: 20px;
    font-size: 1.6rem;
  }
  .ceoMessage .messageInfo p.ceoName span {
    font-size: 1.8rem;
    margin-left: 1rem;
  }
  .ceoMessage .bottomChip {
    width: 40px;
    height: 40px;
  }
  .ceoMessage .topChip {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .ceoMessage .messageInfo h3 {
    font-size: 3rem;
  }
  .ceoMessage .messageInfo h3 span {
    font-size: 1.5rem;
  }
  .ceoMessage .messageInfo p {
    font-size: 1.5rem;
  }
  .ceoMessage .messageInfo p.ceoName {
    margin-top: 20px;
    font-size: 1.5rem;
  }
  .ceoMessage .messageInfo p.ceoName span {
    font-size: 1.7rem;
    margin-left: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .ceoMessage .messageInfo h3 {
    font-size: 2.6rem;
  }
  .ceoMessage .bottomChip {
    width: 36px;
    height: 36px;
  }
  .ceoMessage .topChip {
    width: 36px;
    height: 36px;
  }
}
.historyWrap {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 90px;
  gap: 0 50px;
  box-sizing: border-box;
  transition: all 0.3s linear;
}
.historyWrap .historyInfo {
  width: calc(50% - 25px);
  box-sizing: border-box;
}
.historyWrap .historyImg {
  width: calc(50% - 25px);
  box-sizing: border-box;
}

@media only screen and (max-width: 1440px) {
  .historyWrap {
    padding: 0 20px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 1279px) {
  .historyWrap {
    padding: 0 20px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 979px) {
  .historyWrap {
    padding: 0;
    box-sizing: border-box;
  }
  .historyWrap .historyInfo {
    width: 100%;
    box-sizing: border-box;
    order: 2;
  }
  .historyWrap .historyImg {
    width: 100%;
    box-sizing: border-box;
    order: 1;
    margin-bottom: 30px;
  }
}
.historyWrap table.tblHistory {
  width: 100%;
}
.historyWrap table.tblHistory tr {
  border-bottom: 1px solid #e8e8e8;
}
.historyWrap table.tblHistory tr:last-child {
  border-bottom: none;
}
.historyWrap table.tblHistory th {
  width: 35%;
  padding: 20px 10px 20px 30px;
}
.historyWrap table.tblHistory td {
  width: 65%;
  padding: 20px 10px;
}
.historyWrap table.tblHistory th, .historyWrap table.tblHistory td {
  vertical-align: middle;
  box-sizing: border-box;
}
.historyWrap table.tblHistory th {
  position: relative;
  font-size: 3.4rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #007235;
  border-left: 2px solid #007235;
}
.historyWrap table.tblHistory th span {
  display: block;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-top: 5px;
  color: #111;
}
.historyWrap table.tblHistory th::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  background: #007235;
  border-radius: 50%;
}
.historyWrap table.tblHistory td {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.historyWrap .historyImg figure {
  position: relative;
  display: block;
}
.historyWrap .historyImg figure img {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 979px) {
  .historyWrap table.tblHistory {
    width: 100%;
  }
  .historyWrap table.tblHistory th {
    width: 35%;
    padding: 20px 10px 20px 20px;
  }
  .historyWrap table.tblHistory td {
    width: 65%;
    padding: 20px 10px;
  }
  .historyWrap table.tblHistory th {
    font-size: 2.8rem;
  }
  .historyWrap table.tblHistory th span {
    font-size: 1.5rem;
  }
  .historyWrap table.tblHistory td {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .historyWrap table.tblHistory {
    width: 100%;
  }
  .historyWrap table.tblHistory th {
    width: 35%;
    padding: 20px 10px 20px 20px;
  }
  .historyWrap table.tblHistory td {
    width: 65%;
    padding: 20px 10px;
  }
  .historyWrap table.tblHistory th {
    font-size: 2.8rem;
  }
  .historyWrap table.tblHistory th span {
    font-size: 1rem;
  }
  .historyWrap table.tblHistory td {
    font-size: 1.6rem;
  }
}
.profileWrap {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 90px;
  gap: 0 70px;
  box-sizing: border-box;
}
.profileWrap .profileInfo {
  width: calc(75% - 35px);
  box-sizing: border-box;
}
.profileWrap .profileImg {
  width: calc(25% - 35px);
  box-sizing: border-box;
}

@media only screen and (max-width: 1440px) {
  .profileWrap {
    padding: 0 20px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 1279px) {
  .profileWrap {
    padding: 0 20px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 979px) {
  .profileWrap {
    padding: 0;
    box-sizing: border-box;
  }
  .profileWrap .profileInfo {
    width: 100%;
    box-sizing: border-box;
    order: 2;
  }
  .profileWrap .profileImg {
    width: 100%;
    box-sizing: border-box;
    order: 1;
    margin-bottom: 30px;
  }
}
.profileWrap table.tblProfile {
  width: 100%;
  border: 1px solid #e8e8e8;
}
.profileWrap table.tblProfile tr {
  border-bottom: 1px solid #e8e8e8;
}
.profileWrap table.tblProfile th, .profileWrap table.tblProfile td {
  padding: 16px 20px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  box-sizing: border-box;
}
.profileWrap table.tblProfile th {
  width: 30%;
  background: #f7f7f7;
  text-align: center;
  font-weight: 600;
  vertical-align: middle;
}
.profileWrap table.tblProfile th span {
  font-weight: 400;
}
.profileWrap table.tblProfile td {
  width: 70%;
  box-sizing: border-box;
}
.profileWrap table.tblProfile td span {
  font-weight: 600;
}
.profileWrap table.tblProfile td .iTxt {
  font-weight: 600;
}
.profileWrap table.tblProfile td .iTxt span {
  display: inline-block;
  margin-right: 0.8em;
}
.profileWrap table.tblProfile td .iTxt span i {
  color: #009143;
  margin-right: 0.3em;
}
.profileWrap table.tblProfile td .iTxt span:last-child {
  margin-right: 0;
}
.profileWrap .profileImg figure {
  position: relative;
  display: block;
}
.profileWrap .profileImg figure img {
  display: block;
  width: 100%;
  min-height: 850px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 979px) {
  .profileWrap .profileImg figure img {
    min-height: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .profileWrap table.tblProfile th, .profileWrap table.tblProfile td {
    padding: 10px 15px;
    font-size: 1.5rem;
  }
  .profileWrap .profileImg figure img {
    min-height: 250px;
  }
}
@media only screen and (max-width: 480px) {
  .profileWrap table.tblProfile th, .profileWrap table.tblProfile td {
    padding: 10px 15px;
    font-size: 1.5rem;
  }
  .profileWrap table.tblProfile th {
    display: block;
    width: 100%;
  }
  .profileWrap table.tblProfile td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 15px;
  }
  .profileWrap .profileImg figure img {
    min-height: 150px;
  }
}
.accessWrap {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 90px;
  gap: 0 60px;
  box-sizing: border-box;
}
.accessWrap .accessHeadoffice {
  width: calc(66.666% - 30px);
  box-sizing: border-box;
}
.accessWrap .accessImg {
  width: calc(33.333% - 30px);
  box-sizing: border-box;
}
.accessWrap .accessMaps {
  width: calc(33.333% - 40px);
  box-sizing: border-box;
}

@media only screen and (max-width: 1440px) {
  .accessWrap {
    padding: 0 20px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 1279px) {
  .accessWrap {
    padding: 0 20px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 979px) {
  .accessWrap {
    padding: 0;
    margin-bottom: 50px;
    box-sizing: border-box;
  }
  .accessWrap .accessHeadoffice {
    width: 100%;
    box-sizing: border-box;
    order: 2;
  }
  .accessWrap .accessImg {
    width: 100%;
    box-sizing: border-box;
    order: 1;
    margin-bottom: 30px;
  }
  .accessWrap .accessMaps {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
}
.accessWrap .accessImg h4 {
  font-size: 2.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 10px;
}
.accessWrap .accessImg p {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.7;
}
.accessWrap .accessImg figure {
  position: relative;
  display: block;
}
.accessWrap .accessImg figure img {
  display: block;
  width: 100%;
}
.accessWrap .accessMaps {
  padding-top: 15px;
  border-top: 3px solid #007235;
}
.accessWrap .accessMaps h4 {
  font-size: 2.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  padding: 10px 0;
}
.accessWrap .accessMaps p {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 10px;
}

@media only screen and (max-width: 979px) {
  .accessWrap .accessImg h4 {
    font-size: 2.2rem;
  }
  .accessWrap .accessImg p {
    font-size: 1.6rem;
  }
  .accessWrap .accessMaps h4 {
    font-size: 2.2rem;
  }
  .accessWrap .accessMaps p {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .accessWrap .accessImg h4 {
    font-size: 2rem;
  }
  .accessWrap .accessImg p {
    font-size: 1.5rem;
  }
  .accessWrap .accessMaps h4 {
    font-size: 2rem;
  }
  .accessWrap .accessMaps p {
    font-size: 1.5rem;
  }
}
.googleMap1 {
  text-align: center;
}
.googleMap1 iframe {
  width: 100%;
  max-width: 1400px;
  min-height: 450px;
  margin: 0 auto;
}

.googleMap2 {
  text-align: center;
  margin-top: 20px;
}
.googleMap2 iframe {
  width: 100%;
  max-width: 1400px;
  min-height: 350px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .googleMap1 {
    text-align: center;
    padding: 0 0 10px 0;
  }
  .googleMap1 iframe {
    width: 100%;
    max-width: 1200px;
    min-height: 400px;
    margin: 0 auto;
  }
  .googleMap2 {
    text-align: center;
    padding: 0 0 10px 0;
  }
  .googleMap2 iframe {
    width: 100%;
    max-width: 1200px;
    min-height: 400px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .googleMap1 {
    text-align: center;
    padding: 0 0 10px 0;
  }
  .googleMap1 iframe {
    width: 100%;
    max-width: 1200px;
    min-height: 300px;
    max-height: 300px;
    margin: 0 auto;
  }
  .googleMap2 {
    text-align: center;
    padding: 0 0 10px 0;
  }
  .googleMap2 iframe {
    width: 100%;
    max-width: 1200px;
    min-height: 300px;
    max-height: 300px;
    margin: 0 auto;
  }
}
.forOwnersWrap {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 90px;
  box-sizing: border-box;
}
.forOwnersWrap .aboutInfo {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media only screen and (max-width: 979px) {
  .forOwnersWrap {
    margin-bottom: 70px;
  }
  .forOwnersWrap .aboutInfo {
    width: 100%;
    box-sizing: border-box;
    order: 2;
  }
}
.forOwnersWrap table.tblOwnersInfo {
  width: 100%;
  border: 1px solid #e8e8e8;
}
.forOwnersWrap table.tblOwnersInfo tr {
  border-bottom: 1px solid #e8e8e8;
}
.forOwnersWrap table.tblOwnersInfo th, .forOwnersWrap table.tblOwnersInfo td {
  padding: 16px 20px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  box-sizing: border-box;
}
.forOwnersWrap table.tblOwnersInfo th {
  width: 30%;
  background: #f7f7f7;
  text-align: center;
  font-weight: 600;
  vertical-align: middle;
}
.forOwnersWrap table.tblOwnersInfo td {
  width: 70%;
  box-sizing: border-box;
}
.forOwnersWrap table.tblOwnersInfo td .sh-title {
  font-weight: 600;
  color: #007235;
  margin-bottom: 0.5em;
}
.forOwnersWrap table.tblOwnersInfo td .iTxt {
  font-weight: 600;
}
.forOwnersWrap table.tblOwnersInfo td .iTxt span {
  display: inline-block;
  margin-right: 0.8em;
}
.forOwnersWrap table.tblOwnersInfo td .iTxt span i {
  color: #009143;
  margin-right: 0.3em;
}
.forOwnersWrap table.tblOwnersInfo td .iTxt span:last-child {
  margin-right: 0;
}
.forOwnersWrap table.tblOwnersInfo .btn-mg-owners {
  margin-top: 20px;
  margin-bottom: 20px;
}
.forOwnersWrap .aboutImg figure {
  position: relative;
  display: block;
}
.forOwnersWrap .aboutImg figure img {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .forOwnersWrap table.tblOwnersInfo th, .forOwnersWrap table.tblOwnersInfo td {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .forOwnersWrap table.tblOwnersInfo th, .forOwnersWrap table.tblOwnersInfo td {
    padding: 15px 15px 20px;
    display: block;
    width: 100%;
  }
}
.ownersFlow {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.ownersFlowDetail h3 {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.025em;
  margin-bottom: 20px;
}
.ownersFlowDetail h3 span {
  position: relative;
  display: inline-block;
  background: #fff;
  color: #007235;
  padding-right: 10px;
  text-shadow: 0 0 5px #fff;
  z-index: 1;
}
.ownersFlowDetail h3::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: #007235;
  z-index: 0;
}
.ownersFlowDetail p.txt {
  font-size: 1.7rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
}
.ownersFlowDetail p.num {
  display: block;
  position: relative;
  font-size: 8rem;
  font-weight: 200;
  font-family: "Barlow", sans-serif;
  line-height: 1;
  font-style: italic;
  padding: 0;
  color: #cfdbd5;
}
.ownersFlowDetail p.num span {
  position: relative;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.8rem;
}

@media only screen and (max-width: 979px) {
  .ownersFlowDetail h3 {
    font-size: 2.6rem;
  }
  .ownersFlowDetail p.txt {
    font-size: 1.7rem;
  }
  .ownersFlowDetail p.num {
    font-size: 6rem;
  }
  .ownersFlowDetail p.num span {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .ownersFlowDetail h3 {
    font-size: 2.4rem;
  }
}
.ownerAskWrap {
  width: 100%;
  max-width: 900px;
  border: 6px solid #f0f0f0;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px 0 20px;
  z-index: 1;
}

.ownerAskInner {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 auto;
  justify-content: space-between;
  box-sizing: border-box;
}
.ownerAskInner .boxTel {
  position: relative;
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
  border-right: 1px solid #f0f0f0;
  text-align: center;
}
.ownerAskInner .boxMail {
  position: relative;
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

@media only screen and (max-width: 979px) {
  .ownerAskWrap {
    padding: 20px 0 20px;
  }
  .ownerAskInner .boxTel {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    box-sizing: border-box;
  }
  .ownerAskInner .boxMail {
    width: 100%;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 767px) {
  .ownerAskWrap {
    padding: 10px 0 10px;
  }
  .ownerAskInner .boxTel {
    width: 100%;
    box-sizing: border-box;
  }
  .ownerAskInner .boxMail {
    width: 100%;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 480px) {
  .ownerAskWrap {
    padding: 10px 0 10px;
  }
  .ownerAskInner {
    padding-bottom: 20px;
  }
}
.ownerAskInner .boxTel {
  position: relative;
}
.ownerAskInner .boxTel .boxTelInner {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}
.ownerAskInner .boxTel .boxTelInner {
  text-align: center;
}
.ownerAskInner .boxTel .boxTelInner h4 {
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #007235;
}
.ownerAskInner .boxTel .telNumber {
  display: block;
  padding: 0;
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: #222;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  margin-top: 10px;
}
.ownerAskInner .boxTel .telNumber span {
  font-size: 2.8rem;
  letter-spacing: 0.025em;
  color: #222;
}
.ownerAskInner .boxTel .telTxt {
  padding: 0;
  margin: 0;
  line-height: 1.5;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #222;
}
.ownerAskInner .boxMail {
  position: relative;
}
.ownerAskInner .boxMail .boxMailInner {
  text-align: center;
}
.ownerAskInner .boxMail .boxMailInner h4 {
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #007235;
}

@media only screen and (max-width: 979px) {
  .ownerAskInner .boxTel .boxTelInner h4 {
    font-size: 2rem;
  }
  .ownerAskInner .boxTel .telNumber {
    font-size: 4rem;
    margin-bottom: 5px;
  }
  .ownerAskInner .boxTel .telNumber span {
    font-size: 2.5rem;
  }
  .ownerAskInner .boxTel .telTxt {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .ownerAskInner .boxTel .boxTelInner h4 {
    font-size: 2rem;
  }
  .ownerAskInner .boxTel .telNumber {
    font-size: 3.8rem;
    margin-bottom: 5px;
  }
  .ownerAskInner .boxTel .telNumber span {
    font-size: 2.2rem;
  }
  .ownerAskInner .boxTel .telTxt {
    font-size: 1.6rem;
  }
}
.ownersNotice {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 30px;
  border: 1px solid #bed8bd;
  background: #f1faf0;
  padding: 20px;
  font-size: 1.5rem;
  color: #007235;
}
.ownersNotice p.noticeTitle {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
  margin-bottom: 10px;
}

.privacyWrap {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}
.privacyWrap .privacyInner {
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
}
.privacyWrap .privacyInner h4 {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  margin: 0;
  margin-bottom: 10px;
}
.privacyWrap .privacyInner p {
  display: block;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.privacyWrap .privacyInner:last-child {
  border-bottom: none;
}

@media screen and (max-width: 1400px) {
  .privacyWrap {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .privacyWrap .privacyInner h4 {
    font-size: 1.8rem;
  }
  .privacyWrap .privacyInner p {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */