@charset "UTF-8";
/*------------------------------------------------------------------------
// Base
  ├ reset
  └ base
------------------------------------------------------------------------*/
/*----------------------------------------
	reset
----------------------------------------*/
:root {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  border-style: solid;
  border-width: 0;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, hgroup, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

header, footer, article, section, aside, hgroup, main, nav, menu, figure, figcaption {
  display: block;
}

span, small, strong, em, b, i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--gray);
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

:root {
  --white: #FFFFFF;
  --black: #5A5959;
  --textColor: var(--black);
  --accentColor: #E34E14;
  --baseColor1: #EB9F82;
  --baseColor1Pale: #F7EFE9;
  --baseColor2: #00432D;
  --baseColor2Pale: rgba(187,219,205,0.15);
  --blue1: #96CDDB;
  --green1: #BBDBCD;
  --pink1: #F5C4C4;
  --blueGray1: #9EAAB2;
  --blueGray2: #5A707E;
  --font_serif: "Noto Serif JP", serif;
  --leading-trim: calc((1em - 1lh) / 2);
  --width: 872px;
  --width_lg: 1400px;
  --sp-gutter: calc(62/750*100vw);
  --pc-gutter: min((20/1400*100vw),20px);
  --mainColor: #FF8900;
  --subColor: #F66401;
  --subColor2: #FF9402;
  --gray: #E9E9E9;
  --lightGray: #FAFAFA;
}

