@charset "UTF-8";
@media (max-width: 767px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #000000;
  font-size: 16px;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #025871;
  font-weight: bold;
  text-decoration: underline;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
a:hover {
  opacity: 0.6;
}

strong {
  color: #0053aa;
  font-weight: bold;
}

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

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.red {
  color: #f00;
}

.opacity a {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

.big {
  font-size: 18px;
  line-height: 1.8;
}

/* ----------------------------------------------
side
------------------------------------------------- */
#side {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1;
  transform: translateY(-50%);
}
#side li + li {
  margin-top: 20px;
}
#side a {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#side a:hover {
  opacity: 0.6;
}
@media (max-width: 1399px) {
  #side {
    width: 7.1428571429vw;
  }
}
@media (max-width: 767px) {
  #side {
    display: none;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
}
html.ccm-toolbar-visible #header {
  top: 48px;
}
#header .top {
  display: flex;
  height: 65px;
  padding-left: 10px;
  padding-right: 10px;
  border-top: 10px solid #1a687f;
  text-align: center;
}
#header .logo {
  background-color: #1a687f;
  display: flex;
  align-items: center;
  margin-left: -10px;
  padding: 10px 30px;
  position: relative;
}
#header .logo::before {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  background-color: #1a687f;
  right: -70px;
  bottom: 0;
  clip-path: polygon(0 0%, 100% 0, 100% 0, 0 100%);
}
#header .logo img {
  max-width: 200px;
}
#header .links a {
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#header .links a:hover {
  opacity: 0.6;
}
#header .ccm-search-block-form .ccm-search-block-text {
  outline: none;
}
#header .ccm-search-block-form .ccm-search-block-submit {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  cursor: pointer;
}
#header .ccm-search-block-form .ccm-search-block-submit:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  #header .top {
    height: 53px;
    padding-right: 60px;
    border-top: 6px solid #1a687f;
  }
  #header .logo {
    padding-top: 5px;
    padding-bottom: 5px;
    padding: 3px 15px;
  }
  #header .logo img {
    max-height: 50px;
    width: auto;
    max-width: 170px;
  }
}

#gnav {
  margin-left: auto;
  margin-top: 10px;
  padding-left: 70px;
}
#gnav > ul {
  display: flex;
  justify-content: end;
  gap: 10px 25px;
  padding-right: 10px;
  flex-wrap: wrap;
}
#gnav > ul > li {
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#gnav > ul > li::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  background-color: #000;
  bottom: 0px;
  left: calc((100% - 50px) / 2);
  width: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#gnav > ul > li:hover::after {
  width: 50px;
}
#gnav > ul > li.contact > a {
  background-color: #ffffff;
  color: #1a687f;
  text-shadow: none;
  padding: 2px 30px;
}
#gnav > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
}
s #gnav > ul > li.current {
  border-top: solid 5px #e99100;
}
#gnav > ul > li > a {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-shadow: 0 0 5px rgba(4, 0, 0, 0.5), 0 0 5px rgba(4, 0, 0, 0.5), 0 0 5px rgba(4, 0, 0, 0.5);
}
#gnav > ul > li > a:hover {
  opacity: 0.6;
}
#gnav > ul > li ul {
  position: absolute;
  top: 100%;
  visibility: hidden;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  z-index: 1;
}
#gnav > ul > li ul li a {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media (max-width: 1199px) {
  #gnav > ul > li > a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  #gnav {
    margin-top: unset;
  }
  #gnav > ul {
    flex-direction: column;
    padding-right: 0px;
  }
  #gnav > ul > li {
    flex-grow: 0;
  }
  #gnav > ul > li::after {
    display: none;
  }
  #gnav > ul > li.contact > a {
    background-color: unset;
    color: #ffffff;
    padding: unset;
    padding-bottom: 5px;
  }
  #gnav > ul > li > a {
    color: #fff;
    text-shadow: none;
  }
  #gnav > ul > li ul {
    visibility: visible;
    opacity: 1;
    position: relative;
    padding: 0;
  }
  #gnav > ul > li ul li {
    border-bottom: 0px;
    border-top: 1px solid #000;
  }
}

