@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

.animated__clipView {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: -webkit-clip-path 1.5s ease-in;
  transition: -webkit-clip-path 1.5s ease-in;
  transition: clip-path 1.5s ease-in;
  transition: clip-path 1.5s ease-in, -webkit-clip-path 1.5s ease-in;
  will-change: clip-path;
}
.animated__clipView.js-show {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.animated__fadeIn {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-transition: opacity 2s ease, -webkit-transform 2s ease;
  transition: opacity 2s ease, -webkit-transform 2s ease;
  transition: opacity 2s ease, transform 2s ease;
  transition: opacity 2s ease, transform 2s ease, -webkit-transform 2s ease;
}
.animated__fadeIn.js-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.animated__fadeInDelayed {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-transition: opacity 2s ease, -webkit-transform 2s ease;
  transition: opacity 2s ease, -webkit-transform 2s ease;
  transition: opacity 2s ease, transform 2s ease;
  transition: opacity 2s ease, transform 2s ease, -webkit-transform 2s ease;
}
.animated__fadeInDelayed.js-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.animated__fadeInSoft {
  opacity: 0;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: opacity 2s ease;
  transition: opacity 2s ease;
}

.animated__fadeInSoft.js-show {
  opacity: 1;
}

.p-loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  background-color: #f9f9f9;
  font-family: sans-serif;
  gap: 0.2rem;
  position: fixed;
  inset: 0;
  z-index: 9999;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.p-loader.js-loading-end {
  opacity: 0;
}

.p-loader__text {
  color: #4f4f4f;
  font-size: 2rem;
  font-family: "basic-sans", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.p-loader__i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0.1rem;
}

.p-loader__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #005bac;
  margin-bottom: 4px;
  -webkit-animation: bounce 1.2s infinite ease-in-out;
          animation: bounce 1.2s infinite ease-in-out;
}

