@charset "utf-8";

html,
body {
  height: 100%;
}

/* フォントサイズの基準を16pxに */
html {
  font-size: 10px;
  font-size: 62.5%;
}

/* body */
body {
  width: 100%;
  margin: auto;
  color: #46413c;
  background-color: #fff;
  padding: 0;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  -webkit-text-size-adjust: none;
  line-height: 1.5;
  font-size: 1.8rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

/*clearfix*/
.cf:before,
.cf:after {
  content: "";
  display: block;
  overflow: hidden;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

/*style*/
p {
  font-size: 1.8rem;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8;
  margin: 0;
}

a {
  text-decoration: underline;
  color: #282828;
  text-decoration: none;
  transition: color 0.3s ease 0s;
}

a:hover {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease 0s;
}

h2 {
  line-height: 1;
  font-weight: normal;
  letter-spacing: 4;
}

main {
  overflow: hidden;
}

.widthfix {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

img {
  width: 100%;
  vertical-align: middle;
}



/* ul */
ul,
ol {
  padding: 0;
}

ol li,
ul li {
  padding: 0;
  list-style: none;
}

/* テーブルに関して */
table {
  font-size: 1.6rem;
  text-align: center;
}

/* thの下線を1pxに */
.table-bordered thead td,
.table-bordered thead th {
  border-bottom-width: 1px;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid #dee2e6;
}


/* 共通 */
.black__btn {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 40px;
  border: 1px solid #282828;
  color: #282828;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  line-height: 40px;
  font-size: 1.4rem;
  letter-spacing: 2;
}

.black__btn:hover {
  color: #fff;
}

.black__btn::after {
  position: absolute;
  content: "→";
  right: 10px;
}

.black__btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #282828;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}

.black__btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}




.white__btn {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 40px;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  line-height: 40px;
  font-size: 1.4rem;
  letter-spacing: 2;
  z-index: 0;
}

.white__btn:hover {
  color: #282828;
}

.white__btn::after {
  position: absolute;
  content: "→";
  right: 10px;
}

.white__btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #fff;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}

.white__btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}






/* メインビジュアル */
#main__visual {
  width: 100vw;
  height: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}

#main__visual::before {
  content: '';
  background-color: rgba(0, 0, 0, .4);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.main__visual--content {
  width: 100vw;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  color: #fff;
}

.main__visual--content p {
  line-height: 1;
}

.main__visual--content .content__logo {
  width: 100px;
  margin: 0 auto;
}

.main__visual--content .content__text {
  font-weight: bold;
  font-size: 4.8rem;
  margin-top: 40px;
  letter-spacing: -6;
  text-align: center;

}

.arrow__wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: auto;
}

.arrow__wrap--inner p {
  font-size: 1.4rem;
  color: #fff;
}

.arrow {
  width: 1px;
  height: 100px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.arrow::before {
  content: '';
  width: 1px;
  height: 100px;
  margin: 50px auto 0;
  background-color: #fff;
  position: absolute;
  top: -150px;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s ease 0s infinite normal;
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}

/* 背景スライド用 */
.swiper-container {
  z-index: -1 !important;
}




/* 下層ページメインビジュアル */
#mainVisual__lower {
  width: 100%;
  height: 540px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#mainVisual__lower::before {
  content: '';
  background-color: rgba(0, 0, 0, .6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.mainVisual__lower--content {
  display: flex;
  z-index: 1;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
}

.mainVisual__lower--content h1 {
  font-size: 4.0rem;
  position: relative;
  font-weight: normal;
  letter-spacing: 0.2em;
  line-height: 1;
}

.mainVisual__lower--content h1:before {
  font-size: 1.6rem;
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  letter-spacing: 4;
}

.mainVisual__lower--content h1:after {
  content: '';
  position: absolute;
  bottom: -30px;
  display: inline-block;
  width: 100px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #c9a85b;
}





/* ヘッダー */
header {
  width: 100%;
  height: 120px;
  padding: 0 20px;
  display: flex;
  z-index: 2;
  justify-content: space-between;
  position: absolute;
  top: 0;
}


/* ロゴ */
h1 {
  display: flex;
  align-items: center;
  z-index: 1;
}

h1 a {
  display: block;
  width: 200px;
}

/* ナビゲーション */
.gnav {
  display: flex;
  align-items: center;
}

.gnav ul {
  height: 80px;
  margin: -4 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gnav ul li {
  margin: 0 20px;
}

.gnav ul li a.button {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.gnav ul li a.button::after {
  will-change: transform;
  /* ←追記分 */
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1) rotate(0.0001deg);
  transform-origin: center bottom;
  transition: transform .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.gnav ul li a.button:hover::after {
  transform: scale(1, 1) rotate(0.0001deg);
  will-change: transform;
  /* ←追記分 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.gnav ul li a.color__button {
  position: relative;
  display: block;
  justify-content: center;
  width: 170px;
  height: 50px;
  border-radius: 25px;
  line-height: 50px;
  color: #c9a85b;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  background: #fff;
  overflow: hidden;
  z-index: 99;
}

.gnav ul li a.color__button span {
  margin-left: 5px;
}


.gnav ul li a.color__button:hover {
  color: #fff;
}

.gnav ul li a.color__button::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #c9a85b;
  transform-origin: right top;
  transform: scale(0, 1) rotate(0.0001deg);
  transition: transform .3s;
}

.gnav ul li a.color__button:hover::before {
  transform-origin: left top;
  transform: scale(1, 1) rotate(0.0001deg);
}



/* ヘッダー固定 */
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  margin-top: 0 !important;
}

/*.clone-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  transition: .3s;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.8);
}
.is-show {
  transform: translateY(0);
}*/



/* 新着情報 */
#news {
  width: 100%;
  padding: 120px 0;
}

#news .news__wrap {
  width: 800px;
  margin: 0 auto;
}

#news .news__wrap h2 {
  font-size: 3.2rem;
  position: relative;
  display: inline-block;
  margin-bottom: 80px;
  text-align: center;
  width: 100%;
}

#news .news__wrap h2:before {
  content: '';
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 60px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #c9a85b;
}