@media (min-width: 768px) {
  #header.m_fixed .top {
    /* padding-top: 10px;
    padding-bottom: 10px; */
    background-color: #fff;
  }
  #header.m_fixed #gnav {
    color: #000000;
  }
  #header.m_fixed #gnav > ul > li:not(.contact) > a {
    color: #000000;
    text-shadow: unset;
  }
  #header.m_fixed #gnav > ul > li.contact {
    border: solid 1px #1a687f;
  }
}
/* ----------------------------------------------
pagetop
------------------------------------------------- */
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#pagetop:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  #pagetop {
    bottom: 55px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/*マウスオーバー時画像切り替え

#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  a {
    position: relative;
    display: block;
    width: 40px;
    height: 17px;
    img {
      @include transition();
      position: absolute;
      top: 0;
      &:last-child {
        opacity: 0;
      }
    }
    &:hover img:first-child {
      opacity: 0;
    }
    &:hover img:last-child {
      opacity: 1;
    }
  }
  @include sp {
   //display: none !important;
   bottom: 55px;
    right: 10px;
    width: 40px;
      height: 40px;
    a {

    }
  }
}

*/
#pagetop {
  position: absolute;
  top: -30px;
  right: 90px;
  z-index: 1;
  width: 60px;
  height: 60px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#pagetop:hover {
  opacity: 0.6;
}
@media (max-width: 1500px) {
  #pagetop {
    right: 20px;
  }
}
@media (max-width: 767px) {
  #pagetop {
    top: -20px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  background-image: url(../images/f-bg.jpg);
  background-position: center;
  background-size: cover;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}
#footer .inner {
  position: relative;
  padding: 80px 50px 30px 100px;
  display: flex;
  justify-content: space-between;
}
#footer .logo {
  margin-bottom: 20px;
  padding-top: 50px;
}
#footer .logo img {
  width: 195px;
}
#footer .logo a {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#footer .logo a:hover {
  opacity: 0.6;
}
#footer .logo2 {
  max-width: 190px;
  margin-top: 30px;
}
#footer .logo2 a {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#footer .logo2 a:hover {
  opacity: 0.6;
}
#footer .text {
  font-size: 19px;
  font-weight: 400;
  margin-top: 35px;
}
#footer #copyright {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 70px;
  text-align: end;
}
#footer #fnav {
  display: flex;
  gap: 150px;
}
#footer #fnav > ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#footer #fnav > ul > li > a {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-decoration: none;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
}
#footer #fnav > ul > li > a:hover {
  opacity: 0.6;
}
#footer #fnav > ul > li ul li::before {
  content: "―";
  padding: 0 10px;
}
#footer #fnav > ul > li ul li a {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-decoration: none;
}
#footer #fnav > ul > li ul li a:hover {
  opacity: 0.6;
}
#footer .contact {
  width: fit-content;
  text-decoration: none;
  border-radius: 7px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  border: #1a687f 1px solid;
  margin-top: 100px;
  margin-left: auto;
}
#footer .contact:hover {
  opacity: 0.6;
}
#footer .contact a {
  font-weight: 500;
  color: #1a687f;
  background-color: #fff;
  text-decoration: none;
  padding-right: 60px;
  width: 430px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/arrow.png);
  background-position: center right 80px;
  background-repeat: no-repeat;
  font-size: 22px;
}
@media (max-width: 1199px) {
  #footer .inner {
    padding: 70px 10px 30px 10px;
  }
  #footer .contact {
    max-width: 370px;
    width: 100%;
  }
  #footer .contact a {
    width: 100%;
    background-position: center right 50px;
    font-size: 16px;
  }
  #footer #fnav {
    gap: 100px;
  }
  #footer #fnav > ul > li > a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  #footer .inner {
    display: block;
    padding-top: 40px;
  }
  #footer .text {
    font-size: 15px;
    margin-bottom: 40px;
  }
  #footer .contact {
    margin-right: auto;
    max-width: 270px;
    margin-top: 60px;
  }
  #footer .contact a {
    font-size: 14px;
    padding-right: 40px;
    background-position: center right 30px;
  }
  #footer #copyright {
    text-align: center;
    margin-top: 40px;
  }
  #footer #fnav {
    gap: 70px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  #footer #fnav > ul > li > a {
    font-size: 15px;
  }
}

/* ----------------------------------------------
contactbnr
------------------------------------------------- */
.contactbnr {
  margin-bottom: 80px;
}
.contactbnr .inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.contactbnr .tel a,
.contactbnr .contact a {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-decoration: none;
}
.contactbnr .tel a:hover,
.contactbnr .contact a:hover {
  opacity: 0.6;
}
/* ----------------------------------------------
access
------------------------------------------------- */
.access {
  color: #ffffff;
}
.access .head {
  background-color: #1a687f;
  text-align: center;
  padding: 20px 10px;
}
.access h2 {
  font-size: 40px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
.access iframe {
  width: 100%;
  height: 520px;
  display: block;
}
@media (max-width: 767px) {
  .access h2 {
    font-size: 23px;
  }
  .access iframe {
    height: 270px;
  }
}

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