@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;600;700;900&family=Roboto:wght@300;400;500;700;900&family=Sawarabi+Mincho&display=swap");
/*
Theme Name: データの相談室 はじめてのデータ集計
Description: データの相談室 はじめてのデータ集計
Version: 1.0
*/
:root {
  --base: #1E1E1E;
  --gray1: #848484;
  --gray2: #84796C;
  --brown1: #B99164;
  --brown2: #EDBB70;
  --pink1: #DC0050;
  --pink2: #F07D96;
  --blue1: #6887CF;
}

/*-- リセット --*/
h1,
h2,
h3,
h4,
h5,
p,
b,
dt,
dd,
li,
span,
a,
strong {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  min-height: 0%;
  vertical-align: top;
}

figure {
  width: 100%;
  min-height: 0%;
  line-height: 0;
  margin: 0 auto;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  backface-visibility: hidden;
  transition: 0.3s;
}
a img {
  display: inline-block;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
  font-feature-settings: "palt";
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  text-align: center;
  color: var(--baseblack);
}
@media only screen and (max-width: 767px) {
  body {
    overflow: hidden;
    overflow-y: scroll;
  }
}

input,
textarea,
button {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

.main {
  display: block;
}

.pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media only screen and (max-width: 1400px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.inline-pc {
  display: inline;
}
@media only screen and (max-width: 767px) {
  .inline-pc {
    display: none;
  }
}

.inline-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .inline-sp {
    display: inline;
  }
}

.no-link {
  pointer-events: none;
}

.page-links {
  margin-top: -7.2rem;
  padding-top: 7.2rem;
  position: relative;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .page-links {
    margin-top: -6rem;
    padding-top: 6rem;
  }
}

.l-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 6rem;
  background: #FFF;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 20;
  filter: drop-shadow(0 0.3rem 0.6rem rgba(185, 145, 100, 0.16));
}
@media only screen and (max-width: 767px) {
  .l-header {
    height: 5.3rem;
    filter: drop-shadow(0 0 0 transparent);
  }
}
.l-header__container {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 42.1rem;
       column-gap: 42.1rem;
}
@media only screen and (max-width: 767px) {
  .l-header__container {
    justify-content: space-between;
    -moz-column-gap: normal;
         column-gap: normal;
    padding-left: 1.3rem;
  }
}
.l-header__nav {
  display: flex;
  align-items: center;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav_link {
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--brown1);
}
.l-header__logo {
  width: 45.478rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .l-header__logo {
    width: 19.591rem;
    position: static;
    transform: translateX(0);
  }
}
.l-header__menu {
  display: none;
}
@media only screen and (max-width: 767px) {
  .l-header__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 5.4rem;
    height: 5.4rem;
    background: var(--brown1);
  }
  .l-header__menu_btn {
    width: 2.6rem;
    height: 2.2rem;
    border: 0;
    outline: none;
    -webkit-appearance: unset;
       -moz-appearance: unset;
            appearance: unset;
    position: relative;
  }
  .l-header__menu_btn::before, .l-header__menu_btn::after,
  .l-header__menu_btn span {
    content: "";
    width: 100%;
    height: 0.2rem;
    background: #FFF;
    position: absolute;
    left: 0;
    transition: 0.3s;
  }
  .l-header__menu_btn::before {
    top: 0;
  }
  .l-header__menu_btn::after {
    bottom: 0;
  }
  .l-header__menu_btn span {
    top: 50%;
    transform: translateY(-50%);
  }
  .l-header__menu_btn.open::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .l-header__menu_btn.open::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
  .l-header__menu_btn.open span {
    opacity: 0;
  }
}

.l-global {
  display: none;
}
@media only screen and (max-width: 767px) {
  .l-global {
    width: 100%;
    padding: 5.4rem 0 6.4rem;
    background: #FFF;
    position: fixed;
    top: 5.4rem;
    left: 0;
    z-index: 20;
    overflow: hidden;
    overflow-y: auto;
    overscroll-behavior-y: none;
  }
  .l-global__nav {
    width: 100%;
    padding: 0 3.75rem;
    box-sizing: border-box;
  }
  .l-global__nav_item {
    border-bottom: 1px solid var(--brown1);
  }
  .l-global__nav_link {
    display: block;
    padding: 1.6rem 2rem;
    box-sizing: border-box;
    position: relative;
    line-height: 1.4705882353;
    letter-spacing: 0.05em;
    text-align: left;
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--brown1);
  }
  .l-global__nav_link::after {
    content: "";
    width: 2.136rem;
    height: 0.688rem;
    background: url(../img/arrow-03.svg) 50% 50% no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
  }
}

