@charset "UTF-8";
html {
  font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
  color: #534741;
}

a {
  transition: 0.8s;
}

a:hover {
  opacity: 0.6;
}

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

.wapper {
  width: 100%;
  overflow-x: hidden;
}

/* PC時のサイズ例 -- fontはrem、座標はpxか% -- */
header {
  position: fixed;
  width: 100%;
  z-index: 100;
}

header .inner {
  position: fixed;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 750px) {
  header .inner.pc_header {
    display: none;
  }
}

header .inner.sp_header {
  display: none;
}

@media screen and (max-width: 750px) {
  header .inner.sp_header {
    display: block;
  }
  header .inner.sp_header h1 {
    position: fixed;
    left: 10px;
    top: 10px;
  }
  header .inner.sp_header h1 img {
    width: 50%;
  }
}

header .inner .nav_list {
  display: flex;
  border-right: 1px solid #b1b1b1;
}

header .inner .nav_list li {
  font-size: 1.5rem;
  text-align: center;
}

header .inner .nav_list li a {
  font-weight: 700;
  color: #000;
  display: block;
  border-left: 1px solid #b1b1b1;
  padding: 5px 25px;
}

header .inner .btn {
  position: absolute;
  right: 0;
  top: 0;
}

header .inner .btn a {
  background-color: #ea6c00;
  font-size: 1.5rem;
  color: #fff;
  padding: 10px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .inner .btn a img {
  margin-right: 10px;
}

header.fixed {
  background-color: rgba(255, 255, 255, 0.5);
  padding-bottom: 10px;
}

header.fixed .inner {
  position: fixed;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 750px) {
  header.fixed .inner.pc_header {
    display: none;
  }
}

header.fixed .inner.sp_header {
  display: none;
}

@media screen and (max-width: 750px) {
  header.fixed .inner.sp_header {
    display: block;
  }
}

header.fixed .btn {
  position: absolute;
  right: 0;
  top: 0;
}

header.fixed .btn a {
  background-color: #ea6c00;
  font-size: 1.2rem;
  color: #fff;
  padding: 5px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

header.fixed .btn a img {
  margin-right: 10px;
}

.sec header {
  position: inherit;
  width: 100%;
  z-index: 100;
  padding-bottom: 20px;
}

.sec header.fixed {
  position: fixed;
}

.top_mv {
  position: relative;
}

@media screen and (max-width: 750px) {
  .top_mv {
    margin-top: 60px;
  }
}

.top_mv .inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  height: 100%;
}

.top_mv .inner h2 {
  position: absolute;
  top: 20%;
  left: 0%;
  font-size: 5rem;
  line-height: 2;
  color: #534741;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  .top_mv .inner h2 {
    font-size: 3rem;
    text-align: center;
  }
  .top_mv .inner h2 br {
    display: none;
  }
}

.top_mv .inner h3 {
  color: #534741;
  line-height: 2;
  position: absolute;
  top: 30%;
  left: 0%;
  font-size: 2rem;
  display: block;
}

@media screen and (max-width: 750px) {
  .top_mv .inner h3 {
    font-size: 1.6rem;
  }
}

.top_mv .inner h4 {
  color: #534741;
  line-height: 2;
  position: absolute;
  top: 35%;
  left: 0%;
  font-size: 2rem;
  display: block;
}

@media screen and (max-width: 750px) {
  .top_mv .inner h4 {
    font-size: 1.6rem;
  }
}

@keyframes toRight {
  100% {
    transform: translate(0, 0);
    background-position: left 0% center;
    color: #534741;
  }
}

main {
  display: flex;
  max-width: 1100px;
  margin: 120px auto;
}

@media screen and (max-width: 750px) {
  main {
    margin-top: calc(100vw * 50 / 375);
    margin-bottom: calc(100vw * 50 / 375);
    flex-direction: column;
  }
}

main .main_contents {
  width: 70%;
  border-top: 1px solid #e5e5e5;
}

@media screen and (max-width: 750px) {
  main .main_contents {
    width: 100%;
    padding-left: calc(100vw * 15 / 375);
    padding-right: calc(100vw * 15 / 375);
  }
}

main .main_contents .nrews_list {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
  padding-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  position: relative;
  transition: 0.8s;
}

main .main_contents .nrews_list:hover {
  opacity: 0.6;
}

main .main_contents .nrews_list a.link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

