@charset "utf-8";

.l-main.--pc {
  padding-top: 72px;
  display: flex;
  flex-wrap: wrap;
}

.l-main.--sp {
  display: none;
}

@media all and (max-width: 576px) {
  .l-main.--pc {
    display: none;
  }

  .l-main.--sp {
    padding-top: 52px;
    display: block;
  }
}

.l-menu {
  width: 400px;
  background-color: #f44336;
  position: fixed;
  top: 72px;
}

.l-contents {
  width: calc(100% - 400px);
  margin-left: auto;
}

ul.p-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: auto;
  height: calc(100svh - 72px);
}

ul.p-menu__list li {
  border-bottom: solid 1px #f87c73;
}

ul.p-menu__list li a {
  color: #fff;
  font-size: 20px;
  background-color: #f44336;
  border: solid 2px transparent;
  text-decoration: none;
  padding: 0.75em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul.p-menu__list li a:hover,
ul.p-menu__list li.is-current a {
  background-color: #ad0816;
}

ul.p-menu__list li:first-child a {
  background-color: #fff;
  color: #f44336;
  border-color: #f44336;
}

ul.p-menu__list li:first-child a:hover {
  background-color: #ad0816;
  color: #fff;
  border-color: transparent;

}

ul.p-menu__list li a span {
  font-family: 'Poppins', sans-serif;
  margin-left: 0.5em;
  font-size: 0.65em;
}

.p-sec__img {
  width: 100%;
  aspect-ratio: 1000/480;
  margin-bottom: 40px;
}

.p-sec {
  margin-top: -72px;
  padding-top: 72px;
  margin-bottom: 200px;
}

.p-sec.--01 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -72px;
  padding-top: 72px;
  margin-bottom: 0;
  height: 100svh;
  min-height: 600px;
}

/* 各section に mv がない場合 */
.p-sec.--02,
.p-sec.--03,
.p-sec.--04,
.p-sec.--14,
.p-sec.--15,
.p-sec.--16,
.p-sec.--17 {
  margin-top: calc(-72px - 20px);
  padding-top: calc(72px + 20px);
}

.p-sec.--14,
.p-sec.--15,
.p-sec.--16,
.p-sec.--17 {
  margin-bottom: 100px;
}

.p-sec__inner {
  width: 100%;
  max-width: calc(610px + 20px * 2);
  margin: 0 auto;
  padding: 0 20px;
}

.p-sec.--01 .p-sec__inner {
  max-width: calc(730px + 20px * 2);
}

.p-sec__header {
  margin-bottom: 40px;
}

.p-sec.--01 .p-sec__header {
  margin-bottom: 100px;
}

.p-sec.--06 .p-sec__header,
.p-sec.--07 .p-sec__header,
.p-sec.--08 .p-sec__header {
  margin-bottom: 65px;
}

.p-sec__header-heading {
  font-family: 'Poppins', 'Noto Sans JP', sans-serif;
  color: #f44336;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4;
}

.p-sec.--01 .p-sec__header-heading {
  font-size: 50px;
}