.l-footer {
  padding: 6.4rem 0 5.1rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .l-footer {
    padding: 4rem 0;
  }
}
.l-footer::after {
  content: "";
  width: 100%;
  height: 1.1rem;
  background: url(../img/border-bar.webp) 50% 50% repeat-x;
  background-size: auto 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scaleY(-1);
}
.l-footer__copy_text {
  line-height: 1.1666666667;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--brown1);
}
.l-footer__totop {
  display: none;
  width: 5rem;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .l-footer__totop {
    width: 4rem;
    right: 0.6rem;
  }
}

.l-section--border__top {
  position: relative;
}
.l-section--border__top::before {
  content: "";
  width: 100%;
  height: 1.5rem;
  background: url(../img/strip-bar.webp) 50% 50% repeat-x;
  background-size: auto 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.l-section--line__top {
  position: relative;
}
.l-section--line__top::before {
  content: "";
  width: 100%;
  height: 1.1rem;
  background: url(../img/border-bar.webp) 50% 50% repeat-x;
  background-size: auto 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.l-modal-wrap {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}
.l-modal-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
}
.l-modal-close {
  width: 3.6rem;
  height: 3.6rem;
  position: absolute;
  top: 4rem;
  right: 4rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
}
.l-modal-close::before, .l-modal-close::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #FFF;
  position: absolute;
  left: 0;
}
.l-modal-close::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-modal-close::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.l-modal-close__caption {
  position: absolute;
  top: calc(100% + 0.91rem);
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  white-space: nowrap;
  font-size: 1.3rem;
  font-weight: 400;
  color: #FFF;
}
.l-modal-item {
  z-index: 10;
}

.c-title--ptn1 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  -moz-column-gap: 1.8rem;
       column-gap: 1.8rem;
  margin: 0.2em auto 3.4rem;
  color: var(--brown1);
}
@media only screen and (max-width: 767px) {
  .c-title--ptn1 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    margin-bottom: 2.3rem;
  }
}
.c-title--ptn1 .c-title__en {
  line-height: 0.8;
  letter-spacing: -0.001em;
  font-size: 7.5rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
}
@media only screen and (max-width: 767px) {
  .c-title--ptn1 .c-title__en {
    font-size: 4.5rem;
  }
}
.c-title--ptn1 .c-title__jp {
  line-height: 2;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .c-title--ptn1 .c-title__jp {
    font-size: 1.2rem;
  }
}

.c-btn {
  text-decoration: none;
}
.c-btn--ptn1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 26rem;
  height: 5.4rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.3rem 0.6rem rgba(100, 63, 20, 0.16);
  box-sizing: border-box;
  background: var(--brown1);
  position: relative;
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 500;
  color: #FFF;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-btn--ptn1 {
    width: 20rem;
    height: 5rem;
    font-size: 1.6rem;
  }
}
.c-btn--ptn1:hover {
  border: 1px solid var(--brown1);
  background: #FFF;
  color: var(--brown1);
}
.c-btn--ptn1::after {
  content: "";
  width: 2.136rem;
  height: 0.688rem;
  background: url(../img/arrow-01.svg) 50% 50% no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 1.91rem;
  transform: translateY(-50%);
}
.c-btn--ptn2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42rem;
  height: 10rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  background: var(--pink1);
  position: relative;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-size: 2.4rem;
  font-weight: 400;
  color: #FFF;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-btn--ptn2 {
    width: 26.5rem;
    height: 6.6rem;
    font-size: 1.8rem;
  }
}
.c-btn--ptn2:hover {
  opacity: 0.7;
}
.c-btn--ptn2::after {
  content: "";
  width: 3.125rem;
  height: 1.086rem;
  background: url(../img/arrow-02.svg) 50% 50% no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 1.92rem;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .c-btn--ptn2::after {
    width: 1.925rem;
    height: 0.686rem;
    right: 0.82rem;
  }
}
.c-btn--ptn2 .c-btn__sub {
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .c-btn--ptn2 .c-btn__sub {
    font-size: 1.4rem;
  }
}
.c-btn__blank {
  display: inline-block;
  padding-right: 2.115rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-btn__blank {
    padding-right: 1.764rem;
  }
}
.c-btn__blank::after {
  content: "";
  width: 1.615rem;
  height: 1.32rem;
  background: url(../img/icon_blank.svg) 50% 50% no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .c-btn__blank::after {
    width: 1.164rem;
    height: 0.932rem;
  }
}
.c-btn--ptn3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.3rem 0.6rem rgba(100, 63, 20, 0.16);
  box-sizing: border-box;
  background: var(--brown1);
  position: relative;
  line-height: 1.3;
  font-size: 1.6rem;
  font-weight: 500;
  color: #FFF;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-btn--ptn3 {
    height: 3.2rem;
    font-size: 1.4rem;
  }
}
.c-btn--ptn3:hover {
  border: 0.2rem solid var(--pink1);
  box-shadow: 0 0 0.1rem rgba(255, 135, 200, 0.66);
  background: #FFF;
  color: var(--pink1);
}
.c-btn--ptn3::after {
  content: "";
  width: 2.136rem;
  height: 0.688rem;
  background: url(../img/arrow-01.svg) 50% 50% no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 1.91rem;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .c-btn--ptn3::after {
    width: 1.136rem;
    height: 0.388rem;
    right: 0.66rem;
  }
}

