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

section,
header,
footer,
nav,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
pre,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea {
  font-size: 100%;
  vertical-align: middle;
}

body,
div,
p,
address,
dl,
dt,
dd,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

img {
  display: inline-block;
  border: none;
  max-width: 100%;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
  word-break: break-all;
}

input {
  line-height: 100%;
}

ol,
ul {
  list-style-type: none;
}

label {
  cursor: pointer;
}

address {
  font-style: normal;
}

article,
aside,
header,
hgroup,
footer,
nav,
section,
dialog,
figure {
  display: block;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  max-width: 100%;
}

canvas,
img,
svg,
video {
  height: auto;
}

audio {
  width: 100%;
}

svg {
  overflow: hidden;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

:root {
  --font-ja: "Noto Sans JP", sans-serif;
  --font-min: "Zen Old Mincho", serif;
  --font-en: "Oswald", sans-serif;
  --font-normal: 400;
  --font-medium: 500;
  --font-bold: 700;
  --color-brand: #df6982;
  --color-yellow: #e2943c;
  --color-orange: #e37752;
  --color-pink: #f29da6;
  --color-base: #333;
  --color-white: #fff;
  --color-black: #222;
  --color-red: #be1e31;
  --color-bg: #edede8;
  --color-brand-gradation: linear-gradient(rgb(109, 92, 54), rgb(136, 115, 67));
  --color-orange-gradation: linear-gradient(45deg, var(--color-orange), rgb(250, 169, 69));
  --ease: 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  --opacity: 0.75;
  --scale: 1.03;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
  --bdrs: 0.8rem;
}

:root {
  --container-margin: 1.875rem;
}

@media screen and (min-width: 768px) {
  :root {
    --container-margin: 5vw;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 62.5%;
  line-break: normal;
  overflow-wrap: break-word;
  text-underline-offset: 0.125em;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-feature-settings: "palt";
  color: var(--color-base);
  letter-spacing: 0.1rem;
  line-height: 1.8;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

@media screen and (min-width: 768px) and (max-width: 1470px) {
  html {
    font-size: 0.655vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.325vw;
  }
}
section figure,
header figure,
footer figure,
div figure {
  margin: 0;
}

.box,
.container {
  position: relative;
  margin-inline: auto;
  width: calc(100% - var(--container-margin) * 2);
  max-width: 120rem;
}

.container-w {
  position: relative;
  margin-inline: auto;
  width: calc(100% - var(--container-margin) * 2);
  max-width: 144rem;
}

main {
  overflow-x: hidden;
}

a {
  color: var(--color-base);
  text-decoration: none;
  word-wrap: break-word;
}

@media screen and (min-width: 1025px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    opacity: 1;
  }
}
::-moz-selection {
  color: var(--color-white);
  background: var(--color-brand);
}

::selection {
  color: var(--color-white);
  background: var(--color-brand);
}

@media screen and (min-width: 1025px) {
  .lg-hide {
    display: none !important;
  }
  .lg-visible {
    display: inherit !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .md-hide {
    display: none !important;
  }
  .md-visible {
    display: inherit !important;
  }
}
@media screen and (max-width: 767px) {
  .sm-hide {
    display: none !important;
  }
  .sm-visible {
    display: inherit !important;
  }
}
.note {
  margin-top: 1rem;
  margin-left: 1em;
  text-indent: -1em;
  font-size: clamp(1.1rem, 1.065rem + 0.094vw, 1.2rem);
}

.mt0 {
  margin-top: 0 !important;
}

.modal {
  display: none;
  z-index: 100;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal__container {
  background-color: var(--color-white);
  max-width: 1200px;
  max-height: 90vh;
  border-radius: var(--bdrs);
  overflow-y: auto;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .modal__container {
    max-width: 90%;
    max-height: 86vh;
  }
}
.modal__inner {
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .modal__inner {
    padding: 5rem;
  }
}

.modal__btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 5rem;
  height: 5rem;
  margin: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: var(--color-brand);
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  outline: none;
  transition: all 0.3s;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .modal__btn {
    top: 5rem;
    right: 5rem;
  }
}

.modal__btn:hover {
  background-color: #fff;
  color: var(--color-brand);
}

.modal__btn::before,
.modal__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 27px;
  background: #fff;
}

.modal__btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__btn:hover::before,
.modal__btn:hover::after {
  background: var(--color-brand);
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
  z-index: 100;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.ta-l {
  text-align: left;
}

.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.ta-j {
  text-align: justify;
}

@media (max-width: 1024px) {
  .md-ta-l {
    text-align: left;
  }
  .md-ta-c {
    text-align: center;
  }
  .md-ta-r {
    text-align: right;
  }
  .md-ta-j {
    text-align: justify;
  }
}
@media (max-width: 767px) {
  .sm-ta-l {
    text-align: left;
  }
  .sm-ta-c {
    text-align: center;
  }
  .sm-ta-r {
    text-align: right;
  }
  .sm-ta-j {
    text-align: justify;
  }
}
.js-fade {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
}

.js-fade.is-inview {
  opacity: 1;
  transition-delay: 0.15s;
}

.js-fadeup {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s, transform 0.8s;
}

.js-fadeup.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.js-fadeleft {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s, transform 0.8s;
}

.js-fadeleft.is-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.15s;
}

.js-faderight {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s, transform 0.8s;
}

.js-faderight.is-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.15s;
}

.text-span,
.text-span2 {
  overflow: hidden;
  opacity: 0;
}

.text-span.show,
.text-span2.show {
  opacity: 1;
}

.text-span2 span {
  filter: blur(10px);
  line-height: 1;
  opacity: 0;
  transform: translateX(40px) skewX(-10deg) scale(1.05);
  transition: all 0.8s ease 0.8s;
}

.text-span2.show span {
  filter: blur(0);
  opacity: 1;
  transform: translateX(0) skewX(0) scale(1);
}

.text-span span {
  display: inline-block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform 1.25s cubic-bezier(0.4, 0.16, 0, 0.95) 0s;
}

.text-span.show span {
  transform: translate(0, 0);
}

.text-span.show span:nth-child(1) {
  transition-delay: 0.01s;
}

.text-span.show span:nth-child(2) {
  transition-delay: 0.07s;
}

.text-span.show span:nth-child(3) {
  transition-delay: 0.14s;
}

.text-span.show span:nth-child(4) {
  transition-delay: 0.21s;
}

.text-span.show span:nth-child(5) {
  transition-delay: 0.28s;
}

.text-span.show span:nth-child(6) {
  transition-delay: 0.35s;
}

.text-span.show span:nth-child(7) {
  transition-delay: 0.42s;
}

.text-span.show span:nth-child(8) {
  transition-delay: 0.49s;
}

.text-span.show span:nth-child(9) {
  transition-delay: 0.56s;
}

.text-span.show span:nth-child(10) {
  transition-delay: 0.63s;
}

.text-span.show span:nth-child(11) {
  transition-delay: 0.7s;
}

.text-span.show span:nth-child(12) {
  transition-delay: 0.77s;
}

.text-span.show span:nth-child(13) {
  transition-delay: 0.84s;
}

.text-span.show span:nth-child(14) {
  transition-delay: 0.91s;
}

.text-span.show span:nth-child(15) {
  transition-delay: 0.98s;
}

.text-span.show span:nth-child(16) {
  transition-delay: 1.05s;
}

.text-span.show span:nth-child(17) {
  transition-delay: 1.12s;
}

.text-span.show span:nth-child(18) {
  transition-delay: 1.19s;
}

.text-span.show span:nth-child(19) {
  transition-delay: 1.26s;
}

.text-span.show span:nth-child(20) {
  transition-delay: 1.33s;
}

.text-span2.show span:nth-child(1) {
  transition-delay: 0.01s;
}

.text-span2.show span:nth-child(2) {
  transition-delay: 0.07s;
}

.text-span2.show span:nth-child(3) {
  transition-delay: 0.14s;
}

.text-span2.show span:nth-child(4) {
  transition-delay: 0.21s;
}

.text-span2.show span:nth-child(5) {
  transition-delay: 0.28s;
}

.text-span2.show span:nth-child(6) {
  transition-delay: 0.35s;
}

.text-span2.show span:nth-child(7) {
  transition-delay: 0.42s;
}

.text-span2.show span:nth-child(8) {
  transition-delay: 0.49s;
}

.text-span2.show span:nth-child(9) {
  transition-delay: 0.56s;
}

.text-span2.show span:nth-child(10) {
  transition-delay: 0.63s;
}

.text-span2.show span:nth-child(11) {
  transition-delay: 0.7s;
}

.text-span2.show span:nth-child(12) {
  transition-delay: 0.77s;
}

.text-span2.show span:nth-child(13) {
  transition-delay: 0.84s;
}

.text-span2.show span:nth-child(14) {
  transition-delay: 0.91s;
}

.text-span2.show span:nth-child(15) {
  transition-delay: 0.98s;
}

.text-span2.show span:nth-child(16) {
  transition-delay: 1.05s;
}

.text-span2.show span:nth-child(17) {
  transition-delay: 1.12s;
}

.text-span2.show span:nth-child(18) {
  transition-delay: 1.19s;
}

.text-span2.show span:nth-child(19) {
  transition-delay: 1.26s;
}

.text-span2.show span:nth-child(20) {
  transition-delay: 1.33s;
}

.text-span2.show span:nth-child(21) {
  transition-delay: 1.4s;
}

.text-span2.show span:nth-child(22) {
  transition-delay: 1.47s;
}

.text-span2.show span:nth-child(23) {
  transition-delay: 1.54s;
}

.text-span2.show span:nth-child(24) {
  transition-delay: 1.61s;
}

.text-span2.show span:nth-child(25) {
  transition-delay: 1.67s;
}

.text-span2.show span:nth-child(26) {
  transition-delay: 1.74s;
}

.text-span2.show span:nth-child(27) {
  transition-delay: 1.81s;
}

.text-span2.show span:nth-child(28) {
  transition-delay: 1.88s;
}

.text-span2.show span:nth-child(29) {
  transition-delay: 1.95s;
}

.text-span2.show span:nth-child(30) {
  transition-delay: 2.02s;
}

.text-span2.show span:nth-child(31) {
  transition-delay: 2.09s;
}

.text-span2.show span:nth-child(32) {
  transition-delay: 2.16s;
}

.text-span2.show span:nth-child(33) {
  transition-delay: 2.23s;
}

.text-span2.show span:nth-child(34) {
  transition-delay: 2.3s;
}

.text-span2.show span:nth-child(35) {
  transition-delay: 2.37s;
}

.text-span2.show span:nth-child(36) {
  transition-delay: 2.44s;
}

.text-span2.show span:nth-child(37) {
  transition-delay: 2.51s;
}

.text-span2.show span:nth-child(38) {
  transition-delay: 2.58s;
}

.text-span2.show span:nth-child(39) {
  transition-delay: 2.65s;
}

.text-span2.show span:nth-child(40) {
  transition-delay: 2.72s;
}

.text-span2.show span:nth-child(41) {
  transition-delay: 2.79s;
}

.text-span2.show span:nth-child(42) {
  transition-delay: 2.86s;
}

.text-span2.show span:nth-child(43) {
  transition-delay: 2.93s;
}

.text-span2.show span:nth-child(44) {
  transition-delay: 3s;
}

.text-span2.show span:nth-child(45) {
  transition-delay: 3.07s;
}

.text-span2.show span:nth-child(46) {
  transition-delay: 3.14s;
}

.text-span2.show span:nth-child(47) {
  transition-delay: 3.21s;
}

.text-span2.show span:nth-child(48) {
  transition-delay: 3.28s;
}

.text-span2.show span:nth-child(49) {
  transition-delay: 3.35s;
}

.text-span2.show span:nth-child(50) {
  transition-delay: 3.42s;
}

.js-inview .js-showed {
  animation: fadeIn01 1.9s ease-out forwards;
}

@keyframes fadeIn01 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header {
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  header .logo {
    width: 15.4rem;
  }
}

.header {
  position: relative;
  width: 100%;
  height: 6rem;
  background-color: var(--color-white);
  z-index: 100;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header {
    height: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    height: 9rem;
    margin-bottom: 0;
    transition: height 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: height;
  }
}
.header .inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header .inner {
    padding-left: max(2rem, 2vw);
  }
}
@media screen and (max-width: 767px) {
  .header .inner .logo {
    position: absolute;
    top: 1.75rem;
    left: 1.5rem;
    width: 20rem;
    height: 2.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header .inner .logo {
    position: absolute;
    top: 16px;
    left: 3rem;
    width: 240px;
    height: 30px;
  }
}
.header .inner .nav {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  padding: 6rem 2rem;
  background-color: var(--color-white);
  transition: visibility 0.3s, opacity 0.3s;
  visibility: hidden;
  opacity: 0;
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header .inner .nav {
    padding: 60px 10rem 12rem;
  }
}
.header .inner .nav.active {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 1025px) {
  .header .inner .nav {
    flex: 1 0 0;
    position: relative;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    visibility: visible;
    opacity: 1;
    align-items: center;
    margin-left: auto;
    padding: 0;
  }
}
.header .inner .nav .main-nav {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .header .inner .nav .main-nav {
    align-items: center;
    background-color: transparent;
    display: flex;
  }
}
.header .inner .nav .main-nav {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .header .inner .nav .main-nav {
    width: auto;
  }
}
.header .inner .nav .main-nav .nav-item {
  position: relative;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 1025px) {
  .header .inner .nav .main-nav .nav-item {
    border-bottom: none;
  }
}
@media screen and (min-width: 1025px) {
  .header .inner .nav .main-nav .nav-item {
    padding: 0 max(1rem, 2vw);
  }
}
.header .inner .nav .main-nav .nav-item a,
.header .inner .nav .main-nav .nav-item p {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-weight: var(--font-medium);
  font-size: 2rem;
  letter-spacing: 0.1rem;
}
.header .inner .nav .main-nav .nav-item a:hover,
.header .inner .nav .main-nav .nav-item p:hover {
  color: var(--color-brand);
  transition: var(--ease);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header .inner .nav .main-nav .nav-item a,
  .header .inner .nav .main-nav .nav-item p {
    padding-top: 8rem;
    padding-bottom: 8rem;
    font-size: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .header .inner .nav .main-nav .nav-item a,
  .header .inner .nav .main-nav .nav-item p {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1.8rem;
  }
}
.header .inner .nav .main-nav .nav-item p {
  cursor: pointer;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header .inner .nav .main-nav:nth-child(1) .nav-item p {
    padding-bottom: 3rem;
  }
}

.official {
  text-align: center;
}
.official a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: var(--color-brand);
  border: 1px solid var(--color-brand);
  border-radius: var(--bdrs);
  color: var(--color-white);
  transition: color 0.4s;
}
.official a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5rem 1rem 0.5rem 0.5rem;
  border-color: transparent transparent transparent var(--color-white);
  transition: color 0.4s;
}
.official a:hover {
  background-color: var(--color-white);
  color: var(--color-brand);
}
.official a:hover::before {
  border-color: transparent transparent transparent var(--color-brand);
}

