@charset "utf-8";
/*
Theme Name: himeju
Author: 株式会社シールズ
Description: original theme
version： 1.0.0
*/
/* COMMON
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
body {
  position: relative;
  overflow-x: hidden;
  color: var(--darkgray);
  line-height: 1.75;
  font-family:
    'Meiryo', 'メイリオ', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Segoe UI', 'Helvetica Neue',
    Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
:root {
  --white: #fff;
  --black: #000;
  --gray: #525252;
  --darkgray: #474747;
  --lightgray: #e4e4e4;
  --blue: #1d2088;
}
.noto {
  font-family: 'Noto Sans JP', sans-serif;
}
.mincho {
  font-family: "Shippori Mincho", serif;
}
main {
  position: relative;
  z-index: 1;
}
.wrapper {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  color: inherit;
  opacity: 0.7;
}
.scale:hover {
  transform: scale(1.06);
}
a:focus {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.container {
  max-width: 1110px;
  width: 90%;
  margin: auto;
}
.container.wide {
  max-width: 90%;
}
.invisible {
  visibility: hidden;
}
.hidden_pc {
  display: none;
}
.hidden_sp {
  display: block;
}
.hidden_sp.inline {
  display: inline-block;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid {
  display: grid;
}
@media (min-width: 768px) {
  a[href^='tel:'] {
    pointer-events: none;
    cursor: auto;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
  .hidden_pc {
    display: block;
  }
  .hidden_sp {
    display: none;
  }
}

/* HEADER
-------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.6s ease;
}
header.on {
  background: rgba(0,0,0,.5);
}
header .logo a {
  align-items: flex-end;
  width: 150px;
}
header a,
header span {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
}
.hamburger {
  display: none;
}
header .headWrap {
  position: relative;
  align-items: center;
  padding-left: 20px;
}
header .global-nav {
  width: calc(100% - 150px);
}
header .global-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .global-nav li {
  position: relative;
  color: var(--white);
}
header .global-nav li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1px;
  height: 16px;
  background: var(--white);
  content: "";
}
header .global-nav li a,
header .global-nav li span {
  padding: 36px 50px;
  cursor: pointer;
}
header .global-nav li a::after,
header .global-nav li span::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 2px;
  background-color: var(--blue);
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
}
header .global-nav li a:hover::after,
header .global-nav li span:hover::after {
  width: 100%;
}
header .global-nav li.recruit a {
  padding: 0;
  justify-content: center;
  align-items: center;
  background: #2b2b2b;
  color: var(--white);
  width: 180px;
  height: 100px;
}
header .global-nav li.recruit::before {
  content: none;
}
header .global-nav li.recruit a::after {
  left: auto;
  right: 8px;
  bottom: 10px;
  background: url(img/common/arrow_w.svg) no-repeat center / contain;
  width: 13px;
  height: 5px;
  transform: translateX(0px);
}
header .global-nav li.recruit a:hover::after {
  transform: translateX(5px);
}
@media (min-width: 768px) {
  header .global-nav .megaMenu {
    position: fixed;
    top: 100px;
    left: 0;
    justify-content: center;
    background: rgba(222,222,222,.66);
    width: 100%;
    height: 80px;
    opacity: 0;
    text-align: center;
    visibility: hidden;
    transition: opacity 0.6s ease;
    z-index: 1;
  }
  header .global-nav li.products:hover .megaMenu {
    opacity: 1;
    visibility: visible;
  }
  header .global-nav .megaMenu li::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1px;
    height: 12px;
    background: var(--gray);
    content: "";
  }
  header .global-nav .megaMenu li:first-child::before {
    content: none;
  }
  header .global-nav .megaMenu li a {
    padding: 29px 20px;
    color: var(--black);
    font-size: 1rem;
  }
}
@media (min-width: 1050px) {
  header .global-nav .megaMenu li::before {
    height: 16px;
  }
  header .global-nav .megaMenu li a {
    padding: 27px 30px;
    font-size: 1.2rem;
  }
}
@media (min-width: 1400px) {
  header .global-nav .megaMenu li a {
    padding: 25px 40px;
    font-size: 1.5rem;
  }
}
@media (max-width: 1400px) {
  header a,
  header span {
    font-size: 1.4rem;
  }
  header .global-nav li a, header .global-nav li span {
    padding: 36px 30px;
  }
  header .global-nav li.recruit a {
    width: 140px;
  }
}
@media (max-width: 1050px) {
  header .logo a {
    width: 100px;
  }
  header a,
  header span {
    font-size: 1.2rem;
  }
  header .global-nav {
    width: calc(100% - 100px);
  }
  header .global-nav li::before {
    height: 12px;
  }
  header .global-nav li a, header .global-nav li span {
    padding: 39px 15px;
  }
  header .global-nav li.recruit a {
    width: 120px;
  }
}
@media (max-width: 767px) {
  header .headWrap {
    padding: 8px 15px;
    margin: 0;
    width: calc(100% - 60px);
  }
  header .logo a img {
    width: 170px;
  }
  header a {
    color: var(--white);
  }
  header .global-nav {
    position: fixed;
    right: 0;
    top: 60px;
    padding: 20px 5% 100px;
    width: 100%;
    height: 100vh;
    background: var(--darkgray);
    z-index: 100;
    overflow-y: auto;
    display: none;
  }
  .hamburger {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 300;
    transition: all 0.5s ease-in-out;
  }
  .hamburger::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7px;
    margin: auto;
    color: var(--white);
    font-size: 1rem;
    content: 'MENU';
  }
  header .global-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  header .global-nav li {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  header .global-nav li::before {
    content: none;
  }
  header .global-nav li a,
  header .global-nav li span {
    padding: 15px;
  }
  header .global-nav li a:hover::after,
  header .global-nav li a::after {
    top: 0;
    left: auto;
    right: 8px;
    bottom: 0;
    margin: auto;
    background: url(img/common/arrow_w.svg) no-repeat center / contain;
    width: 13px;
    height: 5px;
    transform: translateX(0px);
  }
  header .global-nav .megaMenu {
    display: none;
    margin-bottom: 10px;
    background: rgba(0,0,0,.3);
  }
  header .global-nav li span {
    position: relative;
  }
  header .global-nav li span::after {
    left: auto;
    top: 0;
    right: 6px;
    bottom: 0;
    margin: auto;
    background: url(img/common/arrow_w.svg) no-repeat center / contain;
    width: 13px;
    height: 5px;
    transform: rotate(90deg);
  }
  header .global-nav li span:hover::after {
    width: 13px;
  }
  header .global-nav li span.open::after {
    right: 8px;
    transform: rotate(-90deg);
  }
  header .global-nav .megaMenu li {
    border-bottom: 1px solid var(--gray);
  }
  header .global-nav .megaMenu li:last-child {
    border: none;
  }
  header .global-nav li.recruit {
    margin-top: 20px;
    border: none;
  }
  header .global-nav li.recruit a {
    margin: 0;
    width: 100%;
    height: 80px;
  }
  header .global-nav li.recruit a::after {
    top: auto;
  }
  .hamburger__line {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 34px;
    height: 3px;
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.6s;
  }
  .hamburger__line--1 {
    top: 13px;
  }
  .hamburger__line--2 {
    top: 23px;
  }
  .hamburger__line--3 {
    top: 33px;
  }
  /* 表示された時用のCSS */
  .nav-open .global-nav {
    display: block;
  }
  .nav-open .hamburger::after {
    content: 'CLOSE';
  }
  .nav-open .black-bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 25px;
  }
  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 25px;
  }
}
/* common style
-------------------------------------------------------------- */
.bgDot {
  background: url(img/common/bg_dot.png) repeat;
}
.bgDot2 {
  background: url(img/common/bg_dot2.png) repeat;
}
.bgWhite {
  background: var(--white);
}
.styleLine {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 60px;
}
.styleLine::after {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--black);
  width: 200px;
  height: 1px;
  content: "";
}
.styleLine .noto {
  display: block;
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
}
.styleLine .mincho {
  display: block;
  color: var(--blue);
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 5px;
}
.btn a {
  width: 140px;
}
.btn a span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}
.btn a img {
  transition: all 0.5s;
}
.btn a:hover img {
  transform: translateX(10px);
}
#sv {
  position: relative;
  justify-content: center;
  align-items: center;
  margin-bottom: 120px;
  height: 390px;
  text-align: center;
}
#sv::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/common/sv_bg.jpg) no-repeat center / cover;
  content: '';
  z-index: -1;
}
.facility #sv::after {
  background: url(img/products/facility/sv_bg.jpg) no-repeat center / cover;
}
.interior #sv::after {
  background: url(img/products/interior/sv_bg.jpg) no-repeat center / cover;
}
.exterior #sv::after {
  background: url(img/products/exterior/sv_bg.jpg) no-repeat center / cover;
}
.construction #sv::after {
  background: url(img/products/construction/sv_bg.jpg) no-repeat center / cover;
}
.system #sv::after {
  background: url(img/products/system/sv_bg.jpg) no-repeat center / cover;
}
.central-air #sv::after {
  background: url(img/products/central-air/sv_bg.jpg) no-repeat center / cover;
}
.others #sv::after,
.about #sv::after {
  background: url(img/products/others/sv_bg.jpg) no-repeat center / cover;
}
.corporate-initiatives #sv::after {
  background: url(img/about/corporate-initiatives/sv_bg.jpg) no-repeat center / cover;
}
.strength #sv::after {
  background: url(img/strength/sv_bg.jpg) no-repeat center / cover;
}
.contact #sv::after,
.thanks #sv::after {
  background: url(img/contact/sv_bg.jpg) no-repeat center / cover;
}
#sv h1 {
  position: relative;
  margin-top: 10%;
  padding-bottom: 40px;
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 5px;
}
.central-air #sv h1 {
  margin-top: 6%;
  line-height: 1.7;
}
#sv h1::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: var(--white);
  width: 100px;
  height: 1px;
  content: "";
}
.headArea {
  margin-bottom: 100px;
}
.headArea h2 {
  width: 35%;
}
.headArea h2 .noto {
  display: block;
  margin-top: 10px;
  color: var(--darkgray);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}