.p-loader__bar {
  width: 2px;
  height: 16px;
  background-color: #4a90e2;
  border-radius: 2px;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

.p-loader__i:nth-of-type(2) .p-loader__dot {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.p-loader__i:nth-of-type(3) .p-loader__dot {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes bounce {
  0%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}

@keyframes bounce {
  0%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}
body {
  font-family: "Inter", "M PLUS 1p", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  background-color: #f9f9f9;
  margin: 0;
  position: relative;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

/* トップページのアニメーション */
img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  color: #1a1a1a;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: opacity 0.3s, color 0.3s;
  transition: opacity 0.3s, color 0.3s;
}
a:hover {
  opacity: 0.7;
}

h1 {
  color: #005bac;
}

h2 {
  color: #4a90e2;
}

.p-header__nav a:hover,
.p-footer__nav a:hover {
  color: #4a90e2;
  opacity: 1;
}

.l-bgIcon {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: clamp(320px, 80vw, 720px);
  height: clamp(320px, 80vw, 720px);
  opacity: 0.05;
  z-index: -1;
}

.drawer-icon {
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    display: block;
    background-color: transparent;
    width: 60px;
    height: 40px;
    margin-left: auto;
    position: relative;
    z-index: 20;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
    top: 16px;
    right: 0;
    background-color: #1a1a1a;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
    display: none;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
    width: 60px;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    top: 16px;
    right: 0;
    background-color: #1a1a1a;
  }
}

.drawer-icon__bar {
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer-icon__bar {
    display: block;
    position: absolute;
    width: 60px;
    height: 1px;
    background-color: #1a1a1a;
    -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
    transition: top 0.3s linear, -webkit-transform 0.3s linear;
    transition: transform 0.3s linear, top 0.3s linear;
    transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
  }
  .drawer-icon__bar:nth-of-type(1) {
    top: 8px;
    right: 0;
  }
  .drawer-icon__bar:nth-of-type(2) {
    width: 52px;
    top: 20px;
    right: 0;
  }
  .drawer-icon__bar:nth-of-type(3) {
    width: 44px;
    top: 32px;
    right: 0;
  }
}

.drawer__menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer__menu {
    padding-top: 96px;
    background-color: rgba(255, 255, 255, 0.8);
    display: block;
    width: 260px;
    height: 260px;
    position: fixed;
    top: -16px;
    right: -16px;
    border-radius: 50%;
    opacity: 1;
    -webkit-transform: translate(100%, -100%) rotate(180deg);
            transform: translate(100%, -100%) rotate(180deg);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  .drawer__menu.is-checked {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .drawer__menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .drawer__menu ul li {
    padding-left: 80px;
  }
  .drawer__menu ul li a {
    font-size: 18px;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(20px, 20px + 0vw, 20px) clamp(20px, 11.7127071823px + 2.2099447514vw, 40px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: clamp(16px, 14.3425414365px + 0.4419889503vw, 20px);
  color: #4a90e2;
  gap: 8px;
}
.p-header__logo img {
  width: clamp(60px, 43.4254143646px + 4.4198895028vw, 100px);
}
@media screen and (max-width: 767px) {
  .p-header__logo img {
    width: 60px;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.p-header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: clamp(12px, 5.3701657459px + 1.7679558011vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-header__nav ul li a {
  font-size: clamp(14px, 9.8563535912px + 1.1049723757vw, 24px);
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem; /* アイコン間の隙間 */
  margin-right: auto;
  padding-left: 1rem;
}

.p-header__icon {
  font-size: 2rem; /* アイコンサイズ */
  color: #4f4f4f; /* アイコンカラー */
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-header__icon:hover {
  color: #4a90e2; /* ホバー時の色変更 */
}

.p-header__icon--note {
  display: none;
}

.l-main {
  padding: 160px 20px 60px;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 80px;
  }
}

.p-fv {
  margin-bottom: 100px;
}

.p-fv__titleGroup {
  margin-bottom: 48px;
  text-align: center;
}

.p-fv__heading {
  font-size: clamp(36px, 26.0552486188px + 2.6519337017vw, 60px);
  font-weight: 600;
  margin-top: 140px;
  margin-bottom: 12px;
}

.p-fv__subheading {
  font-size: clamp(18px, 13.8563535912px + 1.1049723757vw, 28px);
  font-weight: 400;
  color: #4f4f4f;
}

.p-fv__catch-en {
  display: inline-block;
  font-size: clamp(14px, 9.0276243094px + 1.3259668508vw, 26px);
  color: #4f4f4f;
  text-align: center;
  font-family: "basic-sans", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.p-work {
  padding-block: 100px;
}

.p-work__title {
  font-size: clamp(24px, 17.3701657459px + 1.7679558011vw, 40px);
  font-weight: 700;
  margin-bottom: 40px;
}

.p-work__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 100px;
  max-width: 1400px;
  margin-top: 100px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-work__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-work__item {
  display: block;
  border-radius: 8px;
}
.p-work__item img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-work__item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-work__caption {
  margin-top: 40px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-work__caption:hover {
  opacity: 0.6;
}

.p-contact__title {
  font-size: clamp(24px, 17.3701657459px + 1.7679558011vw, 40px);
  font-weight: 700;
  margin-bottom: 40px;
}

.p-contact__form {
  max-width: 640px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  opacity: 0.7;
}

.p-contact__input,
.p-contact__textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 0;
  font-family: inherit;
}
.p-contact__input:focus,
.p-contact__textarea:focus {
  outline: none;
}

.p-contact__note a {
  text-decoration: underline !important;
}

.p-contact__submit {
  width: 100%;
  background: #4a90e2;
  color: #f9f9f9;
  border: none;
  padding: 12px;
  border-radius: 0;
  font-size: 16px;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-contact__submit:hover {
  opacity: 1;
}

.l-footer {
  padding: 40px 24px;
  text-align: center;
}

.p-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.p-footer__nav-list li a {
  font-size: 14px !important;
  color: #4f4f4f !important;
  text-decoration: none !important;
}

.menu-item a {
  font-size: 14px;
  color: #4f4f4f;
  text-decoration: none;
}

.p-footer__copyright {
  font-size: 14px;
  color: #888;
  font-family: "basic-sans", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.p-about-hero {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(20%, rgb(0, 0, 0)), color-stop(80%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(20%, rgb(0, 0, 0)), color-stop(80%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .p-about-hero {
    background-attachment: scroll;
  }
}

.p-about {
  margin-bottom: 60px;
}

.p-about__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.p-about__title {
  font-size: clamp(24px, 17.3701657459px + 1.7679558011vw, 40px);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: left;
}

.p-about__intro {
  font-size: clamp(14px, 13.1712707182px + 0.2209944751vw, 16px);
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: left;
}

.p-about__skills-heading,
.p-about__skills-heading,
.p-about__work-scope-heading,
.p-about__policy-heading,
.p-about__philosophy-heading {
  font-size: clamp(18px, 15.5138121547px + 0.6629834254vw, 24px);
  font-weight: 700;
  padding-top: 60px;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-about__skills-heading,
  .p-about__skills-heading,
  .p-about__work-scope-heading,
  .p-about__policy-heading,
  .p-about__philosophy-heading {
    padding-top: 16px;
  }
}

.p-about__skills-list,
.p-about__work-scope-list,
.p-about__policy-list,
.p-about__philosophy-list {
  list-style: disc inside;
  margin-bottom: 60px;
  text-align: left;
}

.p-about__skills-list li,
.p-about__work-scope-list li,
.p-about__policy-list li,
.p-about__philosophy-list li {
  font-size: clamp(14px, 13.1712707182px + 0.2209944751vw, 16px);
  margin-bottom: 10px;
  text-align: left;
}

.p-about__policy-item {
  font-size: clamp(14px, 13.1712707182px + 0.2209944751vw, 16px);
  margin-bottom: 10px;
  text-align: left;
}

.p-about__contact {
  display: inline-block;
  margin-top: 24px;
  background: #005bac;
  color: #f9f9f9;
  border: none;
  padding-block: 12px;
  padding-inline: 24px;
  border-radius: 4px;
  font-size: 16px;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-about__contact:hover {
  opacity: 0.7;
}

.l-privacy-policy {
  padding-top: 120px;
}

.p-privacy-policy {
  max-width: 800px;
  margin-inline: auto;
  padding: 40px 20px;
  line-height: 1.8;
  font-size: clamp(14px, 1.6vw, 16px);
}

.p-privacy-policy__title {
  color: #1a1a1a;
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 2em;
  text-align: center;
}

.p-privacy-policy__section {
  margin-bottom: 2em;
}

.p-privacy-policy__heading {
  color: #1a1a1a;
  margin-bottom: 0.5em;
  font-size: clamp(16px, 2vw, 20px);
}

.p-privacy-policy__text {
  font-size: inherit;
}

.l-404 {
  padding-top: 200px;
  padding-bottom: 248px;
}

.p-404 {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
  color: #1a1a1a;
}

.p-404__title {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: bold;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.p-404__text {
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 32px;
  color: #1a1a1a;
}

.p-404__link {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-404__link:hover {
  background-color: #1a1a1a;
  color: #f9f9f9;
}

#js-mouse {
  pointer-events: none;
  cursor: none;
  position: fixed;
  z-index: 9999;
  top: -14px;
  left: -14px;
  width: 20px;
  height: 20px;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  background: #005bac;
  opacity: 0.05;
  border-radius: 50%;
  -webkit-transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
  transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
}
#js-mouse.js-hover {
  -webkit-transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
  transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  opacity: 0.3;
}
@media (hover: none), (pointer: coarse) {
  #js-mouse {
    display: none;
  }
}

.mouse-trail-dot {
  position: fixed;
  width: 16px;
  height: 16px;
  background: #4a90e2;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 9998;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  margin-left: -12px;
  margin-top: -12px;
}
@media (hover: none), (pointer: coarse) {
  .mouse-trail-dot {
    display: none;
  }
}

.p-about-fv {
  width: 100%;
  height: 100vh;
  position: relative;
}

.fv__scrolldown {
  position: absolute;
  bottom: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fv__scrolldown-text {
  color: #4f4f4f;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.6;
}

.fv__scrolldown-bar {
  position: relative;
}
.fv__scrolldown-bar span {
  display: inline-block;
}
.fv__scrolldown-bar .bar {
  width: 2px;
  height: 70px;
  background: #4f4f4f;
  opacity: 0.6;
}
.fv__scrolldown-bar .circle {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  background: #4f4f4f;
  border-radius: 50%;
  -webkit-animation: 4s ease-in-out backwards infinite scrollDown;
          animation: 4s ease-in-out backwards infinite scrollDown;
}
@-webkit-keyframes scrollDown {
  0% {
    top: 0;
  }
  80% {
    top: 60px;
  }
  100% {
    top: 60px;
  }
}
@keyframes scrollDown {
  0% {
    top: 0;
  }
  80% {
    top: 60px;
  }
  100% {
    top: 60px;
  }
}

.off-time {
  font-family: "basic-sans", sans-serif;
  font-weight: 200;
  font-style: italic;
  font-size: clamp(18px, 15.5138121547px + 0.6629834254vw, 24px);
  font-weight: 700;
  padding-top: 60px;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .off-time {
    padding-top: 16px;
  }
}

.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 1rem;
  padding-right: 1rem;
}

.wp-block-image {
  opacity: 0.7;
}