@charset "UTF-8";
/* common */
html,
body {
  height: 100%;
  min-width: 1440px;
}
@media screen and (max-width: 768px) {
  html,
  body {
    min-width: 100%;
  }
}

#content {
  margin: 100px 0 0;
}

.right-nav {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .right-nav {
    bottom: 80px;
    right: 10px;
  }
}
.right-nav a {
  position: relative;
}
.right-nav a img {
  transition: opacity 0.5s;
  animation-timing-function: cubic-bezier(0.3, -0.05, 0.7, -0.5);
  animation-duration: 500ms;
}
.right-nav a img:last-of-type {
  position: absolute;
  right: 0;
  opacity: 0;
}
.right-nav a:hover img:first-of-type {
  opacity: 0;
}
.right-nav a:hover img:last-of-type {
  opacity: 1;
}

.optimize-origin {
  bottom: 10px !important;
}

@media screen and (min-width: 769px) {
  #drawernav {
    display: none;
  }
}

/* common（ここまで） */
/* 20250703リニューアル後header */
.header {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, sans-serif;
  background: #FFF;
  border-bottom: 1px solid #050126;
}
@media screen and (max-width: 768px) {
  .header {
    border-bottom: none;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 1440px;
  height: 99px;
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  .header-inner {
    margin: 0 15px;
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .header-inner {
    padding: 0 15px;
    width: 100%;
    height: 50px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
}
.header-logo img {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .header-logo img {
    width: 85px;
    height: 28px;
  }
}

.header-nav {
  display: flex;
  flex-direction: column;
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .header-nav {
    margin: 12px 45px 0 0;
  }
}

.header-nav-btn {
  margin: 0 0 21px;
}
@media screen and (max-width: 768px) {
  .header-nav-btn {
    margin: 0;
  }
}
.header-nav-btn ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .header-nav-btn ul li.tel {
    display: none;
  }
}
.header-nav-btn ul li.tel a {
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: solid 2px #FFF;
  font-size: 16px;
  font-weight: 500;
  color: #050126;
}
.header-nav-btn ul li.tel a::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url("../img/common/ic_phone.webp") no-repeat 0 0;
  background-size: contain;
}
.header-nav-btn ul li.tel a:hover {
  opacity: 1;
  border-bottom: solid 2px #050126;
}
.header-nav-btn ul li.tel a:hover::before {
  transform: rotate(-30deg);
}
.header-nav-btn ul li.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 2px;
  width: 110px;
  height: 26px;
  border-radius: 15px;
  border: solid 1px #050126;
  font-size: 13px;
  font-weight: 700;
  background: #FFF;
  color: #050126;
}
.header-nav-btn ul li.btn a:hover {
  opacity: 1;
  background: #050126;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .header-nav-btn ul li.btn__red {
    display: none;
  }
}
.header-nav-btn ul li.btn__red a {
  background: #FFAFE0;
}

.header-nav-list {
  margin: 0 15px 0 0;
}
@media screen and (max-width: 768px) {
  .header-nav-list {
    display: none;
  }
}
.header-nav-list ul {
  display: flex;
  gap: 20px;
}
.header-nav-list ul li a {
  position: relative;
  padding: 0 0 15px;
  font-size: 15px;
  font-weight: 500;
  color: #050126;
}
.header-nav-list ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
  width: 100%;
  height: 5px;
  border: solid 1px #050126;
  background: #25AEEA;
}
.header-nav-list ul li a:hover {
  opacity: 1;
}
.header-nav-list ul li a:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}
.header-nav-list ul li.active a::after {
  transform: scale(1, 1);
}
.header-nav-list ul li.header-nav-list-home {
  position: relative;
  top: -4px;
}
.header-nav-list ul li.header-nav-list-home img {
  width: 22px;
  height: 22px;
}
.header-nav-list ul li.header-nav-list-home a {
  padding: 0 0 12px;
}

/* 20250703リニューアル後header（ここまで） */
/* 20250703リニューアル後footer */
.footer {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, sans-serif;
  background: #EEF0F4;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  padding: 60px 0 80px;
  width: 1080px;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    padding: 40px 15px 80px;
    width: 100%;
  }
}