.headArea h2 .mincho {
  display: block;
  color: var(--blue);
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.5;
}
.headArea dl {
  padding: 35px 40px;
  width: 60%;
  border: 1px solid var(--black);
}
.headArea dt {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 2.2rem;
  font-weight: 700;
}
.styleH2 .noto {
  display: block;
  color: var(--darkgray);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}
.styleH2 .mincho {
  display: block;
  color: var(--blue);
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 3px;
}
.detailBox {
  align-items: center;
}
.detailBox figure,
.detailBox .txtArea {
  width: 50%;
}
.detailBox figure img {
  width: 100%;
}
.detailBox .rightTxt {
  padding-left: 75px;
  padding-right: calc((100% - 1110px) / 2);
}
.detailBox .leftTxt {
  padding-right: 75px;
  padding-left: calc((100% - 1110px) / 2);
  order: -1;
}
.detailBox h2 {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 80px;
  line-height: 1;
}
.detailBox h2::after {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--black);
  width: 150px;
  height: 1px;
  content: "";
}
.detailBox h2 .noto {
  display: block;
  margin-bottom: 5px;
  color: var(--darkgray);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}
.detailBox h2 .mincho {
  display: block;
  color: var(--blue);
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.5;
}
.detailBox p {
  padding-bottom: 30px;
  line-height: 2;
}
.detailBox p:last-of-type {
  padding-bottom: 0;
}
.detailBox .btn {
  margin-top: 30px;
  padding: 15px;
  border-top: 1px solid var(--black);
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .detailBox .rightTxt,
  .detailBox .leftTxt {
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .styleLine {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .styleLine::after {
    width: 100px;
  }
  .styleLine .noto {
    font-size: 1.2rem;
  }
  .styleLine .mincho {
    color: var(--blue);
    font-size: 3.2rem;
    letter-spacing: 3px;
  }
  #sv {
    margin-bottom: 60px;
    height: 200px;
  }
  .facility #sv::after {
    background: url(img/products/facility/sv_bg.jpg) no-repeat center / cover;
  }
  #sv h1 {
    margin-top: 15%;
    padding-bottom: 20px;
    font-size: 2.6rem;
    letter-spacing: 3px;
  }
  #sv h1::after {
    width: 80px;
  }
  .headArea {
    margin-bottom: 50px;
  }
  .headArea h2 {
    width: 100%;
    text-align: center;
  }
  .headArea h2 .noto {
    margin: 0 0 10px;
    font-size: 1.2rem;
  }
  .headArea h2 .mincho {
    font-size: 3.2rem;
    line-height: 1.4;
    letter-spacing: 2px;
  }
  .headArea dl {
    margin-top: 30px;
    padding: 20px 30px;
    width: 100%;
  }
  .headArea dt {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
  .styleH2 .noto {
    font-size: 1.2rem;
  }
  .styleH2 .mincho {
    font-size: 3.2rem;
    letter-spacing: 2px;
  }
  .detailBox figure,
  .detailBox .txtArea {
    width: 100%;
  }
  .detailBox .rightTxt,
  .detailBox .leftTxt {
    padding: 50px 30px;
  }
  .detailBox .leftTxt {
    order: 1;
  }
  .detailBox h2 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
  .detailBox h2::after {
    width: 100px;
  }
  .detailBox h2 .noto {
    font-size: 1.2rem;
  }
  .detailBox h2 .mincho {
    font-size: 3rem;
    letter-spacing: 2px;
  }
  .detailBox p {
    padding-bottom: 20px;
  }
  .detailBox .btn {
    margin-top: 20px;
    padding: 10px;
  }
}

