@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
html {
  font-size: 16px;
}

body {
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: -0.04em;
  font-family: "Kiwi Maru", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  color: #1C1C1C;
  background: #f8f8f8;
}

body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("/video/site-bg.gif");
  background-size: contain;
  z-index: -1;
}

body:not(.is-loaded) {
  visibility: hidden;
}

body.is-fixed {
  overflow: hidden;
}

.frame {
  content: "";
  position: absolute;
  background: #F40009;
  z-index: 10;
}

.frame-top {
  width: 100%;
  height: 0.5rem;
  top: 0;
  left: 0;
}

.frame-top--fix {
  position: fixed;
  width: 100%;
  height: 0.5rem;
  top: 0;
  left: 0;
  z-index: 110;
}

.frame-right {
  width: 0.5rem;
  height: 100%;
  top: 0;
  right: 0;
}

.frame-bottom {
  width: 100%;
  height: 0.5rem;
  bottom: 0;
  left: 0;
}

.frame-bottom--fix {
  position: fixed;
  width: 100%;
  height: 0.5rem;
  bottom: 0;
  left: 0;
  z-index: 110;
}

.frame-left {
  width: 0.5rem;
  height: 100%;
  top: 0;
  left: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
}
.drawer .drawer__icon {
  position: absolute;
  width: 3.75rem;
  height: 2.5rem;
  top: 0.75rem;
  left: 2.5rem;
  border-radius: 1.25rem;
  border: 1px solid #fff;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 250;
}

.drawer .drawer__icon:hover {
  opacity: 0.8;
}

.drawer .drawer__icon-bars {
  position: relative;
  width: 1.25rem;
  height: 0.625rem;
  top: 0.875rem;
  left: 1.1875rem;
  z-index: 1000;
}

.drawer .drawer__icon-bar1,
.drawer .drawer__icon-bar2 {
  display: inline-block;
  position: absolute;
  width: 1.25rem;
  height: 0.125rem;
  background: #fff;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.drawer .drawer__icon-bar1 {
  top: 0;
}

.drawer .drawer__icon-bar2 {
  top: 0.5625rem;
}

.drawer .drawer__icon.is-open .drawer__icon-bar1 {
  top: calc(50% - 0.0625rem);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.drawer .drawer__icon.is-open .drawer__icon-bar2 {
  top: calc(50% - 0.0625rem);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer .drawer__icon.is-open {
  z-index: 251;
}

.drawer .drawer__contents {
  position: fixed;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  gap: 2.5rem;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  color: #fff;
  background: #F40009;
  padding: 13.75rem 2.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: scroll;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  z-index: 250;
}

.drawer .drawer__contents.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer .drawer__catch {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 19.375rem;
  flex: 0 0 19.375rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5714285714;
  letter-spacing: 0em;
}

.drawer .drawer__nav {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.75rem;
}

.drawer .drawer__items {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.75rem;
}

.drawer .drawer__item-title {
  font-family: "Fredoka", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.drawer .drawer__menus {
  margin-top: 1rem;
}

.drawer .drawer__menu {
  line-height: 1;
}

.drawer .drawer__menu:not(:first-of-type) {
  margin-top: 1rem;
}

.drawer .drawer__menu a {
  position: relative;
  display: inline-block;
  line-height: 1;
  padding-left: 1rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.drawer .drawer__menu a:hover {
  opacity: 0.8;
}

.drawer .drawer__menu a::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #ccc;
  border-radius: 50%;
}

.drawer .drawer__btns {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.25rem;
  flex: 0 0 16.25rem;
}

.drawer .drawer__btn:not(:first-of-type) {
  margin-top: 1.5rem;
}

.drawer .drawer__btn a {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid #fff;
  border-radius: 0.75rem;
  padding: 0.9375rem 1.25rem;
}

.drawer .drawer__btn-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.drawer .drawer__btn-en {
  display: inline-block;
  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.drawer .drawer__btn-en.adjustment {
  padding-left: 0.125rem;
}

.drawer .drawer__btn-circle {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.drawer .drawer__btn a:hover .drawer__btn-circle {
  background: #fff;
}

.drawer .drawer__btn-icon {
  position: absolute;
  width: 1.25rem;
  height: 0.3125rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='20'%20height='5'%20viewBox='0%200%2020%205'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='16'%20y='2'%20width='1'%20height='16'%20transform='rotate(90%2016%202)'%20fill='%231C1C1C'/%3e%3cpath%20d='M20%202.5L16%205L16%20-1.74846e-07L20%202.5Z'%20fill='%231C1C1C'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20width='20'%20height='5'%20viewBox='0%200%2020%205'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='16'%20y='2'%20width='1'%20height='16'%20transform='rotate(90%2016%202)'%20fill='%231C1C1C'/%3e%3cpath%20d='M20%202.5L16%205L16%20-1.74846e-07L20%202.5Z'%20fill='%231C1C1C'/%3e%3c/svg%3e");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.drawer .drawer__btn a:hover .drawer__btn-icon {
  background: #F40009;
}

.drawer .drawer__btn--reverse a {
  background: #fff;
}

.drawer .drawer__btn--reverse a .drawer__btn-text {
  color: #F40009;
}

.drawer .drawer__btn--reverse a .drawer__btn-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.drawer .drawer__btn--reverse a .drawer__btn-circle {
  border: 1px solid #F40009;
}

.drawer .drawer__btn--reverse a:hover .drawer__btn-circle {
  background: #F40009;
}

.drawer .drawer__btn--reverse a .drawer__btn-icon {
  width: 1.0625rem;
  height: 1.5rem;
  background: #F40009;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='12.7275'%20y='4.24272'%20width='1'%20height='16'%20transform='rotate(45%2012.7275%204.24272)'%20fill='%23F40009'/%3e%3cpath%20d='M15.9103%201.76781L14.8497%206.36401L11.3142%202.82847L15.9103%201.76781Z'%20fill='%23F40009'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='12.7275'%20y='4.24272'%20width='1'%20height='16'%20transform='rotate(45%2012.7275%204.24272)'%20fill='%23F40009'/%3e%3cpath%20d='M15.9103%201.76781L14.8497%206.36401L11.3142%202.82847L15.9103%201.76781Z'%20fill='%23F40009'/%3e%3c/svg%3e");
}

.drawer .drawer__btn--reverse a:hover .drawer__btn-icon {
  background: #fff;
}
#footer {
  background: #E6E6E6;
  padding: 10rem 0 2.5rem;
}

#footer .body {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2.5rem;
  padding-bottom: 5rem;
}

#footer .box {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 19.25rem;
  flex: 0 0 19.25rem;
}

#footer .logo a {
  display: block;
  color: #F40009;
}

#footer .logo a:hover {
  opacity: 0.8;
}

#footer .logo img {
  width: 100%;
  max-width: 9.125rem;
  margin-left: 0;
}

#footer .logo__title {
  margin-top: 1rem;
}

#footer .logo__ja {
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

#footer .logo__en {
  font-family: "Fredoka", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-top: 1rem;
}

#footer .catch {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  color: #F40009;
  margin-top: 2.25rem;
}

#footer .nav {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.75rem;
}

#footer .items {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.75rem;
}

#footer .item-title {
  font-family: "Fredoka", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #F40009;
}

#footer .menus {
  margin-top: 1rem;
}

#footer .menu {
  line-height: 1;
}

#footer .menu:not(:first-of-type) {
  margin-top: 1rem;
}

#footer .menu a {
  position: relative;
  display: inline-block;
  line-height: 1;
  padding-left: 1rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#footer .menu a:hover {
  color: #F40009;
}

#footer .menu a::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #F40009;
  border-radius: 50%;
}

#footer .btns {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.25rem;
  flex: 0 0 16.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

#footer .btn a {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 1px solid #F40009;
  border-radius: 0.75rem;
  padding: 0.9375rem 1.25rem;
}

#footer .btn-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: #F40009;
}

#footer .btn-en {
  display: inline-block;
  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

#footer .btn-en.adjustment {
  padding-left: 0.125rem;
}

#footer .btn-circle {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border: 1px solid #F40009;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#footer .btn a:hover .btn-circle {
  background: #F40009;
}

#footer .btn-icon {
  position: absolute;
  width: 1.25rem;
  height: 0.3125rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #F40009;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='20'%20height='5'%20viewBox='0%200%2020%205'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='16'%20y='2'%20width='1'%20height='16'%20transform='rotate(90%2016%202)'%20fill='%231C1C1C'/%3e%3cpath%20d='M20%202.5L16%205L16%20-1.74846e-07L20%202.5Z'%20fill='%231C1C1C'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20width='20'%20height='5'%20viewBox='0%200%2020%205'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='16'%20y='2'%20width='1'%20height='16'%20transform='rotate(90%2016%202)'%20fill='%231C1C1C'/%3e%3cpath%20d='M20%202.5L16%205L16%20-1.74846e-07L20%202.5Z'%20fill='%231C1C1C'/%3e%3c/svg%3e");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#footer .btn a:hover .btn-icon {
  background: #fff;
}

#footer .btn--reverse a {
  color: #fff;
  background: #F40009;
}

#footer .btn--reverse a .btn-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em;
  color: #fff;
}

#footer .btn--reverse a .btn-circle {
  border: 1px solid #fff;
}

#footer .btn--reverse a:hover .btn-circle {
  background: #fff;
}

#footer .btn--reverse a .btn-icon {
  width: 1.0625rem;
  height: 1.5rem;
  background: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='12.7275'%20y='4.24272'%20width='1'%20height='16'%20transform='rotate(45%2012.7275%204.24272)'%20fill='%23F40009'/%3e%3cpath%20d='M15.9103%201.76781L14.8497%206.36401L11.3142%202.82847L15.9103%201.76781Z'%20fill='%23F40009'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='12.7275'%20y='4.24272'%20width='1'%20height='16'%20transform='rotate(45%2012.7275%204.24272)'%20fill='%23F40009'/%3e%3cpath%20d='M15.9103%201.76781L14.8497%206.36401L11.3142%202.82847L15.9103%201.76781Z'%20fill='%23F40009'/%3e%3c/svg%3e");
}

#footer .btn--reverse a:hover .btn-icon {
  background: #F40009;
}

#footer .copyright {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.04em;
  color: #676463;
  padding-top: 2.5rem;
  border-top: 1px solid #5A5A5A;
  text-align: center;
}
#header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

#header .body {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0.5rem 0.5rem 0;
}

#header .logo {
  position: relative;
  z-index: 300;
}

#header .logo a {
  display: block;
  color: #F40009;
  background: #fff;
  border-radius: 0 0 0.75rem 0;
  padding: 2rem 2.5rem 1.25rem 2rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#header .logo a:hover {
  opacity: 0.8;
}

#header .logo__image {
  width: 100%;
  max-width: 6.25rem;
}

#header .logo__title {
  margin-top: 0.5rem;
}

#header .logo__ja {
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

#header .logo__en {
  font-family: "Fredoka", sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

#header .container {
  position: relative;
  background: #F40009;
  border-radius: 0 0 0 0.75rem;
  padding: 0.75rem 2rem 1.25rem 7.25rem;
}

#header .btn-wrap {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1rem;
}

#header .btn a {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 1.25rem;
  padding: 0.75rem 1.21875rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#header .btn a:hover {
  opacity: 0.8;
}

#header .items {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1rem;
}

#header .item a {
  gap: 0.375rem;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 1.25rem;
  padding: 0.4375rem 1.21875rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#header .item a:hover {
  opacity: 0.8;
}

#header .item__text {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.1666666667;
  letter-spacing: 0em;
  color: #F40009;
}

#header .item__en {
  font-family: "Fredoka", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

#header .item__icon {
  display: inline-block;
  width: 1.0625rem;
  height: 1.5rem;
  background: #F40009;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='12.7275'%20y='4.24272'%20width='1'%20height='16'%20transform='rotate(45%2012.7275%204.24272)'%20fill='%23F40009'/%3e%3cpath%20d='M15.9103%201.76781L14.8497%206.36401L11.3142%202.82847L15.9103%201.76781Z'%20fill='%23F40009'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='12.7275'%20y='4.24272'%20width='1'%20height='16'%20transform='rotate(45%2012.7275%204.24272)'%20fill='%23F40009'/%3e%3cpath%20d='M15.9103%201.76781L14.8497%206.36401L11.3142%202.82847L15.9103%201.76781Z'%20fill='%23F40009'/%3e%3c/svg%3e");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.l-inner,
.l-inner-s,
.l-inner-l {
  width: 100%;
  margin-inline: auto;
  padding: 0 1.25rem;
}

.l-inner {
  max-width: 1240px;
}

.l-inner-s {
  max-width: 52rem;
}

.l-inner-l {
  max-width: 1400px;
}
.c-accordion__block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5625rem;
}

.c-accordion__block-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2222222222;
  letter-spacing: -0.04em;
  color: #F40009;
  margin-top: 2rem;
}

.c-accordion .c-accordion__q {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid transparent;
  padding: 1.0625rem 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.c-accordion .c-accordion__item:last-of-type .c-accordion__q {
  border-bottom: 1px solid #ccc;
}

.c-accordion .c-accordion__item.is-open .c-accordion__q {
  border-bottom: 1px solid #ccc;
}

.c-accordion .c-accordion__row {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5rem;
}

.c-accordion .c-accordion__en {
  position: relative;
  top: 0.1875rem;
  font-family: "Fredoka", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  color: #F40009;
}

.c-accordion .c-accordion__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: -0.04em;
}

