@charset "UTF-8";
/* Sanitize
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *		IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent; /* 4 */
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
img {
  max-width: 100%;
  height: auto;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: top;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
  color: inherit; /* 2 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
			in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (min-width: 1480px) {
  html {
    font-size: 0.6597222222vw;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 640px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body, h1, h2, h3, h4, h5, h6, p, address, time,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, figcaption,
form, input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}
input:focus,
button:focus,
textarea:focus,
select:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.preload *, .preload *::before, .preload *::after {
  -webkit-transition: none !important;
  transition: none !important;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
a:link, a:active, a:visited {
  text-decoration: none;
}

a, button {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform, opacity;
}

a, button, div {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

img, object {
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: none;
}

figure {
  padding: 0;
  margin: 0;
}

label {
  cursor: pointer;
}

@media screen and (max-width: 640px) {
  a,
  a * {
    outline: none;
  }
}
@media screen and (min-width: 641px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ------------------------------
    base
------------------------------ */
body {
  color: #607274;
  font-size: 1rem;
  text-align: left;
}

section {
  position: relative;
}

main {
  display: block;
}
.index main {
  padding-top: 0;
}
@media screen and (max-width: 640px) {
  main {
    padding-top: 10rem;
  }
}

#svg-sprite {
  display: none;
}

svg:not(:root) {
  overflow: hidden;
}

svg {
  width: 100%;
  height: 100%;
}

p, th, td, dt, dd, li, input, button, textarea {
  font-size: 1.6rem;
  line-height: 1.75;
}

.h-center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateZ(0);
          transform: translateX(-50%) translateZ(0);
}

.v-center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0);
          transform: translateY(-50%) translateZ(0);
}

.hv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0);
          transform: translate(-50%, -50%) translateZ(0);
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 640px) {
  body {
    min-width: inherit;
  }
  input, textarea, select, textarea {
    font-size: 16px;
  }
}
/* ------------------------------
    wp
------------------------------ */
.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

/* ------------------------------
    layout
------------------------------ */
.l-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.l-container {
  position: relative;
  width: 100%;
  max-width: 112rem;
  margin: 0 auto;
}
/* ------------------------------
    component
------------------------------ */
.c-panel {
  display: grid !important;
  place-items: center;
  padding-left: 16rem;
  padding-right: 16rem;
}
.c-panel__txtbox {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem 0;
}
.c-panel__ttl {
  font-size: 4.8rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  font-weight: 300;
  color: #607274;
}
.c-panel__ttl.-white {
  color: #fff;
}
.c-panel__txt {
  position: relative;
  letter-spacing: 0.03em;
  line-height: 2.5;
  color: #607274;
}
.c-panel__txt.-white {
  color: #fff;
}
.c-panel__txt--jp {
  font-size: 1.4rem;
}
.c-panel__txt--en {
  font-size: 1.2rem;
  font-family: "Marcellus", serif;
}

