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

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

/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #141437;
  font-size: 16px;
  line-height: 2;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #141437;
  font-weight: bold;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

strong {
  color: #4bb2f8;
  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 {
  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: 4;
  transform: translateY(-50%);
}
#side li + li {
  margin-top: 20px;
}
#side a {
  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: relative;
}
#header .top {
  position: relative;
  width: 100%;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  align-items: center;
}
#header .logo img {
  min-width: 160px;
}
#header .links a {
  text-decoration: none;
  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 {
  transition: all 0.5s ease-out;
  cursor: pointer;
}
#header .ccm-search-block-form .ccm-search-block-submit:hover {
  opacity: 0.6;
}
@media (max-width: 1450px) {
  #header .top {
    padding: 0 10px;
  }
  #header .links ul li {
    width: 140px;
    height: 55px;
  }
}
@media (max-width: 1199px) {
  #header .top {
    height: 80px;
  }
  #header .links {
    display: none;
  }
}
@media (max-width: 767px) {
  #header .top {
    height: 60px;
    padding-right: 60px;
  }
  #header .logo {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #header .logo img {
    max-height: 50px;
    min-width: 0px;
    width: auto;
  }
}

.links {
  margin-left: 30px;
}
.links ul {
  display: flex;
}
.links ul li {
  width: 160px;
  height: 60px;
}
.links ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-out;
  background-color: #73ccc5;
  border-radius: 0 10px 10px 0;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.links ul li a:hover {
  opacity: 0.6;
}
.links ul li a img {
  margin-left: 3px;
}
.links ul .entry a {
  background-color: #4bb2f8;
  border-radius: 10px 0 0 10px;
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
}

#gnav {
  margin-left: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  flex-shrink: 0;
  padding-left: 20px;
}
#gnav > ul {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  gap: 10px 35px;
}
#gnav > ul > li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.5s ease-out;
  /* &.current {
    border-top: solid 5px #e99100;
  } */
}
#gnav > ul > li.parent > a::after {
  content: "";
  width: 10px;
  aspect-ratio: 10/7;
  background: url(../images/h-nav-arrow.webp) no-repeat center/cover;
}
#gnav > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
}
#gnav > ul > li > a {
  transition: all 0.5s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: #141437;
  display: flex;
  align-items: center;
}
#gnav > ul > li > a:hover {
  opacity: 0.6;
}
#gnav > ul > li > a img {
  margin-left: 3px;
}
#gnav > ul > li ul {
  position: absolute;
  top: 100%;
  visibility: hidden;
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease-out;
  z-index: 1;
  width: 220px;
  border: 1px solid #141437;
  border-radius: 10px;
  padding: 30px 15px;
  margin-top: 15px;
  background-color: #fff;
}
#gnav > ul > li ul li:nth-child(n+2) {
  margin-top: 20px;
}
#gnav > ul > li ul li a {
  transition: all 0.5s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #141437;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: left;
  justify-content: space-between;
  transition: all 0.5s ease-out;
}
#gnav > ul > li ul li a:hover {
  opacity: 0.6;
}
#gnav > ul > li ul li a::after {
  content: "";
  background-image: url("../images/h-nav-arrow2.webp");
  width: 24px;
  height: 24px;
}
@media (max-width: 1450px) {
  #gnav > ul {
    gap: 10px 25px;
  }
  #gnav > ul > li > a {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  #gnav > ul > li ul {
    width: 100%;
    background-color: unset;
    border: unset;
  }
  #gnav > ul > li ul li a::after {
    display: none;
  }
}
@media (max-width: 1199px) {
  #gnav > ul {
    flex-direction: column;
  }
  #gnav > ul > li {
    flex-grow: 0;
  }
  #gnav > ul > li::after {
    display: none;
  }
  #gnav > ul > li > a {
    color: #fff;
  }
  #gnav > ul > li > a img {
    display: 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;
  }
}

