@charset "utf-8";

* {
  padding: 0;
  margin: 0;
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", "Noto Sans JP", "游ゴシック体", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
  width: 100%;
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
a {
  text-decoration: none;
  color: black;
}


main li {
  font-size: 14px;
  line-height: 2.5em;
}


/* グローバルナビゲーション */

.navigation {
  display: flex;
  position: sticky;
  align-items: center;
  height: 80px;
  top: 0;
  background-color: white;
  z-index: 3;
  justify-content: space-between;
}
.navigation .logo {
  width: 20%;
  min-width: 120px;
  max-width: 160px;
  
}
.navigation .logo img {
  height: auto;
  /* width:fit-content;
  min-width: 121px; */
  max-width: 100%;
  object-fit: cover;
  margin-left: 8%;
}


nav ul {
  display: flex;
  /* background-color: rgb(92, 226, 43); */
  margin-left: auto;
  margin-right: 0;
  list-style: none;
  padding-left: 0;
}

nav li {
  padding: 0 32px;
  cursor: pointer;
  color: black;
  font-size: 14px;
  /* background-color: blueviolet; */
}

/*スマホナビメニュー */
.sp-menu {
  display: none;
}

.sp-menu #open {
  font-size: 32px;
  line-height: 64px;
  cursor: pointer;
}

.sp-menu #open.hide {
  display: none;
}

.sp-menu img {
  width: 30px;
  height: auto;
}

/*スマホナビメニューオーバーレイ */

/*スマホナビメニューオーバーレイ */
.overlay {
  /* display: none; */
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .10s;

}

.overlay .logo {
  width: 20%;
  min-width: 120px;
  max-width: 160px;
  position: absolute;
  top: 24px;
  left: 9px;
  height: auto;
  cursor: pointer;
}

.overlay .logo img {
  height: auto;
  object-fit: cover;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.overlay #close {
  position: absolute;
  top: 24px;
  right: 16px;
  width: 30px;
  height: auto;
  cursor: pointer;
}

.overlay ul {
  text-align: center;
  list-style-type: none;
  margin: 0;
  margin-top: 80px;
  padding: 0;
  display: inline-block;
  height: 100%;
  width: 100%;
}

.overlay li {
  text-align: center;
 margin: 0;
  padding: 0;
  opacity: 0;
  font-size: 20px;
  transition: opacity .5s, transform .5s;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 100%;
  border-bottom: 0.75px solid;
}

.overlay.show li {
  opacity: 1;
  transform: none;
}

.overlay.show li:nth-child(1) {
  transition-delay: .1s;
}

.overlay.show li:nth-child(2) {
  transition-delay: .2s;
}

.overlay.show li:nth-child(3) {
  transition-delay: .3s;
}

.overlay.show li:nth-child(4) {
  transition-delay: .4s;
}

.overlay.show li:nth-child(5) {
  transition-delay: .5s;
}

main div {
  margin: 40px 0;
}


main {
  width: 60%;
  margin: auto;
}

main p {
  font-size: 14px;
  line-height: 2.5em;
}
li{
   list-style-position: inside;
}

.privacy_start {
  margin-top: 80px;
}

h3,
h4 {
  text-align: center;
}

.privacy_end {
  margin-bottom: 80px;
}

.privacy_end p {
  line-height: normal;

}
/*フッター*/
.footer_main {
  display: flex;
  justify-content: space-between
    /* background-color: brown; */
}

footer img {
  width: 80%;
  height: auto;
  object-fit: cover;
  min-width: 121px;
  max-width: 200px;
  /* background-color: aqua; */
}

.footer_img ul {
  list-style: none;
  padding-left: 0;
}

.footer_img li {
  margin: 0.8em;
}

.footer_other {
  font-size: 12px;
  text-align: center
}


/*パソコンフッター*/
.pc-footer {
  width: 87%;
  max-width: 1200px;
  margin: 40px auto 27px;
}

.pc-footer dl {
  display: flex;
}

.pc-footer dl div {
  margin: 0 0 0 32px;
  line-height: 1.5em;
}

.pc-footer dt {
  font-size: 16px;
  margin-top: 0;
  cursor: pointer;
}

.pc-footer dd {
  margin: 8px;
  font-size: 12px;
  cursor: pointer;
  transform: translateX(-8px);
}

/*スマホフッター*/

/*スマホフッター*/
.sp-footer {
  margin-top: 40px;
  display: none;
}

.sp-footer dl {
  margin-bottom: 20px;
}

.sp-footer dt {
  padding: 16px 24px;
  cursor: pointer;
  user-select: none;
  position: relative;
  border-bottom: 1px solid white;
  background-color: #2e6db9;
  color: white;
}

.sp-footer dt::after {
  content: '+';
  font-size: 24px;
  position: absolute;
  top: 12px;
  right: 24px;
  transition: transform .3s;
}

dl>div.appear dt::after {
  transform: rotate(45deg);
}

.sp-footer dd {
  padding: 10px 24px;
  margin: 0;
  display: none;
  font-size: 14px;
  border-bottom: 1px solid gray
}

dl>div.appear dd {
  display: block;
  animation: .3s fadeIn;
}

.sp-footer .footer_img {
  /* width: 89%; */
  margin: auto;
  justify-content: center;
  text-align: center;
}

.sp-footer .footer_img ul {
  margin-top: 8px
}

.sp-footer .footer_other {
  text-align: center;
  width: 92%;
  margin: 20px auto;
}

.sp-footer .footer_other p {
  line-height: 1.5;
}

@media (max-width:972px){
    /*フッター*/
  .sp-footer {
    display: block;
  }

  .pc-footer {
    display: none;
  }
}

@media (max-width:768px) {
  h2 {
    text-align: center;
    margin-bottom: 3%;
  }

  /*グローバルナビゲーション*/
  .sp-menu {
    display: block;
    margin-right: 3%;
  }

  .pc-menu {
    display: none;
  }

  /*メイン*/
  main {
    width: 85%;
  }

}