@charset "UTF-8";
.fade {
  opacity: 0;
  transition: 0.5s ease-out 0.3s;
  transform: scale(1.05);
  filter: blur(10px);
}
.fade.action01 {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.fade-b {
  opacity: 0;
  transition: 0.5s ease-out 0.5s;
  transform: scale(1.05);
  filter: blur(10px);
}
.fade-b.action01 {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.fade-c {
  opacity: 0;
  transition: 0.5s ease-out 0.7s;
  transform: scale(1.05);
  filter: blur(10px);
}
.fade-c.action01 {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.fade-d {
  opacity: 0;
  transition: 0.5s ease-out 0.9s;
  transform: scale(1.05);
  filter: blur(10px);
}
.fade-d.action01 {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

@keyframes text-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    right: 0;
    width: 0;
  }
}
@keyframes text-fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes grey-fade {
  0% {
    background: #fff;
  }
  100% {
    background: #eff1ee;
  }
}
* {
  box-sizing: border-box;
}

::-moz-selection {
  background: #ffe840;
}

::selection {
  background: #ffe840;
}

html {
  font-size: 10px;
  height: 100%;
  overflow-x: hidden;
}

body {
  color: #222;
  font-style: normal;
  font-weight: 500;
  font-family: "Sen", "Zen Kaku Gothic New", "ヒラギノ角ゴ", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

section {
  position: relative;
  padding: 120px 0;
}

.grey {
  background: #eff1ee;
}

.inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1260px;
  position: relative;
}
.inner.wide {
  max-width: 1680px;
}

p {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.8em;
}

img {
  width: 100%;
  height: auto;
}

a {
  transition: all 0.2s ease-in;
}

li {
  list-style: none;
}

.bold {
  font-weight: 700;
}

.indent {
  margin-left: -0.5em;
}

.sp {
  display: none;
}

.flex {
  display: flex;
}

#eng-page p {
  letter-spacing: 0;
}

@media only screen and (max-width: 1000px) {
  section {
    padding: 80px 0;
  }
  p {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  p {
    font-size: 1.4rem;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.heading {
  font-size: clamp(2.4rem, 3vw, 3.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.heading.eng {
  font-size: clamp(2.8rem, 3.2vw, 4rem);
}

.heading-sub {
  text-align: center;
  margin-bottom: 50px;
}

.btn {
  display: block;
  width: 200px;
  height: 50px;
  border-radius: 25px;
  text-align: center;
  background: #ffe000;
  border: 2px solid #ffe000;
  font-size: 1.5rem;
  line-height: 46px;
  margin: 0 auto;
  position: relative;
}

@media (hover: hover) {
  .btn:hover {
    background: #fff;
  }
}
@media only screen and (max-width: 768px) {
  .heading {
    margin-bottom: 10px;
  }
  .heading-sub {
    text-align: left;
    margin-bottom: 30px;
  }
}
header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.3s ease;
  /*&.transform {
      background: rgba($color: #fff, $alpha: 0.9);
      height: 50px;
      h1 {
          img {
              width: 200px;
          }
      }
      .contact-btn {
          height: 50px;
          line-height: 50px;
          padding: 0 30px;
          border-radius: 0;
      }
  }
  */
}
header h1 {
  position: absolute;
  top: 15px;
  left: 30px;
  width: 260px;
}
header h1 img {
  transition: all 0.3s ease;
}
header .lang-btn {
  font-size: 1.4rem;
  margin-right: 40px;
}
header .btn {
  margin: 0 120px 0 0;
}

@media (hover: hover) {
  header h1 a:hover img {
    opacity: 0.6;
  }
  header .lang-btn:hover {
    opacity: 0.6;
  }
}
@media only screen and (max-width: 768px) {
  header h1 {
    width: 180px;
    top: 10px;
    left: 15px;
  }
  header .btn {
    display: none;
  }
  header .lang-btn {
    font-size: 1.4rem;
    margin-right: 85px;
  }
}
#navToggle {
  width: 80px;
  height: 80px;
  cursor: pointer;
  background: #eff1ee;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

#navToggle div {
  position: relative;
}

#navToggle span {
  display: block;
  margin: auto;
  background-color: #222;
  height: 2px;
  width: 40px;
  transition: all 0.1s ease-in;
}

#navToggle span.bar2 {
  margin: 10px 0;
}

.openNav #navToggle {
  position: fixed;
}

.openNav #navToggle span.bar1 {
  transform: translateX(30px);
  opacity: 0;
}