/* html,Body
----------------------------------------*/
html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--textColor);
  font-size: 12px;
  font-size: 3.2vw;
  font-family: var(--font_serif);
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 2;
  letter-spacing: 0.1em;
  word-wrap: break-word;
  word-break: normal;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body * {
  word-wrap: break-word;
  word-break: normal;
}
@media (min-width: 768px) {
  body {
    font-size: 24px;
    font-size: 1.7142857143vw;
  }
}
@media (min-width: 1201px) {
  body {
    font-size: 24px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.7;
}

/* Links
----------------------------------------*/
a {
  text-decoration: underline;
  color: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  a:hover, a:focus {
    opacity: 0.7;
  }
}

/*------------------------------------------------------------------------
// Modules
------------------------------------------------------------------------*/
/*----------------------------------------
	Common Layout
----------------------------------------*/
/* body
-----------------------*/
body.is-menuopen {
  overflow: hidden;
  width: 100%;
}

/* container
-----------------------*/
.container {
  padding-inline: var(--sp-gutter);
}
@media (min-width: 768px) {
  .container {
    max-width: var(--width_lg);
    margin-inline: auto;
    padding-inline: var(--pc-gutter);
  }
}

/* content（下層ページコンテンツ）
-----------------------*/
.content {
  padding-block: 63.4666666667vw 17.3333333333vw;
  line-height: 2.5;
}
.content.--contact {
  background: var(--baseColor2Pale);
}
.content.--confirm {
  background: var(--baseColor1Pale);
}
.content.--thanks {
  background: rgba(251, 214, 13, 0.05);
}
.content.--chokosute {
  background: var(--baseColor2Pale);
}
.content__title {
  margin-bottom: 8vw;
  color: var(--baseColor2);
  text-align: center;
  font-size: 6.4vw;
  letter-spacing: 0.2em;
}
.content__title > span {
  display: inline-block;
}
.--thanks .content__title {
  color: inherit;
}
.content__lead {
  margin-bottom: 12.8vw;
}
.content .attention {
  margin-top: 2em;
  color: var(--accentColor);
  font-family: sans-serif;
  font-weight: 500;
}
@media (min-width: 768px) {
  .content {
    padding-block: min(15.5vw, 217px) min(10vw, 140px);
  }
  .content .container {
    padding-left: min(26.7857142857vw, 375px);
  }
  .content__title {
    margin-bottom: min(10vw, 140px);
    text-align: left;
    font-size: min(2.7142857143vw, 38px);
  }
  .content__lead {
    margin-bottom: min(6.8571428571vw, 96px);
  }
}

/*----------------------------------------
	Header
----------------------------------------*/
.header .container {
  position: relative;
}

/*イラスト（下層のみ）*/
.header__illust {
  position: absolute;
  right: 8vw;
  top: 5.3333333333vw;
  width: 40.4vw;
}
@media (min-width: 768px) {
  .header__illust {
    left: 0;
    top: min(32.8571428571vw, 460px);
    width: min(21.6428571429vw, 303px);
  }
}

/*ロゴ*/
.header__logo {
  position: absolute;
  left: 5.3333333333vw;
  top: 5.3333333333vw;
  z-index: 10;
  width: 30.9333333333vw;
}
@media (min-width: 768px) {
  .header__logo {
    left: min(2.8571428571vw, 40px);
    top: min(2.8571428571vw, 40px);
    width: min(16.5714285714vw, 232px);
  }
}

/*ハンバーガーボタン*/
.header__button {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
  display: grid;
  place-content: center;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
}
.header__button .line {
  position: relative;
  width: 10.6666666667vw;
  height: 2px;
  background: #707070;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__button .line::before, .header__button .line::after {
  position: absolute;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #707070;
  -webkit-transition: rotate 0.3s;
  transition: rotate 0.3s;
}
.header__button .line::before {
  top: -2.6666666667vw;
}
.header__button .line::after {
  bottom: -2.6666666667vw;
}
.header__button[aria-expanded=true] .line {
  background: transparent;
}
.header__button[aria-expanded=true] .line::before {
  top: 0;
  rotate: 30deg;
}
.header__button[aria-expanded=true] .line::after {
  bottom: 0;
  rotate: -30deg;
}
@media (min-width: 768px) {
  .header__button {
    width: min(7.1428571429vw, 100px);
    height: min(7.1428571429vw, 100px);
  }
  .header__button .line {
    width: min(5.7142857143vw, 80px);
    height: 2px;
  }
  .header__button .line::before {
    top: max(-1.4285714286vw, -20px);
  }
  .header__button .line::after {
    bottom: max(-1.4285714286vw, -20px);
  }
}

/*----------------------------------------
	Gnav
----------------------------------------*/
.gnav {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: var(--white);
}

.gnav__inner {
  padding: 18.6666666667vw 6.6666666667vw 6vw;
  background-color: var(--white);
}
@media (min-width: 768px) {
  .gnav__inner {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    padding: 32px;
  }
}

/*メニュー*/
.gnav__menu {
  display: grid;
  gap: 8.2666666667vw;
}
.gnav__menu a {
  display: block;
  font-size: 4.2666666667vw;
  color: inherit;
  text-decoration: none;
  line-height: 1;
}
@media (min-width: 768px) {
  .gnav__menu {
    gap: 62px;
  }
  .gnav__menu a {
    font-size: 32px;
  }
}

/*お問い合わせ*/
.gnav__btn {
  margin-top: 8.2666666667vw;
  width: 80%;
}
@media (min-width: 768px) {
  .gnav__btn {
    margin-top: min(8.2666666667vw, 62px);
    width: 100%;
    max-width: 428px;
  }
  .gnav__btn a {
    padding-left: 10%;
    font-size: min(1.8571428571vw, 26px);
  }
}

/*プライバシーポリシーリンク*/
.gnav__privacy {
  margin-block: 7.2vw;
  font-size: 2.9333333333vw;
}
.gnav__privacy a {
  color: #9EAAB2;
  text-decoration: none;
}
@media (min-width: 768px) {
  .gnav__privacy {
    margin-block: min(7.2vw, 54px);
    font-size: min(2.9333333333vw, 22px);
  }
}

/*会社概要*/
.gnav__company {
  font-size: 2.9333333333vw;
}
.gnav__company .name {
  margin-bottom: 0.5em;
  font-size: 4.2666666667vw;
}
@media (min-width: 768px) {
  .gnav__company {
    font-size: min(2.9333333333vw, 22px);
  }
  .gnav__company .name {
    font-size: min(4.2666666667vw, 32px);
  }
}

/*----------------------------------------
	Footer
----------------------------------------*/
.footer {
  padding-block: 10.6666666667vw 2.4vw;
}
.footer__mov {
  margin-bottom: 6.6666666667vw;
  aspect-ratio: 626/352;
  background: #ccc;
}
.footer__mov iframe {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .footer {
    padding-block: min(5.7142857143vw, 80px) min(1.2857142857vw, 18px);
  }
}

.footer__body {
  display: grid;
  gap: 5.3333333333vw;
}
@media (min-width: 768px) {
  .footer__body {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: min(2.1428571429vw, 30px) min(4.2857142857vw, 60px);
    max-width: 1094px;
    margin-inline: auto;
  }
}

.footer__company {
  font-size: 2.9333333333vw;
}
.footer__company .name {
  margin-bottom: 1em;
  font-size: 4.2666666667vw;
}
@media (min-width: 768px) {
  .footer__company {
    grid-column: 1/2;
    grid-row: 1/4;
    font-size: min(1.5714285714vw, 22px);
  }
  .footer__company .name {
    font-size: min(2.2857142857vw, 32px);
  }
}

.footer__btn {
  max-width: 78.1333333333vw;
}
@media (min-width: 768px) {
  .footer__btn {
    max-width: min(34.4285714286vw, 428px);
  }
  .footer__btn .btn-contact {
    font-size: min(1.8571428571vw, 26px);
  }
}

.footer__privacy {
  border-top: 1px solid var(--blueGray1);
}
.footer__privacy a {
  font-size: 2.9333333333vw;
  color: var(--blueGray1);
  text-decoration: none;
}
@media (min-width: 768px) {
  .footer__privacy {
    border-top: 0;
  }
  .footer__privacy a {
    font-size: min(1.5714285714vw, 22px);
  }
}

.footer__copyright {
  margin-top: 5.3333333333vw;
  font-size: max(2.1333333333vw, 10px);
}
@media (min-width: 768px) {
  .footer__copyright {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid var(--blueGray1);
    font-size: min(1.1428571429vw, 16px);
    text-align: center;
  }
}

.footer__menu {
  display: grid;
  gap: 1em;
  padding-top: 5.3333333333vw;
  border-top: 1px solid var(--blueGray1);
}
.footer__menu a {
  color: inherit;
  text-decoration: none;
  font-size: 4.8vw;
  letter-spacing: 0.2em;
}
@media (min-width: 768px) {
  .footer__menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    gap: 0;
    padding-top: 0;
    border-top: 0;
  }
  .footer__menu a {
    font-size: min(1.4285714286vw, 20px);
  }
}