footer {
  margin-top: 5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid #ddd;
  text-align: center;
}
footer small {
  font-size: 1.4rem;
}

#scroolltop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background-color: var(--color-brand);
  color: var(--color-white);
  z-index: 997;
  transition: all 0.3s;
  transform: scale(0);
}

#scroolltop:hover {
  opacity: 0.8;
  text-decoration: none;
}

#scroolltop.show {
  transform: scale(1);
  -webkit-transform: translateZ(1);
}

a#scroolltop {
  display: block;
}

#scroolltop:before,
#scroolltop:after {
  position: absolute;
  left: 50%;
  content: "";
  width: 0;
  height: 0;
}

#scroolltop:before {
  top: 50%;
}

#scroolltop:after {
  top: 50%;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  #scroolltop {
    width: 45px;
    height: 45px;
  }
  #scroolltop:before,
  #scroolltop:after {
    margin-left: -6px;
    border: 5px solid transparent;
  }
  #scroolltop:before {
    margin-top: -8px;
    border-bottom: 5px solid var(--color-brand);
  }
  #scroolltop:after {
    margin-top: -9px;
    border-bottom: 5px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  #scroolltop {
    width: 30px;
    height: 30px;
  }
  #scroolltop:before,
  #scroolltop:after {
    margin-left: -5px;
    border: 5px solid transparent;
  }
  #scroolltop:before {
    margin-top: -6px;
    border-bottom: 5px solid var(--color-brand);
  }
  #scroolltop:after {
    margin-top: -8px;
    border-bottom: 5px solid #fff;
  }
}
.slogan {
  width: calc(100% - 15rem);
  margin: 1rem auto 4rem;
}
@media screen and (min-width: 768px) {
  .slogan {
    margin: 5rem auto;
  }
}
.slogan img {
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .slogan {
    width: calc(100% - 55rem);
  }
}