main .main_contents .nrews_list .left_box {
  width: 30%;
}

main .main_contents .nrews_list .right_box {
  width: 68%;
}

main .main_contents .nrews_list .right_box .title {
  font-size: 2rem;
  margin-bottom: 20px;
  margin-top: 20px;
  font-weight: 700;
}

main .main_contents .nrews_list .right_box .txt_box {
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 750px) {
  main .main_contents .nrews_list .right_box .txt_box {
    width: 140%;
    transform: translateX(-33%);
  }
}

main .main_contents .nrews_list .right_box .day_wapper {
  display: flex;
  align-items: center;
}

main .main_contents .nrews_list .right_box .day_wapper .day {
  color: #b2b2b2;
  font-size: 1.2rem;
}

main .main_contents .nrews_list .right_box .day_wapper .category {
  margin-left: 20px;
}

main .main_contents .nrews_list .right_box .day_wapper .category a {
  display: block;
  background-color: #ea6c00;
  color: #fff;
  padding: 3px 10px;
}

main .main_contents .single .day {
  color: #b2b2b2;
  font-size: 1.2rem;
  margin-bottom: 20px;
  margin-top: 20px;
}

main .main_contents .single .title {
  font-size: 2.2rem;
  position: relative;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 30px;
  font-weight: 700;
}

main .main_contents .single .title:before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 20%;
  height: 1px;
  content: '';
  background: #ea6c00;
}

main .main_contents .single .img_box {
  text-align: center;
  margin-bottom: 30px;
}

main .main_contents .single .txt_box {
  font-size: 1.8rem;
  line-height: 1.5;
}

main .main_contents .single .txt_box a {
  border-bottom: 1px solid #534741;
}

main .main_contents .single .pager_single {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  list-style: none;
  text-align: center;
  color: #3B4043;
  margin-bottom: 50px;
  margin-top: 40px;
  font-size: 1.2rem;
}

main .main_contents .single .pager_single .prev {
  margin-right: 50px;
  width: 24%;
}

main .main_contents .single .pager_single .next {
  margin-left: 50px;
  width: 24%;
}

main .main_contents .single .pager_single li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border: 1px solid #e5e5e5;
  color: #534741;
  position: relative;
}

main .main_contents .single .pager_single li.current a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border: none;
  color: #534741;
  position: relative;
}