.openNav #navToggle span.bar3 {
  transform: translateX(-30px);
  opacity: 0;
}

.nav {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #ffe000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.15s ease-in;
  top: 0;
  left: 0;
}
.nav .img {
  width: 260px;
  margin: 15px 0 0 30px;
}
.nav ul {
  margin: 15vh 0 0 20vw;
}
.nav ul li {
  margin-bottom: 30px;
}
.nav ul li a {
  font-size: 2.6rem;
  font-weight: 700;
  transition: all 0.15s ease-in;
}

.openNav .nav {
  pointer-events: auto;
  opacity: 0.98;
  z-index: 90;
}

@media (hover: hover) {
  .nav ul li a:hover {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .nav .img {
    width: 180px;
    margin: 10px 0 0 15px;
  }
  .nav ul {
    margin-top: 10vh;
  }
  .nav ul li {
    margin-bottom: 25px;
  }
  .nav ul li a {
    font-size: 2.2rem;
  }
  #navToggle {
    width: 70px;
    height: 70px;
  }
}
.mv {
  padding: 80px 0;
}
.mv .flex {
  align-items: center;
  justify-content: center;
}
.mv .txt-cnt {
  width: 50%;
}
.mv .copy {
  font-size: clamp(2.2rem, 2.6vw, 5.2rem);
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 20px;
  padding: 15px 0 10px 20px;
  background: #eff1ee;
  border-radius: 20px;
  display: inline-block;
  position: relative;
}
.mv .copy:before {
  content: "";
  background: #ffe000;
  border-radius: 20px;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 2;
}
.mv .copy-1 {
  animation: grey-fade 0.8s ease-in 0.3s;
  animation-fill-mode: both;
}
.mv .copy-1:before {
  animation: text-bar 0.8s ease-in 0.3s;
}
.mv .copy-1 span {
  animation: text-fade 0.8s ease-in 0.3s;
  animation-fill-mode: both;
}
.mv .copy-2 {
  animation: grey-fade 0.8s ease-in 0.6s;
  animation-fill-mode: both;
}
.mv .copy-2:before {
  animation: text-bar 0.8s ease-in 0.6s;
}
.mv .copy-2 span {
  animation: text-fade 0.8s ease-in 0.6s;
  animation-fill-mode: both;
}
.mv .copy-3 {
  animation: grey-fade 0.8s ease-in 0.9s;
  animation-fill-mode: both;
}
.mv .copy-3:before {
  animation: text-bar 0.8s ease-in 0.9s;
}
.mv .copy-3 span {
  animation: text-fade 0.8s ease-in 0.9s;
  animation-fill-mode: both;
}
.mv .txt {
  margin-left: 20px;
  font-size: clamp(1.5rem, 1.4vw, 2.2rem);
  font-weight: 700;
  line-height: 2.5em;
}
.mv .img {
  width: 50%;
  max-width: 750px;
  margin-left: 80px;
}

@media only screen and (max-width: 1000px) {
  .mv .txt-cnt {
    width: 60%;
  }
  .mv .copy {
    margin-bottom: 10px;
    padding: 8px 0 5px 10px;
    border-radius: 10px;
  }
  .mv .copy:before {
    border-radius: 10px;
  }
  .mv .txt {
    margin-left: 0;
  }
  .mv .img {
    margin-left: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .mv {
    padding: 50px 0 0;
  }
  .mv .flex {
    flex-wrap: wrap;
  }
  .mv .txt-cnt {
    order: 1;
    width: 100%;
    margin: 0;
  }
  .mv .copy {
    border-radius: 6px;
    padding: 8px 0 5px 10px;
  }
  .mv .copy:before {
    border-radius: 6px;
  }
  .mv .txt {
    font-size: 1.5rem;
    line-height: 2.2em;
    margin: 0;
  }
  .mv .img {
    width: 90%;
    margin: 0 auto 40px;
  }
}
#eng-page .mv .copy {
  letter-spacing: -0.02em;
  padding: 15px 20px 10px;
}
#eng-page .txt {
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #eng-page .mv .copy {
    padding: 5px;
  }
}

