@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: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #00479d;
  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;
}

/* ----------------------------------------------
works
------------------------------------------------- */
#works .contents {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 25px;
}
#works .contents .block a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#works .contents .block a:hover {
  opacity: 0.6;
}
#works .contents .block .image {
  margin-bottom: 6px;
}
#works .contents .block .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 76/57;
  width: 100%;
  height: 100%;
}
#works .contents .block .title {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 500;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #000;
  margin: 0 0 7px 3px;
}
#works .contents .block .cates {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-left: 1px;
}
#works .contents .block .cates .cate {
  background-color: #736357;
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 500;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #fff;
}
#works .contents .block .cates .cate:not(:has(a)) {
  padding: 0 12px;
}
#works .contents .block .cates .cate a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
  font-weight: 100;
  color: #fff;
}
@media (max-width: 999px) {
  #works .contents .block .image {
    margin-bottom: 10px;
  }
  #works .contents .block .title {
    font-size: 16px;
    margin: 0 0 5px 0;
  }
}
@media (max-width: 767px) {
  #works .contents .block .title {
    font-size: 14px;
  }
  #works .contents .block .cates .cate {
    font-size: 10px;
  }
  #works .contents .block .cates .cate:not(:has(a)) {
    padding: 0 5px;
  }
  #works .contents .block .cates .cate a {
    padding: 0 5px;
  }
}

/* ----------------------------------------------
news
------------------------------------------------- */
#news .contents {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
#news .contents article a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#news .contents article a:hover {
  opacity: 0.6;
}
#news .contents article time {
  background-color: #00479d;
  display: inline-block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  padding: 0 18px;
  margin-bottom: 15px;
}
#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: #00479d;
  margin-bottom: 8px;
}
#news .contents article .text {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
  font-weight: 100;
  font-size: 16px;
  line-height: 1.875;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (max-width: 999px) {
  #news .contents article time {
    padding: 0 10px;
    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 {
    -moz-column-gap: 6% !important;
         column-gap: 6% !important;
  }
  #news .contents article {
    width: calc(47% - 20px) !important;
  }
  #news .contents article time {
    margin-bottom: 10px;
  }
}

