@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
img {
  width: 100%;
  height: auto;
}

.content {
  background-color: #FFEEEE;
}

.content .body-top {
  /*コンテンツ最大横幅*/
  width: 100%;
  max-width: 1280px;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .content .body-top {
    max-width: 767px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top {
    max-width: 375px;
  }
}

.content .body-top .header {
  /* メニューの開閉 */
}

.content .body-top .header .nav {
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  position: fixed;
  cursor: pointer;
  z-index: 999;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  overflow-y: auto;
  background-color: #FFB7B7;
}

.content .body-top .header .nav .nav-content {
  padding: 10%;
  width: 100%;
}

.content .body-top .header .nav .nav-content .close-btn {
  display: none;
  position: fixed;
  width: 100px;
  height: 100px;
  cursor: pointer;
  z-index: 100;
  top: 40px;
  right: 20px;
}

@media screen and (max-width: 767px) {
  .content .body-top .header .nav .nav-content .close-btn {
    top: 5%;
  }
}

.content .body-top .header .nav .nav-content .close-btn span {
  width: 50px;
  height: 4px;
  position: absolute;
  background-color: #ff6565;
  -webkit-transform-origin: center;
          transform-origin: center;
  top: 40px;
  right: 20px;
}

@media screen and (max-width: 767px) {
  .content .body-top .header .nav .nav-content .close-btn span {
    width: 40px;
    height: 3px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .header .nav .nav-content .close-btn span {
    width: 30px;
    height: 3px;
  }
}

.content .body-top .header .nav .nav-content .close-btn span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.content .body-top .header .nav .nav-content .close-btn span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.content .body-top .header .nav .nav-content .nav-content-individual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .content .body-top .header .nav .nav-content .nav-content-individual {
    margin: 50px 0 0 0;
    display: block;
  }
}

.content .body-top .header .nav .nav-content .nav-content-individual .nav-logo {
  width: 20%;
}

@media screen and (max-width: 767px) {
  .content .body-top .header .nav .nav-content .nav-content-individual .nav-logo {
    margin: 0 auto;
  }
}

.content .body-top .header .nav .nav-content .nav-content-individual .nav-logo .nav-logo-img {
  width: 100%;
}

.content .body-top .header .nav .nav-content .nav-content-individual .menu-list {
  width: 100%;
  margin: 50px 0;
}

@media screen and (max-width: 767px) {
  .content .body-top .header .nav .nav-content .nav-content-individual .menu-list {
    width: 50%;
    margin: 10% auto;
    text-align: center;
  }
}

.content .body-top .header .nav .nav-content .nav-content-individual .menu-list .menu-item {
  font-family: Noto Sans JP;
  font-size: 24px;
  font-weight: bold;
  padding: 3% 15%;
}

@media screen and (max-width: 767px) {
  .content .body-top .header .nav .nav-content .nav-content-individual .menu-list .menu-item {
    margin: 0 0 3% 0;
    font-size: 20px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .header .nav .nav-content .nav-content-individual .menu-list .menu-item {
    font-size: 16px;
  }
}

.content .body-top .header .nav .nav-content .nav-content-individual .menu-list .menu-item .categoryToggle {
  position: relative;
  cursor: pointer;
  padding-right: 20px;
}

.content .body-top .header .nav .nav-content .nav-content-individual .menu-list .menu-item .categoryToggle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 25px;
  height: 25px;
  border-right: 3px solid #ff6565;
  border-bottom: 3px solid #ff6565;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.content .body-top .header .nav .nav-content .nav-content-individual .menu-list .menu-item .categoryToggle.open::after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}

.content .body-top .header .nav .nav-content .nav-content-individual .menu-list .menu-item .accordion {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .content .body-top .header .nav .nav-content .nav-content-individual .menu-list .menu-item .accordion {
    width: 50%;
    text-align: center;
    margin: 10% auto;
  }
}

.content .body-top .header .nav .nav-content .nav-content-individual .menu-list .menu-item .accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.content .body-top .header .nav .nav-content .nav-content-individual .menu-list .menu-item .accordion .accordion-content .accordion-item {
  font-family: Noto Sans JP;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: color 0.3s ease, padding-left 0.3s ease;
  transition: color 0.3s ease, padding-left 0.3s ease;
  padding: 0 0 1% 10%;
}

@media screen and (max-width: 767px) {
  .content .body-top .header .nav .nav-content .nav-content-individual .menu-list .menu-item .accordion .accordion-content .accordion-item {
    padding: 5%;
    font-size: 16px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .header .nav .nav-content .nav-content-individual .menu-list .menu-item .accordion .accordion-content .accordion-item {
    padding: 5%;
    font-size: 12px;
  }
}

.content .body-top .header .nav .nav-content .nav-content-individual .menu-list .menu-item .accordion .accordion-content .menu-border-2 {
  border: none;
  border-bottom: solid 2px #ff6565;
  margin: 1% 5% 1% 5%;
}

@media screen and (max-width: 767px) {
  .content .body-top .header .nav .nav-content .nav-content-individual .menu-list .menu-item .accordion .accordion-content .menu-border-2 {
    margin: 0 auto;
  }
}

.content .body-top .header .nav .nav-content .nav-content-individual .menu-list .menu-item .accordion .accordion-content.active {
  max-height: 400px;
}

.content .body-top .header .nav .nav-content .nav-content-individual .menu-list .menu-border-1 {
  border: none;
  border-bottom: solid 2px #ff6565;
  margin: 0 10% 4% 10%;
}

.content .body-top .header .nav.open {
  right: 0;
}

.content .body-top .header .nav.open .close-btn {
  display: block;
}

.content .body-top .fixed-btn {
  position: fixed;
  width: 18%;
  right: 3%;
  bottom: 2%;
  z-index: 100;
}

@media screen and (max-width: 1024px) {
  .content .body-top .fixed-btn {
    width: 20%;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .fixed-btn {
    width: 90%;
    right: 0;
    margin: 0 5%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.content .body-top .fixed-btn .btn-all {
  position: relative;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .content .body-top .fixed-btn .btn-all {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3%;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .fixed-btn .btn-all {
    gap: 3%;
  }
}

.content .body-top .fixed-btn .btn-all .btn {
  cursor: pointer;
  width: 100%;
  height: 40px;
  margin-bottom: 8%;
  background-color: #fff;
  border-radius: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 4px 4px 4px rgba(255, 80, 80, 0.25);
          box-shadow: 4px 4px 4px rgba(255, 80, 80, 0.25);
  /*.menu-open.open {
                        right: 0;

                    }

                    .menu-open .close-btn {
                        display: block;
                    }*/
}

@media screen and (max-width: 767px) {
  .content .body-top .fixed-btn .btn-all .btn {
    margin-bottom: 0;
    height: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* 中央揃えなのでいじらない */
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .fixed-btn .btn-all .btn {
    height: 40px;
  }
}

.content .body-top .fixed-btn .btn-all .btn .btn-img {
  width: 30px;
  height: 30px;
  margin: 2% 0 2% 10%;
}

@media screen and (max-width: 767px) {
  .content .body-top .fixed-btn .btn-all .btn .btn-img {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 560px) {
  .content .body-top .fixed-btn .btn-all .btn .btn-img {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 430px) {
  .content .body-top .fixed-btn .btn-all .btn .btn-img {
    width: 19px;
    height: 19px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .fixed-btn .btn-all .btn .btn-img {
    width: 18px;
    height: 18px;
    margin: 2% 0 2% 5%;
  }
}

.content .body-top .fixed-btn .btn-all .btn .btn-text {
  font-family: Noto Sans JP;
  font-size: 20px;
  font-weight: bold;
  padding: 3% 5% 2% 5%;
  margin: 0 auto;
}

@media screen and (max-width: 900px) {
  .content .body-top .fixed-btn .btn-all .btn .btn-text {
    font-size: 18px;
    padding: 5% 5% 2% 5%;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .fixed-btn .btn-all .btn .btn-text {
    font-size: 16px;
    padding: 2% 5% 3% 5%;
  }
}

@media screen and (max-width: 660px) {
  .content .body-top .fixed-btn .btn-all .btn .btn-text {
    font-size: 12px;
  }
}

@media screen and (max-width: 560px) {
  .content .body-top .fixed-btn .btn-all .btn .btn-text {
    font-size: 10px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .fixed-btn .btn-all .btn .btn-text {
    font-size: 10px;
  }
}

.content .body-top .fixed-btn .btn-all .menu-open.open {
  right: 0;
}

.content .body-top .fixed-btn .btn-all .menu-open .close-btn {
  display: block;
}

.content .body-top .header-top {
  width: 100%;
  height: auto;
}

.content .body-top .search {
  padding: 8%;
}

.content .body-top .search .search-name {
  font-family: Noto Sans JP;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .content .body-top .search .search-name {
    font-size: 20px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .search .search-name {
    font-size: 12px;
  }
}

.content .body-top .search .search-container {
  width: 40%;
  height: 50px;
  margin: 30px auto;
}

@media screen and (max-width: 767px) {
  .content .body-top .search .search-container {
    width: 70%;
    height: 40px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .search .search-container {
    width: 80%;
    height: 40px;
  }
}

.content .body-top .search .search-container .search-box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: solid 3px #FFB7B7;
  border-radius: 26px;
  background-color: #fff;
  position: relative;
  /* padding: 20px; */
}

.content .body-top .search .search-container .search-box .search-key {
  font-family: Noto Sans JP;
  font-size: 18px;
  color: #bdbdbd;
  top: 10px;
  position: absolute;
  left: 3%;
}

@media screen and (max-width: 767px) {
  .content .body-top .search .search-container .search-box .search-key {
    font-size: 14px;
    top: 20%;
  }
}

@media screen and (max-width: 650px) {
  .content .body-top .search .search-container .search-box .search-key {
    font-size: 12px;
    top: 25%;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .search .search-container .search-box .search-key {
    font-size: 10px;
    top: 30%;
    left: 5%;
  }
}

.content .body-top .search .search-container .search-box .search-btn {
  font-family: Noto Sans JP;
  font-size: 16px;
  top: 12px;
  position: absolute;
  text-align: right;
  right: 20px;
}

@media screen and (max-width: 767px) {
  .content .body-top .search .search-container .search-box .search-btn {
    font-size: 18px;
    top: 15%;
  }
}

@media screen and (max-width: 650px) {
  .content .body-top .search .search-container .search-box .search-btn {
    font-size: 16px;
    top: 20%;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .search .search-container .search-box .search-btn {
    font-size: 14px;
    top: 25%;
  }
}

.content .body-top .search .search-category-all {
  width: 100%;
}

.content .body-top .search .search-category-all .search-category {
  list-style-type: none;
  text-align: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 100px 100px;
      grid-template-rows: 100px 100px;
}

@media screen and (max-width: 767px) {
  .content .body-top .search .search-category-all .search-category {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 100px 100px 100px;
        grid-template-rows: 100px 100px 100px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .search .search-category-all .search-category {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 80px 80px 80px;
        grid-template-rows: 80px 80px 80px;
  }
}

.content .body-top .search .search-category-all .search-category .search-category-box {
  width: 100%;
  padding: 5%;
}

@media screen and (max-width: 375px) {
  .content .body-top .search .search-category-all .search-category .search-category-box {
    width: 90%;
    margin: 0 auto;
  }
}

.content .body-top .search .search-category-all .search-category .search-category-box .search-category-name {
  font-family: Noto Sans JP;
  font-size: 20px;
  font-weight: bold;
  /* 文字によってここはregularでもいいかも */
  display: inline-block;
  width: 100%;
  height: 60px;
  border-bottom: solid 3px #FFB7B7;
  text-align: left;
  padding: 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .content .body-top .search .search-category-all .search-category .search-category-box .search-category-name {
    font-size: 18px;
  }
}

@media screen and (max-width: 500px) {
  .content .body-top .search .search-category-all .search-category .search-category-box .search-category-name {
    font-size: 16px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .search .search-category-all .search-category .search-category-box .search-category-name {
    font-size: 14px;
    padding: 15px;
  }
}

.content .body-top .search .search-category-all .search-category .search-category-name::before {
  content: '';
  width: 20px;
  height: 20px;
  border-top: solid 3px #FFB7B7;
  border-right: solid 3px #FFB7B7;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 0;
}

.content .body-top .recommend {
  margin: 5% 0;
}

.content .body-top .recommend .recommend-name-box {
  width: 35%;
  border-left: solid 2px #000;
  border-bottom: solid 2px #000;
  background-color: #FFB7B7;
  margin: 0 auto;
}

@media screen and (max-width: 375px) {
  .content .body-top .recommend .recommend-name-box {
    width: 50%;
  }
}

.content .body-top .recommend .recommend-name-box .recommend-name {
  width: 100%;
  font-family: Noto Sans JP;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}

@media screen and (max-width: 950px) {
  .content .body-top .recommend .recommend-name-box .recommend-name {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .recommend .recommend-name-box .recommend-name {
    font-size: 26px;
  }
}

@media screen and (max-width: 600px) {
  .content .body-top .recommend .recommend-name-box .recommend-name {
    font-size: 20px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .recommend .recommend-name-box .recommend-name {
    font-size: 18px;
  }
}

.content .body-top .recommend .recommend-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 330px 330px;
      grid-template-rows: 330px 330px;
  gap: 35px;
  padding: 5% 9%;
}

@media screen and (max-width: 1100px) {
  .content .body-top .recommend .recommend-box {
    -ms-grid-rows: 300px 330px;
        grid-template-rows: 300px 330px;
  }
}

@media screen and (max-width: 950px) {
  .content .body-top .recommend .recommend-box {
    -ms-grid-rows: 280px 330px;
        grid-template-rows: 280px 330px;
  }
}

@media screen and (max-width: 850px) {
  .content .body-top .recommend .recommend-box {
    -ms-grid-rows: 250px 330px;
        grid-template-rows: 250px 330px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .recommend .recommend-box {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 230px 330px;
        grid-template-rows: 230px 330px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .recommend .recommend-box {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 270px 120px 300px 300px;
        grid-template-rows: 270px 120px 300px 300px;
  }
}

@media screen and (max-width: 700px) {
  .content .body-top .recommend .recommend-box {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 240px 120px 300px 300px;
        grid-template-rows: 240px 120px 300px 300px;
  }
}

@media screen and (max-width: 650px) {
  .content .body-top .recommend .recommend-box {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 230px 150px 300px 300px;
        grid-template-rows: 230px 150px 300px 300px;
    gap: 20px;
  }
}

@media screen and (max-width: 600px) {
  .content .body-top .recommend .recommend-box {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 210px 150px 300px 300px;
        grid-template-rows: 210px 150px 300px 300px;
    gap: 20px;
  }
}

@media screen and (max-width: 550px) {
  .content .body-top .recommend .recommend-box {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 200px 150px 300px 300px;
        grid-template-rows: 200px 150px 300px 300px;
    gap: 20px;
  }
}

@media screen and (max-width: 500px) {
  .content .body-top .recommend .recommend-box {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 190px 150px 300px 300px;
        grid-template-rows: 190px 150px 300px 300px;
    gap: 20px;
  }
}

@media screen and (max-width: 450px) {
  .content .body-top .recommend .recommend-box {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 160px 150px 300px 300px;
        grid-template-rows: 160px 150px 300px 300px;
    gap: 20px;
  }
}

@media screen and (max-width: 400px) {
  .content .body-top .recommend .recommend-box {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 140px 150px 300px 300px;
        grid-template-rows: 140px 150px 300px 300px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .recommend .recommend-box {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 120px 120px 250px 250px;
        grid-template-rows: 120px 120px 250px 250px;
    gap: 20px;
  }
}

.content .body-top .recommend .recommend-box .recommend-top {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
}

@media screen and (max-width: 767px) {
  .content .body-top .recommend .recommend-box .recommend-top {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .recommend .recommend-box .recommend-text-box {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    padding: 0 3%;
  }
}

.content .body-top .recommend .recommend-box .recommend-text-box .recommend-title-box {
  width: 70%;
  padding: 10px 0;
  border-bottom: solid 3px #FFB7B7;
}

.content .body-top .recommend .recommend-box .recommend-text-box .recommend-title-box .recommend-title {
  width: 100%;
  font-family: Noto Sans JP;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 950px) {
  .content .body-top .recommend .recommend-box .recommend-text-box .recommend-title-box .recommend-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .recommend .recommend-box .recommend-text-box .recommend-title-box .recommend-title {
    font-size: 16px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .recommend .recommend-box .recommend-text-box .recommend-title-box .recommend-title {
    font-size: 14px;
  }
}

.content .body-top .recommend .recommend-box .recommend-text-box .recommend-text {
  font-family: Noto Sans JP;
  font-size: 20px;
  margin: 20px 0;
  line-height: 125%;
}

@media screen and (max-width: 950px) {
  .content .body-top .recommend .recommend-box .recommend-text-box .recommend-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .recommend .recommend-box .recommend-text-box .recommend-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .recommend .recommend-box .recommend-text-box .recommend-text {
    font-size: 12px;
  }
}

.content .body-top .recommend .recommend-box .recommend-article-box {
  border: solid 2px #FFB7B7;
  border-radius: 10px;
  padding: 5px;
  background-color: #fff;
}

.content .body-top .recommend .recommend-box .recommend-article-box .recommend-article-img {
  width: 100%;
  height: auto;
}

.content .body-top .recommend .recommend-box .recommend-article-box .recommend-article-text-box {
  padding: 10px;
}

.content .body-top .recommend .recommend-box .recommend-article-box .recommend-article-text-box .recommend-article-title-box {
  width: 100%;
  border-bottom: solid 3px #FFB7B7;
}

.content .body-top .recommend .recommend-box .recommend-article-box .recommend-article-text-box .recommend-article-title-box .recommend-article-title {
  width: 100%;
  font-family: Noto Sans JP;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 5%;
}

@media screen and (max-width: 950px) {
  .content .body-top .recommend .recommend-box .recommend-article-box .recommend-article-text-box .recommend-article-title-box .recommend-article-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .recommend .recommend-box .recommend-article-box .recommend-article-text-box .recommend-article-title-box .recommend-article-title {
    font-size: 16px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .recommend .recommend-box .recommend-article-box .recommend-article-text-box .recommend-article-title-box .recommend-article-title {
    font-size: 12px;
  }
}

.content .body-top .recommend .recommend-box .recommend-article-box .recommend-article-text-box .recommend-article-text {
  font-family: Noto Sans JP;
  font-size: 20px;
  margin: 15px 0 0 0;
  line-height: 125%;
}

@media screen and (max-width: 950px) {
  .content .body-top .recommend .recommend-box .recommend-article-box .recommend-article-text-box .recommend-article-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .recommend .recommend-box .recommend-article-box .recommend-article-text-box .recommend-article-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .recommend .recommend-box .recommend-article-box .recommend-article-text-box .recommend-article-text {
    font-size: 12px;
  }
}

.content .body-top .new .new-name-box {
  width: 35%;
  border-left: solid 2px #000;
  border-bottom: solid 2px #000;
  background-color: #FFB7B7;
  margin: 0 auto;
}

@media screen and (max-width: 375px) {
  .content .body-top .new .new-name-box {
    width: 50%;
  }
}

.content .body-top .new .new-name-box .new-name {
  width: 100%;
  font-family: Noto Sans JP;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}

@media screen and (max-width: 950px) {
  .content .body-top .new .new-name-box .new-name {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .new .new-name-box .new-name {
    font-size: 26px;
  }
}

@media screen and (max-width: 600px) {
  .content .body-top .new .new-name-box .new-name {
    font-size: 20px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .new .new-name-box .new-name {
    font-size: 18px;
  }
}

.content .body-top .new .new-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 330px;
      grid-template-rows: 330px;
  gap: 35px;
  padding: 5% 9%;
}

@media screen and (max-width: 767px) {
  .content .body-top .new .new-box {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 320px 300px;
        grid-template-rows: 320px 300px;
    gap: 35px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .new .new-box {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 200px 300px;
        grid-template-rows: 200px 300px;
    gap: 20px;
  }
}

.content .body-top .new .new-box .new-article-box {
  width: 100%;
}

.content .body-top .new .new-box .new-article-box .new-article-img-box {
  position: relative;
}

.content .body-top .new .new-box .new-article-box .new-article-img-box .new-article-img {
  border-radius: 12px;
  width: 100%;
}

.content .body-top .new .new-box .new-article-box .new-article-img-box .new-article-title {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #000;
  font-size: 20px;
  font-family: Noto Sans JP;
  font-weight: bold;
}

@media screen and (max-width: 1100px) {
  .content .body-top .new .new-box .new-article-box .new-article-img-box .new-article-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 950px) {
  .content .body-top .new .new-box .new-article-box .new-article-img-box .new-article-title {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .content .body-top .new .new-box .new-article-box .new-article-img-box .new-article-title {
    font-size: 14px;
  }
}

.content .body-top .new .new-box .new-article-box .new-article-text-box {
  width: 100%;
  padding: 20px 0 0 0;
}

.content .body-top .new .new-box .new-article-box .new-article-text-box .new-article-text {
  width: 100%;
  font-family: Noto Sans JP;
  font-size: 20px;
  line-height: 125%;
}

@media screen and (max-width: 950px) {
  .content .body-top .new .new-box .new-article-box .new-article-text-box .new-article-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .new .new-box .new-article-box .new-article-text-box .new-article-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .new .new-box .new-article-box .new-article-text-box .new-article-text {
    font-size: 12px;
  }
}

.content .body-top .new .new-box .new-other-box {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .content .body-top .new .new-box .new-other-box {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 2;
    grid-row: 2 / 2;
  }
}

.content .body-top .new .new-box .new-other-box .new-other-box-bar {
  width: 100%;
  border: none;
  border-bottom: solid 3px #FFB7B7;
  margin: 0;
}

.content .body-top .new .new-box .new-other-box .new-other-box-individual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 30%;
  position: relative;
  padding: 5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.content .body-top .new .new-box .new-other-box .new-other-box-individual .new-other-img-link {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .content .body-top .new .new-box .new-other-box .new-other-box-individual .new-other-img-link {
    width: 20%;
  }
}

@media screen and (max-width: 600px) {
  .content .body-top .new .new-box .new-other-box .new-other-box-individual .new-other-img-link {
    width: 30%;
  }
}

@media screen and (max-width: 500px) {
  .content .body-top .new .new-box .new-other-box .new-other-box-individual .new-other-img-link {
    width: 35%;
  }
}

@media screen and (max-width: 450px) {
  .content .body-top .new .new-box .new-other-box .new-other-box-individual .new-other-img-link {
    width: 40%;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .new .new-box .new-other-box .new-other-box-individual .new-other-img-link {
    width: 50%;
  }
}

.content .body-top .new .new-box .new-other-box .new-other-box-individual .new-other-img-link .new-other-box-img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 6px;
}

.content .body-top .new .new-box .new-other-box .new-other-box-individual .new-other-box-text {
  position: relative;
  font-family: Noto Sans JP;
  font-size: 20px;
  font-weight: bold;
  padding: 0 20px;
  width: 60%;
}

@media screen and (max-width: 1000px) {
  .content .body-top .new .new-box .new-other-box .new-other-box-individual .new-other-box-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .new .new-box .new-other-box .new-other-box-individual .new-other-box-text {
    font-size: 14px;
    width: 100%;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .new .new-box .new-other-box .new-other-box-individual .new-other-box-text {
    font-size: 12px;
    top: 3%;
  }
}

.content .body-top .category {
  height: auto;
  margin: 10% 0;
}

.content .body-top .category .category-text-box {
  width: 35%;
  border-left: solid 2px #000;
  border-bottom: solid 2px #000;
  background-color: #FFB7B7;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .content .body-top .category .category-text-box {
    width: 50%;
  }
}

.content .body-top .category .category-text-box .category-text {
  width: 100%;
  font-family: Noto Sans JP;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}

@media screen and (max-width: 950px) {
  .content .body-top .category .category-text-box .category-text {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .category .category-text-box .category-text {
    font-size: 26px;
  }
}

@media screen and (max-width: 600px) {
  .content .body-top .category .category-text-box .category-text {
    font-size: 20px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .category .category-text-box .category-text {
    font-size: 18px;
  }
}

.content .body-top .category .category-box-all {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
  padding: 5% 9%;
}

@media screen and (max-width: 767px) {
  .content .body-top .category .category-box-all {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .category .category-box-all {
    gap: 20px;
  }
}

.content .body-top .category .category-box-all .category-img-box {
  position: relative;
}

.content .body-top .category .category-box-all .category-img-box .category-img {
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 4px 4px 4px rgba(255, 80, 80, 0.25);
          box-shadow: 4px 4px 4px rgba(255, 80, 80, 0.25);
}

@media screen and (max-width: 767px) {
  .content .body-top .category .category-box-all .category-img-box .category-img {
    border-radius: 15px;
  }
}

.content .body-top .category .category-box-all .category-img-box .category-img-text {
  font-family: Noto Sans JP;
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.content .body-top .footer {
  background-color: #FFB7B7;
  width: 100%;
  height: 600px;
}

@media screen and (max-width: 767px) {
  .content .body-top .footer {
    height: 300px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .footer {
    height: 200px;
  }
}

.content .body-top .footer .footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10% 10% 0 10%;
}

.content .body-top .footer .footer-inner .footer-logo-box {
  width: 20%;
}

.content .body-top .footer .footer-inner .footer-logo-box .footer-logo {
  width: 100%;
}

.content .body-top .footer .footer-inner .footer-nav {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 375px) {
  .content .body-top .footer .footer-inner .footer-nav {
    width: 100%;
    height: auto;
  }
}

.content .body-top .footer .footer-inner .footer-nav .footer-links-box {
  /* 並びを変えたところ 
                        .footer-category {
                            width: 100%;
                            padding: 0 0 0 5%;
                            */
  /* 並びを変えたところ 
                            .footer-category-title {
                                font-family: Noto Sans JP;
                                font-size: 24px;
                                font-weight: bold;
                                display: block;
                                width: 50%;
                                padding: 0 0 0 7%;
    
                                @media screen and (max-width: 950px) { //フッター文字大きさ(sp)
                                    font-size: 22px;
                                }
    
                                @media screen and (max-width: 767px) { //フッター文字大きさ(sp)
                                    font-size: 20px;
                                    width: 100%;
                                    padding: 0 0 0 10%;
                                }
    
                                @media screen and (max-width: 600px) { //フッター文字大きさ(sp)
                                    font-size: 18px;
                                }
    
                                @media screen and (max-width: 520px) { //フッター文字大きさ(sp)
                                    font-size: 16px;
                                }
    
                                @media screen and (max-width: 375px) { //フッター文字大きさ(sp)
                                    font-size: 12px;
                                    padding: 0 0 0 10%;
                                    width: 70%;
                                }
    
                            } 終わり 
                        } 終わり 

                        .footer-links {
                            font-family: Noto Sans JP;
                            font-size: 24px;
                            font-weight: bold;
                            list-style: none;

                            @media screen and (max-width: 950px) { //フッター文字大きさ(sp)
                                font-size: 22px;
                            }

                            @media screen and (max-width: 767px) { //フッター文字大きさ(sp)
                                font-size: 20px;
                            }

                            @media screen and (max-width: 600px) { //フッター文字大きさ(sp)
                                font-size: 18px;
                            }

                            @media screen and (max-width: 520px) { //フッター文字大きさ(sp)
                                font-size: 16px;
                            }

                            @media screen and (max-width: 375px) { //フッター文字大きさ(sp)
                                font-size: 12px;
                            }

                            
                        }*/
}

.content .body-top .footer .footer-inner .footer-nav .footer-category {
  width: 100%;
  padding: 0 0 0 5%;
}

.content .body-top .footer .footer-inner .footer-nav .footer-category .footer-category-title {
  font-family: Noto Sans JP;
  font-size: 24px;
  font-weight: bold;
  display: block;
  width: 50%;
  padding: 0 0 0 7%;
}

@media screen and (max-width: 950px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-category-title {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-category-title {
    font-size: 20px;
    width: 100%;
    padding: 0 0 0 10%;
  }
}

@media screen and (max-width: 600px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-category-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 520px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-category-title {
    font-size: 16px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-category-title {
    font-size: 12px;
    padding: 0 0 0 10%;
    width: 70%;
  }
}

.content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box {
  /*元はfooter-category-list-box nav*/
}

.content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links {
  /*元はfooter-category-list-all ul*/
  font-family: Noto Sans JP;
  font-size: 24px;
  font-weight: bold;
  list-style: none;
  width: 100%;
}

.content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-top {
  /*元はfooter-category-list li*/
  font-family: Noto Sans JP;
  font-size: 22px;
  list-style: none;
  width: 100%;
  display: block;
  padding: 10px;
}

@media screen and (max-width: 950px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-top {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-top {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-top {
    font-size: 14px;
  }
}

@media screen and (max-width: 520px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-top {
    font-size: 14px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-top {
    font-weight: regular;
    font-size: 10px;
  }
}

.content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-top a {
  display: inline-block;
}

.content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-article-top {
  font-family: Noto Sans JP;
  font-size: 22px;
  list-style: none;
  width: 100%;
  display: block;
  padding: 10px;
}

@media screen and (max-width: 950px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-article-top {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-article-top {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-article-top {
    font-size: 14px;
  }
}

@media screen and (max-width: 520px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-article-top {
    font-size: 14px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-article-top {
    font-weight: regular;
    font-size: 10px;
  }
}

.content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-category-top {
  font-family: Noto Sans JP;
  font-size: 22px;
  list-style: none;
  width: 100%;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 950px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-category-top {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-category-top {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-category-top {
    font-size: 14px;
  }
}

@media screen and (max-width: 520px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-category-top {
    font-size: 14px;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-category-top {
    font-weight: regular;
    font-size: 10px;
  }
}

.content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-category-top a {
  width: 30%;
}

.content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-category-top .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10%;
  width: 60%;
}

.content .body-top .footer .footer-inner .footer-nav .footer-category .footer-links-box .footer-links .menu-category-top .sub-menu li {
  margin-bottom: 5%;
}
/*# sourceMappingURL=style.css.map */