*, *::before, *::after {
  box-sizing: border-box;
}

ul[class], ol[class] {
  padding: 0;
}

body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
}

body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class], ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  margin: 0;
  padding: 0;
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--inner);
}
@media (max-width: 767px) {
  .l-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.l-inner--s {
  max-width: var(--inner-s);
}
.l-inner--l {
  max-width: var(--inner-l);
}
.l-inner--full {
  max-width: var(--inner-full);
}

.l-section-radius {
  border-radius: 5rem 5rem 0 0;
}

:root {
  --header-height: 7.5rem;
  --color-black: #3E281B;
  --color-blue: #313378;
  --color-blue2: #A4BFF6;
  --color-yellow: #e2c85f;
  --color-light-blue: #e4e9ef;
  --color-light-gray: #F3F3F3;
  --color-light-white: #F9F9F9;
  --color-smoke: #d1d1d1;
  --color-white: #fff;
  --color-gray: #D5D5D5;
  --color-red: #bb491d;
  --bg: #fff;
  --bg-main: var(--color-black);
  --bg-fill: var(--color-blue);
  --bg-light: var(--color-light);
  --gray: var(--color-gray);
  --text-color: var(--color-black);
  --date-color: var(--color-gray);
  --navi-color: var(--color-gray);
  --inner-s: 100rem;
  --inner: 108.6rem;
  --inner-l: 124.6rem;
  --inner-full: 136.6rem;
  --line-height: 1.725;
  --font: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-en: "Montserrat", sans-serif;
  --font-sp: "rama-gothic-m", sans-serif;
  --font-serif: "Shippori Mincho", serif;
}
@media (max-width: 767px) {
  :root {
    --header-height: 5.6rem;
  }
}

html {
  font-size: 62.5%;
  scroll-padding-top: var(--header-height);
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 10rem;
  }
}
@media screen and (max-width: 1266px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: var(--font);
  font-size: 1.6rem;
  color: var(--text-color);
  line-height: var(--line-height);
  position: relative;
  background-color: var(--bg);
}

b {
  font-weight: bold;
}

a {
  color: inherit;
  text-decoration: none;
}

textarea {
  resize: none;
}