@media screen and (max-width: 640px) {
  .c-panel {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .c-panel__txtbox {
    gap: 1.5rem 0;
  }
  .c-panel__ttl {
    font-size: 3rem;
  }
  .c-panel__txt--en {
    line-height: 2;
  }
}
.c-mainmenu__link {
  color: #FAEED1;
  display: block;
  position: relative;
  min-width: 18rem;
  min-height: 5rem;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .c-mainmenu__link:hover .c-mainmenu__jp {
    opacity: 1;
  }
  .c-mainmenu__link:hover .c-mainmenu__en {
    opacity: 0;
  }
  .c-mainmenu__link:hover .c-mainmenu__jp::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.c-mainmenu__link--nav {
  color: #fff;
}
.c-mainmenu__link--nav .c-mainmenu__jp::before {
  background: #fff;
}
.c-mainmenu__jp, .c-mainmenu__en {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.c-mainmenu__jp {
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0;
}
.c-mainmenu__jp::before {
  content: "";
  position: absolute;
  background: #FAEED1;
  width: 100%;
  height: 1px;
  bottom: -1.2rem;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.c-mainmenu__en {
  font-size: 1.6rem;
  font-family: "Marcellus", serif;
  opacity: 1;
}

.c-btn {
  position: relative;
}
.c-btn__link {
  display: inline-block;
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: #607274;
  /* safari line */
  -webkit-transform: translateZ(0.01px);
          transform: translateZ(0.01px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-clip: padding-box;
}
.c-btn__link.-white {
  color: #fff;
}
.c-btn__link.-white::before {
  background: #fff;
}
.c-btn__link::before {
  content: "";
  position: absolute;
  background: #607274;
  width: 100%;
  height: 1px;
  bottom: -1.8rem;
  left: 0;
}
@media print and (any-hover: hover) and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) and (any-hover: hover) and (min-width: 768px) {
  .c-btn__link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-btn__link:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 640px) {
  .c-btn__link {
    font-size: 1.6rem;
  }
}
/* activities */
.c-activities-list {
  max-width: 104rem;
}
.c-activities-list__ttl {
  color: #607274;
}
.c-activities-list__ttl--en {
  font-size: 1.2rem;
  font-family: "Marcellus", serif;
  letter-spacing: 0.05em;
  line-height: 2;
  opacity: 0.5;
}
.c-activities-list__ttl--jp {
  font-size: 2.1rem;
  font-weight: 300;
  line-height: 1.75;
  margin-top: 0.2em;
}
.c-activities-list__txt {
  color: #607274;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-activities-list__link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5rem 0;
  gap: 0 8rem;
}
.c-activities-list__link-left {
  width: 30rem;
}
.c-activities-list__link-right {
  width: 42rem;
}
.c-activities-list__link::before {
  position: absolute;
  content: "";
  background: #607274;
  width: calc(100% - 13.3rem);
  height: 1px;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.c-activities-list__link:hover .c-activities-list__img {
  opacity: 1;
}
.c-activities-list__link:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-activities-list__img {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  display: block;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  z-index: -1;
}
.c-activities-list__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 641px) {
  .c-activities-list li:last-child .c-activities-list__link .c-activities-list__img {
    top: auto;
    bottom: 0;
  }
}

@media screen and (max-width: 640px) {
  .c-activities-list {
    max-width: inherit;
  }
  .c-activities-list__ttl--jp {
    margin-top: 0;
  }
  .c-activities-list__txt {
    font-size: 1.2rem;
    opacity: 0;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .c-activities-list__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    gap: 0.8rem 0;
  }
  .c-activities-list__link-left {
    width: 100%;
  }
  .c-activities-list__link-right {
    width: 100%;
  }
  .c-activities-list__link::before {
    width: 100%;
    bottom: 0;
  }
  .c-activities-list__link:hover {
    margin-bottom: 5rem;
  }
  .c-activities-list__link:hover .c-activities-list__txt {
    opacity: 1;
    margin: 1rem 0;
  }
  .c-activities-list__img {
    width: 8.5rem;
    height: 29.2rem;
    right: -2rem;
  }
}
@media only screen and (max-width: 640px) and (max-height: 700px) {
  .c-activities-list__link:hover {
    margin-bottom: 3rem;
  }
}
/* ------------------------------
    ユーティリティ
------------------------------ */
.u-bold {
  font-weight: 700;
}

.u-jp {
  font-family: "Noto Sans JP", sans-serif;
}

.u-en {
  font-family: "Marcellus", serif;
}

/* ------------------------------
    header
------------------------------ */
.l-header {
  position: relative;
  background-color: transparent;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 98;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 12.8rem;
  isolation: isolate;
  /*
  &::after{
  	content: '';
  	position: absolute;
  	left: 0;
  	bottom: 0;
  	width: 100%;
  	height: 2px;
  	backdrop-filter: blur(1px);
  	pointer-events: none;
  	z-index: 2;
  }
  */
}
@media screen and (max-width: 640px) {
  .l-header {
    height: 10rem;
  }
}
.index .l-header {
  background-color: transparent;
}
.l-header__inner {
  width: 100%;
  height: 12.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 4rem 0 5.5rem;
}
@media screen and (max-width: 640px) {
  .l-header__inner {
    height: 10rem;
    padding: 0 2rem;
  }
}
.l-header__logo svg {
  width: 14.2rem;
  height: 4.9rem;
  fill: #607274;
}
@media screen and (max-width: 640px) {
  .l-header__logo svg {
    width: 11.8rem;
    height: 4rem;
  }
}
.l-header__logo a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  /* safari line */
  -webkit-transform: translateZ(0.01px);
          transform: translateZ(0.01px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-clip: padding-box;
  will-change: transform;
  outline: 1px solid transparent;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .l-header__logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}
.l-header__logo a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  z-index: -1;
}
.is-mv .l-header__logo svg, .is-footer .l-header__logo svg {
  fill: #FAEED1;
}
@media screen and (min-width: 641px) {
  .is-footer .l-header__logo svg {
    display: none;
  }
}
.is-dreammoney .l-header__logo svg, .is-activities .l-header__logo svg, .is-contact .l-header__logo svg {
  fill: #607274;
}
.is-thoughts .l-header__logo svg {
  fill: #2E2926;
}
.is-aboutus .l-header__logo svg {
  fill: #fff;
}
.l-header__sitename {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.l-header__nav {
  background: url("../img/common/bg_nav_pc.png") no-repeat center top/cover;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 48rem;
  height: 100%;
  padding-left: 9rem;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 998;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 640px) {
  .l-header__nav {
    background: url("../img/common/bg_nav_sp.png") no-repeat center top/cover;
    width: 100%;
    padding-left: 5rem;
  }
}
.l-header__nav-logo {
  line-height: 1;
}
.l-header__nav-logo svg {
  width: 20.2rem;
  height: 6.9rem;
  fill: #fff;
}
@media screen and (max-width: 640px) {
  .l-header__nav-inner {
    overflow-y: auto;
  }
}
.l-header__nav-menu {
  margin: 8rem 0 5rem;
}
.l-header__nav-txt p {
  color: #fff;
  line-height: 2;
}
.l-header__nav-txt p:nth-child(1) {
  font-size: 1.4rem;
  font-weight: 300;
}
.l-header__nav-txt p:nth-child(2) {
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  margin-top: 1rem;
}
.l-header__trigger {
  position: relative;
  z-index: 999;
  width: 4rem;
  height: 3.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .l-header__trigger {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header__trigger:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 640px) {
  .l-header__trigger {
    width: 3.2rem;
    height: 2.6rem;
    margin-bottom: 0.5rem;
  }
}
.l-header__line {
  position: relative;
  width: 100%;
  height: 100%;
}
.l-header__line span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background: #607274;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.l-header__line span:nth-of-type(1) {
  top: 0;
}
.l-header__line span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__line span:nth-of-type(3) {
  bottom: 0;
}
@media screen and (max-width: 640px) {
  .l-header__line span {
    width: 3.2rem;
  }
}
.is-mv .l-header__line span, .is-footer .l-header__line span {
  background: #FAEED1;
}
.is-dreammoney .l-header__line span, .is-activities .l-header__line span, .is-contact .l-header__line span {
  background: #607274;
}
.is-thoughts .l-header__line span {
  background: #2E2926;
}
.is-aboutus .l-header__line span {
  background: #fff;
}
.l-header.is-active .l-header__line span {
  background: #fff !important;
}
.l-header.is-active .l-header__line span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.l-header.is-active .l-header__line span:nth-of-type(2) {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}
.l-header.is-active .l-header__line span:nth-of-type(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(45deg);
          transform: translateY(50%) rotate(45deg);
}
.l-header.is-active .l-header__nav {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 640px) {
  .l-header.is-active .l-header__nav .l-header__language {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 13rem;
  }
}

/* ------------------------------
    footer
------------------------------ */
.l-footer {
  width: 100%;
  background: linear-gradient(146deg, rgb(96, 114, 116) 40%, rgb(148, 156, 147) 100%);
}
.l-footer::before {
  position: absolute;
  content: "";
  background: url("../img/common/bg_footer_pc.png") no-repeat center top/cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 15rem;
}
.l-footer__logo {
  line-height: 1;
}
.l-footer__logo svg {
  line-height: 0;
  width: 17rem;
  height: 5.8rem;
  fill: #FAEED1;
}
.l-footer__txt {
  color: #FAEED1;
  line-height: 2;
  font-size: 1.6rem;
  font-weight: 300;
  margin-top: 5rem;
}
.l-footer__copy {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 2;
  font-family: "Marcellus", serif;
  color: #FAEED1;
}
.l-footer--under {
  height: 100vh;
}

@media screen and (max-width: 640px) {
  .l-footer {
    width: 100%;
    background: linear-gradient(146deg, rgb(96, 114, 116) 40%, rgb(148, 156, 147) 100%);
  }
  .l-footer::before {
    background: url("../img/common/bg_footer_sp.png") no-repeat center top/100% auto;
  }
  .l-footer__inner {
    max-width: inherit;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 9rem 0;
    padding: 0 5rem;
  }
  .l-footer__logo svg {
    width: 12.9rem;
    height: 4.4rem;
  }
  .l-footer__txt {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
  }
  .l-footer__copy {
    position: relative;
    bottom: inherit;
    left: inherit;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    font-size: 1.2rem;
  }
  .l-footer__nav-menu {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
  .l-footer__nav-menu li {
    width: 13rem;
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
  }
  .l-footer__nav-menu li:nth-child(n+4) {
    padding-left: 1rem;
  }
}
/* ------------------------------
    responsive
------------------------------ */
@media screen and (min-width: 1440px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (min-width: 641px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }
  .sp-none {
    display: none !important;
  }
}
/* ------------------------------
    clearfix
------------------------------ */
.cf {
  zoom: 1;
}
.cf::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden; /* 隙間対応 */
  font-size: 0.1em; /* 隙間対応 */
  line-height: 0; /* 隙間対応 */
}
/*# sourceMappingURL=common.css.map */

@keyframes curtainExpandRightToLeft {
	from { transform: scaleX(0); transform-origin: right center; }
	to   { transform: scaleX(1); transform-origin: right center; }
  }
  
  @keyframes curtainShrinkLeft {
	from { transform: scaleX(1); transform-origin: left center; }
	to   { transform: scaleX(0); transform-origin: left center; }
  }
  
  @keyframes curtainExpandLeftToRight {
	from { transform: scaleX(0); transform-origin: left center; }
	to   { transform: scaleX(1); transform-origin: left center; }
  }
  
  @keyframes curtainShrinkRight {
	from { transform: scaleX(1); transform-origin: right center; }
	to   { transform: scaleX(0); transform-origin: right center; }
  }