.head {
  width: calc(100% - 5rem);
  margin-top: 2rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .head {
    width: calc(100% - 10rem);
  }
}
.head .inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .head .inner {
    flex-direction: column;
  }
}
.head .inner .challenge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.2;
  width: 10rem;
  height: 10rem;
  background-color: #df6981;
  font-family: var(--font-min);
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .head .inner .challenge {
    width: 15rem;
    height: 15rem;
  }
}
.head .inner .challenge span {
  font-size: clamp(2.2rem, 1.745rem + 1.212vw, 3.2rem);
}
.head .inner .challenge strong {
  font-style: normal;
  font-size: clamp(3.6rem, 2.964rem + 1.697vw, 5rem);
  font-weight: var(--font-medium);
}
.head .inner .challenge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #df6981;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .head .inner .title {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .head .inner .title {
    padding-left: 5rem;
  }
}
.head .inner .title .sub {
  display: flex;
  align-items: center;
}
.head .inner .title .sub em,
.head .inner .title .sub p {
  font-weight: var(--font-medium);
  font-size: clamp(1.6rem, 1.236rem + 0.97vw, 2.4rem);
  line-height: 1;
}
.head .inner .title .sub p {
  padding-left: 1rem;
}
.head .inner .title .sub em {
  padding: 0.25rem 2rem 0.5rem;
  border: 1px solid var(--color-brand);
  border-radius: 9999rem;
  font-style: normal;
  color: var(--color-brand);
}
.head .inner .title .main {
  display: flex;
  align-items: center;
  padding-top: 1rem;
  font-family: var(--font-min);
  font-weight: var(--font-medium);
  font-size: clamp(4rem, 1.273rem + 7.273vw, 10rem);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .head .inner .title .main {
    justify-content: center;
  }
}
.head .text {
  padding-top: 3rem;
  font-size: clamp(1.6rem, 1.389rem + 0.563vw, 2.2rem);
  font-weight: var(--font-medium);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .head .text {
    padding-top: 7rem;
  }
}