@media (min-width: 768px) {
  .footer--top .container {
    display: grid;
    grid-template-columns: min(54.2857142857vw, 760px) 1fr;
    gap: 0 min(8.5714285714vw, 120px);
  }
  .footer--top .footer__body {
    display: block;
  }
  .footer--top .footer__btn {
    margin-top: min(2.1428571429vw, 30px);
  }
  .footer--top .footer__privacy {
    margin-top: min(2.8571428571vw, 40px);
    border-top: 1px solid var(--blueGray1);
  }
  .footer--top .footer__copyright {
    border-top: 0;
    padding-top: 0;
    grid-column: 1/3;
  }
}

/*----------------------------------------
	Button
----------------------------------------*/
/* お問い合わせ用
--------------------*/
.btn-contact {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 16vw;
  padding-left: 14%;
  background: var(--blue1);
  border-radius: 100vw;
  color: var(--white);
  font-size: 4.2666666667vw;
  letter-spacing: 0.15em;
  text-decoration: none;
}
.btn-contact::after {
  position: absolute;
  right: 10%;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 0.625em;
  height: 0.625em;
  border-top: 2px solid;
  border-right: 2px solid;
  rotate: 45deg;
}
@media (min-width: 768px) {
  .btn-contact {
    height: min(8.5714285714vw, 120px);
    font-size: min(2.2857142857vw, 32px);
  }
}

/* ボタン
--------------------*/
.btn {
  position: relative;
  display: block;
  width: calc(100% - 2.6666666667vw);
  height: 18.6666666667vw;
  background: var(--white);
  border: 1px solid var(--btnColor);
  border-radius: 12px;
  color: var(--btnTextColor);
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:hover, .btn:focus {
  opacity: 0.7;
}
.btn__inner {
  position: absolute;
  left: 2.6666666667vw;
  top: -2.6666666667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid var(--btnColor);
  background: var(--btnColor);
  font-size: 4.2666666667vw;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .btn {
    width: calc(100% - min(1.4285714286vw, 20px));
    height: min(10vw, 140px);
    max-width: min(45vw, 630px);
    margin-inline: auto;
  }
  .btn__inner {
    left: min(1.4285714286vw, 20px);
    top: max(-1.4285714286vw, -20px);
    font-size: min(2.2857142857vw, 32px);
  }
}

.btn-default {
  --btnColor: var(--blueGray2);
  --btnTextColor: var(--white);
}
.btn-default .btn__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 8vw 10.6666666667vw;
  letter-spacing: 0.2em;
}
.btn-default .btn__inner::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid;
  border-right: 2px solid;
  rotate: 45deg;
}
.btn-default.--confirm {
  --btnColor: var(--baseColor2);
}
.btn-default.--submit {
  --btnColor: var(--accentColor);
}
@media (min-width: 768px) {
  .btn-default .btn__inner {
    padding-inline: min(4.2857142857vw, 60px) min(5.7142857143vw, 80px);
  }
}