.p-home-mv {
  padding: 3.3rem 0 0;
}
@media only screen and (max-width: 767px) {
  .p-home-mv {
    padding-top: 2.4rem;
  }
}
.p-home-mv__slider {
  margin-bottom: 0;
  padding-bottom: 2.4rem;
}
.p-home-mv__slider_item {
  width: 59.7rem;
  padding: 0 0.8rem;
  box-sizing: border-box;
}
.p-home-mv__slider_item img {
  width: 100%;
}
.p-home-mv__slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  bottom: 0;
}
.p-home-mv__slider .slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0;
  border-radius: 50%;
  box-sizing: border-box;
  background: var(--pink2);
  overflow: hidden;
  opacity: 1;
}
.p-home-mv__slider .slick-dots li button {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
}
.p-home-mv__slider .slick-dots li.slick-active {
  background: var(--pink1);
}

.p-home-news {
  padding: 7.8rem 0 6rem;
}
@media only screen and (max-width: 767px) {
  .p-home-news {
    padding: 5.79rem 0 5.6rem;
  }
}
.p-home-news__container {
  max-width: 96rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .p-home-news__container {
    padding: 0 3.75rem;
  }
}
.p-home-news__wrap {
  padding: 0.5rem;
  border: 0.2rem solid var(--brown1);
  box-sizing: border-box;
  background: #FFF;
}
.p-home-news__inner {
  padding: 3.5rem;
  border: 0.1rem solid var(--brown1);
  box-sizing: border-box;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-home-news__inner {
    padding: 3.5rem 2.5rem;
  }
}
.p-home-news__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .p-home-news__list {
    row-gap: 3rem;
  }
}
.p-home-news__list_item {
  display: flex;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-home-news__list_item {
    flex-wrap: wrap;
    row-gap: 0.8rem;
  }
}
.p-home-news__list_date {
  width: 9rem;
  line-height: 1.6875;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gray2);
}
.p-home-news__list_cat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 2.2rem;
  border-width: 1px;
  border-style: solid;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
}
.p-home-news__list_sign {
  width: calc(100% - 9rem - 8rem - 3.2rem);
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .p-home-news__list_sign {
    width: 100%;
  }
}
.p-home-news__list_title {
  line-height: 1.6875;
  text-decoration: underline;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brown1);
}
.p-home-news__list_title:hover {
  text-decoration: none;
}
.p-home-news__list_new {
  display: inline-block;
  margin-left: 1rem;
  padding: 0.4rem 1.2rem;
  background: var(--pink1);
  line-height: 1;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFF;
}
.p-home-news__cat-event {
  border-color: var(--brown2);
  color: var(--brown2);
}
.p-home-news__cat-other {
  border-color: var(--blue1);
  color: var(--blue1);
}
.p-home-news__btn {
  margin: 3.4rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-home-news__btn {
    margin-top: 2.4rem;
  }
}
.p-home-news__btn .c-btn {
  margin: 0 auto;
}

