@charset "UTF-8";
html {
  /* ルートのフォントサイズを10px設定 */
  font-size: 62.5%;
}
@media(min-width:768px) {
  html {
    font-size: 65%;
  }
}
@media(min-width:1024px) {
  html {
    font-size: 70%;
  }
}
/* --- スクロールイン ---------------------------------------- */
.scrollin {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1200ms;
}
.scrollin_move {
  opacity: 1.0;
  transform: translate(0, 0);
}
.scrollin:nth-child(2) {
  transition-delay: 200ms;
}
.scrollin:nth-child(3) {
  transition-delay: 400ms;
}
.scrollin:nth-child(4) {
  transition-delay: 600ms;
}
.scrollin:nth-child(5) {
  transition-delay: 800ms;
}
.scrollin:nth-child(6) {
  transition-delay: 1000ms;
}
.scrollin:nth-child(7) {
  transition-delay: 1200ms;
}
.scrollin:nth-child(8) {
  transition-delay: 1400ms;
}
/* ---------------------------------- */
body {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #111111;
  text-indent: 0.1em;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.75;
}
@media(max-width:767px) {
  .sp_none {
    display: none;
  }
}
@media(min-width:768px) {
  .pc_none {
    display: none;
  }
}
/* ------- headder ------- */
#header {
  width: 100%;
}
.common {
  color: #FFFFFF;
  background-color: #000033;
}
.common span {
  display: block;
  padding: 10px;
}
#sp_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  height: 60px;
}
#sp_menu h1 img {
  width: 180px;
  margin: 14px 0 0 10px;
}
#sp_menu h1 {
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  height: 60px;
}
/*ドロワー*/
.drawer-hamburger {
  position: fixed;
  /*top:35px;*/
  z-index: 1;
}
.drawer-nav_box {
  position: absolute;
  top: 100px;
}
.drawer--right.drawer-open .drawer-hamburger {
  right: 10px;
  position: fixed;
  z-index: 4; /*margin-top: -35px;*/
}
.drawer--right .drawer-nav {
  right: -60%;
}
.drawer-nav {
  width: 60%;
  z-index: 3;
}
.drawer-menu {
  margin-top: 60px;
}
.drawer-menu > li {
  border-top: 1px solid #999;
}
.drawer-menu > li:last-of-type {
  border-bottom: 1px solid #999;
}
.drawer-menu-item {
  font-size: 1.6rem;
  padding: 20px;
}
.drawer-dropdown.open > .drawer-dropdown-menu {
  margin-bottom: 20px;
}
.drawer-dropdown-menu > li {
  font-size: 1.4rem;
  margin-left: 20px;
}
.drawer-overlay {
  z-index: 2;
  background-color: rgba(0, 0, 0, .5);
}
/* 固定 */
/*.logo_fixed {
    position: fixed;
    top: 0;
    padding: 0;
    width: 100%;
    z-index: 1;
}
.drawer_fixed {
    position: fixed;
    z-index: 1;
}*/
@media(min-width:768px) {
  .common span {
    max-width: 1024px;
    margin: 0 auto;
    padding: 15px 10px 15px
  }
  #sp_menu {
    display: none;
  }
  #pc_menu {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 30px;
    width: 95%;
    /*max-width: 1024px;*/
    margin: 0 auto;
    /*background-color: #fff;*/
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 9999;
    transform: translateX(-50%);
  }
  #pc_menu h1 {
    /*width:30%;*/
    margin-left: 10px;
  }
  #pc_menu h1 img {
    width: 100px;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
  }
  .pc_nav {
    margin-top: 18px;
    margin-right: 10px;
    filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.6));
    font-size: 0;
    letter-spacing: 0;
  }
  .pc_nav > li {
    display: inline-block;
    margin-left: 1em;
    position: relative;
    text-indent: 0;
    color: #ffffff;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    cursor: default;
    padding-bottom: 1em;
  }
  .pc_nav > li::after {
    content: "|";
    display: inline-block;
    margin-left: 1em;
  }
  .pc_nav > li:last-of-type::after {
    content: none;
    margin-left: 0;
  }
  .pc_nav > li span {
    margin-left: 0.5em;
    font-size: 0.8rem;
    position: relative;
    top: -0.25em;
    left: 0;
  }
  .pc_nav li a {
    color: #ffffff;
    display: inline-block; /*width: 100%;*/
  }
  .pc_nav li ul {
    display: none;
    position: absolute;
    top: 18px;
    left: 0;
  }
  .pc_nav li:hover ul {
    display: block;
  }
  .pc_nav li ul li a {
    margin-top: 10px;
    text-indent: 0.5em;
    white-space: nowrap;
    font-size: 1.2rem;
    display: inline-block;
    width: 100%;
  }
}
/*@media(min-width:768px) and ( max-width:900px) {
	.pc_nav > li:first-of-type{
		display: none;
	}
}*/
/* --main-- */
#main {
  width: 100%;
}
/* Contact */
#contact {
  background-image: url("../images/top/sp_footer.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 40px 0;
}
#contact h2 {
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  font-size: 2.1rem;
}
#contact span {
  display: block;
  font-size: 1.3rem;
  margin: 20px auto;
  line-height: 1.5em;
  width: 80%;
}
#contact .tel {
  font-family: 'Lato', sans-serif;
  display: inline-block;
  font-size: 1.8rem;
  color: #ffffff;
}
#contact .tel::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f095";
  padding-right: 0.5em;
}
#contact a.contact_form {
  font-family: 'Lato', sans-serif;
  display: inline-block;
  font-size: 1.6rem;
  border: 1px solid #ffffff;
  padding: 20px;
  color: #ffffff;
  margin-top: 30px;
  width: 60%;
  max-width: 300px;
}
#contact a.contact_form::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  padding-right: 0.5em;
}
.contact-title {
  width: 100%;
  list-style: none;
  text-align: center;
  /* cursor: pointer; */
  border: 1px solid #111111;
  /* margin: 0 1%; */
  padding: 2.0em 0;
  font-size: 1.4rem;
  line-height: 1.5em;
  background-color: #271e4e;
  color: #FFF;
}
/*#contact a.contact_form::after{
	content:"";
	 width: 0;
  height: 0;
  border-left: 5px solid #ffffff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
	display: inline-block;
	margin-left: 5px
}
*/
.contact-wrap {
  font-family: 'Lato', sans-serif;
  width: 100%;
  margin: 0 auto;
}
.contact-wrap ul li {
  width: calc(100% - 80px);
  margin: 10px auto;
}
.contact-wrap ul li a {
  display: block;
  font-size: 1.6rem;
  color: #fff;
  padding: 20px;
  border: solid 1px #ffffff;
}
.contact-wrap ul li a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  padding-right: 0.5em;
}
@media(min-width: 768px) {
  #contact {
    padding: 60px 0;
  }
  #contact {
    background-image: url("../images/top/pc_footer.jpg");
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* fotter */
#footer {
  width: 100%;
  text-align: center;
}
.address {
  margin: 3em 0;
  font-size: 1.3rem;
}
.address p {
  margin: 0.8em 0;
}
.footer_content {
  padding: 2em 0;
  background-color: #222222;
  color: #ffffff;
}
.footer_navi {
  width: 90%;
  margin: 0 auto;
}
.footer_navi li {
  display: inline-block;
  margin: 0 0.5em 1em 0;
}
.footer_navi li::after {
  content: "|";
  display: inline-block;
  margin-left: 0.5em;
}
.footer_navi li a {
  color: #ffffff;
}
.footer_navi li:last-of-type::after {
  content: none;
  margin-left: 0;
}
#footer small {
  display: block;
  text-align: center;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
}
p.sns-logo img {
  width: 20px;
  margin-bottom: 10px;
}
/* info */
.news-hidden {
  display: none;
}
.more-button-wrapper {
  text-align: center;
  margin-top: 2em;
}
#toggle-news-btn {
  padding: 0.5em 1.5em;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  border: solid 1px #aaaaaa;
  color: #111111;
}
@media(min-width:768px) {
  .footer_navi {
    width: 50%;
    margin: 0 auto;
  }
  p.sns-logo img {
    width: 20px;
    margin-bottom: 20px;
  }
  .contact-wrap {
    font-family: 'Lato', sans-serif;
    width: 600px;
    margin: 0 auto;
  }
  .contact-wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .contact-wrap ul li {
    width: calc(100% / 2 - 10px);
    margin: 5px;
  }
  .contact-wrap ul li a {
    display: block;
    font-size: 1.4rem;
    color: #fff;
    padding: 25px;
    border: solid 1px #ffffff;
  }
  .contact-wrap ul li a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0e0";
    padding-right: 0.5em;
  }
  /* info */
  .news-hidden {
    display: none;
  }
  .more-button-wrapper {
    text-align: center;
    margin-top: 2em;
  }
  #toggle-news-btn {
    padding: 0.5em 1.5em;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    border: solid 1px #aaaaaa;
    color: #111111;
  }
}