.c-accordion .c-accordion__icon {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}

.c-accordion .c-accordion__icon::before,
.c-accordion .c-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #F40009;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.c-accordion .c-accordion__icon::before {
  width: 1px;
  height: 1.5rem;
}

.c-accordion .c-accordion__item.is-open .c-accordion__icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.c-accordion .c-accordion__icon::after {
  width: 1.5rem;
  height: 1px;
}

.c-accordion .c-accordion__a {
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: height 0.2s ease-in-out, opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  transition: height 0.2s ease-in-out, opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.c-accordion .c-accordion__item.is-open .c-accordion__a {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.c-accordion .c-accordion__text {
  padding: 1.4375rem 0 1.9375rem;
}

.c-accordion .c-accordion__link {
  line-height: 1.2857142857;
  padding: 0 0.625rem 1.4375rem;
  margin-top: 0.625rem;
  text-align: right;
}

.c-accordion .c-accordion__link a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.3125rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-accordion .c-accordion__link a:hover {
  opacity: 0.8;
}

.c-accordion .c-accordion__link-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2857142857;
  letter-spacing: -0.04em;
  text-decoration: underline;
  color: #F40009;
}

.c-accordion .c-accordion__link-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: inline-block;
}

.c-accordion .c-accordion__link-icon img {
  width: 1.125rem;
  height: 1.125rem;
  -o-object-fit: contain;
  object-fit: contain;
}
.c-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 1.5rem;
  margin-top: 2.25rem;
}

.c-items .c-item {
  min-height: 18.375rem;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.75rem;
  padding-bottom: 1.1875rem;
}

.c-items .c-item--pb {
  padding-bottom: 0.625rem;
}

.c-items .c-item--q {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.c-items .c-item__title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em;
  color: #fff;
  width: 100%;
  background-image: url("../images/c-item-title.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0.5625rem 1.25rem 1.1875rem 1.25rem;
}

.c-items .c-item__title .small {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: -0.04em;
}

.c-items .c-item--q .c-item__title {
  padding-left: 3.5rem;
}

.c-items .c-item--q .c-item__title::before {
  content: "Q.";
  position: absolute;
  top: 0.625rem;
  left: 1.25rem;
  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #fff;
}

.c-items .c-item__dl-wrap {
  padding: 0.625rem 1.25rem 0;
}

.c-items .c-item__dl {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
}

.c-items .c-item__dl:last-of-type {
  border-bottom: none;
}

.c-items .c-item__dt {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.04em;
}

.c-items .c-item__dt .number {
  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.c-items .c-item__dd {
  position: relative;
  top: -0.125rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4444444444;
  letter-spacing: -0.04em;
}
.c-layout .c-layout__row {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
}

.c-layout .c-layout__head {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24rem;
  flex: 0 0 24rem;
  position: sticky;
  top: var(--header-height, 0px);
}

.c-layout .c-layout__illust {
  margin-top: 1.875rem;
}

.c-layout .c-layout__illust img {
  width: 15rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-layout .c-layout__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-layout .c-layout__block {
  margin-top: 3.75rem;
}

.c-layout .c-layout__block:first-of-type {
  margin-top: 0;
}

.c-layout .c-layout__block-title {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.04em;
  padding-left: 1.125rem;
  border-left: 2px solid #F40009;
}
.c-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 200;
}

.c-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.c-modal .c-modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

.c-modal .c-modal__body {
  position: relative;
  width: 100%;
  max-width: 50rem;
  max-height: 50vh;
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem 2.5rem 2rem 1.5rem;
  overflow: scroll;
}

.c-modal .c-modal__close {
  position: absolute;
  width: 1.125rem;
  height: 1.125rem;
  top: 0.6875rem;
  right: 0.6875rem;
  border: 1px solid #F40009;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-modal .c-modal__close:hover {
  opacity: 0.8;
}

.c-modal .c-modal__close::before,
.c-modal .c-modal__close::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 1px;
  top: 50%;
  left: 50%;
  background: #F40009;
}

.c-modal .c-modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-modal .c-modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-modal .c-modal__title {
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2222222222;
  letter-spacing: 0.04em;
  padding-left: 1rem;
}

.c-modal .c-modal__title::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  top: 0.5rem;
  left: 0;
  background: #F40009;
  border-radius: 50%;
}

.c-modal .c-modal__text {
  letter-spacing: -0.03em;
  margin-top: 0.75rem;
}
.c-title01 {
  text-align: center;
}

.c-title01 .c-title01__en {
  font-family: "Fredoka", sans-serif;
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: -1px -1px 0 #F40009, 1px -1px 0 #F40009, -1px 1px 0 #F40009, 1px 1px 0 #F40009;
  border-bottom: 1px solid #F40009;
}

.c-title01 .c-title01__ja {
  color: #F40009;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: -0.04em;
}

.c-title01 .c-title01__lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: -0.04em;
  margin-top: 1.5rem;
  text-align: left;
}

.c-title02 .c-title02__en {
  font-family: "Fredoka", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  color: #F40009;
}

.c-title02 .c-title02__ja {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: -0.04em;
  color: #F40009;
  margin-top: 0.625rem;
}

.c-title02 .c-title02__lead {
  margin-top: 1.5rem;
}
.common-cta {
  background-image: url("../images/common-cta-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3.75rem 0;
}

.common-cta .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.common-cta .item a {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(2px);
  padding: 9.15625rem 3.75rem;
}

.common-cta .item__text {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: #F40009;
}

.common-cta .item__en {
  display: inline-block;
  font-family: "Fredoka", sans-serif;
  font-size: 3.375rem;
  font-weight: 500;
  line-height: 1.1851851852;
  letter-spacing: 0.04em;
}

.common-cta .item__en.adjustment {
  padding-left: 0.125rem;
}

.common-cta .item__circle {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border: 1px solid #F40009;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-cta .item a:hover .item__circle {
  background: #F40009;
}

.common-cta .item__icon {
  position: absolute;
  width: 1.0625rem;
  height: 1.5rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #F40009;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='12.7275'%20y='4.24272'%20width='1'%20height='16'%20transform='rotate(45%2012.7275%204.24272)'%20fill='%23F40009'/%3e%3cpath%20d='M15.9103%201.76781L14.8497%206.36401L11.3142%202.82847L15.9103%201.76781Z'%20fill='%23F40009'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='12.7275'%20y='4.24272'%20width='1'%20height='16'%20transform='rotate(45%2012.7275%204.24272)'%20fill='%23F40009'/%3e%3cpath%20d='M15.9103%201.76781L14.8497%206.36401L11.3142%202.82847L15.9103%201.76781Z'%20fill='%23F40009'/%3e%3c/svg%3e");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-cta .item a:hover .item__icon {
  background: #fff;
}
.common-fv {
  padding-top: var(--header-height, 155px);
}

.breadcrumb {
  margin-top: 0.3125rem;
}

.breadcrumb .box {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 4.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.1666666667;
  letter-spacing: -0.04em;
}

.breadcrumb .item {
  position: relative;
  display: inline-block;
}

.breadcrumb .item::before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 1px;
  top: 50%;
  right: -3.75rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #ccc;
}

.breadcrumb .item:last-of-type::before {
  display: none;
}

.breadcrumb .item a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.breadcrumb .item a:hover {
  opacity: 0.8;
}

.common-fv .body {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2.5rem;
  margin-top: 5rem;
}

.common-fv .contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 0.9375rem;
}

.common-fv .en {
  font-family: "Fredoka", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #F40009;
}

.common-fv .ja {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.04em;
  margin-top: 0.625rem;
}

.common-fv .text {
  margin-top: 3.75rem;
}

.common-fv .illust {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24rem;
  flex: 0 0 24rem;
  width: 24rem;
  height: 24rem;
}

.common-fv .illust img {
  width: 17.0625rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.common-fv .image {
  margin-top: -1.25rem;
}
.common-nav {
  padding: 10rem 0;
}

.common-nav .block {
  margin-top: 5rem;
}

.common-nav .block:first-of-type {
  margin-top: 0;
}

.common-nav .en {
  font-family: "Fredoka", sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1111111111;
  letter-spacing: 0.04em;
  color: #F40009;
}

.common-nav .ja {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.1428571429;
  letter-spacing: -0.04em;
  padding-left: 1rem;
  margin-top: 0.625rem;
}

.common-nav .ja::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #F40009;
  border-radius: 50%;
}

.common-nav .items-wrap {
  margin-top: 2rem;
}

.common-nav .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.common-nav .item a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  border-radius: 0.75rem;
  background: #fff;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-nav .item__head {
  width: 100%;
  padding: 1.25rem 1.25rem 0;
}

.common-nav .item__en {
  position: relative;
  font-family: "Fredoka", sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  padding-left: 0.375rem;
}

.common-nav .item__en::before {
  content: "";
  position: absolute;
  width: 0.25rem;
  height: 0.25rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #F40009;
  border-radius: 50%;
}

.common-nav .item__number {
  font-family: "Fredoka", sans-serif;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #F40009;
  margin-top: 0.25rem;
}

.common-nav .item__image {
  width: 100%;
  padding: 0 1.25rem;
  margin-top: -4.375rem;
  overflow: hidden;
}

.common-nav .item__image img {
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-nav .item a:hover .item__image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.common-nav .item__contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.25rem;
  background: #D4E0F8;
  border-radius: 0 0 0.75rem 0.75rem;
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.common-nav .item__contents::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.75rem;
  top: -0.6875rem;
  left: 0;
  background: #D4E0F8;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='282'%20height='28'%20viewBox='0%200%20282%2028'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M282%2028H0V10.5476C48.7407%20-3.59261%2089.4306%20-3.43892%20138.389%2010.5476C184.954%2023.8502%20241.528%2025.5698%20282%2010.5475V28Z'%20fill='%23D4E0F8'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20width='282'%20height='28'%20viewBox='0%200%20282%2028'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M282%2028H0V10.5476C48.7407%20-3.59261%2089.4306%20-3.43892%20138.389%2010.5476C184.954%2023.8502%20241.528%2025.5698%20282%2010.5475V28Z'%20fill='%23D4E0F8'/%3e%3c/svg%3e");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transform: translateY(-50%) scale(1.1);
  transform: translateY(-50%) scale(1.1);
}

.common-nav .item__texts {
  position: relative;
  z-index: 1;
}

.common-nav .item__title {
  font-family: "Fredoka", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.1428571429;
  letter-spacing: 0.04em;
}

.common-nav .item__catch {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.04em;
  margin-top: 0.375rem;
}

.common-nav .item__circle {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border: 1px solid #1C1C1C;
  border-radius: 50%;
  margin-top: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-nav .item a:hover .item__circle {
  border: 1px solid #F40009;
  background: #F40009;
}

.common-nav .item__icon {
  position: absolute;
  width: 1.25rem;
  height: 0.3125rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #1C1C1C;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='20'%20height='5'%20viewBox='0%200%2020%205'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='16'%20y='2'%20width='1'%20height='16'%20transform='rotate(90%2016%202)'%20fill='%231C1C1C'/%3e%3cpath%20d='M20%202.5L16%205L16%20-1.74846e-07L20%202.5Z'%20fill='%231C1C1C'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20width='20'%20height='5'%20viewBox='0%200%2020%205'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='16'%20y='2'%20width='1'%20height='16'%20transform='rotate(90%2016%202)'%20fill='%231C1C1C'/%3e%3cpath%20d='M20%202.5L16%205L16%20-1.74846e-07L20%202.5Z'%20fill='%231C1C1C'/%3e%3c/svg%3e");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-nav .item a:hover .item__icon {
  background: #F40009;
  background: #fff;
}

.common-nav .item:nth-of-type(2) .item__contents {
  background: #DEEFFF;
}

.common-nav .item:nth-of-type(2) .item__contents::before {
  background: #DEEFFF;
}

.common-nav .item:nth-of-type(3) .item__contents {
  background: #D6F2EA;
}

.common-nav .item:nth-of-type(3) .item__contents::before {
  background: #D6F2EA;
}

.common-nav .item:nth-of-type(4) .item__contents {
  background: #D2F0D2;
}

.common-nav .item:nth-of-type(4) .item__contents::before {
  background: #D2F0D2;
}

.common-nav .box {
  margin-top: 2rem;
}

.common-nav .box__body {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  overflow: hidden;
}

.common-nav .box__contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.375rem;
  background: #F8EDA8;
  border-radius: 0.75rem 0 0 0.75rem;
  padding: 2.5rem;
}

