@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 .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3%;
}

@media screen and (max-width: 767px) {
  .content .body-top .main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.content .body-top .main .article {
  width: 70%;
  padding: 3%;
}

@media screen and (max-width: 767px) {
  .content .body-top .main .article {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}

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

.content .body-top .main .article .article-name-box .article-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 .main .article .article-name-box .article-name {
    font-size: 28px;
  }
}

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

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

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

.content .body-top .main .article .article-box {
  margin: 3% 0;
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  gap: 30px;
}

@media screen and (max-width: 1150px) {
  .content .body-top .main .article .article-box {
    gap: 20px;
  }
}

@media screen and (max-width: 1000px) {
  .content .body-top .main .article .article-box {
    gap: 20px;
  }
}

@media screen and (max-width: 950px) {
  .content .body-top .main .article .article-box {
    gap: 20px;
  }
}

@media screen and (max-width: 820px) {
  .content .body-top .main .article .article-box {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .main .article .article-box {
    gap: 20px;
  }
}

.content .body-top .main .article .article-box .article-top-box {
  -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;
}

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

.content .body-top .main .article .article-box .article-top-box .top-img-box .article-top-title {
  position: absolute;
  font-family: Noto Sans JP;
  font-weight: bold;
  font-size: 20px;
  bottom: 5%;
  left: 5%;
}

.content .body-top .main .article .article-box .article-top-box .article-top-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;
}

.content .body-top .main .article .article-box .article-top-box .article-top-text-box .article-top-text {
  font-family: Noto Sans JP;
  font-size: 20px;
}

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

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

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

.content .body-top .main .article .article-box .article-top-box a img {
  border-radius: 12px;
}

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

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

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

.content .body-top .main .article .article-box .article-individual-box .individual-text-box .individual-title-box {
  width: 80%;
  border-bottom: solid 3px #FFB7B7;
  padding-bottom: 5%;
}

@media screen and (max-width: 375px) {
  .content .body-top .main .article .article-box .article-individual-box .individual-text-box .individual-title-box {
    width: 100%;
  }
}

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

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

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

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

.content .body-top .main .article .article-box .article-individual-box .individual-text-box .individual-text {
  font-family: Noto Sans JP;
  font-size: 20px;
  margin: 15px 0 0 0;
}

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

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

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

.content .body-top .main .article .article-box .article-individual-box a img {
  border-radius: 7px;
}

.content .body-top .main .search {
  width: 30%;
  margin-top: 3%;
  padding: 2%;
}

@media screen and (max-width: 767px) {
  .content .body-top .main .search {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}

.content .body-top .main .search .search-all {
  padding: 2%;
}

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

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

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

.content .body-top .main .search .search-all .search-box {
  width: 100%;
  height: 40px;
  background-color: #fff;
  border: solid 3px #FFB7B7;
  border-radius: 20px;
  margin: 5% 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .content .body-top .main .search .search-all .search-box {
    width: 50%;
    margin: 5% auto;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .main .search .search-all .search-box {
    height: 30px;
  }
}

.content .body-top .main .search .search-all .search-box .search-btn-box {
  width: 20%;
  height: 80%;
  right: 0;
  border-radius: 25px;
  margin: 3.5px;
  position: absolute;
  border: 2px solid #FFB7B7;
  background-color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
  padding: 0 20px;
  cursor: pointer;
}

@media screen and (max-width: 375px) {
  .content .body-top .main .search .search-all .search-box .search-btn-box {
    margin: 2.5px;
  }
}

.content .body-top .main .search .search-all .search-box .search-btn-box .search-name {
  font-family: Noto Sans JP;
  font-size: 16px;
  position: absolute;
  right: 20%;
  text-align: center;
  top: 11%;
}

@media screen and (max-width: 1200px) {
  .content .body-top .main .search .search-all .search-box .search-btn-box .search-name {
    font-size: 16px;
    top: 10%;
    right: 20%;
  }
}

@media screen and (max-width: 1050px) {
  .content .body-top .main .search .search-all .search-box .search-btn-box .search-name {
    font-size: 16px;
    top: 12%;
    right: 16%;
  }
}

@media screen and (max-width: 950px) {
  .content .body-top .main .search .search-all .search-box .search-btn-box .search-name {
    font-size: 16px;
    top: 10%;
    right: 13%;
  }
}

@media screen and (max-width: 850px) {
  .content .body-top .main .search .search-all .search-box .search-btn-box .search-name {
    font-size: 16px;
    top: 10%;
    right: 10%;
  }
}

@media screen and (max-width: 767px) {
  .content .body-top .main .search .search-all .search-box .search-btn-box .search-name {
    font-size: 16px;
    top: 10%;
    right: 22%;
  }
}

@media screen and (max-width: 650px) {
  .content .body-top .main .search .search-all .search-box .search-btn-box .search-name {
    font-size: 14px;
    top: 15%;
    right: 20%;
  }
}

@media screen and (max-width: 550px) {
  .content .body-top .main .search .search-all .search-box .search-btn-box .search-name {
    font-size: 14px;
    top: 15%;
    right: 16%;
  }
}

@media screen and (max-width: 450px) {
  .content .body-top .main .search .search-all .search-box .search-btn-box .search-name {
    font-size: 14px;
    top: 15%;
    right: 16%;
  }
}

@media screen and (max-width: 375px) {
  .content .body-top .main .search .search-all .search-box .search-btn-box .search-name {
    font-size: 10px;
    right: 20%;
  }
}

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

.content .body-top .main .search .search-all .search-category-box .search-category {
  list-style-type: none;
  text-align: center;
}

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

@media screen and (max-width: 375px) {
  .content .body-top .main .search .search-all .search-category-box .search-category {
    gap: 20px;
    -ms-grid-rows: 60px 60px;
        grid-template-rows: 60px 60px;
  }
}

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

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

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

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

.content .body-top .main .search .search-all .search-category-box .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 .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-links {
  font-family: Noto Sans JP;
  font-size: 24px;
  font-weight: bold;
  list-style: none;
  padding: 0 0 8% 10%;
}

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

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

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

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

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

.content .body-top .footer .footer-inner .footer-nav .footer-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 0 0 3%;
}

@media screen and (max-width: 767px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category {
    width: 70%;
    padding: 0 0 0 3%;
  }
}

.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-category-list-box {
  width: 50%;
}

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

@media screen and (max-width: 375px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-category-list-box {
    width: 30%;
  }
}

.content .body-top .footer .footer-inner .footer-nav .footer-category .footer-category-list-box .footer-category-list-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content .body-top .footer .footer-inner .footer-nav .footer-category .footer-category-list-box .footer-category-list-all .footer-category-list {
  font-family: Noto Sans JP;
  font-size: 22px;
  list-style: none;
  padding: 0 5%;
  width: 100%;
}

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

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

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

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

@media screen and (max-width: 375px) {
  .content .body-top .footer .footer-inner .footer-nav .footer-category .footer-category-list-box .footer-category-list-all .footer-category-list {
    font-weight: regular;
    font-size: 10px;
  }
}
/*# sourceMappingURL=style.css.map */