@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }

  .bl-sp {
    display: block !important;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }

  .bl-sp {
    display: none !important;
  }
}

body {
  font-size: 16px;
  color: #000;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  background: #fff;
  letter-spacing: .2rem;
  padding-top: 140px;
  -webkit-animation-name: fuwa;
  animation-name: fuwa;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

@media screen and (max-width: 1100px) {
  body {
    padding-top: 110px;
  }
}

@media screen and (max-width: 767px) {
  body {
    letter-spacing: .1rem;
    font-size: 14px;
    padding-top: 70px;
  }
}

@-webkit-keyframes fuwa {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fuwa {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.body {
  display: none;
}

body,
html {
  overflow-x: hidden;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.header-inner {
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .header-inner {
    padding: 0 20px;
  }
}

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

a {
  font-family: "Noto Serif JP", serif;
}

.section {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

input[type="text"],
input[type="email"],
input[type="submit"],
select,
textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #ccc;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 10px;
  margin: 0;
  outline: none;
  border-radius: 5px;
}

.header {
  padding: 10px 0;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .header {
    padding: 5px 0;
  }
}

.header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .flex .logo {
  max-width: 120px;
}

@media screen and (max-width: 1100px) {
  .header .flex .logo {
    max-width: 90px;
  }
}

@media screen and (max-width: 767px) {
  .header .flex .logo {
    max-width: 60px;
  }
}

.header .header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header .header-nav ul li {
  margin-right: 25px;
}

@media screen and (max-width: 1100px) {
  .header .header-nav ul li {
    margin-right: 20px;
  }
}

@media screen and (max-width: 900px) {
  .header .header-nav ul li {
    margin-right: 10px;
  }
}

.header .header-nav ul li:last-child {
  margin-right: 0;
}

.header .header-nav ul li a {
  color: #000;
  display: block;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 1100px) {
  .header .header-nav ul li a {
    font-size: 12px;
  }
}

@media screen and (max-width: 900px) {
  .header .header-nav ul li a {
    font-size: 11px;
  }
}

.header .header-nav ul li a:after {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background: #d1a5cb;
  position: absolute;
  bottom: -5px;
  left: 0%;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: .3s;
  transition: .3s;
}

.header .header-nav ul li a:hover {
  color: #d1a5cb;
}

.header .header-nav ul li a:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.mv {
  position: relative;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .mv {
    margin-bottom: 0;
  }
}

.mv .contents {
  position: absolute;
  top: 24%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 1100px) {
  .mv .contents {
    top: 35%;
  }
}

@media screen and (max-width: 900px) {
  .mv .contents {
    top: 15%;
  }
}

.mv .text {
  background: #fff;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  display: inline-block;
  margin-right: 20px;
  font-size: 30px;
  letter-spacing: 13px;
  padding: 20px 5px;
  font-weight: 600;
}

@media screen and (max-width: 900px) {
  .mv .text {
    font-size: 25px;
  }
}

@media screen and (max-width: 767px) {
  .mv .text {
    font-size: 22px;
    letter-spacing: 6px;
    padding: 10px 5px;
  }
}

@media screen and (max-width: 370px) {
  .mv .text {
    font-size: 18px;
  }
}

.mv .text:last-child {
  margin-right: 0;
}

.mv-slider .slick-slide.add-animation {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  /* 左下を起点に設定 */
  opacity: 1;
  -webkit-animation: scale-up 10s linear forwards;
  animation: scale-up 10s linear forwards;
  /* 3秒間の拡大アニメーション */
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.mv-slider .slick-slide.add-animation img {
  -webkit-animation: scale-up 10s linear forwards;
  animation: scale-up 10s linear forwards;
}

.mv-slider .img {
  width: 100%;
}

.mv-slider .img .img-wrap {
  padding-top: 34%;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .mv-slider .img .img-wrap {
    padding-top: 72%;
  }
}

.mv-slider .img .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  opacity: 0.2;
}

.mv-slider2 {
  position: relative;
  overflow: hidden;
}

.mv-slider2 .slide {
  display: none;
  /* Slickが表示を制御するため */
  opacity: 1;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.mv-slider2 .slide.slick-active {
  display: block;
  /* アクティブなスライドを表示 */
  opacity: 1;
  /* フェードイン */
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  /* ズームアップ */
}

.mv-slider2 .img {
  width: 100%;
}

.mv-slider2 .img .img-wrap {
  padding-top: 34%;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .mv-slider2 .img .img-wrap {
    padding-top: 72%;
  }
}

.mv-slider2 .img .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

@-webkit-keyframes scale-up {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.2;
  }

  10% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes scale-up {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.2;
  }

  10% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

.topAbout ul {
  position: relative;
}

.topAbout .inner {
  position: relative;
}

.topAbout .inner .wrap {
  position: relative;
}

.topAbout .inner .wrap::before {
  content: '';
  width: 357px;
  height: 300px;
  background-image: url("https://tokyojasmine.illustplus.com/wp-content/uploads/2024/10/img01.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 0%;
  left: -12%;
  z-index: 100;
  width: 30%;
  height: 30%;
}

.topAbout .inner .wrap::after {
  content: '';
  width: 357px;
  height: 300px;
  background-image: url("https://tokyojasmine.illustplus.com/wp-content/uploads/2024/10/img02.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: -5%;
  right: -12%;
  z-index: 100;
  width: 25%;
  height: 25%;
}

.topAbout ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 100px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .topAbout ul {
    margin-bottom: 30px;
  }
}

.topAbout ul li {
  width: 31%;
}

.topAbout ul li:nth-child(1) {
  padding-top: 160px;
}

.topAbout ul li:nth-child(2) {
  padding-top: 80px;
}

@media screen and (max-width: 767px) {
  .topAbout ul li {
    width: 32%;
  }

  .topAbout ul li:nth-child(1) {
    padding-top: 40px;
  }

  .topAbout ul li:nth-child(2) {
    padding-top: 20px;
  }
}

.topAbout .img {
  max-width: 380px;
  margin: 0 auto 60px;
}

@media screen and (max-width: 767px) {
  .topAbout .img {
    margin: 0 auto 30px;
    width: 50%;
  }
}

.topAbout .contents {
  text-align: center;
  line-height: 2.2;
}

@media screen and (max-width: 767px) {
  .topAbout .contents {
    text-align: left;
  }
}

.topAbout .contents .text1 {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .topAbout .contents .text1 {
    font-size: 14px;
  }
}

.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.sns .sns-item {
  margin-right: 20px;
}

.sns .sns-item:last-child {
  margin-right: 0;
}

.sns a {
  width: 25px;
  display: block;
  -webkit-transition: .3s;
  transition: .3s;
}

.sns a:hover {
  opacity: .6;
}

.drawer-icon {
  position: fixed;
  top: 28px;
  right: 20px;
  z-index: 1300;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
}

@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon-bars {
  width: 25px;
  height: 16px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 25px;
  height: 2px;
  background: #000;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon-bar2 {
  top: 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon-bar3 {
  top: 16px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #d1a5cb;
  z-index: 250;
  display: none;
  -webkit-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.drawer-content.is-active {
  display: block;
}

.drawer-icon-nav {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.drawer-icon-nav ul li {
  margin-bottom: 40px;
}

.drawer-icon-nav ul li a {
  display: block;
  color: #000;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  font-size: 16px;
}

.drawer-icon-nav ul li a.animation {
  -webkit-animation: floatUp .5s ease-in-out forwards;
  animation: floatUp .5s ease-in-out forwards;
}

.drawer-icon-nav ul li a.active {
  color: #d1a5cb;
}

.drawer-icon-nav ul li:nth-child(2) a {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  /* 0.5秒の遅延 */
}

.drawer-icon-nav ul li:nth-child(3) a {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  /* 0.5秒の遅延 */
}

.drawer-icon-nav ul li:nth-child(4) a {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  /* 0.5秒の遅延 */
}

.drawer-icon-nav ul li:nth-child(5) a {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  /* 0.5秒の遅延 */
}

.drawer-icon-nav ul li:nth-child(6) a {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  /* 0.5秒の遅延 */
}

.drawer-icon-nav ul li:nth-child(7) a {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
  /* 0.5秒の遅延 */
}

.drawer-icon-nav .sns {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .drawer-icon-nav .sns.animation {
    -webkit-animation: floatUp .5s ease-in-out forwards;
    animation: floatUp .5s ease-in-out forwards;
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
  }
}

@-webkit-keyframes floatUp {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes floatUp {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.logo a {
  -webkit-transition: .3s;
  transition: .3s;
}

.logo a:hover {
  opacity: .6;
}

.footer {
  padding: 80px 0;
  background: #d1a5cb;
  letter-spacing: 0;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0;
    margin-top: 30px;
  }
}

.footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .footer .flex {
    display: block;
  }
}

.footer .flex .logo {
  max-width: 120px;
}

@media screen and (max-width: 1100px) {
  .footer .flex .logo {
    max-width: 90px;
  }
}

@media screen and (max-width: 767px) {
  .footer .flex .logo {
    max-width: 120px;
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer .flex .sns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer .footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .footer .footer-nav ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.footer .footer-nav ul li {
  margin-right: 25px;
}

@media screen and (max-width: 1100px) {
  .footer .footer-nav ul li {
    margin-right: 20px;
  }
}

@media screen and (max-width: 900px) {
  .footer .footer-nav ul li {
    margin-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .footer .footer-nav ul li {
    margin-right: 0;
    width: 50%;
    margin-bottom: 15px;
    text-align: center;
  }
}

.footer .footer-nav ul li:last-child {
  margin-right: 0;
}

.footer .footer-nav ul li a {
  color: #000;
  display: block;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 1100px) {
  .footer .footer-nav ul li a {
    font-size: 12px;
  }
}

@media screen and (max-width: 900px) {
  .footer .footer-nav ul li a {
    font-size: 11px;
  }
}

@media screen and (max-width: 767px) {
  .footer .footer-nav ul li a {
    font-size: 3.2vw;
  }
}

.footer .footer-nav ul li a:hover {
  opacity: .6;
}

.footer .ul2 {
  margin-top: 20px;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.copyright {
  font-size: 12px;
  text-align: center;
  margin-top: 15px;
}

@media screen and (max-width: 1000px) {
  .copyright {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .copyright {
    font-size: 2.4vw;
    white-space: nowrap;
  }
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}

.section-title .section-title-text {
  display: inline-block;
  position: relative;
  border-bottom: 1px solid #000;
  letter-spacing: .5rem;
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .section-title .section-title-text {
    letter-spacing: .1rem;
    font-size: 20px;
  }
}

.section-title .section-title-lead {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
  width: 324px;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  color: #a52d99;
}

@media screen and (max-width: 767px) {
  .section-title .section-title-lead {
    font-size: 15px;
  }
}

.section-title .section-title-lead .recipe-img {
  margin: 0 auto;
  max-width: 600px;
}

.section-title .section-title-lead .recipe-img img {
  height: 300px !important;
  width: auto;
}

h2.recipe-title {
  margin-bottom: 30px;
}

h2.recipe-title-page {
  font-size: 32px;
}

@media screen and (max-width: 767px) {
  h2.recipe-title-page {
    font-size: 20px;
  }
}

h2.recipe-title a {
  font-size: 28px;
  color: inherit;
  -webkit-transition: .3s;
  transition: .3s;
}

h2.recipe-title a:hover {
  color: #d1a5cb;
  border-bottom: 1px solid #d1a5cb;
}

@media screen and (max-width: 767px) {
  h2.recipe-title a {
    font-size: 20px;
    font-weight: bold;
  }
}

.section-title2 {
  font-size: 20px;
  border-bottom: 1px solid #000;
  display: block;
  margin-bottom: 40px;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .section-title2 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 5px;
  }
}

.recipe-content-wrapper {
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
}

.recipe-content-wrapper h3 {
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .recipe-content-wrapper h3 {
    font-size: 18px;
  }
}

.recipe-content-wrapper .recipe-materials {
  background-color: #f2f2f2;
  margin: 24px 0;
  padding: 16px;
  margin-bottom: 20px;
}

.recipe-content-wrapper .recipe-materials .recipe-materials-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.recipe-content-wrapper .recipe-materials .recipe-materials-header .recipe-persons {
  line-height: 2.5rem;
}

.recipe-content-wrapper .recipe-materials .material-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4px;
  line-height: 2.5rem;
  border-bottom: 1px dashed #ddd;
}

.recipe-content-wrapper .recipe-content {
  margin-top: 40px;
}

.recipe-content-wrapper .recipe-content h3 {
  margin-bottom: 20px;
}

.recipe-content-wrapper .recipe-content figure {
  width: 300px;
  height: auto;
  margin: 16px 0;
}

.recipe-content-wrapper .recipe-content li {
  list-style: auto inside;
  text-indent: -1em;
  padding-left: 1em;
}

.section-btn {
  text-align: center;
}

.section-btn a {
  color: #000;
  display: inline-block;
  padding: 15px 50px;
  border: 1px solid #000;
  -webkit-box-shadow: 4px 4px 0px #000;
  box-shadow: 4px 4px 0px #000;
  -webkit-transition: .3s;
  transition: .3s;
  background: #fff;
  letter-spacing: .1rem;
}

@media screen and (max-width: 767px) {
  .section-btn a {
    font-size: 14px;
    padding: 15px 15px;
  }
}

@media screen and (max-width: 370px) {
  .section-btn a {
    font-size: 13px;
  }
}

@media screen and (max-width: 340px) {
  .section-btn a {
    font-size: 11px;
  }
}

.section-btn a:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}

.topNews ul,
.topRecipe ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 60px;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {

  .topNews ul,
  .topRecipe ul {
    margin-bottom: 30px;
  }
}

.topNews ul li a,
.topRecipe ul li a {
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
}

.topNews ul li a .img,
.topRecipe ul li a .img {
  overflow: hidden;
}

.topNews ul li a img,
.topRecipe ul li a img {
  -webkit-transition: .3s;
  transition: .3s;
}

.topNews ul li a:hover img,
.topRecipe ul li a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.topNews ul li a:hover .text,
.topRecipe ul li a:hover .text {
  color: #d1a5cb;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (min-width: 768px) {

  .topNews ul li,
  .topRecipe ul li {
    width: calc(33.3333% - 5px * 2/3);
    margin-right: 5px;
  }

  .topNews ul li:nth-child(3n),
  .topRecipe ul li:nth-child(3n) {
    margin-right: 0;
  }

  .topNews ul li:nth-child(n + 4),
  .topRecipe ul li:nth-child(n + 4) {
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {

  .topNews ul li,
  .topRecipe ul li {
    width: calc(50% - 5px * 1/2);
    margin-right: 5px;
  }

  .topNews ul li:nth-child(2n),
  .topRecipe ul li:nth-child(2n) {
    margin-right: 0;
  }

  .topNews ul li:nth-child(n + 3),
  .topRecipe ul li:nth-child(n + 3) {
    margin-top: 30px;
  }
}

.topNews ul li .img,
.topRecipe ul li .img {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {

  .topNews ul li .img,
  .topRecipe ul li .img {
    margin-bottom: 10px;
  }
}

.topNews ul li .img .info,
.topRecipe ul li .img .info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 10px;
  background: #d1a5cb;
  font-size: 12px;
}

@media screen and (max-width: 767px) {

  .topNews ul li .img .info,
  .topRecipe ul li .img .info {
    font-size: 10px;
  }
}

.topNews ul li .img .img-wrap,
.topRecipe ul li .img .img-wrap {
  padding-top: 65%;
  position: relative;
}

.topNews ul li .img .img-wrap img,
.topRecipe ul li .img .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.topNews ul li .text,
.topRecipe ul li .text {
  font-size: 16px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {

  .topNews ul li .text,
  .topRecipe ul li .text {
    font-size: 14px;
  }
}

.schedule {
  background: url(../img/schedule-bg.jpg) no-repeat center center/cover;
}

.schedule .box {
  background: #fff;
  padding: 80px 40px;
}

@media screen and (max-width: 767px) {
  .schedule .box {
    padding: 30px 20px;
  }
}

.schedule .img {
  max-width: 600px;
  margin: 0 auto 60px;
}

@media screen and (max-width: 767px) {
  .schedule .img {
    margin-bottom: 30px;
  }
}

.schedule .text {
  font-size: 20px;
  text-align: center;
  line-height: 2.2;
}

@media screen and (max-width: 900px) {
  .schedule .text {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .schedule .text {
    font-size: 14px;
    text-align: left;
  }
}

.schedule .btn {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .schedule .btn {
    margin-top: 30px;
  }
}

.topCourse {
  background: url(../img/topCourse-bg.jpg) no-repeat center center/cover;
}

.topCourse .text1 {
  font-size: 20px;
  text-align: center;
  line-height: 2.2;
}

@media screen and (max-width: 900px) {
  .topCourse .text1 {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .topCourse .text1 {
    font-size: 14px;
    text-align: left;
  }
}

.topCourse .sub-title {
  text-align: center;
  margin-top: 60px;
  font-size: 20px;
  line-height: 2.2;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .topCourse .sub-title {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 10px;
  }
}

.topCourse .btn {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .topCourse .btn {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .topCourse .inner2 {
    padding: 0;
  }
}

.topCourse .section-title {
  position: relative;
}

.topCourse .section-title .left {
  position: absolute;
  max-width: 220px;
  left: 2%;
  top: -30%;
}

@media screen and (max-width: 1100px) {
  .topCourse .section-title .left {
    max-width: 20%;
  }
}

@media screen and (max-width: 900px) {
  .topCourse .section-title .left {
    max-width: 15%;
  }
}

@media screen and (max-width: 767px) {
  .topCourse .section-title .left {
    display: none;
  }
}

.topCourse .section-title .right {
  position: absolute;
  max-width: 220px;
  right: 2%;
  top: -30%;
}

@media screen and (max-width: 1100px) {
  .topCourse .section-title .right {
    max-width: 20%;
  }
}

@media screen and (max-width: 900px) {
  .topCourse .section-title .right {
    max-width: 15%;
  }
}

@media screen and (max-width: 767px) {
  .topCourse .section-title .right {
    display: none;
  }
}

.loop-slider .img {
  width: 100%;
}

.loop-slider .img .img-wrap {
  padding-top: 120%;
  position: relative;
}

.loop-slider .img .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.profile .pro-btn {
  text-align: center;
}

.profile .pro-btn span {
  font-size: 18px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: .3s;
  transition: .3s;
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 767px) {
  .profile .pro-btn span {
    font-size: 16px;
  }
}

.profile .pro-btn span:hover {
  color: #d1a5cb;
  border-bottom: 1px solid #d1a5cb;
}

.profile .close-btn {
  display: none;
}

.profile .hide-content {
  display: none;
}

.profile .hide-content .flex-wrap:nth-child(-n+4) {
  display: none;
}

.profile .text2 {
  font-size: 14px;
}

.profile a {
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: underline;
}

.profile a:hover {
  color: #d1a5cb;
}

.profile .flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .profile .flex-wrap {
    display: block;
  }
}

.profile .flex-wrap .flex1 {
  width: 47%;
}

@media screen and (max-width: 767px) {
  .profile .flex-wrap .flex1 {
    width: 100%;
  }
}

.profile .flex1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .profile .flex1 {
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.profile .flex1 .img {
  width: 28%;
}

@media screen and (max-width: 767px) {
  .profile .flex1 .img {
    width: 40%;
    margin: 0px auto 10px;
  }
}

.profile .flex1 .text {
  font-size: 14px;
  width: 68%;
}

.profile .flex1 .text-noimage {
  font-size: 14px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .profile .flex1 .text {
    width: 100%;
  }
}

.profile .row {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .profile .row {
    margin-bottom: 30px;
  }
}

.profile .row .gray-box {
  padding: 30px 50px;
  background: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 2;
  font-size: 14px;
}

@media screen and (max-width: 900px) {
  .profile .row .gray-box {
    font-size: 13px;
    padding: 30px 20px;
  }
}

@media screen and (max-width: 767px) {
  .profile .row .gray-box {
    display: block;
    padding: 15px 20px;
  }
}

.profile .row .gray-box .item {
  width: 25%;
}

@media screen and (max-width: 767px) {
  .profile .row .gray-box .item {
    width: 100%;
    text-align: center;
  }
}

.easy {
  background: #d1a5cb;
}

.contact .row {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .contact .row {
    margin-bottom: 20px;
  }
}

.contact .row .required {
  color: #fff;
  background: #d9302e;
  border-radius: 10px;
  line-height: 1;
  padding: 3px 10px;
  margin-left: 20px;
}

.contact .row .dt {
  margin-bottom: 10px;
}

.contact textarea {
  resize: none;
  height: 200px;
}

.contact .inner {
  max-width: 1000px;
}

@media screen and (max-width: 767px) {
  .contact .section-title-lead {
    font-size: 13px;
  }
}

@media screen and (max-width: 370px) {
  .contact .section-title-lead {
    font-size: 3.3vw;
  }
}

.contact .lead {
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .contact .lead {
    margin-bottom: 20px;
    text-align: left;
    font-size: 14px;
  }
}

.contact .box {
  border-radius: 40px;
  padding: 60px 60px;
  border: 1px solid #000;
  max-width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .contact .box {
    border-radius: 20px;
    padding: 30px 20px;
  }
}

.contact .submit {
  margin-top: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact .submit {
    margin-top: 30px;
  }
}

.contact .submit input[type="submit"] {
  color: #000;
  display: inline-block;
  padding: 15px 50px;
  border: 1px solid #000;
  -webkit-box-shadow: 4px 4px 0px #000;
  box-shadow: 4px 4px 0px #000;
  -webkit-transition: .3s;
  transition: .3s;
  background: #fff;
  letter-spacing: .1rem;
  width: inherit;
}

@media screen and (max-width: 767px) {
  .contact .submit input[type="submit"] {
    font-size: 14px;
    padding: 15px 15px;
  }
}

@media screen and (max-width: 370px) {
  .contact .submit input[type="submit"] {
    font-size: 13px;
  }
}

@media screen and (max-width: 340px) {
  .contact .submit input[type="submit"] {
    font-size: 11px;
  }
}

.contact .submit input[type="submit"]:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}

.common-heading {
  text-align: center;
  margin-bottom: -80px;
}

@media screen and (max-width: 767px) {
  .common-heading {
    margin-bottom: 0px;
    margin-bottom: -30px;
  }
}

.common-heading .content {
  font-size: 26px;
  display: inline-block;
  font-weight: 600;
  background: #d1a5cb;
  padding: 30px 20px;
  width: 100%;
  max-width: 500px;
  position: relative;
  top: -50px;
}

@media screen and (max-width: 767px) {
  .common-heading .content {
    font-size: 20px;
    padding: 10px;
    top: -20px;
    max-width: 300px;
  }
}

.common-heading .content .exp-diproma {
  font-size: 20px;
  margin-top: 8px;
  background-color: #fff;
  width: inherit !important;
  display: block;
  color: #a52d99;
}

@media screen and (max-width: 767px) {
  .common-heading .content {
    font-size: 14px;
    margin-top: 6px;
  }
}

.single .thumbnail {
  max-width: 550px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 767px) {
  .single .thumbnail {
    margin-bottom: 20px;
  }
}

.single .single-wrap {
  max-width: 900px;
  margin: 0 auto 60px;
}

@media screen and (max-width: 767px) {
  .single .single-wrap {
    margin-bottom: 30px;
  }
}

.single .info {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .single .info {
    margin-bottom: 20px;
  }
}

.single .title {
  font-size: 26px;
  line-height: 1.3;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .single .title {
    font-size: 20px;
    text-align: left;
    margin-bottom: 30px;
  }
}

.single .title::after {
  content: "";
  position: absolute;
  background: #d1a5cb;
  height: 2px;
  width: 70%;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .single .title::after {
    height: 1px;
  }
}

html {
  scroll-behavior: smooth;
}

.voice .row {
  margin-bottom: 150px;
}

@media screen and (max-width: 767px) {
  .voice .row {
    margin-bottom: 60px;
  }
}

.voice .row:last-child {
  margin-bottom: 0;
}

.voice .lead {
  font-size: 20px;
  line-height: 2.2;
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .voice .lead {
    margin-bottom: 30px;
    font-size: 14px;
    text-align: left;
  }
}

.voice .title {
  background: #d1a5cb;
  padding: 30px 40px;
  font-size: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-bottom: -80px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .voice .title {
    font-size: 14px;
    padding: 15px 10px;
    margin-bottom: 0px;
  }
}

.voice .title span {
  font-size: 135%;
  display: block;
  margin-top: 10px;
}

.voice .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .voice .flex {
    display: block;
  }
}

.voice .flex .img {
  width: 35%;
}

@media screen and (max-width: 767px) {
  .voice .flex .img {
    width: 50%;
    margin: 10px auto 0px;
  }
}

.voice .flex .text {
  width: 60%;
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .voice .flex .text {
    width: 100%;
    padding-top: 10px;
  }
}

.voice .flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 80px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.voice .flex2 :nth-last-child(3)::before {
  content: '';
  display: block;
  width: 24%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.voice .flex2 :nth-last-child(3):after {
  content: '';
  display: block;
  width: 24%;
}

@media screen and (max-width: 767px) {
  .voice .flex2 {
    margin-top: 20px;
  }
}

.voice .flex2 .img {
  width: 33%;
}

.voice .flex4 {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .voice .flex4 {
    margin-top: 30px;
  }
}

.voice .flex4 .img-wrap {
  padding-top: 70%;
  position: relative;
}

.voice .flex4 .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*   -o-object-fit: contain; */
/*   object-fit: contain; */
	object-fit:cover;
}

.voice .flex4 .img {
  width: 24%;
  cursor: pointer;
}

.classroom2-flex {
  margin: 0 auto;
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 800px;
}

@media screen and (max-width: 767px) {
  .classroom2-flex {
    margin-top: 30px;
    display: block;
  }
}

.classroom2-flex .item {
  width: 46%;
}

@media screen and (max-width: 767px) {
  .classroom2-flex .item {
    width: 100%;
  }
}

.classroom2-flex .img-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.classroom2-flex .img-area .item-img {
  width: 33.33333%;
}

.classroom2-flex .title {
  display: block;
  text-align: center;
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .classroom2-flex .title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.classroom2-flex .text {
  font-size: 16px;
  padding-bottom: 20px;
  min-height: 280px;
}

@media screen and (max-width: 900px) {
  .classroom2-flex .text {
    font-size: 14px;
    min-height: 260px;
  }
}

.classInfo {
  background: #ecd4e7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 80px 0 60px;
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .classInfo {
    margin: 40px 0 30px;
    padding: 20px 20px;
    display: block;
  }
}

.classInfo .item {
  width: 45%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .classInfo .item {
    width: 100%;
    margin-bottom: 20px;
  }

  .classInfo .item:last-child {
    margin-bottom: 0;
  }
}

.classInfo .title2 {
  font-size: 16px;
  background: #d1a5cb;
  padding: 10px 30px;
  display: inline-block;
  position: absolute;
  top: -60px;
  left: 0px;
}

@media screen and (max-width: 767px) {
  .classInfo .title2 {
    padding: 5px 10px;
    font-size: 14px;
    top: -35px;
    left: 0px;
    position: initial;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .classInfo .text {
    font-size: 13px;
  }
}

#contact,
#recipe,
#profile {
  position: relative;
  top: -100px;
}

@media screen and (max-width: 767px) {

  #contact,
  #recipe,
  #profile {
    top: -55px;
  }
}

.privacy p {
  margin-bottom: 40px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .privacy p {
    font-size: 14px;
  }
}

.privacy .main-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .privacy .main-title {
    font-size: 20px;
  }
}

.privacy .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .privacy .title {
    font-size: 16px;
  }
}

.thanks-text {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
  .thanks-text {
    font-size: 14px;
  }
}

.mv-slider {
  display: none;
}

@media screen and (max-width: 767px) {
  .single .contents img {
    width: 50%;
    margin: 0 auto;
    display: block;
  }
}

.single .contents h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .single .contents h2 {
    font-size: 18px;
  }
}

.single .contents h3,
.single .contents h4,
.single .contents h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {

  .single .contents h3,
  .single .contents h4,
  .single .contents h5 {
    font-size: 16px;
  }
}

.single .contents a {
  color: #000;
  text-decoration: underline;
  -webkit-transition: .3s;
  transition: .3s;
}

.single .contents a:hover {
  opacity: .6;
}

.nav-links {
  text-align: center;
}

.nav-links a {
  -webkit-transition: .3s;
  transition: .3s;
  color: #000;
}

.nav-links a:hover {
  opacity: .6;
}

.nav-links a,
.nav-links span {
  margin: 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.nav-links span {
  color: #d1a5cb;
}

.contact .wpcf7-list-item-label {
  position: relative;
  padding-left: 22px;
}

@media screen and (max-width: 767px) {
  .contact .wpcf7-list-item-label {
    padding-left: 25px;
    margin-bottom: 10px;
  }
}

.contact .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  border-radius: 50%;
}

.contact .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 3.5px;
  width: 13px;
  height: 13px;
  background: #d1a5cb;
  border-radius: 50%;
  opacity: 0;
}

.contact input[type="radio"] {
  position: absolute;
  top: -100%;
  left: -200%;
  opacity: 0;
}

.contact input[type="radio"]:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .contact .wpcf7-list-item-label {
    display: block;
  }
}

.contact .wpcf7-list-item {
  margin-left: 0;
  margin-right: 30px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .contact .wpcf7-list-item {
    margin-right: 0;
    display: block;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.section {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .section {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
}

.section.animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
  animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.topAbout,
.classroom1 {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  padding: 100px 0 20px;
}

@media screen and (min-width: 768px) {
  @-webkit-keyframes fadeInUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(100px);
      transform: translateY(100px);
    }

    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }

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

    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
}

@media screen and (max-width: 767px) {
  .classroom1 {
    padding: 60px 0 20px;
  }

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

    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }

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

    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
}

.mv .text span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-animation: fadeInUp .5s forwards;
  animation: fadeInUp .5s forwards;
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.mv .text1 span {
  -webkit-animation-delay: calc(0.1s * var(--i) + 1s);
  animation-delay: calc(0.1s * var(--i) + 1s);
  /* 1秒遅延を追加 */
  /* 順番にアニメーション */
}

.mv .text2 span {
  -webkit-animation-delay: calc(0.1s * var(--i));
  animation-delay: calc(0.1s * var(--i));
  /* 順番にアニメーション */
}

.topAbout ul li:nth-child(1) {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .topAbout ul li:nth-child(1) {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
}

.topAbout ul li:nth-child(1).animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
  animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.topAbout ul li:nth-child(3) {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .topAbout ul li:nth-child(3) {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
}

.topAbout ul li:nth-child(3).animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
  animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: .8s;
  animation-delay: .8s;
}

.topAbout ul li:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .topAbout ul li:nth-child(2) {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
}

.topAbout ul li:nth-child(2).animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
  animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  #page-top {
    bottom: 78px;
  }
}

#page-top a {
  padding: 13px 8px 10px;
  display: block;
  background-color: #d1a5cb;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  line-height: 13px;
  text-align: center;
  border-radius: 60px;
  width: 60px;
  height: 60px;
  -webkit-transition: .4s ease;
  transition: .4s ease;
  z-index: 100;
  letter-spacing: 1px;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  #page-top a {
    width: 40px;
    height: 40px;
    font-size: 10px;
    padding-top: 6px;
  }
}

.ga-title {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .ga-title {
    font-size: 18px;
  }
}

.ga-content {
  margin: 32px 0;
}

.ga-content ul {
  width: 80%;
  margin: 0 auto;
}

.ga-content ul li {
  list-style: disc;
  margin-bottom: 16px;
}

.voice .attention {
  padding-top: 10px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .voice .attention {
    padding-top: 5px;
    font-size: 12px;
  }
}

/* モーダルのスタイル */
/* モーダルのスタイル */
.modal {
  display: none;
  /* 初期状態は非表示 */
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  padding-bottom: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  /* 背景を暗く */
  opacity: 0;
  /* フェードイン効果のための透明度 */
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  /* 0.5秒でフェードイン・アウト */
}

@media screen and (max-width: 767px) {
  .modal {
    padding-top: 100px;
  }
}

.modal.show {
  display: block;
  opacity: 1;
  /* 完全に表示される */
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
}

@media screen and (max-width: 767px) {
  .modal-content {
    max-width: 95%;
  }
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .close {
    top: 37px;
    right: 5%;
  }
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .classroom2-flex .text {
    min-height: initial;
  }

  .classroom2-flex .item {
    margin-bottom: 50px;
  }

  .classroom2-flex .item:last-child {
    margin-bottom: 0;
  }
}

.page-add {
  text-align: center;
}

.page-add .title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 767px) {
  .page-add .title {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.page-add .row {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .page-add .row {
    margin-bottom: 50px;
  }
}

.page-add .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .page-add .flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.page-add .flex.flex2 {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .page-add .flex.flex2 {
    margin-bottom: 30px;
  }
}

.page-add .flex .item {
  width: calc(33.3333% - 50px * 2/3);
}

@media screen and (min-width: 768px) {
  .page-add .flex .item {
    margin-right: 50px;
  }

  .page-add .flex .item:nth-child(3n) {
    margin-right: 0;
  }

  .page-add .flex .item.item2:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .page-add .flex .item {
    width: calc(50% - 20px * 1/2);
    margin-right: 20px;
  }

  .page-add .flex .item:last-child {
    margin-bottom: 0;
  }

  .page-add .flex .item:nth-child(2n) {
    margin-right: 0;
  }

  .page-add .flex .item:nth-child(n + 3) {
    margin-top: 30px;
  }
}

.page-add .flex .item .img {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .page-add .flex .item .img {
    width: 100%;
    margin: 0 auto 10px;
  }
}

.page-add .flex .item .img .img-wrap {
  padding-top: 75%;
  position: relative;
}

.page-add .flex .item .img .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-add .flex .item .text {
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .page-add .flex .item .text {
    font-size: 12.5px;
  }
}

.middle-title {
  font-size: 22px;
  margin-bottom: 40px;
  padding: 10px;
  border: 1px solid #000;
}

@media screen and (max-width: 767px) {
  .middle-title {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.con-img {
  max-width: 600px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 767px) {
  .con-img {
    margin-bottom: 15px;
  }
}

.title-span {
  font-size: 26px;
  margin-bottom: 30px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .title-span {
    font-size: 18px;
  }
}

.con-text {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .con-text {
    text-align: left;
    font-size: 14px;
  }
}

.mv-slider2 {
  position: relative;
  overflow: hidden;
  /* スライダーのコンテンツがはみ出さないようにする */
}

.mv-slider2 .img {
  display: none;
  /* Slickが表示を制御するため */
  opacity: 1;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 4.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 4.5s ease;
  transition: opacity 0.5s ease, transform 4.5s ease;
  transition: opacity 0.5s ease, transform 4.5s ease, -webkit-transform 4.5s ease;
  /* フェードとズームのトランジション */
}

.mv-slider2 .slick-active {
  -webkit-transition: opacity 0.5s ease, -webkit-transform 4.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 4.5s ease;
  transition: opacity 0.5s ease, transform 4.5s ease;
  transition: opacity 0.5s ease, transform 4.5s ease, -webkit-transform 4.5s ease;
  /* フェードとズームのトランジション */
}

.mv-slider2 .slick-active .img {
  -webkit-transition: opacity 0.5s ease, -webkit-transform 4.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 4.5s ease;
  transition: opacity 0.5s ease, transform 4.5s ease;
  transition: opacity 0.5s ease, transform 4.5s ease, -webkit-transform 4.5s ease;
  /* フェードとズームのトランジション */
  display: block;
  /* アクティブなスライドを表示 */
  opacity: 1;
  /* フェードイン */
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  /* ズームアップ */
}

.mv2 .slider {
  overflow: hidden;
  /* 画像がはみ出ないようにする */
}

.mv2 .slick-img img {
  width: 100%;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    /* 拡大率 */
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    /* 拡大率 */
  }
}

.mv2 .add-animation {
  -webkit-animation: zoomUp 10s linear 0s normal both;
  animation: zoomUp 10s linear 0s normal both;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  /* 左下を起点に設定 */
}

.mv2 .wrap {
  padding-top: 34%;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .mv2 .wrap {
    padding-top: 72%;
  }
}

.mv2 .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

.topAbout .inner .wrap+ ::before {
  z-index: -1;
}

.schedule .section-title .section-title-lead {
  width: 100%;
}

.schedule .section-title .section-title-lead .recipe-img {
  /* max-width: 354px; */
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  h2.recipe-title a {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  h2.recipe-title a {
    font-size: 18px;
  }
}

.contact .section-title .section-title-lead {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .contact .section-title .section-title-lead {
    width: 100%;
  }
}

.single2 .section-title .section-title-lead {
  width: 100%;
}

.single2 .recipe-title-page {
  font-size: 27px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .single2 .recipe-title-page {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.recipe-content-wrapper .recipe-content figure {
  margin: 16px auto;
}

.recipe-content-wrapper .recipe-content figure img {
  width: auto;
  height: 300px;
}

.voice .flex2 {
  -webkit-box-pack: initial;
  -ms-flex-pack: initial;
  justify-content: initial;
}

.voice .flex4 .img {
  width: calc(25% - 10px * 3/4);
  margin-right: 10px;
}

.voice .flex4 .img:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .voice .flex4 .img {
    width: calc(25% - 5px * 3/4);
    margin-right: 5px;
  }

  .voice .flex4 .img:nth-child(4n) {
    margin-right: 0;
  }
	

}
@media screen and (max-width: 767px) {
	.schedule .section-title .section-title-lead .recipe-img img {
    height: 300px !important;
    width: auto;
    width: 100%;
    height: auto !important;
	}
}