@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
	--color-font-base: #000000;
	--color-font-primary: #ccc9be;
	--color-font-red: #cc4e42;
	--color-font-white: #ffffff;
	--color-font-grey: #666666;
	--color-bg-base: #000000;
	--color-bg-primary: #ccc9be;
	--color-bg-grey: #f7f5f0;
	--color-bg-ocher: #f2f1e4;
	--color-bg-red: #cc4e42;
	--color-bg-blue: #62bae5;
	--color-bg-white: #ffffff;
	--color-bg-yellow: #fbffe4;
	--color-bg-orange: #e66e2d;
	--color-bg-beige: #faf9f6;
	--color-bg-border: #f1efe8;
	--color-ws: #8981e7;
	--color-ss: #38ac8f;
	--color-sa: #d66d4f;
	--color-aw: #448bd2;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-s: 800px;
  --width-content: 1100px;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: 'Inter', sans-serif;
  --font-family-primary: 'Zen Kaku Gothic New', sans-serif;
  --font-family-yomogi: 'Yomogi', cursive;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-modal: 100;
  --z-index-header: 30;
  --z-index-menu: 10;
  --z-index-default: 1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

textarea {
  resize: vertical;
  display: block;
}

select {
  cursor: pointer;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: inherit;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

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

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

/*!
foundation > base
------------------------------
*/
body {
  line-height: 1.8;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 2.18;
  }
}

/*!
layout > container
------------------------------
*/
.l-container-s {
  width: min(90%, var(--width-content-s));
  margin-inline: auto;
}

.l-container {
  width: min(90%, var(--width-content));
  margin-inline: auto;
}

/*!
layout > archive
------------------------------
*/
.l-archive {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.l-archive.is-active {
  opacity: 1;
  transform: translateY(0);
}

.l-archive-inner {
  background-color: var(--color-bg-ocher);
  padding-bottom: 46px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .l-archive-inner {
    padding-bottom: 0;
  }
}

.l-archive-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -20px;
}
@media screen and (min-width: 768px) {
  .l-archive-content {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 60px;
    margin-top: -80px;
  }
}
@media screen and (min-width: 1080px) {
  .l-archive-content {
    margin-top: -15%;
  }
}

.l-archive-wrap {
  display: contents;
}
@media screen and (min-width: 768px) {
  .l-archive-wrap {
    display: flex;
    flex-direction: column;
  }
}

.l-archive-head {
  font-size: 20px;
  font-weight: bold;
  font-family: var(--font-family-primary);
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .l-archive-head {
    font-size: 26px;
    line-height: 1.53;
  }
}

.l-archive-text {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .l-archive-text {
    padding-top: 30px;
  }
}

@media screen and (min-width: 500px) {
  .l-archive-text span {
    display: block;
  }
}

.l-archive-button {
  order: 4;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-archive-button {
    padding-top: 40px;
  }
}

.l-archive-img {
  order: 3;
  width: 100%;
  max-width: 340px;
}

.l-archive-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-archive-inner-white {
  background-color: var(--color-bg-white);
}

.l-archive-white-content {
  margin-top: 0;
}