.nav {
  margin-top: 3rem;
  padding-bottom: 2rem;
  background: url(../img/bg.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .nav {
    position: relative;
  }
  .nav::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    background-color: var(--color-white);
  }
}
@media screen and (min-width: 768px) {
  .nav {
    margin-top: 7rem;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .nav .inner {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .nav .inner .kv {
    position: relative;
    z-index: 2;
  }
}
.nav .inner .kv img {
  width: 73.6rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .nav nav {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .nav nav {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    margin-left: auto;
  }
}
.nav nav ul li {
  opacity: 0;
}
.nav nav ul li a {
  position: relative;
  display: flex;
  background-color: var(--color-white);
  border-radius: 1rem;
  overflow: hidden;
  color: var(--color-brand);
}
@media screen and (min-width: 768px) {
  .nav nav ul li a {
    border-radius: 0 1rem 1rem 0;
  }
}
.nav nav ul li a span {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 100%;
  background-color: var(--color-brand);
  border-right: 1px solid var(--color-white);
}
.nav nav ul li a span em {
  display: block;
  font-family: var(--font-en);
  font-style: normal;
  font-size: clamp(1.4rem, 0.673rem + 1.939vw, 3rem);
  font-weight: var(--font-medium);
  color: var(--color-white);
}
.nav nav ul li a p {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 5rem;
  padding-left: 8rem;
  font-size: clamp(1.4rem, 1.036rem + 0.97vw, 2.2rem);
  font-weight: var(--font-medium);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .nav nav ul li a p {
    padding-left: 9rem;
  }
}
.nav nav ul li a i {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-brand);
  border-radius: 50%;
}
.nav nav ul li a i::before, .nav nav ul li a i::after {
  content: "";
  background: url(../img/arrow-down.svg) no-repeat 50% 50%/contain;
  width: 1rem;
  height: 1.4rem;
  transition: opacity 0.3s, transform 0.3s;
}
.nav nav ul li a i::before {
  opacity: 1;
  transform: translate3d(0.5rem, 0, 0);
}
.nav nav ul li a i::after {
  opacity: 0;
  transform: translate3d(-0.5rem, -1rem, 0);
}
.nav nav ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-brand);
  transition: 0.5s cubic-bezier(0.09, 0.43, 0.1, 0.79);
}
.nav nav ul li a:hover {
  color: var(--color-white);
}
.nav nav ul li a:hover::before {
  width: 100%;
}
.nav nav ul li a:hover i::before {
  opacity: 0;
  transform: translate3d(0.5rem, 1rem, 0);
}
.nav nav ul li a:hover i::after {
  opacity: 1;
  transform: translate3d(-0.5rem, 0, 0);
}
.nav nav ul li:nth-child(n+2) {
  margin-top: 2rem;
}