/* archive
-------------------------------------------------------------- */
#newsList .postArea {
  margin-bottom: 180px;
}
#newsList .postArea li .date {
  padding-top: 30px;
  width: 100px;
  text-align: center;
  color: var(--gray);
  font-weight: 700;
  line-height: 1.4;
}
#newsList .postArea li .txtArea {
  position: relative;
  padding: 30px 0;
  width: calc(100% - 120px);
  border-bottom: 1px solid var(--lightgray);
}
#newsList .postArea li .txtArea .cat {
  position: relative;
  justify-content: flex-start;
}
#newsList .postArea li .txtArea .cat::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 150px;
  height: 1px;
  background: var(--blue);
  content: "";
}
#newsList .postArea li .txtArea .cat li {
  position: relative;
  padding-bottom: 5px;
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}
#newsList .postArea li .txtArea .cat li::after {
  display: inline-block;
  margin-right: 5px;
  content: ",";
}
#newsList .postArea li .txtArea .cat li:last-child::after {
  content: none;
}
#newsList .postArea li .txtArea .ttl {
  margin: 15px 80px 0 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
#newsList .postArea li.none {
  text-align: center;
}
#newsList .arrow {
  position: absolute;
  right: 0;
  bottom: 30px;
  text-align: center;
  width: 80px;
}
#newsList .arrow img {
  display: inline-block;
  transition: all 0.5s;
}
#newsList a:hover .arrow img {
  transform: translateX(10px);
}
#columnList .postArea {
  margin-bottom: 180px;
  justify-content: flex-start;
  gap: 100px 50px;
}
#columnList .postArea li {
  width: calc((100% - 100px) / 3);
  border-bottom: 1px solid var(--black);
}
#columnList .postArea li a {
  padding-bottom: 30px;
  display: block;
}
#columnList .postArea li .eyecatch {
  background-color: var(--lightgray);
  background-size: cover;
  aspect-ratio: 223 / 150;
}
#columnList .postArea li .date {
  margin-top: 15px;
  font-weight: 700;
  line-height: 1;
}
#columnList .postArea li .ttl {
  margin: 15px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