/* ----------------------------------------------
pagetop
------------------------------------------------- */
/*
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  width: 50px;
  height: 50px;
  @include opacity();
  @include sp {
    //display: none !important;
    bottom: 55px;
    right: 10px;
    width: 40px;
    height: 40px;
    a {
    }
  }
}
*/
/*マウスオーバー時画像切り替え

#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  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: 0px;
  right: -110px;
  z-index: 3;
  width: 60px;
  height: 60px;
  transition: all 0.5s ease-out;
}
#pagetop:hover {
  opacity: 0.6;
}
@media (max-width: 1450px) {
  #pagetop {
    right: 20px;
    top: -80px;
  }
}
@media (max-width: 767px) {
  #pagetop {
    top: -50px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  padding-bottom: 30px;
}
#footer .inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 0px 20px;
}
#footer .logo {
  margin-bottom: 20px;
}
#footer .logo a {
  transition: all 0.5s ease-out;
}
#footer .logo a:hover {
  opacity: 0.6;
}
#footer .bottom {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
#footer .privacy {
  font-size: 10px;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #141437;
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#footer .privacy:hover {
  opacity: 0.6;
}
#footer #copyright {
  font-size: 10px;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
#footer #fnav {
  margin-left: auto;
}
#footer #fnav > ul {
  display: flex;
}
#footer #fnav > ul > li > a {
  transition: all 0.5s ease-out;
  text-decoration: none;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #141437;
}
#footer #fnav > ul > li > a:hover {
  opacity: 0.6;
}
#footer #fnav > ul > li:nth-child(2) {
  margin-left: 20px;
}
#footer #fnav > ul > li:nth-child(n+3) {
  margin-left: 35px;
}
#footer #fnav > ul > li ul li a {
  transition: all 0.5s ease-out;
  text-decoration: none;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #141437;
  position: relative;
  padding-left: 10px;
}
#footer #fnav > ul > li ul li a:hover {
  opacity: 0.6;
}
#footer #fnav > ul > li ul li a::before {
  content: "";
  background-color: #4bb2f8;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 50%;
}
#footer #fnav .f-links {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 50px;
}
#footer #fnav .f-links ul {
  display: flex;
}
#footer #fnav .f-links ul li {
  width: 160px;
  height: 60px;
}
#footer #fnav .f-links ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-out;
  background-color: #73ccc5;
  border-radius: 0 10px 10px 0;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-decoration: none;
}
#footer #fnav .f-links ul li a:hover {
  opacity: 0.6;
}
#footer #fnav .f-links ul li a img {
  margin-left: 3px;
}
#footer #fnav .f-links ul .entry a {
  background-color: #4bb2f8;
  border-radius: 10px 0 0 10px;
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
}
@media (max-width: 767px) {
  #footer {
    margin-top: 90px;
  }
  #footer .bottom {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
  }
  #footer .bottom .privacy {
    margin-bottom: 10px;
  }
  #footer .bottom #copyright {
    font-size: 12px;
  }
  #footer .inner .logo {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  #footer #fnav {
    margin-left: auto;
    margin-right: auto;
  }
  #footer #fnav > ul {
    /* display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto; */
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 5%;
  }
  #footer #fnav > ul > li {
    width: 40%;
  }
  #footer #fnav > ul > li a {
    font-size: 16px;
  }
  #footer #fnav > ul > li:nth-child(2) {
    margin-left: 0;
  }
  #footer #fnav > ul > li:nth-child(n+2) {
    margin-left: 0;
  }
  #footer #fnav > ul > li ul li a {
    font-size: 13px;
  }
  #footer #fnav > ul > li ul li a::before {
    width: 4px;
    height: 4px;
    top: 9px;
    left: 3px;
  }
  #footer #fnav .f-links {
    margin-top: 30px;
  }
  #footer #fnav .f-links ul li {
    width: 140px;
    height: 50px;
  }
  #footer #fnav .f-links ul li a {
    font-size: 14px;
  }
  #footer #fnav .f-links ul li a img {
    margin-left: 3px;
  }
  #footer #fnav .f-links ul .entry 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 {
  transition: all 0.5s ease-out;
  text-decoration: none;
}
.contactbnr .tel a:hover,
.contactbnr .contact a:hover {
  opacity: 0.6;
}/*# sourceMappingURL=style.css.map */