.fv {
  position: relative;
  display: flex;
  max-width: 144rem;
}
.fv .kv {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.fv .kv img {
  border-radius: 0 10px 10px 0;
}
.fv nav {
  position: relative;
  right: -10rem;
  display: flex;
  align-items: center;
  margin-top: 10rem;
  margin-bottom: 10rem;
  margin-left: auto;
}
.fv nav ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 2.5rem;
  background-color: #df6981;
  border-radius: var(--bdrs);
  color: #fff;
}
.fv nav ul li a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid #fff;
  transform: rotate(45deg);
}
.fv nav ul li a span em {
  display: block;
  font-family: var(--font-en);
  font-style: normal;
  font-size: clamp(1.4rem, 0.673rem + 1.939vw, 3rem);
  font-weight: var(--font-medium);
  transform: rotate(-45deg);
}
.fv nav ul li a p {
  padding-right: 5rem;
  padding-left: 2rem;
  font-size: clamp(1.4rem, 1.036rem + 0.97vw, 2.2rem);
  font-weight: var(--font-medium);
  line-height: 1.6;
}
.fv nav ul li a i {
  position: absolute;
  top: 42.5%;
  right: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid var(--color-white);
}
.fv nav ul li a i::before, .fv nav ul li a i::after {
  content: "";
  background: url(../img/arrow-down.svg) no-repeat 50% 50%/contain;
  width: 1rem;
  height: 1.4rem;
  transition: opacity 0.3s, transform 0.3s;
}
.fv nav ul li a i::before {
  opacity: 1;
  transform: translate3d(0.5rem, 0, 0);
}
.fv nav ul li a i::after {
  opacity: 0;
  transform: translate3d(-0.5rem, -1rem, 0);
}
.fv nav ul li a:hover i::before {
  opacity: 0;
  transform: translate3d(0.5rem, 1rem, 0);
}
.fv nav ul li a:hover i::after {
  opacity: 1;
  transform: translate3d(-0.5rem, 0, 0);
}
.fv nav ul li:nth-child(n+2) {
  margin-top: 2rem;
}