#columnList .postArea li .arrow {
  text-align: right;
  transition: all 0.5s;
}
#columnList .postArea li .arrow img {
  display: inline-block;
}
#columnList .postArea li a:hover .arrow {
  transform: translateX(10px);
}
#columnList .postArea li.none {
  text-align: center;
}
@media (max-width: 767px) {
  #newsList .postArea {
    margin-bottom: 90px;
  }
  #newsList .postArea li .date {
    width: 70px;
    font-size: 1.3rem;
  }
  #newsList .postArea li .txtArea {
    padding: 15px 0;
    width: calc(100% - 80px);
  }
  #newsList .postArea li .txtArea .cat::after {
    width: 100px;
  }
  #newsList .postArea li .txtArea .cat li {
    font-size: 1.2rem;
  }
  #newsList .postArea li .txtArea .ttl {
    margin: 10px 40px 0 0;
    -webkit-line-clamp: 2;
  }
  #newsList .arrow {
    width: 40px;
  }
  #columnList .postArea {
    margin-bottom: 90px;
    gap: 50px;
  }
  #columnList .postArea li {
    width: 100%;
  }
  #columnList .postArea li a {
    padding-bottom: 20px;
  }
  #columnList .postArea li .date {
    font-size: 1.6rem;
  }
  #columnList .postArea li .txtArea .ttl {
    margin: 10px 0;
    font-size: 1.3rem;
  }
}
/* single
-------------------------------------------------------------- */
#newsSingle .ttlheader .date {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
}
#newsSingle .ttlheader h2 {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 80px;
  color: var(--blue);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 3px;
}
#newsSingle .ttlheader h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--black);
  width: 150px;
  height: 1px;
  content: "";
}
#newsSingle .eyecatch {
  margin-bottom: 80px;
}
#newsSingle .freetxt {
  padding-bottom: 50px;
  font-size: 1.6rem;
}
.freetxt img {
  margin-bottom: 30px;
}
.freetxt a {
  color: var(--blue);
}
.freetxt p {
  margin-bottom: 50px;
  line-height: 2;
}
.freetxt blockquote {
  background: #efefef;
  padding: 20px;
}
.freetxt .aligncenter {
  display: block;
  margin: 0 auto;
}
.freetxt .alignleft {
  float: left;
}
.freetxt .alignright {
  float: right;
}
.freetxt ul,
.freetxt ol {
  margin: 0 20px;
}
.freetxt ul li {
  list-style: square;
  margin-bottom: 15px;
}
.freetxt ol li {
  list-style: decimal;
  margin-bottom: 15px;
}
.freetxt h1 {
  margin-bottom: 50px;
  font-weight: 700;
}
.freetxt h2 {
  margin-bottom: 50px;
  color: var(--blue);
  font-weight: 700;
}
.freetxt h3 {
  padding: 10px;
  margin-bottom: 50px;
  border-left: 5px solid var(--blue);
  border-bottom: 1px solid var(--gray);
  font-weight: 700;
  line-height: 1.4;
}
.freetxt table {
  width: 100%;
}
.freetxt table th {
  padding: 10px 15px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ccc;
}
.freetxt table td {
  padding: 10px 15px;
  border: 1px solid #ccc;
}
.freetxt .youtube {
  margin-bottom: 20px;
}
.freetxt .youtube iframe {
  width: 100%;
  height: 550px;
}
#columnSingle .ttlheader {
  margin-bottom: 140px;
  text-align: center;
}
#columnSingle .ttlheader h2 {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 3px;
}
#columnSingle .ttlheader h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--black);
  width: 200px;
  height: 1px;
  content: "";
}
#columnSingle .ttlheader .date {
  margin-bottom: 20px;
  font-weight: 700;
}
#columnSingle .photoArea {
  margin-bottom: 60px;
}
#columnSingle .photoArea figure {
  margin-bottom: 40px;
  text-align: center;
}
#columnSingle .bgDot {
  margin-bottom: 150px;
  padding: 100px 0;
}
#columnSingle .bgDot .container {
  padding: 70px;
  background: var(--white);
}
#columnSingle .materials {
  margin-bottom: 50px;
}
#columnSingle .materials dt {
  padding: 20px 0 15px;
  color: var(--blue);
  width: 25%;
  font-weight: 700;
  border-bottom: 2px solid var(--blue);
}
#columnSingle .materials dd {
  padding: 20px 0 15px;
  width: 75%;
  border-bottom: 2px solid var(--lightgray);
}
#columnSingle .reasonWrap {
  margin-bottom: 50px;
}
#columnSingle .reasonWrap h3 {
  margin-bottom: 30px;
  padding: 10px 20px;
  background: var(--lightgray);
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
#columnSingle .featureWrap h3 {
  margin-bottom: 30px;
  padding: 10px 20px;
  background: var(--blue);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