.common-nav .box__contents::before {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 100%;
  top: 50%;
  right: -1.25rem;
  -webkit-transform: translateY(-50%) scale(1.1);
  transform: translateY(-50%) scale(1.1);
  background-image: url("data:image/svg+xml,%3csvg%20width='20'%20height='180'%20viewBox='0%200%2020%20180'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M-1.54974e-05%20180L-7.62939e-06%20-8.74228e-07L12.466%20-3.29321e-07C22.5662%2031.1111%2022.4564%2057.0833%2012.466%2088.3333C2.9641%20118.056%201.73585%20154.167%2012.466%20180L-1.54974e-05%20180Z'%20fill='%23F8EDA8'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
}

.common-nav .box__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.common-nav .box__circle {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border: 1px solid #1C1C1C;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-nav .box a:hover .box__circle {
  background: #F40009;
  border: 1px solid #F40009;
}

.common-nav .box__icon {
  position: absolute;
  width: 1.25rem;
  height: 0.3125rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #1C1C1C;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='20'%20height='5'%20viewBox='0%200%2020%205'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='16'%20y='2'%20width='1'%20height='16'%20transform='rotate(90%2016%202)'%20fill='%231C1C1C'/%3e%3cpath%20d='M20%202.5L16%205L16%20-1.74846e-07L20%202.5Z'%20fill='%231C1C1C'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20width='20'%20height='5'%20viewBox='0%200%2020%205'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='16'%20y='2'%20width='1'%20height='16'%20transform='rotate(90%2016%202)'%20fill='%231C1C1C'/%3e%3cpath%20d='M20%202.5L16%205L16%20-1.74846e-07L20%202.5Z'%20fill='%231C1C1C'/%3e%3c/svg%3e");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-nav .box a:hover .box__icon {
  background: #fff;
}

.common-nav .box__image {
  background: #fff;
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 0.75rem 3.75rem 0.75rem 5rem;
  overflow: hidden;
}

.common-nav .box__image img {
  width: 14.25rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-nav .box a:hover .box__image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.common-special {
  padding-top: 8.75rem;
  margin-top: -8.75rem;
  overflow: hidden;
}

.common-special .body {
  color: #fff;
  background: #F40009;
  padding: 5rem 0 3.75rem;
}

.common-special .row {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
}

.common-special .contents {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 19.625rem;
  flex: 0 0 19.625rem;
}

.common-special .en {
  font-family: "Fredoka", sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1111111111;
  letter-spacing: 0.04em;
}

.common-special .ja {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.1428571429;
  letter-spacing: -0.04em;
  padding-left: 1rem;
  margin-top: 0.625rem;
}

.common-special .ja::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
}

.common-special .catch {
  font-size: 3.375rem;
  font-weight: 500;
  line-height: 1.1851851852;
  letter-spacing: -0.04em;
  margin-top: 1.5rem;
}

.common-special .btn {
  margin-top: 2.25rem;
}

.common-special .btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.75rem;
  border-radius: 1.5rem;
  border: 1px solid #fff;
  padding: 1rem 1.65625rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-special .btn a:hover {
  background: #fff;
}

.common-special .btn__text {
  font-family: "Fredoka", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-special .btn a:hover .btn__text {
  color: #F40009;
}

.common-special .btn__icon {
  display: inline-block;
  width: 1.25rem;
  height: 0.3125rem;
  background: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='20'%20height='5'%20viewBox='0%200%2020%205'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='16'%20y='2'%20width='1'%20height='16'%20transform='rotate(90%2016%202)'%20fill='%231C1C1C'/%3e%3cpath%20d='M20%202.5L16%205L16%20-1.74846e-07L20%202.5Z'%20fill='%231C1C1C'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20width='20'%20height='5'%20viewBox='0%200%2020%205'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='16'%20y='2'%20width='1'%20height='16'%20transform='rotate(90%2016%202)'%20fill='%231C1C1C'/%3e%3cpath%20d='M20%202.5L16%205L16%20-1.74846e-07L20%202.5Z'%20fill='%231C1C1C'/%3e%3c/svg%3e");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-special .btn a:hover .btn__icon {
  background: #F40009;
}

.common-special .image {
  position: relative;
  right: -2.5rem;
  width: 100%;
  max-width: 27.5rem;
  margin-inline: auto;
  margin-top: -15.3125rem;
}

.common-special .items {
  width: 100%;
  max-width: 25rem;
}

.common-special .item a {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.125rem;
  padding: 1.09375rem 0;
  border-top: 1px solid #fff;
}

.common-special .item:last-of-type a {
  border-bottom: 1px solid #fff;
}

.common-special .item__en {
  font-family: "Fredoka", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.common-special .item__ja {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2222222222;
  letter-spacing: -0.04em;
  margin-top: 0.375rem;
}

.common-special .item__circle {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-special .item a:hover .item__circle {
  background: #fff;
}

.common-special .item__icon {
  position: absolute;
  width: 1.25rem;
  height: 0.3125rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='20'%20height='5'%20viewBox='0%200%2020%205'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='16'%20y='2'%20width='1'%20height='16'%20transform='rotate(90%2016%202)'%20fill='%231C1C1C'/%3e%3cpath%20d='M20%202.5L16%205L16%20-1.74846e-07L20%202.5Z'%20fill='%231C1C1C'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20width='20'%20height='5'%20viewBox='0%200%2020%205'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='16'%20y='2'%20width='1'%20height='16'%20transform='rotate(90%2016%202)'%20fill='%231C1C1C'/%3e%3cpath%20d='M20%202.5L16%205L16%20-1.74846e-07L20%202.5Z'%20fill='%231C1C1C'/%3e%3c/svg%3e");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-special .item a:hover .item__icon {
  background: #F40009;
}
.interview-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 200;
}

.interview-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.interview-modal .interview-modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

.interview-modal .interview-modal__inner {
  position: relative;
  width: 100%;
  max-width: 67.5rem;
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
}

.interview-modal .interview-modal__body {
  width: 100%;
  max-height: 37.5rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 5rem;
  padding: 3.75rem 0 3.75rem 5rem;
  overflow: scroll;
}

.interview-modal .interview-modal__close {
  position: absolute;
  width: 1.125rem;
  height: 1.125rem;
  top: 0.6875rem;
  right: 0.6875rem;
  border: 1px solid #F40009;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1;
}

.interview-modal .interview-modal__close:hover {
  opacity: 0.8;
}

.interview-modal .interview-modal__close::before,
.interview-modal .interview-modal__close::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 1px;
  top: 50%;
  left: 50%;
  background: #F40009;
}

.interview-modal .interview-modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.interview-modal .interview-modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.interview-modal .interview-modal__contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.interview-modal .interview-modal__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: -0.04em;
  color: #F40009;
  border-left: 2px solid #F40009;
  padding-left: 1rem;
}

.interview-modal .interview-modal__name {
  font-family: "Fredoka", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #F40009;
  margin-top: 1.5rem;
}

.interview-modal .interview-modal__department {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2857142857;
  letter-spacing: -0.04em;
  margin-top: 1.5rem;
}

.interview-modal .interview-modal__job {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2857142857;
  letter-spacing: -0.04em;
  color: #676463;
  margin-top: 0.25rem;
}

.interview-modal .interview-modal__year {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2857142857;
  letter-spacing: -0.04em;
  margin-top: 0.75rem;
}

.interview-modal .interview-modal__items {
  margin-top: 2.5rem;
}

.interview-modal .interview-modal__item:not(:first-of-type) {
  margin-top: 2.5rem;
}

.interview-modal .interview-modal__item-row {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5rem;
}

.interview-modal .interview-modal__item-en {
  position: relative;
  top: 0.3125rem;
  font-family: "Fredoka", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2857142857;
  letter-spacing: 0em;
  color: #F40009;
}

.interview-modal .interview-modal__item-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: -0.04em;
}

.interview-modal .interview-modal__item-texts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.interview-modal .interview-modal__item-note {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: -0.04em;
}

.interview-modal .interview-modal__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25rem;
  flex: 0 0 25rem;
}

.interview-modal .interview-modal__image img {
  border-radius: 0.75rem 0 0 0.75rem;
}
#page-career .common-fv .illust img {
  position: relative;
  width: 100%;
  top: -2.8125rem;
}

#career-wrap {
  position: relative;
  padding-top: 3.4722222222vw;
  margin-top: -3.4722222222vw;
  overflow: hidden;
}

#career-wrap::before,
#career-wrap::after,
#career-wrap .road-01,
#career-wrap .road-02 {
  content: "";
  position: absolute;
  width: 200vw;
  height: 6vw;
  background: #fff;
  z-index: -2;
}

#career-wrap::before {
  top: 3.5vw;
  left: -59vw;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

#career-wrap::after {
  top: 70vw;
  right: -54vw;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

#career-wrap .road-01 {
  top: 110.5vw;
  left: -59vw;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

#career-wrap .road-02 {
  top: 157.5vw;
  right: -54vw;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

#career-wrap .illust {
  position: absolute;
  z-index: -1;
}

#career-wrap .illust-01 {
  width: 7.0138888889vw;
  height: 7.0833333333vw;
  top: 30.2083333333vw;
  left: 10.2777777778vw;
}

#career-wrap .illust-02,
#career-wrap .illust-05,
#career-wrap .illust-08 {
  width: 9.2361111111vw;
  height: 8.4027777778vw;
}

#career-wrap .illust-02 {
  top: 45.9722222222vw;
  right: 5vw;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

#career-wrap .illust-03 {
  width: 9.2361111111vw;
  height: 6.6666666667vw;
  top: 54.4444444444vw;
  left: 9.375vw;
}

#career-wrap .illust-04 {
  width: 5.7638888889vw;
  height: 6.5277777778vw;
  top: 64.8611111111vw;
  right: 11.4583333333vw;
}

#career-wrap .illust-05 {
  top: 89.4444444444vw;
  left: 3.4722222222vw;
}

#career-wrap .illust-06 {
  width: 5.4861111111vw;
  height: 7.6388888889vw;
  top: 101.0416666667vw;
  right: 8.6805555556vw;
}

#career-wrap .illust-07 {
  width: 6.25vw;
  height: 7.2916666667vw;
  top: 133.0555555556vw;
  left: 10.7638888889vw;
}

#career-wrap .illust-08 {
  top: 163.1944444444vw;
  left: 35.7638888889vw;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

#career-01 {
  padding: 12.5vw 0 6.25vw;
}

#career-01 .items {
  margin-top: 8.3333333333vw;
}

#career-01 .item {
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.25rem;
  padding-left: 2.5rem;
}

#career-01 .item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: 0.5rem;
}

#career-01 .item__number {
  position: absolute;
  top: -2.7777777778vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#career-01 .item__number img {
  width: 10rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

#career-01 .item__contents {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 22.5rem;
  flex: 0 0 22.5rem;
}

#career-01 .item__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: -0.04em;
  color: #F40009;
}

#career-01 .item__text {
  margin-top: 1.25vw;
}

#career-01 .item__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 22.5rem;
  flex: 0 0 22.5rem;
}

#career-01 .item:nth-of-type(2) {
  margin-top: 10.8333333333vw;
}

#career-01 .item:nth-of-type(2) .item__number {
  top: -4.8611111111vw;
  left: calc(50% - 3.125rem);
}

#career-01 .item:nth-of-type(3) {
  margin-top: 7.9861111111vw;
}

#career-01 .item:nth-of-type(3) .item__number {
  left: calc(50% + 1.5625rem);
}

#career-01 .item:nth-of-type(4) {
  margin-top: 10.9722222222vw;
}

#career-01 .item:nth-of-type(4) .item__number {
  top: -4.8611111111vw;
}

#career-02 {
  padding: 5.9027777778vw 0 17.9166666667vw;
}

#career-02 .image-wrap {
  margin-top: 2.7777777778vw;
}

#career-02 .image-map {
  position: relative;
}

.image-map__link {
  position: absolute;
  display: block;
  font-size: 0;
  color: transparent;
}

.image-map__link--staff {
  left: 5.18%;
  top: 51.38%;
  width: 22.6%;
  height: 6.92%;
}

.image-map__link--sales {
  left: 30.93%;
  top: 51.21%;
  width: 38.26%;
  height: 7.61%;
}
#page-company .common-fv .illust {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 22.6875rem;
  flex: 0 0 22.6875rem;
}

#page-company .common-fv .illust img {
  position: relative;
  width: 100%;
  top: -4.375rem;
}

#company-01 {
  padding: 11.25rem 0 5.625rem;
}

#company-02 {
  padding: 5.625rem 0;
}

#company-02 .title {
  margin-top: 1.5rem;
  text-align: center;
}

#company-02 .main-title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-bottom: 0.4375rem;
}

#company-02 .main-title::before {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #1C1C1C;
}

#company-02 .sub-title {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: -0.04em;
  margin-top: 0.5rem;
}

#company-02 .c-items {
  grid-template-columns: repeat(4, 1fr);
}

#company-03 {
  padding: 5.625rem 0;
}

#company-04 {
  padding: 5.625rem 0 13.625rem;
}
#page-environment .common-fv .illust img {
  position: relative;
  top: 0.625rem;
  right: -2.1875rem;
  width: 15.6875rem;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

#environment-01 {
  padding: 11.25rem 0 5.625rem;
}

#environment-01 .c-layout__illust {
  margin-top: 1.25rem;
}

#environment-01 .c-layout__illust img {
  width: 17.5rem;
}

#environment-01 .c-accordion__q {
  padding: 1.0625rem 0.625rem;
}

#environment-01 .c-accordion__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2222222222;
  letter-spacing: 0em;
}

#environment-01 .c-accordion__text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: -0.04em;
  padding: 1.4375rem 0.625rem;
}

