@charset "UTF-8";
:root {
  --color-black: #1D1C1A;
  --color-white: #fff;
  --color-gray: #BBBBBB;
  --color-pink: #E32769;
  --color-yellow: #FFE100;
  --color-blue: #0061B6;
  --color-border: rgba(29, 28, 26, .1);
  --font-default: "YakuHanJP","Noto Sans JP","游ゴシック Medium","Yu Gothic Medium","游ゴシック体",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  --font-redonda: redonda, sans-serif;
  --aspect-ratio-golden: 1.618/1;
  --aspect-ratio-square: 1/1;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  word-break: break-all;
}

html {
  font-size: 62.5%;
}

/* HTML5 display-role rese for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

*::selection {
  background: var(--color-yellow);
  color: var(--color-black);
}

body {
  font-size: 1.8rem;
  font-family: var(--font-default);
  line-height: 2.62;
  color: var(--color-black);
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt" 1;
  background: url(../images/map.svg) calc(100% - 50px) 50px/calc(100px + 14vw) no-repeat, url(../images/background.jpg);
}
@media (max-width: 1024px) {
  body {
    background: url(../images/map.svg) calc(100% - 20px) 70px/60vw no-repeat, url(../images/background.jpg);
    font-size: 1.6rem;
    line-height: 2;
  }
}

.intro {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: url(../images/map.svg) center/calc(100px + 14vw) no-repeat, url(../images/background.jpg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-img {
  width: 20%;
}
.intro-img img {
  width: 100%;
}

.container-outer {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5rem;
}
@media (max-width: 1260px) {
  .container-outer {
    padding: 0 3rem;
  }
}
@media (max-width: 1024px) {
  .container-outer {
    padding: 0 2rem;
  }
}
.container-inner {
  max-width: 1124px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5rem;
}
@media (max-width: 1260px) {
  .container-inner {
    padding: 0 2rem;
  }
}
@media (max-width: 1024px) {
  .container-inner {
    padding: 0 2rem;
  }
}

button {
  font-family: var(--font-default);
  font-size: initial;
}

a {
  color: var(--color-black);
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  border-radius: 10px;
}

input:not([type=submit]),
input:not([type=radio]),
input:not([type=checkbox]),
textarea {
  width: 100%;
  height: 60px;
  border: 1px solid #D2D2D2;
  border-radius: 3px;
  padding: 0 20px;
}
input:not([type=submit]):focus,
input:not([type=radio]):focus,
input:not([type=checkbox]):focus,
textarea:focus {
  outline: none;
  background: #eff8fe;
}

textarea {
  padding: 20px;
  min-height: 150px;
  resize: none;
}

iframe {
  border-radius: 10px;
}

.main {
  padding-top: 20rem;
}
@media (max-width: 1024px) {
  .main {
    padding-top: 12rem;
  }
}

.english-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .english-title {
    align-items: flex-start;
  }
}
.english-title .english {
  font-size: 5rem;
  font-family: var(--font-redonda);
  color: var(--color-blue);
}
@media (max-width: 1024px) {
  .english-title .english {
    font-size: 3.2rem;
  }
}
.english-title .japanese {
  font-size: 1.8rem;
  font-weight: 900;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2;
  padding: 13px 30px 12px;
  border-radius: 1000px;
  border: 2px solid var(--color-black);
  background: var(--color-yellow);
  box-shadow: 0 2px 0 var(--color-black);
  line-height: 1;
}
@media (max-width: 1024px) {
  .button {
    margin-left: auto;
    margin-right: auto;
  }
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--color-black);
}
.button:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 var(--color-black);
}
.button--pink {
  background: var(--color-pink);
  color: var(--color-white);
}

.noimg {
  aspect-ratio: 16/9;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  border-radius: 10px;
  border: 3px solid var(--color-blue);
  color: var(--color-blue);
}

body {
  overflow: hidden;
}

.intro {
  transition: all 0.5s ease;
  transition-delay: 0.8s;
}
.intro-img {
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(50px);
}

.main {
  transition: all 0.5s ease;
  opacity: 0;
}

.is--loaded {
  overflow: auto;
}
.is--loaded .intro {
  opacity: 0;
}
.is--loaded .intro-img {
  opacity: 1;
  transform: translateY(0);
}
.is--loaded__complete .intro {
  opacity: 0;
  pointer-events: none;
}
.is--loaded__complete .main {
  opacity: 1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  transition: all 0.8s ease;
}
@media (max-width: 1024px) {
  .header {
    top: 0;
  }
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
}
@media (max-width: 1024px) {
  .header-inner {
    gap: 5rem;
    padding: 2rem;
  }
}
.header-nav {
  transition: all 0.3s ease-in-out;
}
.header-logo {
  width: 275px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .header-logo {
    width: 150px;
    line-height: 1;
  }
}
@media (max-width: 1024px) {
  .header-logo a {
    display: block;
  }
}
.header-logo__img {
  width: 100%;
}
.header-menu {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .header-menu {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    gap: 1rem;
    background: var(--color-blue);
    padding: 100px 20px 30px 30px;
    border-radius: 0 0 0 20px;
    transition: all 0.3s ease-in-out;
  }
}
.header-menu a {
  position: relative;
  display: block;
  font-weight: 900;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .header-menu a {
    width: 100%;
    padding: 3px 0;
    border-bottom: 2px solid var(--color-white);
    text-align: right;
    color: var(--color-white);
  }
}
.header-menu a:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: var(--color-yellow);
  z-index: -1;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: bottom right;
}
.header-menu a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header-toggle__button {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 37px;
  height: 37px;
}
@media (max-width: 1024px) {
  .header-toggle__button {
    display: flex;
  }
}
.header-toggle__line {
  width: 100%;
  height: 3px;
  background-color: var(--color-blue);
  transition: all 0.3s ease;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .header-toggle__line:nth-child(2) {
    transform: scaleX(1);
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .nav--shown .header-toggle__line:nth-child(2) {
    transform: scaleX(0);
    opacity: 0;
  }
}

.nav--shown .header-menu {
  right: 0;
}
.nav--shown .header-toggle__button {
  position: relative;
  z-index: 9999;
}
.nav--shown .header-toggle__line {
  background: var(--color-white);
}
.nav--shown .header-toggle__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
@media (max-width: 1024px) {
  .nav--shown .header-toggle__line:nth-child(2) {
    transform: scaleX(1);
  }
}
.footer {
  position: relative;
  margin-top: 10rem;
}
.footer-company {
  border-radius: 30px 30px 0 0;
  background: var(--color-blue);
  color: var(--color-white);
}
.footer-company__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 1024px) {
  .footer-company__inner {
    grid-template-columns: 1fr;
    gap: 5rem;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.footer-company__block .english-title {
  align-items: flex-start;
  margin-bottom: 5rem;
}
@media (max-width: 1024px) {
  .footer-company__block .english-title {
    margin-bottom: 2rem;
  }
}
.footer-company__block .english-title .english {
  color: var(--color-white);
}
.footer-company__block .english-title .japanese {
  font-size: 1.6rem;
}
.footer-company__block iframe {
  width: 100%;
}
@media (max-width: 1024px) {
  .footer-company__block iframe {
    height: auto;
    aspect-ratio: 1/1.2;
  }
}
.footer-company__block dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
  padding: 30px 0;
  border-top: 2px solid var(--color-white);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .footer-company__block dl {
    grid-template-columns: 100px 1fr;
    gap: 0;
    padding: 20px 0;
  }
}
.footer-company__block dl:last-child {
  border-bottom: 2px solid var(--color-white);
}
.footer-map {
  background: url(../images/grid-background.jpg) center center;
}
.footer-map__inner {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 1024px) {
  .footer-map__inner {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.footer-map__iframe {
  position: relative;
  margin-top: 7rem;
}
@media (max-width: 1024px) {
  .footer-map__iframe {
    margin-top: 2rem;
  }
}
.footer-map__iframe:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-blue);
  mix-blend-mode: hue;
  border-radius: 10px;
  pointer-events: none;
}
.footer-map__iframe iframe {
  display: block;
  width: 100%;
  height: 600px;
}
@media (max-width: 1024px) {
  .footer-map__iframe iframe {
    height: auto;
    aspect-ratio: 1/1.2;
  }
}
.footer-menu {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: url(../images/grid-background.jpg) center center;
}
@media (max-width: 1024px) {
  .footer-menu {
    padding-top: 0;
    padding-bottom: 10rem;
  }
}
.footer-menu__inner {
  display: grid;
  grid-template-columns: 327px 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .footer-menu__inner {
    grid-template-columns: 1fr;
  }
}
.footer-menu__logo {
  grid-column: 1/2;
  grid-row: 1/2;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .footer-menu__logo {
    grid-column: auto;
    grid-row: auto;
  }
}
.footer-menu__logo-img {
  width: 100%;
}
@media (max-width: 1024px) {
  .footer-menu__logo-img {
    display: block;
    width: 50%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.footer-menu__logo-text {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: 1.2rem;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .footer-menu__logo-text {
    grid-column: auto;
    grid-row: auto;
    text-align: center;
  }
}
.footer-nav {
  grid-column: 2/3;
  grid-row: 1/2;
  align-self: center;
  justify-self: end;
}
@media (max-width: 1024px) {
  .footer-nav {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    margin: 3rem 0;
    padding: 3rem 0;
    border-top: 3px solid var(--color-border);
    border-bottom: 3px solid var(--color-border);
  }
}
.footer-nav__list {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 2rem 3.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 1024px) {
  .footer-nav__list {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }
}
.footer-nav__list a {
  position: relative;
  width: fit-content;
  display: block;
  margin: 0 auto;
  text-align: center;
}
.footer-nav__list a:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  z-index: 0;
  background: var(--color-yellow);
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: bottom right;
  mix-blend-mode: darken;
}
.footer-nav__list a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.footer-info {
  grid-column: 2/3;
  grid-row: 2/3;
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 1.2rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .footer-info {
    grid-column: auto;
    grid-row: auto;
    align-items: flex-start;
  }
}

.cookie-box {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.6s ease;
  opacity: 0;
  pointer-events: none;
}
.cookie-box.is--shown {
  opacity: 1;
  pointer-events: auto;
}
.cookie-box.is--cookied {
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
}
.cookie-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  padding: 8rem 5rem;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .cookie-inner {
    flex-direction: column;
    gap: 2rem;
    padding: 5rem 2rem;
  }
}
.cookie-inner__button {
  padding: 20px 50px;
  background: var(--color-blue_footer);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 3rem;
}
@media (max-width: 1024px) {
  .cookie-inner__button {
    width: 100%;
  }
}
.cookie-inner__button:hover {
  background: var(--color-blue_text);
}

.home .header-inner {
  position: relative;
}
.home-mainvisual {
  width: 100%;
  padding-top: calc(50vh - 15rem);
}
@media (max-width: 1024px) {
  .home-mainvisual {
    padding-top: 50vw;
  }
}
.home-mainvisual-img {
  width: 100%;
  transform: scale(1.1);
  border-radius: 0;
}
@media (max-width: 1024px) {
  .home-mainvisual-img {
    height: 80vw;
    object-fit: cover;
  }
}
.home-article {
  overflow: hidden;
}
.home-info {
  padding: 10rem 0;
}
.home-info__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
@media (max-width: 1024px) {
  .home-info__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.home-info__block .english-title {
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-left: 5.2rem;
}
@media (max-width: 1024px) {
  .home-info__block .english-title {
    padding-left: 0;
  }
}
.home-info__list {
  padding: 3rem;
  border: 2px solid var(--color-black);
  border-radius: 20px;
  background: url(../images/grid-background.jpg);
}
@media (max-width: 1024px) {
  .home-info__list {
    padding: 3rem 2rem;
  }
}
.home-info__list .post {
  gap: 0;
}
.home-info__list .post-link {
  grid-template-columns: 180px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem 3rem;
  padding: 1rem;
  border-bottom: 2px solid var(--color-border);
}
@media (max-width: 1024px) {
  .home-info__list .post-link {
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
  }
}
.home-info__list .post-link h3 {
  align-self: flex-start;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .home-info__list .post-link h3 {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.home-info__list .post-link time {
  align-self: flex-end;
  font-size: 1.2rem;
  color: var(--color-blue);
  font-weight: 900;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .home-info__list .post-link time {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.home-info__list .post-image {
  height: 120px;
}
@media (max-width: 1024px) {
  .home-info__list .post-image {
    grid-column: 1/2;
    grid-row: 1/3;
    height: 100%;
  }
}
.home-info__list .post-image img, .home-info__list .post-image .noimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 0;
  font-size: 1.2rem;
}
.home-info__list .button {
  margin: 3rem auto 0;
}
.home-message {
  position: relative;
  padding: 10rem 0;
}
@media (max-width: 1024px) {
  .home-message {
    padding: 5rem 0;
  }
}
.home-message__title {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 2px 0 var(--color-white), -2px 2px 0 var(--color-white), 2px -2px 0 var(--color-white), -2px -2px 0 var(--color-white);
}
@media (max-width: 1024px) {
  .home-message__title {
    font-size: 4rem;
  }
}
@media (max-width: 1024px) {
  .home-message__title br {
    display: none;
  }
}
.home-message__content {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 5rem;
}
@media (max-width: 1024px) {
  .home-message__content {
    flex-direction: column;
  }
}
.home-message__img {
  width: 475px;
}
@media (max-width: 1024px) {
  .home-message__img {
    width: 100%;
  }
}
.home-message__text {
  flex-grow: 1;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .home-message__text {
    font-size: 2rem;
  }
}
.home-message__text .button {
  margin-top: 5rem;
}

.home .header-logo {
  position: absolute;
  transition: all 0.3s ease;
  top: calc(50vh - 15rem);
  left: 20%;
  width: 60%;
}
@media (max-width: 1024px) {
  .home .header-logo {
    top: calc(50vh - 3rem);
    left: 10%;
    width: 80%;
  }
}
@media (min-width: 1025px) {
  .home .header-nav {
    position: absolute;
    top: 5rem;
    transition: all 0.3s ease;
    width: fit-content;
    right: 50%;
    transform: translateX(50%);
    width: max-content;
  }
}

.is--scrolled .header-logo {
  position: absolute;
  transition: all 0.3s ease;
  top: 3rem;
  left: 5rem;
  width: 275px;
}
@media (max-width: 1024px) {
  .is--scrolled .header-logo {
    top: 2rem;
    left: 2rem;
    width: 150px;
  }
}
@media (min-width: 1025px) {
  .is--scrolled .header-nav {
    right: 5rem;
    transform: translateX(0);
  }
}
.fixed-back {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  border: 2px solid var(--color-black);
  background: var(--color-white);
  box-shadow: 0 2px 0 var(--color-black);
  border-radius: 50%;
  transition: all 0.6s ease;
}
@media (max-width: 1024px) {
  .fixed-back {
    bottom: 15px;
    right: 5px;
    width: 50px;
    height: 50px;
  }
}
.fixed-back:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--color-black);
}
.fixed-back:active {
  transform: translateY(1px);
}
.fixed-back:before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 15%, 0% 100%, 100% 100%);
  background: var(--color-pink);
  width: 20px;
  height: 20px;
}
.fixed-contact {
  position: fixed;
  top: 35%;
  right: 0;
  gap: 1rem;
  align-items: center;
  padding: 25px 10px;
  border: 2px solid var(--color-black);
  border-right: none;
  border-radius: 20px 0 0 20px;
  background-color: var(--color-white);
  box-shadow: 0 2px 0 var(--color-black);
  font-weight: 900;
  writing-mode: vertical-rl;
  text-orientation: upright; /* すべて縦方向に表示 */
  font-feature-settings: initial;
}
@media (max-width: 1024px) {
  .fixed-contact {
    top: auto;
    bottom: 10px;
    right: auto;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 75px);
    height: 60px;
    padding: 0;
    border-radius: 10px;
    border-right: 2px solid var(--color-black);
    background: var(--color-yellow);
    writing-mode: horizontal-tb;
    text-orientation: initial;
    text-align: center;
    font-size: 1.8rem;
  }
}
.fixed-contact img {
  margin-bottom: 10px;
  border-radius: 0;
}
@media (max-width: 1024px) {
  .fixed-contact img {
    margin: 0 10px 0 0;
    vertical-align: middle;
  }
}
.fixed-contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--color-black);
  background: var(--color-yellow);
}
.fixed-contact:active {
  transform: translateY(1px);
}
.fixed-text {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fixed-text p {
  white-space: nowrap;
  margin-top: 10%;
  font-size: 26rem;
  font-family: var(--font-redonda);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-black);
  opacity: 0.03;
  animation: marquee 300s linear infinite;
}
@media (max-width: 1024px) {
  .fixed-text p {
    font-size: 12rem;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.post {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
.post-link {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-rows: auto 1fr;
  gap: 1rem 4rem;
  padding-bottom: 4rem;
  border-bottom: 3px solid var(--color-border);
}
@media (max-width: 1024px) {
  .post-link {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
}
.post-link:hover .button {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--color-black);
}
.post-link:active .button {
  transform: translateY(1px);
  box-shadow: 0 1px 0 var(--color-black);
}
.post-image {
  grid-column: 1/2;
  grid-row: 1/3;
}
@media (max-width: 1024px) {
  .post-image {
    grid-column: auto;
    grid-row: 2/3;
  }
}
.post-image img, .post-image .noimg {
  margin-top: 9px;
  width: 100%;
}
.post h3 {
  align-self: flex-start;
  margin-top: 0 !important;
  font-size: 3rem;
  font-weight: 900;
}
@media (max-width: 1024px) {
  .post h3 {
    grid-column: auto;
    grid-row: 1/2;
  }
}
.post h3 + * {
  margin-top: 0;
}
.post-content {
  margin-top: 0 !important;
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .post-content {
    grid-column: auto;
    grid-row: 3/4;
  }
}
.post-content time {
  font-size: 1.4rem;
}
.post-content p {
  margin-top: 0 !important;
}
.post-content .button {
  margin-top: 1rem;
}
.post-item:last-child .post-link {
  padding-bottom: 0;
  border-bottom: none;
}

.article-header {
  display: grid;
  grid-template-columns: 50% auto;
  grid-template-rows: auto auto;
  gap: 2rem 5rem;
}
@media (max-width: 1024px) {
  .article-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.article-header__title {
  grid-column: 1/2;
  grid-row: 1/2;
  align-items: flex-start;
  align-self: flex-end;
}
@media (max-width: 1024px) {
  .article-header__title {
    grid-column: auto;
    grid-row: auto;
  }
}
.article-header__title .english {
  font-size: 11rem;
  font-family: var(--font-redonda);
  color: var(--color-blue);
}
@media (max-width: 1024px) {
  .article-header__title .english {
    font-size: 7rem;
    line-height: 1;
  }
}
.article-header__title .english:first-letter {
  text-transform: uppercase;
}
.article-header__title .japanese {
  font-size: 1.6rem;
}
.article-header__breadcrumbs {
  grid-column: 1/2;
  grid-row: 2/3;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1.2rem;
}
@media (max-width: 1024px) {
  .article-header__breadcrumbs {
    grid-column: auto;
    grid-row: auto;
  }
}
.article-header__img {
  grid-column: 2/3;
  grid-row: 1/3;
  align-self: flex-end;
  justify-self: flex-end;
}
@media (max-width: 1024px) {
  .article-header__img {
    grid-column: auto;
    grid-row: auto;
  }
}
.article-header__img img {
  width: 100%;
  max-width: 500px;
}
@media (max-width: 1024px) {
  .article-header__img img {
    max-width: 400px;
    width: 60vw;
  }
}

.page-content {
  margin-top: 10rem;
}
@media (max-width: 1024px) {
  .page-content {
    margin-top: 5rem;
  }
}
.page-content h1 {
  font-size: 5.2rem;
  text-shadow: 2px 2px 0 var(--color-white), -2px 2px 0 var(--color-white), 2px -2px 0 var(--color-white), -2px -2px 0 var(--color-white);
  font-weight: 900;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .page-content h1 {
    font-size: 3.2rem;
  }
}
.page-content h1 + * {
  margin-top: 3rem;
}
.page-content .page-content__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 8rem;
}
.page-content .page-content__links a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2;
  padding: 8px 20px 7px;
  border-radius: 1000px;
  border: 2px solid var(--color-black);
  background: var(--color-yellow);
  box-shadow: 0 2px 0 var(--color-black);
  line-height: 1;
}
.page-content .page-content__links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--color-black);
}
.page-content .page-content__links a:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 var(--color-black);
}
.page-content h2 {
  padding-bottom: 8px;
  border-bottom: 5px solid var(--color-blue);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .page-content h2 {
    font-size: 2.8rem;
  }
}
.page-content h2 + * {
  margin-top: 4rem;
}
.page-content * + h2 {
  margin-top: 3rem;
}
.page-content h3 {
  display: grid;
  grid-template-columns: 33px 1fr;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .page-content h3 {
    font-size: 2.6rem;
  }
}
.page-content h3:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin-top: 10px;
  background: var(--color-blue);
}
.page-content h3 + * {
  margin-top: 3.4rem;
}
.page-content * + h3 {
  margin-top: 2.6rem;
}
.page-content h4 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .page-content h4 {
    font-size: 2.4rem;
  }
}
.page-content h4 + * {
  margin-top: 3rem;
}
.page-content * + h4 {
  margin-top: 2.2rem;
}
.page-content h5 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.3;
}
.page-content h5 + * {
  margin-top: 3rem;
}
.page-content * + h4 {
  margin-top: 2.2rem;
}
.page-content img, .page-content .noimg {
  display: flex;
  width: 100%;
}
.page-content img + *, .page-content .noimg + * {
  margin-top: 2.4rem;
}
.page-content * + img, .page-content .noimg {
  margin-top: 2.4rem;
}
.page-content * + p {
  margin-top: 2.4rem;
}
.page-content p {
  font-size: 1.8rem;
  line-height: 1.8;
}
.page-content a:not([class]):not(.page-content__links a) {
  color: var(--color-blue);
  text-decoration: underline;
}
.page-content a:not([class]):not(.page-content__links a):hover {
  text-decoration: none;
}
.page-content * + .wp-block-columns,
.page-content * + .wp-block-image {
  margin-top: 2.4rem;
}
.page-content * + .wp-block-columns img,
.page-content * + .wp-block-image img {
  margin-top: 0;
}
.page-content .page-content__links {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 2.4rem;
}
@media (max-width: 1024px) {
  .page-content .page-content__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
@media (max-width: 1024px) {
  .page-content .page-content__links a {
    width: 100%;
    padding: 8px 10px 7px;
    font-size: 1.6rem;
  }
}
.page-content-footer {
  margin-top: 10rem;
}
.page-content-footer__links {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 8rem;
}

.contact-form dl {
  display: grid;
  grid-template-columns: 240px 1fr;
  padding: 30px 0;
  border-top: 1px solid var(--color-border);
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .contact-form dl {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.contact-form dl:first-child {
  border-top: none;
}
.contact-form dt {
  align-self: center;
  font-weight: 900;
}
.contact-form dd span {
  display: block;
  margin-top: 5px;
  font-size: 1.3rem;
}
.contact-form [name=postal_code] {
  width: 180px;
}
@media (max-width: 1024px) {
  .contact-form [name=postal_code] {
    width: 100%;
  }
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--color-black);
  border-radius: 10px;
  padding: 15px;
  background: var(--color-white);
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .contact-form dl:has([required]) dt {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.contact-form dl:has([required]) dt:after {
  content: "必須";
  margin-left: 10px;
  padding: 2px 10px;
  border-radius: 5px;
  background: var(--color-pink);
  color: var(--color-white);
  font-size: 1.4rem;
  line-height: 1;
}
@media (max-width: 1024px) {
  .contact-form dl:has([required]) dt:after {
    padding: 3px 10px;
  }
}
.contact-form .button {
  max-width: 400px;
  width: 100%;
  height: 70px;
  margin: 5rem auto 0;
  font-size: 3rem;
}

.simulator__inner {
  display: grid;
  grid-template-columns: 800px 1fr;
  gap: 5rem;
  padding: 3rem;
  border: 2px solid var(--color-black);
  border-radius: 20px;
  background: url(../images/grid-background.jpg);
}
@media (max-width: 1024px) {
  .simulator__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.simulator__inner h3 {
  grid-template-columns: 24px 1fr;
  font-size: 2rem;
}
.simulator__inner h3:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-top: 4px;
}
.simulator__inner h3:not(:first-child) {
  padding-top: 2.6rem;
  border-top: 2px solid var(--color-border);
}
.simulator__img {
  position: relative;
}
.simulator__img-svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
  margin-top: 0 !important;
}
.simulator__pallets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.simulator__pallet {
  border-radius: 10px;
}
.simulator__pallet-pallet {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  cursor: pointer;
}
.simulator__pallet-pallet:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  border-radius: 10px;
  opacity: 0;
}
.simulator__pallet-pallet.is--selected {
  border: 2px solid var(--color-yellow);
}
.simulator__pallet-pallet.is--selected:before {
  opacity: 0.5;
}
.simulator__pallet-code {
  font-size: 1.4rem;
  font-weight: 900;
}

/*# sourceMappingURL=style.css.map */