.about .flex li {
  width: calc(33.3333333333% - 34px);
  margin-right: 51px;
}
.about .flex li:last-child {
  margin-right: 0;
}
.about .img {
  position: relative;
  margin-bottom: 20px;
}
.about .img img {
  border-radius: 30px;
}
.about .about-numb {
  height: 110px;
  opacity: 0.75;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.about .ttl {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 1000px) {
  .about .about-numb {
    height: 80px;
  }
  .about .ttl {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .about .flex {
    flex-wrap: wrap;
  }
  .about .flex li {
    width: 100%;
    margin: 0 0 30px;
  }
  .about .flex li:last-child {
    margin-bottom: 0;
  }
  .about .img {
    margin-bottom: 10px;
  }
  .about .img img {
    border-radius: 20px;
  }
  .about .about-numb {
    height: 70px;
  }
  .about .ttl {
    font-size: 2rem;
  }
}
.message {
  background: #ffe000 url(img/emblem-bg.svg) no-repeat center right;
  padding: 180px 0;
}
.message .flex {
  align-items: center;
}
.message .img {
  width: calc(50% - 160px);
  margin-right: 160px;
}
.message .img img {
  border-radius: 0 100px 100px 0;
}
.message .tablet {
  display: none;
}
.message .txt {
  width: 50%;
  padding-right: 100px;
}
.message .txt p {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.2em;
  margin-bottom: 2em;
}
.message .txt p:last-of-type {
  margin-bottom: 0;
}

@media only screen and (max-width: 1280px) {
  .message {
    padding: 100px 0;
  }
  .message .img {
    width: calc(50% - 50px);
    margin-right: 50px;
  }
}
@media only screen and (max-width: 1000px) {
  .message .img {
    width: calc(50% - 50px);
    margin-right: 50px;
  }
  .message .img img {
    border-radius: 0 60px 60px 0;
  }
  .message .pc {
    display: none;
  }
  .message .tablet {
    display: block;
  }
  .message .txt {
    width: 60%;
  }
  .message .txt p {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .message {
    padding: 60px 0 0;
    background: #ffe000;
  }
  .message .flex {
    width: 90%;
    margin: 0 auto;
  }
  .message .txt {
    width: 100%;
    padding: 0;
  }
  .message .txt p {
    font-size: 1.4rem;
  }
  .message .txt p:last-of-type {
    margin-bottom: 60px;
  }
  .message .tablet {
    display: none;
  }
  .message .img.sp {
    width: 100%;
    margin: 0;
  }
  .message .img.sp img {
    border-radius: 0;
  }
}
.guideline .flex {
  flex-wrap: wrap;
}
.guideline .flex li {
  position: relative;
  margin: 0 80px 50px 0;
  width: calc(25% - 60px);
}
.guideline .flex li:nth-child(4), .guideline .flex li:nth-child(8) {
  margin-right: 0;
}
.guideline .flex li:nth-child(5), .guideline .flex li:nth-child(6), .guideline .flex li:nth-child(7), .guideline .flex li:nth-child(8) {
  margin-bottom: 0;
}
.guideline .guide-numb {
  width: 65px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
}
.guideline .ttl {
  font-size: clamp(2rem, 1.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1000px) {
  .guideline .flex li {
    width: calc(33.3333333333% - 34px);
    margin-right: 51px;
  }
  .guideline .flex li:nth-child(3), .guideline .flex li:nth-child(6) {
    margin-right: 0;
  }
  .guideline .flex li:nth-child(1), .guideline .flex li:nth-child(2), .guideline .flex li:nth-child(4), .guideline .flex li:nth-child(5), .guideline .flex li:nth-child(7), .guideline .flex li:nth-child(8) {
    margin-right: 51px;
  }
}
@media only screen and (max-width: 768px) {
  .guideline .flex li {
    width: 100%;
    margin: 0 0 40px;
  }
  .guideline .flex li:nth-child(1), .guideline .flex li:nth-child(2), .guideline .flex li:nth-child(4), .guideline .flex li:nth-child(5), .guideline .flex li:nth-child(7), .guideline .flex li:nth-child(8) {
    margin-right: 0;
  }
  .guideline .flex li:nth-child(5), .guideline .flex li:nth-child(6), .guideline .flex li:nth-child(7) {
    margin-bottom: 40px;
  }
  .guideline .img {
    text-align: center;
  }
  .guideline .img img {
    width: 250px;
  }
  .guideline .ttl {
    text-align: center;
  }
}
.recommend {
  padding-bottom: 300px;
}
.recommend .heading {
  margin-bottom: 60px;
}
.recommend .flex {
  flex-wrap: wrap;
}
.recommend .flex li {
  width: calc(50% - 20px);
  min-height: 120px;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0 30px;
  border-radius: 20px;
  margin: 0 40px 40px 0;
}
.recommend .flex li:nth-child(even) {
  margin-right: 0;
}
.recommend .flex li .img {
  width: 30px;
  margin-right: 20px;
}
.recommend .flex li .txt {
  width: calc(100% - 50px);
  font-weight: 700;
}

@media only screen and (max-width: 1000px) {
  .recommend {
    padding-bottom: 160px;
  }
  .recommend .flex li {
    min-height: 0;
    padding: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .recommend .flex li {
    width: 100%;
    margin: 0 0 20px;
  }
  .recommend .flex .img {
    width: 20px;
    margin-right: 15px;
  }
  .recommend .flex .txt {
    width: calc(100% - 35px);
    font-size: 1.5rem;
  }
}
.slide {
  transform: translateY(-50%);
}
.slide li {
  margin: 0 50px;
  transition: none;
}
.slide li img {
  border-radius: 30px;
}

.slick-slider div {
  transition: none;
}

.slick-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

@media only screen and (max-width: 1000px) {
  .slide li {
    margin: 0 20px;
  }
  .slide li img {
    border-radius: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .slide li {
    margin: 0 10px;
  }
  .slide li img {
    border-radius: 15px;
  }
}
.action {
  padding-top: 50px;
  /* 250807左揃え一時保留
  .flex {
      flex-wrap: wrap;
      li {
          position: relative;
          width: calc(100% / 3 - 34px);
          margin: 0 51px 50px 0;
          border-radius: 20px;
          transition: all 0.2s ease-in;
          &:nth-child(3) {
              margin-right: 0;
          }
          &:has(.btn:hover) {
              box-shadow: 4px 4px 40px 0px rgba(0, 0, 0, 0.2);
          }
      }
  }
  */
}
.action .flex {
  justify-content: center;
  margin-bottom: 50px;
}
.action .flex li {
  position: relative;
  width: 33.3333333333%;
  margin-right: 50px;
  border-radius: 20px;
  transition: all 0.2s ease-in;
}
.action .flex li:nth-child(2) {
  margin-right: 0;
}
.action .flex li:has(.btn:hover) {
  box-shadow: 4px 4px 40px 0px rgba(0, 0, 0, 0.2);
}
.action .tag {
  position: absolute;
  top: 0;
  left: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0;
  background: #ffe000;
  padding: 5px 10px;
  border-radius: 0 0 5px 5px;
}
.action .img img {
  border-radius: 20px 20px 0 0;
}
.action .txt {
  padding: 20px;
}
.action .ttl {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1em;
  text-align: center;
  margin-bottom: 10px;
}
.action .ttl.eng {
  font-size: 2.4rem;
}
.action .btn {
  margin-top: 20px;
}

@media only screen and (max-width: 1000px) {
  .action .flex li {
    width: 50%;
    margin-right: 50px;
  }
  .action .flex li:nth-child(2) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .action {
    padding-top: 0;
  }
  .action .flex {
    flex-wrap: wrap;
  }
  .action .flex li {
    width: 100%;
    margin: 0 0 40px;
  }
  .action .flex li:last-child {
    margin-bottom: 0;
  }
  .action .ttl {
    font-size: 2rem;
  }
  .action .ttl.eng {
    font-size: 2.2rem;
  }
}
.partner {
  /* 250807左揃え一時保留
  .flex {
      flex-wrap: wrap;
      li {
          width: calc(100% / 3 - 34px);
          margin: 0 51px 50px 0;
          &:nth-child(3),
          &:nth-child(6) {
              margin-right: 0;
          }
          &:nth-child(4),
          &:nth-child(5),
          &:nth-child(6) {
              margin-bottom: 0;
          }
      }
  }
  */
}
.partner .flex {
  justify-content: center;
  margin-bottom: 50px;
}
.partner .flex li {
  width: 33.3333333333%;
  margin-right: 50px;
}
.partner .flex li:nth-child(2) {
  margin-right: 0;
}
.partner .img {
  width: 200px;
  margin: 0 auto 20px;
}
.partner .img img {
  border-radius: 50%;
  transition: all 0.1s ease-out;
}
@media (hover: hover) {
  .partner .img img:hover {
    transform: scale(0.95);
    opacity: 0.8;
  }
}
.partner .name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1em;
  text-align: center;
  margin-bottom: 10px;
}
.partner .name-sub {
  color: #707070;
  font-size: 1.4rem;
  line-height: 1.5em;
  text-align: center;
  margin-bottom: 10px;
}
.partner .txt {
  font-size: 1.5rem;
  padding: 0 20px;
}

@media only screen and (max-width: 1000px) {
  .partner .flex li {
    width: 50%;
    margin-right: 50px;
  }
  .partner .flex li:nth-child(2) {
    margin-right: 0;
  }
  .partner .img {
    width: 160px;
  }
}
@media only screen and (max-width: 768px) {
  .partner .flex {
    flex-wrap: wrap;
  }
  .partner .flex li {
    width: 100%;
    margin: 0 0 30px;
  }
  .partner .flex li:nth-child(4), .partner .flex li:nth-child(5) {
    margin-bottom: 30px;
  }
}
.information {
  padding-bottom: 80px;
  border-bottom: 1px solid #d7d4c8;
}
.information .flex {
  justify-content: space-between;
}
.information .txt-cnt {
  width: 50%;
}
.information .img {
  width: 260px;
  margin-bottom: 20px;
}
.information .txt {
  line-height: 2em;
  margin-bottom: 30px;
}
.information .info {
  font-size: 1.4rem;
}
.information .chart {
  max-width: 440px;
  margin-left: 30px;
}

@media only screen and (max-width: 1000px) {
  .information .txt-cnt {
    width: 50%;
  }
  .information .chart {
    width: 40%;
  }
}
@media only screen and (max-width: 768px) {
  .information {
    padding: 60px 0;
    border-bottom: 0;
  }
  .information .flex {
    flex-wrap: wrap;
  }
  .information .txt-cnt {
    width: 100%;
    margin-bottom: 30px;
  }
  .information .img {
    width: 200px;
  }
  .information .chart {
    width: 90%;
    margin: 0 auto;
  }
}
.contact {
  padding: 80px 0;
}
.contact .flex {
  align-items: center;
}
.contact .img {
  width: calc(60% - 50px);
  margin-right: 50px;
  max-width: 790px;
}
.contact .img img {
  border-radius: 50px;
}
.contact .txt {
  width: calc(50% - 210px);
}
.contact .txt p {
  line-height: 2em;
}
.contact .txt p.strong {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 20px;
}
.contact .btn {
  margin: 30px 0 0;
}

@media only screen and (max-width: 1280px) {
  .contact .img {
    width: calc(50% - 50px);
  }
  .contact .txt {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .contact {
    padding: 0 0 80px;
  }
  .contact .inner {
    width: 100%;
  }
  .contact .flex {
    flex-wrap: wrap;
  }
  .contact .img {
    width: 100%;
    margin: 0 0 30px;
  }
  .contact .img img {
    border-radius: 0;
  }
  .contact .txt {
    width: 90%;
    margin: 0 auto;
  }
  .contact .txt p.strong {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  .contact .btn {
    margin: 30px auto 0;
  }
}
footer {
  padding: 20px 0 150px;
  border-top: 1px solid #d7d4c8;
}
footer .flex {
  justify-content: space-between;
}
footer p {
  font-size: 1.4rem;
}
footer a {
  text-decoration: underline;
}
footer a:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 768px) {
  footer {
    padding: 30px 0 60px;
  }
  footer .flex {
    flex-direction: column;
    text-align: center;
  }
  footer .copyright {
    order: 1;
    margin-top: 10px;
  }
}
.privacy {
  padding: 150px 0;
  max-width: 1080px;
}
.privacy section {
  padding: 0;
  margin-bottom: 80px;
}
.privacy section:last-of-type {
  margin-bottom: 0;
}
.privacy h2 {
  font-size: clamp(3rem, 3vw, 4.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 150px;
}
.privacy h3 {
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.6em;
  margin-bottom: 20px;
}
.privacy h3 span {
  font-size: 1.15em;
}
.privacy p {
  margin-bottom: 2em;
}
.privacy ol {
  padding: 0 0 0 2em;
}
.privacy ol li {
  list-style-type: decimal;
  font-size: 1.6rem;
  line-height: 2em;
  margin-bottom: 2em;
}
.privacy a {
  text-decoration: underline;
}
.privacy a:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 768px) {
  .privacy {
    padding: 80px 0;
  }
  .privacy section {
    margin-bottom: 50px;
  }
  .privacy h2 {
    margin-bottom: 60px;
  }
  .privacy h3 {
    margin-bottom: 10px;
  }
  .privacy p {
    margin-bottom: 1.5em;
  }
  .privacy ol li {
    font-size: 1.4rem;
    margin-bottom: 1.5em;
  }
}
.notfound .inner {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.notfound p {
  line-height: 1em;
}
.notfound .strong {
  font-size: clamp(5rem, 4.5vw, 8rem);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.notfound .btn {
  margin-top: 50px;
}/*# sourceMappingURL=style.css.map */