@charset "utf-8";
/* COMMON
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
body {
  position: relative;
  overflow-x: hidden;
  color: #000;
  line-height: 1.75;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: .1rem;
}
.meiryo {
  font-family:'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}
.mincho {
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}
main {
  position: relative;
  margin-top: 168px;
  z-index: 1;
}
.wrapper {
  overflow: hidden;
}
.bg {
  background: #00479d;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  color: inherit;
  opacity: .7;
}
a:focus {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.container {
  width: 90%;
  max-width: 1575px;
  margin: auto;
}
.container.wide {
  max-width: 1770px;
}
.invisible {
  visibility: hidden;
}
.hidden_pc {
  display: none;
}
.hidden_sp {
  display: block;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@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;
  }
  main {
    margin-top: 70px;
  }
}
/* HEADER
-------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  z-index: 999;
}
header > .flex {
  align-items: center;
  padding: 10px 4% 16px;
}
header h1.logo a {
  line-height: 1.25;
}
header .logo a {
  display: block;
  color: #8e0f16;
  line-height: 1.7;
}
header .logo span {
  display: block;
  color: #000;
  font-size: 1.8rem;
  letter-spacing: 0;
}
header .logo img {
  width: 310px;
}
.hamburger {
  display: none;
}
.btnLogin a {
  padding: 25px;
  align-items: center;
  background: #e9eeea;
  line-height: 1;
  border-radius: 37px;
}
.btnLogin img {
  padding-right: 10px;
  width: 31px;
}
.btnLogin span {
  color: #8e0f16;
  font-size: 2.1rem;
  font-weight: 900;
}
.global-nav li {
  width: 20%;
  border-right: 1px solid #fff;
}
.global-nav li:last-child {
  border: none;
}
.global-nav .nav_item a {
  display: block;
  background: #8e0f16;
  color: #fff;
  text-align: center;
  padding: 15px;
  line-height: 1.75;
}
@media (max-width: 1200px) {
  .global-nav .nav_item a {
    padding: 17px 15px;
    font-size: 1.8rem;
  }
}
@media (max-width: 1000px) {
  .global-nav .nav_item a {
    padding: 22px 15px;
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  header {
    height: 70px;
  }
  header .flex {
    padding: 12px 10px 11px;
  }
  header .logo img {
    width: 200px;
  }
  header .logo span {
    font-size: 1.1rem;
  }
  .btnLogin {
    position: absolute;
    top: 0;
    right: 70px;
  }
  .btnLogin a {
    justify-content: center; 
    padding: 5px 0;
    width: 70px;
    height: 70px;
    text-align: center;
    border-radius: 0;
    box-sizing: border-box;
  }
  .btnLogin img {
    padding: 0;
    width: 25px;
  }
  .btnLogin span {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
  }
  .global-nav {
    position: fixed;
    right: 0;
    top: 70px;
    padding-bottom: 150px;
    width: 100%;
    height: 100vh;
    background-color: #8e0f16;
    z-index: 200;
    overflow-y: auto;
    display: none;
  }
  .hamburger {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: #8e0f16;
    text-align: center;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 300;
    transition: all 0.5s ease-in-out;
  }
  .global-nav ul {
    display: block !important;
    padding: 0;
  }
  .global-nav li {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #fff;
  }
  .global-nav li:last-child {
    border-bottom: 1px solid #fff;
  }
  .global-nav .nav_item a {
    padding: 15px 30px;
    font-size: 1.6rem;
  }
  .global-nav .nav_item a span {
    font-size: 2.2rem;
  }
  .global-nav .nav_contact {
    padding-top: 10px;
    text-align: center;
  }
  .global-nav .nav_contact a {
    padding: 10px 50px;
    font-size: 1.8rem;
  }  
  .hamburger__line {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 35px;
    height: 5px;
    background-color: #fff;
    transition: all .6s;
  }
  .hamburger__line--1 {
    top: 20px;
  }
  .hamburger__line--2 {
    top: 33px;
  }
  .hamburger__line--3 {
    top: 46px;
  }
  /* 表示された時用のCSS */
  .nav-open .global-nav {
    display: block;
  }
  .nav-open .hamburger::before {
    content: "";
  }
  .nav-open .black-bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 30px;
  }
  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 30px;
  }
}
/* common style
-------------------------------------------------------------- */
.ttl {
  font-size: 4.5rem;
  font-weight: 900;
  color: #8e0f16;
}
.btn a {
  display: block;
  padding: 20px 50px;
  border: 3px solid #8e0f16;
  border-radius: 37px;
  background: #fff;
  color: #8e0f16;
  width: 375px;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
  line-height: 1;
}
.btn a:hover {
  background: #8e0f16;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .sv h1 {
    font-size: 2.4rem;
  }
  .ttl {
    font-size: 2.2rem;
    letter-spacing: 0;
  }
  .btn a {
    padding: 15px 20px;
    border: 2px solid #8e0f16;
    width: 100%;
    font-size: 1.6rem;
  }
}