#environment-01 .c-accordion__text--pb {
  padding-bottom: 0;
}

#environment-02 {
  padding: 5.625rem 0;
}

#environment-02 .c-layout__illust {
  margin-top: 3.125rem;
}

#environment-02 .item:not(:first-of-type) {
  margin-top: 3.75rem;
}

#environment-02 .item__title {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.04em;
  padding-left: 1.125rem;
  border-left: 2px solid #F40009;
}

#environment-02 .item__text {
  margin-top: 1.5rem;
}

#environment-02 .item_note {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2.4615384615;
  letter-spacing: -0.04em;
}

#environment-02 .item__link {
  line-height: 1.2857142857;
  padding: 0 0.625rem 1.4375rem;
  margin-top: 0.625rem;
  text-align: right;
}

#environment-02 .item__link a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.3125rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#environment-02 .item__link a:hover {
  opacity: 0.8;
}

#environment-02 .item__link-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2857142857;
  letter-spacing: -0.04em;
  text-decoration: underline;
  color: #F40009;
}

#environment-02 .item__link-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: inline-block;
}

#environment-02 .item__link-icon img {
  width: 1.125rem;
  height: 1.125rem;
  -o-object-fit: contain;
  object-fit: contain;
}

#environment-03 {
  padding: 5.625rem 0 16.125rem;
}

#environment-03 .c-layout__illust {
  margin-top: 1.25rem;
}

#environment-03 .c-layout__illust img {
  position: relative;
  left: -1.875rem;
}

#environment-03 .item {
  border-top: 1px solid #ccc;
  padding: 1.9375rem 4.3125rem 1.9375rem 0;
}

#environment-03 .item:last-of-type {
  border-bottom: 1px solid #ccc;
}

#environment-03 .item__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2222222222;
  letter-spacing: -0.04em;
}

#environment-03 .units {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.125rem;
  margin-top: 1rem;
}

#environment-03 .unit a {
  gap: 0.3125rem;
}

#environment-03 .unit__name {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2857142857;
  letter-spacing: -0.04em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#environment-03 .unit a .unit__name {
  text-decoration: underline;
}

#environment-03 .unit a:hover .unit__name,
#environment-03 .unit a.is-open .unit__name {
  color: #F40009;
}

#environment-03 .unit__icon {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid #1C1C1C;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#environment-03 .unit a:hover .unit__icon,
#environment-03 .unit a.is-open .unit__icon {
  background: #F40009;
  border: 1px solid #F40009;
}

#environment-03 .unit__icon::before,
#environment-03 .unit__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #1C1C1C;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#environment-03 .unit__icon::before {
  width: 1px;
  height: 0.5625rem;
}

#environment-03 .unit__icon::after {
  width: 0.5625rem;
  height: 1px;
}

#environment-03 .unit a:hover .unit__icon::before,
#environment-03 .unit a:hover .unit__icon::after,
#environment-03 .unit a.is-open .unit__icon::before,
#environment-03 .unit a.is-open .unit__icon::after {
  background: #fff;
}
#page-information .common-fv .body {
  border-bottom: 1px solid #ccc;
}

#page-information .common-fv .illust {
  margin-top: -1.25rem;
}

#page-information .common-fv .illust img {
  position: relative;
  width: 20rem;
  top: 1.875rem;
  right: 1.5625rem;
}

#information-01 {
  padding: 11.25rem 0 5.625rem;
}

#information-01 .dl {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
  border-top: 1px solid #ccc;
  padding: 1.4375rem 0;
}

#information-01 .dl:last-of-type {
  border-bottom: 1px solid #ccc;
}

#information-01 .dt,
#information-01 .dd {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: -0.04em;
}

#information-01 .dt {
  position: relative;
  width: calc(24.3% - 0.75rem);
  padding-left: 1rem;
}

#information-01 .dt::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #F40009;
  border-radius: 50%;
}

#information-01 .dd {
  width: calc(75.7% - 0.75rem);
  font-weight: 400;
}

#information-01 .dd__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375;
  letter-spacing: -0.04em;
}

#information-01 .dd__text--mt {
  margin-top: 0.5rem;
}

#information-01 .dd__note {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2857142857;
  letter-spacing: -0.04em;
  color: #676463;
  margin-top: 0.5rem;
}

#information-01 .list {
  position: relative;
  padding-left: 1.4375rem;
}

#information-01 .list::before {
  content: "";
  position: absolute;
  width: 0.1875rem;
  height: 0.1875rem;
  top: 0.625rem;
  left: 0.625rem;
  background: #1C1C1C;
  border-radius: 50%;
}

#information-02 {
  padding: 5.625rem 0;
}

#information-02 .image img {
  border-radius: 0.75rem;
}

#information-02 .texts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

#information-03 {
  padding: 5.625rem 0 16.25rem;
}

#information-03 .c-layout__illust {
  margin-top: 0.625rem;
}

#information-03 .c-layout__illust img {
  width: 12.5rem;
}
#page-interview .common-fv .illust img {
  position: relative;
  width: 19.375rem;
  top: -0.625rem;
  right: -1.375rem;
  margin-left: 0.9375rem;
}

#interview-content {
  padding: 7.5rem 0 16.125rem;
}

#interview-content .filter__row {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#interview-content .filter__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.125;
  letter-spacing: -0.04em;
  border-right: 1px solid #1C1C1C;
  padding: 0.75rem 1.625rem 0.75rem 0;
}

#interview-content .filter__btns {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-left: 1.5rem;
}

#interview-content .filter__btn {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.125;
  letter-spacing: -0.04em;
  border-radius: 0.75rem;
  border: 1px solid #ccc;
  padding: 0.6875rem 1.46875rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#interview-content .filter__btn:hover {
  color: #fff;
  background: rgba(244, 0, 9, 0.5);
}

#interview-content .filter__btn.current,
#interview-content .filter__btn.current:hover {
  color: #fff;
  background: #F40009;
}

#interview-content .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 2.5rem;
  margin-top: 2.5rem;
}

#interview-content .item:nth-of-type(4n + 1) {
  margin-top: 7.5rem;
}

#interview-content .item:nth-of-type(4n + 2) {
  margin-top: 5rem;
}

#interview-content .item:nth-of-type(4n + 3) {
  margin-top: 2.5rem;
}

#interview-content .item a {
  display: block;
}

#interview-content .item__image {
  border-radius: 0.75rem;
  overflow: hidden;
}

#interview-content .item__image img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#interview-content .item a:hover .item__image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#interview-content .item__contents {
  margin-top: 0.9375rem;
}

#interview-content .item__head {
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid #ccc;
}

#interview-content .item__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5555555556;
  letter-spacing: -0.04em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#interview-content .item__title--small {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.4117647059;
  letter-spacing: -0.0376470588em;
}

#interview-content .item__title--pr {
  padding-right: 0.625rem;
}

#interview-content .item a:hover .item__title {
  color: #F40009;
}

#interview-content .item__row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.625rem;
  margin-top: 0.625rem;
}

#interview-content .item__name {
  font-family: "Fredoka", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #F40009;
}

#interview-content .item__icon {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid #F40009;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#interview-content .item a:hover .item__icon {
  background: #F40009;
}

#interview-content .item__icon::before,
#interview-content .item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #F40009;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#interview-content .item__icon::before {
  width: 1px;
  height: 0.5625rem;
}

#interview-content .item__icon::after {
  width: 0.5625rem;
  height: 1px;
}

#interview-content .item a:hover .item__icon::before,
#interview-content .item a:hover .item__icon::after {
  background: #fff;
}

#interview-content .item__texts {
  margin-top: 0.9375rem;
}

#interview-content .item__department {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2857142857;
  letter-spacing: -0.03em;
}

#interview-content .item__job {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2857142857;
  letter-spacing: -0.04em;
  color: #676463;
  margin-top: 0.25rem;
}

#interview-content .item__year {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2857142857;
  letter-spacing: -0.04em;
  margin-top: 0.75rem;
}
#page-work .common-fv .illust img {
  position: relative;
  width: 21.875rem;
  right: -1.25rem;
}

#work-introduction {
  padding: 11.25rem 0 3.75rem;
}

#work-introduction .image {
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  margin-top: -4.1875rem;
}

#work-story01 {
  padding: 3.75rem 0;
}

#work-story01 .contents {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-left: 5.25rem;
  margin-top: 3.75rem;
}

#work-story01 .catch {
  position: relative;
  left: -1.25rem;
  width: 100%;
  max-width: 20.4375rem;
  margin-inline: auto;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em;
  color: #fff;
  background-image: url("../images/work/story01-catch-bg.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 2.5rem 3.0625rem 3.6875rem 2.5rem;
}

#work-story01 .text {
  width: 100%;
  max-width: 51.625rem;
  margin-inline: auto;
  background-image: url("../images/work/story01-text-bg.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 6.4375rem 11.125rem 6.6875rem 7.5rem;
  margin-top: -5rem;
}

#work-story01 .image {
  position: absolute;
  width: 18rem;
  height: auto;
  bottom: 1rem;
  right: -8rem;
}

#work-story02 {
  padding: 3.75rem 0;
}

#work-story02 .block {
  margin-top: 3.375rem;
}

#work-story02 .contents {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  padding-right: 7.4375rem;
}

#work-story02 .catch {
  position: relative;
  width: 100%;
  max-width: 20.0625rem;
  margin-inline: auto;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em;
  color: #fff;
  background-image: url("../images/work/story02-catch-bg01.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 1.9375rem 5.0625rem 2.375rem 4.6875rem;
}

#work-story02 .text {
  width: 100%;
  max-width: 45.5rem;
  margin-inline: auto;
  background-image: url("../images/work/story02-text-bg01.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 10.8125rem 4.3125rem 8.3125rem 8.1875rem;
  margin-top: -5.625rem;
}

#work-story02 .image {
  position: absolute;
  width: 21.625rem;
  height: auto;
  position: absolute;
  top: calc(50% - 3rem);
  left: -14.6875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#work-story02 .block:nth-child(2) {
  margin-top: 3.75rem;
}

#work-story02 .block:nth-child(2) .contents {
  padding-left: 5.75rem;
  padding-right: 0;
  margin-left: 0;
  margin-right: auto;
}

#work-story02 .block:nth-child(2) .catch {
  left: -0.625rem;
  max-width: 27.8125rem;
  background-image: url("../images/work/story02-catch-bg02.webp");
  padding: 3.25rem 3.375rem 3.9375rem 3.9375rem;
}

#work-story02 .block:nth-child(2) .text {
  width: 100%;
  max-width: 44.75rem;
  margin-inline: auto;
  background-image: url("../images/work/story02-text-bg02.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 3.25rem 10rem 5rem 7rem;
  margin-top: -1.5rem;
}

#work-story02 .block:nth-child(2) .image {
  position: absolute;
  width: 23.25rem;
  height: auto;
  position: absolute;
  top: calc(50% + 3.125rem);
  left: auto;
  right: -14.75rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#work-conclusion {
  padding: 4rem 0 2.5rem;
}

#work-conclusion .image {
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  margin-top: -1.875rem;
}
#top-fv {
  position: relative;
  padding: 37.5vw 0 19.4444444444vw;
  overflow: hidden;
}

#top-fv::before,
#top-fv::after {
  content: "";
  position: absolute;
  height: 13vw;
  background: #fff;
  z-index: -1;
}

#top-fv::before {
  width: 100vw;
  top: 0;
  left: 8vw;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  background: #fff;
}

#top-fv::after {
  width: 200vw;
  top: 69vw;
  right: -27vw;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

#top-fv .illust {
  position: absolute;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s ease-out, -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#top-fv .illust.is-show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

#top-fv .illust-main {
  width: 17.0833333333vw;
  height: 20.4166666667vw;
  top: 13.8888888889vw;
  left: calc(50% + 1.7361111111vw);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  opacity: 1;
}

#top-fv .illust-main img {
  -webkit-transform: scale(2.4);
  transform: scale(2.4);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#top-fv .illust-01 {
  width: 13.9583333333vw;
  height: 14.0972222222vw;
  top: 15.1388888889vw;
  left: 5.4861111111vw;
}

#top-fv .illust-02 {
  width: 11.4583333333vw;
  height: 13.125vw;
  top: 3.8888888889vw;
  left: 25.9722222222vw;
}

#top-fv .illust-03,
#top-fv .illust-08,
#top-fv .illust-09,
#top-fv .illust-10,
#top-fv .illust-11 {
  width: 5.9722222222vw;
  height: 11.9444444444vw;
}

#top-fv .illust-03 {
  top: 2.3611111111vw;
  left: 41.9444444444vw;
}

#top-fv .illust-04 {
  width: 12.5vw;
  height: 14.5833333333vw;
  top: 20.8333333333vw;
  right: 23.9583333333vw;
}

#top-fv .illust-05 {
  width: 18.4722222222vw;
  height: 16.8055555556vw;
  top: 11.1805555556vw;
  right: 5.2777777778vw;
}

#top-fv .illust-06 {
  width: 10.9027777778vw;
  height: 15.2777777778vw;
  top: 47.2222222222vw;
  left: 2.7777777778vw;
}