#columnSingle .featureWrap .txtArea {
  margin-bottom: 50px;
}
#columnSingle .planBox {
  padding: 50px 40px;
  border: 2px solid var(--blue);
}
#columnSingle .planBox h4 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
#columnSingle .planBox h4::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--blue);
  width: 300px;
  height: 2px;
  content: "";
}
#columnSingle .planDetail {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 2px dotted var(--blue);
}
#columnSingle .planDetail:last-of-type {
  margin: 0;
  padding: 0;
  border: none;
}
#columnSingle .planDetail .name {
  margin-bottom: 20px;
  padding: 5px 0 5px 20px;
  border-left: 15px solid var(--blue);
  color: var(--blue);
  font-weight: 700;
  line-height: 1.4;
}
#columnSingle .planDetail .url {
  margin-bottom: 20px;
  padding: 10px 15px;
  background: var(--lightgray);
  word-break: break-all;
  line-height: 1;
}
#columnSingle .planDetail .detail {
  margin-bottom: 40px;
  padding: 0 15px;
}
@media (max-width: 767px) {
  #newsSingle .ttlheader .date {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  #newsSingle .ttlheader h2 {
    padding-bottom: 20px;
    margin-bottom: 40px;
    font-size: 2rem;
  }
  #newsSingle .eyecatch {
    margin-bottom: 40px;
  }
  #newsSingle .freetxt {
    padding-bottom: 30px;
  }
  .freetxt h2 {
    margin-bottom: 30px;
  }
  .freetxt h3 {
    margin-bottom: 30px;
  }
  #columnSingle .ttlheader {
    margin-bottom: 50px;
  }
  #columnSingle .ttlheader h2 {
    padding-bottom: 20px;
    margin-bottom: 10px;
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  #columnSingle .ttlheader h2::after {
    width: 120px;
  }
  #columnSingle .ttlheader .date {
    margin-bottom: 10px;
  }
  #columnSingle .photoArea {
    margin-bottom: 40px;
  }
  #columnSingle .photoArea figure {
    margin-bottom: 20px;
  }
  #columnSingle .bgDot {
    margin-bottom: 70px;
    padding: 50px 0;
  }
  #columnSingle .bgDot .container {
    padding: 30px;
  }
  #columnSingle .materials {
    margin-bottom: 30px;
  }
  #columnSingle .materials dt {
    padding: 20px 0 5px;
    border-bottom: none;
  }
  #columnSingle .materials dd {
    padding: 0 0 15px;
    width: 100%;
  }
  #columnSingle .reasonWrap {
    margin-bottom: 30px;
  }
  #columnSingle .reasonWrap h3 {
    margin-bottom: 20px;
    padding: 10px 15px;
    font-size: 1.5rem;
  }
  #columnSingle .featureWrap h3 {
    margin-bottom: 20px;
    padding: 10px 15px;
    font-size: 1.5rem;
  }
  #columnSingle .featureWrap .txtArea {
    margin-bottom: 30px;
  }
  #columnSingle .planBox {
    padding: 30px 20px;
  }
  #columnSingle .planBox h4 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    color: var(--blue);
    font-size: 1.5rem;
  }
  #columnSingle .planBox h4::after {
    width: 60%;
  }
  #columnSingle .planDetail {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  #columnSingle .planDetail .name {
    margin-bottom: 15px;
    padding: 5px 0 5px 10px;
    border-left: 8px solid var(--blue);
  }
  #columnSingle .planDetail .url {
    margin-bottom: 15px;
    padding: 10px;
  }
  #columnSingle .planDetail .detail {
    margin-bottom: 20px;
    padding: 0 10px;
  }
}