.sukusuku h4,
.kids h4,
.cafe h4,
.tieup h4,
.oecd h4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: clamp(1.8rem, 1.659rem + 0.376vw, 2.2rem);
  font-weight: var(--font-medium);
  line-height: 1.5;
}
.sukusuku h5,
.kids h5,
.cafe h5,
.tieup h5,
.oecd h5 {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  font-size: clamp(1.5rem, 1.394rem + 0.282vw, 1.8rem);
  font-weight: var(--font-medium);
  color: var(--color-brand);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .sukusuku .row,
  .kids .row,
  .cafe .row,
  .tieup .row,
  .oecd .row {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .sukusuku .row .col:nth-child(n+2),
  .kids .row .col:nth-child(n+2),
  .cafe .row .col:nth-child(n+2),
  .tieup .row .col:nth-child(n+2),
  .oecd .row .col:nth-child(n+2) {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .sukusuku .row .col,
  .kids .row .col,
  .cafe .row .col,
  .tieup .row .col,
  .oecd .row .col {
    width: 32%;
  }
}
.sukusuku .row .col.photo p,
.kids .row .col.photo p,
.cafe .row .col.photo p,
.tieup .row .col.photo p,
.oecd .row .col.photo p {
  font-size: clamp(1.2rem, 1.13rem + 0.188vw, 1.4rem);
  line-height: 1.5;
}

.kids .other {
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--color-brand);
  border-radius: var(--bdrs);
}
.kids .other h6 {
  font-weight: var(--font-medium);
  color: var(--color-brand);
}
.kids .other ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: 1rem;
}
.kids .other ul li {
  position: relative;
  padding-left: 0.2rem;
  padding-right: 2rem;
  font-size: clamp(1.1rem, 1.03rem + 0.188vw, 1.3rem);
}
.kids .other ul li::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: -1rem;
  bottom: auto;
  right: auto;
  margin: auto;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: var(--color-brand);
}