#top-fv .illust-07 {
  width: 18.4027777778vw;
  height: 13.3333333333vw;
  top: 45.1388888889vw;
  right: 6.25vw;
}

#top-fv .illust-08 {
  top: 36.5277777778vw;
  right: 39.9305555556vw;
}

#top-fv .illust-09 {
  top: 46.9444444444vw;
  left: 35.9722222222vw;
}

#top-fv .illust-10 {
  top: 57.5694444444vw;
  left: 17.9166666667vw;
}

#top-fv .illust-11 {
  top: 67.1527777778vw;
  left: 1.3888888889vw;
}

#top-fv .catch {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  color: #F40009;
  padding: 0 5rem;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-in-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-in-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
  z-index: 1;
}

#top-fv .catch.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#top-fv .catch__ja {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5714285714;
  letter-spacing: 0em;
}

#top-fv .catch__en {
  font-family: "Fredoka", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-top: 0.9722222222vw;
}

#top-fv .body {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 5rem;
  padding: 0 1.25rem;
  margin-top: 15rem;
  z-index: 1;
}

#top-fv .images {
  max-width: 28rem;
  margin-top: 5rem;
}

#top-fv .image-02 {
  margin-top: 5.625rem;
}

#top-fv .image-02 img {
  width: 86%;
  margin-left: auto;
  margin-right: 0;
}

#top-fv .contents {
  gap: 1.75rem;
}

#top-fv .en {
  font-family: "Fredoka", sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1111111111;
  letter-spacing: 0.04em;
  color: #F40009;
}

#top-fv .box {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 31.375rem;
  flex: 0 0 31.375rem;
}

#top-fv .texts {
  margin-top: 3.75rem;
}

#top-fv .text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.4444444444;
  letter-spacing: -0.04em;
}

#top-fv .text:not(:first-of-type) {
  margin-top: 2rem;
}

#top-fv .image-03 {
  position: relative;
  top: 1.875rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 13.75rem;
  flex: 0 0 13.75rem;
}
.u-target,
.u-slide-up,
.u-slide-left,
.u-slide-right,
.u-pop {
  opacity: 0;
  -webkit-transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition: opacity 1.2s ease, transform 1.2s ease, -webkit-transform 1.2s ease;
  -webkit-transition-delay: var(--delay, 0.3s);
  transition-delay: var(--delay, 0.3s);
}

.u-slide-up {
  -webkit-transform: translateY(1.875rem);
  transform: translateY(1.875rem);
}

.u-slide-left {
  -webkit-transform: translateX(-1.875rem);
  transform: translateX(-1.875rem);
}

.u-slide-right {
  -webkit-transform: translateX(1.875rem);
  transform: translateX(1.875rem);
}

.u-pop {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition-delay: var(--delay, 0.5s);
  transition-delay: var(--delay, 0.5s);
}

.u-slide-text span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.3s ease-out, -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.3s ease-out, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.3s ease-out, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.u-slide-text span.show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.u-target.Show {
  opacity: 1;
}