/*!
layout > column
------------------------------
*/
.l-column {
  display: flex;
  flex-direction: column;
  gap: 39px;
  padding-bottom: 50px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.l-column.is-active {
  opacity: 1;
  transform: translateY(0);
}

.l-column-head {
  font-family: var(--color-font-primary);
  font-weight: bold;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-column-head {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}

.l-column-head-english {
  font-size: 20px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .l-column-head-english {
    font-size: 26px;
    line-height: 1.34;
  }
}

.l-column-head-japanese {
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .l-column-head-japanese {
    font-size: 18px;
    line-height: 1.94;
  }
}

.l-column-content {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1080px) {
  .l-column-content {
    flex-direction: row;
  }
}

.l-column-item a {
  display: inline-block;
  font-weight: 500;
  border-top: 1px solid var(--color-bg-primary);
  width: 100%;
  padding: 30px 24px;
  transition: all 0.3s;
}
@media screen and (min-width: 1080px) {
  .l-column-item a {
    padding: 50px 33px;
  }
}

@media screen and (min-width: 1080px) {
  .l-column-item:nth-child(2) a {
    border-left: 1px solid var(--color-bg-primary);
    border-right: 1px solid var(--color-bg-primary);
  }
}

.l-column-item a:hover {
  opacity: 0.5;
}

/*!
component > button
------------------------------
*/
.c-button {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.94;
  display: grid;
  place-items: center;
  width: 90%;
  max-width: 350px;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 18px;
  }
}

.c-button-center {
  margin: 0 auto;
}

.c-button-black {
  color: var(--color-font-white);
  background-color: var(--color-bg-base);
  border: 2px solid var(--color-bg-base);
  border-radius: 100px;
  padding: 17px 0;
}

.c-button-white {
  background-color: var(--color-bg-white);
  border: 2px solid var(--color-bg-base);
  border-radius: 100px;
  padding: 17px 0;
}

.c-button:hover {
  transform: translateY(-5px);
  opacity: 1;
}

/*!
component > title
------------------------------
*/
.c-title {
  font-size: 20px;
  font-weight: bold;
  font-family: var(--font-family-primary);
  line-height: 1.3;
  border-left: 3px solid var(--color-bg-base);
  padding-left: 12px;
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 26px;
    line-height: 1.34;
    border-left: 6px solid var(--color-bg-base);
    padding-left: 28px;
  }
}

.c-title.is-active {
  opacity: 1;
  transform: translateX(0);
}

/*!
component > wavy-img
------------------------------
*/
.c-wavy-img {
  width: 100%;
}

.c-wavy-img img {
  aspect-ratio: 1440/300;
  -o-object-fit: cover;
     object-fit: cover;
}

/*!
page > top > top-common
------------------------------
*/
/*------------------------------------------------------
top-common-common
------------------------------------------------------*/
.top-common {
  margin-top: -80px;
}
@media screen and (min-width: 500px) {
  .top-common {
    margin-top: -125px;
  }
}

.top-common-contents-mt {
  margin-top: -30px;
}
@media screen and (min-width: 768px) {
  .top-common-contents-mt {
    margin-top: -80px;
  }
}
@media screen and (min-width: 1200px) {
  .top-common-contents-mt {
    margin-top: -120px;
  }
}

.top-common-body {
  padding-bottom: 60px;
  margin-top: -30px;
}
@media screen and (min-width: 768px) {
  .top-common-body {
    padding: 80px 0 90px;
    margin-top: -130px;
  }
}
@media screen and (min-width: 1080px) {
  .top-common-body {
    margin-top: -15%;
  }
}

.top-common-inner {
  padding: 20px 0 80px;
  margin-top: -20px;
}
@media screen and (min-width: 768px) {
  .top-common-inner {
    padding: 60px 0 180px;
    margin-top: -120px;
  }
}
@media screen and (min-width: 1080px) {
  .top-common-inner {
    margin-top: -15%;
  }
}

.top-common-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  position: relative;
  z-index: 10;
}

.top-common-fade.is-active {
  opacity: 1;
  transform: translateY(0);
}

.top-common-title-wrap {
  border-bottom: 2px solid var(--color-bg-base);
  width: 98%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-common-title-wrap {
    width: 88%;
    margin: 0;
  }
}

.top-common-title {
  font-size: 20px;
  font-family: var(--font-family-primary);
  font-weight: bold;
  line-height: 1.5;
  width: 90%;
  max-width: 1110px;
  padding: 20px 0;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-common-title {
    text-align: center;
    padding: 26px 0 22px;
  }
}
@media screen and (min-width: 1080px) {
  .top-common-title {
    font-size: 26px;
    line-height: 1.92;
  }
}

@media screen and (min-width: 1080px) {
  .top-common-title br {
    display: none;
  }
}