/* ページネーション
-------------------------------------------------------------- */
.paging {
  position: relative;
  margin-bottom: 130px;
  padding: 80px 0;
}
.paging::before,
.paging::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  background: url(img/common/bg_dot.png);
  content: "";
}
.paging::before {
  top: 0;
}
.paging::after {
  bottom: 0;
}
.paging .container {
  position: relative;
  margin: 30px auto;
  background: var(--white);
  max-width: 1120px;
  overflow: hidden;
}
.paging .next,
.paging .prev {
  width: 85px;
  height: 18px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.paging .prev {
  float: left;
}
.paging .next {
  float: right;
}
.paging .next a,
.paging .prev a {
  display: block;
}
.paging .prev a {
  text-align: right;
}
.paging .next a::after,
.paging .prev a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 13px;
  height: 5px;
  background: url(img/common/arrow_bl.svg) no-repeat center / contain;
  content: "";
  transition: all 0.5s;
}
.paging .next a::after {
  right: 5px;
}
.paging .prev a::after {
  left: 5px;
  transform: scale(-1, 1);
}
.paging .next a:hover,
.paging .prev a:hover {
  color: var(--blue);
}
.paging .next a:hover::after {
  right: 0;
}
.paging .prev a:hover::after {
  left: 0;
  transform: scale(-1, 1);
}
.pagination {
  position: relative;
  padding: 80px 0;
  margin-bottom: 130px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  width: 100%;
}
.pagination::before,
.pagination::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  background: url(img/common/bg_dot.png);
  content: "";
}
.pagination::before {
  top: 0;
}
.pagination::after {
  bottom: 0;
}
.pagination .nav-links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  padding: 0 100px;
  background: var(--white);
  max-width: 900px;
  width: 90%;
}
a.page-numbers,
.pagination .current {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
  width: 25px;
  height: 25px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.pagination .current,
a.page-numbers:hover {
  background: var(--blue);
  color: var(--white);
  opacity: 1;
}
.dots {
  padding: 0 10px;
  font-weight: 700;
}
a.next,
a.prev {
  position: absolute;
  margin: 0;
  width: 80px;
  height: 18px;
}
a.next {
  justify-content: flex-start;
  right: 0;
}
a.prev {
  justify-content: flex-end;
  left: 0;
}
a.next::after,
a.prev::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 13px;
  height: 5px;
  background: url(img/common/arrow_bl.svg) no-repeat center / contain;
  content: "";
  transition: all 0.5s;
}
a.next::after {
  right: 0;
}
a.prev::after {
  left: 0;
  transform: scale(-1, 1);
}
a.next:hover,
a.prev:hover {
  background: inherit;
  color: var(--blue);
}
a.next:hover::after {
  right: -5px;
}
a.prev:hover::after {
  left: -5px;
  transform: scale(-1, 1);
}
@media (max-width: 767px) {
  .paging {
    padding: 40px 0;
    margin-bottom: 70px;
  }
  .paging::before,
  .paging::after {
    height: 40px;
  }
  .paging .container {
    margin: 15px auto;
  }
  .paging .next,
  .paging .prev {
    width: 60px;
    height: 12px;
    font-size: 1.2rem;
  }
  .pagination {
    padding: 40px 0;
    margin-bottom: 70px;
  }
  .pagination::before,
  .pagination::after {
    height: 40px;
  }
  .pagination .nav-links {
    margin: 15px auto;
    padding: 0 60px;
  }
  a.page-numbers,
  .pagination .current {
    margin: 0 5px;
    width: 20px;
    height: 20px;
    font-size: 1.2rem;
  }
  .dots {
    padding: 0 5px;
  }
  a.next,
  a.prev {
    margin: 0;
    width: 55px;
    height: 15px;
  }
  a.next::after {
    right: 0;
  }
  a.prev::after {
    left: 0;
    transform: scale(-1, 1);
  }
  a.next:hover,
  a.prev:hover {
    background: inherit;
    color: var(--blue);
  }
  a.next:hover::after {
    right: -5px;
  }
  a.prev:hover::after {
    left: -5px;
    transform: scale(-1, 1);
  }
}