.p-home-wrapper {
  background: url(../img/bg-pattern-1.webp) 50% 0 no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .p-home-wrapper {
    background-image: url(../img/bg-pattern-1-sp.webp);
    background-size: 100%;
  }
}

.p-home-newbooks {
  padding: 8rem 0;
  box-sizing: border-box;
  background: url(../img/bg-pattern-2.webp) 50% 0 no-repeat;
  background-size: 100%;
}
@media only screen and (max-width: 767px) {
  .p-home-newbooks {
    padding: 6rem 0 6.4rem;
    background: none;
  }
}
.p-home-newbooks__container {
  max-width: 125.2rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .p-home-newbooks__container {
    padding: 0 2rem;
  }
}
.p-home-newbooks__slider {
  padding-bottom: 1.86rem;
}
@media only screen and (max-width: 767px) {
  .p-home-newbooks__slider {
    margin: 0 auto;
    padding: 0;
  }
}
.p-home-newbooks__slider .slick-track {
  display: flex;
}
.p-home-newbooks__slider .slick-arrow {
  width: 6.4rem;
  height: 6.4rem;
  background: url(../img/newbooks_arrow.svg) 50% 50% no-repeat;
  background-size: 100%;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-home-newbooks__slider .slick-arrow {
    width: 4.6rem;
    height: 4.6rem;
  }
}
.p-home-newbooks__slider .slick-arrow::before {
  display: none;
}
.p-home-newbooks__slider .slick-prev {
  left: -3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-home-newbooks__slider .slick-prev {
    left: -1rem;
    top: 8.6rem;
    transform: translateY(0);
  }
}
.p-home-newbooks__slider .slick-next {
  right: -3.2rem;
  transform: translateY(-50%) scaleX(-1);
}
@media only screen and (max-width: 767px) {
  .p-home-newbooks__slider .slick-next {
    right: -1rem;
    top: 8.6rem;
    transform: translateY(0) scaleX(-1);
  }
}
.p-home-newbooks__slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  bottom: 0;
}
.p-home-newbooks__slider .slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0;
  border-radius: 50%;
  box-sizing: border-box;
  background: var(--pink2);
  overflow: hidden;
  opacity: 1;
}
.p-home-newbooks__slider .slick-dots li button {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
}
.p-home-newbooks__slider .slick-dots li.slick-active {
  background: var(--pink1);
}
.p-home-newbooks__slider_item {
  height: auto !important;
  padding: 0 1.2rem;
  float: none !important;
}
@media only screen and (max-width: 767px) {
  .p-home-newbooks__slider_item {
    padding: 0 0.8rem;
  }
}
.p-home-newbooks__slider_inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2rem;
  border: 1px solid var(--brown1);
  box-sizing: border-box;
  background: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-home-newbooks__slider_inner {
    padding: 1.5rem;
  }
}
.p-home-newbooks__slider_head {
  flex-grow: 1;
}
.p-home-newbooks__slider_thumb img {
  max-width: 20rem;
  width: 100%;
  margin: 0 auto;
}
.p-home-newbooks__slider_content {
  padding: 1.55rem 0 4.5rem;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-home-newbooks__slider_content {
    padding: 1.18rem 0 2.63rem;
  }
}
.p-home-newbooks__slider_title {
  margin: 0 0 0.7rem;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-home-newbooks__slider_title {
    margin-bottom: 0.4rem;
    font-size: 1.4rem;
  }
}
.p-home-newbooks__slider_author {
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gray1);
}
@media only screen and (max-width: 767px) {
  .p-home-newbooks__slider_author {
    font-size: 1.2rem;
  }
}
.p-home-newbooks__slider_author span + span::before {
  content: "/";
}
.p-home-newbooks__slider_btns {
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .p-home-newbooks__slider_btns {
    row-gap: 0.8rem;
  }
}
.p-home-newbooks__btn {
  margin: 6.66rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-home-newbooks__btn {
    margin-top: 2.4rem;
  }
}
.p-home-newbooks__btn .c-btn {
  margin: 0 auto;
}
.p-home-newbooks__modal_item {
  max-width: 98rem;
  width: calc(100% - 6rem);
  margin: 0 auto;
  padding: 6rem 8.8rem;
  border: 0.2rem solid var(--brown1);
  box-sizing: border-box;
  background: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .p-home-newbooks__modal_item {
    width: calc(100% - 4.5rem);
    padding: 3rem 1.75rem;
  }
}
.p-home-newbooks__modal_title {
  margin: 0 auto 3rem;
  line-height: 1.28125;
  letter-spacing: 0.05em;
  font-size: 3.2rem;
  font-weight: 500;
  font-family: "Sawarabi Mincho", serif;
  color: var(--brown1);
}
@media only screen and (max-width: 767px) {
  .p-home-newbooks__modal_title {
    font-size: 2.4rem;
  }
}
.p-home-newbooks__modal_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-home-newbooks__modal_list {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 0.3rem;
         column-gap: 0.3rem;
    row-gap: 0.3rem;
  }
}
.p-home-newbooks__modal_list_link {
  display: block;
}