.p-sec__header-heading-sub {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.p-sec__header-heading-sub span {
  font-size: 15px;
  font-weight: 500;
  margin-left: 1em;
}

.p-sec__header-txt {
  font-size: 15px;
  margin-top: 1em;
}

.p-sec__block {
  margin-bottom: 60px;
}

.p-sec__block-header {
  margin-bottom: 30px;
}

.p-sec__block-header-heading {
  font-size: 24px;
  font-weight: 700;
}

.p-sec__block-header-heading-sub {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.p-sec__block-header-heading-sub::before {
  content: '';
  width: 24px;
  height: 1px;
  background-color: #212121;
  display: inline-block;
  margin-right: 10px;
}

.p-sec__block-heading-topics {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

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

ul.p-sec__list li {
  margin-bottom: 30px;
}

.p-sec__list-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.p-sec__btn {
  width: 100%;
  margin: 0 auto;
}

.p-sec.--01 .p-sec__btn {
  max-width: 610px;
}

.c-btn--pdf {
  width: 100%;
  height: 100%;
  min-height: 80px;
  background-color: #fff;
  border-radius: 9999px;
  color: inherit;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 10px 28px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  line-height: 1.5;
}

.c-btn--pdf::before {
  content: '';
  width: 27px;
  height: 35px;
  background: url(../img/common/pdf_red.svg) no-repeat center center / 100% auto;
  margin-right: 1em;
}

.c-btn--pdf:hover {
  color: #fff;
  background-color: #f44336;
}

.c-btn--pdf:hover::before {
  background-image: url(../img/common/pdf_white.svg);
}

.c-btn--red {
  color: #fff;
  background-color: #f44336;
}

.c-btn--pdf.c-btn--red::before {
  background-image: url(../img/common/pdf_white.svg);
}

.c-btn--red:hover {
  background-color: #AD0816;
}


.c-btn--pdf span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8em;
  margin-top: 0.4em;
}

.p-main__header {
  padding: 20px 20px 25px;
}

.p-main__header-heading {
  font-size: min(calc(32 / 390 * 100vw), 32px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #f44336;
  margin-bottom: 6px;
}

.p-main__header-txt {
  font-size: min(calc(13 / 390 * 100vw), 13px);
  text-align: center;
}

.p-pulldown {
  padding-bottom: 70px;
}

.p-pulldown dl {
  margin: 0;
  border-top: solid 1px #c8c8c8;
}

.p-pulldown dl:last-child {
  border-bottom: solid 1px #c8c8c8;
}

.p-pulldown dl dt {
  font-size: 24px;
  font-weight: 700;
  padding: 20px 80px 20px 20px;
  position: relative;
}

@media all and (max-width: 360px) {
  .p-pulldown dl dt {
    font-size: 20px;
  }
}

.p-pulldown dl dt .toggle {
  width: 38px;
  height: 38px;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate3d(0, -50%, 0);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.p-pulldown dl dt .toggle > span {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: all 0.5s ease-out;
}

.p-pulldown dl dt .toggle > span::before,
.p-pulldown dl dt .toggle > span::after {
  content: '';
  display: block;
  border-radius: 2px;
  background-color: #f44336;
  position: absolute;
}

.p-pulldown dl dt .toggle > span::before {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}

.p-pulldown dl dt .toggle > span::after {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
}

.p-pulldown dl dt .toggle.is-show {
  background-color: rgba(33, 33, 33, 0.3);
}

.p-pulldown dl dt .toggle.is-show > span {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.p-pulldown dl dt .toggle.is-show > span::before,
.p-pulldown dl dt .toggle.is-show > span::after {
  background-color: #fff;
}

.p-pulldown dl dt > span {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-left: 10px;
  font-size: 14px;
}

.p-pulldown dl dd {
  margin: 0;
  display: none;
  padding: 0 30px 30px;
}

.p-pulldown__img {
  width: 100vw;
  height: min(100vw, 390px);
  margin: 0 -30px 30px;
}

.p-pulldown__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-pulldown__header {
  margin-bottom: 28px;
}

.p-pulldown__header-heading {
  color: #f44336;
  font-size: calc(28 / 390 * 100vw);
  font-weight: 700;
  line-height: 1.4;
}

.p-pulldown__block {
  margin-bottom: 30px;
}

.p-pulldown__block-header {
  margin-bottom: 30px;
}

.p-pulldown__block-header-heading {
  font-size: 24px;
  font-weight: 700;
}

.p-pulldown__block-header-heading-sub {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.p-pulldown__block-header-heading-sub::before {
  content: '';
  width: 24px;
  height: 1px;
  background-color: #212121;
  display: inline-block;
  margin-right: 10px;
}

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

ul.p-pulldown__list li {
  margin-bottom: 20px;
}

.p-pulldown__list-heading-topics {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.p-pulldown__btn {
  width: 100%;
}

.p-pulldown__btn .c-btn--pdf {
  background-color: #fff;
  color: inherit;
  font-size: 16px;
  line-height: 1.4;
}

.p-pulldown__btn .c-btn--pdf::before {
  background-image: url(../img/common/pdf_red.svg);
  margin-right: 10px;
}

.p-pulldown__btn .c-btn--pdf.c-btn--red {
  background-color: #f44336;
  color: #fff
}

.p-pulldown__btn .c-btn--pdf.c-btn--red::before {
  background-image: url(../img/common/pdf_white.svg);
}

.p-pulldown__btn .c-btn--pdf span {
  font-size: 12px;
}

.p-pulldown__btn div {
  flex: 1;
}
