@charset "UTF-8";
@property --zoom-factor {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}
.zoom-wrapper {
  --_min-viewport-width: 480px; /* viewportの最小値を下回ったら縮小をやめる */
  --_max-viewport-width: 1350px; /* viewportの最大値を上回ったら拡大をやめる */
  --_zoom-value: clamp(
    tan(atan2(var(--_min-viewport-width), var(--_max-viewport-width))),
    tan(atan2(var(--zoom-factor), var(--_max-viewport-width))),
    1
  );
  --zoom-factor: clamp(
    var(--_min-viewport-width),
    100dvi,
    var(--_max-viewport-width)
  );
  zoom: var(--_zoom-value);
  -webkit-text-size-adjust: initial; /* iOS Safariのバグを修正 */
  /* 768px以下では100%のズーム値を適用 */
}
@media (max-width: 480px) {
  .zoom-wrapper {
    zoom: 1;
  }
}

/*============================================================================
	common
=============================================================================*/
.accordionBox {
  width: 100%;
}
.accordionBox .targetBtn {
  cursor: pointer;
}
.accordionBox .acdInner {
  padding: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: 0.5s;
}
.accordionBox.active {
  overflow-y: auto;
}

/*============================================================================
	cheader
=============================================================================*/
.cheader {
  margin-top: 80px;
  padding: clamp(58px, 12.0828vw, 145px) 0 90px;
  position: relative;
}
@media (max-width: 480px) {
  .cheader {
    margin-top: 65px;
    padding: 80px 0 80px;
  }
}
.cheader .ziguzagu {
  position: absolute;
  bottom: 0;
  left: -6.8055555556vw;
  width: 44.1666666667vw;
  height: 3.125vw;
  z-index: 1;
}
@media (max-width: 480px) {
  .cheader .ziguzagu {
    width: 500px;
    left: -193px;
    height: 35px;
  }
}
.cheader .container hgroup {
  text-align: left;
}
.cheader.cheaderSub {
  padding-bottom: 100px;
}
@media (max-width: 480px) {
  .cheader.cheaderSub {
    padding-bottom: 80px;
  }
}
.cheader.cheaderSub .ttlInner {
  border-bottom: 1px solid #659DC6;
  padding-bottom: 12px;
}
.cheader.cheaderSub .ttlInner hgroup {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cheader.cheaderSub .ttlInner hgroup h2 {
  font-size: clamp(16px, 2vw, 24px);
}
@media (max-width: 480px) {
  .cheader.cheaderSub .ttlInner hgroup h2 {
    font-size: 2rem;
  }
}
.cheader.cheaderSub .ttlInner hgroup p {
  font-size: clamp(14px, 2vw, 16px);
  margin-top: 0;
}
.cheader.contact {
  margin-top: 0;
  background: rgba(101, 157, 198, 0.15);
  padding: clamp(90px, 18.75vw, 225px) 0 100px;
}
@media (max-width: 480px) {
  .cheader.contact {
    padding: 145px 0 80px;
  }
}
.cheader.contact .ttlInner hgroup {
  text-align: left;
}
.cheader.member {
  margin-top: 0;
  background: rgba(178, 0, 96, 0.15);
  padding: clamp(90px, 18.75vw, 225px) 0 100px;
}
@media (max-width: 480px) {
  .cheader.member {
    padding: 145px 0 80px;
  }
}
.cheader.member .ttlInner hgroup {
  text-align: left;
}

@keyframes overAnime {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(100%);
  }
}
/*============================================================================
	News
=============================================================================*/
.newsListWrap {
  margin-top: clamp(63px, 10.938vw, 105px);
  padding-bottom: clamp(80px, 16.6668vw, 200px);
}
@media (max-width: 480px) {
  .newsListWrap {
    margin-top: 80px;
    padding-bottom: 120px;
  }
}
.newsListWrap .categoryBox {
  display: flex;
  gap: 12px;
}
@media (max-width: 1024px) {
  .newsListWrap .categoryBox {
    gap: 20px;
    flex-direction: column;
  }
}
.newsListWrap .categoryBox .ttl {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
  min-width: 165px;
}
.newsListWrap .categoryBox ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .newsListWrap .categoryBox ul {
    gap: 10px;
  }
}
.newsListWrap .categoryBox ul li a {
  display: block;
  padding: 5px 20px;
  border-radius: 16px;
  color: #111111;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  background: rgba(101, 157, 198, 0.15);
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .newsListWrap .categoryBox ul li a {
    font-size: 1.4rem;
  }
}
.newsListWrap .categoryBox ul li a:hover, .newsListWrap .categoryBox ul li a.current {
  color: #fff;
  background: #659DC6;
}
.newsListWrap .newsList {
  margin-top: clamp(45.6px, 7.917vw, 76px);
}
@media (max-width: 480px) {
  .newsListWrap .newsList {
    margin-top: 65px;
  }
}
.newsListWrap .newsList .categoryInfo {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: clamp(24px, 4.167vw, 40px);
}
.newsListWrap .newsList ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.48%;
  row-gap: clamp(43.2px, 7.5vw, 72px);
}
@media (max-width: 1024px) {
  .newsListWrap .newsList ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 4.48%;
    row-gap: 40px;
  }
}
.newsListWrap .newsList ul li .imgBox {
  position: relative;
  margin-bottom: 16px;
}
.newsListWrap .newsList ul li .imgBox a {
  display: block;
  position: relative;
  width: 100%;
}
.newsListWrap .newsList ul li .imgBox a figure {
  aspect-ratio: 368/240;
}
.newsListWrap .newsList ul li .imgBox a figure :where(img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsListWrap .newsList ul li .imgBox a figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
}
.newsListWrap .newsList ul li .imgBox a figcaption p {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.05em;
  color: #fff;
  background: #B20060;
  border-radius: 9999px;
  width: 48px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media (max-width: 1024px) {
  .newsListWrap .newsList ul li .imgBox a figcaption {
    bottom: 10px;
    left: 10px;
  }
}
@media (max-width: 480px) {
  .newsListWrap .newsList ul li .imgBox a figcaption {
    bottom: 8px;
    left: 8px;
  }
  .newsListWrap .newsList ul li .imgBox a figcaption p {
    font-size: 1rem;
    width: 32px;
    aspect-ratio: 1/1;
  }
}
.newsListWrap .newsList ul li .txtBox .head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  row-gap: 6px;
}
.newsListWrap .newsList ul li .txtBox .head p.date {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.newsListWrap .newsList ul li .txtBox .head p.ctg a {
  display: block;
  padding: 2px 18px;
  border-radius: 16px;
  color: #111111;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0;
  background: rgba(101, 157, 198, 0.15);
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .newsListWrap .newsList ul li .txtBox .head p.ctg a {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .newsListWrap .newsList ul li .txtBox .head p.ctg a {
    padding: 2px 5px;
    font-size: 1.1rem;
  }
}
.newsListWrap .newsList ul li .txtBox .head p.ctg a:hover, .newsListWrap .newsList ul li .txtBox .head p.ctg a.current {
  color: #fff;
  background: #659DC6;
}
.newsListWrap .newsList ul li .txtBox p.ttl {
  margin-top: 8px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6666666667;
}
.newsListWrap .newsList .pager {
  margin-top: clamp(72px, 12.4995vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 480px) {
  .newsListWrap .newsList .pager {
    margin-top: 60px;
  }
}
.newsListWrap .newsList .pager span, .newsListWrap .newsList .pager a {
  min-width: 24px;
  min-height: 26px;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}
.newsListWrap .newsList .pager span:hover, .newsListWrap .newsList .pager span.current, .newsListWrap .newsList .pager a:hover, .newsListWrap .newsList .pager a.current {
  color: #659DC6;
}
.newsListWrap .newsList .pager span:not(.newsListWrap .newsList .pager span.dots, .newsListWrap .newsList .pager span.current, .newsListWrap .newsList .pager a.dots, .newsListWrap .newsList .pager a.current):hover, .newsListWrap .newsList .pager a:not(.newsListWrap .newsList .pager span.dots, .newsListWrap .newsList .pager span.current, .newsListWrap .newsList .pager a.dots, .newsListWrap .newsList .pager a.current):hover {
  position: relative;
}
.newsListWrap .newsList .pager span:not(.newsListWrap .newsList .pager span.dots, .newsListWrap .newsList .pager span.current, .newsListWrap .newsList .pager a.dots, .newsListWrap .newsList .pager a.current):hover::after, .newsListWrap .newsList .pager a:not(.newsListWrap .newsList .pager span.dots, .newsListWrap .newsList .pager span.current, .newsListWrap .newsList .pager a.dots, .newsListWrap .newsList .pager a.current):hover::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #659DC6;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}

.newsDetailWrap {
  max-width: 880px;
  margin: 0 auto;
  width: 87.5%;
  padding-bottom: clamp(80px, 16.6668vw, 200px);
}
@media (max-width: 480px) {
  .newsDetailWrap {
    padding-bottom: 120px;
  }
}
.newsDetailWrap .newsDetailInner .head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  row-gap: 6px;
  margin-bottom: 10px;
}
.newsDetailWrap .newsDetailInner .head p.date {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.newsDetailWrap .newsDetailInner .head p.ctg a {
  display: block;
  padding: 2px 18px;
  border-radius: 16px;
  color: #111111;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0;
  background: rgba(101, 157, 198, 0.15);
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .newsDetailWrap .newsDetailInner .head p.ctg a {
    font-size: 1.2rem;
  }
}
.newsDetailWrap .newsDetailInner .head p.ctg a:hover, .newsDetailWrap .newsDetailInner .head p.ctg a.current {
  color: #fff;
  background: #659DC6;
}
.newsDetailWrap .newsDetailInner .ttl {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: clamp(36px, 6.2505vw, 60px);
}
.newsDetailWrap .newsDetailInner .imgBox {
  margin-bottom: clamp(36px, 6.2505vw, 60px);
}
.newsDetailWrap .newsDetailInner .imgBox figure :where(img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsDetailWrap .newsDetailInner .txtBox p {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.875;
}
.newsDetailWrap .newsDetailInner .txtBox p + p {
  margin-top: 1em;
}
.newsDetailWrap .newsDetailInner .txtBox h2 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7272727273;
  margin-bottom: 1em;
}
.newsDetailWrap .newsDetailInner .txtBox h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6666666667;
  margin-bottom: 1em;
}
.newsDetailWrap .newsDetailInner .txtBox h4 {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6666666667;
  margin-bottom: 1em;
}
.newsDetailWrap .newsDetailInner .txtBox figure {
  margin: 1em 0;
}
.newsDetailWrap .postNavigation {
  margin-top: clamp(72px, 12.4995vw, 120px);
}
.newsDetailWrap .postNavigation .postNavWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 480px) {
  .newsDetailWrap .postNavigation .postNavWrap {
    flex-wrap: wrap;
    row-gap: 20px;
  }
}
.newsDetailWrap .postNavigation .postNavWrap .prevPost {
  width: 100px;
}
@media (max-width: 480px) {
  .newsDetailWrap .postNavigation .postNavWrap .prevPost {
    order: 1;
  }
}
.newsDetailWrap .postNavigation .postNavWrap .prevPost a .navLabel {
  display: flex;
  align-items: center;
  gap: 10px;
}
.newsDetailWrap .postNavigation .postNavWrap .prevPost a .navLabel span {
  color: #659DC6;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  letter-spacing: 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.newsDetailWrap .postNavigation .postNavWrap .prevPost a .navLabel span:hover::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #659DC6;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
.newsDetailWrap .postNavigation .postNavWrap .prevPost.disabled span p span {
  color: #707070;
  opacity: 0.7;
}
.newsDetailWrap .postNavigation .postNavWrap .navMoreBtn {
  text-align: center;
}
@media (max-width: 480px) {
  .newsDetailWrap .postNavigation .postNavWrap .navMoreBtn {
    order: 3;
    width: 100%;
    margin: 0 auto;
  }
}
.newsDetailWrap .postNavigation .postNavWrap .navMoreBtn a span {
  color: #659DC6;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  letter-spacing: 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 480px) {
  .newsDetailWrap .postNavigation .postNavWrap .navMoreBtn a span {
    width: fit-content;
    margin: 0 auto;
  }
}
.newsDetailWrap .postNavigation .postNavWrap .navMoreBtn a span:hover::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #659DC6;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
@media (max-width: 480px) {
  .newsDetailWrap .postNavigation .postNavWrap .nextPost {
    order: 2;
  }
}
.newsDetailWrap .postNavigation .postNavWrap .nextPost a {
  width: 100px;
}
.newsDetailWrap .postNavigation .postNavWrap .nextPost a .navLabel {
  display: flex;
  align-items: center;
  gap: 10px;
}
.newsDetailWrap .postNavigation .postNavWrap .nextPost a .navLabel span {
  color: #659DC6;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  letter-spacing: 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.newsDetailWrap .postNavigation .postNavWrap .nextPost a .navLabel span:hover::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #659DC6;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
.newsDetailWrap .postNavigation .postNavWrap .nextPost.disabled span p span {
  color: #707070;
  opacity: 0.7;
}

/*============================================================================
	Privacy
=============================================================================*/
#privacyPolicyArea {
  margin: clamp(48px, 8.334vw, 80px) auto clamp(72px, 12.4995vw, 120px);
}
#privacyPolicyArea .toptext {
  margin: 0 auto clamp(36px, 6.2505vw, 60px);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.9;
}
#privacyPolicyArea section h3 {
  margin: 0 auto 20px;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  color: #659DC6;
}
@media (max-width: 480px) {
  #privacyPolicyArea section h3 {
    font-size: 2rem;
  }
}
#privacyPolicyArea section h4 {
  margin: 40px auto 15px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #111111;
}
#privacyPolicyArea section p {
  letter-spacing: 0.04em;
  line-height: 1.85;
}
@media (max-width: 480px) {
  #privacyPolicyArea section p {
    line-height: 1.5;
  }
}
#privacyPolicyArea section .dateList {
  margin-top: 20px;
  line-height: 1.8;
  font-size: clamp(14px, 2vw, 16px);
  text-align: right;
}
@media (max-width: 480px) {
  #privacyPolicyArea section .dateList {
    line-height: 1.5;
  }
}
#privacyPolicyArea section .signature {
  margin-top: 30px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
}
#privacyPolicyArea section ul {
  margin: clamp(12px, 2.0835vw, 20px);
}
#privacyPolicyArea section ul li {
  padding-left: 1em;
  position: relative;
  line-height: 1.8;
}
@media (max-width: 480px) {
  #privacyPolicyArea section ul li {
    line-height: 1.5;
  }
}
#privacyPolicyArea section ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #659DC6;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
}
@media (max-width: 480px) {
  #privacyPolicyArea section ul li::before {
    width: 6px;
    height: 6px;
  }
}
#privacyPolicyArea section ul li + li {
  margin-top: 8px;
}
#privacyPolicyArea section ol {
  margin: clamp(12px, 2.0835vw, 20px);
  counter-reset: olnum 0;
}
#privacyPolicyArea section ol li {
  padding-left: 2em;
  position: relative;
  line-height: 1.9;
}
@media (max-width: 480px) {
  #privacyPolicyArea section ol li {
    line-height: 1.5;
  }
}
#privacyPolicyArea section ol li::before {
  counter-increment: olnum 1;
  content: counter(olnum) "）";
  position: absolute;
  left: 0;
}
#privacyPolicyArea section ol li + li {
  margin-top: 8px;
}
#privacyPolicyArea section .privacyTableWrap {
  overflow-x: auto;
  margin: 30px auto;
}
#privacyPolicyArea section .privacyTable {
  width: 100%;
  border-collapse: collapse;
}
#privacyPolicyArea section .privacyTable th,
#privacyPolicyArea section .privacyTable td {
  border: 1px solid #D5D8DA;
  padding: 18px;
  vertical-align: top;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.75;
}
@media (max-width: 480px) {
  #privacyPolicyArea section .privacyTable th,
  #privacyPolicyArea section .privacyTable td {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
#privacyPolicyArea section .privacyTable th {
  width: 26%;
  background: #F4F6F8;
  font-weight: 700;
  letter-spacing: 0.06em;
}
#privacyPolicyArea section .privacyTable td ol {
  margin: 0;
}
#privacyPolicyArea section .privacyTable td ol li {
  padding-left: 1.6em;
}
#privacyPolicyArea section .privacyTable td ol li::before {
  left: 0;
}
@media (max-width: 768px) {
  #privacyPolicyArea section .privacyTable thead {
    display: none;
  }
  #privacyPolicyArea section .privacyTable tbody,
  #privacyPolicyArea section .privacyTable tr,
  #privacyPolicyArea section .privacyTable th,
  #privacyPolicyArea section .privacyTable td {
    display: block;
    width: 100%;
  }
  #privacyPolicyArea section .privacyTable tr {
    border: 1px solid #D5D8DA;
    margin-bottom: 16px;
    overflow: hidden;
  }
  #privacyPolicyArea section .privacyTable th {
    background: #F4F6F8;
    padding: 16px;
    width: 100% !important;
  }
  #privacyPolicyArea section .privacyTable td {
    padding: 16px;
    border-top: 1px solid #D5D8DA;
  }
  #privacyPolicyArea section .privacyTable td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #659DC6;
  }
  #privacyPolicyArea section .privacyTable td ol li {
    padding-left: 1.4em;
    line-height: 1.5;
  }
  #privacyPolicyArea section .privacyTable td ol li + li {
    margin-top: 4px;
  }
}
#privacyPolicyArea section .contactInfo {
  margin: 20px auto;
  padding: 24px;
  background: #F7F8F9;
  border-radius: 12px;
}
#privacyPolicyArea section .contactInfo p {
  line-height: 1.8;
  font-weight: 500;
}
#privacyPolicyArea section .contactInfo p a {
  text-decoration: underline;
  color: #659DC6;
}
@media (max-width: 480px) {
  #privacyPolicyArea section .privacyTable th,
  #privacyPolicyArea section .privacyTable td {
    padding: 14px;
  }
  #privacyPolicyArea section .privacyTable th {
    width: auto;
  }
}
#privacyPolicyArea section.contactBlock {
  margin-left: auto;
  margin-right: auto;
  padding: clamp(36px, 6.2505vw, 60px);
  max-width: 1080px;
  width: 90%;
  background: #EFF0F0;
}
#privacyPolicyArea section.contactBlock h3 {
  margin: 0 auto clamp(36px, 6.2505vw, 60px);
  color: #4880D3;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  text-align: center;
}
#privacyPolicyArea section.contactBlock .fl {
  margin: auto;
  max-width: 980px;
}
#privacyPolicyArea section.contactBlock .contactL {
  width: 49%;
}
#privacyPolicyArea section.contactBlock .contactL dl {
  padding: clamp(12px, 2.0835vw, 20px) 0;
  font-size: clamp(16px, 2vw, 20px);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  border-bottom: 1px solid #AAAAAA;
}
#privacyPolicyArea section.contactBlock .contactL dl dt {
  font-weight: 700;
}
#privacyPolicyArea section.contactBlock .contactL dl dt::after {
  content: "：";
  margin: auto 5px;
  display: inline-block;
}
#privacyPolicyArea section.contactBlock .contactL dl dd {
  font-weight: 500;
}
#privacyPolicyArea section.contactBlock .contactL dl:first-of-type {
  padding-top: 0;
}
#privacyPolicyArea section.contactBlock .contactR {
  margin: auto 0 auto auto;
  width: 42.8%;
}
@media (max-width: 480px) {
  #privacyPolicyArea section.contactBlock .contactL {
    width: 100%;
  }
  #privacyPolicyArea section.contactBlock .contactR {
    margin: 40px auto 0;
    width: 100%;
  }
}
#privacyPolicyArea section + section {
  margin-top: clamp(48px, 8.334vw, 80px);
}

/*============================================================================
	404
=============================================================================*/
.notfoundWrap p + p {
  margin-top: 1.5em;
}