.top-common-wrap {
  background-color: var(--color-bg-white);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  padding: 20px 20px 25px;
  margin-top: 40px;
  margin-inline: auto;
}
@media screen and (min-width: 500px) {
  .top-common-wrap {
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .top-common-wrap {
    border-radius: 15px;
    padding: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .top-common-wrap {
    margin-top: 60px;
  }
}

.top-common-head-wrap {
  font-family: var(--font-family-primary);
}
@media screen and (min-width: 500px) {
  .top-common-head-wrap {
    text-align: center;
    letter-spacing: 0.1em;
  }
}

.top-common-head-wrap::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: var(--color-bg-base);
}
@media screen and (min-width: 500px) {
  .top-common-head-wrap::after {
    display: none;
  }
}

.top-common-head {
  font-size: 18px;
  font-family: var(--font-family-primary);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .top-common-head {
    font-size: 24px;
    line-height: 1.53;
  }
}

.top-common-head-sub {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .top-common-head-sub {
    font-size: 18px;
    line-height: 2;
    padding-bottom: 0;
  }
}

.top-common-box {
  background-color: var(--color-bg-white);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 30px;
}
@media screen and (min-width: 768px) {
  .top-common-box {
    border-radius: 15px;
    gap: 29px;
    padding: 45px;
  }
}

@media (min-width: 768px) {
  .top-common-box--reverse {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px 40px;
  }
  .top-common-box--reverse .top-common-text-style {
    width: 100%;
    order: 1;
  }
  .top-common-box--reverse .top-common-box__text {
    order: 2;
    flex: 1;
  }
  .top-common-box--reverse .top-common-aruaru-img {
    order: 3;
    flex-shrink: 0;
    width: 100%;
  }
}

/*------------------------------------------------------
top-common-list
------------------------------------------------------*/
.top-common-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .top-common-list {
    gap: 12px;
  }
}

.top-common-list-pl {
  padding-left: 10px;
}

.top-common-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .top-common-list-item {
    align-items: center;
    font-size: 18px;
    line-height: 1.94;
  }
}

.top-common-list-item::before {
  content: "";
  background-color: var(--color-bg-red);
  width: 18px;
  height: 2px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .top-common-list-item::before {
    margin-top: 0;
  }
}

/*------------------------------------------------------
top-common-bg
------------------------------------------------------*/
.top-common-grey {
  background-color: var(--color-bg-grey);
}

/*------------------------------------------------------
top-common-text
------------------------------------------------------*/
.top-common-text span {
  display: block;
}

.top-common-text .top-common-text-inline {
  display: inline;
}

.top-common-text-style {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .top-common-text-style {
    font-size: 18px;
    line-height: 2;
  }
}

.top-common-text .top-common-text-disc {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-common-text-disc::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--color-bg-base);
  border-radius: 100vh;
	flex-shrink: 0;
}

.top-common-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border: 1px solid var(--color-bg-base);
  border-radius: 6px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .top-common-text-wrap {
    width: auto;
    border-radius: 15px;
    padding: 30px 35px;
  }
}

/*------------------------------------------------------
top-common-img
------------------------------------------------------*/
.top-common-img-wrap {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  gap: 30px;
}
@media screen and (min-width: 1080px) {
  .top-common-img-wrap {
    flex-direction: row-reverse;
    padding-top: 30px;
  }
}