.btn-manga .btn__inner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  letter-spacing: 0.05em;
}
.btn-manga .btn__inner::after {
  position: absolute;
  right: 2.6666666667vw;
  content: "";
  display: block;
  width: 12vw;
  height: 13.3333333333vw;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .btn-manga .btn__inner::after {
    right: min(1.4285714286vw, 20px);
    width: min(6.4285714286vw, 90px);
    height: min(7.1428571429vw, 100px);
  }
}
.btn-manga.--chokosute {
  --btnColor: var(--green1);
  --btnTextColor: var(--textColor);
}
.btn-manga.--chokosute .btn__inner::after {
  background-image: url(../img/ill_chokosute.png);
}
.btn-manga.--chokorisu {
  --btnColor: var(--pink1);
  --btnTextColor: var(--textColor);
}
.btn-manga.--chokorisu .btn__inner::after {
  background-image: url(../img/ill_chokorisu.png);
}

/*----------------------------------------
	Form
----------------------------------------*/
.form {
  margin-top: 6.6666666667vw;
}
.form__note {
  border-top: 1px solid var(--borderColor);
  padding-block: 6.6666666667vw;
}
.form__btn {
  margin-top: 11.7333333333vw;
}
.form--input {
  --borderColor: var(--green1);
}
.form--confirm {
  --borderColor: var(--baseColor1);
}
.form__note.--error {
  position: relative;
  border: 0;
  padding: 0;
  margin-block: 80px 40px;
  background: var(--accentColor);
  color: var(--white);
  text-align: center;
}
.form__note.--error::before {
  position: absolute;
  top: -40px;
  content: "";
  display: block;
  width: 100%;
  height: 0;
  border-top: 1px solid rgba(235, 159, 130, 0.5);
}
@media (min-width: 768px) {
  .form {
    margin-top: min(2.8571428571vw, 40px);
  }
  .form__note {
    padding-bottom: min(2.8571428571vw, 40px);
  }
  .form__btn {
    margin-top: min(8.5714285714vw, 120px);
  }
}

.form__body {
  display: grid;
  gap: 4vw;
}
.form__body input[type=text],
.form__body input[type=email],
.form__body input[type=tel],
.form__body input[type=search],
.form__body input[type=url],
.form__body textarea {
  width: 100%;
  padding: 0.5em;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  font-size: max(4.2666666667vw, 16px);
  line-height: 1.4;
}
.form__body input[type=text]::-webkit-input-placeholder, .form__body input[type=email]::-webkit-input-placeholder, .form__body input[type=tel]::-webkit-input-placeholder, .form__body input[type=search]::-webkit-input-placeholder, .form__body input[type=url]::-webkit-input-placeholder, .form__body textarea::-webkit-input-placeholder {
  color: #D9D9D9;
}
.form__body input[type=text]::-moz-placeholder, .form__body input[type=email]::-moz-placeholder, .form__body input[type=tel]::-moz-placeholder, .form__body input[type=search]::-moz-placeholder, .form__body input[type=url]::-moz-placeholder, .form__body textarea::-moz-placeholder {
  color: #D9D9D9;
}
.form__body input[type=text]:-ms-input-placeholder, .form__body input[type=email]:-ms-input-placeholder, .form__body input[type=tel]:-ms-input-placeholder, .form__body input[type=search]:-ms-input-placeholder, .form__body input[type=url]:-ms-input-placeholder, .form__body textarea:-ms-input-placeholder {
  color: #D9D9D9;
}
.form__body input[type=text]::-ms-input-placeholder, .form__body input[type=email]::-ms-input-placeholder, .form__body input[type=tel]::-ms-input-placeholder, .form__body input[type=search]::-ms-input-placeholder, .form__body input[type=url]::-ms-input-placeholder, .form__body textarea::-ms-input-placeholder {
  color: #D9D9D9;
}
.form__body input[type=text]::placeholder,
.form__body input[type=email]::placeholder,
.form__body input[type=tel]::placeholder,
.form__body input[type=search]::placeholder,
.form__body input[type=url]::placeholder,
.form__body textarea::placeholder {
  color: #D9D9D9;
}
.form__body input[type=text].is-error,
.form__body input[type=email].is-error,
.form__body input[type=tel].is-error,
.form__body input[type=search].is-error,
.form__body input[type=url].is-error,
.form__body textarea.is-error {
  border: 1px solid var(--accentColor);
}
.form__body a {
  color: inherit;
}
@media (min-width: 768px) {
  .form__body {
    gap: 30px;
  }
  .form__body input[type=text],
  .form__body input[type=email],
  .form__body input[type=tel],
  .form__body input[type=search],
  .form__body input[type=url],
  .form__body textarea {
    font-size: 20px;
  }
}