.oecd .modal__inner {
  background-color: #f4f2f0;
}
@media screen and (min-width: 768px) {
  .oecd .modal__inner {
    display: flex;
    justify-content: space-between;
  }
}
.oecd .modal__inner .photo {
  position: relative;
}
@media screen and (max-width: 767px) {
  .oecd .modal__inner .photo {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .oecd .modal__inner .photo {
    position: relative;
    width: 26%;
  }
}
.oecd .modal__inner .photo .mane {
  padding-top: 0.5rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .oecd .modal__inner .text {
    width: 70%;
  }
  .oecd .modal__inner .text img {
    width: 70%;
    height: auto;
  }
}
.oecd .modal__inner .voice {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.2;
  width: 8rem;
  height: 8rem;
}
.oecd .modal__inner .voice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(223, 105, 129, 0.8);
  transform: rotate(45deg);
}
.oecd .modal__inner .voice span {
  position: relative;
  font-size: 1.3rem;
  color: var(--color-white);
  text-align: center;
}
.oecd .lead {
  text-align: center;
}
.oecd .lead p {
  font-size: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  color: var(--color-brand);
}
.oecd .lead strong {
  font-size: clamp(2.2rem, 1.214rem + 2.629vw, 5rem);
  font-weight: var(--font-medium);
}
.oecd .chart {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f3f0ed;
}
@media screen and (min-width: 768px) {
  .oecd .chart {
    padding: 4rem;
  }
}
.oecd .row {
  margin-top: 4rem;
}
.oecd .row p {
  padding-top: 1rem;
}

