@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-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #f7ac3b;
  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: #fff;
  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;
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header 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 a:hover {
  opacity: 0.6;
}
#header .logo {
  padding: 0 10px 10px 2.0625%;
}
#header .logo.m_fixed {
  position: fixed;
  z-index: 2;
  background-color: #000;
  top: 0;
}
#header .top {
  display: flex;
  align-items: center;
  height: 105px;
  column-gap: 10px;
  background-color: #000;
}
#header .links {
  margin-left: auto;
  margin-bottom: 7px;
  padding-right: calc(1.875% + 120px);
}
#header .links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
#header .links ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 175px;
  height: 40px;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600;
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 999px) {
  #header .links ul li a {
    width: 160px;
    height: 35px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  #header .logo {
    margin-right: 90px;
    max-width: 50%;
  }
  #header .top {
    height: auto;
  }
  #header .links {
    display: none;
  }
}

/* ----------------------------------------------
buger
------------------------------------------------- */
body.buger-open {
  overflow: hidden;
}

#buger .btn {
  width: 120px;
  aspect-ratio: 1/1;
  background-color: #f8ac3c;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
  padding-top: 10px;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #fff;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
}
#buger .btn span {
  width: 45.8333333333%;
  height: 12px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
#buger .btn span::before, #buger .btn span:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  -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;
}
#buger .btn.open span {
  position: relative;
}
#buger .btn.open span::before, #buger .btn.open span::after {
  position: absolute;
}
#buger .btn.open span::before {
  transform: rotate(45deg);
}
#buger .btn.open span::after {
  transform: rotate(-45deg);
}
#buger .contents {
  width: 100%;
  background-color: #000;
  position: fixed;
  z-index: 4;
  top: 120px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