.form__label {
  display: block;
  font-size: 4.2666666667vw;
}
@media (min-width: 768px) {
  .form__label {
    font-size: min(1.7142857143vw, 24px);
  }
}

.form__require {
  display: inline-block;
  width: 8vw;
  margin-right: 0.5em;
  background: var(--accentColor);
  color: var(--white);
  font-size: 2.6666666667vw;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.3em;
}
@media (min-width: 768px) {
  .form__require {
    width: min(4.2857142857vw, 60px);
    font-size: min(1.4285714286vw, 20px);
  }
}

.checkbox {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: auto 1fr; /* auto はアイコン、1fr はラベル文字列を想定 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 8px;
  font-size: 4.2666666667vw;
  font-weight: normal;
  line-height: 1.5;
  color: var(--textColor);
  cursor: pointer;
}
@media (min-width: 768px) {
  .checkbox {
    font-size: min(1.7142857143vw, 24px);
  }
}

/* チェックボックスのアイコン */
.checkbox__icon {
  position: relative;
  width: 32px;
  height: 32px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #FFFFFF;
  border: solid 1px #808080;
  -webkit-box-shadow: 0 0 0 0 transparent;
          box-shadow: 0 0 0 0 transparent;
  /* チェックマーク */
  /* チェックマーク：選択済みの見た目 */
}
.checkbox__icon::before {
  position: absolute;
  left: 5px;
  top: 5px;
  display: block;
  width: 20px;
  height: 20px;
  content: "";
  opacity: 0;
  background-color: var(--textColor);
  border-radius: 50%;
}
.checkbox__icon:checked::before {
  opacity: 1;
}

.form__confirmtext {
  margin-top: 0.5em;
  font-family: sans-serif;
}

/*エラーメッセージ*/
.error-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  margin-top: 10px;
  color: var(--accentColor);
  font-family: sans-serif;
  line-height: 1.5;
}
.error-text::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: block;
  width: 5.3333333333vw;
  height: 5.3333333333vw;
  background: url(../img/icon_error.svg) 0 0/contain no-repeat;
}
@media (min-width: 768px) {
  .error-text::before {
    width: min(2.2857142857vw, 32px);
    height: min(2.2857142857vw, 32px);
  }
}

/*----------------------------------------
	Privacy
----------------------------------------*/
.privacy {
  margin-top: 5.3333333333vw;
  font-size: max(2.4vw, 10px);
  line-height: 2;
}
.privacy__title {
  margin-bottom: 1em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #D9D9D9;
  font-size: 3.3333333333vw;
}
@media (min-width: 768px) {
  .privacy {
    margin-top: min(2.8571428571vw, 40px);
    font-size: min(1.2857142857vw, 18px);
  }
  .privacy__title {
    font-size: min(1.7857142857vw, 25px);
  }
}

/*------------------------------------------------------------------------
// Top
------------------------------------------------------------------------*/
/*----------------------------------------
	MV
----------------------------------------*/
.mv {
  padding-block: 13.3333333333vw;
  background-color: var(--baseColor1Pale);
}
@media (min-width: 768px) {
  .mv {
    padding-block: min(7.1428571429vw, 100px) min(4.2857142857vw, 60px);
  }
}

/*動画*/
.mv-video {
  aspect-ratio: 1/1;
}
.mv-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .mv-video {
    aspect-ratio: initial;
  }
}

/*テキストエリア*/
.mv-body {
  position: relative;
  display: flow-root;
  margin-top: 4vw;
}
@media (min-width: 768px) {
  .mv-body {
    margin-top: min(4.6428571429vw, 65px);
    margin-left: min(10.7142857143vw, 150px);
    padding-right: min(25.7142857143vw, 360px);
  }
}