main .main_contents .single .pager_single li a:hover .text-container .text-ov {
  backface-visibility: hidden;
  display: block;
  animation: up 0.9s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

main .main_contents .single .pager_single li a.none {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border: none;
  background: transparent;
  color: #3b4043;
  position: relative;
  padding-top: 10px;
}

main .main_contents .single .pager_single li a.none:hover .text-container .text-ov {
  backface-visibility: hidden;
  display: block;
  animation: up 0.9s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

main .main_contents .single .pager_single li a:after {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid #534741;
  border-right: 2px solid #534741;
  position: absolute;
  top: 50%;
}

@media (max-width: 750px) {
  main .main_contents .single .pager_single li a:after {
    display: none;
  }
}

main .main_contents .single .pager_single li a.none:after {
  display: none;
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid #534741;
  border-right: 2px solid #534741;
  position: absolute;
  top: 50%;
}

main .main_contents .single .pager_single .prev a:after {
  left: 15px;
  transform: translate(0, -50%) rotate(-135deg);
}

main .main_contents .single .pager_single .next a:after {
  right: 15px;
  transform: translate(0, -50%) rotate(45deg);
}

main .sid_baer {
  width: 26%;
  margin-left: 4%;
}

@media screen and (max-width: 750px) {
  main .sid_baer {
    width: 100%;
    margin-left: 0;
    padding-left: calc(100vw * 15 / 375);
    padding-right: calc(100vw * 15 / 375);
  }
}

main .sid_baer .menu {
  font-size: 1.8rem;
  line-height: 1.5;
}

main .sid_baer .menu h2 {
  font-size: 2rem;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
  margin-bottom: 10px;
  margin-top: 30px;
  font-weight: 700;
}

main .sid_baer .menu .wp-block-search__inside-wrapper {
  margin-top: 30px;
  display: flex;
}

main .sid_baer .menu .wp-block-search__inside-wrapper .wp-block-search__input {
  border: 1px solid #534741;
  width: 75%;
}

main .sid_baer .menu .wp-block-search__inside-wrapper .wp-block-search__button {
  background-color: #e5e5e5;
  border: 1px solid #534741;
  margin-left: 10px;
  font-size: 1.4rem;
  padding: 3px 5px;
  width: 25%;
  text-align: center;
}

@media screen and (max-width: 750px) {
  /* スマホ時のサイズ例 -- fontはcalc(vw)、座標はcalc(vw) -- */
  p {
    font-size: calc(100vw * 14 / 375);
    /* 14px */
  }
  /*　ハンバーガーボタン　*/
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger p.hmenu {
    color: #ea6c00;
    font-size: 1.2rem;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #ea6c00;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 12px;
  }
  .hamburger span:nth-child(2) {
    top: 18px;
  }
  .hamburger span:nth-child(3) {
    top: 24px;
  }
  .hamburger span:nth-child(4) {
    top: 30px;
  }
  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(2) {
    top: 25px;
    left: 6px;
    background: #ea6c00;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(3),
  .hamburger.active span:nth-child(4) {
    top: 25px;
    background: #ea6c00;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: -100%;
    left: 0;
    color: #fff;
    background: white;
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
  }
  nav.globalMenuSp.active {
    top: 50px;
    height: 100vh;
  }
  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
    text-align: left;
    font-size: 1.5rem;
    padding-left: 20px;
  }
  nav.globalMenuSp ul li a::before {
    content: "";
    display: block;
    width: 12px;
    height: 20px;
    background-image: url(../images/common/sp_nav_arrow.svg);
    background-size: cover;
    margin-right: 10px;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }
  nav.globalMenuSp ul li:hover {
    background: #ddd;
  }
  nav.globalMenuSp ul li a {
    display: flex;
    color: #534741;
    padding: 1em 0;
    text-decoration: none;
  }
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    opacity: 100;
  }
}

.page-content.none {
  font-size: 1.8rem;
}

.page-header.none .page-title {
  text-align: center;
  font-size: 2rem;
  margin: 10px 0;
}

.page-content.none input {
  border: 1px solid #534741;
  padding: 5px;
}

.page-content.none [type="submit"] {
  background-color: #e5e5e5;
  border: 1px solid #534741;
  margin-left: 10px;
  font-size: 1.4rem;
  padding: 6px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page-content.none [type="submit"] {
    padding: 10px 6px;
  }
}

.page-content.none #searchform {
  margin-top: 10px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 30px;
}

.services_mv {
  background-image: url(../images/news/mv.jpg);
}

@media screen and (max-width: 768px) {
  #searchform div {
    display: flex;
    align-items: center;
  }
  #searchform div .screen-reader-text {
    margin-right: 10px;
  }
}

.pc_hide {
  display: none !important;
}

@media screen and (max-width: 769px) {
  .pc_hide {
    display: block !important;
  }
}

@media screen and (max-width: 769px) {
  .sp_hide {
    display: none !important;
  }
}


.page-numbers{
  display: flex;
  justify-content: center;
}
.page-numbers li{
  margin: 0 20px 0 0;
}
.page-numbers li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #534741;
    color: #534741;
    position: relative;
    padding: 10px 14px;
}

.page-numbers li .page-numbers.current{
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #534741;
  color: #fff;
  position: relative;
  padding: 10px 14px;
  background-color: #534741;
}

.page-numbers li a.next{
  position: relative;
  padding: 10px 24px 10px 20px;
}
.page-numbers li a.prev{
  position: relative;
  padding: 10px 20px 10px 24px;
}
.page-numbers li a.next::after{
    content: '';
    width: 7px;
    height: 7px;
    border-top: 2px solid #534741;
    border-right: 2px solid #534741;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%) rotate(45deg);
}
.page-numbers li a.prev::after{
    content: '';
    width: 7px;
    height: 7px;
    border-top: 2px solid #534741;
    border-right: 2px solid #534741;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(0, -50%) rotate(230deg);
}



.execphpwidget ul li{
  line-height: 1.5;
  border-bottom: 1px dashed #e6e6e6;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.cat-item{
  line-height: 1.5;
  border-bottom: 1px dashed #e6e6e6;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.wp-block-archives li{
  line-height: 1.5;
  border-bottom: 1px dashed #e6e6e6;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.wp-block-archives li span{
  position: relative;
  display: block;
}


@media screen and (min-width: 751px) {
  main .sid_baer .menu li:first-of-type h2 {
    margin-top: 0;
  }
}
