@charset "UTF-8";
/* ///////////////////////////////////////////////

　サイト全般のスタイル

/////////////////////////////////////////////// */
/*
  FONT
----------------------------------------------- */
html {
  font-size: 10px;
}
@media screen and (max-width: 960px) {
  html {
    font-size: 8.5px !important;
  }
}

body {
  color: #000000;
  font-family: 'Noto Sans JP', sans-serif;
  /* font-weight: 600; */
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}

p {
  line-height: 1.8;
}

li, dt, dd, th, td, address {
  line-height: 1.6;
}

a {
  color: #000000;
}
a:hover {
  text-decoration: none;
}

i, em {
  font-style: normal;
}

input, textarea, select {
  font-size: 16px;
}

/*
  LAYOUT
----------------------------------------------- */
body.show_menu {
  overflow: hidden;
}

#wrapper {
  overflow: hidden;
  position: relative;
}

@media (max-width: 960px) {
  #contents {
    margin-top: 60px;
  }
}

.container {
  padding-left: calc(50% - 600px);
  padding-right: calc(50% - 600px);
}
@media screen and (max-width: 1040px) {
  .home .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/*
  SITE NAVI
----------------------------------------------- */
.snav {
  background: #fff;
}
.snav ul {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.snav ul li {
  display: table-cell;
  line-height: 1.1;
}
.snav ul li + li {
  padding-left: 1px;
}
.snav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 5px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  text-decoration: none;
  text-align: center;
}
.snav a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 12px;
  content: "";
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.09));
}
.snav a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  border-radius: 50%;
  font-size: .7rem;
  color: #fff;
}
.snav a small {
  margin-left: 1.5em;
  font-size: .8rem;
}
.snav li a.active {
  color: #fff !important;
}
.snav li a.active::after {
  display: none;
}
.snav li a.active i {
  background: #fff !important;
}
@media (max-width: 960px) {
  .snav {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
  }
  .snav a {
    height: 40px;
    border-width: 3px;
  }
  .snav a::after {
    height: 8px;
  }
  .snav a i {
    width: 13px;
    height: 13px;
    margin-right: 5px;
  }
  .snav a small {
    margin-left: 0;
    font-size: .7rem;
  }
}

/*
  HEADER
----------------------------------------------- */
#header {
  position: relative;
  padding-left: calc(50% - 600px);
  padding-right: calc(50% - 600px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  height: 115px;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 1040px) {
  #header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 960px) {
  #header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
  }
}
#header .site_id a{
  line-height: 1;
}
#header .site_id .site-id-img {
height: 40px;
}
#header .header_menu {
  margin-left: 30px;
}
@media (max-width: 960px) {
  #header .header_menu {
    display: none;
  }
  #header .site_id .site-id-img {
  height: 30px;
  }
}
#header .header_menu .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#header .header_menu .navi {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
#header .header_menu .navi li {
  padding: 0 10px;
  border-right: 1px solid #d8d8d8;
  line-height: 1;
  text-align: center;
}
#header .header_menu .navi li:first-child {
  border-left: 1px solid #d8d8d8;
}
#header .header_menu .navi a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
#header .header_menu .navi a:hover {
  text-decoration: underline;
}
#header .header_menu .fontsize {
  display: flex;
  align-items: center;
  margin-left: 20px;
  padding: 5px;
  background: #f3efef;
  border-radius: 2px;
  font-size: 1rem;
}
#header .header_menu .fontsize dt {
  padding: 0 8px 0 3px;
  white-space: nowrap;
}
#header .header_menu .fontsize dd {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 22px;
  border: 1px solid #5b5b5b;
  background: #fff;
  cursor: pointer;
}
#header .header_menu .fontsize dd:first-of-type {
  border-radius: 2px 0 0 2px;
}
#header .header_menu .fontsize dd:last-of-type {
  border-radius: 0 2px 2px 0;
}
#header .header_menu .fontsize dd.active {
  background: #5b5b5b;
  color: #fff;
}
#header .header_menu .phone {
  margin-top: 10px;
  text-align: right;
}
#header .header_menu .phone .tel {
  padding-left: 35px;
  background: url("../img/ico-tel.png") no-repeat 0 65%/19px;
  font-size: 3rem;
  font-weight: 300;
}



/*
  BUTTON MENU
----------------------------------------------- */
#btnMenu {
  display: none;
}
@media screen and (max-width: 960px) {
  #btnMenu {
    position: fixed;
    z-index: 101;
    top: 5px;
    right: 20px;
    display: block;
    border: 1px solid #000;
    border-radius: 3px;
    padding: 7px 5px;
    transition: all .2s;
    line-height: 1;
  }
  #btnMenu em {
    display: block;
    margin-top: 7px;
    font-size: 8px;
  }
  #btnMenu span {
    display: block;
    width: 26px;
    height: 2px;
    background: #000;
    margin: auto;
    transition: all .2s;
  }
  #btnMenu span + span {
    margin-top: 5px;
  }
  #btnMenu.active span:nth-child(1) {
    transform: translateY(7px) rotate(-135deg);
  }
  #btnMenu.active span:nth-child(2) {
    opacity: 0;
  }
  #btnMenu.active span:nth-child(3) {
    transform: translateY(-7px) rotate(135deg);
  }
}