/*イラスト*/
.mv-illust {
  float: right;
  margin-top: -10.6666666667vw;
  margin-right: -5.3333333333vw;
  width: 40.4vw;
}
.mv-illust img {
  shape-margin: 10px;
  shape-outside: url(../img/ill_emeco.png);
}
@media (min-width: 768px) {
  .mv-illust {
    position: absolute;
    right: min(3.9285714286vw, 55px);
    margin-top: min(-14.2857142857vw, -200px);
    margin-right: 0;
    width: min(21.6428571429vw, 303px);
  }
}

/*キャッチ*/
.mv-catch {
  color: var(--baseColor1);
  font-size: 5.6vw;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .mv-catch {
    font-size: min(3vw, 42px);
  }
}

/*テキスト*/
.mv-text {
  margin-top: 1em;
}
@media (min-width: 768px) {
  .mv-text {
    font-size: min(1.7142857143vw, 24px);
  }
}

/*Scroll Down*/
/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  left: 0;
  bottom: 100px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: var(--baseColor1);
  font-size: 14px;
}
@media (min-width: 768px) {
  .scroll {
    left: min(5.7142857143vw, 80px);
    bottom: 140px;
  }
}

/* 線のアニメーション部分 */
.scroll::before {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  background-color: var(--baseColor1);
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@media (min-width: 768px) {
  .scroll::before {
    bottom: -155px;
    height: 140px;
  }
}

/* 線のアニメーション */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
/*----------------------------------------
	トップ：EmEcoの目指す世界
----------------------------------------*/
.philosophy-section {
  padding-block: 12.8vw 10vw;
  background: rgba(247, 239, 233, 0.35);
}
.philosophy-section__title {
  margin-bottom: 9.3333333333vw;
  color: var(--baseColor1);
  text-align: center;
  font-size: 5.6vw;
  letter-spacing: 0.2em;
}
@media (min-width: 768px) {
  .philosophy-section {
    padding-block: min(8.5714285714vw, 120px) min(10vw, 140px);
  }
  .philosophy-section__title {
    margin-bottom: min(5vw, 70px);
    font-size: min(2.7142857143vw, 38px);
  }
}

/*目指す世界*/
.philosophy-list {
  display: grid;
  gap: 5.3333333333vw;
}
@media (min-width: 768px) {
  .philosophy-list {
    max-width: var(--width);
    margin-inline: auto;
    gap: min(3.5714285714vw, 50px);
  }
}

.philosophy {
  padding: 6.6666666667vw 5.3333333333vw;
  background: var(--white);
  border-radius: 8px;
}
.philosophy__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.1333333333vw;
  margin-bottom: 5.3333333333vw;
  padding-right: 1.0666666667vw;
  color: var(--baseColor1);
  font-size: 4.2666666667vw;
  line-height: 1.52;
}
.philosophy__title .num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  place-content: center;
  width: 6.6666666667vw;
  height: 6.6666666667vw;
  background: var(--baseColor1);
  color: var(--white);
  font-size: 4.4vw;
  line-height: 1;
  border-radius: 50%;
}
.philosophy__body {
  padding-left: 6.6666666667vw;
}
.philosophy__detail {
  display: grid;
  gap: 5.3333333333vw;
}
.philosophy__detail dt {
  margin-bottom: 4vw;
  text-align: center;
  font-size: 4vw;
}
.philosophy__detail dt.label01 {
  background: rgba(227, 78, 20, 0.2);
}
.philosophy__detail dt.label02 {
  background: rgba(187, 219, 205, 0.2);
}
.philosophy__detail dt.label03 {
  background: rgba(158, 170, 178, 0.2);
}
.philosophy__detail dt.label04 {
  background: rgba(251, 214, 13, 0.3);
}
.philosophy__detail ol li {
  margin-left: 1.5em;
  text-indent: -1.5em;
}
@media (min-width: 768px) {
  .philosophy {
    padding: min(2.2857142857vw, 32px) min(2.5714285714vw, 36px);
  }
  .philosophy__title {
    gap: min(1.1428571429vw, 16px);
    margin-bottom: min(1.9285714286vw, 27px);
    padding-right: 0;
    font-size: min(1.7142857143vw, 24px);
  }
  .philosophy__title .num {
    width: min(2.2857142857vw, 32px);
    height: min(2.2857142857vw, 32px);
    font-size: inherit;
  }
  .philosophy__body {
    padding-left: min(3.7142857143vw, 52px);
    font-size: min(1.4285714286vw, 20px);
  }
  .philosophy__detail {
    gap: min(1.8571428571vw, 26px);
  }
  .philosophy__detail > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: min(1.1428571429vw, 16px);
  }
  .philosophy__detail dt {
    white-space: nowrap;
    font-size: inherit;
    line-height: 1.4;
  }
  .philosophy__detail dd {
    margin-top: var(--leading-trim);
  }
}

