@charset "UTF-8";
/* header-----------------------------------*/
.header {
  position: fixed;
  top: 25px;
  z-index: 999;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}
.header__logo {
  width: 207px;
  margin-left: min(96px, 6%);
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 9999;
}
.header__logo picture {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 30%;
    min-width: 113px;
  }
}
.header__nav {
  background-color: #2069ab;
  border-radius: 57px;
  margin-top: 50px;
  margin-right: 116px;
  margin-left: auto;
  opacity: 0;
  transform: translateY(-20%); /* 上に隠れて表示 */
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out; /* ゆっくりと変化する */
}
.header__nav ul {
  align-items: center;
  padding: 36px 128px 30px 70px;
}
.header__nav li {
  margin-right: 36px;
  height: 25px;
}
.header__nav li a {
  position: relative;
}
.header__nav li a:hover::after {
  position: absolute;
  content: "";
  bottom: -7px;
  left: 50%;
  width: 73px;
  height: 2px;
  background-color: #fff;
  transform: translateX(-50%);
  transition: 0.2s;
}
.header__nav li img {
  max-width: 100%;
  max-height: 100%;
}
.header__cv {
  width: 186px;
  height: 186px;
  position: absolute;
  top: -10px;
  right: 60px;
  z-index: 9999;
}
.header__cv .header__cv-btn:nth-of-type(1) {
  opacity: 0;
  position: absolute;
  right: 0;
}
.header__cv:hover .header__cv-btn:nth-of-type(1) {
  opacity: 1;
  transition: 0.2s ease-in-out;
  transform: translate(6px, 6px) scale(1.1);
}
.header__cv:hover .header__cv-btn:nth-of-type(2) {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .header__cv {
    width: 24%;
    min-width: 88px;
    right: 10px;
  }
}
.header .logo-text {
  display: inline-block;
  width: 167px;
  margin-top: 15px;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header .logo-text {
    width: 30%;
    min-width: 113px;
  }
  .header .logo-text--sp {
    position: absolute;
    top: 0;
    left: 7%;
  }
}

/* openbtn-----------------------------------*/
#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: #2069ab;
  transition: all 0.8s;
}
#g-nav ul {
  margin-top: 167px;
  margin-left: 7%;
  padding-left: 10px;
}
#g-nav li {
  margin-bottom: 40px;
  width: 100px;
  height: 32px;
}
#g-nav li a {
  position: relative;
}
#g-nav li a:hover::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #fff;
  transition: 0.2s;
}
#g-nav li img {
  max-width: 100%;
  max-height: 100%;
  min-height: 100%;
}
#g-nav li a {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: #fff;
}

#g-nav.panelactive {
  right: 0;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  right: 26%;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #2069ab;
  width: 70%;
}
.openbtn span:nth-last-of-type(1) {
  top: 15px;
}
.openbtn span:nth-last-of-type(2) {
  top: 26px;
  width: 50%;
  margin-left: 9px;
}
.openbtn span:nth-last-of-type(3) {
  top: 37px;
  width: 32%;
  margin-left: 18px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-40deg);
  background-color: #fff;
  margin-left: 0;
  width: 75%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
  margin-left: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(40deg);
  background-color: #fff;
  margin-left: 0;
  width: 75%;
}

@media screen and (min-width: 1024px) {
  .openbtn {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .openbtn {
    display: block;
  }
}
.header__logo {
  opacity: 1;
}
.header__nav {
  opacity: 1;
  transform: translateY(0);
}

.bg-koushi {
  background-image: linear-gradient(0deg, transparent calc(100% - 2px), #d7d7d7 calc(100% - 2px)), linear-gradient(90deg, transparent calc(100% - 2px), #d7d7d7 calc(100% - 2px));
  background-size: 40px 40px;
  background-repeat: repeat;
  background-position: center center;
  background-color: #f2f2f2;
  padding-bottom: clamp(60px, 6.25vw, 90px);
}

.policy-top {
  padding-top: clamp(140px, 15.625vw, 225px);
  padding-bottom: clamp(60px, 6.25vw, 90px);
}

.inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 79.1666%;
}

.sec-ttl--center {
  position: relative;
  text-align: center;
}

.sec-ttl--center {
  position: relative;
  text-align: center;
}

.sec-ttl--en {
  font-size: clamp(30px, 2.7777vw, 40px);
  font-weight: 600;
  line-height: 1;
}

.sec-subttl--top {
  font-size: clamp(12px, 0.972vw, 14px);
  font-weight: bold;
  font-style: normal;
  text-align: center;
  line-height: 1;
  padding-bottom: 15px;
  display: block;
}

.sec-ttl--center::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: clamp(95px, 8.4722vw, 122px);
  background-color: #1c5aa5;
  position: absolute;
  bottom: -30px;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 79.1666%;
}

.inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 79.1666%;
}

.c-txt {
  font-size: 15px;
  margin-bottom: 100px;
  line-height: 2;
  font-style: normal;
}

.c-bold {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  display: block;
  font-style: normal;
}

/*-------footer--------------------------------*/
.footer {
  background-color: #2069ab;
  width: 100%;
  height: 194px;
  padding: 63px 0 72px;
}
.footer__cont {
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  width: 256px;
}
.footer__nav a,
.footer__nav small {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.footer__nav small {
  display: block;
  width: 100%;
  text-align: right;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 44px 0 14px;
    height: 186px;
  }
  .footer__inner {
    padding: 0 6.4%;
  }
  .footer__cont {
    flex-direction: column;
  }
  .footer__logo {
    width: 129px;
    margin-right: auto;
  }
  .footer__nav {
    position: relative;
    margin-left: auto;
  }
  .footer__nav a {
    margin-left: auto;
    margin-right: 0;
    font-size: 1.2rem;
  }
  .footer__nav small {
    position: absolute;
    bottom: -50px;
    font-size: 1rem;
  }
}/*# sourceMappingURL=privacy.css.map */