@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", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 500;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

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

strong {
  color: #000;
  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: 5;
  transform: translateY(-50%);
}
#side .tel {
  writing-mode: vertical-rl;
  background-color: #e60019;
  color: #fff;
  padding: 20px 0;
  /* 角を斜めにカット */
  --cut: 15px;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut));
}
#side .tel a {
  font-size: 25px;
  color: #fff;
  text-decoration: none;
  line-height: 1.3;
  gap: 15px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
}
#side .tel .keitai {
  display: flex;
  align-items: center;
  gap: 15px;
}
#side .tel .keitai a {
  font-size: 16px;
}
#side .tel a, #side .line a, #side .contact a {
  width: 100%;
  transition: all 0.5s ease-out;
}
#side .tel a:hover, #side .line a:hover, #side .contact a:hover {
  opacity: 0.6;
}
#side .tel a, #side .line a, #side .contact a {
  display: flex;
  align-items: center;
  justify-content: center;
}
#side .line, #side .contact {
  width: 65px;
}
#side .line img, #side .contact img {
  width: 60%;
  height: -moz-fit-content;
  height: fit-content;
}
#side .line a, #side .contact a {
  height: 70px;
  /* 角を斜めにカット */
  --cut: 15px;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut));
}
#side .line {
  margin-top: 30px;
}
#side .line a {
  background-color: #06c755;
}
#side .contact {
  margin-top: 10px;
}
#side .contact a {
  background-color: #4acaf7;
}
#side a {
  transition: all 0.5s ease-out;
}
#side a:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  #side {
    display: none;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header {
  position: relative;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
}
#header .top {
  position: absolute;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  z-index: 4;
  display: flex;
}
#header .logo {
  position: absolute;
  top: 50px;
  left: 60px;
}
#header .logo img {
  min-width: 160px;
}
#header .links ul {
  display: flex;
  justify-content: end;
}
#header .links li.contact a {
  background-color: #000;
}
#header .links a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#header .links a:hover {
  opacity: 0.6;
}
#header .links a {
  width: 167px;
  height: 47px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e60019;
  color: #fff;
}
#header .links a span {
  position: relative;
  line-height: 1.6;
}
#header .links a span::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  background-color: #fff;
  bottom: 0px;
  left: calc((100% - 50px) / 2);
  left: 0;
  z-index: 0;
  width: 0;
  transition: all 0.5s ease-out;
}
#header .links a span:hover::after {
  width: 100%;
}
#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;
}
#header .ccm-search-block-form .ccm-search-block-submit:hover {
  opacity: 0.6;
}
#header .ccm-search-block-form .ccm-search-block-submit {
  cursor: pointer;
}
@media (max-width: 1199px) {
  #header .logo {
    left: 30px;
  }
}
@media (max-width: 767px) {
  #header .top {
    height: 60px;
    padding-right: 60px;
  }
  #header .logo {
    padding-top: 5px;
    padding-bottom: 5px;
    left: 25px;
    top: 18px;
  }
  #header .logo img {
    max-height: 50px;
    min-width: 0px;
    width: auto;
  }
  #header .links {
    display: none;
  }
}

.right {
  margin-left: auto;
}

#gnav {
  padding: 10px 60px;
  margin-top: 15px;
  margin-left: 270px;
  position: relative;
}
#gnav::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  /* 角を斜めにカット */
  --cut: 15px;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut));
}
#gnav.m_fixed {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
}
html.ccm-toolbar-visible #gnav.m_fixed {
  top: 48px;
}