#news .news__wrap ul {
  border-top: 1px solid #e5e5e5;
  margin-bottom: 60px;
}

#news .news__wrap ul li {
  display: flex;
  padding: 30px 0;
  font-size: 1.4rem;
  border-bottom: 1px solid #e5e5e5;
}

#news .news__wrap ul li time {
  font-family: 'Noto Serif JP', serif;
  line-height: 1.5;
  padding-left: 20px;
  margin-right: 40px;
}

#news .news__wrap ul li a {
  line-height: 1.5;
  position: relative;
}

#news .news__wrap ul li a:hover {
  color: #282828
}

#news .news__wrap ul li a::after {
  position: absolute;
  bottom: -5;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #282828;
  transform: scale(0, 1);
  transform-origin: left bottom;
  transition: transform .3s;
}

#news .news__wrap ul li a:hover::after {
  transform: scale(1, 1);
}

#news .news__wrap .news__link {
  text-align: center;
}





/* トップページ各セクション */
.top-contents {
  width: 100vw;
  height: 100vh;
  display: flex;
}

.top-contents:nth-of-type(odd) {
  justify-content: flex-end;
}

.top-contents .title {
  width: 40%;
  min-width: 700px;
  padding-left: 100px;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}

.top-contents h2 {
  color: #fff;
  font-size: 5.0rem;
  letter-spacing: 10;
  position: relative;
  display: inline-block;
  margin-bottom: 130px;
  text-align: center;
  width: 100%;
  line-height: 1;
}

.top-contents h2:before {
  font-size: 1.6rem;
  position: absolute;
  bottom: -50;
  letter-spacing: 4;
}

/*#company h2:after,
#services h2:after,
#works h2:after{
  content: '';
  position: absolute;
  bottom: -30px;
  display: inline-block;
  width: 100px;
  height: 1px;
  left: 0;
  background-color: #c9a85b;
}*/

#company {
  background-image: url("../img/company-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#company h2:before {
  content: "会社概要";
}


#mission {
  background-image: url("../img/bg01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
}

#mission h2:before {
  content: "経営理念";
}


#services {
  background-image: url("../img/bg02.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#services h2:before {
  content: "事業内容";
}


#works {
  background-image: url("../img/works-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#works h2:before {
  content: "業務実績";
}


#access {
  background-image: url("../img/access-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#access h2:before {
  content: "アクセス";
}



.caution__text {
  font-size: 1.2rem;
  text-align: right;
  margin-bottom: 60px;
}

.caution__text span {
  color: #c80000;
}

input,
textarea {
  background-color: #e4ded8;
  font-size: 1.4rem;
  letter-spacing: 2;
  width: 100%;
  padding: 20px;
  letter-spacing: 2;
}

textarea {
  height: 200px;
}

input:focus,
textarea:focus {
  outline: none;
}





/* フッター */
#footer .footer__content {
  padding: 80px 0;
}

#footer .footer__content p {
  text-align: center;
  line-height: 1;
  margin-top: 40px;
}