.headline-en {
  display: flex;
  align-items: center;
  justify-content: center;
}
.headline-en em {
  position: relative;
  padding-right: 3rem;
  padding-left: 3rem;
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  font-weight: var(--font-medium);
  font-style: normal;
  color: var(--color-brand);
  line-height: 1;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 768px) {
  .headline-en em {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
.headline-en em::before, .headline-en em::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1.6rem;
  width: 1px;
  background-color: var(--color-brand);
  transform: translateY(-50%) rotate(25deg);
}
@media screen and (min-width: 768px) {
  .headline-en em::before, .headline-en em::after {
    height: 2rem;
  }
}
.headline-en em::before {
  left: 1rem;
}
.headline-en em::after {
  right: 1rem;
}

.headline {
  padding-top: 1rem;
  padding-bottom: 3rem;
  text-align: center;
  font-size: clamp(2.3rem, 1.349rem + 2.535vw, 5rem);
  font-weight: var(--font-medium);
  line-height: 1.5;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 768px) {
  .headline {
    padding-bottom: 6rem;
  }
}

.heading {
  padding: 2rem 1rem;
  background-color: var(--color-brand);
  font-size: clamp(1.8rem, 1.307rem + 1.315vw, 3.2rem);
  font-weight: var(--font-medium);
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
}

.sec {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}
@media screen and (min-width: 768px) {
  .sec {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.sec1 {
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .sec1 .row {
    display: grid;
    gap: 6rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.sec1 .row .col .inner {
  padding: 2rem;
}
.sec1 .row .col h3,
.sec1 .row .col h4 {
  padding: 1.5rem 0.5rem;
  font-weight: var(--font-medium);
  color: var(--color-white);
  text-align: center;
}
.sec1 .row .col h3 {
  padding: 1.5rem 0.5rem;
  font-size: clamp(2.2rem, 1.848rem + 0.939vw, 3.2rem);
  line-height: 1.2;
}
@media screen and (min-width: 1025px) {
  .sec1 .row .col h3 {
    padding: 2rem 1rem;
  }
}
.sec1 .row .col h3 span {
  font-size: clamp(1.3rem, 1.194rem + 0.282vw, 1.6rem);
}
.sec1 .row .col h4 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-width: 1px;
  border-bottom-width: 1px;
  font-size: clamp(1.8rem, 1.73rem + 0.188vw, 2rem);
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .sec1 .row .col:nth-child(n+2) {
    margin-top: 4rem;
  }
}
.sec1 .row .col ul {
  margin-left: 1rem;
}
.sec1 .row .col ul li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
  list-style: none;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .sec1 .row .col ul li {
    padding-left: 1rem;
  }
}
.sec1 .row .col ul li::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: -1rem;
  bottom: auto;
  right: auto;
  margin: auto;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .sec1 .row .col ul li::before {
    width: 1rem;
    height: 1rem;
  }
}
.sec1 .row .col ul li:last-child {
  margin-bottom: 0;
}
.sec1 .row .col:nth-child(1) .inner {
  background-color: #fcf4eb;
}
.sec1 .row .col:nth-child(1) h3 {
  background-color: var(--color-yellow);
}
.sec1 .row .col:nth-child(1) h4 {
  border-top-color: var(--color-yellow);
  border-bottom-color: var(--color-yellow);
  color: var(--color-yellow);
}
.sec1 .row .col:nth-child(2) .inner {
  background-color: #fcf1ed;
}
.sec1 .row .col:nth-child(2) h3 {
  background-color: var(--color-orange);
}
.sec1 .row .col:nth-child(2) h4 {
  border-top-color: var(--color-orange);
  border-bottom-color: var(--color-orange);
  color: var(--color-orange);
}
.sec1 .row .col:nth-child(3) .inner {
  background-color: #fef5f6;
}
.sec1 .row .col:nth-child(3) h3 {
  background-color: var(--color-pink);
}
.sec1 .row .col:nth-child(3) h4 {
  border-top-color: var(--color-pink);
  border-bottom-color: var(--color-pink);
  color: var(--color-pink);
}
.sec1 .row .col:nth-child(1) ul li::before {
  background-color: var(--color-yellow);
}
.sec1 .row .col:nth-child(2) ul li::before {
  background-color: var(--color-orange);
}
.sec1 .row .col:nth-child(3) ul li::before {
  background-color: var(--color-pink);
}

.sec2 {
  background-color: #f8f6f5;
}
.sec2 .vision {
  margin-top: 5rem;
}
.sec2 .vision h3,
.sec2 .vision p {
  font-size: clamp(1.4rem, 1.259rem + 0.376vw, 1.8rem);
  font-weight: var(--font-medium);
  text-align: center;
}
.sec2 .vision h3 {
  font-size: clamp(2.2rem, 1.425rem + 2.066vw, 4.4rem);
  font-weight: var(--font-medium);
  text-align: center;
  line-height: 1;
}
.sec2 .vision p {
  padding-top: 1rem;
}

@media screen and (min-width: 768px) {
  .sec2-2 .inner {
    display: flex;
    justify-content: center;
  }
  .sec2-2 .inner .text {
    width: 48%;
  }
}

.sec3 {
  background-color: #f8f6f5;
}
@media screen and (min-width: 768px) {
  .sec3 .row {
    display: grid;
    gap: 6rem;
    grid-template-columns: 1fr 1fr;
  }
}
.sec3 .row .col h3 {
  display: flex;
  align-items: center;
  font-size: clamp(2rem, 1.789rem + 0.563vw, 2.6rem);
  font-weight: var(--font-medium);
}
.sec3 .row .col h3::before {
  content: "";
  width: 1rem;
  height: 1rem;
  margin: 0.2rem 1rem 0 0;
  background-color: var(--color-brand);
  transform: rotate(45deg);
}
.sec3 .row .col p {
  padding-bottom: 2rem;
  font-size: clamp(1.1rem, 1.065rem + 0.094vw, 1.2rem);
}
.sec3 .row .col img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .sec3 .row .col:last-child {
    margin-top: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .sec4 .inner {
    display: flex;
    justify-content: center;
  }
  .sec4 .inner .text {
    width: 48%;
  }
}
.sec4 .row {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .sec4 .row {
    gap: 5rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}

.btn {
  position: relative;
  display: block;
  padding: 2rem 2rem 2rem 2rem;
  background-color: var(--color-brand);
  border: 1px solid var(--color-brand);
  border-radius: var(--bdrs);
  font-size: clamp(2rem, 1.718rem + 0.751vw, 2.8rem);
  font-weight: var(--font-medium);
  color: var(--color-white);
  cursor: pointer;
  transition: color 0.4s;
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 2rem 2rem 2rem 2.5rem;
    text-align: center;
  }
}
.btn::before, .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  border-radius: 50%;
}
.btn::before {
  transform: translateY(-50%);
  right: 2rem;
  width: 2rem;
  margin-top: -1rem;
  height: 2rem;
  border: 1px solid var(--color-white);
  animation: zoom-in-anim 1s ease-in-out infinite alternate;
}
.btn::after {
  transform: translateY(-50%);
  right: 2.5rem;
  background-color: var(--color-white);
  width: 1rem;
  height: 1rem;
}
.btn:hover {
  background-color: var(--color-white);
  color: var(--color-brand);
}

.btn + .btn {
  margin-top: 2rem;
}

@keyframes zoom-in-anim {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.bnr {
  margin-top: 5rem;
}
.bnr img {
  margin-right: auto;
  margin-left: auto;
  transition: var(--ease);
}
.bnr img:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .bnr {
    margin-top: 10rem;
  }
}/*# sourceMappingURL=style.css.map */