#gnav.m_fixed .top {
  width: 100%;
  height: 80px;
  align-items: center;
  display: flex;
  padding-top: unset;
}
#gnav.m_fixed a {
  display: flex;
  align-items: center;
}
#gnav.m_fixed a img {
  width: 300px;
  max-width: unset;
}
#gnav.m_fixed .logo {
  padding: 7px;
  display: flex;
  align-items: center;
  border-radius: 0 0 7px 7px;
}
#gnav.m_fixed .logo img {
  max-width: 300px;
}
#gnav.m_fixed #gnav > ul {
  padding-bottom: unset;
}
#gnav.m_fixed #gnav > ul > li > a {
  color: #2b4d90;
  text-shadow: none;
}
#gnav > ul {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
#gnav > ul > li {
  position: relative;
  transition: all 0.5s ease-out;
  display: flex;
  align-items: center;
  margin-left: 25px;
}
#gnav > ul > li:first-child {
  margin-left: unset;
}
#gnav > ul > li:first-child::before {
  display: none;
}
#gnav > ul > li::before {
  content: "";
  background-color: #fff;
  height: 1em;
  width: 1px;
  margin-right: 25px;
}
#gnav > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
}
#gnav > ul > li > a {
  transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#gnav > ul > li > a:hover {
  opacity: 0.6;
}
#gnav > ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  position: relative;
}
#gnav > ul > li > a::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  background-color: #fff;
  bottom: 0px;
  left: calc((100% - 50px) / 2);
  left: 0;
  z-index: 0;
  width: 0;
  transition: all 0.5s ease-out;
}
#gnav > ul > li > a:hover::after {
  width: 100%;
}
@media (min-width: 767px) {
  #gnav > ul > li:hover > ul, #gnav > ul > li:focus-within > ul {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  #gnav > ul > li ul {
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    width: -moz-fit-content;
    width: fit-content;
    opacity: 0;
    transition: all 0.5s ease-out;
    z-index: 1;
    background-color: #000;
    padding-top: 10px;
    top: 100%;
    left: 0;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  }
  #gnav > ul > li ul li {
    height: 35px;
    width: 133px;
  }
  #gnav > ul > li ul li a {
    transition: all 0.5s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.6;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-out;
  }
  #gnav > ul > li ul li a:hover {
    opacity: 0.6;
  }
  #gnav > ul > li ul li a {
    background-color: #000;
  }
}
@media (max-width: 1199px) {
  #gnav {
    padding: 10px 30px;
    --cut: 10px;
  }
  #gnav > ul > li > a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  #gnav {
    margin-left: unset;
    margin-top: unset;
    --cut: 0px;
  }
  #gnav > ul {
    flex-direction: column;
  }
  #gnav > ul > li {
    flex-grow: 0;
  }
  #gnav > ul > li::before {
    display: none;
  }
  #gnav > ul > li::after {
    display: none;
  }
  #gnav > ul > li > a {
    color: #fff;
  }
  #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;
  }
  #gnav > ul > li ul li a {
    transition: all 0.5s ease-out;
  }
  #gnav > ul > li ul li a:hover {
    opacity: 0.6;
  }
}

/* ----------------------------------------------
pagetop
------------------------------------------------- */
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  width: 50px;
  height: 50px;
  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: 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: -30px;
  right: 90px;
  z-index: 3;
  width: 60px;
  height: 60px;
  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 {
  margin-top: 130px;
}
#footer .inner {
  position: relative;
}
#footer .logo {
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
#footer .logo a {
  transition: all 0.5s ease-out;
}
#footer .logo a:hover {
  opacity: 0.6;
}
#footer .bottom {
  background-color: #000;
  padding: 40px 10px;
}
#footer .text {
  font-size: 18px;
  line-height: 1.6666666667;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
#footer #copyright {
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  margin-top: 35px;
}
#footer #fnav {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
#footer #fnav > ul {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;
}
#footer #fnav > ul > li {
  position: relative;
  transition: all 0.5s ease-out;
  display: flex;
  align-items: center;
  margin-left: 25px;
}
#footer #fnav > ul > li:first-child {
  margin-left: unset;
}
#footer #fnav > ul > li:first-child::before {
  display: none;
}
#footer #fnav > ul > li::before {
  content: "";
  background-color: #fff;
  height: 1em;
  width: 1px;
  margin-right: 25px;
}
#footer #fnav > ul > li > a {
  transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#footer #fnav > ul > li > a:hover {
  opacity: 0.6;
}
#footer #fnav > ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: #e2e7f5;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  position: relative;
  padding-bottom: 0.2em;
}
#footer #fnav > ul > li > a::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  background-color: #fff;
  bottom: 0px;
  left: calc((100% - 50px) / 2);
  left: 0;
  z-index: 0;
  width: 0;
  transition: all 0.5s ease-out;
}
#footer #fnav > ul > li > a:hover::after {
  width: 100%;
}
#footer #fnav > ul > li ul li a {
  transition: all 0.5s ease-out;
}
#footer #fnav > ul > li ul li a:hover {
  opacity: 0.6;
}
#footer #fnav > ul > li ul li a {
  text-decoration: none;
}
@media (max-width: 767px) {
  #footer {
    margin-top: 60px;
  }
  #footer .logo {
    width: 220px;
  }
  #footer .bottom {
    padding: 30px 10px;
  }
  #footer .text {
    font-size: 14px;
  }
  #footer #copyright {
    font-size: 11px;
  }
  #footer #fnav > ul {
    gap: 10px 25px;
  }
  #footer #fnav > ul > li {
    margin-left: unset;
  }
  #footer #fnav > ul > li::before {
    display: none;
  }
  #footer #fnav > ul > li > a {
    font-size: 15px;
  }
}