/*----------------------------------------
	トップ：新着情報
----------------------------------------*/
.news-section {
  padding-block: 10.6666666667vw 8vw;
}
.news-section__title {
  margin-bottom: 9.3333333333vw;
  text-align: center;
  font-size: 5.3333333333vw;
  letter-spacing: 0.2em;
}
@media (min-width: 768px) {
  .news-section {
    padding-block: min(10vw, 140px) min(6.0714285714vw, 85px);
  }
  .news-section__title {
    margin-bottom: min(5vw, 70px);
    font-size: min(2.5714285714vw, 36px);
  }
}

.news {
  max-width: 72.8vw;
  margin-inline: auto;
}
.news > li {
  border-bottom: 1px solid #C8C8C8;
}
.news a {
  display: block;
  padding-block: 1em;
  color: inherit;
  text-decoration: none;
}
.news__date {
  display: block;
  color: #A0A0A0;
  font-size: 2.6666666667vw;
}
@media (min-width: 768px) {
  .news {
    max-width: min(62.2857142857vw, 872px);
  }
  .news__date {
    font-size: min(0.8571428571vw, 12px);
  }
  .news__text {
    font-size: min(1.2857142857vw, 18px);
  }
}

/*----------------------------------------
	オリジナルまんが＆ムービー
----------------------------------------*/
.manga-section {
  padding-block: 8vw 16vw;
}
.manga-section__title {
  margin-bottom: 9.3333333333vw;
  text-align: center;
  font-size: 5.3333333333vw;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .manga-section {
    padding-block: min(6.0714285714vw, 85px) min(12.1428571429vw, 170px);
  }
  .manga-section__title {
    margin-bottom: min(5vw, 70px);
    font-size: min(2.5714285714vw, 36px);
  }
}

.manga-list {
  display: grid;
  gap: 10.6666666667vw;
}
@media (min-width: 768px) {
  .manga-list {
    grid-template-columns: repeat(2, 1fr);
    gap: min(3.5714285714vw, 50px);
  }
}

/* まんが（下層）
--------------------*/
.manga + .manga {
  margin-top: 28vw;
}
.manga__title {
  margin-bottom: 9.7333333333vw;
  text-align: center;
  color: var(--baseColor2);
  font-size: 4.2666666667vw;
  letter-spacing: 0.2em;
}
.manga__body {
  max-width: 472px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .manga + .manga {
    margin-top: min(15vw, 210px);
  }
  .manga__title {
    margin-bottom: min(5.2142857143vw, 73px);
    font-size: min(2.2857142857vw, 32px);
  }
}

/*----------------------------------------
	代表あいさつ
----------------------------------------*/
.message-section {
  padding-block: 13.3333333333vw;
  background: var(--baseColor1Pale);
}
.message-section__title {
  margin-bottom: 9.3333333333vw;
  text-align: center;
  font-size: 5.3333333333vw;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .message-section {
    padding-block: min(7.1428571429vw, 100px);
  }
  .message-section__title {
    margin-bottom: min(5vw, 70px);
    font-size: min(2.5714285714vw, 36px);
  }
}

/*代表あいさつ*/
.message__text {
  padding-inline: 5.3333333333vw;
  font-size: 3.7333333333vw;
}
.message__ceo-profile {
  margin-top: 5.3333333333vw;
  padding-inline: 5.3333333333vw;
  font-size: max(2.6666666667vw, 10px);
}
.message__ceo {
  position: relative;
  margin-top: 2.6666666667vw;
}
.message__ceo-photo {
  translate: -10.6666666667vw 0;
  width: 52vw;
}
.message__ceo-name {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 57.0666666667vw;
}
@media (min-width: 768px) {
  .message {
    display: grid;
    grid-template-columns: min(28vw, 392px) 1fr;
    grid-template-rows: auto auto;
    gap: min(4.2857142857vw, 60px);
    max-width: 1220px;
    margin-inline: auto;
  }
  .message__text {
    grid-column: 2/3;
    grid-row: 1/2;
    padding-inline: 0;
    font-size: min(1.5714285714vw, 22px);
    line-height: 2.27;
  }
  .message__ceo-profile {
    grid-column: 2/3;
    grid-row: 2/3;
    margin-top: 0;
    padding-inline: 0;
    font-size: min(1.1428571429vw, 16px);
  }
  .message__ceo {
    grid-column: 1/2;
    grid-row: 1/3;
    width: 100%;
    margin-top: 0;
  }
  .message__ceo-photo {
    translate: 0;
    width: 100%;
  }
  .message__ceo-name {
    position: relative;
    width: 95%;
    margin-top: max(-2.8571428571vw, -40px);
    margin-inline: auto;
  }
}