/* ctaArea
-------------------------------------------------------------- */
#ctaArea .ctaBox {
  width: 50%;
}
#ctaArea .ctaBox a {
  display: block;
  position: relative;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  aspect-ratio: 7 / 2;
}
#ctaArea .ctaBox.contact a {
  background: url(img/common/bnr_contact.jpg) no-repeat center / cover;
}
#ctaArea .ctaBox.recruit a {
  background: url(img/common/bnr_recruit.jpg) no-repeat center / cover;
}
#ctaArea .ctaBox .txtArea {
  position: relative;
  z-index: 2;
}
#ctaArea .ctaBox .txtArea h2 {
  line-height: 1;
}
#ctaArea .ctaBox .txtArea .noto {
  display: block;
  margin-bottom: 15px;
  color: #b9b9b9;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}
#ctaArea .ctaBox .txtArea .mincho {
  display: block;
  color: var(--white);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
  word-break: break-all;
}
#ctaArea .ctaBox .arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}
#ctaArea .ctaBox .overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #727272;
  mix-blend-mode: multiply;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
#ctaArea .ctaBox a:hover {
  opacity: 1;
}
#ctaArea .ctaBox a:hover .txtArea .noto {
  color: var(--white);
}
#ctaArea .ctaBox a:hover .overlay {
  opacity: .3;
}
#ctaArea .ctaBox a:hover .arrow {
  right: 10px;
}
.floatingMenu {
  position: fixed;
  right: 0;
  bottom: 10%;
  width: 360px;
  z-index: 100;
}
.floatingMenu .close {
  padding: 5px;
  text-align: right;
  cursor: pointer;
}
.floatingMenu .close img {
  display: inline-block;
}
.floatingMenu a {
  display: block;
  position: relative;
}
@media (max-width: 767px) {
  #ctaArea .ctaBox {
    width: 100%;
  }
  #ctaArea .ctaBox a {
    padding: 20px;
  }
  #ctaArea .ctaBox .txtArea h2 {
    line-height: 1;
  }
  #ctaArea .ctaBox .txtArea .noto {
    font-size: 1.2rem;
  }
  #ctaArea .ctaBox .txtArea .mincho {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  .floatingMenu {
    bottom: 0;
    width: 100%;
  }
  .floatingMenu .close {
    display: none;
  }
  .floatingMenu li {
    border: 1px solid var(--white);
    width: 33.33%;
  }
  .floatingMenu li a {
    padding: 10px;
    color: var(--white);
    text-align: center;
  }
  .floatingMenu li.recruit a {
    background: #007db7;
  }
  .floatingMenu li.contact a {
    background: #F51A76;
  }
  .floatingMenu li.column a {
    background: #008363;
  }
  .floatingMenu li .arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
  }
}
/* footer
-------------------------------------------------------------- */
.btnIg {
  margin: 140px 0 50px;
  background: var(--black);
  text-align: center;
}
.btnIg a {
  padding: 20px;
}
.btnIg a img {
  display: inline-block;
}
footer {
  position: relative;
}
footer .container {
  align-items: flex-end;
}
footer .flogo {
  padding-right: 50px;
  border-right: 1px solid var(--black);
}
footer .infoArea {
  text-align: right;
}
footer p.tel {
  font-size: 1.8rem;
}
footer p.tel a {
  font-weight: 700;
}
footer .copy {
  margin-top: 40px;
  padding: 15px 0;
  font-size: 1.4rem;
  text-align: right;
}
/*page-top*/
#Pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 767px) {
  .btnIg {
    margin: 70px 0 30px;
  }
  .btnIg a {
    padding: 10px;
  }
  .btnIg img {
    width: 30px;
  }
  footer {
    padding-bottom: 80px;
  }
  footer .flogo {
    margin: 0 auto 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid var(--black);
    border-right: none;
  }
  footer .infoArea {
    width: 100%;
    text-align: center;
  }
  footer p.tel {
    font-size: 1.6rem;
  }
  footer p.tel a {
    display: block;
  }
  footer .copy {
    margin-top: 30px;
    font-size: 1.2rem;
  }
  /*page-top*/
  #Pagetop {
    right: 10px;
    bottom: 50px;
    width: 30px;
  }
}

/* 404
-------------------------------------------------------------- */
.post-password-form {
  margin: 200px auto 100px;
  max-width: 1100px;
  width: 90%;
}
#errormsg {
  margin-bottom: 100px;
}
#errormsg p {
  margin-bottom: 30px;
  text-align: center;
}
#errormsg .btn a {
  margin: auto;
}
@media (max-width: 767px) {
  #errormsg {
    margin-bottom: 50px;
  }
  #errormsg p {
    margin-bottom: 20px;
    text-align: left;
  }
}