#buger .contents .content {
  display: flex;
  justify-content: center;
  padding: 220px 10px;
  column-gap: 5.6962025316%;
}
#buger .contents .content .right {
  margin-top: -19px;
}
#buger .contents .content .right .title {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600;
  font-size: 58px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 27px;
}
#buger .contents #gnav {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 48px;
}
#buger .contents #gnav ul.sp-in {
  display: none;
}
#buger .contents #gnav ul li a {
  text-decoration: none;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #fff;
}
#buger .contents #gnav ul li:not(:last-child) {
  margin-bottom: 14px;
}
#buger .contents #gnav ul li ul li {
  display: flex;
  align-items: center;
}
#buger .contents #gnav ul li ul li::before {
  content: "";
  width: 1em;
  height: 2px;
  margin-right: 9px;
  background-color: #fff;
}
#buger .contents #gnav ul li ul li a {
  font-size: 16px;
}
#buger .contents #gnav ul li ul li:not(:last-child) {
  margin-bottom: 0px;
}
#buger.close .contents {
  display: none;
}
@media (max-width: 999px) {
  #buger .contents .content .right .title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  #buger .contents #gnav {
    column-gap: 30px;
  }
  #buger .contents #gnav ul li a {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  #buger .btn {
    width: 90px;
    font-size: 15px;
  }
  #buger .contents .content {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
    padding: 50px 10px;
  }
  #buger .contents .content .logo {
    display: none;
  }
  #buger .contents .content .right {
    margin-top: 0;
  }
  #buger .contents .content .right .title {
    font-size: 30px;
    margin-bottom: 15px;
    display: none;
  }
  #buger .contents #gnav {
    gap: 14px 48px;
    column-gap: 40px;
    flex-direction: column;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  #buger .contents #gnav ul.sp-in {
    display: block;
  }
  #buger .contents #gnav ul li a {
    font-size: 16px;
  }
  #buger .contents #gnav ul li ul li a {
    font-size: 14px;
  }
}
@media (max-width: 425px) {
  #buger .contents .content .right {
    width: 80%;
  }
  #buger .contents #gnav {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  margin-top: max(-11.875vw, -190px);
  clip-path: polygon(0 min(11.875vw, 190px), 100% 0, 100% 100%, 0 100%);
  position: relative;
  padding: min(10.625vw, 170px) 2.1875% 30px 10.625%;
}
#footer::before, #footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#footer::before {
  background: url(../images/f-bg.jpg) no-repeat center/cover;
}
#footer::after {
  background-color: rgba(0, 76, 136, 0.9);
  mix-blend-mode: multiply;
}
#footer 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;
}
#footer a:hover {
  opacity: 0.6;
}
#footer .inner {
  display: flex;
  column-gap: 10px;
}
#footer .inner .left {
  margin-left: auto;
}
#footer .inner .left .top {
  display: flex;
  justify-content: end;
  column-gap: 50px;
  margin-bottom: 57px;
}
#footer .inner .left .top .block {
  padding-top: 5px;
}
#footer .inner .left .top .block .title {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600;
  font-size: 37px;
  line-height: 1.1351351351;
  color: #fff;
  margin-bottom: 13px;
}
#footer .inner .left .top .block .title small {
  display: block;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 6px;
}
#footer .inner .left .top .block .data {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.625;
  color: #fff;
}
#footer .inner .left .top .block .data a {
  font-weight: 400;
  color: #fff;
}
#footer .inner .left .top .block .data p:not(:first-child) {
  margin-top: 21px;
}
#footer .inner .left .top .block:nth-child(even) {
  position: relative;
  padding-left: 30px;
}
#footer .inner .left .top .block:nth-child(even)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
}
#footer .inner .left .links {
  margin-bottom: 46px;
}
#footer .inner .left .links ul {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  gap: 10px;
}
#footer .inner .left .links ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 270px;
  height: 70px;
  border: 0.31px solid #fff;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600;
  font-size: 23.85px;
  line-height: 1.6;
  color: #fff;
}
#footer .inner .left .links ul li a small {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 500;
  font-size: 12.21px;
  line-height: 1.6;
}
#footer .inner .left .copyright {
  text-align: end;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 1300px) {
  #footer {
    padding-left: 30px;
  }
  #footer .inner .logo {
    max-width: 400px;
  }
  #footer .inner .left .top {
    column-gap: 30px;
  }
  #footer .inner .left .top .block .title {
    font-size: 32px;
  }
}
@media (max-width: 999px) {
  #footer {
    padding-left: 10px;
    padding-right: 10px;
  }
  #footer .inner .logo {
    max-width: 300px;
  }
  #footer .inner .left .top {
    column-gap: 10px;
    margin-bottom: 40px;
  }
  #footer .inner .left .top .block .title {
    font-size: 24px;
  }
  #footer .inner .left .top .block .title small {
    font-size: 16px;
  }
  #footer .inner .left .top .block .data {
    font-size: 14px;
  }
  #footer .inner .left .top .block:nth-child(even) {
    padding-left: 10px;
  }
  #footer .inner .left .links {
    margin-bottom: 30px;
  }
  #footer .inner .left .links ul li a {
    width: 250px;
    height: 60px;
    font-size: 20px;
  }
  #footer .inner .left .links ul li a small {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  #footer .inner {
    flex-direction: column;
    align-items: center;
  }
  #footer .inner .left {
    margin-left: unset;
  }
  #footer .inner .left .top {
    margin-bottom: 30px;
    justify-content: center;
  }
  #footer .inner .left .top .block .title {
    font-size: 20px;
  }
  #footer .inner .left .top .block .title small {
    font-size: 14px;
  }
  #footer .inner .left .top .block .data {
    font-size: 12px;
  }
  #footer .inner .left .top .block .data p:not(:first-child) {
    margin-top: 10px;
  }
  #footer .inner .left .links {
    margin-bottom: 20px;
  }
  #footer .inner .left .links ul {
    justify-content: center;
  }
  #footer .inner .left .links ul li a {
    width: 230px;
    height: 50px;
    font-size: 18px;
  }
  #footer .inner .left .copyright {
    font-size: 12px;
    text-align: center;
  }
}
@media (max-width: 500px) {
  #footer .inner .left .top {
    /* flex-direction: column;
    align-items: center;
    row-gap: 30px; */
  }
  #footer .inner .left .top .block {
    /*  &:nth-child(even){
       padding-left: 0;
       &::before{
         display: none;
       }
     } */
  }
  #footer .inner .left .top .block .title small {
    font-size: 10px;
  }
  #footer .inner .left .top .block .data {
    font-size: 10px;
  }
  #footer .inner .left .links ul li a {
    width: 135px;
    font-size: 16px;
  }
}

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