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

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

/* ----------------------------------------------
common
------------------------------------------------- */
html {
  scroll-padding-top: 100px;
}
html.ccm-toolbar-visible {
  scroll-padding-top: 148px;
}

body {
  color: #000000;
  font-size: 16px;
  line-height: 2;
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
}
body.open #header .top {
  z-index: unset;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #1cb8d4;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.5s ease-out;
}
a:hover {
  opacity: 0.6;
}

strong {
  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;
}

/* ----------------------------------------------
news
------------------------------------------------- */
/* .news-category{
  ul{
    display: flex;
    column-gap: 11px;
    li{
      @include fontyu(700);
      font-size: 18px;
      @include lh(18,20);
      color: #fff;
      text-align: center;
      min-width: 120px;
      min-height: 120px;
      &:not(:has(a)){
        align-content: center;
        padding: 10px;
      }
      a{
        text-decoration: none;
        @include opacity();
        color: #fff;
        align-content: center;
        display: block;
        height: 100%;
        padding: 10px;
      }
      &.news{
        background-color: #0c1345;
      }
      &.blog{
        background-color: #f99c02;
      }
      &.case{
        background-color: #1cb8d4;
      }
    }
  }
  @include tab{
    ul{
      li{
        min-width: unset;
        min-height: unset;
        font-size: 16px;
      }
    }
  }
  @include sp{
    ul{
      li{
        font-size: 14px;
      }
    }
  }
} */
#news .contents {
  display: flex;
  flex-wrap: wrap;
  row-gap: 60px;
}
#news .contents article:not(:has(a)) {
  /* display: flex;
  flex-direction: column;
  align-items: start; */
}
#news .contents article a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#news .contents article a:hover {
  opacity: 0.6;
}
#news .contents article a {
  /* display: flex;
  flex-direction: column;
  align-items: start; */
}
#news .contents article time {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  background-color: #025871;
  padding: 3px 19px;
  margin-bottom: 25px;
  display: inline-block;
}
#news .contents article .image {
  margin-bottom: 10px;
  aspect-ratio: 4/3;
}
#news .contents article .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#news .contents article .title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 9px;
}
#news .contents article .text {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
  font-size: 16px;
  line-height: 1.875;
  color: #000;
  font-weight: 100;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (max-width: 999px) {
  #news .contents {
    row-gap: 50px;
  }
  #news .contents article time {
    padding: 3px 15px;
    margin-bottom: 15px;
    font-size: 12px;
  }
  #news .contents article .title {
    font-size: 16px;
  }
  #news .contents article .text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  #news .contents {
    gap: 40px 6% !important;
  }
  #news .contents article {
    width: 47% !important;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