.top-common-img {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

.top-common-img img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-common-aruaru-img {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .top-common-aruaru-img {
    max-width: 474px;
  }
}

@media screen and (min-width: 1080px) {
  .top-common-aruaru-img img {
    aspect-ratio: 474/316;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*------------------------------------------------------
top-common-space
------------------------------------------------------*/
.top-common-space {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .top-common-space {
    padding-top: 30px;
  }
}

.extra-space {
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .extra-space {
    padding-top: 60px;
  }
}


/*!
page > top > top-fv
------------------------------
*/
.top-fv {
  position: relative;
  padding: 30px 20px 0px;
}
@media screen and (min-width: 768px) {
  .top-fv {
    width: 95%;
    max-width: 1000px;
    padding: 63px 97px 0px 94px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1080px) {
  .top-fv {
    width: 100%;
  }
}

.top-fv-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 500px) {
  .top-fv-inner {
    align-items: center;
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .top-fv-inner {
    align-items: flex-start;
    justify-content: space-between;
  }
}

.top-fv-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .top-fv-content {
    padding-top: 53px;
  }
}

.top-fv-text {
  font-size: 14px;
  font-family: var(--font-family-primary);
  letter-spacing: 0.15rem;
  line-height: 1.7;
  white-space: nowrap;
}
@media screen and (min-width: 1080px) {
  .top-fv-text {
    line-height: 3.57;
  }
}

.top-fv-head {
  font-size: 20px;
  font-family: var(--font-family-primary);
  font-weight: bold;
  letter-spacing: 0.2rem;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .top-fv-head {
    font-size: 24px;
  }
}
@media screen and (min-width: 1080px) {
  .top-fv-head {
    font-size: 34px;
    line-height: 1.76;
  }
}

.top-fv-head span {
  display: block;
}

.line-fade {
  opacity: 0;
  display: block; /* 1行ずつ表示 */
  transform: translateY(20px);
  transition: opacity 2s ease, transform 2s ease;
}

.line-fade.is-active {
  opacity: 1;
  transform: translateY(0);
}

.top-fv-initial {
  font-size: 30px;
  font-family: var(--font-family-primary);
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 1.66;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 2px solid var(--color-bg-base);
  border-radius: 100vh;
  position: absolute;
  top: 30px;
  right: 20px;
}
@media screen and (min-width: 500px) {
  .top-fv-initial {
    top: 36px;
    left: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .top-fv-initial {
    top: 75px;
    left: 0px;
  }
}

.top-fv-img {
  width: 100%;
  max-width: 250px;
  position: relative;
  z-index: 999;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-fv-img {
    max-width: 403px;
    margin: 0;
  }
}

.top-fv-img img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.top-fv-img-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-fv-img-text {
    color: var(--color-font-grey);
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 19px;
    position: absolute;
    top: 67px;
    right: -35px;
  }
}

.top-fv-img-text span {
  font-size: 14px;
  font-family: var(--font-family-yomogi);
  letter-spacing: 0.1em;
  line-height: 1.42;
  writing-mode: vertical-rl;
}

.top-fv-img-text span:nth-child(2) {
  margin-top: 55px;
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 60px 0 46px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
@media screen and (min-width: 768px) {
  .top-kv {
    gap: 35px;
    padding: 93px 0 59px;
  }
}

.top-kv.is-active {
  opacity: 1;
  transform: translateY(0);
}

.top-kv-head {
  font-size: 20px;
  font-weight: bold;
  font-family: var(--font-family-primary);
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-kv-head {
    font-size: 26px;
    line-height: 1.53;
  }
}

.top-kv-head span {
  display: block;
}
@media screen and (min-width: 768px) {
  .top-kv-head span {
    display: inline-block;
  }
}

.top-kv-img {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}

.top-kv-img img {
  aspect-ratio: 800/450;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-kv-text {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .top-kv-text {
    text-align: center;
  }
}

.top-kv-text span {
  display: block;
}

.tp-kv-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .tp-kv-button {
    flex-direction: row;
    gap: 50px;
  }
}

/*!
top-kv-ocher
------------------------------
*/
.top-kv-ocher-bg {
  background-color: var(--color-bg-ocher);
}

.top-kv-ocher-inner {
  padding-top: 0;
  margin-top: -10%;
}
@media screen and (min-width: 1080px) {
  .top-kv-ocher-inner {
    margin-top: -13%;
  }
}

.top-kv-ocher-content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media screen and (min-width: 768px) {
  .top-kv-ocher-content {
    gap: 35px;
  }
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-pt {
  padding-top: 60px;
}
@media screen and (min-width: 1080px) {
  .u-pt {
    padding-top: 100px;
  }
}/*# sourceMappingURL=common.css.map */


.sp-only {
	display: block;
}
@media screen and (min-width: 768px) {
	.sp-only .sp-only {
		display: none;
	}
} /*# sourceMappingURL=common.css.map */