input[type=submit] {
  transition: 0.3s;
  cursor: pointer;
}
sub {
  vertical-align: baseline;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

h2,
h3,
h4 {
  line-height: 1.45;
}

p {
  font-size: 1.6rem;
  line-height: 2.5;
}
@media (max-width: 767px) {
  p {
    font-size: 1.4rem;
    line-height: 2.1428571429;
  }
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

video {
  max-width: 100%;
}

button {
  appearance: none;
  border: 0;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: 0.4s;
  --header-text-fw: 500;
  --header-text-color: #fff;
  --header-text-inverse-color: var(--color-primary);
  height: var(--header-height);
  background: #f9f8ef;
}
.header.is-hide {
  transform: translate(0, -200%) !important;
}
.header.is-change {
  --header-text-inverse-color: #fff;
  --header-text-fw: 400;
}
.header.is-change::before {
  opacity: 1;
}
.header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  position: relative;
}
.header__banner {
  width: 19.2rem;
  margin-right: 0.2rem;
}
@media (max-width: 767px) {
  .header__banner {
    width: 12.9rem;
  }
}
.header__cta {
  width: 21.1rem;
  height: 100%;
  color: #fff;
  /* background: linear-gradient(to right, #ea700d 0%, #f78b21 100%); */
  background: #59b311;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
@media (max-width: 767px) {
  .header__cta {
    width: 5.6rem;
    flex: 0 0 5.6rem;
    flex-direction: column;
  }
  .header__cta img {
    margin: auto;
  }
}
.header__cta:hover {
  opacity: 0.5;
}
.header__cta-text {
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  margin: 0 1.5rem 0 1.1rem;
}
@media (max-width: 767px) {
  .header__cta-text {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0.1rem 0 0;
  }
}
.header__logo {
  margin-right: auto;
  position: relative;
  z-index: 6;
  width: 15.7rem;
  text-align: center;
  transition: 0.4s;
  margin-left: 2.8rem;
}
@media (max-width: 767px) {
  .header__logo {
    width: 10.5rem;
    margin-left: 1rem;
  }
}
.header__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  margin-right: 3.3rem;
}
@media (max-width: 767px) {
  .header__links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    background-color: #f9f8ef;
    display: block;
    padding: 5.8rem;
    text-align: center;
    width: 100%;
    transition: 0.4s;
    opacity: 0;
    transform: translate(0%, 0%) scaleY(0);
    transform-origin: top;
  }
  .header__links.is-active {
    opacity: 1;
    transform: none;
  }
}
.header__link {
  font-weight: bold;
  transition: 0.4s;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: var(--font-serif);
}
@media (max-width: 767px) {
  .header__link {
    display: block;
  }
  .header__link + .header__link {
    margin-top: 3rem;
  }
}
.header__link:not(.header__link--has-child):hover {
  opacity: 0.5;
}
.header__button {
  position: relative;
  z-index: 10;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
@media (max-width: 767px) {
  .header__button {
    display: block;
    width: 5.6rem;
    height: 5.6rem;
    background: linear-gradient(to right, #3e281b 0%, #7e6f66 100%);
  }
}
.header__button-title {
  font-size: 1.4rem;
  font-weight: var(--header-text-fw);
  text-align: center;
  margin-top: 0.2rem;
  transition: 0.4s;
  color: var(--header-text-color);
}
@media (max-width: 767px) {
  .header__button-title {
    font-size: 0.8rem;
    margin-top: 0;
  }
}

.header-drawer-hero {
  width: 52.3rem;
  height: 45.3rem;
  position: relative;
}
@media (max-width: 767px) {
  .header-drawer-hero {
    width: 27.5rem;
    height: 23.7rem;
    margin: auto;
  }
}
.header-drawer-hero > * {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
}
.header-drawer-hero__mark {
  width: 44rem;
  height: fit-content;
  position: absolute;
  inset: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .header-drawer-hero__mark {
    width: 23.1rem;
    height: auto;
  }
}
.header-drawer-hero__visual--4 {
  width: 35.3rem;
  inset: auto 0 1rem;
  z-index: 10;
}
@media (max-width: 767px) {
  .header-drawer-hero__visual--4 {
    width: 18.5rem;
    inset: auto 0 -2.1rem;
  }
}
.header-drawer-hero__title {
  width: 100%;
  height: fit-content;
  position: absolute;
  inset: auto 0 13.3rem;
  margin: auto;
  mix-blend-mode: exclusion;
}
@media (max-width: 767px) {
  .header-drawer-hero__title {
    inset: auto 0 5.6rem;
  }
}
.header-drawer-hero__title--2 {
  mix-blend-mode: unset;
  z-index: 2;
}

.header-drawer-bnrs {
  display: grid;
  gap: 2rem;
  align-items: end;
  grid-template-columns: repeat(2, 18rem);
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .header-drawer-bnrs {
    padding-bottom: 0;
    gap: 1.6rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.header-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  transition: 0.6s;
  transition-delay: 0.3s;
  visibility: hidden;
  overflow: auto;
  overflow-x: clip;
  overscroll-behavior: contain;
  --header-text-color: var(--color-primary);
  --header-text-inverse-color: #fff;
  pointer-events: none;
  color: var(--color-black);
  transform: translate(0, -120%);
}
.header-drawer__main {
  background-color: #eee;
  transition-delay: 0.3s;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .header-drawer__main {
    position: relative;
  }
}
.header-drawer.is-active {
  display: block;
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transition-delay: 0.4s;
  transition: 0.4s;
  transform: none;
}
.header-drawer__sns-list {
  position: absolute;
  inset: 3.3rem 20rem auto auto;
  display: grid;
  gap: 1.5rem;
  z-index: 9;
  grid-template-columns: repeat(5, 4.5rem);
}
@media (max-width: 767px) {
  .header-drawer__sns-list {
    gap: 1rem;
    inset: auto auto 21rem 1.5rem;
  }
}
.header-drawer__sns-list a {
  transition: 0.4s;
}
.header-drawer__sns-list a:hover {
  filter: invert(1);
}
.header-drawer__navi {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 11.4rem;
  padding-right: 9.3rem;
  margin-bottom: 4.5rem;
}
@media (max-width: 767px) {
  .header-drawer__navi {
    height: 8rem;
    padding: 0 1.8rem;
    margin-bottom: 1.2rem;
  }
}
.header-drawer__layer {
  position: absolute;
  width: 100%;
  height: 100%;
}
.header-drawer__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  min-height: 76.8rem;
  overflow: auto;
  overflow-x: clip;
  transition: 0.4s;
  display: grid;
  grid-template-columns: 52.4rem 1fr;
}
@media (max-width: 767px) {
  .header-drawer__content {
    padding: 8rem 0 3.5rem;
    gap: 0;
    height: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }
}
.header-drawer__logo {
  position: fixed;
  z-index: 6;
  opacity: 1 !important;
}
@media print, screen and (min-width: 768px) {
  .header-drawer__logo {
    top: 3.3rem;
    left: 5rem;
  }
}
@media (max-width: 767px) {
  .header-drawer__logo {
    width: 22.5rem;
    top: 1.3rem;
    left: 1.5rem;
  }
}
.header-drawer__left {
  position: relative;
}
@media (max-width: 767px) {
  .header-drawer__left {
    padding-bottom: 5.6rem;
  }
}
.header-drawer__left .c-bg2 {
  inset: 0;
  margin: auto;
  position: absolute;
  max-width: 57rem;
  height: 56.2rem;
}
@media (max-width: 767px) {
  .header-drawer__left .c-bg2 {
    width: 38.2rem;
    height: 35.9rem;
    inset: 0 50%;
    transform: translate(-50%, 0);
  }
}
.header-drawer__left .c-bg2__circle {
  width: 35rem !important;
  height: 35rem !important;
}
@media (max-width: 767px) {
  .header-drawer__left .c-bg2__circle {
    width: 26.5rem !important;
    height: 26.5rem !important;
  }
}
.header-drawer__left .c-bg2__circle:nth-child(1) {
  inset: 0 0 auto auto;
}
.header-drawer__left .c-bg2__circle:nth-child(2) {
  inset: auto auto 0 0;
}
@media print, screen and (min-width: 768px) {
  .header-drawer__left {
    padding-top: 15rem;
  }
}
.header-drawer__lead {
  width: 17.4rem;
  margin: 0 auto 6rem;
  position: relative;
  z-index: 2;
}
.header-drawer__button {
  position: relative;
  z-index: 5;
}
.header-drawer__right {
  padding: 15rem 0 0 7rem;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .header-drawer__right {
    height: 100%;
    padding: 0 1.5rem 25.2rem;
  }
}
.header-drawer__right-text {
  padding: 0 0 0 1rem;
  line-height: 2;
  border-bottom: 0.2rem #95a4b8 solid;
  padding-bottom: 3rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .header-drawer__right-text {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}
.header-drawer__ctas {
  justify-items: center;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .header-drawer__ctas {
    margin-bottom: 3rem;
  }
}
.header-drawer__ctas .header-drawer__cta:first-child {
  margin-bottom: 1.5rem;
}
.header-drawer__exlink {
  color: #21416b;
  font-weight: bold;
  padding: 0 0 0.5rem;
  border-bottom: 1px solid currentColor;
  width: fit-content;
  margin-left: 1.5rem;
}
@media (max-width: 767px) {
  .header-drawer__exlink {
    margin: auto;
    width: fit-content;
    display: block;
    font-size: 1.4rem;
  }
}
.header-drawer__exlink svg {
  margin-left: 1rem;
}
@media (max-width: 767px) {
  .header-drawer__exlink svg {
    margin-left: 0.5rem;
  }
}
.header-drawer .g-navi__link-groups {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10rem 7rem;
}
@media (max-width: 767px) {
  .header-drawer .g-navi__link-groups {
    grid-template-columns: repeat(2, auto);
    gap: 3.5rem 3.8rem;
  }
}
.header-drawer .g-navi__links-title {
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  display: block;
}
@media (max-width: 767px) {
  .header-drawer .g-navi__links-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
}
.header-drawer .g-navi__link {
  font-size: 1.6rem;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .header-drawer .g-navi__link {
    font-size: 1.4rem;
  }
}

.hamburger-menu {
  --hamburger-padding: 0;
  --hamburger-bar-color: #fff;
  --hamburger-size-w: 2.6rem;
  --hamburger-size-h: 1.7rem;
  --hamburger-bg: transparent;
  width: fit-content;
  height: fit-content;
  background-color: var(--hamburger-bg);
  transition: 0.4s;
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .hamburger-menu {
    --hamburger-padding: 2rem 1.5rem;
    padding: var(--hamburger-padding);
  }
}
.hamburger-menu:not(.is-active):hover .hamburger__bar {
  scale: 1.2;
}
.hamburger-menu.is-active .hamburger__bar:nth-child(1) {
  width: 100%;
  rotate: 140deg;
  inset: 0;
  margin: auto;
}
.hamburger-menu.is-active .hamburger__bar:nth-child(2) {
  rotate: 40deg;
  inset: 0;
  width: 100%;
  margin: auto;
}
.hamburger-menu.is-active .hamburger__bar:nth-child(3) {
  opacity: 0;
}

.hamburger {
  width: var(--hamburger-size-w);
  height: var(--hamburger-size-h);
  position: relative;
}
.hamburger__bar {
  transition: 0.4s;
  width: 100%;
  height: 1px;
  background: var(--hamburger-bar-color);
  position: absolute;
  top: 0;
  left: 0;
}
.hamburger__bar:nth-child(2) {
  inset: auto 0 0;
}
.hamburger__bar:nth-child(3) {
  inset: 0 0 0;
  margin: auto;
}

.header-drawer-sub {
  position: absolute;
  inset: auto 0 3.5rem;
  margin: auto;
  color: #fff;
  z-index: 3;
}
@media (max-width: 767px) {
  .header-drawer-sub {
    inset: auto 0 0;
    padding-bottom: 5.5rem;
  }
}
.header-drawer-sub__row {
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .header-drawer-sub__row {
    display: block;
  }
}
.header-drawer-sub__copyright {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .header-drawer-sub .g-sublinks {
    margin-top: 2.5rem;
    display: flex;
    gap: 2rem;
  }
}
.header-drawer-sub .g-sublinks .g-sublink {
  color: var(--color-black);
  margin-right: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .header-drawer-sub .g-sublinks .g-sublink {
    margin-left: 0;
    margin-top: 0 !important;
  }
}

.header-hovermenu {
  position: absolute;
  inset: 0em auto auto 0;
  padding-top: 2em;
  height: 0;
}
.header-hovermenu__inner {
  padding: 1rem;
  background-color: #fff;
  min-height: 10rem;
  width: 20rem;
}

.footer {
  padding: 6.8rem;
  text-align: center;
}
@media (max-width: 767px) {
  .footer {
    padding: 5rem 0 10rem;
  }
}
.footer__logo img {
  margin: 0 auto 4.2rem;
}
@media (max-width: 767px) {
  .footer__logo img {
    margin-bottom: 2.9rem;
  }
}
.footer__copyright {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: 1.2rem;
    white-space: nowrap;
  }
}

@keyframes rotation1 {
  to {
    transform: rotate(1turn);
  }
}
@keyframes rotation2 {
  to {
    transform: rotate(-1turn);
  }
}
@keyframes mvanimtion1 {
  to {
    transform: translateY(24px);
  }
}
@keyframes mvanimtion2 {
  to {
    transform: translateY(-12px);
  }
}

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