/*------------------------------------------------------------------------
// Utilitiy
------------------------------------------------------------------------*/
/*----------------------------------------
	Utilities
----------------------------------------*/
/*margin*/
.u-mt0 {
  margin-top: 0 !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

/*padding*/
.u-pt0 {
  padding-top: 0 !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pl0 {
  padding-left: 0 !important;
}

.u-pr0 {
  padding-right: 0 !important;
}

/*width*/
.u-w10per {
  width: 10% !important;
}

.u-w20per {
  width: 20% !important;
}

.u-w30per {
  width: 30% !important;
}

.u-w40per {
  width: 40% !important;
}

.u-w50per {
  width: 50% !important;
}

.u-w60per {
  width: 60% !important;
}

.u-w70per {
  width: 70% !important;
}

.u-w80per {
  width: 80% !important;
}

.u-w90per {
  width: 90% !important;
}

.u-w100per {
  width: 100% !important;
}

/*responsive margin*/
.u-mt-xs {
  margin-top: 3.6231884058vw;
}

.u-mt-sm {
  margin-top: 7.2463768116vw;
}

.u-mt-md {
  margin-top: 10.8695652174vw;
}

.u-mt-lg {
  margin-top: 14.4927536232vw;
}

.u-mt-xl {
  margin-top: 19.3236714976vw;
}

@media (min-width: 768px) {
  .u-mt-xs {
    margin-top: 15px;
  }
  .u-mt-sm {
    margin-top: 30px;
  }
  .u-mt-md {
    margin-top: 45px;
  }
  .u-mt-lg {
    margin-top: 60px;
  }
  .u-mt-xl {
    margin-top: 80px;
  }
}
/*image*/
.u-img-full {
  max-width: none;
  width: 100%;
}

/*float*/
.u-fl {
  float: left;
}

.u-fr {
  float: right;
}

.u-clear {
  clear: both;
}

/*align-text*/
.u-ta__l {
  text-align: left !important;
}

.u-ta__c {
  text-align: center !important;
}

.u-ta__r {
  text-align: right !important;
}

/*align-block*/
.u-block__l {
  float: none;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.u-block__c {
  float: none;
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-block__r {
  float: none;
  margin-left: auto !important;
  margin-right: 0 !important;
}

/*display*/
.u-sp {
  display: block;
}

.u-pc {
  display: none;
}

@media (min-width: 768px) {
  .u-sp {
    display: none;
  }
  .u-pc {
    display: block;
  }
}
.u-hidden {
  visibility: hidden;
}

/* for screen reader
ーーーーーーーーーーーーーーーーーーーーーーーー*/
.u-vhidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}

/* for keybord
ーーーーーーーーーーーーーーーーーーーーーーーー*/
.skipLink {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.skipLink:active, .skipLink:focus {
  position: static;
  opacity: 1;
  overflow: visible;
  height: auto;
  font-size: inherit;
}

/*----------------------------------------
	Animation
----------------------------------------*/
/*FadeInUp
------------------------------*/
.js-effect {
  opacity: 0;
}
.js-effect.aniOn {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.js-effect.a-fadeInLtoR.aniOn {
  -webkit-animation-name: fadeInLtoR;
          animation-name: fadeInLtoR;
}
.js-effect.a-fadeInRtoL.aniOn {
  -webkit-animation-name: fadeInRtoL;
          animation-name: fadeInRtoL;
}
.js-effect.a-showLtoR.aniOn {
  -webkit-animation-name: showLtoR;
          animation-name: showLtoR;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInRtoL {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInRtoL {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLtoR {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInLtoR {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes showLtoR {
  0% {
    width: 0;
  }
  100% {
    width: 300px;
  }
}
@keyframes showLtoR {
  0% {
    width: 0;
  }
  100% {
    width: 300px;
  }
}
/*------------------------------------------------------------------------
// Print Style
------------------------------------------------------------------------*/
@media print {
  .js-effect {
    opacity: 1 !important;
  }
}/*# sourceMappingURL=styles.css.map */