/* pagination
-------------------------------------------------------------- */
.pagination {
  padding: 50px 0;
  font-size: 2.2rem;
}
.pagination.detail .flex {
  justify-content: space-between;
}
.pagination .flex {
  justify-content: center;
}
a.page-numbers {
  align-items: center;
  margin: 0 4px 5px;
  width: 60px;
  height: 60px;
  border: solid 1px #8e0f16;
  color: #8e0f16;
  line-height: 1;
}
a.page-numbers.current {
  background: #8e0f16;
  color: #fff;
}
a.page-numbers:hover {
  color: #fff;
  background-color: #8e0f16;
  opacity: 1;
}
a.prev.page-numbers:hover,
a.next.page-numbers:hover {
  color: #8e0f16;
  background-color: transparent;
}
.pagination.detail a.page-numbers {
  justify-content: center;
}
@media (max-width: 767px) {
  .pagination {
    padding: 30px 0;
    font-size: 1.4rem;
  }
  a.page-numbers {
    margin: 0 3px 3px;
    width: 30px;
    height: 30px;
  }
}


/* footer
-------------------------------------------------------------- */
.bnrArea {
  padding: 60px 0;
}
.bnrArea .bnr a {
  display: block;
}
footer {
  padding: 80px 4%;
  border-top: 15px solid #8e0f16;
  background: #e9eeea;
}
footer > .flex {
  align-items: flex-start;
}
footer nav {
  justify-content: flex-start!important;
  width: 60%;
}
footer nav.areanav {
	width:100%;
}
footer nav > ul {
  padding-right: 50px;
}
footer nav li {
  padding-bottom: 20px;
}
footer nav li a {
  font-size: 2rem;
  letter-spacing: 0;
}
footer nav .sub-menu {
  margin: 20px 0 0 22px;
}
footer nav .sub-menu li {
  line-height: 1.5;
}
footer .contactBox {
  width: 40%;
  justify-content: flex-end;
}
footer .logo a {
  display: block;
  color: #8e0f16;
  font-size: 3.6rem;
  font-weight: 900;
}
footer .logo span {
  margin-bottom: 5px;
  display: block;
  color: #000;
  font-size: 1.5rem;
  letter-spacing: 0;
}
footer .copy {
  margin-top: 20px;
  font-size: 1.8rem;
  letter-spacing: 0;
  text-align: right;
}
/*page-top*/
#Pagetop {
  position: fixed;
  bottom: 30px;
  right: 3%;
  padding: 0px 10px;
  background: #8e0f16;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  z-index: 100;
}
@media (max-width: 1500px) {
  footer {
    padding: 50px 4%;
  }
  footer nav li a {
    font-size: 1.6rem;
  }
  footer .copy {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .bnrArea {
    padding: 40px 0;
  }
  footer {
    padding: 40px 4% 20px;
    border-top: 10px solid #8e0f16;
  }
  footer nav {
    justify-content: flex-start!important;
    width: 100%;
    order: 1;
  }
  footer nav > ul {
    padding-right: 0;
    width: 100%;
  }
  footer nav li {
    padding-bottom: 5px;
  }
  footer nav li a {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  footer nav .sub-menu {
    margin: 5px 0 0 15px;
  }
  footer .contactBox {
    width: 100%;
    justify-content: flex-start;
  }
  footer .logo a {
    margin-bottom: 20px;
    font-size: 2.6rem;
    line-height: 1.2;
  }
  footer .logo span {
    font-size: 1.2rem;
  }
  footer .copy {
    margin-top: 20px;
    font-size: 1.2rem;
    letter-spacing: 0;
    text-align: center;
  }
}