#footer .footer__content .footer__logo {
  width: 200px;
  margin: 0 auto;
}

#footer .footer__content .footer__companyName {
  font-size: 2.4rem;
  margin-top: 80px;
}


#footer small {
  width: 100%;
  display: inline-block;
  padding: 30px 0;
  line-height: 1;
  color: #fff;
  background-color: #282828;
  text-align: center;
}

.footer__address--pc {
  display: block;
}

.footer__contactInfo--pc {
  display: block;
}


.footer__address--sp {
  display: none;
}

.footer__contactInfo--sp {
  display: none;
}

#footer .footer__content .footer__banner {
  width: 100%;
  max-width: 600px;
  margin: 80px auto 0;
}

br.sp {
  display: none;
}


/* オーバーレイメニュー */
.overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.80);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
  z-index: 999;
}

.overlay-close {
  width: 60px;
  margin: 0 auto !important;
}

.open-menu,
.close-menu {
  cursor: pointer;
  transition: transform 0.30s;
}

.open-menu:hover,
.close-menu:hover {
  transform: scale(1.1);
}

.overlay .nav-title {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 8%;
}

.overlay nav {
  position: relative;
  /*top: 50%;
    transform: translateY(-50%);*/
  font-size: 50px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 40px;
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
}

.overlay ul li {
  display: block;
  position: relative;
  opacity: 0;
  margin-bottom: 50px;
}

.overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  overflow: hidden;
  letter-spacing: 10;
}

.overlay.open li {
  animation: fadeInRight .5s ease forwards;
  animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
  animation-delay: .4s;
}

.overlay.open li:nth-of-type(3) {
  animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
  animation-delay: .50s;
}

.overlay.open li:nth-of-type(5) {
  animation-delay: .55s;
}

.overlay.open li:nth-of-type(6) {
  animation-delay: .60s;
}

.overlay.open li:nth-of-type(7) {
  animation-delay: .65s;
}

.overlay.open li:nth-of-type(8) {
  animation-delay: .70s;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}

/*=============================
.open-menu
=============================*/
.open-menu {
  position: relative;
  width: 50px;
  height: 42px;
  cursor: pointer;
}

.open-menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
}

.open-menu {
  display: none;
  transition: all .5s;
  box-sizing: border-box;
}

.open-menu span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}

.open-menu span:nth-of-type(1) {
  top: 0;
}

.open-menu span:nth-of-type(2) {
  top: 18px;
}

.open-menu span:nth-of-type(3) {
  bottom: 0;
}

/* 
.open-menu span:nth-of-type(1) {
  -webkit-animation: btn18-bar01 .5s forwards;
  animation: btn18-bar01 .5s forwards;
}
@-webkit-keyframes btn18-bar01 {
  0% {
    -webkit-transform: translateY(20px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn18-bar01 {
  0% {

    transform: translateY(20px) rotate(-45deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.open-menu span:nth-of-type(2) {
  -webkit-animation: btn18-bar02 .5s forwards;
  animation: btn18-bar02 .5s forwards;
}
@-webkit-keyframes btn18-bar02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes btn18-bar02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.open-menu span:nth-of-type(3) {
  -webkit-animation: btn18-bar03 .5s forwards;
  animation: btn18-bar03 .5s forwards;
}
@-webkit-keyframes btn18-bar03 {
  0% {
    -webkit-transform: translateY(-20px) rotate(45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn18-bar03 {
  0% {
    transform: translateY(-20px) rotate(45deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}*/
.open-menu::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 30px;
  height: 30px;
  margin: -16px 0 0 -16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  transition: all .1s;
  opacity: 0;
}

.open-menu.active::after {
  -webkit-animation: circle .5s;
  animation: circle .5s;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: scale(.1);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(3.5);
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    transform: scale(.1);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

.open-menu.active span:nth-of-type(1) {
  -webkit-animation: active-btn18-bar01 .5s .5s forwards;
  animation: active-btn18-bar01 .5s .5s forwards;
}

@-webkit-keyframes active-btn18-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }

  100% {
    -webkit-transform: translateY(20px) rotate(-45deg);
  }
}

@keyframes active-btn18-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }

  100% {
    transform: translateY(20px) rotate(-45deg);
  }
}

.open-menu.active span:nth-of-type(2) {
  -webkit-animation: active-btn18-bar02 .5s .5s forwards;
  animation: active-btn18-bar02 .5s .5s forwards;
}

