@charset "UTF-8";
/* 共通 style
*******************/
html {
  font-size: 62.5%;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
html * {
  box-sizing: border-box;
}

p, a, li, dd, dt, th, td {
  font-size: 1.4rem;
  line-height: 1.785;
}

.sp {
  display: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

.block {
  display: block;
}

.pc_block {
  display: block;
}

.lwrap {
  max-width: 1400px;
  margin: auto;
}
.lwrap2 {
  max-width: 1000px;
  margin: auto;
}

.tel a {
  pointer-events: none;
}

/* float
*******************/
.fl-l {
  float: left;
}
.fl-r {
  float: right;
}

/* clear
*******************/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* txt 揃え
*******************/
.alignCenter {
  text-align: center;
}
.alignLeft {
  text-align: left;
}
.alignRight {
  text-align: right;
}

/* flex
*******************/
.flex {
  display: flex;
}
.flex.col-2 {
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex.col-2 .item {
  width: 48%;
}
.flex.col-3 {
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex.col-3 .item {
  width: 32%;
}
.flex.col-4 {
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex.col-4 .item {
  width: 23.5%;
}
.flex.col-5 {
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex.col-5 .item {
  width: 18.4%;
}

/* border
*******************/
.border-solid-top {
  border-top: 1px solid #ebebeb;
}
.border-solid-left {
  border-left: 1px solid #ebebeb;
}
.border-solid-right {
  border-right: 1px solid #ebebeb;
}
.border-solid-bottom {
  border-bottom: 1px solid #ebebeb;
}
.border-dashed-top {
  border-top: 1px dashed #ebebeb;
}
.border-dashed-left {
  border-left: 1px dashed #ebebeb;
}
.border-dashed-right {
  border-right: 1px dashed #ebebeb;
}
.border-dashed-bottom {
  border-bottom: 1px dashed #ebebeb;
}
.border-dotted-top {
  border-top: 1px dotted #ebebeb;
}
.border-dotted-left {
  border-left: 1px dotted #ebebeb;
}
.border-dotted-right {
  border-right: 1px dotted #ebebeb;
}
.border-dotted-bottom {
  border-bottom: 1px dotted #ebebeb;
}

/* カラー
*******************/
.c-white {
  color: #ffffff !important;
}
.c-black {
  color: #333333 !important;
}
.c-blue {
  color: #144aa6 !important;
}
.c-yellow {
  color: #fff582 !important;
}
.c-red {
  color: #c81f21 !important;
}
.c-green {
  color: #5aaa3c !important;
}
.c-orange {
  color: #ff9020 !important;
}
.c-gray {
  color: #ebebeb !important;
}

/* bgカラー
*******************/
.bg-white {
  background-color: #ffffff !important;
}
.bg-black {
  background-color: #333333 !important;
}
.bg-blue {
  background-color: #144aa6 !important;
}
.bg-yellow {
  background-color: #fff582 !important;
}
.bg-red {
  background-color: #c81f21 !important;
}
.bg-green {
  background-color: #5aaa3c !important;
}
.bg-orange {
  background-color: #ff9020 !important;
}
.bg-gray {
  background-color: #ebebeb !important;
}

/* border color
*******************/
.bc-white {
  border-color: #ffffff !important;
}
.bc-black {
  border-color: #333333 !important;
}
.bc-blue {
  border-color: #144aa6 !important;
}
.bc-yellow {
  border-color: #fff582 !important;
}
.bc-red {
  border-color: #c81f21 !important;
}
.bc-green {
  border-color: #5aaa3c !important;
}
.bc-orange {
  border-color: #ff9020 !important;
}
.bc-gray {
  border-color: #ebebeb !important;
}

/* circle
*******************/
.circle {
  display: inline-block;
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  background-color: #ebebeb;
  text-align: center;
  position: relative;
}
.circle > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}

/* square
*******************/
.square {
  display: inline-block;
  width: 10rem;
  height: 10rem;
  background-color: #ebebeb;
  text-align: center;
  position: relative;
}
.square > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}

/* 角丸
*******************/
.round-15 {
  border-radius: 1.5rem;
}
.round-30 {
  border-radius: 3rem;
}
.round-60 {
  border-radius: 6rem;
}
.round-90 {
  border-radius: 9rem;
}
.round-100 {
  border-radius: 100%;
}

/* margin
*******************/
.mt-0 {
  margin-top: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.mt-5 {
  margin-top: 0.5rem !important;
}

.mb-5 {
  margin-bottom: 0.5rem !important;
}

.mt-10 {
  margin-top: 1rem !important;
}

.mb-10 {
  margin-bottom: 1rem !important;
}

.mt-15 {
  margin-top: 1.5rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.mt-20 {
  margin-top: 2rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.mt-25 {
  margin-top: 2.5rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.mt-30 {
  margin-top: 3rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.mt-35 {
  margin-top: 3.5rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.mt-40 {
  margin-top: 4rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.mt-45 {
  margin-top: 4.5rem !important;
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.mt-50 {
  margin-top: 5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.mt-55 {
  margin-top: 5.5rem !important;
}

.mb-55 {
  margin-bottom: 5.5rem !important;
}

.mt-60 {
  margin-top: 6rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.mt-65 {
  margin-top: 6.5rem !important;
}

.mb-65 {
  margin-bottom: 6.5rem !important;
}

.mt-70 {
  margin-top: 7rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.mt-75 {
  margin-top: 7.5rem !important;
}

.mb-75 {
  margin-bottom: 7.5rem !important;
}

.mt-80 {
  margin-top: 8rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.mt-85 {
  margin-top: 8.5rem !important;
}

.mb-85 {
  margin-bottom: 8.5rem !important;
}

.mt-90 {
  margin-top: 9rem !important;
}

.mb-90 {
  margin-bottom: 9rem !important;
}

.mt-95 {
  margin-top: 9.5rem !important;
}

.mb-95 {
  margin-bottom: 9.5rem !important;
}

.mt-100 {
  margin-top: 10rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

.mt-105 {
  margin-top: 10.5rem !important;
}

.mb-105 {
  margin-bottom: 10.5rem !important;
}

.mt-110 {
  margin-top: 11rem !important;
}

.mb-110 {
  margin-bottom: 11rem !important;
}

.mt-115 {
  margin-top: 11.5rem !important;
}

.mb-115 {
  margin-bottom: 11.5rem !important;
}

.mt-120 {
  margin-top: 12rem !important;
}

.mb-120 {
  margin-bottom: 12rem !important;
}

.mt-125 {
  margin-top: 12.5rem !important;
}

.mb-125 {
  margin-bottom: 12.5rem !important;
}

.mt-130 {
  margin-top: 13rem !important;
}

.mb-130 {
  margin-bottom: 13rem !important;
}

.mt-135 {
  margin-top: 13.5rem !important;
}

.mb-135 {
  margin-bottom: 13.5rem !important;
}

.mt-140 {
  margin-top: 14rem !important;
}

.mb-140 {
  margin-bottom: 14rem !important;
}

.mt-145 {
  margin-top: 14.5rem !important;
}

.mb-145 {
  margin-bottom: 14.5rem !important;
}

.mt-150 {
  margin-top: 15rem !important;
}

.mb-150 {
  margin-bottom: 15rem !important;
}

/* padding
*******************/
.pd-0 {
  padding: 0rem !important;
  box-sizing: border-box;
}

.pd-5 {
  padding: 0.5rem !important;
  box-sizing: border-box;
}

.pd-10 {
  padding: 1rem !important;
  box-sizing: border-box;
}

.pd-15 {
  padding: 1.5rem !important;
  box-sizing: border-box;
}

.pd-20 {
  padding: 2rem !important;
  box-sizing: border-box;
}

.pd-25 {
  padding: 2.5rem !important;
  box-sizing: border-box;
}

.pd-30 {
  padding: 3rem !important;
  box-sizing: border-box;
}

.pd-35 {
  padding: 3.5rem !important;
  box-sizing: border-box;
}

.pd-40 {
  padding: 4rem !important;
  box-sizing: border-box;
}

.pd-45 {
  padding: 4.5rem !important;
  box-sizing: border-box;
}

.pd-50 {
  padding: 5rem !important;
  box-sizing: border-box;
}

.pd-55 {
  padding: 5.5rem !important;
  box-sizing: border-box;
}

.pd-60 {
  padding: 6rem !important;
  box-sizing: border-box;
}

.pd-65 {
  padding: 6.5rem !important;
  box-sizing: border-box;
}

.pd-70 {
  padding: 7rem !important;
  box-sizing: border-box;
}

.pd-75 {
  padding: 7.5rem !important;
  box-sizing: border-box;
}

.pd-80 {
  padding: 8rem !important;
  box-sizing: border-box;
}

.pd-85 {
  padding: 8.5rem !important;
  box-sizing: border-box;
}

.pd-90 {
  padding: 9rem !important;
  box-sizing: border-box;
}

.pd-95 {
  padding: 9.5rem !important;
  box-sizing: border-box;
}

.pd-100 {
  padding: 10rem !important;
  box-sizing: border-box;
}

.pd-105 {
  padding: 10.5rem !important;
  box-sizing: border-box;
}

.pd-110 {
  padding: 11rem !important;
  box-sizing: border-box;
}

.pd-115 {
  padding: 11.5rem !important;
  box-sizing: border-box;
}

.pd-120 {
  padding: 12rem !important;
  box-sizing: border-box;
}

.pd-125 {
  padding: 12.5rem !important;
  box-sizing: border-box;
}

.pd-130 {
  padding: 13rem !important;
  box-sizing: border-box;
}

.pd-135 {
  padding: 13.5rem !important;
  box-sizing: border-box;
}

.pd-140 {
  padding: 14rem !important;
  box-sizing: border-box;
}

.pd-145 {
  padding: 14.5rem !important;
  box-sizing: border-box;
}

.pd-150 {
  padding: 15rem !important;
  box-sizing: border-box;
}

/* box shadow
*******************/
.b-shadow {
  box-shadow: 0.5rem 0.5rem 0.4rem rgba(0, 0, 0, 0.2);
}

/* text shadow
*******************/
.t-shadow {
  text-shadow: 0.43rem 0.43rem 0.323rem rgba(0, 0, 0, 0.6);
}

/* marker
*******************/
.marker-yellow {
  background: linear-gradient(transparent 0%, #fff582 0%);
}

.header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
}
.header .lwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo a {
  display: block;
  text-decoration: none;
  color: #333333;
  font-size: 2.3rem;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
}
.nav-menu li i {
  display: block;
  text-align: center;
  font-size: 2.6rem;
  margin: 0 0 .6rem;
}
.nav-menu a {
  text-decoration: none;
  color: #333333;
  padding: 2.5rem 1.5rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-btn {
  width: 12rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  display: none;
}
.nav-btn p {
  font-size: 2.4rem;
  background: url("../img/common/sp-menuBtn-arrow.png") no-repeat center bottom;
  background-size: 2.4rem;
  padding-bottom: 2.5rem;
  line-height: 1;
}

#popupBtn {
  cursor: pointer;
}

.popmenu {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  width: 100%;
  height: 100vh;
  z-index: -1;
  transition: opacity .3s, z-index .3s;
}
.popmenu.active {
  pointer-events: auto;
  z-index: 12;
  opacity: 1;
  transition: opacity 0s, z-index .3s;
}
.popmenu .closeBtn {
  position: absolute;
  right: 3rem;
  top: 9rem;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
}
.popmenu .closeBtn span {
  width: 80%;
  height: 2px;
  background-color: #333333;
  position: absolute;
  top: 2.4rem;
  left: 10%;
}
.popmenu .closeBtn span:nth-of-type(1) {
  transform: rotate(-45deg);
}
.popmenu .closeBtn span:nth-of-type(2) {
  transform: rotate(45deg);
}
.popmenu .lwrap {
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.popmenu .lwrap ul {
  list-style: none;
}
.popmenu .lwrap li {
  margin-bottom: 8rem;
  width: 100%;
  text-align: center;
}
.popmenu .lwrap li:last-of-type {
  margin-bottom: 0;
}
.popmenu .lwrap p {
  margin-bottom: 8rem;
  width: 100%;
  text-align: center;
}
.popmenu .lwrap p:last-of-type {
  margin-bottom: 0;
}
.popmenu .lwrap a {
  font-size: 3.8rem;
  text-decoration: none;
  color: #333333;
  cursor: pointer;
}
.popmenu .menu {
  opacity: 0;
  transition: opacity .3s;
  position: absolute;
  z-index: -1;
}
.popmenu .menu.active {
  opacity: 1;
  position: static;
  z-index: 1;
}
.popmenu .menu1 {
  transition: opacity .3s, z-index .3s;
}
.popmenu .menu3 p {
  margin-bottom: 5rem;
}
.popmenu .absolute {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem 1rem;
  width: 100%;
}
.popmenu .absolute .txt {
  font-size: 1rem;
  line-height: 1;
}
.popmenu .absolute .copy {
  font-size: 1.4rem;
  line-height: 1;
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .header {
    position: fixed;
    transition: opacity .3s;
  }
  .header.active {
    background-color: #ffffff;
  }
  .header-logo a {
    font-size: 4rem;
    padding: 1.35rem 0;
  }

  .nav-btn {
    display: flex;
  }
  .nav-wrap {
    width: 100%;
    height: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 9.838rem;
    background-color: #ffffff;
    padding: 3rem;
    box-sizing: border-box;
    overflow: scroll;
    transition: .3s;
  }
  .nav-wrap.active {
    top: 9.838rem;
    height: calc(100vh - 9.838rem);
    pointer-events: auto;
    opacity: 1;
  }
  .nav-menu {
    flex-wrap: wrap;
  }
  .nav-menu li {
    width: 100%;
    margin-bottom: 3rem;
  }
  .nav-menu li.sp-w50 {
    width: 50%;
  }
  .nav-menu li.sp-w50 a {
    display: inline-block;
  }
  .nav-menu li.sp-w50:nth-of-type(1) {
    text-align: right;
  }
  .nav-menu li.sp-w50:nth-of-type(2) {
    text-align: left;
  }
  .nav-menu a {
    font-size: 3.2rem;
    justify-content: center;
  }

  .popmenu {
    top: 9.838rem;
    height: calc(100vh - 22.233rem);
    height: calc(100vh - 10.388rem);
  }
  .popmenu.active {
    z-index: 15;
  }
  .popmenu .lwrap {
    height: calc(100vh - 10.388rem);
  }
  .popmenu .lwrap p {
    margin-bottom: 7rem;
  }
  .popmenu .lwrap a {
    font-size: 5.2rem;
  }
  .popmenu .closeBtn {
    top: 6rem;
  }
  .popmenu .absolute {
    flex-wrap: wrap;
    padding: 0 3rem 1rem;
  }
  .popmenu .absolute .txt {
    font-size: 2.3rem;
    padding-bottom: 1.5rem;
  }
  .popmenu .absolute .copy {
    font-size: 2.2rem;
    position: relative;
    width: 100%;
    text-align: right;
    padding-top: 1.5rem;
  }
  .popmenu .absolute .copy::before {
    content: "";
    display: inline-block;
    width: 85%;
    height: 0.1rem;
    background-color: #4C4948;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.footer {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
  padding: 1rem 0;
}
.footer small {
  display: block;
  text-align: center;
  font-size: 1.4rem;
}
.footer > .flex {
  align-items: center;
  justify-content: space-between;
}
.footer > .flex .topNews {
  width: calc(100% - 18rem);
}
.footer > .flex .item:nth-child(2) {
  width: 18rem;
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .footer {
    padding: 1.5rem 0;
  }
  .footer > .flex {
    flex-wrap: wrap;
  }
  .footer > .flex .item {
    width: 100%;
  }
  .footer > .flex .item:nth-child(2) {
    width: 100%;
  }
  .footer small {
    font-size: 2.2rem;
    text-align: right;
    padding-top: 1.5rem;
    position: relative;
  }
  .footer small::before {
    content: "";
    display: inline-block;
    width: 85%;
    height: .1rem;
    background-color: #4C4948;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.dlist-01 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.dlist-01 dt {
  width: 7rem;
}
.dlist-01 dd {
  width: calc(100% - 7rem);
}

/* トップページ
*******************/
.home .slide {
  height: 100vh;
}
.home .slide .item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
.home .slide .item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .slide .item:nth-child(1) {
  background-image: url("../img/top/mv-01.jpg");
}
.home .slide .item:nth-child(2) {
  background-image: url("../img/top/mv-02.jpg");
}
.home .slide .item:nth-child(3) {
  background-image: url("../img/top/mv-03.jpg");
}
.home .slide .item:nth-child(4) {
  background-image: url("../img/top/mv-04.jpg");
}
.home .slide .item:nth-child(5) {
  background-image: url("../img/top/mv-05.jpg");
}
.home .slide .item h3 {
  font-size: 2.8rem;
  font-weight: 500;
  color: #ffffff;
}
.home .slide .slick-prev {
  display: none;
}
.home .slide .slick-next {
  background: url("../img/common/ico-slide-arrow.png") no-repeat center;
  background-size: 100% 100%;
  width: 7.2rem;
  height: 8.2rem;
  top: inherit;
  right: 7.2rem;
  bottom: 12rem;
  transform: inherit;
}
.home .slide .slick-next::before {
  content: none;
}
.home .topNews-list li a {
  color: #333333;
}

/* トップページ以外
*******************/
body:not(.home) #contents {
  padding-top: 13rem;
  padding-bottom: 6rem;
}

/* aboutページ
*******************/
.page-about .cont01 > .flex {
  justify-content: space-between;
}
.page-about .cont01 > .flex .item:nth-child(1) {
  width: 44.5%;
}
.page-about .cont01 > .flex .item:nth-child(2) {
  width: 50.5%;
}
.page-about .cont01 > .flex .item:nth-child(2) > * {
  max-width: 65rem;
}

/* contactページ
*******************/
.page-contact .container {
  position: relative;
}
.page-contact .container::after {
  content: "";
  display: block;
  background: url("../img/contact/img01.jpg") no-repeat center;
  background-size: cover;
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.page-contact .cont01 .lwrap > .fl-r {
  max-width: 62rem;
  width: 100%;
}
.page-contact form input {
  font-size: 1.4rem;
  padding: 1rem;
  background-color: #F2F2F2;
  width: 100%;
}
.page-contact form textarea {
  width: 100%;
  height: 16rem;
  padding: 1rem;
  background-color: #F2F2F2;
}
.page-contact .btn {
  text-align: center;
}
.page-contact .btn input {
  width: 13rem;
  background-color: #707070;
  color: #ffffff;
  padding: .5rem 0;
}

/* NEWS 一覧 ページ
*******************/
.post-type-archive-news .cont01 .flex.col-3 .item {
  width: 31%;
  margin-bottom: 7rem;
}
.post-type-archive-news .cont01 .flex.col-3 .item a {
  text-decoration: none;
  color: #333333;
}
.post-type-archive-news .cont01 .flex.col-3 .item .img {
  line-height: 0;
  margin-bottom: 2rem;
}
.post-type-archive-news .cont01 .flex.col-3 .item .txt h4 {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: 1px solid #cccccc;
}
.post-type-archive-news .cont01 .flex.col-3 .item .txt p {
  font-size: 1.6rem;
  line-height: 1.857;
  font-feature-settings: "palt";
}

/* NEWS 詳細 ページ
*******************/
.single .cont01 .postCont {
  justify-content: space-between;
}
.single .cont01 .postCont .img {
  width: 48%;
}
.single .cont01 .postCont .img img {
  margin-top: 2rem;
}
.single .cont01 .postCont .img img:first-child {
  margin-top: 0;
}
.single .cont01 .postCont .img p.alignRight {
  font-size: 1.2rem;
  line-height: 1.2;
  color: #4C4948;
}
.single .cont01 .postCont .txt {
  width: 48%;
}
.single .cont01 .postCont .txt-inner {
  position: sticky;
  top: 0;
  left: 0;
  padding: 10rem 0 6rem;
  margin-top: -10rem;
}
.single .cont01 .postCont .txt .pagettl {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.single .cont01 .postCont .txt p {
  margin-bottom: 2rem;
}

/* category 一覧 ページ
*******************/
.category .bnr, .archive.date .bnr {
  margin-bottom: 3.5rem;
}
.category .bnr:last-child, .archive.date .bnr:last-child {
  margin-bottom: 0;
}
.category .bnr a, .archive.date .bnr a {
  position: relative;
  display: block;
  color: #ffffff;
  line-height: 0;
}
.category .bnr a img, .archive.date .bnr a img {
  height: auto;
}
.category .bnr p, .archive.date .bnr p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 2.6rem;
  width: 100%;
  text-align: center;
}

.breadcrumbs a {
  text-decoration: none;
  color: #333333;
  font-size: 1rem;
  font-weight: 500;
}

.error404 .cont01 h3 {
  font-size: 2.6rem;
  font-weight: 500;
}
.error404 .cont01 h3 .small {
  font-size: 1.6rem;
}

.no-results h3 {
  font-size: 2.6rem;
  font-weight: 500;
}
.no-results h3 .small {
  font-size: 1.6rem;
}

.btn01 a {
  text-decoration: none;
  display: inline-block;
  font-size: 1.6rem;
  color: #333333;
  padding-bottom: 1rem;
  position: relative;
}
.btn01 a::after {
  content: "";
  display: inline-block;
  width: 6rem;
  height: .2rem;
  background-color: #333333;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateY(0%) translateX(-50%);
}

@media screen and (max-width: 1430px) {
  .lwrap {
    margin: 0 1.5rem;
  }
}
@media screen and (max-width: 1360px) {
  .page-contact .container::after {
    width: 48%;
  }
  .page-contact .cont01 .lwrap > .fl-r {
    width: 48%;
  }
}
@media screen and (max-width: 1030px) {
  .lwrap2 {
    margin: 0 1.5rem;
  }
}
/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  html {
    font-size: 1.33333vw;
  }

  p, a, li, dd, dt, th, td {
    font-size: 2.6rem;
    line-height: 1.923;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .tel a {
    pointer-events: auto;
  }

  .sp-mt-0 {
    margin-top: 0rem !important;
  }

  .sp-mb-0 {
    margin-bottom: 0rem !important;
  }

  .sp-mt-5 {
    margin-top: 0.5rem !important;
  }

  .sp-mb-5 {
    margin-bottom: 0.5rem !important;
  }

  .sp-mt-10 {
    margin-top: 1rem !important;
  }

  .sp-mb-10 {
    margin-bottom: 1rem !important;
  }

  .sp-mt-15 {
    margin-top: 1.5rem !important;
  }

  .sp-mb-15 {
    margin-bottom: 1.5rem !important;
  }

  .sp-mt-20 {
    margin-top: 2rem !important;
  }

  .sp-mb-20 {
    margin-bottom: 2rem !important;
  }

  .sp-mt-25 {
    margin-top: 2.5rem !important;
  }

  .sp-mb-25 {
    margin-bottom: 2.5rem !important;
  }

  .sp-mt-30 {
    margin-top: 3rem !important;
  }

  .sp-mb-30 {
    margin-bottom: 3rem !important;
  }

  .sp-mt-35 {
    margin-top: 3.5rem !important;
  }

  .sp-mb-35 {
    margin-bottom: 3.5rem !important;
  }

  .sp-mt-40 {
    margin-top: 4rem !important;
  }

  .sp-mb-40 {
    margin-bottom: 4rem !important;
  }

  .sp-mt-45 {
    margin-top: 4.5rem !important;
  }

  .sp-mb-45 {
    margin-bottom: 4.5rem !important;
  }

  .sp-mt-50 {
    margin-top: 5rem !important;
  }

  .sp-mb-50 {
    margin-bottom: 5rem !important;
  }

  .sp-mt-55 {
    margin-top: 5.5rem !important;
  }

  .sp-mb-55 {
    margin-bottom: 5.5rem !important;
  }

  .sp-mt-60 {
    margin-top: 6rem !important;
  }

  .sp-mb-60 {
    margin-bottom: 6rem !important;
  }

  .sp-mt-65 {
    margin-top: 6.5rem !important;
  }

  .sp-mb-65 {
    margin-bottom: 6.5rem !important;
  }

  .sp-mt-70 {
    margin-top: 7rem !important;
  }

  .sp-mb-70 {
    margin-bottom: 7rem !important;
  }

  .sp-mt-75 {
    margin-top: 7.5rem !important;
  }

  .sp-mb-75 {
    margin-bottom: 7.5rem !important;
  }

  .sp-mt-80 {
    margin-top: 8rem !important;
  }

  .sp-mb-80 {
    margin-bottom: 8rem !important;
  }

  .sp-mt-85 {
    margin-top: 8.5rem !important;
  }

  .sp-mb-85 {
    margin-bottom: 8.5rem !important;
  }

  .sp-mt-90 {
    margin-top: 9rem !important;
  }

  .sp-mb-90 {
    margin-bottom: 9rem !important;
  }

  .sp-mt-95 {
    margin-top: 9.5rem !important;
  }

  .sp-mb-95 {
    margin-bottom: 9.5rem !important;
  }

  .sp-mt-100 {
    margin-top: 10rem !important;
  }

  .sp-mb-100 {
    margin-bottom: 10rem !important;
  }

  .sp-mt-105 {
    margin-top: 10.5rem !important;
  }

  .sp-mb-105 {
    margin-bottom: 10.5rem !important;
  }

  .sp-mt-110 {
    margin-top: 11rem !important;
  }

  .sp-mb-110 {
    margin-bottom: 11rem !important;
  }

  .sp-mt-115 {
    margin-top: 11.5rem !important;
  }

  .sp-mb-115 {
    margin-bottom: 11.5rem !important;
  }

  .sp-mt-120 {
    margin-top: 12rem !important;
  }

  .sp-mb-120 {
    margin-bottom: 12rem !important;
  }

  .sp-mt-125 {
    margin-top: 12.5rem !important;
  }

  .sp-mb-125 {
    margin-bottom: 12.5rem !important;
  }

  .sp-mt-130 {
    margin-top: 13rem !important;
  }

  .sp-mb-130 {
    margin-bottom: 13rem !important;
  }

  .sp-mt-135 {
    margin-top: 13.5rem !important;
  }

  .sp-mb-135 {
    margin-bottom: 13.5rem !important;
  }

  .sp-mt-140 {
    margin-top: 14rem !important;
  }

  .sp-mb-140 {
    margin-bottom: 14rem !important;
  }

  .sp-mt-145 {
    margin-top: 14.5rem !important;
  }

  .sp-mb-145 {
    margin-bottom: 14.5rem !important;
  }

  .sp-mt-150 {
    margin-top: 15rem !important;
  }

  .sp-mb-150 {
    margin-bottom: 15rem !important;
  }

  .lwrap {
    margin: 0 3rem;
  }
  .lwrap2 {
    margin: 0 3rem;
  }

  /* txt 揃え
  *******************/
  .sp-alignCenter {
    text-align: center;
  }
  .sp-alignLeft {
    text-align: left;
  }
  .sp-alignRight {
    text-align: right;
  }

  .dlist-01 dt {
    width: 12rem;
  }
  .dlist-01 dd {
    width: calc(100% - 12rem);
  }

  /* トップページ
  *******************/
  .home .slide .item h3 {
    text-align: center;
    font-size: 4rem;
    line-height: 1.45;
  }
  .home .slide .item:nth-child(1) {
    background-image: url("../img/top/sp-mv-01.jpg");
  }
  .home .slide .item:nth-child(2) {
    background-image: url("../img/top/sp-mv-02.jpg");
  }
  .home .slide .item:nth-child(3) {
    background-image: url("../img/top/sp-mv-03.jpg");
  }
  .home .slide .item:nth-child(4) {
    background-image: url("../img/top/sp-mv-04.jpg");
  }
  .home .slide .item:nth-child(5) {
    background-image: url("../img/top/sp-mv-05.jpg");
  }
  .home .slide .slick-next {
    width: 10.1rem;
    height: 10.1rem;
    right: 3rem;
    bottom: 17rem;
  }
  .home .topNews-list {
    margin-bottom: 2rem;
  }
  .home .topNews-list li a {
    font-size: 2.3rem;
    text-decoration: none;
  }

  body:not(.home) #contents {
    padding-bottom: 26rem;
    padding-top: 20rem;
  }

  .breadcrumbs {
    padding-bottom: 1.5rem;
  }
  .breadcrumbs a {
    font-size: 2.3rem;
  }
  .breadcrumbs span {
    font-size: 2.3rem;
  }

  /* aboutページ
  *******************/
  .page-about .cont01 .lwrap {
    margin: 0 7rem;
  }
  .page-about .cont01 > .flex {
    flex-wrap: wrap;
  }
  .page-about .cont01 > .flex .item:nth-child(1) {
    width: 100%;
    margin-bottom: 6rem;
  }
  .page-about .cont01 > .flex .item:nth-child(1) img {
    width: 100%;
  }
  .page-about .cont01 > .flex .item:nth-child(2) {
    width: 100%;
  }

  /* contactページ
  *******************/
  .page-contact .container::after {
    background-image: url("../img/contact/sp-img01.jpg");
    width: 100%;
    z-index: -1;
  }
  .page-contact .cont01 .lwrap > .fl-r {
    width: 100%;
    float: none;
    max-width: 100%;
  }
  .page-contact form input {
    font-size: 16px;
    padding: 10px;
  }
  .page-contact form textarea {
    font-size: 16px;
    padding: 10px;
  }
  .page-contact .btn input {
    width: 100%;
    max-width: 25.2rem;
    padding: 6px 0;
  }
  .page-contact .wpcf7-spinner {
    display: block;
  }

  .post-type-archive-news .cont01 .lwrap2 {
    margin: 0 7rem;
  }
  .post-type-archive-news .cont01 .flex.col-3 .item {
    width: 100%;
    margin-bottom: 13rem;
  }
  .post-type-archive-news .cont01 .flex.col-3 .item:last-child {
    margin-bottom: 0;
  }
  .post-type-archive-news .cont01 .flex.col-3 .item .img {
    margin-bottom: 4rem;
  }
  .post-type-archive-news .cont01 .flex.col-3 .item .img img {
    width: 100%;
  }
  .post-type-archive-news .cont01 .flex.col-3 .item .txt h4 {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    font-size: 3rem;
  }
  .post-type-archive-news .cont01 .flex.col-3 .item .txt p {
    font-size: 2.6rem;
    line-height: 1.923;
  }

  .single .cont01 .lwrap {
    margin: 0 7rem;
  }
  .single .cont01 .thumb {
    margin-bottom: 7rem;
  }
  .single .cont01 .postCont {
    flex-wrap: wrap;
  }
  .single .cont01 .postCont .img {
    width: 100%;
    order: 2;
  }
  .single .cont01 .postCont .img p.alignRight {
    font-size: 2rem;
    line-height: 1.35;
  }
  .single .cont01 .postCont .txt {
    width: 100%;
    order: 1;
    margin-bottom: 6.5rem;
  }
  .single .cont01 .postCont .txt-inner {
    padding: 0;
    margin-top: 0;
    position: static;
  }
  .single .cont01 .postCont .txt .pagettl {
    font-size: 2.6rem;
    line-height: 1.5;
    margin-bottom: 4.5rem;
  }
  .single .cont01 .postCont .txt p {
    margin-bottom: 5rem;
  }

  .category .bnr p, .archive.date .bnr p {
    font-size: 3.2rem;
    line-height: 1.5625;
  }
}

/*# sourceMappingURL=style.css.map */