/* ----------------------------------------------
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 {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  background-color: #00479d;
  padding: 24px 1.5625% 10px 2.75%;
}
#header .top.remove {
  animation: remove 1s forwards;
}
#header .top.m_fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
  animation: m_fixed 1s forwards;
}
#header .logo {
  max-width: 228px;
}
#header .contents {
  display: flex;
  align-items: center;
  gap: 35.5px;
}
#header #gnav {
  margin-left: auto;
  align-items: center;
}
#header #gnav ul {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 10px 35.5px;
}
#header #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 #gnav ul .contact a {
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.54);
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 145px;
  height: 30px;
  color: #fff;
}
@media (max-width: 999px) {
  #header .top {
    padding: 10px;
  }
  #header #gnav ul {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  #header #gnav ul li a {
    font-size: 16px;
  }
  #header #gnav ul li a[href="/contact"] {
    font-size: 14px;
    width: 130px;
  }
}
@media (max-width: 767px) {
  #header .top {
    padding-right: 80px;
  }
  #header .contents {
    display: block;
  }
  #header #gnav ul:nth-child(2) {
    margin-top: 25px;
  }
  #header #gnav ul li a[href="/contact"] {
    width: unset;
    height: unset;
    background-color: unset;
    border: unset;
    justify-content: start;
    border-bottom: 1px solid #fff;
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  background-color: #e2e7f5;
}
#footer a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#footer a:hover {
  opacity: 0.6;
}
#footer .inner {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#footer .inner .left {
  padding: 109px 0 20px 6.6875%;
}
#footer .inner .left .logo {
  max-width: 380px;
  margin-bottom: 13px;
}
#footer .inner .left .data {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
  font-size: 18px;
  line-height: 1.5555555556;
  color: #00479d;
  margin-bottom: 4px;
}
#footer .inner .left .tel {
  margin-bottom: 23px;
}
#footer .inner .left .tel a {
  display: flex;
  align-items: center;
  -moz-column-gap: 11px;
       column-gap: 11px;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40.56px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #00479d;
}
#footer .inner .copyright {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: #00479d;
}
#footer .inner .right {
  background-color: #00479d;
  margin-left: auto;
  padding: 55px 7.1875% 20px 4.125%;
}
#footer .inner .right .top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: 17px;
  gap: 30px 126px;
  margin-bottom: 84px;
}
#footer .inner .right .top .title {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 61px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #fff;
  margin-top: 7px;
}
#footer .inner .right .top .title small {
  display: block;
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
  font-weight: 100;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
  margin: -7px 0 0 14px;
}
#footer .inner .right .top #fnav {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 103px;
       column-gap: 103px;
}
#footer .inner .right .top #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 .inner .right .links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px 14px;
}
#footer .inner .right .links ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 279px;
  height: 52px;
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
  font-weight: 100;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #fff;
  background-image: url(../images/arow.png);
  background-repeat: no-repeat;
  background-position: center right 30px;
  padding-right: 58px;
  /* &::after{
    content: "";
    width: 37px;
    aspect-ratio: 37/6;
    background: url(../images/arow.png)no-repeat center/cover;
  } */
}
#footer .inner .right .links ul li.privacy a {
  background-color: #b2c0e2;
}
#footer .inner .right .links ul li.contact a {
  background-color: #003067;
}
@media (max-width: 1300px) {
  #footer .inner .left,
  #footer .inner .right {
    padding: 40px 10px;
    align-content: center;
  }
  #footer .inner .right .links ul li a {
    width: 255px;
  }
}
@media (max-width: 999px) {
  #footer .inner .left,
  #footer .inner .right {
    padding: 30px 10px;
  }
  #footer .inner .left .data {
    font-size: 16px;
  }
  #footer .inner .left .tel a {
    font-size: 30px;
  }
  #footer .inner .right .top {
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin: 0 0 50px 0;
  }
  #footer .inner .right .top .title {
    font-size: 40px;
    margin: 0;
  }
  #footer .inner .right .top .title small {
    font-size: 16px;
    margin: 0;
  }
  #footer .inner .right .top #fnav {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  #footer .inner .right .top #fnav ul li a {
    font-size: 18px;
  }
  #footer .inner .right .links ul li a {
    width: 230px;
    height: 45px;
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  #footer .inner .right .copyright.sp-in {
    display: none;
  }
}
@media (max-width: 767px) {
  #footer .inner {
    flex-direction: column;
    align-items: center;
  }
  #footer .inner .left,
  #footer .inner .right {
    padding: 20px 10px;
  }
  #footer .inner .left .data {
    font-size: 14px;
  }
  #footer .inner .left .tel {
    margin-bottom: 0;
  }
  #footer .inner .left .tel a {
    font-size: 24px;
  }
  #footer .inner .left .copyright {
    display: none;
  }
  #footer .inner .copyright {
    font-size: 12px;
    text-align: center;
  }
  #footer .inner .right {
    width: 100%;
  }
  #footer .inner .right .top {
    margin-bottom: 20px;
    row-gap: 10px;
  }
  #footer .inner .right .top .title {
    font-size: 30px;
  }
  #footer .inner .right .top .title small {
    font-size: 14px;
  }
  #footer .inner .right .top #fnav ul li a {
    font-size: 16px;
  }
  #footer .inner .right .links {
    margin-bottom: 20px;
  }
  #footer .inner .right .links ul {
    justify-content: center;
  }
  #footer .inner .right .links ul li a {
    width: 200px;
    height: 40px;
    font-size: 12px;
    background-image: none;
    padding-right: 0;
  }
  #footer .inner .right .copyright.sp-in {
    color: #fff;
  }
}
@media (max-width: 500px) {
  #footer .inner .right .links ul li a {
    width: 130px;
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */