@charset "UTF-8";
/*==================================================
	既存スタイル上書き
==================================================*/
html, body {
  scroll-padding-top: 80px;
  font-size: 3.2vw;
}
@media screen and (min-width: 751px) {
  html, body {
    font-size: 100%;
  }
}

#confectionery [id] {
  scroll-margin-top: 80px;
}

#confectionery * {
  box-sizing: border-box;
}

a.btn {
  padding: 15px 40px;
}

.anchor {
  padding-top: 80px;
  margin-top: -80px;
}

/*==================================================
	page-link（ページ内リンクスマホの時アコーディオン）
==================================================*/
.page-link {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1001;
  background: #F74664;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overscroll-behavior: none;
  /* ===== モーション軽減設定 ===== */
}
@media screen and (min-width: 751px) {
  .page-link {
    padding: 1rem;
    background: #fff;
  }
}
.page-link .page-link__title {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
  font-size: clamp(0.75rem, 4vw, 1rem);
}
@media screen and (min-width: 751px) {
  .page-link .page-link__title {
    display: none;
  }
}
.page-link .page-link__title p {
  margin: 0;
}
.page-link .page-link__title .drawer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-width: 0;
  width: 100%;
  height: 44px;
  background: transparent;
  color: #fff;
  font-size: clamp(0.9em, 8vw, 1.5rem);
  font-weight: bold;
  letter-spacing: 0.1rem;
}
.page-link .page-link__title .drawer__btn small {
  display: inline-block;
  margin-inline: 0 0.5rem;
}
.page-link .page-link__title .drawer__btn .drawer__line {
  display: block;
  position: relative;
  width: 44px;
  height: 100%;
  margin-inline: auto 0;
}
.page-link .page-link__title .drawer__btn .drawer__line::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  width: 12px;
  height: 12px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transition: 0.3s;
}
.page-link.is-open .page-link__title .drawer__btn .drawer__line::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.page-link.is-open #js-drawercontents {
  max-height: 1100px;
  height: 110svh;
  padding-block: 0 2rem;
}
.page-link #js-drawercontents {
  display: flex;
  overflow: hidden;
  transition: 0.35s ease;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0;
  width: min(100%, 1200px);
  background: #F74664;
  margin-inline: auto;
  flex-direction: column;
  max-height: 0;
  transition: max-height 0.3s ease;
  position: absolute;
  top: 59px;
  z-index: 1001;
  overscroll-behavior: none;
}
@media screen and (min-width: 751px) {
  .page-link #js-drawercontents {
    gap: 10px;
    flex-direction: row;
    justify-content: center;
    max-height: none;
    position: static;
    background: #fff;
  }
}
.page-link #js-drawercontents li {
  display: flex;
  width: 100%;
}
@media screen and (min-width: 751px) {
  .page-link #js-drawercontents li {
    width: calc((100% - 60px) / 7);
  }
}
@media screen and (min-width: 751px) {
  .page-link #js-drawercontents li:nth-of-type(odd) a {
    background: url(../img/confectionery/2026/btn_macaron_odd.svg) no-repeat center center;
    background-size: contain;
  }
}
@media screen and (min-width: 751px) {
  .page-link #js-drawercontents li:nth-of-type(even) a {
    background: url(../img/confectionery/2026/btn_macaron_even.svg) no-repeat center center;
    background-size: contain;
  }
}
.page-link #js-drawercontents li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding-block: 1.5rem;
  border-radius: 6px;
  color: #fff;
  font-size: clamp(0.82rem, 4vw, 1.2rem);
  line-height: 1.1;
}
@media screen and (min-width: 751px) {
  .page-link #js-drawercontents li a {
    padding-block: 1rem 2.8rem;
    color: #6c3606;
    background: #fff;
    font-size: clamp(0.82rem, 2vw, 0.9rem);
  }
}
.page-link #js-drawercontents li a br {
  display: none;
}
@media screen and (min-width: 751px) {
  .page-link #js-drawercontents li a br {
    display: inline-block;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-link ul {
    transition: none;
  }
}

.btn__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}
@media screen and (min-width: 751px) {
  .btn__wrap {
    flex-direction: row;
  }
}
.btn__wrap .btn {
  margin-block: 0 1rem;
}
@media screen and (min-width: 751px) {
  .btn__wrap .btn {
    margin-block: 0;
  }
}

.sr-only {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

/*==================================================
	画像見出し
==================================================*/
#confectionery [id] .cooking-title {
  text-align: center;
  margin-inline: auto;
  margin-block: 0 1.5rem;
  width: min(94%, 722px);
  background: none;
}
@media screen and (min-width: 751px) {
  #confectionery [id] .cooking-title {
    width: min(100%, 722px);
  }
}
#confectionery [id] .cooking-title img {
  width: 100%;
}

/*==================================================
	コンテンツ幅
==================================================*/
#confectionery section .section__inner, #confectionery > div .section__inner {
  display: block;
  max-width: 1200px;
  width: min(100%, 1200px);
  margin-inline: auto;
  border-radius: 10px;
  text-align: center;
  padding-inline: 20px;
  padding-block: 50px 80px;
}
@media screen and (min-width: 751px) {
  #confectionery section .section__inner, #confectionery > div .section__inner {
    padding-block: 60px 100px;
  }
}
#confectionery section .section__inner .feature-title, #confectionery > div .section__inner .feature-title {
  font-size: clamp(1.5rem, 7vw, 2.5rem);
}
#confectionery section .section__inner .feature-title img, #confectionery > div .section__inner .feature-title img {
  display: block;
  margin: -1vw auto 3vw;
  width: 21.9vw;
}
@media screen and (min-width: 751px) {
  #confectionery section .section__inner .feature-title img, #confectionery > div .section__inner .feature-title img {
    margin: 0 auto 15px;
    width: 148px;
  }
}
#confectionery section .section__inner .section-title, #confectionery > div .section__inner .section-title {
  position: relative;
  display: inline-block;
  font-size: clamp(1rem, 3vw, 1.875rem);
  font-weight: bold;
  background: url(../img/confectionery/2026/ribbon01-c.png) no-repeat left bottom;
  background-size: 100% 100%;
  padding-inline: 20px;
  padding-block: 13px 8px;
  width: calc(100% - 48px);
  margin-block: 1rem 1.5rem;
}
@media screen and (min-width: 751px) {
  #confectionery section .section__inner .section-title, #confectionery > div .section__inner .section-title {
    width: auto;
  }
}
#confectionery section .section__inner .section-title::before, #confectionery section .section__inner .section-title::after, #confectionery > div .section__inner .section-title::before, #confectionery > div .section__inner .section-title::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  width: 34px;
  height: 100%;
}
#confectionery section .section__inner .section-title::before, #confectionery > div .section__inner .section-title::before {
  background: url(../img/confectionery/2026/ribbon01-l.png) no-repeat right center;
  background-size: auto 100%;
  left: -34px;
}
#confectionery section .section__inner .section-title::after, #confectionery > div .section__inner .section-title::after {
  background: url(../img/confectionery/2026/ribbon01-r.png) no-repeat left center;
  background-size: auto 100%;
  right: -34px;
}
#confectionery section .section__inner .section-title.white, #confectionery > div .section__inner .section-title.white {
  background: url(../img/confectionery/2026/ribbon02-c.png) no-repeat left bottom;
  background-size: 100% 100%;
}
#confectionery section .section__inner .section-title.white::before, #confectionery > div .section__inner .section-title.white::before {
  background: url(../img/confectionery/2026/ribbon02-l.png) no-repeat right center;
  background-size: auto 100%;
  left: -34px;
}
#confectionery section .section__inner .section-title.white::after, #confectionery > div .section__inner .section-title.white::after {
  background: url(../img/confectionery/2026/ribbon02-r.png) no-repeat left center;
  background-size: auto 100%;
  right: -34px;
}
#confectionery section .section__inner .section-title.pink, #confectionery > div .section__inner .section-title.pink {
  width: auto;
  color: #fff;
  background: url(../img/confectionery/2026/ribbon03-c.png) no-repeat left bottom;
  background-size: 100% 100%;
}
#confectionery section .section__inner .section-title.pink::before, #confectionery > div .section__inner .section-title.pink::before {
  content: none;
}
#confectionery section .section__inner .section-title.pink::after, #confectionery > div .section__inner .section-title.pink::after {
  background: url(../img/confectionery/2026/ribbon03-r.png) no-repeat left center;
  background-size: auto 100%;
  right: -34px;
}
#confectionery section > [id], #confectionery > div > [id] {
  padding-inline: 20px;
}
#confectionery section #gallery, #confectionery > div #gallery {
  padding-block: 50px 80px;
}
@media screen and (min-width: 751px) {
  #confectionery section #gallery, #confectionery > div #gallery {
    padding-block: 80px 100px;
  }
}
#confectionery section.mask, #confectionery > div.mask {
  scroll-margin-top: 120px;
  -webkit-mask-image: url(../img/confectionery/2026/bg_mask_jagged.svg);
          mask-image: url(../img/confectionery/2026/bg_mask_jagged.svg);
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-position: center top;
          mask-position: center top;
  position: relative;
  -webkit-mask-size: 300%;
          mask-size: 300%;
  position: relative;
  margin-top: -30px;
}
@media screen and (min-width: 1200px) {
  #confectionery section.mask, #confectionery > div.mask {
    -webkit-mask-size: 100%;
            mask-size: 100%;
  }
}
@media screen and (min-width: 1500px) {
  #confectionery section.mask, #confectionery > div.mask {
    -webkit-mask-size: 80%;
            mask-size: 80%;
  }
}
#confectionery section.bg--pink, #confectionery > div.bg--pink {
  background: repeating-linear-gradient(135deg, #fcf1ec 0, #fcf1ec 45px, #fbeae2 45px, #fbeae2 90px);
}
#confectionery section.bg--yellow, #confectionery > div.bg--yellow {
  background: repeating-linear-gradient(135deg, #FEFAC9 0, #FEFAC9 45px, #FCF5C3 45px, #FCF5C3 90px);
}
#confectionery section.bg--blue, #confectionery > div.bg--blue {
  background: repeating-linear-gradient(135deg, #DFEBF3 0, #DFEBF3 45px, #E9F1F7 45px, #E9F1F7 90px);
}
#confectionery section.bg--stripe, #confectionery > div.bg--stripe {
  background: url(../img/confectionery/2026/bg_stripe.webp) repeat-y center center;
  background-size: cover;
}

.bg--wh {
  background: #fff;
}

.w--small {
  max-width: 1000px;
}

/*==================================================
	生徒の声
==================================================*/
#confectionery .student-voice {
  position: relative;
  background: #FFFABE;
  border-radius: 15px;
  padding-block: 20px;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  width: min(100%, 1000px);
  margin-inline: auto;
  margin-block: 1.5rem;
  gap: 20px;
}
@media screen and (min-width: 751px) {
  #confectionery .student-voice {
    flex-direction: row;
    gap: 40px;
    padding-inline: 20px;
    margin-block: 3rem 1.5rem;
  }
}
#confectionery .student-voice::after {
  content: "";
  display: block;
  position: absolute;
  top: -2.8vw;
  right: 20px;
  width: clamp(78px, 14vw, 130px);
  height: 90px;
  background: url(../img/confectionery/2026/voice.png) no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 751px) {
  #confectionery .student-voice::after {
    width: clamp(100px, 10vw, 130px);
    height: 110px;
    top: -4.8vw;
    right: 50px;
  }
}
@media screen and (min-width: 1200px) {
  #confectionery .student-voice::after {
    top: -2.8vw;
  }
}
#confectionery .student-voice::before {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  border: dotted 2px #F74664;
  border-radius: 15px;
  transform: translate(-50%, -50%);
}
#confectionery .student-voice.white {
  background: #fff;
}
#confectionery .student-voice img {
  width: 100%;
  height: auto;
  margin-block: 0;
  border-radius: 10px;
}
@media screen and (min-width: 751px) {
  #confectionery .student-voice img {
    width: min(100%, 330px);
  }
}
#confectionery .student-voice .voice__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
@media screen and (min-width: 751px) {
  #confectionery .student-voice .voice__text {
    width: min(100%, 565px);
  }
}
#confectionery .student-voice .voice__text h3 {
  color: #F74664;
  font-weight: bold;
  font-size: clamp(1.2rem, 3.2vw, 1.6rem);
  margin-block: 0 10px;
}

/*==================================================
	メインビジュアル
==================================================*/
#confectionery #kv {
  position: relative;
  background: url(../img/deco_triangle1.png) center top repeat-x, url(../img/confectionery/2026/kv_confectionery@2x.webp) center top no-repeat;
  background-size: 20px, 100%;
}
@media screen and (min-width: 751px) {
  #confectionery #kv {
    background: url(../img/deco_triangle1.png) center top repeat-x, url(../img/confectionery/2026/kv_confectionery.webp) center center no-repeat;
    background-size: 20px, cover;
  }
}
#confectionery #kv h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 1rem 0.5rem;
}
@media screen and (min-width: 751px) {
  #confectionery #kv h1 {
    right: 9vw;
    bottom: 400px;
    padding-block: 30px;
    padding-inline: 40px;
  }
}
#confectionery #kv h1 small {
  display: block;
  border-top: none;
  margin-bottom: 0;
}
#confectionery #kv h1 small + small {
  margin-bottom: 1rem;
}
#confectionery #kv .catchcopy {
  position: absolute;
  left: 0;
  top: 27vw;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: center;
}
@media screen and (min-width: 751px) {
  #confectionery #kv .catchcopy {
    top: 75%;
    text-align: left;
    align-items: flex-start;
    transform: none;
  }
}
#confectionery #kv .catchcopy p span {
  display: inline-block;
  line-height: 1;
  background: rgba(255, 255, 255, 0.8823529412);
  font-size: clamp(1.125rem, 5vw, 1.875rem);
  padding-block: 10px 6px;
  padding-inline: 20px 4px;
  margin-bottom: 0.5rem;
  white-space: wrap;
}
@media screen and (min-width: 751px) {
  #confectionery #kv .catchcopy p span {
    font-size: clamp(1.125rem, 5vw, 2.6875rem);
  }
}
#confectionery #kv .catchcopy img {
  width: clamp(128px, 30vw, 220px);
  margin-right: 3vw;
}
@media screen and (min-width: 751px) {
  #confectionery #kv .catchcopy img {
    width: clamp(220px, 28vw, 300px);
  }
}

/*==================================================
	01 最新の情報 Photo Gallery
==================================================*/
#confectionery #gallery {
  text-align: center;
  background: url(../img/deco_round2.png) center bottom repeat-x, url(../img/bg_stripe_blue.png) center center repeat;
  background-size: 16vw, 20vw;
  padding-block: 50px;
}
@media screen and (min-width: 751px) {
  #confectionery #gallery {
    padding-block: 80px 100px;
  }
}
@media screen and (min-width: 751px) {
  #confectionery #gallery {
    background-size: 124px, 145px;
  }
}
#confectionery #gallery .photogallery-title {
  padding-inline: 20px;
}
#confectionery #gallery .photogallery-title img {
  width: min(100%, 320px);
  margin-block: 0 1.5rem;
}
@media screen and (min-width: 751px) {
  #confectionery #gallery .photogallery-title img {
    width: auto;
  }
}
#confectionery #gallery #album {
  position: relative;
  flex-direction: row;
  gap: 10px;
  margin-block: 100px 0;
}
@media screen and (min-width: 751px) {
  #confectionery #gallery #album {
    gap: 20px;
    margin-block: 1rem;
  }
}
#confectionery #gallery #album::after {
  content: "";
  width: 160px;
  height: 60px;
  position: absolute;
  top: -70px;
  left: 10px;
  background: url(../img/txt_updating.png) no-repeat;
  background-size: auto;
  background-size: contain;
}
@media screen and (min-width: 751px) {
  #confectionery #gallery #album::after {
    width: 198px;
    height: 83px;
    left: -40px;
    top: -108px;
  }
}
#confectionery #gallery #album li {
  flex-basis: auto;
  width: calc((100% - 10px) / 2);
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  #confectionery #gallery #album li {
    width: calc((100% - 60px) / 4);
  }
}
#confectionery #gallery #album li iframe, #confectionery #gallery #album li video, #confectionery #gallery #album li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*==================================================
	02 学びの特色
==================================================*/
#confectionery section.sec02-a .flex-wrap3 {
  gap: 12px;
}
@media screen and (min-width: 751px) {
  #confectionery section.sec02-a .flex-wrap3 {
    gap: 30px;
  }
}
#confectionery section.sec02-a .flex-wrap3.step p {
  font-size: 1rem;
}
@media screen and (min-width: 751px) {
  #confectionery section.sec02-a .flex-wrap3.step p {
    font-size: 0.875rem;
  }
}
#confectionery section.sec02-a .flex-wrap3 > div {
  flex-basis: auto;
  width: 100%;
}
@media screen and (min-width: 751px) {
  #confectionery section.sec02-a .flex-wrap3 > div {
    width: calc((100% - 60px) / 3);
  }
}
#confectionery section.sec02-a .flex-wrap3 img {
  border-radius: 6px;
}
@media screen and (min-width: 751px) {
  #confectionery section.sec02-a .flex-wrap3 img {
    border-radius: 10px;
  }
}

#confectionery section.mask.sec02-b {
  background: #fff;
}
#confectionery section.mask.sec02-b .flex-wrap3 {
  gap: 20px;
}
@media screen and (min-width: 751px) {
  #confectionery section.mask.sec02-b .flex-wrap3 {
    gap: 0;
  }
}
#confectionery section.mask.sec02-b .flex-wrap3 > div img {
  border-radius: 6px;
}
@media screen and (min-width: 751px) {
  #confectionery section.mask.sec02-b .flex-wrap3 > div img {
    border-radius: 10px;
  }
}

@media screen and (min-width: 751px) {
  #confectionery section.mask.sec02-c .flex-wrap2 {
    padding-block: 2rem 0;
  }
}
@media screen and (min-width: 751px) {
  #confectionery section.mask.sec02-c .flex-wrap2 > div {
    margin-block: 0 1.5rem;
  }
}
#confectionery section.mask.sec02-c .btn {
  margin-block: 2rem;
}
@media screen and (min-width: 751px) {
  #confectionery section.mask.sec02-c .btn {
    margin-block: 2rem 1rem;
  }
}

#confectionery .study h2 {
  font-size: 1.75rem;
  padding-bottom: 10px;
  border-bottom: 2px dashed #6a3906;
  margin-bottom: 1.5rem;
  text-align: left;
}
@media screen and (min-width: 751px) {
  #confectionery .study h2 {
    font-size: clamp(24px, 3vw, 33px);
    margin-bottom: 2rem;
  }
}

#confectionery #pickup {
  background: none;
}

#confectionery .study {
  background: #fff;
}
#confectionery .study #pickup {
  border-radius: 4px;
  margin-block: 3rem 0;
  background-color: #f4eddb;
  min-width: 100%;
}
@media screen and (min-width: 751px) {
  #confectionery .study #pickup {
    margin-block: 1.5rem 3rem;
    width: calc(100vw - 80px);
  }
}
#confectionery .study #pickup::after {
  width: 32vw;
  background-repeat: no-repeat;
}
@media screen and (min-width: 751px) {
  #confectionery .study #pickup::after {
    width: 20vw;
  }
}
#confectionery .study #pickup .flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media screen and (min-width: 751px) {
  #confectionery .study #pickup .flex {
    flex-direction: row;
    align-items: center;
  }
}
#confectionery .study #pickup .flex .img {
  width: 100%;
  height: 100%;
  background-image: none;
  padding-top: 2rem;
  text-align: right;
}
@media screen and (min-width: 751px) {
  #confectionery .study #pickup .flex .img {
    padding-top: 0;
    width: 50%;
  }
}
#confectionery .study #pickup .flex .img img {
  width: 87%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  #confectionery .study #pickup .flex .img img {
    width: 100%;
  }
}
#confectionery .study #pickup .flex .txt {
  background: none;
  padding: 11.2vw 6.67vw 0vw 12vw;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 751px) {
  #confectionery .study #pickup .flex .txt {
    padding-inline: 11vw 5vw;
    padding-block: 0;
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  #confectionery .study #pickup .flex .txt {
    padding-inline: 145px 80px;
  }
}
#confectionery .study #pickup .flex .txt p {
  text-align: left;
}
@media screen and (min-width: 751px) {
  #confectionery .study #pickup .flex .txt p {
    margin-bottom: 0;
  }
}
#confectionery .study #pickup .flex .txt a img {
  width: 100%;
}

#confectionery .study .internship {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: min(100%, 1000px);
  margin-inline: auto;
  padding-block: 2rem;
  gap: 20px;
}
@media screen and (min-width: 751px) {
  #confectionery .study .internship {
    align-items: center;
    flex-direction: row;
    gap: 70px;
  }
}
#confectionery .study .internship .txt {
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 751px) {
  #confectionery .study .internship .txt {
    width: calc((100% - 70px) / 2);
  }
}
#confectionery .study .internship .img {
  width: 100%;
}
@media screen and (min-width: 751px) {
  #confectionery .study .internship .img {
    width: calc((100% - 70px) / 2);
  }
}
#confectionery .study .internship .img img {
  width: min(100%, 460px);
}

#confectionery .study .others .flex-wrap3 {
  margin-block: 0 2rem;
}
#confectionery .study .others .flex-wrap3 figure {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 20px 10px rgba(144, 62, 32, 0.15);
  margin-block: 0 1.5rem;
}
#confectionery .study .others .flex-wrap3 figure img {
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
  height: auto;
  width: 100%;
  aspect-ratio: 4/3;
}
#confectionery .study .others .flex-wrap3 figure figcaption {
  padding-block: 0.5rem 1rem;
}

#confectionery #feature5 .section-title {
  margin-top: 0;
}
#confectionery #feature5 .deco-ttl {
  font-size: 1.25rem;
}
@media screen and (min-width: 751px) {
  #confectionery #feature5 .deco-ttl {
    font-size: 1.18rem;
  }
}
#confectionery #feature5 .flex-wrap4 {
  gap: 10px;
  margin-block: 0 4rem;
}
@media screen and (min-width: 751px) {
  #confectionery #feature5 .flex-wrap4 {
    gap: 20px;
  }
}
#confectionery #feature5 .flex-wrap4 > img {
  flex-basis: auto;
  width: calc((100% - 10px) / 2);
}
@media screen and (min-width: 751px) {
  #confectionery #feature5 .flex-wrap4 > img {
    width: calc((100% - 60px) / 4);
  }
}
#confectionery #feature5 .grid {
  display: grid;
  gap: 20px;
  margin-block: 0 2rem;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "a a" "b c" "d d";
  padding: 1.4rem;
}
#confectionery #feature5 .grid__a {
  grid-area: a;
}
#confectionery #feature5 .grid__b {
  grid-area: b;
}
#confectionery #feature5 .grid__c {
  grid-area: c;
}
#confectionery #feature5 .grid__d {
  grid-area: d;
}
@media screen and (min-width: 751px) {
  #confectionery #feature5 .grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "b a c" "d d d";
    place-items: center;
    margin-block: 0 4rem;
  }
}
#confectionery #feature5 .grid__b img, #confectionery #feature5 .grid__c img {
  width: min(100%, 312px);
}
#confectionery #feature5 .grid__a img {
  width: min(100%, 376px);
}
#confectionery #feature5 .grid__d .btn {
  margin-block: 0 2rem;
}
#confectionery #feature5 .movieList-wrap .movieList iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 751px) {
  #confectionery #feature5 .movieList-wrap .movieList iframe {
    width: min(100%, 560px);
  }
}

/*==================================================
	03　特徴03
==================================================*/
#confectionery #feature03 {
  background: #fff;
}
@media screen and (min-width: 751px) {
  #confectionery #feature03 .feature-title {
    padding-block: 2rem 0;
  }
}
#confectionery #feature03 .flex-wrap4 {
  gap: 10px;
}
@media screen and (min-width: 751px) {
  #confectionery #feature03 .flex-wrap4 {
    gap: 20px;
  }
}
#confectionery #feature03 .flex-wrap4 img {
  flex-basis: auto;
  border-radius: 6px;
  width: calc((100% - 10px) / 2);
}
@media screen and (min-width: 751px) {
  #confectionery #feature03 .flex-wrap4 img {
    width: calc((100% - 60px) / 4);
  }
}

/*==================================================
	04　2年間の学び
==================================================*/
#confectionery #feature04 .flex {
  margin-block: 0 1.5rem;
}
#confectionery #feature04 .flex img {
  width: 100%;
}
#confectionery #feature04 .btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 751px) {
  #confectionery #feature04 .btn-wrap {
    flex-direction: row;
  }
}
#confectionery #feature04 .btn-wrap .btn {
  margin-top: 0;
}

/*==================================================
	05　取得できる資格
==================================================*/
#confectionery #feature05 {
  background: #fff;
}
@media screen and (min-width: 751px) {
  #confectionery #feature05 {
    -webkit-mask-size: 100%;
            mask-size: 100%;
  }
}
#confectionery #feature05 .cooking-title {
  padding-block: 1rem;
}
@media screen and (min-width: 751px) {
  #confectionery #feature05 .cooking-title {
    padding-block: 2rem;
  }
}
#confectionery #feature05 .qualification-list {
  padding-block: 2rem;
  padding-inline: 1.5rem;
  background: #fff;
  border-radius: 10px;
  background: #FFFABE;
  box-shadow: 4px 4px 0 #B29074;
  text-align: center;
  width: min(100%, 846px);
  margin-inline: auto;
}
#confectionery #feature05 .qualification-list em {
  font-weight: bold;
  font-size: clamp(1.5rem, 5vw, 2.125rem);
  color: #F74664;
  display: block;
  margin-block: 0 1rem;
}
#confectionery #feature05 .qualification-list ul {
  display: inline-block;
}
#confectionery #feature05 .qualification-list ul li {
  list-style: disc;
  text-align: left;
}

/*==================================================
	06　卒業後の進路選択
==================================================*/
#confectionery #feature06 {
  background-size: 200%;
}
@media screen and (min-width: 751px) {
  #confectionery #feature06 {
    background-size: 100%;
  }
}
#confectionery #feature06 .cooking-title {
  padding-block: 1rem;
}
@media screen and (min-width: 751px) {
  #confectionery #feature06 .cooking-title {
    padding-block: 2rem;
  }
}
#confectionery #feature06 .section__inner .card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 4px 4px 0 #B29074;
  padding-block: 5rem 2rem;
  padding-inline: 1.5rem;
  margin-block: 0 2rem;
}
@media screen and (min-width: 751px) {
  #confectionery #feature06 .section__inner .card {
    margin-block: 0 4rem;
  }
}
#confectionery #feature06 .section__inner .card .section-title {
  position: absolute;
  top: 15px;
  left: 0;
  margin-block: 0;
}
@media screen and (min-width: 751px) {
  #confectionery #feature06 .section__inner .card .section-title {
    top: -30px;
  }
}
#confectionery #feature06 .section__inner .card img {
  width: 100%;
}
@media screen and (min-width: 751px) {
  #confectionery #feature06 .section__inner .card.sec06-a img {
    width: min(100%, 938px);
  }
}
@media screen and (min-width: 751px) {
  #confectionery #feature06 .section__inner .card.sec06-b img {
    width: min(100%, 447px);
  }
}
#confectionery #feature06 .section__inner .card.sec06-b .flex {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 751px) {
  #confectionery #feature06 .section__inner .card.sec06-b .flex {
    flex-direction: row-reverse;
  }
}
#confectionery #feature06 .section__inner .card.sec06-b .txt {
  text-align: left;
}
#confectionery #feature06 .section__inner .card.sec06-b .txt h4 {
  font-weight: bold;
  font-size: 1.5rem;
}
@media screen and (min-width: 751px) {
  #confectionery #feature06 .section__inner .card.sec06-b .txt h4 {
    font-size: 1.75rem;
  }
}
#confectionery #feature06 .section__inner .card.sec06-b .txt h4.products {
  color: #F79646;
}
#confectionery #feature06 .section__inner .card.sec06-b .txt h4.recruit {
  color: #4BACC6;
}
#confectionery #feature06 .section__inner .card.sec06-b .txt h4.education {
  color: #8064A2;
}
#confectionery #feature06 .section__inner .card.sec06-b .txt h5 {
  margin: 0;
}
#confectionery #feature06 .section__inner .card.sec06-b .txt ul {
  display: flex;
  flex-wrap: wrap;
  margin-block: 0 1rem;
  padding-inline: 1rem 0;
}
#confectionery #feature06 .section__inner .card.sec06-b .txt ul li {
  list-style: disc;
}
#confectionery #feature06 .section__inner .card.sec06-b .txt .hotel li {
  width: 100%;
}
@media screen and (min-width: 751px) {
  #confectionery #feature06 .section__inner .card.sec06-b .txt .hotel li {
    width: 50%;
  }
}
#confectionery #feature06 .section__inner .card.sec06-b .txt .company li {
  width: 50%;
}
@media screen and (min-width: 751px) {
  #confectionery #feature06 .section__inner .card.sec06-b .txt .company li {
    width: 33%;
  }
}
#confectionery #feature06 .section__inner .card.sec06-b .txt .school li {
  width: 100%;
}

/*==================================================
	教員メッセージ
==================================================*/
@media screen and (min-width: 751px) {
  #from-teacher .flex-wrap2 {
    flex-direction: row;
  }
}
#from-teacher .flex-wrap2 > div.txt {
  flex-basis: 100%;
}
@media screen and (min-width: 751px) {
  #from-teacher .flex-wrap2 > div.txt {
    flex-basis: 47.92%;
  }
}
#from-teacher .btn-wrap {
  text-align: center;
}

/*==================================================
	TOPICS
==================================================*/
#topics .btn__wrap {
  margin-block: 2rem 0;
}
#topics .btn__wrap img {
  width: 100%;
}
@media screen and (min-width: 751px) {
  #topics .btn__wrap img {
    width: min(100%, 370px);
  }
}
#topics nav {
  width: min(100%, 1000px);
  margin-inline: auto;
  margin-block: 2rem;
}
#topics nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
#topics nav ul li {
  display: flex;
  width: calc((100% - 8px) / 2);
}
@media screen and (min-width: 751px) {
  #topics nav ul li {
    width: calc((100% - 24px) / 4);
  }
}
#topics nav ul li a {
  width: 100%;
  background: #F74664;
  color: #fff;
  text-align: center;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
}
/*# sourceMappingURL=confectionery.css.map */