@charset "UTF-8";
/*
	Made by Elly Loel - https://ellyloel.com/
*/
* {
  margin: 0;
  padding: 0;
}

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

html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}


body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
}
::selection {
  background: #615D56;
  color: #fff;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

:where(svg) {
  stroke: none;
  fill: currentColor;
}

:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

h1 {
  font-size: 2em;
}

:where(ul, ol)[role=list] {
  list-style: none;
}

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

:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

:where(input[type=file])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

/*
	cpページ用スタイル
*/

.cp-page-content {
  margin-top: 88.47px;
}

.cp-l_header{
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 88.47px;
}

.cp-l_header--inner {
  display: flex;
  justify-content: space-between;
  height: 100%;
  max-width: 1104px;
  width: 95%;
  margin: auto;
}

.cp-l_header--logo{
  display: flex;
  align-items: center;
  width: 12.8vw;
}

@media screen and (min-width: 641px) {
  .cp-l_header--logo{
    width: 9vw;
  }
}

@media screen and (min-width: 769px) {
  .cp-l_header--logo{
    width: 5vw;
  }
}

@media screen and (min-width: 992px) {
  .cp-l_header--logo{
    font-size: 3.5vw;
  }
}

.cp-l_header--nav {
  display: flex;
  gap: 40px;
}

@media not screen and (min-width: 769px) {
  .cp-l_header--nav{
    display: none;
    /* position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    gap: 0;
    background: #f9f7f5;
    border-top: 1px solid #d4cec0 */
  }
}

.cp-l_header--nav li {
  display: flex;
  align-items: center;
  flex: 1;
  text-align: center;
  font-weight: bold;
  color: #4c463a;
}

@media screen and (min-width: 769px) {
  .cp-l_header--nav li{
    flex:auto;
    font-size: 16px;
    color: #000;
  }
}

.cp-l_header--nav li img{
  width: 1.9em;
  aspect-ratio: 1;
}

@media screen and (min-width: 769px) {
  .cp-l_header--nav li img{
    display: none;
  }
}

.cp-l_header--nav--toggle_trigger,.cp-l_header--nav > li > a{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

@media  screen and (min-width: 769px) {
  .cp-l_header--nav li.is_sp_none{
    display: none;
  }
}

.cp-l_header--nav--toggle_trigger{
  font-weight: bold;
  display: flex;
  align-items: center;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .cp-l_header--nav--toggle_trigger{
    flex-direction: row;
  }
}

.cp-l_header--nav--toggle_trigger::after{
  content: "";
  display: block;
  width: 0.7em;
  aspect-ratio: 1;
  background: url(/assets/img/icon/toggle.svg) no-repeat center / contain;
}

@media not screen and (min-width: 769px) {
  .cp-l_header--nav--toggle_trigger::after{
    display: none;
  }
}

.cp-l_header--nav--toggle_trigger.is_active{
  transition: ease-in-out .2s;
}

@media not screen and (min-width: 769px) {
  .cp-l_header--nav--toggle_trigger.is_active{
    background: #e1ded8;
  }
}

.cp-l_header--nav--toggle_content{
  background: #F5F4F1;
  position: absolute;
  bottom: 100%;
  width: 100%;
  left: 0;
}

@media screen and (min-width: 769px) {
  .cp-l_header--nav--toggle_content{
    top: 100%;
    bottom: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-areas: 
    "title title title title"
    ". . . ."; 
    gap: 0px 30px;
    padding: 80px 80px;
    box-shadow:0px 2rem 4rem -2.5rem rgba(0, 0, 0, 0.2);

  }
}

.cp-l_header--nav--toggle_content li{
  /* width: 25%; */
  /* width: calc((100% - 60px) / 4); */
}

.cp-l_header--nav--toggle_content a {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom:1px solid #BFBFBF;
  padding: 1.4rem;
  width: 100%;
  color: #000;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  .cp-l_header--nav--toggle_content a{
    padding: 1.4rem 0;
  }
}

.cp-l_header--nav--toggle_content a::after{
  content: "";
  display: block;
  width: 1.4em;
  aspect-ratio: 1;
  background: url(/assets/img/icon/arrow-round--fill.svg)no-repeat center/cover;
}
@media screen and (min-width: 769px) {
  .cp-l_header--nav--toggle_content a::after{
    width: 2em;
  }
}

.cp-l_header--nav--toggle_content .cp-l_header--nav--toggle_content--title{
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 4rem;
  grid-area: title;
  text-align: left;
}

@media not screen and (min-width: 769px) {
  .cp-l_header--nav--toggle_content .cp-l_header--nav--toggle_content--title{
    display: none;
  }
}

.cp-l_header--menu_button{
  display: flex;
  align-items: center;
  background: aqua;
}

.cp-l_header--menu_button::before{
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1;
  background: blue;
}