/* ----------------------------------------------
contactbnr
------------------------------------------------- */
.contactbnr {
  margin-bottom: 60px;
  background-image: url(../images/contact-bg.webp);
  background-position: center;
  background-size: cover;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 70px;
}
.contactbnr h2 {
  font-size: 71px;
  font-family: "Anybody", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 125;
  display: block;
  color: #fff;
  line-height: 1.4;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 30px;
}
.contactbnr h2 small {
  font-size: 27px;
  display: block;
  color: #fff;
  background-color: #000;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 50px;
  clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0 50%);
}
.contactbnr .inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.contactbnr .contents {
  display: flex;
  max-width: 1250px;
  gap: 40px 2%;
}
.contactbnr .tel-block,
.contactbnr .line,
.contactbnr .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 32%;
  text-align: center;
  padding: 30px 10px;
  --cut: 40px;
  clip-path: polygon(var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut));
}
.contactbnr .tel-block a,
.contactbnr .line a,
.contactbnr .contact a {
  transition: all 0.5s ease-out;
}
.contactbnr .tel-block a:hover,
.contactbnr .line a:hover,
.contactbnr .contact a:hover {
  opacity: 0.6;
}
.contactbnr .tel-block a,
.contactbnr .line a,
.contactbnr .contact a {
  text-decoration: none;
}
.contactbnr .title {
  font-size: 21px;
}
.contactbnr .tel-block {
  background-color: #e60019;
}
.contactbnr .tel-block a {
  font-size: 33px;
  letter-spacing: 0.04em;
  color: #fff;
  display: block;
  line-height: 1.6;
  margin-bottom: 7px;
}
.contactbnr .tel-block img {
  margin-right: 10px;
}
.contactbnr .line .icon, .contactbnr .contact .icon {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactbnr .line .btn, .contactbnr .contact .btn {
  max-width: 260px;
  width: 100%;
  display: block;
}
.contactbnr .line a, .contactbnr .contact a {
  width: 100%;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  font-size: 21px;
}
.contactbnr .line {
  background-color: #06c755;
}
.contactbnr .line a {
  color: #06c755;
}
.contactbnr .contact {
  background-color: #4acaf7;
}
.contactbnr .contact a {
  color: #00479d;
}
@media (max-width: 1199px) {
  .contactbnr h2 {
    font-size: 42px;
  }
  .contactbnr h2 small {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .contactbnr {
    margin-bottom: 40px;
    padding-bottom: 50px;
  }
  .contactbnr h2 {
    font-size: 22px;
  }
  .contactbnr h2 small {
    font-size: 15px;
  }
  .contactbnr .contents {
    display: block;
  }
  .contactbnr .title {
    font-size: 16px;
  }
  .contactbnr .tel-block,
  .contactbnr .line,
  .contactbnr .contact {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    --cut: 20px;
    padding: 20px 10px;
  }
  .contactbnr .tel-block {
    padding: 15px 10px;
  }
  .contactbnr .tel-block a {
    font-size: 24px;
    color: #fff;
    display: block;
    line-height: 1.6;
    margin-bottom: 7px;
  }
  .contactbnr .tel-block img {
    margin-right: 10px;
    width: 30px;
  }
  .contactbnr .line, .contactbnr .contact {
    margin-top: 25px;
  }
  .contactbnr .line .icon, .contactbnr .contact .icon {
    min-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    margin-bottom: 10px;
  }
  .contactbnr .line .btn, .contactbnr .contact .btn {
    max-width: 200px;
  }
  .contactbnr .line a, .contactbnr .contact a {
    width: 100%;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    font-size: 15px;
  }
}

/* ----------------------------------------------
instabnr
------------------------------------------------- */
.instabnr {
  padding: 0 10px;
}
.instabnr .inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  padding: 0;
  max-width: 1270px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  position: relative;
}
.instabnr .inner a {
  background-image: url(../images/insta-bg.jpg);
  background-position: center;
  background-size: cover;
  transition: all 0.5s ease-out;
}
.instabnr .inner a:hover {
  opacity: 0.6;
}
.instabnr .inner a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  z-index: 1;
}
.instabnr .inner a::before {
  content: "";
  width: calc(100% - 26px);
  height: calc(100% - 26px);
  border: rgba(0, 0, 0, 0.34) solid 13px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  box-sizing: unset;
}
@media (max-width: 767px) {
  .instabnr .inner {
    flex-wrap: wrap;
    height: 160px;
  }
  .instabnr .inner a {
    gap: 30px;
  }
  .instabnr .inner a::before {
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    border: rgba(0, 0, 0, 0.34) solid 7px;
  }
  .instabnr .insta-icon {
    width: 170px;
  }
  .instabnr .logo {
    width: 120px;
  }
}/*# sourceMappingURL=style.css.map */