.footer-top {
  display: grid;
  grid-template-areas: "logo linklist btnlist" "otherlist linklist btnlist";
  justify-content: space-between;
  padding: 0 0 40px;
}
.footer-top .footer-logo {
  grid-area: logo;
}
.footer-top .footer-linklist {
  grid-area: linklist;
}
.footer-top .footer-btnlist {
  grid-area: btnlist;
}
.footer-top .footer-otherlist {
  grid-area: otherlist;
}
@media screen and (max-width: 768px) {
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 30px;
  }
}

.footer-logo {
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .footer-logo {
    margin: 0 auto 30px;
    width: 150px;
  }
}

.footer-linklist {
  display: flex;
  gap: 90px;
}
@media screen and (max-width: 768px) {
  .footer-linklist {
    flex-wrap: wrap;
    gap: 25px;
    margin: 0 0 30px;
  }
}
.footer-linklist ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .footer-linklist ul {
    flex-direction: unset;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer-linklist ul li a {
  font-size: 15px;
  font-weight: 500;
  color: #050126;
}

@media screen and (max-width: 768px) {
  .footer-btnlist {
    margin: 0 auto 50px;
  }
}
.footer-btnlist ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .footer-btnlist ul {
    gap: 15px;
  }
}
.footer-btnlist ul li .mod-btn a {
  padding: 0 50px;
  width: 270px;
}

.footer-otherlist {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .footer-otherlist {
    flex-direction: unset;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
  }
}
.footer-otherlist ul {
  display: flex;
  gap: 10px;
}
.footer-otherlist ul li {
  width: 44px;
}
.footer-otherlist ul li img {
  width: 100%;
  height: auto;
}
.footer-otherlist ul li.isms {
  width: 120px;
}
.footer-otherlist ul li.isms span {
  display: block;
  text-align: center;
  padding: 5px 0 0;
  color: #050126;
}
.footer-otherlist ul li.securityaction {
  width: 60px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0;
  border-top: solid 1px #050126;
}
@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    padding: 30px 0 0;
  }
}

.footer-bottom-link ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer-bottom-link ul {
    justify-content: center;
    gap: 15px 30px;
    margin: 0 0 30px;
  }
}
.footer-bottom-link ul li a {
  font-size: 12px;
  font-weight: 500;
  color: #050126;
}

.footer-copyright {
  font-size: 13px;
  font-weight: 300;
  color: #050126;
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    text-align: center;
  }
}

/* 20250703リニューアル後footer（ここまで） */
/* ボタン */
.mod-btn {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .mod-btn {
    width: 100%;
  }
}
.mod-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 40px 0 60px;
  width: 240px;
  height: 54px;
  border-radius: 40px;
  border: solid 1px #050126;
  font-size: 17px;
  font-weight: 700;
  background: #FFF;
  color: #050126;
}
@media screen and (max-width: 768px) {
  .mod-btn a {
    margin: 0 auto;
    height: 44px;
    font-size: 15px;
  }
}
.mod-btn a::before {
  content: "";
  position: absolute;
  margin: 0 0 0 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #050126 url("../img/common/ic_arrow.webp") no-repeat center center;
  animation-name: btn-move-out;
  animation-duration: 300ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}
@keyframes btn-move-out {
  0% {
    left: 5px;
  }
  100% {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .mod-btn a::before {
    width: 26px;
    height: 26px;
    background-size: 13px;
  }
}
.mod-btn a:hover {
  opacity: 1;
  background: #050126;
  color: #FFF;
}
.mod-btn a:hover::before {
  margin: 0 0 0 22px;
  background: url("../img/common/ic_arrow_l.webp") no-repeat center center;
  animation-name: btn-move-in;
  animation-duration: 300ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}
@keyframes btn-move-in {
  0% {
    left: 0;
  }
  100% {
    left: 5px;
  }
}
.mod-btn__red a {
  padding: 0 50px;
  width: 270px;
  height: 48px;
  background: #FFAFE0;
}
@media screen and (max-width: 768px) {
  .mod-btn__red a {
    height: 44px;
  }
}

/* ボタン（ここまで） */