@keyframes m_fixed {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes remove {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
#header a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#header a:hover {
  opacity: 0.6;
}
#header .top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  z-index: 1;
  padding: 8px 1.625% 0 2.25%;
}
#header .top.remove {
  animation: remove 1s forwards;
}
#header .top.m_fixed {
  position: fixed;
  background-color: #fff;
  animation: m_fixed 1s forwards;
  z-index: 2;
}
html.ccm-toolbar-visible #header .top.m_fixed {
  top: 48px;
}
#header .top.m_fixed .right #gnav ul li:not(.btn) a {
  text-shadow: unset;
  color: #000;
}
#header .top.m_fixed .right #gnav ul li.btn a {
  background-color: #f99c02;
  color: #fff;
}
#header .top.m_fixed .right .bottom .coment {
  color: #0c1345;
}
#header .top.m_fixed .right .bottom .tel a {
  color: #0c1345;
}
#header .logo {
  max-width: 150px;
}
#header .right {
  margin: 17px 0 0 auto;
}
#header .right #gnav {
  margin-bottom: 10px;
}
#header .right #gnav ul {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 10px 35px;
}
#header .right #gnav ul li a {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 500;
  font-weight: 100;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
}
#header .right #gnav ul li:not(.btn) a {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.75), 0 0 5px rgba(0, 0, 0, 0.75), 0 0 5px rgba(0, 0, 0, 0.75);
}
#header .right #gnav ul li.btn {
  margin-left: -5px;
}
#header .right #gnav ul li.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 145px;
  height: 30px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.54);
  font-size: 16px;
  border: 1px solid #fff;
}
#header .right #gnav ul li.btn + .btn {
  margin-left: -21px;
}
#header .right #gnav ul li.recruit a {
  letter-spacing: 0.2em;
}
#header .right .bottom {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding-right: 5px;
}
#header .right .bottom .coment {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}
#header .right .bottom .tel a {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 999px) {
  #header .top {
    padding: 8px 10px 0;
  }
  #header .right #gnav ul {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  #header .right #gnav ul li a {
    font-size: 14px;
  }
  #header .right #gnav ul li.btn {
    margin-left: 0;
  }
  #header .right #gnav ul li.btn a {
    width: 95px;
    font-size: 12px;
  }
  #header .right #gnav ul li.btn + .btn {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  #header .top {
    padding-right: 70px;
  }
  #header .right #gnav ul li:not(.btn) a {
    text-shadow: unset;
  }
  #header .right #gnav ul li.btn a {
    width: unset;
    height: unset;
    background-color: unset;
    border-radius: unset;
    justify-content: start;
    border: unset;
    border-bottom: 1px solid #fff;
  }
  #header .right .bottom {
    display: none;
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  position: relative;
  padding: 84px 4.5% 90px 6.125%;
}
#footer a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#footer a:hover {
  opacity: 0.6;
}
#footer::before, #footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  mix-blend-mode: multiply;
}
#footer::before {
  background: url(../images/f-bg.webp) no-repeat center/cover;
}
#footer::after {
  background-color: rgba(12, 19, 69, 0.98);
}
#footer .top {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#footer .top .left .logo {
  max-width: 274px;
  margin-bottom: 28px;
}
#footer .top .left .data {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
  font-size: 18px;
  line-height: 1.5555555556;
  color: #fff;
  padding-left: 8px;
}
#footer .top .left .data ul {
  margin-top: 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 5px 10px;
}
#footer .top .left .data ul .webshop a {
  color: #234c8a;
  background-color: #fff;
  border-radius: 50px;
  padding: 5px 20px;
}
#footer .top .right {
  display: flex;
  -moz-column-gap: 95px;
       column-gap: 95px;
  margin-left: auto;
}
#footer .top .right .title {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600;
  font-size: 37px;
  line-height: 1.6;
  color: #fff;
  margin-top: -8px;
}
#footer .top .right .title small {
  display: block;
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
  font-size: 18px;
  line-height: 1.6;
}
#footer .top .right .contents {
  border-left: 1px solid #fff;
  padding-left: 52px;
}
#footer .top .right .contents #fnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 158px;
  padding: 0 87px 26px 14px;
}
#footer .top .right .contents #fnav ul li a {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 500;
  font-weight: 100;
  font-size: 20px;
  line-height: 2.45;
  color: #fff;
}
#footer .top .right .contents .links ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 270px;
  height: 48px;
  clip-path: polygon(16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px), 0 16px);
  background: url(../images/arow.webp) no-repeat center right 30px #fff;
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 500;
  font-weight: 100;
  font-size: 16px;
  line-height: 1.6;
  color: #234c8a;
}
#footer .top .right .contents .links ul li.recruit a {
  letter-spacing: 0.3em;
}
#footer .top .right .contents .links ul li:not(:last-child) {
  margin-bottom: 20px;
}
#footer .copyright {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  margin: -8px 0 0 5px;
}
@media (max-width: 1400px) {
  #footer {
    padding: 70px 20px;
  }
  #footer .top .left .data {
    padding-left: 0;
  }
  #footer .top .right {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
  #footer .top .right .contents {
    padding-left: 25px;
  }
  #footer .top .right .contents #fnav {
    padding: 0 10px 15px;
    -moz-column-gap: 90px;
         column-gap: 90px;
  }
}
@media (max-width: 999px) {
  #footer {
    padding: 50px 10px;
  }
  #footer .top .left .data {
    font-size: 16px;
  }
  #footer .top .right {
    flex-direction: column;
    row-gap: 10px;
  }
  #footer .top .right .title {
    font-size: 30px;
  }
  #footer .top .right .title small {
    font-size: 16px;
  }
  #footer .top .right .contents {
    padding-left: 10px;
  }
  #footer .top .right .contents #fnav {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  #footer .top .right .contents #fnav ul li a {
    font-size: 18px;
  }
  #footer .top .right .contents .links ul li a {
    font-size: 14px;
    min-width: unset;
    background-image: none;
    height: 40px;
  }
  #footer .top .right .contents .links ul li:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  #footer {
    padding: 30px 10px;
  }
  #footer .top {
    flex-direction: column;
    align-items: center;
    row-gap: 50px;
  }
  #footer .top .left .logo {
    margin-bottom: 20px;
  }
  #footer .top .left .data {
    font-size: 14px;
  }
  #footer .top .left .data ul {
    margin-bottom: 0;
  }
  #footer .top .right {
    margin-left: unset;
  }
  #footer .top .right .title {
    font-size: 24px;
  }
  #footer .top .right .title small {
    font-size: 14px;
  }
  #footer .top .right .contents {
    border-left: unset;
    padding-left: 0;
  }
  #footer .top .right .contents #fnav ul li a {
    font-size: 16px;
  }
  #footer .copyright {
    margin-top: 30px;
    font-size: 12px;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */