/* ==================== Layout ==================== */

.container {
  max-width: 100%;
  padding: 0;
}

p {
  margin: 0;
}

a {
  transition: 0.2s;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

a:visited {
  color: inherit;
}

:hover {
  transition: 0.3s;
}

h1 {
  font-size: 3.4rem;
}

@media (max-width: 991px) {
  h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 28px;
}

@media (max-width: 991px) {
  h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 2.2rem;
  }
}

h3 {
  font-size: 24px;
}

@media (max-width: 991px) {
  h3 {
    font-size: 1.6rem;
  }
}

h4 {
  font-size: 24px;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.45;
  margin: 0;
  transition: 0.2s;
  font-weight: bold;
}

.ellipsis-3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.block {
  max-width: 1100px;
  /*padding-left: 50px;*/
  /*padding-right: 50px;*/
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .block {
    /*max-width: 990px;*/
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 991px) {
  .block {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media (max-width: 767px) {
  .block {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

ul {
  margin: 0;
}

.table {
  margin: 0;
}

/* ==================== button ==================== */

.btn:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.button-wrap {
  text-align: center;
}

.btn-deco {
  font-weight: bold;
  font-size: 20px;
  width: 390px;
  height: 67px;
  position: relative;
  display: table;
  margin: 0 auto;
  transition: 0.3s;
  border-radius: 10rem;
  background-color: #fff;
}

@media (max-width: 767px) {
  .btn-deco {
    font-size: 16px;
    max-width: 255px;
    width: 100%;
    height: 50px;
  }
}

@media (max-width: 359px) {
  .btn-deco {
    width: 100%;
  }
}

.btn-deco.yellow {
  color: #ffb82f;
  border: #ffda2f solid 2px;
}

.btn-deco.pink {
  color: #f87065;
  border: #f5aaa4 solid 2px;
}

.btn-deco.green {
  color: #99c135;
  border: #c8d7a3 solid 2px;
}

.btn-deco.orange {
  color: #ff9944;
  border: #fcc394 solid 2px;
}

.btn-deco.blue {
  color: #809bc4;
  border: #a5bada solid 2px;
}

.btn-deco.purple {
  color: #b594dd;
  border: #c0b3e0 solid 2px;
}

.btn-deco span {
  display: table-cell;
  vertical-align: middle;
}

.btn-deco:after {
  content: "";
  width: 14px;
  aspect-ratio: 14 / 18;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

@media (max-width: 767px) {
  .btn-deco:after {
    right: 2rem;
    width: 8px;
  }
}

.btn-deco.yellow:after {
  background-image: url("../img/css/common/btn_arrow_yellow.png");
}

.btn-deco.pink:after {
  background-image: url("../img/css/common/btn_arrow_pink.png");
}

.btn-deco.green:after {
  background-image: url("../img/css/common/btn_arrow_green.png");
}

.btn-deco.orange:after {
  background-image: url("../img/css/common/btn_arrow_orange.png");
}

.btn-deco.blue:after {
  background-image: url("../img/css/common/btn_arrow_blue.png");
}

.btn-deco.purple:after {
  background-image: url("../img/css/common/btn_arrow_purple.png");
}

.btn-deco:hover:after {
  transform: translateY(-50%) translateX(5px);
}

.section1, .section2, .section3, .section4, .section5 {
  scroll-margin-top: 100px;
}

/* ==================== section-title ==================== */

.section-title-area {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 30px;
  }
}

.section-title-area img {
  max-width: 650px;
  width: 92%;
}

@media (max-width: 767px) {
  .section-title-area img {
    width: 80%;
  }
}

@media (max-width: 575px) {
  .section-title-area img {
    width: 94%;
  }
}

/* ==================== Maim Visual ==================== */

.section-mainvisual {
  position: relative;
  z-index: 1;
}

.mainvisual img {
  width: 100%;
}

@media (max-width: 767px) {
  .mainvisual-pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .mainvisual-sp {
    display: none;
  }
}

/* ==================== About ==================== */

.section-about {
  background-color: #ffffff;
  padding-top: 90px;
  position: relative;
  padding-bottom: 180px;
}

@media (max-width: 991px) {
  .section-about {
    padding-bottom: 120px;
  }
}

@media (max-width: 767px) {
  .section-about {
    padding-top: 50px;
    padding-bottom: 120px;
  }
}

.about.block:before {
  content: "";
  position: absolute;
  background-image: url("../img/css/about/about_deco01_pc.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: -20px;
  left: 0;
  width: 115px;
  aspect-ratio: 232 / 818;
}

@media (max-width: 1199px) {
  .about.block:before {
    /*top: -30px;*/
    left: 40px;
    /*width: 92px;*/
    /*aspect-ratio: 184 / 418;*/
  }
}

@media (max-width: 991px) {
  .about.block:before {
    background-image: url("../img/css/about/about_deco01_sp.png");
    top: -60px;
    /*left: 30px;*/
    width: calc(142px * 0.55);
    aspect-ratio: 142 / 715;
  }
}

@media (max-width: 767px) {
  .about.block:before {
    top: -40px;
    left: 30px;
    width: calc(142px * 0.5);
  }
}

@media (max-width: 575px) {
  .about.block:before {
    top: -40px;
    left: 10px;
    width: calc(142px * 0.56);
  }
}

.about.block:after {
  content: "";
  position: absolute;
  background-image: url("../img/css/about/about_deco02_pc.png");
  background-repeat: no-repeat;
  background-size: cover;
  top: -30px;
  right: 0;
  width: 130px;
  aspect-ratio: 260 / 824;
}

@media (max-width: 1199px) {
  .about.block:after {
    /*top: -30px;*/
    right: 20px;
    /*width: 130px;*/
    /*aspect-ratio: 260 / 824;*/
  }
}

@media (max-width: 991px) {
  .about.block:after {
    background-image: url("../img/css/about/about_deco02_sp.png");
    top: -39px;
    right: 20px;
    width: calc(162px * 0.5);
    aspect-ratio: 162 / 767;
  }
}

@media (max-width: 767px) {
  .about.block:after {
    /*bottom: 270px;*/
    top: -30px;
    right: 50px;
    width: calc(162px * 0.48);
  }
}

@media (max-width: 575px) {
  .about.block:after {
    /*bottom: 274px;*/
    right: 10px;
    width: calc(162px * 0.53);
  }
}

.about {
  text-align: center;
  position: relative;
}

@media (max-width: 767px) {
  .about {
    padding-top: 1rem;
    margin-bottom: 0.6rem;
  }
}

.about-text {
  color: #472a09;
  line-height: 1.8;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 100px;
  display: inline-block;
}

@media (max-width: 991px) {
  .about-text {
    margin-bottom: 7rem;
  }
}

@media (max-width: 767px) {
  .about-text {
    margin-bottom: 6rem;
    line-height: 1.6;
    font-size: 1.8rem;
  }
}

@media (max-width: 359px) {
  .about-text {
    font-size: 1.6rem;
  }
}

.line-break {
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .line-break {
    margin-bottom: 20px;
  }
}

.about-text span {
  display: inline-block;
}

@media (max-width: 575px) {
  .about-text .break-sp {
    display: block;
  }
}

@media (max-width: 767px) {
  .about-text .break-sp-sm {
    display: block;
  }
}

.about-text .orange {
  font-weight: bold;
  color: #f87d00;
}

/* ==================== Anchor ==================== */

.anchor {
  position: relative;
}

.anchor-buttons {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 160px;
  position: relative;
}

@media (max-width: 991px) {
  .anchor-buttons {
    max-width: 640px;
  }
}

@media (max-width: 767px) {
  .anchor-buttons {
    max-width: 360px;
    margin-bottom: 70px;
  }
}

.anchor-buttons:before {
  content: "";
  position: absolute;
  bottom: -77px;
  left: 10px;
  width: 73px;
  aspect-ratio: 145 / 286;
  background: url("../img/css/about/about_deco03.png") no-repeat center / contain;
}

@media (max-width: 991px) {
  .anchor-buttons:before {
    bottom: -77px;
    left: 10px;
    width: 60px;
  }
}

@media (max-width: 767px) {
  .anchor-buttons:before {
    bottom: -27px;
    left: 20px;
    width: 36px;
  }
}

.anchor-buttons:after {
  content: "";
  position: absolute;
  bottom: -77px;
  right: 10px;
  width: 73px;
  aspect-ratio: 145 / 286;
  background: url("../img/css/about/about_deco04.png") no-repeat center / contain;
}

@media (max-width: 991px) {
  .anchor-buttons:after {
    bottom: -77px;
    right: 10px;
    width: 62px;
  }
}

@media (max-width: 767px) {
  .anchor-buttons:after {
    bottom: -27px;
    right: 20px;
    width: 36px;
  }
}

.anchor-link {
  border-radius: 10px;
  color: #472a09;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  width: 300px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s;
  position: relative;
}

@media (max-width: 767px) {
  .anchor-link {
    border-radius: 7px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: bold;
    width: 160px;
    height: 50px;
  }
}

@media (max-width: 359px) {
  .anchor-link {
    width: 140px;
    font-size: 13px;
  }
}

.anchor-link.pink {
  background-color: #fdf6f2;
  border: #f5aaa4 solid 2px;
}

.anchor-link.orange {
  background-color: #fdf8ec;
  border: #f3c875 solid 2px;
}

.anchor-link.green {
  background-color: #f9fbf3;
  border: #bec684 solid 2px;
}

.anchor-link.blue {
  background-color: #f3f4f9;
  border: #a5bada solid 2px;
}

.anchor-link.purple {
  background-color: #f7f1f7;
  border: #cdb5d3 solid 2px;
}

@media screen and (max-width: 767px) {
  .anchor-link {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .anchor-link .blake {
    flex-basis: 100%;
    margin-top: -4px;
  }
}

.anchor-link_area:nth-child(-n + 3) {
  margin-bottom: 3rem;
}

@media (max-width: 991px) {
  .anchor-link_area:nth-child(-n + 4) {
    margin-bottom: 2rem;
  }
}

.anchor-link:after {
  content: "";
  width: 16px;
  aspect-ratio: 34 / 30;
  background-image: url("../img/css/about/anchor_arrow.png");
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
  right: 20px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .anchor-link:after {
    width: 9px;
    right: 6px;
  }
}

@media (max-width: 359px) {
  .anchor-link:after {
    width: 8px;
    right: 4px;
  }
}

.anchor-link:hover:after {
  transform: translateY(3px);
  transition: 0.3s;
}

.anchor-link:hover {
  opacity: 0.8;
}

/* ==================== Present ==================== */

/* 親要素：外側の黄色太枠 ＋ イラストの起点 */

.contents-box.present {
  position: relative;
  background-color: #fff;
  border: 16px solid #fff5cc;
  border-radius: 20px;
  padding: 0;
  width: 960px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .contents-box.present {
    width: 92%;
  }
}

@media (max-width: 991px) {
  .contents-box.present {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .contents-box.present {
    width: 90%;
    border: 10px solid #fff5cc;
  }
}

/* 破線枠：SVGで黄色枠の上に破線を描画 */

.present .dashed-frame {
  padding: 50px 40px 70px 40px;
  margin: -8px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect x="0.75" y="0.75" width="calc(100% - 1.5px)" height="calc(100% - 1.5px)" fill="none" rx="10" ry="10" stroke="%23ffd247" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 7"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media (max-width: 767px) {
  .present .dashed-frame {
    padding: 35px 20px 31px 20px;
    margin: -5px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}

/* 右下のイラスト（擬似要素） */

.contents-box.present::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -40px;
  width: 86px;
  aspect-ratio: 86 / 131;
  background: url("../img/css/about/box_deco_yellow.png") no-repeat center / contain;
  z-index: 10;
}

@media (max-width: 767px) {
  .contents-box.present::after {
    bottom: -16px;
    right: -20px;
    width: 44px;
  }
}

.present-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .present-title {
    font-size: 20px;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
}

.present-img {
  width: 325px;
  margin-right: 30px;
}

@media (max-width: 991px) {
  .present-img {
    margin-bottom: 2rem;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .present-img {
    max-width: 240px;
    width: 100%;
  }
}

.present-text {
  margin-bottom: 3rem;
  color: #5a3e2b;
  font-size: 20px;
  text-align: left;
}

@media (max-width: 991px) {
  .present-text {
    padding-right: 0rem;
  }
}

@media (max-width: 767px) {
  .present-text {
    margin-bottom: 2rem;
    font-size: 16px;
  }
}

.present-annotation {
  /*display: flex;*/
  /*justify-content: center;*/
  /*width: max-content;*/
  margin: 20px auto 0 auto;
  font-size: 16px;
  color: #5a3e2b;
  text-align: center;
}

@media (max-width: 767px) {
  .present-annotation {
    margin-top: 20px;
    font-size: 14px;
    color: #5a3e2b;
  }
}

.present-annotation p {
  /*display: block !important;*/
  /*width: fit-content !important;*/
  /*text-align: left;*/
  /*margin: 0;*/
}

.present-annotation span {
  display: inline-block;
}

/* ==================== section1 ==================== */

.section1 {
  position: relative;
  padding-top: 0;
  padding-bottom: 180px;
  background-color: #fffcf2;
}

@media (max-width: 991px) {
  .section1 {
    padding-top: 27px;
  }
}

@media (max-width: 767px) {
  .section1 {
    padding-top: 0px;
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .section1 {
    padding-bottom: 110px;
  }
}

.section1:before {
  content: "";
  position: absolute;
  background-image: url("../img/css/sec1/sec01_separate_pc.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100px;
  background-position: center;
  bottom: 100%;
}

@media (max-width: 991px) {
  .section1:before {
    background-image: url("../img/css/sec1/sec01_separate_sp.png");
    height: 40px;
  }
}

.section1 .section-title-area {
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .section1 .section-title-area {
    margin-bottom: 30px;
  }
}

.sec1-img {
  text-align: center;
}

.sec1-img img {
  width: 100%;
}

@media (max-width: 991px) {
  .sec1-img img {
    width: 70%;
  }
}

@media (max-width: 767px) {
  .sec1-img img {
    max-width: 298px;
    width: 90%;
  }
}

/* ==================== section2 ==================== */

.section2 {
  position: relative;
  padding-top: 20px;
  padding-bottom: 220px;
  background-color: #ffffff;
}

@media (max-width: 767px) {
  .section2 {
    padding-bottom: 150px;
  }
}

@media (max-width: 575px) {
  .section2 {
    padding-bottom: 80px;
  }
}

.section2:before {
  content: "";
  position: absolute;
  background-image: url("../img/css/sec2/sec02_separate_pc.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100px;
  background-position: center;
  bottom: 100%;
}

@media (max-width: 991px) {
  .section2:before {
    background-image: url("../img/css/sec2/sec02_separate_sp.png");
    height: 40px;
  }
}

.section2 .section-title-area {
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .section2 .section-title-area {
    margin-bottom: 40px;
  }
}

.section2-text span {
  display: inline-block;
}

/* artist01 */

/* 親要素：外側の黄色太枠 ＋ イラストの起点 */

.contents-box.pink {
  position: relative;
  background-color: #fff;
  border: 16px solid #fff4f5;
  border-radius: 20px;
  padding: 0;
  width: 900px;
  margin: 0 auto 70px auto;
}

@media (max-width: 991px) {
  .contents-box.pink {
    width: 70%;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .contents-box.pink {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .contents-box.pink {
    max-width: 335px;
    width: 90%;
  }
}

/* 破線枠：SVGで黄色枠の上に破線を描画 */

.pink .dashed-frame {
  padding: 40px 30px;
  margin: -8px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect x="0.75" y="0.75" width="calc(100% - 1.5px)" height="calc(100% - 1.5px)" fill="none" rx="10" ry="10" stroke="%23ffc0c0" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 7"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media (max-width: 767px) {
  .pink .dashed-frame {
    padding: 25px 20px;
  }
}


/* 右上のイラスト（擬似要素） */

.contents-box.pink::after {
  content: "";
  position: absolute;
  top: -28px;
  right: -52px;
  width: 119px;
  aspect-ratio: 119 / 120;
  background: url("../img/css/sec2/box_deco_pink.png") no-repeat center / contain;
  z-index: 10;
}

@media (max-width: 767px) {
  .contents-box.pink::after {
    top: -25px;
    right: -32px;
    width: 64px;
  }
}

/* artist02 */

/* 親要素：外側の黄色太枠 ＋ イラストの起点 */

.contents-box.green {
  position: relative;
  background-color: #fff;
  border: 16px solid #eef9df;
  border-radius: 20px;
  padding: 0;
  width: 900px;
  margin: 0 auto 70px auto;
}

@media (max-width: 991px) {
  .contents-box.green {
    width: 70%;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .contents-box.green {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .contents-box.green {
    max-width: 335px;
    width: 90%;
  }
}

/* 破線枠 */

.green .dashed-frame {
  padding: 40px 30px;
  margin: -8px;
  padding: 40px 30px;
  margin: -8px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect x="0.75" y="0.75" width="calc(100% - 1.5px)" height="calc(100% - 1.5px)" fill="none" rx="10" ry="10" stroke="%23c9d8a5" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 7"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 10;
}

@media (max-width: 767px) {
  .green .dashed-frame {
    padding: 25px 20px;
  }
}

/* 左上のイラスト */

.contents-box.green::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -52px;
  width: 117px;
  aspect-ratio: 233 / 262;
  background: url("../img/css/sec2/box_deco_green.png") no-repeat center / contain;
  z-index: 10;
}

@media (max-width: 767px) {
  .contents-box.green::before {
    top: -25px;
    left: -32px;
    width: 64px;
  }
}

/* artist03 */

/* 親要素：外側の黄色太枠 ＋ イラストの起点 */

.contents-box.orange {
  position: relative;
  background-color: #fff;
  border: 16px solid #fff5ea;
  border-radius: 20px;
  padding: 0;
  width: 900px;
  margin: 0 auto 70px auto;
}

@media (max-width: 991px) {
  .contents-box.orange {
    width: 70%;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .contents-box.orange {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .contents-box.orange {
    max-width: 335px;
    width: 90%;
  }
}

/* 破線枠 */

.orange .dashed-frame {
  padding: 40px 30px;
  margin: -8px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect x="0.75" y="0.75" width="calc(100% - 1.5px)" height="calc(100% - 1.5px)" fill="none" rx="10" ry="10" stroke="%23fcc394" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 7"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media (max-width: 767px) {
  .orange .dashed-frame {
    padding: 25px 20px;
  }
}

/* 右下のイラスト */

.contents-box.orange::after {
  content: "";
  position: absolute;
  bottom: -29px;
  right: -43px;
  width: 77px;
  aspect-ratio: 155 / 272;
  background: url("../img/css/sec2/box_deco_orange.png") no-repeat center / contain;
  z-index: 10;
}

@media (max-width: 767px) {
  .contents-box.orange::after {
    bottom: -90px;
    right: -26px;
    width: 45px;
    margin-bottom: 60px;
  }
}

/* artist04 */

/* 親要素：外側の黄色太枠 ＋ イラストの起点 */

.contents-box.blue {
  position: relative;
  background-color: #fff;
  border: 16px solid #e4eeff;
  border-radius: 20px;
  padding: 0;
  width: 900px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .contents-box.blue {
    width: 70%;
  }
}

@media (max-width: 575px) {
  .contents-box.blue {
    max-width: 335px;
    width: 90%;
  }
}

/* 破線枠 */

.blue .dashed-frame {
  padding: 40px 30px;
  margin: -8px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect x="0.75" y="0.75" width="calc(100% - 1.5px)" height="calc(100% - 1.5px)" fill="none" rx="10" ry="10" stroke="%23b2baec" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 7"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media (max-width: 767px) {
  .blue .dashed-frame {
    padding: 25px 20px;
  }
}

/* 左上のイラスト */

.contents-box.blue::before {
  content: "";
  position: absolute;
  bottom: -39px;
  left: -39px;
  width: 78px;
  aspect-ratio: 156 / 271;
  background: url("../img/css/sec2/box_deco_blue.png") no-repeat center / contain;
  z-index: 10;
}

@media (max-width: 767px) {
  .contents-box.blue::before {
    bottom: -26px;
    left: -22px;
    width: 37px;
  }
}

/* artist03 */

.artist-img {
  text-align: center;
  margin-bottom: 20px;
}

.artist-img img {
  max-width: 808px;
  width: 100%;
}

@media (max-width: 991px) {
  .artist-img img {
    width: 80%;
  }
}

@media (max-width: 575px) {
  .artist-img img {
    width: 94%;
  }
}

/* artist-recipe */

.artist-recipe-box {
  padding: 20px 20px;
  border-radius: 10px;
}

.pink .artist-recipe-box {
  background-color: #fff4f5;
}

.green .artist-recipe-box {
  background-color: #eff7e5;
}

.orange .artist-recipe-box {
  background-color: #fffaf4;
}

.blue .artist-recipe-box {
  background-color: #eff5ff;
}

.artist-recipe-img {
  width: 370px;
  margin-right: 18px;
}

@media (max-width: 991px) {
  .artist-recipe-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}

.artist-recipe-title {
  font-weight: bold;
  color: #4b2819;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .artist-recipe-title {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

.artist-recipe-title:hover {
  opacity: 0.6;
  /*color: #5a320a;*/
}

.recipe-detail {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .recipe-detail {
    margin-bottom: 5px;
  }
}

.recipe-time {
  background-image: url(../img/css/common/icon_clock.png);
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: 0% 50%;
  padding-left: 25px;
  color: #4b2819;
}

@media (max-width: 767px) {
  .recipe-time {
    font-size: 16px;
    background-size: 15px;
    padding-left: 18px;
  }
}

.recipe-time span {
  font-size: 20px;
}

@media (max-width: 767px) {
  .recipe-time span {
    font-size: 16px;
  }
}

.category {
  font-weight: bold;
  color: #ffffff;
  padding: 0px 10px 1px 10px;
  border-radius: 5px;
  margin-left: 8px;
}

@media (max-width: 767px) {
  .category {
    padding: 0px 8px 1px 8px;
    border-radius: 4px;
    margin-left: 7px;
    line-height: 1.5;
    font-size: 14px;
  }
}

.recipe-link-m .category {
  font-weight: bold;
  color: #ffffff;
  padding: 0px 10px 1px 10px;
  border-radius: 5px;
  margin-left: 6px;
  line-height: 1.4;
}

.recipe-link-s .category {
  font-weight: bold;
  color: #ffffff;
  padding: 0px 8px 1px 8px;
  border-radius: 5px;
  margin-left: 6px;
  line-height: 1.4;
  font-size: 14px;
}

.category.staple {
  background-color: #fd87b9;
}

.category.main {
  background-color: #ff7373;
}

.category.side {
  background-color: #ffac5b;
}

.category.seasoning {
  background-color: #a1a1a1;
}

.category.soup {
  background-color: #B2DC29;
}

.category.drink {
  background-color: #7dd9d2;
}

.category.dessert {
  background-color: #81ACF0;
}

.artist-recipe-text {
  color: #472a09;
  font-size: 18px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .artist-recipe-text {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

/* ==================== section2-content ==================== */

.sec2-tab-content {
  text-align: center;
}

.sec2-tab-content.sec2-tab1 .content-box {
  border-radius: 3rem;
  background-image: url("css/sec2/sec02_day1_bg1.png");
}

@media (max-width: 767px) {
  .sec2-tab-content.sec2-tab1 .content-box {
    border-radius: 2rem;
  }
}

.sec2-tab-content.sec2-tab2 .content-box {
  border-radius: 3rem;
  background-image: url("css/sec2/sec02_day2_bg1.png");
}

@media (max-width: 767px) {
  .sec2-tab-content.sec2-tab2 .content-box {
    border-radius: 2rem;
  }
}

.sec2-tab-content.sec2-tab3 .content-box {
  border-radius: 3rem;
  background-image: url("css/sec2/sec02_day3_bg1.png");
}

@media (max-width: 767px) {
  .sec2-tab-content.sec2-tab3 .content-box {
    border-radius: 2rem;
  }
}

.sec2-tab-content.sec2-tab1 .content-heading {
  text-align: center;
  margin-bottom: -10px;
  padding-top: 40px;
}

@media (max-width: 991px) {
  .sec2-tab-content.sec2-tab1 .content-heading {
    padding-top: 60px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .sec2-tab-content.sec2-tab1 .content-heading {
    margin-bottom: 1.5rem;
    padding-top: 45px;
  }
}

@media (max-width: 575px) {
  .sec2-tab-content.sec2-tab1 .content-heading {
    margin-bottom: 1.5rem;
    padding-top: 30px;
  }
}

.content-heading {
  text-align: center;
  margin-bottom: -20px;
  padding-top: 40px;
}

@media (max-width: 991px) {
  .content-heading {
    padding-top: 20px;
    margin-bottom: -20px;
  }
}

@media (max-width: 767px) {
  .content-heading {
    padding-top: 11px;
  }
}

@media (max-width: 575px) {
  .content-heading {
    margin-bottom: 1.5rem;
    padding-top: 9px;
  }
}

.sec2-tab-content.sec2-tab1 .content-heading {
  background-image: url("css/sec2/sec02_day1_title_bg_pc.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 1100 / 204;
  background-size: cover;
}

@media (max-width: 991px) {
  .sec2-tab-content.sec2-tab1 .content-heading {
    background-image: url("css/sec2/sec02_day1_title_bg_sp.png");
    aspect-ratio: 730 / 217;
  }
}

.sec2-tab-content.sec2-tab2 .content-heading {
  background-image: url("css/sec2/sec02_day2_title_bg_pc.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 1100 / 204;
  background-size: cover;
}

.sec2-tab-content.sec2-tab3 .content-heading {
  background-image: url("css/sec2/sec02_day3_title_bg_pc.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 2200 / 408;
  background-size: cover;
}

.content-title {
  display: inline-block;
  position: relative;
  width: 444px;
}

@media (max-width: 1199px) {
  .content-title {
    width: calc(444px * 0.9);
  }
}

@media (max-width: 991px) {
  .content-title {
    width: calc(356px * 1);
  }
}

@media (max-width: 767px) {
  .content-title {
    width: 53%;
  }
}

@media (max-width: 991px) {
  .sec2-tab1 .content-title {
    transform: translateX(-40px);
  }
}

@media (max-width: 767px) {
  .sec2-tab1 .content-title {
    transform: translateX(-19px);
  }
}

.sec2-tab1 .content-title:after {
  content: "";
  position: absolute;
  background-image: url("css/sec2/sec02_merli_pc.png");
  background-size: cover;
  width: 341px;
  aspect-ratio: 681 / 422;
  top: -6px;
  right: -263px;
}

@media (max-width: 1199px) {
  .sec2-tab1 .content-title:after {
    width: 320px;
    aspect-ratio: 681 / 422;
    top: 20px;
    right: -210px;
  }
}

@media (max-width: 991px) {
  .sec2-tab1 .content-title:after {
    background-image: url("css/sec2/sec02_merli_sp.png");
    width: 307px;
    aspect-ratio: 317 / 211;
    top: -32px;
    right: -194px;
  }
}

@media (max-width: 767px) {
  .sec2-tab1 .content-title:after {
    width: calc(317px * 0.6);
    top: -5px;
    right: -119px;
  }
}

@media (max-width: 575px) {
  .sec2-tab1 .content-title:after {
    width: calc(317px * 0.5);
    top: -20px;
    right: -91px;
  }
}

.day1-spot1 {
  padding-bottom: 200px;
  position: relative;
}

@media (max-width: 767px) {
  .day1-spot1 {
    padding-bottom: 150px;
  }
}

@media (max-width: 575px) {
  .day1-spot1 {
    padding-bottom: 95px;
  }
}

@media (min-width: 992px) {
  .day1-spot1:after {
    content: "";
    position: absolute;
    background-image: url("css/sec2/sec02_deco01_pc.png");
    background-repeat: no-repeat;
    background-size: cover;
    right: 110px;
    bottom: 122px;
    width: 117px;
    aspect-ratio: 234/ 134;
  }
}

.day1-img1 {
  text-align: center;
  width: 1091px;
  margin: 0 auto 4rem auto;
}

@media (max-width: 1199px) {
  .day1-img1 {
    max-width: 95%;
  }
}

@media (max-width: 767px) {
  .day1-img1 {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.day1-spot2 {
  padding-bottom: 210px;
  position: relative;
  background-image: url("css/sec2/sec02_day1_bg2.png");
}

@media (max-width: 767px) {
  .day1-spot2 {
    padding-bottom: 150px;
  }
}

@media (max-width: 575px) {
  .day1-spot2 {
    padding-bottom: 90px;
  }
}

.day1-spot2:before {
  content: "";
  position: absolute;
  background-image: url("css/sec2/sec02_day1_separate01_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  aspect-ratio: 2200 / 274;
  bottom: 100%;
  left: 0;
}

@media (max-width: 991px) {
  .day1-spot2:before {
    background-image: url("css/sec2/sec02_day1_separate01_sp.png");
    aspect-ratio: 730 / 112;
    bottom: 100%;
  }
}

@media (min-width: 992px) {
  .day1-spot2:after {
    content: "";
    position: absolute;
    background-image: url("css/sec2/sec02_deco02_pc.png");
    background-repeat: no-repeat;
    background-size: cover;
    right: 100px;
    bottom: 94px;
    width: 174px;
    aspect-ratio: 348/ 256;
  }
}

.day1-img2 {
  text-align: center;
  width: 1038px;
  margin: 0 auto 10px auto;
}

@media (max-width: 1199px) {
  .day1-img2 {
    width: 95%;
  }
}

@media (max-width: 767px) {
  .day1-img2 {
    width: 96%;
    margin-bottom: 20px;
  }
}

.day1-img3 {
  text-align: center;
  width: 1066px;
  margin: 0 auto;
  transform: translateX(-35px);
  pointer-events: none;
}

@media (max-width: 1199px) {
  .day1-img3 {
    width: 95%;
  }
}

@media (max-width: 991px) {
  .day1-img3 {
    transform: translateX(0);
    width: 95%;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .day1-img3 {
    margin-bottom: 26px;
  }
}

.day1-img4 {
  text-align: center;
  margin: 0 auto;
  width: 100%;
  transform: translateX(-10px);
  margin-top: 20px;
  pointer-events: none;
}

@media (max-width: 1199px) {
  .day1-img4 {
    width: 95%;
  }
}

@media (max-width: 991px) {
  .day1-img4 {
    width: 100%;
    transform: translateX(0);
    margin-top: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .day1-img4 {
    width: 98%;
    margin-bottom: 24px;
  }
}

.day1-img5 {
  text-align: center;
  width: 1109px;
  margin: 70px auto 30px auto;
  transform: translateX(-46px);
}

@media (max-width: 1199px) {
  .day1-img5 {
    width: 95%;
    transform: translateX(-59px);
  }
}

@media (max-width: 991px) {
  .day1-img5 {
    margin-top: 0;
    margin-bottom: 30px;
    transform: translateX(12px);
  }
}

@media (max-width: 767px) {
  .day1-img5 {
    width: 100%;
    margin-bottom: 24px;
  }
}

@media (max-width: 575px) {
  .day1-img5 {
    transform: translateX(6px);
  }
}

.day1-spot3 {
  padding-top: 10px;
  padding-bottom: 190px;
  position: relative;
  background-image: url("css/sec2/sec02_day1_bg1.png");
}

@media (max-width: 991px) {
  .day1-spot3 {
    padding-bottom: 170px;
  }
}

@media (max-width: 767px) {
  .day1-spot3 {
    padding-bottom: 150px;
  }
}

@media (max-width: 575px) {
  .day1-spot3 {
    padding-bottom: 84px;
  }
}

.day1-spot3:before {
  content: "";
  position: absolute;
  background-image: url("css/sec2/sec02_day1_separate02_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  aspect-ratio: 2200 / 274;
  bottom: 100%;
  left: 0;
}

@media (max-width: 991px) {
  .day1-spot3:before {
    background-image: url("css/sec2/sec02_day1_separate02_sp.png");
    aspect-ratio: 730 / 103;
  }
}

@media (min-width: 992px) {
  .day1-spot3:after {
    content: "";
    position: absolute;
    background-image: url("css/sec2/sec02_deco03_pc.png");
    background-repeat: no-repeat;
    background-size: cover;
    right: 100px;
    bottom: 152px;
    width: 177px;
    aspect-ratio: 354/ 196;
  }
}

.day1-img6 {
  text-align: center;
  width: 1122px;
  margin: 0 auto 30px auto;
  transform: translateX(-3px);
}

@media (max-width: 1199px) {
  .day1-img6 {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .day1-img6 {
    margin-bottom: 40px;
    transform: translateX(14px);
  }
}

@media (max-width: 767px) {
  .day1-img6 {
    width: 101%;
    margin-bottom: 24px;
    transform: translateX(7px);
  }
}

@media (max-width: 575px) {
  .day1-img6 {
    transform: translateX(3px);
  }
}

.day1-spot4 {
  padding-bottom: 110px;
  position: relative;
  background-image: url("css/sec2/sec02_day1_bg2.png");
}

@media (max-width: 991px) {
  .day1-spot4 {
    padding-bottom: 150px;
  }
}

@media (max-width: 767px) {
  .day1-spot4 {
    padding-bottom: 150px;
  }
}

@media (max-width: 575px) {
  .day1-spot4 {
    padding-bottom: 90px;
  }
}

.day1-spot4:before {
  content: "";
  position: absolute;
  background-image: url("css/sec2/sec02_day1_separate01_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  aspect-ratio: 2200 / 274;
  bottom: 100%;
  left: 0;
}

@media (max-width: 991px) {
  .day1-spot4:before {
    background-image: url("css/sec2/sec02_day1_separate01_sp.png");
    aspect-ratio: 730 / 103;
  }
}

.day1-img7 {
  text-align: center;
  width: 1074px;
  margin: 0 auto;
  transform: translateX(-17px);
}

@media (max-width: 1199px) {
  .day1-img7 {
    width: 96%;
  }
}

@media (max-width: 991px) {
  .day1-img7 {
    margin-bottom: 40px;
    transform: translateX(-11px);
  }
}

@media (max-width: 767px) {
  .day1-img7 {
    width: 99%;
    margin-bottom: 24px;
  }
}

@media (max-width: 575px) {
  .day1-img7 {
    transform: translateX(-7px);
  }
}

/* day2-spot */

.day2-spot1 {
  padding-bottom: 200px;
  position: relative;
}

@media (max-width: 767px) {
  .day2-spot1 {
    padding-bottom: 150px;
  }
}

@media (max-width: 575px) {
  .day2-spot1 {
    padding-bottom: 95px;
  }
}

@media (min-width: 992px) {
  .day2-spot1:after {
    content: "";
    position: absolute;
    background-image: url("css/sec2/sec02_deco01_pc.png");
    background-repeat: no-repeat;
    background-size: cover;
    right: 130px;
    bottom: 122px;
    width: 117px;
    aspect-ratio: 234/ 134;
  }
}

.day2-spot2 {
  padding-bottom: 50px;
  position: relative;
  background-image: url("css/sec2/sec02_day2_bg2.png");
}

@media (max-width: 767px) {
  .day2-spot2 {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .day2-spot2 {
    padding-bottom: 20px;
  }
}

.day2-spot2:before {
  content: "";
  position: absolute;
  background-image: url("css/sec2/sec02_day2_separate01_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  aspect-ratio: 1100 / 137;
  bottom: 100%;
  left: 0;
}

@media (max-width: 991px) {
  .day2-spot2:before {
    background-image: url("css/sec2/sec02_day2_separate01_sp.png");
    aspect-ratio: 730 / 107;
    bottom: 100%;
  }
}

.day2-spot2:before {
  content: "";
  position: absolute;
  background-image: url("css/sec2/sec02_day2_separate01_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  aspect-ratio: 1100 / 137;
  bottom: 100%;
  left: 0;
}

@media (max-width: 991px) {
  .day2-spot2:before {
    background-image: url("css/sec2/sec02_day2_separate01_sp.png");
    aspect-ratio: 730 / 107;
    bottom: 100%;
  }
}

.day2-spot3 {
  padding-bottom: 210px;
  position: relative;
  background-image: url("css/sec2/sec02_day2_bg1.png");
}

@media (max-width: 767px) {
  .day2-spot3 {
    padding-top: 20px;
    padding-bottom: 150px;
  }
}

@media (max-width: 575px) {
  .day2-spot3 {
    padding-bottom: 90px;
  }
}

.day2-spot3:before {
  content: "";
  position: absolute;
  background-image: url("css/sec2/sec02_day2_separate03_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  aspect-ratio: 1100 / 137;
  bottom: 100%;
  left: 0;
}

@media (max-width: 991px) {
  .day2-spot3:before {
    background-image: url("css/sec2/sec02_day2_separate03_sp.png");
    aspect-ratio: 730 / 107;
    bottom: 100%;
  }
}

@media (min-width: 992px) {
  .day2-spot3:after {
    content: "";
    position: absolute;
    background-image: url("css/sec2/sec02_deco05_pc.png");
    background-repeat: no-repeat;
    background-size: cover;
    left: 160px;
    bottom: 192px;
    width: 117px;
    aspect-ratio: 310/ 208;
  }
}

.day2-spot4 {
  padding-bottom: 240px;
  position: relative;
  background-image: url("css/sec2/sec02_day2_bg2.png");
}

@media (max-width: 767px) {
  .day2-spot4 {
    padding-top: 20px;
    padding-bottom: 150px;
  }
}

@media (max-width: 575px) {
  .day2-spot4 {
    padding-bottom: 90px;
  }
}

.day2-spot4:before {
  content: "";
  position: absolute;
  background-image: url("css/sec2/sec02_day2_separate04_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  aspect-ratio: 1100 / 137;
  bottom: 100%;
  left: 0;
}

@media (max-width: 991px) {
  .day2-spot4:before {
    background-image: url("css/sec2/sec02_day2_separate04_sp.png");
    aspect-ratio: 730 / 111;
    bottom: 100%;
  }
}

@media (min-width: 992px) {
  .day2-spot4:after {
    content: "";
    position: absolute;
    background-image: url("css/sec2/sec02_deco02_pc.png");
    background-repeat: no-repeat;
    background-size: cover;
    right: 80px;
    bottom: 132px;
    width: 174px;
    aspect-ratio: 348/ 250;
  }
}

.day2-spot5 {
  padding-bottom: 150px;
  position: relative;
  background-image: url("css/sec2/sec02_day2_bg1.png");
}

@media (max-width: 767px) {
  .day2-spot5 {
    padding-top: 20px;
    padding-bottom: 120px;
  }
}

@media (max-width: 575px) {
  .day2-spot5 {
    padding-bottom: 70px;
  }
}

.day2-spot5:before {
  content: "";
  position: absolute;
  background-image: url("css/sec2/sec02_day2_separate05_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  aspect-ratio: 1100 / 137;
  bottom: 100%;
  left: 0;
}

@media (max-width: 991px) {
  .day2-spot5:before {
    background-image: url("css/sec2/sec02_day2_separate05_sp.png");
    aspect-ratio: 730 / 113;
    bottom: 100%;
  }
}

/* day3-spot */

.day3-spot1 {
  padding-top: 40px;
  padding-bottom: 200px;
  position: relative;
}

@media (max-width: 767px) {
  .day3-spot1 {
    padding-top: 0;
    padding-bottom: 150px;
  }
}

@media (max-width: 575px) {
  .day3-spot1 {
    padding-bottom: 95px;
  }
}

@media (min-width: 992px) {
  .day3-spot1:after {
    content: "";
    position: absolute;
    background-image: url("css/sec2/sec02_deco06_pc.png");
    background-repeat: no-repeat;
    background-size: cover;
    right: 80px;
    bottom: 152px;
    width: 189px;
    aspect-ratio: 378/ 268;
  }
}

.day3-spot2 {
  padding-bottom: 190px;
  position: relative;
  background-image: url("css/sec2/sec02_day3_bg2.png");
}

@media (max-width: 767px) {
  .day3-spot2 {
    padding-top: 20px;
    padding-bottom: 140px;
  }
}

@media (max-width: 575px) {
  .day3-spot2 {
    padding-bottom: 90px;
  }
}

.day3-spot2:before {
  content: "";
  position: absolute;
  background-image: url("css/sec2/sec02_day3_separate01_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  aspect-ratio: 1100 / 137;
  bottom: 100%;
  left: 0;
}

@media (max-width: 991px) {
  .day3-spot2:before {
    background-image: url("css/sec2/sec02_day3_separate01_sp.png");
    aspect-ratio: 730 / 107;
    bottom: 100%;
  }
}

@media (min-width: 992px) {
  .day3-spot2:after {
    content: "";
    position: absolute;
    background-image: url("css/sec2/sec02_deco07_pc.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 112px;
    background-position: center;
    aspect-ratio: 224 / 140;
    bottom: 114px;
    right: 120px;
  }
}

.day3-spot3 {
  padding-bottom: 180px;
  position: relative;
  background-image: url("css/sec2/sec02_day3_bg1.png");
}

@media (max-width: 767px) {
  .day3-spot3 {
    padding-bottom: 150px;
  }
}

@media (max-width: 575px) {
  .day3-spot3 {
    padding-bottom: 90px;
  }
}

.day3-spot3:before {
  content: "";
  position: absolute;
  background-image: url("css/sec2/sec02_day3_separate02_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  aspect-ratio: 2200 / 274;
  bottom: 100%;
  left: 0;
}

@media (max-width: 991px) {
  .day3-spot3:before {
    background-image: url("css/sec2/sec02_day3_separate02_sp.png");
    aspect-ratio: 730 / 101;
    bottom: 100%;
  }
}

@media (min-width: 992px) {
  .day3-spot3:after {
    content: "";
    position: absolute;
    background-image: url("css/sec2/sec02_deco08_pc.png");
    background-repeat: no-repeat;
    background-size: cover;
    right: 90px;
    bottom: 92px;
    width: 196px;
    aspect-ratio: 392/ 242;
  }
}

.day3-spot4 {
  padding-bottom: 240px;
  position: relative;
  background-image: url("css/sec2/sec02_day3_bg2.png");
}

@media (max-width: 767px) {
  .day3-spot4 {
    padding-top: 20px;
    padding-bottom: 150px;
  }
}

@media (max-width: 575px) {
  .day3-spot4 {
    padding-bottom: 90px;
  }
}

.day3-spot4:before {
  content: "";
  position: absolute;
  background-image: url("css/sec2/sec02_day3_separate01_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  aspect-ratio: 2200 / 274;
  bottom: 100%;
  left: 0;
}

@media (max-width: 991px) {
  .day3-spot4:before {
    background-image: url("css/sec2/sec02_day3_separate01_sp.png");
    aspect-ratio: 730 / 114;
    bottom: 100%;
  }
}

@media (min-width: 992px) {
  .day3-spot4:after {
    content: "";
    position: absolute;
    background-image: url("css/sec2/sec02_deco02_pc.png");
    background-repeat: no-repeat;
    background-size: cover;
    right: 80px;
    bottom: 132px;
    width: 174px;
    aspect-ratio: 348/ 250;
  }
}

.day3-spot5 {
  padding-bottom: 150px;
  position: relative;
  background-image: url("css/sec2/sec02_day3_bg1.png");
}

@media (max-width: 767px) {
  .day3-spot5 {
    padding-top: 20px;
    padding-bottom: 120px;
  }
}

@media (max-width: 575px) {
  .day3-spot5 {
    padding-bottom: 70px;
  }
}

.day3-spot5:before {
  content: "";
  position: absolute;
  background-image: url("css/sec2/sec02_day3_separate02_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  aspect-ratio: 2200 / 274;
  bottom: 100%;
  left: 0;
}

@media (max-width: 991px) {
  .day3-spot5:before {
    background-image: url("css/sec2/sec02_day3_separate02_sp.png");
    aspect-ratio: 730 / 101;
    bottom: 100%;
  }
}

@media (min-width: 992px) {
  .day3-spot5:after {
    content: "";
    position: absolute;
    background-image: url("css/sec2/sec02_deco10_pc.png");
    background-repeat: no-repeat;
    background-size: cover;
    right: 150px;
    bottom: 72px;
    width: 135px;
    aspect-ratio: 270/ 146;
  }
}

.day3-spot6 {
  padding-bottom: 150px;
  position: relative;
  background-image: url("css/sec2/sec02_day3_bg2.png");
}

@media (max-width: 767px) {
  .day3-spot6 {
    padding-top: 20px;
    padding-bottom: 110px;
  }
}

@media (max-width: 575px) {
  .day3-spot6 {
    padding-bottom: 70px;
  }
}

.day3-spot6:before {
  content: "";
  position: absolute;
  background-image: url("css/sec2/sec02_day3_separate03_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  aspect-ratio: 2200 / 274;
  bottom: 100%;
  left: 0;
}

@media (max-width: 991px) {
  .day3-spot6:before {
    background-image: url("css/sec2/sec02_day3_separate03_sp.png");
    aspect-ratio: 730 / 90;
    bottom: 100%;
  }
}

/* day2-recipe */

.day2-recipe-brown {
  position: relative;
  padding-bottom: 100px;
  background-image: url("css/sec2/sec02_day2_bg3.png");
}

@media (max-width: 991px) {
  .day2-recipe-brown {
    padding-bottom: 190px;
  }
}

@media (max-width: 767px) {
  .day2-recipe-brown {
    padding-bottom: 110px;
  }
}

@media (max-width: 575px) {
  .day2-recipe-brown {
    padding-bottom: 80px;
  }
}

.day2-recipe-brown:before {
  content: "";
  position: absolute;
  background-image: url("css/sec2/sec02_day2_separate_recipe1_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  aspect-ratio: 1100 / 94;
  bottom: 100%;
  left: 0;
}

@media (max-width: 991px) {
  .day2-recipe-brown:before {
    background-image: url("css/sec2/sec02_day2_separate_recipe1_sp.png");
    aspect-ratio: 730 / 83;
    bottom: 100%;
  }
}

.day2-recipe-green {
  position: relative;
  background-image: url("css/sec2/sec02_day2_bg2.png");
}

.day2-recipe-green:before {
  content: "";
  position: absolute;
  background-image: url("css/sec2/sec02_day2_separate02_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  aspect-ratio: 1100 / 105;
  bottom: 100%;
  left: 0;
}

@media (max-width: 991px) {
  .day2-recipe-green:before {
    background-image: url("css/sec2/sec02_day2_separate02_sp.png");
    aspect-ratio: 730 / 82;
    bottom: 100%;
  }
}

@media (min-width: 992px) {
  .day2-recipe-green:after {
    content: "";
    position: absolute;
    background-image: url("css/sec2/sec02_deco04_pc.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 177px;
    background-position: center;
    aspect-ratio: 354 / 196;
    bottom: 160px;
    right: 120px;
  }
}

/* day2-recipe */

.day2-recipe-brown .day2-recipe {
  transform: translateY(-60px);
}

@media (max-width: 991px) {
  .day2-recipe-brown .day2-recipe {
    transform: translateY(0);
  }
}

.day2-recipe-green .day2-recipe {
  transform: translateY(-160px);
}

@media (max-width: 991px) {
  .day2-recipe-green .day2-recipe {
    transform: translateY(-150px);
  }
}

@media (max-width: 767px) {
  .day2-recipe-green .day2-recipe {
    transform: translateY(-110px);
  }
}

@media (max-width: 575px) {
  .day2-recipe-green .day2-recipe {
    transform: translateY(-70px);
  }
}

.day2-recipe1 {
  width: 1066px;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .day2-recipe1 {
    width: 96%;
  }
}

@media (max-width: 991px) {
  .day2-recipe1 {
    width: 96%;
    transform: translateX(12px);
  }
}

@media (max-width: 767px) {
  .day2-recipe1 {
    width: 98%;
    transform: translateX(5px);
  }
}

@media (max-width: 575px) {
  .day2-recipe1 {
    margin-bottom: 20px;
    transform: translateX(2px);
  }
}

.day2-recipe2 {
  width: 1068px;
  margin-bottom: 40px;
  transform: translateX(30px);
}

@media (max-width: 1199px) {
  .day2-recipe2 {
    width: 96%;
  }
}

@media (max-width: 991px) {
  .day2-recipe2 {
    width: 96%;
  }
}

@media (max-width: 767px) {
  .day2-recipe2 {
    width: 98%;
    transform: translateX(15px);
  }
}

@media (max-width: 575px) {
  .day2-recipe2 {
    margin-bottom: 20px;
    transform: translateX(10px);
  }
}

.day2-recipe3 {
  width: 1065px;
}

@media (max-width: 1199px) {
  .day2-recipe3 {
    width: 96%;
  }
}

@media (max-width: 991px) {
  .day2-recipe3 {
    width: 96%;
    transform: translateX(15px);
  }
}

@media (max-width: 767px) {
  .day2-recipe3 {
    width: 96%;
    transform: translateX(10px);
  }
}

@media (max-width: 575px) {
  .day2-recipe3 {
    transform: translateX(7px);
  }
}

.day2-recipe4 {
  width: 1076px;
  margin: 0 auto;
  transform: translateX(20px);
}

@media (max-width: 1199px) {
  .day2-recipe4 {
    width: 96%;
  }
}

@media (max-width: 991px) {
  .day2-recipe4 {
    width: 96%;
    margin-bottom: 40px;
    transform: translateX(15px);
  }
}

@media (max-width: 767px) {
  .day2-recipe4 {
    width: 96%;
    margin-bottom: 30px;
    transform: translateX(10px);
  }
}

@media (max-width: 575px) {
  .day2-recipe4 {
    margin-bottom: 20px;
    transform: translateX(7px);
  }
}

/* day2-img */

.day2-img1 {
  text-align: center;
  width: 1127px;
  margin: 0 auto 4rem auto;
}

@media (max-width: 1199px) {
  .day2-img1 {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .day2-img1 {
    max-width: 95%;
    margin-bottom: 20px;
    transform: translateX(17px);
  }
}

@media (max-width: 767px) {
  .day2-img1 {
    max-width: 100%;
    transform: translateX(11px);
  }
}

@media (max-width: 575px) {
  .day2-img1 {
    margin-top: -30px;
    transform: translateX(7px);
  }
}

.day2-img2 {
  text-align: center;
  width: 1180px;
  margin: 0 auto 150px auto;
  transform: translateX(-20px);
}

@media (max-width: 1199px) {
  .day2-img2 {
    width: 104%;
    transform: translateX(-10px);
  }
}

@media (max-width: 767px) {
  .day2-img2 {
    width: 100%;
    margin-bottom: 70px;
    transform: translateX(-5px);
  }
}

.day2-img3 {
  text-align: center;
  width: 1094px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .day2-img3 {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .day2-img3 {
    width: 95%;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .day2-img3 {
    margin-bottom: 26px;
  }
}

.day2-img4 {
  text-align: center;
  margin-bottom: 30px;
  width: 1080px;
}

@media (max-width: 1199px) {
  .day2-img4 {
    margin: 0 auto;
    width: 95%;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .day2-img4 {
    width: 100%;
    transform: translateX(0);
    margin-top: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .day2-img4 {
    width: 96%;
    margin-bottom: 24px;
  }
}

.day2-img5 {
  text-align: center;
  width: 1049px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: -60px;
}

@media (max-width: 1199px) {
  .day2-img5 {
    width: 95%;
  }
}

@media (max-width: 991px) {
  .day2-img5 {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .day2-img5 {
    width: 95%;
    margin-bottom: 24px;
  }
}

@media (max-width: 575px) {
  .day2-img5 {
    transform: translateX(6px);
  }
}

.day2-img6 {
  text-align: center;
  width: 1120px;
  transform: translateX(-23px);
}

@media (max-width: 1199px) {
  .day2-img6 {
    width: 100%;
    transform: translateX(-13px);
  }
}

@media (max-width: 991px) {
  .day2-img6 {
    margin-bottom: 40px;
    transform: translateX(10px);
  }
}

@media (max-width: 767px) {
  .day2-img6 {
    width: 99%;
    margin-bottom: 24px;
    transform: translateX(7px);
  }
}

.day2-img7 {
  text-align: center;
  width: 1121px;
  /*margin: 0 auto;*/
  transform: translateX(-17px);
}

@media (max-width: 1199px) {
  .day2-img7 {
    width: 104%;
  }
}

@media (max-width: 991px) {
  .day2-img7 {
    margin-bottom: 40px;
    transform: translateX(-11px);
  }
}

@media (max-width: 767px) {
  .day2-img7 {
    width: 93%;
    margin: 0 auto;
    margin-bottom: 24px;
    transform: translateX(-4px);
  }
}

/* day3-img */

.day3-img1 {
  text-align: center;
  width: 1078px;
}

@media (max-width: 1199px) {
  .day3-img1 {
    max-width: 98%;
  }
}

@media (max-width: 991px) {
  .day3-img1 {
    max-width: 95%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .day3-img1 {
    max-width: 92%;
  }
}

.day3-img2 {
  width: 1100px;
  margin-bottom: 40px;
  transform: translateX(-20px);
}

@media (max-width: 1199px) {
  .day3-img2 {
    width: 99%;
    transform: translateX(-10px);
  }
}

@media (max-width: 991px) {
  .day3-img2 {
    margin: 0 auto;
    margin-bottom: 30px;
    width: 96%;
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .day3-img2 {
    width: 92%;
    margin-bottom: 30px;
  }
}

.day3-img3 {
  text-align: center;
  width: 1094px;
  margin-bottom: 30px;
  /*transform: translateX(-10px);*/
  /*margin: 0 auto;*/
}

@media (max-width: 1199px) {
  .day3-img3 {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .day3-img3 {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .day3-img3 {
    margin-bottom: 26px;
  }
}

.day3-img4 {
  text-align: center;
  margin-bottom: -50px;
  transform: translateX(-10px);
  width: 1094px;
  pointer-events: none;
}

@media (max-width: 1199px) {
  .day3-img4 {
    width: 98%;
    transform: translateX(-5px);
    margin-bottom: -30px;
  }
}

@media (max-width: 991px) {
  .day3-img4 {
    width: 98%;
    /*margin: 0 auto;*/
    transform: translateX(-7px);
    margin-top: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .day3-img4 {
    width: 96%;
    margin-bottom: 24px;
    transform: translateX(2px);
  }
}

.day3-img5 {
  width: 1098px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .day3-img5 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .day3-img5 {
    width: 96%;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .day3-img5 {
    margin-bottom: 20px;
  }
}

.day3-img6 {
  width: 1123px;
  margin-bottom: -40px;
  transform: translateX(-23px);
  pointer-events: none;
}

@media (max-width: 1199px) {
  .day3-img6 {
    width: 100%;
    transform: translateX(-10px);
  }
}

@media (max-width: 991px) {
  .day3-img6 {
    margin-bottom: 40px;
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .day3-img6 {
    width: 98%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

.day3-img7 {
  width: 1123px;
  transform: translateX(-17px);
}

@media (max-width: 1199px) {
  .day3-img7 {
    width: 100%;
    transform: translateX(-10px);
  }
}

@media (max-width: 991px) {
  .day3-img7 {
    margin-bottom: 40px;
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .day3-img7 {
    width: 93%;
    margin: 0 auto;
    margin-bottom: 24px;
  }
}

/* link */

.text-link {
  text-align: center;
  color: #000000;
  font-size: 20px;
}

.text-link.left {
  margin-left: 0;
  margin-right: auto;
  width: fit-content;
  padding-left: 20px;
  margin-top: -14px;
}

.text-link.right {
  margin-right: 180px;
  margin-left: auto;
  width: fit-content;
  margin-top: -164px;
}

@media (max-width: 1199px) {
  .text-link.right {
    margin-right: 150px;
    margin-top: -144px;
  }
}

.text-link a {
  text-decoration: underline;
}

.text-link a:hover {
  opacity: 0.6;
}

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

.map-btn {
  width: 31%;
}

.spot-btn {
  width: 56%;
}

.btn-link .btn:first-child {
  margin-right: 10px;
}

.content-dot {
  text-align: center;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .content-dot {
    width: 90%;
    margin: 20px auto 10px auto;
  }
}

/* ==================== section3 ==================== */

.section3 {
  position: relative;
  padding-bottom: 240px;
  background-color: #fffcf2;
}

@media (max-width: 575px) {
  .section3 {
    padding-top: 27px;
    padding-bottom: 70px;
  }
}

.section3:before {
  content: "";
  position: absolute;
  background-image: url("../img/css/sec3/sec03_separate_pc.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100px;
  background-position: center;
  bottom: 100%;
}

@media (max-width: 991px) {
  .section3:before {
    background-image: url("../img/css/sec3/sec03_separate_sp.png");
    height: 40px;
  }
}

.section3 .section-title-area {
  margin-bottom: 33px;
}

@media (max-width: 767px) {
  .section3 .section-title-area {
    margin-bottom: 30px;
  }
}

.section3-text {
  text-align: center;
  color: #472a09;
  font-size: 20px;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .section3-text {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.section3-text span {
  display: inline-block;
}

/* カテゴリボタン全体 */

.category-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 810px;
  margin: 0 auto 70px auto;
}

@media (max-width: 767px) {
  .category-buttons {
    margin-bottom: 50px;
  }
}

/* ラジオボタンは非表示 */

.recipe-tab {
  display: none;
}

/* ボタン */

.category-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  background: #fff;
  border: 2px solid #ffb82e;
  border-radius: 10px;
  color: #472a09;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

/* 選択中のボタン */

#gohan:checked ~ .category-buttons label[for="gohan"], #niku:checked ~ .category-buttons label[for="niku"], #sakana:checked ~ .category-buttons label[for="sakana"], #yasai:checked ~ .category-buttons label[for="yasai"], #kona:checked ~ .category-buttons label[for="kona"], #shiru:checked ~ .category-buttons label[for="shiru"], #pan:checked ~ .category-buttons label[for="pan"], #oyatsu:checked ~ .category-buttons label[for="oyatsu"] {
  background: #ffd490;
  border-color: #ffd490;
}

/* TAB */

@media screen and (max-width: 991px) {
  .category-buttons {
    gap: 10px;
    width: 90%;
  }
}

/* SP */

@media screen and (max-width: 767px) {
  .category-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 310px;
  }
}

@media screen and (max-width: 767px) {
  .category-button label {
    height: 50px;
    font-size: 16px;
    border-radius: 10px;
  }
}

.recipe-list {
  display: none;
}

/* 選択されたカテゴリのレシピのみ表示 */

#gohan:checked ~ .recipe-box .recipe-gohan, #niku:checked ~ .recipe-box .recipe-niku, #sakana:checked ~ .recipe-box .recipe-sakana, #yasai:checked ~ .recipe-box .recipe-yasai, #kona:checked ~ .recipe-box .recipe-kona, #shiru:checked ~ .recipe-box .recipe-shiru, #pan:checked ~ .recipe-box .recipe-pan, #oyatsu:checked ~ .recipe-box .recipe-oyatsu {
  display: flex;
}

.section3 .recipe-card:nth-child(n + 5) {
  margin-top: 20px;
}

@media (max-width: 991px) {
  .section3 .recipe-card:nth-child(n + 3) {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .section3 .recipe-card:nth-child(n + 3) {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .section3 .recipe-card:not(:last-child) {
    margin-bottom: 30px;
  }
}

.recipe-artist {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 6px;
  left: 6px;
}

@media (max-width: 767px) {
  .recipe-artist {
    bottom: 4px;
    left: 4px;
  }
}

.artist-thumbnail {
  width: 50px;
  margin-right: 5px;
  border: 1px #fff solid;
  border-radius: 100px;
}

@media (max-width: 767px) {
  .artist-thumbnail {
    width: 32px;
    margin-right: 3px;
  }
}

.artist-name {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-shadow: 0px 0px 3px #211301;
  line-height: 1.4;
  padding-right: 6px;
}

@media (max-width: 767px) {
  .artist-name {
    font-size: 14px;
    line-height: 1.3;
  }
}

.recipe-link-m {
  width: 310px;
  background-color: #fff;
  display: inline-block;
  position: relative;
  border-radius: 1.3rem;
  overflow: hidden;
  border: solid 2px #f4deb6;
  margin: 0 1rem;
  box-shadow: rgba(244,222,182,1) 5px 5px 0px;
}

@media (max-width: 767px) {
  .recipe-link-m {
    max-width: 261px;
    width: 97%;
    border-radius: 14px;
    border: solid 1px #eebb61;
    margin: 0 auto;
  }
}

.recipe-image {
  position: relative;
}

.recipe-link-m .recipe-content {
  padding: 10px 10px 20px 10px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .recipe-link-m .recipe-content {
    padding: 1rem 0.6rem;
  }
}

.recipe-link-m .recipe-detail {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .recipe-link-m .recipe-detail {
    margin-bottom: 5px;
  }
}

.recipe-link-m .recipe-time {
  background-image: url(../img/css/common/icon_clock.png);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 0% 60%;
  padding-left: 20px;
  color: #4b2819;
}

@media (max-width: 767px) {
  .recipe-link-m .recipe-time {
    font-size: 16px;
    background-size: 15px;
    padding-left: 18px;
  }
}

.recipe-link-m .recipe-time span {
  font-size: 18px;
}

@media (max-width: 767px) {
  .recipe-link-m .recipe-time span {
    font-size: 16px;
  }
}

.recipe-link-m .recipe-title {
  font-weight: bold;
  line-height: 1.4;
  font-size: 18px;
  color: #4b2819;
}

@media (max-width: 767px) {
  .recipe-link-m .recipe-title {
    font-size: 1.6rem;
    font-weight: bold;
  }
}

.recipe-link-m:hover .recipe-thumbnail {
  opacity: 0.6;
  transition: opacity 0.2s;
}

.recipe-box {
  margin: 0 -0.5rem;
}

@media (max-width: 767px) {
  .recipe-box {
    margin: 0;
  }
}

.recipe-thumbnail {
  width: 100%;
  height: auto;
}

.present-detail {
  margin: 0 auto 0 auto;
  background-color: #fffce9;
  padding: 40px 50px 60px 40px;
  width: 98%;
}

/* ==================== section4 ==================== */

.section4 {
  position: relative;
  padding-bottom: 220px;
  background-color: #ffffff;
}

@media (max-width: 991px) {
  .section4 {
    padding-top: 27px;
    padding-bottom: 120px;
  }
}

.section4:before {
  content: "";
  position: absolute;
  background-image: url("../img/css/sec4/sec04_separate_pc.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100px;
  background-position: center;
  bottom: 100%;
}

@media (max-width: 991px) {
  .section4:before {
    background-image: url("../img/css/sec4/sec04_separate_sp.png");
    height: 40px;
  }
}

.section4 .section-title-area {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .section4 .section-title-area {
    margin-bottom: 30px;
  }
}

.section4 .recipe-box {
  margin: 0 auto 80px auto;
}

@media (max-width: 991px) {
  .section4 .recipe-box {
    width: 90%;
    margin-bottom: 60px;
  }
}

@media (max-width: 991px) {
  .section4 .recipe-box {
    width: 90%;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .section4 .recipe-box {
    width: 80%;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .section4 .recipe-box {
    width: 100%;
  }
}

.section4 .recipe-card {
  display: flex;
  justify-content: center;
}

@media (max-width: 991px) {
  .section4 .recipe-box > .recipe-card:nth-child(odd) {
    justify-content: flex-end;
  }
}

@media (max-width: 991px) {
  .section4 .recipe-box > .recipe-card:nth-child(even) {
    justify-content: flex-start;
  }
}

@media (max-width: 991px) {
  .section4 .recipe-box > .recipe-card:nth-child(odd):last-child {
    max-width: 100%;
    flex: 0 0 100%;
    justify-content: center;
  }
}

.section4 .recipe-card:nth-child(n + 6) {
  margin-top: 20px;
}

@media (max-width: 991px) {
  .section4 .recipe-card:nth-child(n + 3) {
    margin-top: 10px;
  }
}

/* ==================== recipe-s ==================== */

.recipe-link-s {
  width: 192px;
  background-color: #fff;
  display: inline-block;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: solid 2px #c0daf4;
  margin: 0 5px;
  box-shadow: #c0daf4 3px 3px 0px;
}

@media (max-width: 1199px) {
  .recipe-link-s {
    width: 178px;
  }
}

@media (max-width: 991px) {
  .recipe-link-s {
    max-width: 300px;
    width: 100%;
    margin: 0 10px;
  }
}

@media (max-width: 767px) {
  .recipe-link-s {
    max-width: 160px;
    width: 100%;
    border-radius: 10px;
    border: solid 1px #c0daf4;
    margin: 0 10px;
  }
}

@media (max-width: 575px) {
  .recipe-link-s {
    max-width: 160px;
    width: 100%;
    border-radius: 0.8rem;
    margin: 0 5px;
  }
}

.recipe-link-s .recipe-content {
  padding: 10px 10px 20px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .recipe-link-s .recipe-content {
    padding: 1rem 0.6rem;
  }
}

.recipe-link-s .recipe-detail {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

@media (max-width: 767px) {
  .recipe-link-s .recipe-detail {
    margin-bottom: 5px;
  }
}

.recipe-link-s .recipe-time {
  background-image: url(../img/css/common/icon_clock.png);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 0% 60%;
  padding-left: 20px;
  color: #4b2819;
}

@media (max-width: 767px) {
  .recipe-link-s .recipe-time {
    background-size: 15px;
    padding-left: 18px;
  }
}

.recipe-link-s .recipe-time span {
  font-size: 15px;
}

@media (max-width: 767px) {
  .recipe-link-s .recipe-time span {
    font-size: 16px;
  }
}

.recipe-link-s .recipe-title {
  font-weight: bold;
  line-height: 1.4;
  font-size: 16px;
  color: #4b2819;
}

.ellipsis-2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.recipe-link-s:hover .recipe-thumbnail {
  opacity: 0.6;
  transition: opacity 0.2s;
}

/* ==================== pagination ==================== */

.pagination {
  justify-content: center;
  margin-bottom: 180px;
}

@media (max-width: 767px) {
  .pagination {
    margin-bottom: 100px;
  }
}

.page-item {
  margin: 0 10px;
  width: 54px;
  height: 54px;
  box-sizing: border-box;
}

@media (max-width: 575px) {
  .page-item {
    margin: 0 5px;
    width: 30px;
    height: 30px;
  }
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  margin-left: 0;
  color: #99b7ce;
  background-color: #fff;
  border: 2px solid #99b7ce;
  box-sizing: border-box;
  font-size: 30px;
  border-radius: 100px;
}

@media (max-width: 575px) {
  .page-link {
    border: 1.5px solid #99b7ce;
    font-size: 18px;
  }
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
  margin-left: 0;
  border-radius: 100px;
}

.page-link:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: #99b7ce;
  border-color: #99b7ce;
}

.page-link.active {
  color: #fff;
  background-color: #99b7ce;
  border: none;
  border-radius: 100px;
  background-image: none;
}

.pagination a, .pagination a:visited {
  color: #99b7ce;
}

.pagination a:hover {
  color: #fff;
}

/* ==================== past-projects ==================== */

.past-projects {
  background-color: #fffcf7;
  border: 10px solid #f4e3bf;
  border-radius: 20px;
  padding: 40px 30px 60px 30px;
  position: relative;
  width: 980px;
  margin: 0 auto;
  transform-style: preserve-3d;
  perspective: 1000px;
}

@media (max-width: 1199px) {
  .past-projects {
    width: 92%;
  }
}

@media (max-width: 767px) {
  .past-projects {
    border: 5px solid #f4e3bf;
    padding: 25px 20px;
    width: 70%;
    border-radius: 10px;
  }
}

@media (max-width: 575px) {
  .past-projects {
    max-width: 335px;
    width: 100%;
  }
}

.past-projects:before {
  content: "";
  position: absolute;
  background-image: url("../img/css/sec4/sec04_deco.png");
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 163px;
  aspect-ratio: 332 / 113;
  background-size: 100% 100%;
  transform: translateX(-50%) translateZ(-1px);
}

@media (max-width: 767px) {
  .past-projects:before {
    bottom: 100%;
    width: 120px;
    aspect-ratio: 332 / 113;
    background-size: 100% 100%;
    transform: translateX(-50%) translateZ(-1px);
  }
}

.past-projects:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #e0c8aa 50%, transparent 55%), radial-gradient(circle, #e0c8aa 50%, transparent 55%), radial-gradient(circle, #e0c8aa 50%, transparent 55%), radial-gradient(circle, #e0c8aa 50%, transparent 55%);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: top 10px left 10px, top 10px right 10px, bottom 10px left 10px, bottom 10px right 10px;
}

@media (max-width: 767px) {
  .past-projects:after {
    background-size: 10px 10px;
    background-position: top 5px left 5px, top 5px right 5px, bottom 5px left 5px, bottom 5px right 5px;
  }
}

.past-projects-title {
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 767px) {
  .past-projects-title {
    margin-bottom: 24px;
  }
}

.past-projects-title img {
  width: 483px;
}

@media (max-width: 991px) {
  .past-projects-title img {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .past-projects-title img {
    max-width: 272px;
    width: 100%;
  }
}

.projects-banner {
  display: flex;
  justify-content: center;
}

@media (max-width: 991px) {
  .projects-banner:not(:last-child) {
    margin-bottom: 20px;
  }
}

.projects-banner:nth-child(odd) {
  margin-right: 15px;
}

@media (max-width: 1199px) {
  .projects-banner:nth-child(odd) {
    margin-right: 10px;
  }
}

@media (max-width: 991px) {
  .projects-banner:nth-child(odd) {
    margin-right: 0;
  }
}

.projects-banner:nth-child(even) {
  margin-left: 15px;
}

@media (max-width: 1199px) {
  .projects-banner:nth-child(even) {
    margin-left: 10px;
  }
}

@media (max-width: 991px) {
  .projects-banner:nth-child(even) {
    margin-left: 0;
  }
}

.projects-banner img {
  width: 434px;
  box-shadow: rgba(215,184,158,1) 2px 2px 0px;
}

@media (max-width: 1199px) {
  .projects-banner img {
    width: 380px;
  }
}

.projects-banner:hover {
  opacity: 0.6;
}

/* ==================== section5 ==================== */

.section5 {
  position: relative;
  padding-bottom: 100px;
  background-color: #fffcf2;
}

@media (max-width: 991px) {
  .section5 {
    padding-top: 27px;
  }
}

@media (max-width: 767px) {
  .section5 {
    padding-bottom: 40px;
  }
}

.section5:before {
  content: "";
  position: absolute;
  background-image: url("../img/css/sec5/sec05_separate_pc.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100px;
  background-position: center;
  bottom: 100%;
}

@media (max-width: 991px) {
  .section5:before {
    background-image: url("../img/css/sec5/sec05_separate_sp.png");
    height: 40px;
  }
}

.section5 .section-title-area {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .section5 .section-title-area {
    margin-bottom: 30px;
  }
}

/* 親要素：外側の太枠 ＋ イラストの起点 */

.contents-box.purple {
  position: relative;
  background-color: #fff;
  border: 16px solid #f6f3ff;
  border-radius: 20px;
  padding: 0;
  width: 1000px;
  margin: 0 auto 70px auto;
}

@media (max-width: 1199px) {
  .contents-box.purple {
    width: 94%;
  }
}

@media (max-width: 991px) {
  .contents-box.purple {
    width: 70%;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .contents-box.purple {
    /*max-width: 335px;*/
    width: 70%;
  }
}

@media (max-width: 575px) {
  .contents-box.purple {
    max-width: 335px;
    width: 90%;
  }
}

.product-box {
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .product-box {
    width: 80%;
    margin: 0 auto 60px auto;
    /*margin-bottom: 80px;*/
  }
}

.product-img {
  max-width: 493px;
  margin-right: 30px;
}

@media (max-width: 991px) {
  .product-img {
    max-width: 493px;
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

.product-title {
  font-weight: bold;
  font-size: 24px;
  color: #472a09;
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .product-title {
    text-align: center;
  }
}

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

.product-text {
  font-size: 16px;
  color: #472a09;
  max-width: 472px;
  margin-bottom: 26px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .product-text {
    max-width: 100%;
    margin-bottom: 26px;
  }
}

@media (max-width: 767px) {
  .product-text {
    margin-bottom: 9px;
  }
}

/* 破線枠：SVGで黄色枠の上に破線を描画 */

.purple .dashed-frame {
  padding: 40px 40px;
  margin: -8px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect x="0.75" y="0.75" width="calc(100% - 1.5px)" height="calc(100% - 1.5px)" fill="none" rx="10" ry="10" stroke="%23e7b8ff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 7"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media (max-width: 767px) {
  .purple .dashed-frame {
    padding: 40px 25px;
  }
}

/* 左上のイラスト（擬似要素） */

.contents-box.purple::before {
  content: "";
  position: absolute;
  top: -38px;
  left: -32px;
  width: 78px;
  aspect-ratio: 156 / 272;
  background: url("../img/css/sec5/box_deco_purple01.png") no-repeat center / contain;
  z-index: 10;
}

@media (max-width: 767px) {
  .contents-box.purple::before {
    top: -21px;
    left: -23px;
    width: 37px;
  }
}

/* 右上のイラスト（擬似要素） */

.contents-box.purple::after {
  content: "";
  position: absolute;
  bottom: -38px;
  right: -32px;
  width: 91px;
  aspect-ratio: 182 / 257;
  background: url("../img/css/sec5/box_deco_purple02.png") no-repeat center / contain;
  z-index: 10;
}

@media (max-width: 767px) {
  .contents-box.purple::after {
    bottom: -25px;
    right: -20px;
    width: 44px;
  }
}

.company-logo {
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .company-logo {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .company-logo {
    margin-bottom: 25px;
  }
}

.company-logo img {
  width: 362px;
}

@media (max-width: 991px) {
  .company-logo img {
    width: 70%;
  }
}

@media (max-width: 767px) {
  .company-logo img {
    width: 182px;
  }
}

.company-name {
  text-align: center;
  font-size: 28px;
  color: #472a09;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .company-name {
    font-size: 19px;
    margin-bottom: 20px;
  }
}

.company-text {
  font-size: 20px;
  color: #5a3e2b;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .company-text {
    font-size: 16px;
    color: #5a3e2b;
    line-height: 1.6;
  }
}