/*
  下部ナビゲーション
----------------------------------------------- */
#bottom_nav {
  background: #f9f9f9;
  padding-left: calc(50% - 600px);
  padding-right: calc(50% - 600px);
  padding-top: 50px;
  padding-bottom: 40px;
}
@media screen and (max-width: 1040px) {
  #bottom_nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#bottom_nav a {
  text-decoration: none;
}
#bottom_nav a:hover {
  text-decoration: underline;
}
#bottom_nav dl {
  margin: 0;
}
#bottom_nav dl dt {
  margin-bottom: 1.5em;
  font-size: 1.6rem;
  font-weight: 500;
}
#bottom_nav dl dd {
  margin-top: .5em;
  font-size: 1.2rem;
}
#bottom_nav ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #e0e0e0;
  margin-top: 40px;
  padding-top: 30px;
}
#bottom_nav ul li {
  margin-top: 10px;
  font-size: 1.2rem;
}
#bottom_nav ul li::after {
  padding: 0 10px;
  content: "/";
  font-size: .8rem;
}
#bottom_nav ul li:last-child::after {
  display: none;
}
@media (max-width: 960px) {
  #bottom_nav {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  #bottom_nav dl {
    display: none;
  }
  #bottom_nav ul {
    border-top: none;
    margin-top: 0px;
    padding-top: 0px;
  }
  #bottom_nav ul li {
    font-size: 1.4rem;
  }
}

/*
  FOOTER
----------------------------------------------- */
#footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  background: #ddd;
  padding-left: calc(50% - 600px);
  padding-right: calc(50% - 600px);
  padding-top: 50px;
  padding-bottom: 50px;
  color: #fff;
}
@media screen and (max-width: 1040px) {
  #footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 960px) {
  #footer {
    padding-top: 30px;
    padding-bottom: 100px;
  }
}
#footer .fnav {
  order: 1;
  width: 50%;
  padding-right: 90px;
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
}
#footer .fnav li {
  margin-left: 1.5em;
}
#footer .fnav a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
}
#footer .fnav a:hover {
  text-decoration: underline;
}
@media (max-width: 960px) {
  #footer .fnav {
    order: 1;
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
    justify-content: flex-start;
  }
  #footer .fnav li {
    margin: 0 1.5em 0 0;
  }
}
#footer .info {
  order: 0;
  width: 50%;
}
#footer .info h1 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}
#footer .info h1 strong {
  display: inline-block;
  margin-top: .3em;
  font-size: 3.2rem;
}
#footer .info address {
  font-size: 1.6rem;
}
@media (max-width: 960px) {
  #footer .info {
    order: 1;
    width: 100%;
  }
}
#footer .copyright {
  order: 2;
  position: relative;
  top: -40px;
  width: 100%;
  padding-right: 90px;
  text-align: right;
  font-size: 10px;
  color: rgba(255, 255, 255, 1 );
}
@media (max-width: 960px) {
  #footer .copyright {
    position: static;
    margin-top: 20px;
    padding-right: 0;
    text-align: left;
  }
}
#pagetop {
  position: fixed;
  bottom: 32px;
  right: calc(50% - 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  opacity: .7;
}
@media (max-width: 1060px) {
  #pagetop {
    right: 20px;
  }
}
@media (max-width: 960px) {
  #pagetop {
    bottom: 80px;
    right: 15px;
    width: 48px;
    height: 48px;
  }
  #pagetop img {
    width: 10px;
  }
}

/*
  固定表示ボタン
----------------------------------------------- */
.fix_button {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ddd;
  padding: 15px 10px;
}
.fix_button ul {
  display: flex;
}
.fix_button ul li {
  position: relative;
  width: 50%;
  padding: 0 5px;
}
.fix_button ul li::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: -5px;
  width: 60px;
  transform: scale(0.5) translateY(-100%);
  border-right: 2px solid #848484;
}
.fix_button ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding-left: 30px;
  background: #fff;
  text-decoration: none;
  font-weight: 500;
}
.fix_button ul .access {
  font-size: 13px;
}
.fix_button ul .access::before {
  content: url("../img/ico-fix-access.png");
}
.fix_button ul .call {
  font-size: 14px;
}
.fix_button ul .call::before {
  content: url("../img/ico-fix-tel.png");
}
@media (max-width: 960px) {
  .fix_button {
    display: block;
  }
}

/*
  重要なお知らせ
----------------------------------------------- */
.important_information {
  padding-left: calc(50% - 600px);
  padding-right: calc(50% - 600px);
  background-color: #ddd;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1040px) {
  .important_information {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.important_information .ttl {
  display: flex;
  border-left: none;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 55px;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 15px;
  padding-left: 0;
  border-radius: 50px;
  background-color: #bbb;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  background-image: none;
}
.important_information .ttl::before {
  content: url("../img/ico-important.png");
  transform: scale(0.5);
}
.important_information ul {
  width: calc(100% - 200px);
  padding: 30px 0;
  padding-left: 70px;
}
.important_information ul li {
  display: flex;
  padding-left: 0;
  text-indent: 0;
}
.important_information ul li + li {
  margin-top: 10px;
}
.important_information ul .date {
  margin-right: 2em;
  color: #7c7c7c;
}
.important_information ul .title {
  color: #000;
}
.important_information ul li::before {
  display: none;
}

.subpage .important_information{
  margin: 0 calc(50% - 50vw);
  padding: 4px calc(50vw - 50% + 8px);
  width: 100vw;
}

@media (max-width: 960px) {
  .important_information {
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .important_information .ttl {
    width: inherit;
    height: 40px;
    margin-bottom: 30px;
  }
  .important_information .ttl::before {
    transform: scale(0.4);
    margin-right: -5px;
  }
  .important_information ul {
    width: 100%;
    padding: 0;
  }
  .important_information ul li {
    flex-direction: column;
  }
  .important_information ul .date {
    margin: 0 0 .3em;
  }
}

/*
 ボタン
----------------------------------------------- */
.btn {
  transition: all .2s;
  text-decoration: none;
}
.btn:hover {
  opacity: .8;
}
.btn:hover img {
  opacity: 1;
}