.p-home-twitter {
  padding: 9.5rem 0 8.06rem;
}
@media only screen and (max-width: 767px) {
  .p-home-twitter {
    padding: 7.1rem 0 5.6rem;
  }
}
.p-home-twitter__container {
  max-width: 96rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .p-home-twitter__container {
    max-width: initial;
  }
}
.p-home-twitter__timeline {
  width: 100%;
  height: 48rem;
  border: 0.1rem solid var(--brown1);
  box-sizing: border-box;
  overflow: hidden;
  overflow-y: auto;
}
@media only screen and (max-width: 767px) {
  .p-home-twitter__timeline {
    width: 30rem;
    height: 34rem;
  }
}

.p-home-contact {
  padding: 6rem 0 0;
}
@media only screen and (max-width: 767px) {
  .p-home-contact {
    padding-top: 4rem;
  }
}
.p-home-contact__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3.2rem;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .p-home-contact__btns {
    row-gap: 2rem;
  }
}

.p-contest {
  padding: 3.3rem 0 0;
  background: url(../img/bg-pattern-3.webp) 50% 0 no-repeat;
  background-size: 100%;
}
@media only screen and (max-width: 767px) {
  .p-contest {
    padding: 2.4rem 0 0;
    background: url(../img/bg-pattern-1-sp.webp) 50% 0 no-repeat;
  }
}
.p-contest__inner {
  max-width: 102rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .p-contest__inner {
    padding: 0 2rem;
  }
}
.p-contest__content {
  padding: 0.5rem;
  border: 0.2rem solid var(--brown1);
  box-sizing: border-box;
  background: #FFF;
}
.p-contest__content_inner {
  padding: 5.5rem 4.5rem;
  border: 0.1rem solid var(--brown1);
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .p-contest__content_inner {
    padding: 2.9rem 1.5rem;
  }
}
.p-contest__content_inner h2 {
  margin: 0 auto 3.2rem;
  padding: 2.5rem 0;
  background: var(--pink1);
  line-height: 1.2777777778;
  letter-spacing: 0.05em;
  font-size: 3.6rem;
  font-weight: 500;
  font-family: "Sawarabi Mincho", serif;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-contest__content_inner h2 {
    margin-bottom: 2.4rem;
    padding: 2rem 0;
    font-size: 2.2rem;
  }
}
.p-contest__content_inner h3 {
  display: inline-block;
  min-width: 30rem;
  margin: 0 auto 2.4rem;
  padding: 1rem 3rem;
  box-sizing: border-box;
  background: var(--pink2);
  position: relative;
  line-height: 1.2916666667;
  letter-spacing: 0.05em;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Sawarabi Mincho", serif;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-contest__content_inner h3 {
    min-width: initial;
    width: calc(100% - 6rem);
    margin-bottom: 1.4rem;
    padding: 0.7rem 0;
    font-size: 2.1rem;
  }
}
.p-contest__content_inner h3::before, .p-contest__content_inner h3::after {
  content: "";
  width: 4rem;
  height: 100%;
  background: url(../img/ribon-end.webp) 50% 50% no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .p-contest__content_inner h3::before, .p-contest__content_inner h3::after {
    width: 3rem;
  }
}
.p-contest__content_inner h3::before {
  right: 100%;
}
.p-contest__content_inner h3::after {
  left: 100%;
  transform: scaleX(-1);
}
.p-contest__content_inner h4 {
  margin: 0 0 3.5rem;
  line-height: 1.4666666667;
  letter-spacing: 0.05em;
  font-size: 3rem;
  font-weight: 700;
  color: var(--brown1);
}
@media only screen and (max-width: 767px) {
  .p-contest__content_inner h4 {
    margin-bottom: 3.34rem;
    font-size: 2.1rem;
  }
}
.p-contest__content_inner p,
.p-contest__content_inner li {
  line-height: 2;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-contest__content_inner p,
  .p-contest__content_inner li {
    font-size: 1.4rem;
  }
}
.p-contest__content_inner p.p-contest__span,
.p-contest__content_inner li.p-contest__span {
  margin: 0 auto;
}
.p-contest__content_inner p.p-contest__span_date,
.p-contest__content_inner li.p-contest__span_date {
  margin: 0 auto;
  line-height: 1.4583333;
  font-size: 2.4rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-contest__content_inner p.p-contest__span_date,
  .p-contest__content_inner li.p-contest__span_date {
    text-align: left;
    font-size: 1.8rem;
  }
}
.p-contest__content_inner p.p-contest__grandprize_title,
.p-contest__content_inner li.p-contest__grandprize_title {
  margin: 0 0 1rem;
  line-height: 1.52173913;
  letter-spacing: 0.05em;
  font-size: 2.3rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-contest__content_inner p.p-contest__grandprize_title,
  .p-contest__content_inner li.p-contest__grandprize_title {
    margin-bottom: 0.7rem;
    font-size: 1.8rem;
  }
}
.p-contest__content_inner p.p-contest__grandprize_author,
.p-contest__content_inner li.p-contest__grandprize_author {
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gray1);
}
@media only screen and (max-width: 767px) {
  .p-contest__content_inner p.p-contest__grandprize_author,
  .p-contest__content_inner li.p-contest__grandprize_author {
    font-size: 1.5rem;
  }
}
.p-contest__content_inner p.p-contest__prizeline_title,
.p-contest__content_inner li.p-contest__prizeline_title {
  margin: 0 0 0.6rem;
  line-height: 1.375;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-contest__content_inner p.p-contest__prizeline_title,
  .p-contest__content_inner li.p-contest__prizeline_title {
    font-size: 1.4rem;
  }
}
.p-contest__content_inner p.p-contest__prizeline_author,
.p-contest__content_inner li.p-contest__prizeline_author {
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gray1);
}
@media only screen and (max-width: 767px) {
  .p-contest__content_inner p.p-contest__prizeline_author,
  .p-contest__content_inner li.p-contest__prizeline_author {
    font-size: 1.2rem;
  }
}
.p-contest__content_inner p.p-contest__books_title,
.p-contest__content_inner li.p-contest__books_title {
  margin: 1rem 0 0.6rem;
  line-height: 1.375;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-contest__content_inner p.p-contest__books_title,
  .p-contest__content_inner li.p-contest__books_title {
    font-size: 1.4rem;
  }
}
.p-contest__content_inner p.p-contest__books_author,
.p-contest__content_inner li.p-contest__books_author {
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-contest__content_inner p.p-contest__books_author,
  .p-contest__content_inner li.p-contest__books_author {
    font-size: 1.2rem;
  }
}
.p-contest__content_inner p.p-contest__selection_title,
.p-contest__content_inner li.p-contest__selection_title {
  margin: 0 0 0.6rem;
  line-height: 1.375;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-contest__content_inner p.p-contest__selection_title,
  .p-contest__content_inner li.p-contest__selection_title {
    font-size: 1.4rem;
  }
}
.p-contest__content_inner p.p-contest__selection_author,
.p-contest__content_inner li.p-contest__selection_author {
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  color: var(--gray1);
}
@media only screen and (max-width: 767px) {
  .p-contest__content_inner p.p-contest__selection_author,
  .p-contest__content_inner li.p-contest__selection_author {
    font-size: 1.2rem;
  }
}
.p-contest__content_inner li {
  padding-left: 2rem;
  position: relative;
  text-align: left;
}
.p-contest__content_inner li + li {
  margin-top: 1.5em;
}
.p-contest__content_inner li::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: var(--brown1);
  position: absolute;
  top: 0.6em;
  left: 0;
}
.p-contest__content_btn {
  margin: 3.4rem auto 0;
}
.p-contest__content_btn a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42rem;
  height: 10rem;
  margin: 0 auto;
  border-radius: 0.8rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  background: var(--pink1);
  position: relative;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 400;
  color: #FFF;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-contest__content_btn a {
    width: 26.5rem;
    height: 6.6rem;
    font-size: 1.8rem;
  }
}
.p-contest__content_btn a:hover {
  opacity: 0.7;
}
.p-contest__content_btn a::after {
  content: "";
  width: 3.125rem;
  height: 1.086rem;
  background: url(../img/arrow-02.svg) 50% 50% no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 1.92rem;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .p-contest__content_btn a::after {
    width: 1.925rem;
    height: 0.686rem;
    right: 0.82rem;
  }
}
.p-contest__block {
  max-width: 78rem;
  width: 100%;
  margin: 8.1rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-contest__block {
    margin-top: 5.6rem;
  }
}
.p-contest__btn {
  margin: 5.4rem auto 0;
}
.p-contest__btn .c-btn {
  margin: 0 auto;
}
.p-contest__mv {
  max-width: 58.1rem;
  width: 100%;
  margin: 0 auto 3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-contest__mv {
    margin-bottom: 2.43rem;
  }
}
.p-contest__grandprize {
  display: grid !important;
  grid-template-columns: 33.4rem 1fr;
  -moz-column-gap: 4.6rem;
       column-gap: 4.6rem;
  margin: 0 auto 5.82rem;
}
@media only screen and (max-width: 767px) {
  .p-contest__grandprize {
    grid-template-columns: 100%;
    row-gap: 1.84rem;
  }
}
.p-contest__grandprize_content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}
.p-contest__prizeline {
  display: grid !important;
  grid-template-columns: 15.453rem 1fr;
  align-items: center;
  -moz-column-gap: 4.55rem;
       column-gap: 4.55rem;
  margin: 0 auto;
  padding: 0 0 2.4rem;
  border-bottom: 1px solid var(--brown1);
  box-sizing: border-box;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-contest__prizeline {
    grid-template-columns: 100%;
    row-gap: 1.6rem;
    padding-bottom: 1.6rem;
  }
}
.p-contest__prizeline + .p-contest__prizeline {
  margin-top: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .p-contest__prizeline + .p-contest__prizeline {
    margin-top: 3rem;
  }
}
.p-contest__prizeline .wp-block-column:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .p-contest__prizeline .wp-block-column:first-child {
    align-items: center;
  }
  .p-contest__prizeline .wp-block-column:first-child figure,
  .p-contest__prizeline .wp-block-column:first-child img {
    width: 14.485rem;
    margin: 0 auto;
  }
}
.p-contest__about_title {
  padding-top: 6.8rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-contest__about_title {
    padding-top: 8.8rem;
  }
}
.p-contest__about_title::before {
  content: "";
  width: 24rem;
  height: 3.43rem;
  background: url(../img/logo.webp) 50% 50% no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-contest__books {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-contest__books {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 1.6rem;
         column-gap: 1.6rem;
    row-gap: 1.7rem;
    max-width: 27.6rem;
    width: 100%;
    margin: 0 auto;
  }
}
.p-contest__prize_column {
  margin: 0 auto 3.6rem;
}
@media only screen and (max-width: 767px) {
  .p-contest__prize_column {
    row-gap: 2.8rem;
    margin-bottom: 2.8rem;
  }
  .p-contest__prize_column figure,
  .p-contest__prize_column img {
    max-width: 22.35rem;
    width: 100%;
    margin: 0 auto;
  }
}
.p-contest__selection {
  counter-reset: selection;
  text-align: left;
}
.p-contest__selection_item {
  counter-increment: selection;
  padding: 0 0 2.5rem 8rem;
  border-bottom: 1px solid var(--brown1);
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-contest__selection_item {
    padding: 0 0 1.9rem 4.35rem;
  }
}
.p-contest__selection_item::before {
  content: counter(selection, decimal-leading-zero);
  position: absolute;
  top: 0.1em;
  left: 1.3rem;
  line-height: 1;
  letter-spacing: -0.01em;
  font-size: 4.6rem;
  font-weight: 400;
  font-family: "Sawarabi Mincho", serif;
  color: var(--brown1);
}
@media only screen and (max-width: 767px) {
  .p-contest__selection_item::before {
    left: 0;
    font-size: 3.2rem;
  }
}
.p-contest__selection_item + .p-contest__selection_item {
  margin-top: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-contest__selection_item + .p-contest__selection_item {
    margin-top: 2.5rem;
  }
}
/*# sourceMappingURL=maps/style.css.map */