.u-slide-up.SlideUp,
.u-slide-left.SlideLeft,
.u-slide-right.SlideRight {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.u-pop.Pop {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.u-delay0 {
  --delay: 0s;
}

.u-delay1 {
  --delay: 0.1s;
}

.u-delay2 {
  --delay: 0.2s;
}

.u-delay3 {
  --delay: 0.3s;
}

.u-delay4 {
  --delay: 0.4s;
}

.u-delay5 {
  --delay: 0.5s;
}

.u-delay6 {
  --delay: 0.6s;
}

.u-delay7 {
  --delay: 0.7s;
}

.u-delay8 {
  --delay: 0.8s;
}

.u-delay9 {
  --delay: 0.9s;
}

.u-delay10 {
  --delay: 1s;
}

.u-delay11 {
  --delay: 1.1s;
}

.u-delay12 {
  --delay: 1.2s;
}

.u-delay13 {
  --delay: 1.3s;
}

.u-delay14 {
  --delay: 1.4s;
}

.u-delay15 {
  --delay: 1.5s;
}

.u-delay16 {
  --delay: 1.6s;
}

.u-delay17 {
  --delay: 1.7s;
}

.u-delay18 {
  --delay: 1.8s;
}

.u-delay19 {
  --delay: 1.9s;
}

.u-delay20 {
  --delay: 2s;
}

.u-delay25 {
  --delay: 2.5s;
}

.u-delay30 {
  --delay: 3s;
}
.u-pc {
  display: block;
}

.u-sp {
  display: none;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.u-br {
  display: inline-block;
}

@media (max-width: 1140px){
  html {
    font-size: 1.4035087719vw;
  }
}

@media screen and (max-width: 768px){
  html {
    font-size: 16px;
  }
  body {
    font-size: 4.1vw;
  }
  .frame-top {
    height: 5px;
  }
  .frame-top--fix {
    height: 5px;
  }
  .frame-right {
    width: 5px;
  }
  .frame-bottom {
    height: 5px;
  }
  .frame-bottom--fix {
    height: 5px;
  }
  .frame-left {
    width: 5px;
  }
  .drawer .drawer__icon {
    width: min(15.3846vw, 60px);
    height: min(10.2564vw, 40px);
    top: min(4.359vw, 17px);
    left: auto;
    right: min(3.8462vw, 15px);
    border: 2px solid #fff;
    border-radius: min(5.1282vw, 20px);
  }
  .drawer .drawer__icon:hover {
    opacity: 1;
  }
  .drawer .drawer__icon-bars {
    width: min(5.1282vw, 20px);
    height: min(2.5641vw, 10px);
    top: min(3.5897vw, 14px);
    left: min(4.8718vw, 19px);
  }
  .drawer .drawer__icon-bar1,
  .drawer .drawer__icon-bar2 {
    width: min(5.1282vw, 20px);
    height: min(0.5128vw, 2px);
  }
  .drawer .drawer__icon-bar2 {
    top: min(2.0513vw, 8px);
  }
  .drawer .drawer__icon.is-open .drawer__icon-bar1 {
    top: calc(50% - min(0.2564vw, 1px));
  }
  .drawer .drawer__icon.is-open .drawer__icon-bar2 {
    top: calc(50% - min(0.2564vw, 1px));
  }
  .drawer .drawer__contents {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0;
    height: 100svh;
    padding: 0 3.85vw 20.51vw;
    padding-top: calc(80px + 7.69vw);
  }
  .drawer .drawer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0;
  }
  .drawer .drawer__btns {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.56vw;
  }
  .drawer .drawer__btn:not(:first-of-type) {
    margin-top: 0;
  }
  .drawer .drawer__btn a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0;
    border-radius: 3.08vw;
    padding: 2.82vw 2.31vw;
  }
  .drawer .drawer__btn-text {
    font-size: 3.59vw;
    line-height: 1.71;
  }
  .drawer .drawer__btn-en {
    font-size: 4.1vw;
    line-height: 1.5;
  }
  .drawer .drawer__btn-en.adjustment {
    font-size: 3.59vw;
    line-height: 1.71;
    padding-left: 0.51vw;
  }
  .drawer .drawer__btn-circle {
    display: none;
  }
  .drawer .drawer__btn--reverse a .drawer__btn-text {
    font-size: 3.08vw;
    line-height: 2;
  }
  .drawer .drawer__btn--reverse a .drawer__btn-circle {
    border: 1px solid #F40009;
  }
  .drawer .drawer__catch {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    font-size: 5.13vw;
    line-height: 1.6;
    padding: 0 3.85vw;
    margin-top: 20.51vw;
  }
  .drawer .drawer__items {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10.26vw;
    padding: 0 3.85vw;
    margin-top: 15.38vw;
  }
  .drawer .drawer__item-title {
    font-size: 5.13vw;
  }
  .drawer .drawer__menus {
    margin-top: 6.15vw;
  }
  .drawer .drawer__menu:not(:first-of-type) {
    margin-top: 6.15vw;
  }
  .drawer .drawer__menu a {
    padding-left: 4.1vw;
  }
  .drawer .drawer__menu a:hover {
    opacity: 1;
  }
  .drawer .drawer__menu a::before {
    width: 2.05vw;
    height: 2.05vw;
  }
  #footer .fix-btn {
    position: fixed;
    width: 100%;
    bottom: 3.85vw;
    left: 0;
    z-index: 50;
  }
  #footer .fix-btn__btns {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.56vw;
    padding: 0 2.56vw;
  }
  #footer .fix-btn__btn:not(:first-of-type) {
    margin-top: 0;
  }
  #footer .fix-btn__btn a {
    display: block;
    background: #fff;
    border: 1px solid #F40009;
    border-radius: 3.08vw;
    padding: 1.79vw 2.31vw;
    text-align: center;
  }
  #footer .fix-btn__btn-text {
    font-size: 3.59vw;
    line-height: 1.71;
    color: #F40009;
  }
  #footer .fix-btn__btn-en {
    font-size: 4.1vw;
    line-height: 1.5;
  }
  #footer .fix-btn__btn-en.adjustment {
    font-size: 3.59vw;
    line-height: 1.71;
    padding-left: 0.51vw;
  }
  #footer .fix-btn__btn--reverse a {
    background: #F40009;
  }
  #footer .fix-btn__btn--reverse a .fix-btn__btn-text {
    font-size: 3.08vw;
    line-height: 2;
    color: #fff;
  }
  #footer .fix-btn__btn--reverse a .fix-btn__btn-circle {
    border: 1px solid #F40009;
  }
  #footer {
    padding: 41.03vw 0 30.77vw;
  }
  #footer .inner {
    padding: 0 7.69vw;
  }
  #footer .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15.38vw;
    padding-bottom: 5rem;
  }
  #footer .box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
  }
  #footer .logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.05vw;
  }
  #footer .logo a:hover {
    opacity: 1;
  }
  #footer .logo {
    width: 100%;
    max-width: 100%;
  }
  #footer .logo img {
    width: 25.64vw;
  }
  #footer .logo__title {
    margin-top: 0;
  }
  #footer .logo__ja {
    font-size: 2.56vw;
  }
  #footer .logo__en {
    font-size: 2.82vw;
    margin-top: 1.03vw;
  }
  #footer .catch {
    font-size: 5.13vw;
    line-height: 1.6;
    margin-top: 8.21vw;
  }
  #footer .nav {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15.38vw;
  }
  #footer .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10.26vw;
  }
  #footer .item-title {
    font-size: 5.13vw;
  }
  #footer .menus {
    margin-top: 6.15vw;
  }
  #footer .menu:not(:first-of-type) {
    margin-top: 6.15vw;
  }
  #footer .menu a {
    padding-left: 4.1vw;
  }
  #footer .menu a:hover {
    color: #1C1C1C;
  }
  #footer .menu a::before {
    width: 2.05vw;
    height: 2.05vw;
  }
  #footer .btns {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 5.13vw 3.85vw;
  }
  #footer .btn:first-of-type {
    grid-column: 1/-1;
  }
  #footer .btn a {
    gap: 1.54vw;
    border-radius: 3.08vw;
    padding: 3.33vw 5.13vw;
  }
  #footer .btn-text {
    font-size: 6.15vw;
  }
  #footer .btn-en {
    font-size: 5.13vw;
    line-height: 1.2;
  }
  #footer .btn-en.adjustment {
    padding-left: 0;
  }
  #footer .btn-circle {
    width: 9.23vw;
    height: 9.23vw;
  }
  #footer .btn a:hover .btn-circle {
    background: transparent;
  }
  #footer .btn-icon {
    width: 5.13vw;
    height: 1.28vw;
  }
  #footer .btn a:hover .btn-icon {
    background: #F40009;
  }
  #footer .btn--reverse a .btn-text {
    font-size: 4.1vw;
    line-height: 1.5;
  }
  #footer .btn--reverse a:hover .btn-circle {
    background: transparent;
  }
  #footer .btn--reverse a .btn-icon {
    width: 4.62vw;
    height: 4.62vw;
  }
  #footer .btn--reverse a:hover .btn-icon {
    background: #fff;
  }
  #footer .copyright {
    font-size: 2.56vw;
    padding-top: 10.26vw;
  }
  #header {
    height: 20.51vw;
    max-height: 80px;
  }
  #header .body {
    width: calc(100% - 10px);
    margin-inline: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    background: #fff;
    padding-top: 2px;
  }
  #header .logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 min(73.08vw, 285px);
    flex: 0 0 min(73.08vw, 285px);
    background: #fff;
    border-radius: 0 0 min(3.0769vw, 12px) 0;
    padding: min(3.8462vw, 15px) min(5.1282vw, 20px) min(3.8462vw, 15px) min(3.8462vw, 15px);
  }
  #header .logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: min(2.0513vw, 8px);
    background: transparent;
    border-radius: 0;
    padding: 0;
  }
  #header .logo a:hover {
    opacity: 1;
  }
  #header .logo__image {
    max-width: min(25.641vw, 100px);
  }
  #header .logo img {
    -o-object-fit: contain;
    object-fit: contain;
  }
  #header .logo__title {
    margin-top: 0;
  }
  #header .logo__ja {
    font-size: min(2.5641vw, 10px);
  }
  #header .logo__en {
    font-size: min(2.8205vw, 11px);
    margin-top: min(1.2821vw, 5px);
  }
  #header .container {
    display: block;
    width: min(25.641vw, 100px);
    height: min(20vw, 78px);
    border-radius: 0 0 0 min(3.0769vw, 12px);
    padding: 0;
  }
  #header .btn-wrap {
    display: none;
  }
  .l-inner,
  .l-inner-s,
  .l-inner-l {
    max-width: 100%;
    margin-inline: auto;
    padding: 0 5.13vw;
  }
  .c-accordion__block {
    gap: 6.15vw;
  }
  .c-accordion__block-title {
    font-size: 4.62vw;
    margin-top: 8.21vw;
  }
  .c-accordion .c-accordion__q {
    gap: 3.08vw;
    padding: 4.36vw 0;
  }
  .c-accordion .c-accordion__row {
    gap: 2.05vw;
  }
  .c-accordion .c-accordion__en {
    top: 0.77vw;
    font-size: 4.1vw;
  }
  .c-accordion .c-accordion__title {
    font-size: 4.1vw;
  }
  .c-accordion .c-accordion__title--fz {
    font-size: 3.97vw;
  }
  .c-accordion .c-accordion__icon {
    width: 6.15vw;
    height: 6.15vw;
  }
  .c-accordion .c-accordion__icon::before {
    height: 6.15vw;
  }
  .c-accordion .c-accordion__icon::after {
    width: 6.15vw;
  }
  .c-accordion .c-accordion__a {
    font-size: 3.59vw;
  }
  .c-accordion .c-accordion__text {
    padding: 5.9vw 0 7.95vw;
  }
  .c-accordion .c-accordion__link {
    padding: 0 2.56vw 5.9vw;
    margin-top: 3.08vw;
  }
  .c-accordion .c-accordion__link a {
    gap: 1.03vw;
  }
  .c-accordion .c-accordion__link a:hover {
    opacity: 1;
  }
  .c-accordion .c-accordion__link-text {
    font-size: 3.59vw;
  }
  .c-accordion .c-accordion__link-icon img {
    width: 4.62vw;
    height: 4.62vw;
  }
  .c-items {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 4.87vw 2.56vw;
    margin-top: 9.23vw;
  }
  .c-items .c-item {
    min-height: 46.15vw;
    border-radius: 3.08vw;
    padding-bottom: 0;
  }
  .c-items .c-item--pb {
    padding-bottom: 0;
  }
  .c-items .c-item__title {
    font-size: 4.1vw;
    line-height: 1;
    background-image: url("../images/c-item-title-sp.webp");
    padding: 2.31vw 2.56vw 4.1vw;
  }
  .c-items .c-item__title .small {
    font-size: 3.08vw;
    line-height: 1.25;
  }
  .c-items .c-item--q .c-item__title {
    padding: 2.56vw 2.56vw 5.64vw;
    padding-left: 10.77vw;
    background-image: url("../images/c-item-title-q-sp.webp");
  }
  .c-items .c-item--q .c-item__title::before {
    top: 1.79vw;
    left: 2.56vw;
    font-size: 5.13vw;
    line-height: 1;
  }
  .c-items .c-item__dl-wrap {
    padding: 1.54vw 2.56vw 3.08vw;
  }
  .c-items .c-item__dl {
    gap: 4.1vw;
    padding: 2.82vw 0;
  }
  .c-items .c-item__dt {
    font-size: 4.1vw;
    line-height: 1.5;
  }
  .c-items .c-item__dt .number {
    font-size: 6.15vw;
    line-height: 1;
  }
  .c-items .c-item__dd {
    top: 0;
    font-size: 4.1vw;
    line-height: 1.5;
  }
  .c-layout .c-layout__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6.15vw;
  }
  .c-layout .c-layout__head {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    position: relative;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2.56vw;
  }
  .c-layout .c-layout__illust {
    margin-top: 0;
  }
  .c-layout .c-layout__illust img {
    width: 30.77vw;
  }
  .c-layout .c-layout__body {
    width: 100%;
  }
  .c-layout .c-layout__block {
    margin-top: 15.38vw;
  }
  .c-layout .c-layout__block-title {
    font-size: 4.62vw;
    line-height: 1.22;
    padding-left: 2.56vw;
  }
  .c-modal .c-modal__body {
    max-width: 84.62vw;
    border-radius: 3.08vw;
    padding: 10.26vw 7.69vw 7.69vw;
  }
  .c-modal .c-modal__close {
    width: 4.62vw;
    height: 4.62vw;
    top: 2.82vw;
    right: 2.82vw;
  }
  .c-modal .c-modal__close:hover {
    opacity: 1;
  }
  .c-modal .c-modal__close::before,
  .c-modal .c-modal__close::after {
    width: 2.05vw;
  }
  .c-modal .c-modal__title {
    font-size: 4.62vw;
    padding-left: 4.1vw;
  }
  .c-modal .c-modal__title::before {
    width: 2.05vw;
    height: 2.05vw;
    top: 2.05vw;
  }
  .c-modal .c-modal__text {
    font-size: 3.59vw;
    margin-top: 3.08vw;
  }
  .c-title01 .c-title01__en {
    font-size: 8.21vw;
  }
  .c-title01 .c-title01__ja {
    font-size: 5.13vw;
    line-height: 1.4;
  }
  .c-title01 .c-title01__lead {
    font-size: 4.1vw;
    margin-top: 6.15vw;
  }
  .c-title02 .c-title02__en {
    font-size: 3.08vw;
  }
  .c-title02 .c-title02__ja {
    font-size: 5.13vw;
    line-height: 1.4;
    margin-top: 1.03vw;
  }
  .c-title02 .c-title02__lead {
    margin-top: 6.15vw;
  }
  .common-cta {
    background-image: url("../images/common-cta-bg-sp.webp");
    padding: 15.38vw 0;
  }
  .common-cta .items {
    gap: 2.56vw;
  }
  .common-cta .item a {
    gap: 3.08vw;
    border-radius: 3.08vw;
    padding: 8.97vw 6.41vw 8.97vw 5.13vw;
  }
  .common-cta .item__text {
    font-size: 4.1vw;
    line-height: 1.5;
  }
  .common-cta .item__en {
    font-size: 5.13vw;
    line-height: 1.2;
  }
  .common-cta .item__en.adjustment {
    padding-left: 0;
  }
  .common-cta .item__circle {
    width: 9.23vw;
    height: 9.23vw;
  }
  .common-cta .item a:hover .item__circle {
    background: transparent;
  }
  .common-cta .item__icon {
    width: 4.62vw;
    height: 4.62vw;
  }
  .common-cta .item a:hover .item__icon {
    background: #F40009;
  }
  .common-fv {
    padding-top: 80px;
  }
  .breadcrumb {
    margin-top: 5.13vw;
  }
  .breadcrumb .box {
    gap: 18.46vw;
    font-size: 3.08vw;
  }
  .breadcrumb .item::before {
    width: 12.31vw;
    right: -15.38vw;
  }
  .breadcrumb .item a:hover {
    opacity: 1;
  }
  .common-fv .body {
    display: block;
    margin-top: 19.23vw;
  }
  .common-fv .contents {
    margin-top: 0;
  }
  .common-fv .title {
    position: relative;
    padding-right: 38.46vw;
  }
  .common-fv .en {
    font-size: 3.08vw;
  }
  .common-fv .ja {
    min-height: 18.46vw;
    font-size: 6.15vw;
    line-height: 1.5;
    margin-top: 2.56vw;
  }
  .common-fv .text {
    margin-top: 3.375rem;
  }
  .common-fv .illust {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: absolute;
    bottom: -14.1vw;
    right: 0;
    width: 36.41vw;
    height: 36.41vw;
  }
  .common-fv .illust img {
    width: 25.9vw;
    height: auto;
  }
  .common-fv .image {
    margin-top: 15.38vw;
  }
  .common-nav {
    padding: 20.51vw 0;
    overflow: hidden;
  }
  .common-nav .inner {
    padding: 0 7.69vw;
  }
  .common-nav .block {
    margin-top: 20.51vw;
  }
  .common-nav .en {
    font-size: 7.18vw;
    line-height: 1.07;
  }
  .common-nav .ja {
    font-size: 3.08vw;
    line-height: 1.33;
    padding-left: 2.56vw;
    margin-top: 2.56vw;
  }
  .common-nav .ja::before {
    width: 1.54vw;
    height: 1.54vw;
  }
  .common-nav .items-wrap {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0;
    margin-top: 6.15vw;
    overflow: scroll;
  }
  .common-nav .items {
    width: 266.67vw;
    padding: 0 7.69vw;
    gap: 6.15vw;
  }
  .common-nav .item a {
    border-radius: 3.08vw;
  }
  .common-nav .item__head {
    padding: 5.13vw 5.13vw 0;
  }
  .common-nav .item__en {
    font-size: 2.56vw;
    padding-left: 1.54vw;
  }
  .common-nav .item__en::before {
    width: 1.03vw;
    height: 1.03vw;
  }
  .common-nav .item__number {
    font-size: 12.82vw;
    margin-top: 1.03vw;
  }
  .common-nav .item__image {
    width: 46.67vw;
    margin-left: auto;
    margin-right: 2.56vw;
    padding: 0;
    margin-top: -19.23vw;
  }
  .common-nav .item a:hover .item__image img {
    -webkit-transform: none;
    transform: none;
  }
  .common-nav .item__contents {
    gap: 1.03vw;
    border-radius: 0 0 3.08vw 3.08vw;
    padding: 0 5.13vw 5.13vw 5.13vw;
  }
  .common-nav .item__contents::before {
    height: 10.26vw;
    top: 0;
  }
  .common-nav .item__title {
    font-size: 3.08vw;
    line-height: 1.33;
  }
  .common-nav .item__catch {
    font-size: 4.62vw;
    line-height: 1.33;
    margin-top: 0.51vw;
  }
  .common-nav .item__circle {
    width: 9.23vw;
    height: 9.23vw;
  }
  .common-nav .item a:hover .item__circle {
    border: 1px solid #1C1C1C;
    background: transparent;
  }
  .common-nav .item__icon {
    width: 5.13vw;
    height: 1.28vw;
  }
  .common-nav .item a:hover .item__icon {
    background: #1C1C1C;
  }
  .common-nav .box {
    margin-top: 6.15vw;
  }
  .common-nav .box__body {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fff;
    border-radius: 3.08vw;
  }
  .common-nav .box__contents {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 43.59vw;
    flex: 0 0 43.59vw;
    gap: 3.08vw;
    border-radius: 0;
    padding: 5.13vw 0 5.13vw 5.13vw;
  }
  .common-nav .box__contents::before {
    background-image: url("data:image/svg+xml,%3csvg%20width='20'%20height='120'%20viewBox='0%200%2020%20120'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M2.38403e-06%20120L7.62939e-06%20-8.74228e-07L12.466%20-3.29321e-07C22.5662%2020.7407%2022.4564%2038.0556%2012.466%2058.8889C2.96412%2078.7037%201.73587%20102.778%2012.466%20120L2.38403e-06%20120Z'%20fill='%23F8EDA8'/%3e%3c/svg%3e");
    width: 5.13vw;
    right: -4.87vw;
  }
  .common-nav .box__title {
    font-size: 4.62vw;
    line-height: 1.33;
  }
  .common-nav .box__circle {
    width: 9.23vw;
    height: 9.23vw;
  }
  .common-nav .box a:hover .box__circle {
    background: transparent;
    border: 1px solid #1C1C1C;
  }
  .common-nav .box__icon {
    width: 5.13vw;
    height: 1.28vw;
  }
  .common-nav .box a:hover .box__icon {
    background: #1C1C1C;
  }
  .common-nav .box__image {
    border-radius: 0;
    padding: 6.67vw 5.13vw;
  }
  .common-nav .box__image img {
    width: 25.64vw;
  }
  .common-nav .box a:hover .box__image img {
    -webkit-transform: none;
    transform: none;
  }
  .common-special {
    padding-top: 13.33vw;
    margin-top: -13.33vw;
  }
  .common-special .body {
    position: relative;
    padding: 20.51vw 0;
  }
  .common-special .inner {
    padding: 0 7.69vw;
  }
  .common-special .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12.82vw;
  }
  .common-special .contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
  }
  .common-special .en {
    font-size: 7.18vw;
    line-height: 1.07;
  }
  .common-special .ja {
    font-size: 3.08vw;
    line-height: 1.33;
    padding-left: 2.56vw;
    margin-top: 2.56vw;
  }
  .common-special .ja::before {
    width: 1.54vw;
    height: 1.54vw;
  }
  .common-special .catch {
    font-size: 8.21vw;
    line-height: 1.31;
    margin-top: 6.15vw;
  }
  .common-special .btn {
    margin-top: 9.23vw;
  }
  .common-special .btn a {
    gap: 3.08vw;
    border-radius: 6.15vw;
    padding: 4.1vw 6.79vw;
  }
  .common-special .btn a:hover {
    background: transparent;
  }
  .common-special .btn__text {
    font-size: 3.59vw;
  }
  .common-special .btn a:hover .btn__text {
    color: #fff;
  }
  .common-special .btn__icon {
    width: 5.13vw;
    height: 1.28vw;
  }
  .common-special .btn a:hover .btn__icon {
    background: #fff;
  }
  .common-special .image {
    position: absolute;
    width: 47.44vw;
    height: 75.64vw;
    max-width: 100%;
    top: -15.38vw;
    right: -7.69vw;
    margin-top: 0;
  }
  .common-special .items {
    width: 100%;
    max-width: 100%;
  }
  .common-special .item a {
    gap: 4.62vw;
    padding: 3.97vw 0;
  }
  .common-special .item__en {
    font-size: 3.59vw;
    line-height: 1.14;
  }
  .common-special .item__ja {
    font-size: 4.1vw;
    line-height: 1.38;
    margin-top: 1.03vw;
  }
  .common-special .item__circle {
    width: 9.23vw;
    height: 9.23vw;
  }
  .common-special .item a:hover .item__circle {
    background: transparent;
  }
  .common-special .item__icon {
    width: 5.13vw;
    height: 1.28vw;
  }
  .common-special .item a:hover .item__icon {
    background: #fff;
  }
  .interview-modal .interview-modal__inner {
    max-width: 84.62vw;
    border-radius: 3.08vw;
  }
  .interview-modal .interview-modal__body {
    max-height: 153.85vw;
    display: block;
    padding: 10.26vw 7.69vw 4.62vw;
  }
  .interview-modal .interview-modal__close {
    width: 4.62vw;
    height: 4.62vw;
    top: 2.82vw;
    right: 2.82vw;
  }
  .interview-modal .interview-modal__close:hover {
    opacity: 1;
  }
  .interview-modal .interview-modal__close::before,
  .interview-modal .interview-modal__close::after {
    width: 2.05vw;
  }
  .interview-modal .interview-modal__image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    border-radius: 3.08vw;
    margin-top: 7.69vw;
  }
  .interview-modal .interview-modal__image img {
    border-radius: 3.08vw;
  }
  .interview-modal .interview-modal__title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.375;
    letter-spacing: -0.04em;
    font-size: 4.62vw;
    line-height: 1.56;
    padding-left: 2.56vw;
  }
  .interview-modal .interview-modal__name {
    font-size: 3.59vw;
    margin-top: 3.08vw;
  }
  .interview-modal .interview-modal__department {
    font-size: 3.59vw;
    margin-top: 3.08vw;
  }
  .interview-modal .interview-modal__job {
    font-size: 3.59vw;
    margin-top: 0.51vw;
  }
  .interview-modal .interview-modal__year {
    font-size: 3.59vw;
    margin-top: 1.54vw;
  }
  .interview-modal .interview-modal__items {
    margin-top: 7.69vw;
  }
  .interview-modal .interview-modal__item:not(:first-of-type) {
    margin-top: 7.69vw;
  }
  .interview-modal .interview-modal__item-row {
    gap: 2.05vw;
  }
  .interview-modal .interview-modal__item-en {
    top: 1.28vw;
    font-size: 3.59vw;
  }
  .interview-modal .interview-modal__item-title {
    font-size: 4.1vw;
    line-height: 1.5;
  }
  .interview-modal .interview-modal__item-texts {
    gap: 2.05vw;
    margin-top: 3.08vw;
  }
  .interview-modal .interview-modal__item-text {
    font-size: 3.59vw;
  }
  .interview-modal .interview-modal__item-note {
    font-size: 3.08vw;
  }
  #page-career .common-fv .illust {
    bottom: -11.54vw;
  }
  #page-career .common-fv .illust img {
    width: 100%;
    top: -2.56vw;
  }
  #career-wrap {
    padding-top: 5.13vw;
    margin-top: -5.13vw;
  }
  #career-wrap::before,
  #career-wrap::after,
  #career-wrap .road-01,
  #career-wrap .road-02 {
    content: "";
    position: absolute;
    width: 200vw;
    height: 15vw;
    background: #fff;
    z-index: -2;
  }
  #career-wrap::before {
    top: 146.15vw;
    left: -51.28vw;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  #career-wrap::after {
    top: 256.41vw;
    right: -51.28vw;
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  #career-wrap .road-01 {
    top: 461.54vw;
    left: -51.28vw;
  }
  #career-wrap .road-02 {
    top: 588.46vw;
    right: -51.28vw;
  }
  #career-wrap .illust-01 {
    width: 17.18vw;
    height: 17.44vw;
    top: 161.54vw;
    left: -2.05vw;
  }
  #career-wrap .illust-02,
  #career-wrap .illust-05,
  #career-wrap .illust-08 {
    width: 22.82vw;
    height: 20.77vw;
  }
  #career-wrap .illust-02 {
    top: 228.72vw;
    right: 4.36vw;
  }
  #career-wrap .illust-03 {
    width: 22.82vw;
    height: 16.41vw;
    top: 389.74vw;
    left: 30.77vw;
  }
  #career-wrap .illust-04 {
    display: none;
  }
  #career-wrap .illust-05 {
    top: 435.9vw;
    left: 1.28vw;
  }
  #career-wrap .illust-06 {
    width: 13.59vw;
    height: 18.97vw;
    top: 533.33vw;
    right: 13.33vw;
  }
  #career-wrap .illust-07 {
    width: 15.38vw;
    height: 17.95vw;
    top: 543.59vw;
    left: 28.97vw;
  }
  #career-wrap .illust-08 {
    top: 163.1944444444vw;
    left: 36.8055555556vw;
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
    display: none;
  }
  #career-01 {
    padding: 15.38vw 0;
  }
  #career-01 .inner {
    padding: 0 7.69vw;
  }
  #career-01 .items {
    margin-top: 30.77vw;
  }
  #career-01 .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0;
    padding-left: 0;
  }
  #career-01 .item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-right: 0;
  }
  #career-01 .item__number {
    top: 0;
    left: 0;
    -webkit-transform: none;
    transform: none;
    z-index: 1;
  }
  #career-01 .item__number img {
    width: 41.03vw;
  }
  #career-01 .item__contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
  }
  #career-01 .item__title {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-size: 5.13vw;
    line-height: 1.4;
  }
  #career-01 .item__text {
    margin-top: 4.62vw;
  }
  #career-01 .item__image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    width: 100%;
  }
  #career-01 .item__image img {
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
  }
  #career-01 .item:nth-of-type(1) .item__image {
    top: 5.13vw;
    right: -5.13vw;
  }
  #career-01 .item:nth-of-type(1) .item__image img {
    width: 57.18vw;
    margin-right: 0;
  }
  #career-01 .item:nth-of-type(2) {
    margin-top: 30.77vw;
  }
  #career-01 .item:nth-of-type(2) .item__contents {
    margin-top: -2.56vw;
  }
  #career-01 .item:nth-of-type(2) .item__title {
    margin-left: auto;
  }
  #career-01 .item:nth-of-type(2) .item__number {
    top: 0;
    left: auto;
    right: 0;
  }
  #career-01 .item:nth-of-type(2) .item__image {
    top: 6.15vw;
    left: -10.26vw;
  }
  #career-01 .item:nth-of-type(2) .item__image img {
    width: 59.49vw;
    margin-left: 0;
  }
  #career-01 .item:nth-of-type(3) {
    margin-top: 30.77vw;
  }
  #career-01 .item:nth-of-type(3) .item__contents {
    margin-top: -1.28vw;
  }
  #career-01 .item:nth-of-type(3) .item__number {
    left: 0;
  }
  #career-01 .item:nth-of-type(3) .item__image {
    right: -10.26vw;
  }
  #career-01 .item:nth-of-type(3) .item__image img {
    width: 58.46vw;
    margin-right: 0;
  }
  #career-01 .item:nth-of-type(4) {
    margin-top: 30.77vw;
  }
  #career-01 .item:nth-of-type(4) .item__contents {
    margin-top: -5.13vw;
  }
  #career-01 .item:nth-of-type(4) .item__title {
    margin-left: auto;
  }
  #career-01 .item:nth-of-type(4) .item__number {
    top: 0;
    left: auto;
    right: 0;
  }
  #career-01 .item:nth-of-type(4) .item__image {
    top: 5.64vw;
    left: -10.26vw;
  }
  #career-01 .item:nth-of-type(4) .item__image img {
    width: 61.54vw;
    margin-left: 0;
  }
  #career-02 {
    padding: 15.38vw 0 20.51vw;
    overflow: hidden;
  }
  #career-02 .inner {
    padding: 0 7.69vw;
  }
  #career-02 .image-wrap {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0 7.69vw;
    margin-top: 10.26vw;
    overflow: scroll;
  }
  #career-02 .image {
    width: 153.33vw;
  }
  #page-company .common-fv .illust img {
    top: -3.85vw;
  }
  #company-01 {
    padding: 15.38vw 0 10.26vw;
  }
  #company-01 .inner {
    padding: 0 7.69vw;
  }
  #company-02 {
    padding: 10.26vw 0;
  }
  #company-02 .inner {
    padding: 0 7.69vw;
  }
  #company-02 .title {
    margin-top: 6.15vw;
  }
  #company-02 .main-title {
    font-size: 4.1vw;
    line-height: 1.25;
    padding-bottom: 1.79vw;
  }
  #company-02 .main-title::before {
    width: 10.26vw;
  }
  #company-02 .sub-title {
    font-size: 5.13vw;
    line-height: 1.6;
    margin-top: 2.05vw;
  }
  #company-02 .c-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 6.15vw 2.56vw;
  }
  #company-03 {
    padding: 10.26vw 0;
  }
  #company-03 .c-items {
    grid-template-columns: 1fr;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    gap: 6.15vw;
  }
  #company-03 .inner {
    padding: 0 7.69vw;
  }
  #company-04 {
    padding: 10.26vw 0 15.38vw;
  }
  #company-04 .inner {
    padding: 0 7.69vw;
  }
  #page-environment .common-fv .illust img {
    top: 5.13vw;
    right: -3.33vw;
    width: 23.85vw;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  #environment-01 {
    padding: 15.38vw 0 10.26vw;
  }
  #environment-01 .inner {
    padding: 0 7.69vw;
  }
  #environment-01 .c-layout__row {
    gap: 18.72vw;
  }
  #environment-01 .c-layout__illust {
    margin-top: 0;
  }
  #environment-01 .c-layout__illust img {
    width: 30.77vw;
  }
  #environment-01 .c-accordion__q {
    padding: 4.36vw 2.56vw;
  }
  #environment-01 .c-accordion__title {
    font-size: 4.62vw;
  }
  #environment-01 .c-accordion__title--fz {
    font-size: 3.97vw;
  }
  #environment-01 .c-accordion__text {
    font-size: 3.59vw;
    padding: 5.9vw 2.56vw;
  }
  #environment-01 .c-accordion__text--pb {
    padding-bottom: 0vw;
  }
  #environment-02 {
    padding: 10.26vw 0;
  }
  #environment-02 .inner {
    padding: 0 7.69vw;
  }
  #environment-02 .c-layout__illust {
    margin-top: 0;
  }
  #environment-02 .item:not(:first-of-type) {
    margin-top: 10.26vw;
  }
  #environment-02 .item__title {
    font-size: 4.62vw;
    padding-left: 2.56vw;
  }
  #environment-02 .item__text {
    margin-top: 6.15vw;
  }
  #environment-02 .item_note {
    font-size: 3.33vw;
    line-height: 1.5;
    margin-top: 2.05vw;
  }
  #environment-02 .item__link {
    padding: 0 2.56vw 5.9vw;
    margin-top: 3.08vw;
  }
  #environment-02 .item__link a {
    gap: 1.03vw;
  }
  #environment-02 .item__link a:hover {
    opacity: 1;
  }
  #environment-02 .item__link-text {
    font-size: 3.59vw;
  }
  #environment-02 .item__link-icon img {
    width: 4.62vw;
    height: 4.62vw;
  }
  #environment-03 {
    padding: 10.26vw 0 20.51vw;
  }
  #environment-03 .inner {
    padding: 0 7.69vw;
  }
  #environment-03 .c-layout__illust {
    margin-top: 0;
  }
  #environment-03 .c-layout__illust img {
    left: -3.33vw;
  }
  #environment-03 .item {
    padding: 7.95vw 5.13vw 7.95vw 0;
  }
  #environment-03 .item__title {
    font-size: 4.62vw;
  }
  #environment-03 .units {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 4.1vw;
    margin-top: 1rem;
  }
  #environment-03 .unit a {
    gap: 0.3125rem;
    text-decoration: underline;
  }
  #environment-03 .unit__name {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.2857142857;
    letter-spacing: -0.04em;
  }
  #environment-03 .unit a:hover .unit__name {
    color: #1C1C1C;
  }
  #environment-03 .unit__icon {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    border: 1px solid #1C1C1C;
    border-radius: 50%;
  }
  #environment-03 .unit a:hover .unit__icon {
    background: transparent;
    border: 1px solid #1C1C1C;
  }
  #environment-03 .unit__icon::before,
  #environment-03 .unit__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #1C1C1C;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #environment-03 .unit__icon::before {
    width: 1px;
    height: 0.5625rem;
  }
  #environment-03 .unit__icon::after {
    width: 0.5625rem;
    height: 1px;
  }
  #environment-03 .unit a:hover .unit__icon::before,
  #environment-03 .unit a:hover .unit__icon::after {
    background: #1C1C1C;
  }
  #page-information .common-fv .body {
    padding-bottom: 23.59vw;
  }
  #page-information .common-fv .illust {
    margin-top: 0;
  }
  #page-information .common-fv .illust img {
    width: 33.97vw;
    top: 5.13vw;
    right: 1.28vw;
  }
  #information-01 {
    padding: 15.38vw 0 10.26vw;
  }
  #information-01 .inner {
    padding: 0 7.69vw;
  }
  #information-01 .c-layout__illust {
    margin-top: 5.13vw;
  }
  #information-01 .dl {
    gap: 6.15vw;
    padding: 5.9vw 0;
  }
  #information-01 .dt,
  #information-01 .dd {
    font-size: 4.1vw;
  }
  #information-01 .dt {
    width: 25.64vw;
    padding-left: 4.1vw;
  }
  #information-01 .dt::before {
    width: 2.05vw;
    height: 2.05vw;
  }
  #information-01 .dd {
    width: calc(100% - 31.79vw);
    font-size: 3.59vw;
    line-height: 1.57;
  }
  #information-01 .dd__text {
    font-size: 3.59vw;
    line-height: 1.57;
  }
  #information-01 .dd__text--mt {
    margin-top: 2.05vw;
  }
  #information-01 .dd__note {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.2857142857;
    letter-spacing: -0.04em;
    font-size: 3.59vw;
    margin-top: 2.05vw;
  }
  #information-01 .list {
    padding-left: 5.38vw;
  }
  #information-01 .list::before {
    width: 0.77vw;
    height: 0.77vw;
    top: 2.56vw;
    left: 2.56vw;
  }
  #information-02 {
    padding: 10.26vw 0;
  }
  #information-02 .inner {
    padding: 0 7.69vw;
  }
  #information-02 .image img {
    border-radius: 3.08vw;
  }
  #information-02 .texts {
    gap: 2.05vw;
    margin-top: 6.15vw;
  }
  #information-03 {
    padding: 10.26vw 0 20.51vw;
  }
  #information-03 .inner {
    padding: 0 7.69vw;
  }
  #information-03 .c-layout__illust {
    margin-top: 0;
  }
  #information-03 .c-layout__illust img {
    width: 30.77vw;
  }
  #page-interview .common-fv .illust img {
    width: 30.51vw;
    top: 0;
    right: 0;
    margin-left: 2.56vw;
  }
  #interview-content {
    padding: 15.38vw 0 20.51vw;
  }
  #interview-content .inner {
    padding: 0 7.69vw;
  }
  #interview-content .filter__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #interview-content .filter__title {
    position: relative;
    width: 100%;
    font-size: 4.1vw;
    border-right: none;
    padding: 0 0 3.85vw 0;
  }
  #interview-content .filter__title::before {
    content: "";
    position: absolute;
    width: 10.26vw;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #1C1C1C;
  }
  #interview-content .filter__btns {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 4.1vw;
    padding-left: 0;
    margin-top: 4.1vw;
  }
  #interview-content .filter__btn {
    font-size: 3.59vw;
    line-height: 1.29;
    border-radius: 2.56vw;
    padding: 2.05vw 6.03vw;
  }
  #interview-content .filter__btn:hover {
    color: #1C1C1C;
    background: transparent;
    border: 1px solid #ccc;
  }
  #interview-content .items {
    grid-template-columns: 1fr;
    gap: 10.26vw;
    margin-top: 10.26vw;
  }
  #interview-content .item {
    max-width: 69.23vw;
  }
  #interview-content .item:nth-of-type(even) {
    margin-left: auto;
  }
  #interview-content .item:nth-of-type(4n + 1) {
    margin-top: 0;
  }
  #interview-content .item:nth-of-type(4n + 2) {
    margin-top: 0;
  }
  #interview-content .item:nth-of-type(4n + 3) {
    margin-top: 0;
  }
  #interview-content .item__image {
    border-radius: 3.08vw;
  }
  #interview-content .item a:hover .item__image img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  #interview-content .item__contents {
    margin-top: 2.05vw;
  }
  #interview-content .item__head {
    padding-bottom: 1.79vw;
  }
  #interview-content .item__title {
    font-size: 4.62vw;
  }
  #interview-content .item__title--small {
    font-size: 4.36vw;
  }
  #interview-content .item__title--pr {
    padding-right: 2.56vw;
  }
  #interview-content .item a:hover .item__title {
    color: #1C1C1C;
  }
  #interview-content .item__row {
    gap: 2.56vw;
    margin-top: 1.03vw;
  }
  #interview-content .item__name {
    font-size: 3.59vw;
  }
  #interview-content .item__icon {
    width: 4.62vw;
    height: 4.62vw;
  }
  #interview-content .item a:hover .item__icon {
    background: transparent;
  }
  #interview-content .item__icon::before {
    height: 2.31vw;
  }
  #interview-content .item__icon::after {
    width: 2.31vw;
  }
  #interview-content .item a:hover .item__icon::before,
  #interview-content .item a:hover .item__icon::after {
    background: #F40009;
  }
  #interview-content .item__texts {
    margin-top: 2.05vw;
  }
  #interview-content .item__department {
    font-size: 3.59vw;
  }
  #interview-content .item__job {
    font-size: 3.59vw;
    margin-top: 0.51vw;
  }
  #interview-content .item__year {
    font-size: 3.59vw;
    margin-top: 1.54vw;
  }
  #page-work .common-fv .illust img {
    width: 33.33vw;
    right: -1.79vw;
  }
  #work-introduction {
    padding: 15.38vw 0 10.26vw;
  }
  #work-introduction .inner {
    padding: 0 7.69vw;
  }
  #work-introduction .image {
    max-width: 100%;
    margin-top: -3.59vw;
  }
  #work-story01 {
    padding: 10.26vw 0;
    overflow: hidden;
  }
  #work-story01 .inner {
    padding: 0 7.69vw;
  }
  #work-story01 .contents {
    width: 100%;
    padding-left: 0;
    margin-top: 10.26vw;
  }
  #work-story01 .catch {
    left: -9.23vw;
    width: 51.54vw;
    max-width: 100%;
    margin-left: 0;
    font-size: 5.13vw;
    background-image: url("../images/work/story01-catch-bg-sp.webp");
    padding: 6.15vw 7.18vw 11.03vw 9.49vw;
    z-index: 1;
  }
  #work-story01 .text {
    position: relative;
    left: -43.08vw;
    width: 165.13vw;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-inline: auto;
    background-image: url("../images/work/story01-text-bg-sp.webp");
    padding: 36.41vw 37.44vw 14.1vw 43.08vw;
    margin-top: -11.54vw;
  }
  #work-story01 .image {
    width: 49.49vw;
    bottom: auto;
    top: 1.28vw;
    left: auto;
    right: -2.82vw;
  }
  #work-story02 {
    padding: 10.26vw 0;
    overflow: hidden;
  }
  #work-story02 .inner {
    padding: 0 7.69vw;
  }
  #work-story02 .block {
    margin-top: 10.26vw;
  }
  #work-story02 .contents {
    position: relative;
    width: 100%;
    padding-right: 0;
    margin-top: 0;
  }
  #work-story02 .catch {
    right: -38.46vw;
    width: 84.62vw;
    max-width: 100%;
    margin-right: 0;
    font-size: 5.13vw;
    background-image: url("../images/work/story02-catch-bg01-sp.webp");
    padding: 9.74vw 35.9vw 10vw 10.26vw;
    z-index: 1;
  }
  #work-story02 .text {
    position: relative;
    left: -50.77vw;
    width: 187.69vw;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    background-image: url("../images/work/story02-text-bg01-sp.webp");
    padding: 23.08vw 51.28vw 13.85vw 50.26vw;
    margin-top: -7.69vw;
  }
  #work-story02 .image {
    width: 46.15vw;
    top: 28.97vw;
    left: -8.97vw;
    z-index: 2;
  }
  #work-story02 .block:nth-child(2) {
    margin-top: 10.26vw;
  }
  #work-story02 .block:nth-child(2) .contents {
    padding-left: 0;
  }
  #work-story02 .block:nth-child(2) .catch {
    left: -18.46vw;
    width: 65.9vw;
    max-width: 100%;
    margin-left: 0;
    background-image: url("../images/work/story02-catch-bg02-sp.webp");
    padding: 6.92vw 16.41vw 7.18vw 19.74vw;
  }
  #work-story02 .block:nth-child(2) .text {
    left: -14.1vw;
    width: 116.92vw;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    background-image: url("../images/work/story02-text-bg02-sp.webp");
    padding: 25.13vw 17.18vw 21.54vw 14.36vw;
    margin-top: -7.69vw;
  }
  #work-story02 .block:nth-child(2) .image {
    width: 49.49vw;
    top: 30.77vw;
    left: auto;
    right: -11.54vw;
  }
  #work-conclusion {
    padding: 10.26vw 0 0;
  }
  #work-conclusion .inner {
    padding: 0 7.69vw;
  }
  #work-conclusion .image {
    max-width: 100%;
    margin-top: -3.85vw;
  }
  #top-fv {
    padding-top: calc(80px + 104.1vw);
    padding-bottom: 12.82vw;
  }
  #top-fv::before,
  #top-fv::after {
    height: 16.67vw;
  }
  #top-fv::before {
    width: 200vw;
    top: 38.46vw;
    left: -15.38vw;
  }
  #top-fv::after {
    top: 115.38vw;
    right: -26.92vw;
  }
  #top-fv .illust-main {
    width: 23.33vw;
    height: 27.69vw;
    top: calc(80px + 24.1vw);
    left: 40vw;
    -webkit-transform: none;
    transform: none;
  }
  #top-fv .illust-01 {
    width: 18.72vw;
    height: 18.97vw;
    top: calc(80px + 22.31vw);
    left: 2.82vw;
  }
  #top-fv .illust-02 {
    width: 15.13vw;
    height: 17.18vw;
    top: calc(80px + 4.1vw);
    left: 16.41vw;
  }
  #top-fv .illust-03,
  #top-fv .illust-08,
  #top-fv .illust-09,
  #top-fv .illust-10,
  #top-fv .illust-11 {
    width: 7.95vw;
    height: 15.9vw;
  }
  #top-fv .illust-03 {
    top: calc(80px + 6.67vw);
    left: 48.46vw;
  }
  #top-fv .illust-04 {
    width: 16.67vw;
    height: 19.49vw;
    top: calc(80px + 33.85vw);
    right: 15.64vw;
  }
  #top-fv .illust-05 {
    width: 24.87vw;
    height: 22.56vw;
    top: calc(80px + 9.74vw);
    right: 4.36vw;
  }
  #top-fv .illust-06 {
    width: 14.62vw;
    height: 20.51vw;
    top: calc(80px + 53.85vw);
    left: 12.56vw;
  }
  #top-fv .illust-07 {
    width: 24.62vw;
    height: 17.69vw;
    top: calc(80px + 76.67vw);
    right: 8.21vw;
  }
  #top-fv .illust-08 {
    top: calc(80px + 54.87vw);
    right: 37.18vw;
  }
  #top-fv .illust-09 {
    top: calc(80px + 68.72vw);
    left: 30.51vw;
  }
  #top-fv .illust-10 {
    top: calc(80px + 82.56vw);
    left: 6.15vw;
  }
  #top-fv .illust-11 {
    display: none;
  }
  #top-fv .catch {
    max-width: 100%;
    padding: 0 5.13vw;
  }
  #top-fv .catch__ja {
    font-size: 5.13vw;
    line-height: 1.5;
  }
  #top-fv .catch__en {
    font-size: 3.08vw;
    margin-top: 3.59vw;
  }
  #top-fv .body {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10.26vw;
    padding: 0;
    margin-top: 25.64vw;
  }
  #top-fv .images {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    padding-right: 2.56vw;
  }
  #top-fv .image-01 img {
    position: relative;
    left: -5.13vw;
    width: 73.08vw;
    margin-left: 0;
  }
  #top-fv .image-02 {
    margin-top: 3.08vw;
  }
  #top-fv .image-02 img {
    width: 63.08vw;
    margin-left: auto;
    margin-right: 0;
  }
  #top-fv .contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10.26vw;
    padding: 0 1.28vw 0 7.69vw;
  }
  #top-fv .en {
    font-size: 7.18vw;
    line-height: 1.07;
  }
  #top-fv .box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  #top-fv .texts {
    margin-top: 10.26vw;
  }
  #top-fv .text {
    font-size: 4.1vw;
    line-height: 2.5;
  }
  #top-fv .text:not(:first-of-type) {
    margin-top: 8.21vw;
  }
  #top-fv .image-03 {
    position: relative;
    width: 100%;
    top: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  #top-fv .image-03 img {
    width: 44.87vw;
    margin-left: 0;
    margin-right: auto;
  }
  .u-slide-up {
    -webkit-transform: translateY(4vw);
    transform: translateY(4vw);
  }
  .u-slide-left {
    -webkit-transform: translateX(-4vw);
    transform: translateX(-4vw);
  }
  .u-slide-right {
    -webkit-transform: translateX(4vw);
    transform: translateX(4vw);
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}

@media (max-width: 375px){
  html {
    font-size: 4.0533333333vw;
  }
}

@media (prefers-reduced-motion: reduce){
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}