@-webkit-keyframes active-btn18-bar02 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes active-btn18-bar02 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.open-menu.active span:nth-of-type(3) {
  -webkit-animation: active-btn18-bar03 .5s .5s forwards;
  animation: active-btn18-bar03 .5s .5s forwards;
}

@-webkit-keyframes active-btn18-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }

  100% {
    -webkit-transform: translateY(-20px) rotate(45deg);
  }
}

@keyframes active-btn18-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }

  100% {
    transform: translateY(-20px) rotate(45deg);
  }
}

/* ページネーション  */
.wp-pagenavi {
  text-align: center;
  display: flex;
  justify-content: center;
  padding-top: 120px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  padding: 12px 15px;
  margin: 10px;
  border: 1px solid #c9a85b;
  color: #c9a85b;
  line-height: 1;
}

.wp-pagenavi span.current {
  background-color: #c9a85b;
  color: #fff;
}

.wp-pagenavi .nextpostslink {
  padding: 12px 13px 12px 17px;
}

@media screen and (max-width:1400px) {
  h1 a {
    width: 140px;
  }

  .gnav ul li {
    margin: 0 10px;
  }

  .gnav ul li a.button {
    font-size: 14px;
  }

  .gnav ul li a.color__button {
    width: 150px;
    height: 40px;
    border-radius: 20px;
    line-height: 40px;
    font-size: 15px;
  }
}

@media screen and (max-width:1024px) {
  header {
    min-width: initial;
    padding: 0 20px;
  }

  .top-contents .title {
    width: 100%;
    padding-left: 0;
    min-width: initial;
  }

  .top-contents .title--content {
    margin: 0 auto;
  }

  .top-contents h2 {
    display: flex;
    justify-content: center;
  }

  .top-contents .link {
    text-align: center;
  }

  /* 下層ページ */
  #lower__contents--wrap {
    width: 100%;
    padding: 120px 20px;
  }

  #lower__contents section {
    width: 100%;
  }

}

@media screen and (max-width:960px) {
  header {
    height: initial;
    padding: 20px;
  }

  header h1 {
    width: 200px;
  }

  header h1 a {
    width: 100%;
  }

  .gnav {
    display: none;
  }

  .open-menu {
    display: inline-block;
    width: 50px;
    height: 42px;
  }

  .main__visual--content .content__text {
    font-size: 3.2rem;
  }
}



@media screen and (max-width:640px) {
  header h1 {
    width: 120px;
  }

  .gnav ul li {
    margin: 0;
  }

  p {
    font-size: 1.4rem;
  }

  br.sp {
    display: inline;
  }

  #mission {
    background-position: center center;
  }

  .main__visual--content .content__text {
    font-size: 1.8rem;
    letter-spacing: -1;
  }

  .mainVisual__lower--content h1 {
    font-size: 3.2rem;
    letter-spacing: 0.15em;
  }

  .mainVisual__lower--content h1:before {
    width: 100%;
    text-align: center;
    letter-spacing: 2;
  }

  .top-contents h2 {
    font-size: 3.6rem;
    letter-spacing: 6;
  }

  #news .news__wrap {
    width: 100%;
    padding: 0 20px;
  }

  #news .news__wrap h2 {
    font-size: 2.4rem;
  }

  #news .news__wrap ul li time {
    width: 20%;
    margin-right: 5%;
    padding-left: 0;
    text-align: center;
  }

  #news .news__wrap ul li a {
    width: 75%;
  }

  #news .news__wrap ul li {
    font-size: 1.2rem;
    padding: 20px 0;
  }

  #footer .footer__content {
    padding: 80px 20px;
  }

  #footer .footer__content p {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  #footer .footer__content .footer__companyName {
    font-size: 1.6rem;
  }

  .footer__address--pc {
    display: none;
  }

  .footer__address--sp {
    display: block;
  }

  .footer__contactInfo--pc {
    display: none;
  }

  .footer__contactInfo--sp {
    display: block;
  }

  #footer .footer__content .footer__logo {
    width: 140px;
  }

  #footer small {
    line-height: 1.5;
  }


  /* 下層ページ */
  #lower__contents h2,
  #lower__contents h2.undeLine__title {
    font-size: 2rem !important;
  }


  /* オーバーレイ */
  .overlay.open li {
    margin-bottom: 20px;
  }

  .overlay ul li a {
    font-size: 2rem;
    letter-spacing: 6;
  }

  .overlay-close {
    width: 40px;
  }

  .open-menu {
    width: 30px;
    height: 22px;
  }

  .open-menu span {
    height: 2px;
  }

  .open-menu span:nth-of-type(2) {
    top: 10px;
  }

}