@charset "UTF-8";
/* ====================
 SIZE SET
==================== */
/* ===================
 MIXIN
==================== */
.c-mplus {
  font-family: "M PLUS Rounded 1c", sans-serif; }

/*----------------------------------------
	RESET
-----------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, section {
  display: block; }

body {
  line-height: 1; }

ol, ul, li {
  list-style: none !important; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: '';
  content: none; }

q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

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

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

html {
  font-size: 62.5%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: auto; }
  @media only screen and (max-width: 834px) {
    html {
      overflow-x: hidden; } }

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: justify;
  color: #000;
  background: #fff;
  width: 100%;
  min-width: 1300px;
  word-wrap: break-word;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  position: relative;
  hanging-punctuation: allow-end;
  margin: 0 auto; }
  @media only screen and (max-width: 834px) {
    body {
      width: 100%;
      font-size: calc(14/375*100vw);
      min-width: 0; } }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }
  *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; }

a {
  text-decoration: none;
  color: #000;
  -webkit-tap-highlight-color: transparent;
  transition: .3s; }

@media only screen and (min-width: 835px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none; } }
input[type="text"], input[type="password"], textarea, select {
  outline: none; }

img,
video {
  max-width: 100%;
  height: auto;
  line-height: 1;
  vertical-align: top; }

/*===================================
画面サイズ 
===================================*/
.c-inner {
  width: 800px;
  margin-right: auto;
  margin-left: auto; }

.c-outer {
  width: 1040px;
  margin-right: auto;
  margin-left: auto; }

@media screen and (max-width: 1400px) {
  .fullWidth {
    width: 100%; } }
@media screen and (max-width: 1040px) {
  .c-outer {
    width: 95%; } }
@media screen and (max-width: 800px) {
  .c-inner {
    width: 85%; } }
@media screen and (max-width: 834px) {
  .c-inner {
    width: 85%; }

  .c-outer {
    width: 86%; } }
/*===================================
言語設定 
===================================*/
.c-lang-jp .-jp {
  display: inline; }
.c-lang-jp .-en {
  display: none; }
.c-lang-en {
  text-align: left; }
  .c-lang-en .-jp {
    display: none; }
  .c-lang-en .-en {
    display: inline; }

/*===================================
font 
===================================*/
.u-mplus {
  font-family: "M PLUS Rounded 1c", sans-serif; }

.c-fw-m {
  font-weight: 500; }

/*===================================
color
===================================*/
.c-red {
  color: #cc0000; }

.c-gly-b {
  background: #eaebec; }

/*===================================
swiper
===================================*/
.swiper-button-next, .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0; }
  .swiper-button-next::after, .swiper-button-prev::after {
    display: none; }
.swiper-button-next {
  background-image: url(../img/common/arw_next.svg); }
.swiper-button-prev {
  background-image: url(../img/common/arw_prev.svg); }
@media only screen and (max-width: 834px) {
  .swiper-next, .swiper-prev {
    width: calc(40/375*100vw);
    height: calc(40/375*100vw); } }

.iv, .ivo {
  visibility: hidden; }

/*===================================
オリジナル
===================================*/
/*===================================
ふわっ
===================================*/
.fadeIn {
  opacity: 0;
  animation: animate-fadeIn 0.8s forwards; }

.fadeUp {
  opacity: 0;
  animation: animate-fadeInUp 0.8s forwards; }

.fadeInLft {
  opacity: 0;
  animation: animate-fadeInLft 0.8s forwards; }

.fadeInRgt {
  opacity: 0;
  animation: animate-fadeInRgt 0.8s forwards; }

@keyframes animate-fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes animate-fadeInUp {
  from {
    opacity: 0;
    transform: translate(0, 50px); }
  to {
    opacity: 1;
    transform: translate(0); } }
@keyframes animate-fadeInLft {
  from {
    opacity: 0;
    transform: translate(-50px, 0); }
  to {
    opacity: 1;
    transform: translate(0); } }
@keyframes animate-fadeInRgt {
  from {
    opacity: 0;
    transform: translate(50px, 0); }
  to {
    opacity: 1;
    transform: translate(0); } }
/*===================================
回転
===================================*/
.rotateX {
  animation: animate-rotateX 8s forwards; }

.rotateXcenter {
  animation: animate-rotateX 8s forwards; }

@keyframes animate-rotateX {
  from {
    transform: rotate(0); }
  to {
    transform: rotate(360deg); } }
@keyframes animate-rotateXcenter {
  from {
    transform: translate(-50%, -50%) rotate(0); }
  to {
    transform: translate(-50%, -50%) rotate(360deg); } }
/*==================================================
スーッ
===================================*/
.slideIn {
  animation: animate-slideIn 0.4s linear forwards; }

@keyframes animate-slideIn {
  from {
    transform: translate(-100%, 0); }
  to {
    transform: translate(0, 0); } }
/*==================================================
滑らかに変形して出現
===================================*/
.smooth {
  animation: animate-smooth 1s forwards;
  transform-origin: left;
  opacity: 0; }

@keyframes animate-smooth {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0; }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1; } }
@media only screen and (min-width: 835px) {
  a:hover {
    opacity: 0.6; } }

.-arw::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  transform: rotate(45deg);
  transition: .4s;
  margin-right: 0.5em; }

.-blank::before {
  content: '';
  display: block;
  transform: none !important;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: .4s;
  top: calc(50% - 6px) !important;
  width: 12px;
  height: 12px;
  background-image: url(../img/common/arw_blank_red.svg); }
.-blank:hover::before {
  background-image: url(../img/common/arw_blank_wht.svg); }

.c-btn-hd {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 36px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 500;
  border: 1px solid #fff;
  cursor: pointer; }
  .c-btn-hd.-teacher {
    background: #eaebec; }
    .c-btn-hd.-teacher:before {
      border-color: #cc0000; }
    @media only screen and (min-width: 835px) {
      .c-btn-hd.-teacher:hover {
        color: #fff;
        background: #2e3642; } }
  .c-btn-hd.-contact {
    color: #fff;
    background: #cc0000; }
    .c-btn-hd.-contact:before {
      border-color: #fff;
      margin-right: 4px;
      background-image: url(../img/common/arw_blank_wht.svg); }
    @media only screen and (min-width: 835px) {
      .c-btn-hd.-contact:hover {
        opacity: 1;
        color: #000;
        background: #f5cccc; }
        .c-btn-hd.-contact:hover:before {
          border-color: #cc0000;
          background-image: url(../img/common/arw_blank_red.svg); } }
  .c-btn-hd.-language {
    color: #fff;
    background: #2e3642;
    border-color: #fff; }
    .c-btn-hd.-language i {
      width: 20px;
      height: 20px;
      mask-image: url(../img/common/icon_lang.svg);
      mask-repeat: no-repeat;
      mask-position: center;
      background: #fff;
      margin-right: 0.5em; }
    @media only screen and (min-width: 835px) {
      .c-btn-hd.-language:hover {
        color: #000;
        background: #eaebec; }
        .c-btn-hd.-language:hover i {
          background: #000; } }

.c-btn-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 36px;
  line-height: 1;
  color: #fff;
  padding: 0 30px;
  border-radius: 100vw;
  cursor: pointer; }
  .c-btn-nav::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 10px 0 10px;
    border-color: #2e3642 transparent transparent;
    transform: translate(-50%, 100%) scale(0);
    transform-origin: center top;
    transition: .3s;
    z-index: 1; }
  .c-btn-nav.open::after {
    transform: translate(-50%, 100%) scale(1); }
  @media only screen and (min-width: 835px) {
    .c-btn-nav:hover {
      opacity: 1;
      background: #434a55; } }

.c-btn-more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 330px;
  height: 60px;
  margin: 15px 0;
  padding-left: 30px;
  color: #4c4c4c;
  background: #fff;
  border-radius: 100vw; }
  .c-btn-more .ttl {
    font-size: 18px;
    letter-spacing: 0.03em;
    line-height: 1;
    font-weight: 700; }
  .c-btn-more .txt {
    font-size: 15px;
    letter-spacing: 0.03em;
    line-height: 1.47;
    margin-left: 1em;
    padding-left: 1em;
    border-left: 1px solid #808080; }
  .c-btn-more::before {
    position: absolute;
    top: 50%;
    right: 20px;
    margin: 0;
    border-color: #808080;
    transform: translate(0, -50%) rotate(45deg); }
  @media only screen and (min-width: 835px) {
    .c-btn-more:hover {
      opacity: 1;
      color: #fff;
      background: #cc0000; }
      .c-btn-more:hover .txt {
        border-color: #fff; }
      .c-btn-more:hover::before {
        border-color: #fff; } }

.c-btn-red {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 50px;
  line-height: 1;
  text-align: center;
  color: #cc0000;
  background: none;
  border: 1px solid #cc0000;
  border-radius: 100vw; }
  .c-btn-red::before {
    position: absolute;
    top: 50%;
    right: 20px;
    margin: 0;
    border-color: #cc0000;
    transform: translate(0, -50%) rotate(45deg); }
  @media only screen and (min-width: 835px) {
    .c-btn-red:hover {
      opacity: 1;
      color: #fff;
      background: #cc0000; }
      .c-btn-red:hover::before {
        border-color: #fff; } }

.c-btn-txt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 2.125; }
  .c-btn-txt::before {
    border-color: #cc0000; }

.c-btn-contest {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 100%;
  height: 100%;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 400;
  padding: 0 14px;
  cursor: pointer; }
  .c-btn-contest::before {
    border-color: #b2b2b2; }
  @media only screen and (min-width: 835px) {
    .c-btn-contest:hover {
      opacity: 1;
      color: #fff;
      background: #cc0000; }
      .c-btn-contest:hover::before {
        border-color: #fff; } }

.c-btn-sort {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4c4c4c;
  border: 1px solid #b2b2b2;
  border-radius: 100vw;
  overflow: hidden; }
  .c-btn-sort.-left {
    justify-content: flex-start;
    padding-left: 1em; }
  .c-btn-sort.-red {
    color: #fff;
    background: #cc0000;
    border-color: #cc0000; }
  .c-btn-sort.-allOn {
    color: #fff;
    background: #cc0000; }
  @media only screen and (min-width: 835px) {
    .c-btn-sort:hover {
      opacity: 1;
      color: #fff;
      background: #cc0000;
      border-color: #cc0000; } }

input:checked + .c-btn-sort {
  color: #fff;
  background: #cc0000;
  border-color: #cc0000; }

@media only screen and (min-width: 835px) {
  .-big {
    width: 500px !important;
    height: 70px !important;
    font-size: 2.2rem; } }
@media only screen and (max-width: 834px) {
  .c-btn-hd {
    width: calc(60/375*100vw);
    height: calc(60/375*100vw);
    flex-direction: column;
    font-size: calc(12/375*100vw);
    letter-spacing: 0.05em;
    line-height: 1.87;
    border: none; }
    .c-btn-hd.-teacher, .c-btn-hd.-contact {
      display: none; }
    .c-btn-hd.-language {
      margin-right: calc(60/375*100vw); }
      .c-btn-hd.-language i {
        display: block;
        width: calc(20/375*100vw);
        height: calc(20/375*100vw);
        margin: 0 auto; }

  .c-btn-nav {
    justify-content: flex-start;
    width: calc(280/375*100vw);
    height: auto;
    min-height: calc(50/375*100vw);
    line-height: 1;
    color: #fff;
    text-align: left;
    margin: -1px auto 0;
    padding: 0;
    border-radius: 100vw;
    cursor: pointer;
    border-top: 1px solid #434a55;
    border-bottom: 1px solid #434a55;
    border-radius: 0; }
    .c-btn-nav::before {
      content: '';
      display: block;
      width: 7px;
      height: 7px;
      border-right: 1px solid #000;
      border-top: 1px solid #000;
      transform: rotate(45deg);
      transition: .4s;
      position: absolute;
      right: calc(10/375*100vw);
      border-color: #fff; }
    .c-btn-nav.js-hd-nav-more::before {
      transform: translate(0, 0) rotate(135deg); }
    .c-btn-nav.js-hd-nav-more.open::before {
      transform: translate(0, 0) rotate(315deg); }
    .c-btn-nav::after {
      bottom: 0;
      border-width: calc(15/375*100vw) calc(10/375*100vw) 0 calc(10/375*100vw); }

  .c-btn-more {
    width: calc(280/375*100vw);
    height: calc(50/375*100vw);
    margin: 0 auto calc(20/375*100vw);
    padding-left: calc(0/375*100vw);
    color: #cc0000;
    background: #fff; }
    .c-btn-more .ttl {
      width: calc(60/375*100vw);
      flex-shrink: 0;
      font-size: calc(16/375*100vw);
      letter-spacing: 0.03em;
      line-height: 1.13;
      font-weight: 700; }
    .c-btn-more .txt {
      width: calc(150/375*100vw);
      font-size: calc(14/375*100vw);
      letter-spacing: 0.03em;
      line-height: 1.29;
      margin-left: 1em;
      padding-left: 1em;
      border-left: 1px solid #cc0000; }
    .c-btn-more::before {
      right: calc(20/375*100vw);
      border-color: #cc0000; }

  .c-btn-language {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(160/375*100vw);
    height: calc(36/375*100vw);
    font-size: calc(14/375*100vw);
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    border: 1px solid #434a55;
    cursor: pointer; }
    .c-btn-language i {
      width: calc(20/375*100vw);
      height: calc(20/375*100vw);
      mask-image: url(../img/common/icon_lang.svg);
      mask-repeat: no-repeat;
      mask-position: center;
      background: #fff;
      margin-right: 0.5em; }

  .c-btn-red {
    width: calc(220/375*100vw);
    height: calc(40/375*100vw);
    color: #fff;
    background: #cc0000;
    margin-left: auto;
    margin-right: auto; }
    .c-btn-red::before {
      right: calc(20/375*100vw);
      border-color: #fff; }

  .c-lang-en .c-btn-red {
    width: 100%; } }
.c-txt-archive {
  text-align: center; }
  .c-txt-archive__ttl {
    font-size: 32px;
    letter-spacing: 0.1em;
    line-height: 1.25;
    font-weight: 500;
    margin-bottom: 10px; }
    .c-txt-archive__ttl small {
      font-size: 24px;
      letter-spacing: 0.05em;
      line-height: 1.67; }
      .c-txt-archive__ttl small.-min {
        font-size: 18px;
        letter-spacing: 0.05em;
        line-height: 1.17; }
  .c-txt-archive__subttl {
    font-size: 28px;
    letter-spacing: 0.1em;
    line-height: 1.43;
    font-weight: 500;
    margin-bottom: 10px; }
    .c-txt-archive__subttl small {
      font-size: 24px;
      letter-spacing: 0.05em;
      line-height: 1.67; }
  .c-txt-archive__lead {
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 2.31; }

.c-txt-cnt {
  text-align: center;
  margin-bottom: 28px; }
  .c-txt-cnt__ttl {
    font-size: 28px;
    letter-spacing: 0.1em;
    line-height: 1.43;
    font-weight: 500; }
    .c-txt-cnt__ttl small {
      display: inline-block;
      font-size: 20px;
      letter-spacing: 0.05em;
      line-height: 1.6; }
    .c-txt-cnt__ttl strong {
      display: inline-block;
      font-size: 48px;
      letter-spacing: 0em;
      line-height: 1;
      color: #cc0000;
      margin: 10px 0 0; }
  .c-txt-cnt__sub {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.44;
    font-weight: 500; }
    .c-txt-cnt__sub small {
      font-size: 13px;
      letter-spacing: 0em;
      line-height: 2; }

.c-txt-definition {
  display: flex;
  padding: 19px 0;
  border-bottom: 1px solid #b2b2b2; }
  .c-txt-definition__ttl {
    flex-shrink: 0;
    width: 140px;
    font-weight: bold; }
  .c-txt-definition__body {
    width: 100%; }
  .c-txt-definition:first-of-type {
    border-top: 1px solid #b2b2b2; }

@media only screen and (max-width: 834px) {
  .c-txt-archive {
    text-align: center; }
    .c-txt-archive__ttl, .c-txt-archive__subttl {
      font-size: calc(22/375*100vw);
      letter-spacing: 0.1em;
      line-height: 1.18;
      margin-bottom: calc(7/375*100vw); }
      .c-txt-archive__ttl small, .c-txt-archive__subttl small {
        font-size: calc(18/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1.44; }
        .c-txt-archive__ttl small.-min, .c-txt-archive__subttl small.-min {
          font-size: calc(16/375*100vw);
          letter-spacing: 0.05em;
          line-height: 1.31; }
    .c-txt-archive__lead {
      font-size: calc(13/375*100vw);
      letter-spacing: 0.1em;
      line-height: 2.31; }

  .c-txt-cnt {
    margin-bottom: calc(20/375*100vw); }
    .c-txt-cnt__ttl {
      font-size: calc(22/375*100vw);
      letter-spacing: 0.1em;
      line-height: 1.82; }
      .c-txt-cnt__ttl small {
        font-size: calc(14/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1.43; }
      .c-txt-cnt__ttl strong {
        font-size: calc(32/375*100vw);
        letter-spacing: 0em;
        line-height: 1;
        margin: calc(10/375*100vw) 0 0; }
    .c-txt-cnt__sub {
      font-size: calc(16/375*100vw);
      letter-spacing: 0.05em;
      line-height: 1.4; }
      .c-txt-cnt__sub small {
        font-size: calc(11/375*100vw);
        letter-spacing: 0em;
        line-height: 1.82; }

  .c-txt-definition {
    display: block;
    padding: calc(10/375*100vw) 0; }
    .c-txt-definition__ttl {
      width: 100%; }
    .c-txt-definition__body {
      line-height: 1.71; } }
.l-hd {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, #fff, #fff 82px, #2e3642 82px);
  z-index: 1000; }
  .l-hd__wrap {
    position: relative;
    width: 100%;
    max-width: 1300px;
    min-width: 1040px;
    margin: 0 auto;
    z-index: 1001; }
    .l-hd__wrap--top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      height: 82px;
      padding: 8px 31px 0;
      line-height: 1; }
      .l-hd__wrap--top--logo {
        display: flex;
        align-items: center;
        justify-content: flex-start; }
        .l-hd__wrap--top--logo .foundation {
          display: block;
          width: 222px; }
        .l-hd__wrap--top--logo .haiku {
          display: block;
          width: 326px;
          margin-left: 30px; }
      .l-hd__wrap--top--btn {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-right: 20px; }
        .l-hd__wrap--top--btn .hum {
          display: none; }
    .l-hd__wrap--nav {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 50px;
      background: #2e3642; }
  .l-hd-nav {
    display: flex;
    align-items: center;
    justify-content: center; }
    .l-hd-nav__list {
      margin: 0 8px; }
    .l-hd-nav-more {
      display: none;
      position: absolute;
      top: 130px;
      left: 50%;
      width: 100vw;
      padding: 20px 0;
      background: #434a55;
      transform: translate(-50%, 0); }
      .l-hd-nav-more__list {
        display: flex;
        flex-wrap: wrap; }
        @media only screen and (min-width: 835px) {
          .l-hd-nav-more__list--blk:not(:nth-of-type(3n)) {
            margin-right: 25px; } }
      .l-hd-nav-more__close {
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        width: 80px;
        height: 80px;
        background: #2e3642;
        z-index: 10000;
        cursor: pointer; }
        .l-hd-nav-more__close::before, .l-hd-nav-more__close::after {
          content: '';
          display: block;
          position: absolute;
          top: 50%;
          left: 50%;
          width: 30px;
          height: 2px;
          background: #fff;
          transform: translate(-50%, 0) rotate(45deg);
          transform-origin: center; }
        .l-hd-nav-more__close::after {
          transform: translate(-50%, 0) rotate(-45deg); }

@media only screen and (max-width: 834px) {
  .l-hd {
    background: #fff; }
    .l-hd__wrap {
      width: 100%;
      max-width: none;
      min-width: 0; }
      .l-hd__wrap--top {
        height: calc(60/375*100vw);
        padding: 0 0 0 calc(19/375*100vw); }
        .l-hd__wrap--top--logo {
          display: block;
          width: calc(183/375*100vw);
          flex-shrink: 0; }
          .l-hd__wrap--top--logo .foundation {
            width: calc(162/375*100vw);
            margin-top: calc(10/375*100vw); }
          .l-hd__wrap--top--logo .haiku {
            width: calc(183/375*100vw);
            margin-left: 0;
            margin-top: calc(5/375*100vw); }
        .l-hd__wrap--top--btn {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          margin-right: 0; }
          .l-hd__wrap--top--btn .hum {
            position: fixed;
            top: 0;
            right: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-direction: column;
            width: calc(60/375*100vw);
            height: calc(60/375*100vw);
            padding: calc(20/375*100vw) 0 0;
            z-index: 10111111; }
            .l-hd__wrap--top--btn .hum__txt {
              font-size: calc(12/375*100vw);
              letter-spacing: 0.05em;
              line-height: 1.87;
              font-weight: 500;
              color: #2e3642;
              padding-bottom: calc(8/375*100vw); }
            .l-hd__wrap--top--btn .hum span {
              position: relative;
              display: block;
              width: 40%;
              height: 1px;
              background: #2e3642;
              border-radius: 1px;
              transition: .3s; }
              .l-hd__wrap--top--btn .hum span::before, .l-hd__wrap--top--btn .hum span::after {
                content: '';
                position: absolute;
                display: block;
                right: 0;
                width: 100%;
                height: 1px;
                border-radius: 1px;
                background: #2e3642;
                transition: .3s; }
              .l-hd__wrap--top--btn .hum span::before {
                top: calc(-6/375*100vw); }
              .l-hd__wrap--top--btn .hum span::after {
                top: calc(6/375*100vw); }
            .l-hd__wrap--top--btn .hum.open::after {
              bottom: calc(-4/1300*100vw); }
            .l-hd__wrap--top--btn .hum.open span {
              background: transparent !important; }
              .l-hd__wrap--top--btn .hum.open span::before {
                top: 0;
                background: #fff;
                transform: rotate(45deg); }
              .l-hd__wrap--top--btn .hum.open span::after {
                top: 0;
                background: #fff;
                transform: rotate(-45deg); }
      .l-hd__wrap--nav {
        position: fixed;
        top: -100%;
        left: 0;
        display: block;
        width: 100%;
        height: 100dvh;
        overflow: scroll;
        transition: .3s;
        z-index: 1010; }
        .l-hd__wrap--nav.open {
          top: 0; }
    .l-hd-nav {
      flex-direction: column;
      margin: calc(90/375*100vw) auto; }
      .l-hd-nav__list {
        width: 100%;
        margin: 0; }
      .l-hd-nav__lang {
        width: calc(280/375*100vw);
        margin: calc(20/375*100vw) auto 0; }
      .l-hd-nav-more {
        display: none;
        position: static;
        padding: calc(30/375*100vw) 0;
        transform: translate(0, 0); }
        .l-hd-nav-more__list {
          display: block; }
          .l-hd-nav-more__list .c-btn-more .ttl {
            margin-left: calc(15/375*100vw); }
        .l-hd-nav-more__close {
          display: none; } }
.l-ft-submission {
  padding: 50px 0 50px; }
  .l-ft-submission__btn {
    margin: 40px auto 0; }
.l-ft-totop {
  position: fixed;
  bottom: -200px;
  right: 20px;
  width: 120px;
  z-index: 500;
  transition: .3s;
  transform-origin: bottom center; }
  @media only screen and (min-width: 835px) {
    .l-ft-totop:hover {
      opacity: 1;
      transform: scale(1.03); } }
.l-ft-guide {
  background: #f7f7f7; }
  .l-ft-guide .-blank::before {
    margin-right: 0.2em;
    margin-left: -0.05em; }
  .l-ft-guide .-blank:hover::before {
    background-image: url(../img/common/arw_blank_red.svg); }
  .l-ft-guide__wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 60px 0; }
  .l-ft-guide__logo--foundation {
    display: block;
    width: 278px; }
  .l-ft-guide__logo--haiku {
    display: block;
    width: 338px;
    margin-top: 22px; }
  .l-ft-guide__nav--list {
    margin-top: -8px;
    columns: 2;
    column-width: auto; }
    .l-ft-guide__nav--list li {
      padding-left: 40px; }
    .l-ft-guide__nav--list--blank {
      position: absolute;
      bottom: 50px;
      left: 0;
      padding: 0 !important; }
  .l-ft-guide__copy {
    height: 80px;
    letter-spacing: 0;
    line-height: 80px;
    text-align: center;
    color: #fff;
    background: #2e3642; }

@media only screen and (max-width: 834px) {
  .l-ft-submission {
    padding: calc(60/375*100vw) 0; }
    .l-ft-submission__btn {
      margin: calc(50/375*100vw) auto 0; }
  .l-ft-totop {
    right: 0;
    width: calc(100/375*100vw); }
  .l-ft-guide__wrap {
    display: block;
    padding: calc(45/375*100vw) 0; }
  .l-ft-guide__logo--foundation {
    width: calc(278/375*100vw); }
  .l-ft-guide__logo--haiku {
    width: calc(262/375*100vw);
    margin-top: calc(22/375*100vw); }
  .l-ft-guide__nav--list {
    margin-top: calc(25/375*100vw);
    columns: 1; }
    .l-ft-guide__nav--list li {
      padding-left: 0; }
    .l-ft-guide__nav--list--blank {
      position: static; }
  .l-ft-guide__copy {
    height: calc(30/375*100vw);
    line-height: calc(30/375*100vw);
    font-size: 1rem;
    text-align: left;
    padding-left: 7.5vw; } }
.l-main {
  margin: 0 auto; }
  .l-main-bredcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 2.62;
    max-width: 100vw;
    overflow-x: auto; }
    .l-main-bredcrumb.c-outer {
      width: 93%;
      margin-left: 7%; }
    .l-main-bredcrumb li {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-right: 3px;
      white-space: nowrap; }
      .l-main-bredcrumb li::before {
        border-color: #cc0000; }
  .l-main-archive__fv {
    position: relative; }
    .l-main-archive__fv--txt {
      position: absolute;
      top: 0;
      left: 50%;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      height: 100%;
      font-size: 40px;
      letter-spacing: 0em;
      line-height: 1;
      font-weight: 500;
      transform: translateX(-50%); }
  .l-main .js-acd-btn {
    position: relative; }
    .l-main .js-acd-btn::before, .l-main .js-acd-btn::after {
      content: '';
      display: block;
      position: absolute;
      top: 50%;
      right: 5%;
      width: 12px;
      height: 1px;
      background: #fff;
      transform-origin: center;
      transition: .3s; }
    .l-main .js-acd-btn::after {
      transform: rotate(-90deg); }
    .l-main .js-acd-btn.open::after {
      transform: rotate(0); }

@media only screen and (max-width: 834px) {
  .l-main {
    margin: 0 auto; }
    .l-main-bredcrumb {
      font-size: calc(11/375*100vw);
      letter-spacing: 0.05em;
      line-height: 3.09; }
      .l-main-bredcrumb li::before {
        width: 0.45em;
        height: 0.45em;
        transform: translateY(-25%) rotate(45deg); }
    .l-main-archive__fv--txt {
      font-size: calc(22/375*100vw);
      letter-spacing: 0.1em;
      line-height: 1.82; } }
.p-top {
  overflow: hidden; }
  .p-top-fv {
    padding-bottom: 95px;
    background: #f7f7f7; }
    .p-top-fv__mv {
      position: relative;
      overflow: hidden; }
    .p-top-fv__nav {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 11;
      margin-top: 30px; }
      .p-top-fv__nav--inr {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 30px;
        background: #fff;
        margin: 0 30px;
        padding: 0 25px;
        border-radius: 100vw; }
      .p-top-fv__nav--stop {
        display: block;
        width: 7px;
        height: 12px; }
      .p-top-fv__nav--line {
        width: 1px;
        height: 11px;
        background: #969aa0;
        margin: 0 12px; }
      .p-top-fv__nav--play {
        display: block;
        width: 8px;
        height: 12px; }
    .p-top-fv .swiper {
      position: relative; }
      .p-top-fv .swiper-slide-duplicate-prev {
        opacity: 0.5; }
      .p-top-fv .swiper-slide-duplicate-next {
        transition: 0 !important;
        opacity: 0; }
      .p-top-fv .swiper-button-prev, .p-top-fv .swiper-button-next {
        width: 30px;
        height: 30px;
        position: static; }
      .p-top-fv .swiper-pagination {
        position: static;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0; }
        .p-top-fv .swiper-pagination-bullets {
          width: auto !important;
          margin-right: 35px; }
        .p-top-fv .swiper-pagination-bullet-active {
          background: #cc0000; }
        .p-top-fv .swiper-pagination span {
          width: 8px;
          height: 8px;
          margin: 5px !important; }
      .p-top-fv .swiper-progress {
        width: 60px;
        height: 8px;
        background: #d9d9d9;
        border-radius: 100vw;
        margin-right: 5px;
        overflow: hidden; }
        .p-top-fv .swiper-progress span {
          display: block;
          width: 100%;
          height: 100%;
          background: #cc0000;
          transform: translateX(-100%); }
        .p-top-fv .swiper-progress.load span {
          transition: 3s linear;
          transform: translateX(0); }
    .p-top-fv__news {
      margin-top: 100px; }
      .p-top-fv__news--blk {
        display: flex;
        padding: 19px 0;
        border-top: 1px solid #cccccc; }
        .p-top-fv__news--blk:last-of-type {
          border-bottom: 1px solid #cccccc; }
        .p-top-fv__news--blk dt {
          flex-shrink: 0;
          width: 100px;
          font-weight: 500;
          letter-spacing: 0; }
        .p-top-fv__news--blk dd {
          padding-right: 50px; }
          .p-top-fv__news--blk dd a {
            display: block;
            position: relative; }
            .p-top-fv__news--blk dd a::after {
              content: '';
              position: absolute;
              top: calc(50% - 10px);
              right: -50px;
              width: 20px;
              height: 20px;
              background-size: contain;
              background-position: center;
              background-repeat: no-repeat;
              background-image: url(../img/common/icon_link.svg); }
            .p-top-fv__news--blk dd a[target="_blank"]::after {
              background-image: url(../img/common/icon_link_blank.svg); }
      .p-top-fv__news--btn {
        margin: 40px auto 70px; }
  .p-top-lead {
    padding-top: 75px;
    width: 100%;
    height: 900px;
    background: url(../img/top/lead_bg_pc.png) no-repeat center/cover; }
    .p-top-lead .c-txt-cnt__ttl {
      letter-spacing: 0.05em;
      text-align: left;
      margin-top: 45px; }
    .p-top-lead__wrap {
      display: flex;
      justify-content: space-between; }
    .p-top-lead__img {
      flex-shrink: 0;
      width: 515px; }
    .p-top-lead__txt {
      width: 450px;
      font-size: 16px;
      letter-spacing: 0.05em;
      line-height: 1.88; }
      .p-top-lead__txt .-strong {
        font-size: 20px;
        letter-spacing: 0.05em;
        line-height: 1.6;
        font-weight: 700;
        color: #cc0000; }
      .p-top-lead__txt p {
        margin-top: 1em; }
      .p-top-lead__txt--btn {
        margin: 30px 0 0; }
  .p-top-works {
    overflow: hidden;
    padding-top: 95px; }
    .p-top-works__slide {
      width: 100vw; }
      .p-top-works__slide--inr {
        position: relative;
        white-space: nowrap;
        transition: all;
        will-change: transform, left; }
      .p-top-works__slide img {
        display: inline-block;
        max-height: 300px;
        padding: 0 5px; }
    .p-top-works .p-top-fv__nav--inr {
      background: #f7f7f7; }
    .p-top-works__txt {
      max-width: 600px;
      margin: 40px auto 45px; }
    .p-top-works__list {
      margin-top: 40px; }
      .p-top-works__list .c-btn-more {
        border: 1px solid #cc0000;
        color: #cc0000; }
        .p-top-works__list .c-btn-more .txt {
          border-color: #cc0000; }
        .p-top-works__list .c-btn-more::before {
          border-color: #cc0000; }
        .p-top-works__list .c-btn-more:hover {
          color: #fff; }
          .p-top-works__list .c-btn-more:hover::before {
            border-color: #fff; }
          .p-top-works__list .c-btn-more:hover .txt {
            border-color: #fff; }
    .p-top-works__link {
      margin-top: 40px;
      text-align: center; }
      .p-top-works__link--btn {
        margin: 25px auto 0; }
  .p-top-howto {
    margin-top: 105px;
    background: #f7f7f7; }
    .p-top-howto__fv {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      width: 100%;
      height: 650px;
      background: url(../img/top/howto_bg_pc.jpg) no-repeat center/cover; }
      .p-top-howto__fv--txt {
        max-width: 390px;
        margin: 0 0 0 auto; }
        .p-top-howto__fv--txt .c-txt-cnt__ttl {
          letter-spacing: 0.05em; }
        .p-top-howto__fv--txt--body .-step {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          width: 100%;
          min-height: 50px;
          font-size: 20px;
          letter-spacing: 0.04em;
          line-height: 1.2;
          background: #fff;
          margin-top: 10px;
          padding: 7px 20px;
          border-radius: 6px; }
          .p-top-howto__fv--txt--body .-step:last-of-type {
            margin-bottom: 28px; }
          .p-top-howto__fv--txt--body .-step small {
            font-size: 10.39px;
            letter-spacing: 0.02em;
            line-height: 3.37;
            margin-right: 0.25em; }
          .p-top-howto__fv--txt--body .-step dt {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 55px;
            color: #cc0000;
            margin-right: 15px;
            border-right: 1px solid #000; }
          .p-top-howto__fv--txt--body .-step dd {
            font-weight: 500; }
        .p-top-howto__fv--txt--body p {
          font-size: 16px;
          letter-spacing: 0.05em;
          line-height: 1.88; }
    .p-top-howto__movie {
      margin-top: 75px; }
      .p-top-howto__movie--wrap {
        display: flex;
        justify-content: space-between; }
      .p-top-howto__movie--blk {
        width: 48%; }
        .p-top-howto__movie--blk .movie {
          position: relative;
          display: block; }
          .p-top-howto__movie--blk .movie__icon {
            position: absolute;
            top: 50%;
            left: 50%;
            display: block;
            width: 60px;
            height: 60px;
            background: url(../img/common/icon_movie.svg) no-repeat center/contain;
            transform: translate(-50%, -50%);
            z-index: 1;
            cursor: pointer; }
        .p-top-howto__movie--blk .ttl {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          font-size: 18px;
          letter-spacing: 0.05em;
          line-height: 1.67;
          margin-top: 10px; }
          .p-top-howto__movie--blk .ttl small {
            font-size: 14px;
            letter-spacing: 0em;
            line-height: 1;
            margin-left: 0.5em; }
    .p-top-howto__book {
      margin-top: 95px;
      padding-bottom: 120px; }
      .p-top-howto__book--list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap; }
        .p-top-howto__book--list--card {
          width: 196px;
          height: 160px; }
          @media only screen and (min-width: 835px) {
            .p-top-howto__book--list--card:nth-of-type(n+6) {
              margin-top: 15px; }
            .p-top-howto__book--list--card:not(:nth-of-type(5n)) {
              margin-right: 15px; } }
          .p-top-howto__book--list--card a {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            width: 100%;
            height: 100%;
            text-align: center;
            color: #cc0000;
            border: 1px solid #cc0000; }
            .p-top-howto__book--list--card a:hover {
              opacity: 1;
              color: #fff;
              background: #cc0000; }
              .p-top-howto__book--list--card a:hover .-icon {
                border-color: #fff; }
          .p-top-howto__book--list--card .-ttl {
            font-size: 18px;
            letter-spacing: 0.05em;
            line-height: 1.24;
            font-weight: 700;
            margin-bottom: 10px; }
            .p-top-howto__book--list--card .-ttl small {
              font-size: 14px;
              letter-spacing: 0.03em;
              line-height: 1.29;
              font-weight: 400; }
          .p-top-howto__book--list--card .-txt {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 2.4rem;
            font-size: 14px;
            letter-spacing: 0.03em;
            line-height: 1.14; }
          .p-top-howto__book--list--card .-bite {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            font-size: 14px;
            letter-spacing: 0.03em;
            line-height: 1;
            margin-top: 10px; }
          .p-top-howto__book--list--card .-icon {
            width: 15px;
            height: 15px;
            margin-top: 10px;
            content: '';
            display: block;
            width: 7px;
            height: 7px;
            border-right: 1px solid #000;
            border-top: 1px solid #000;
            transform: rotate(45deg);
            transition: .4s;
            border-color: #cc0000; }
        .p-top-howto__book--list--note {
          display: flex;
          align-items: flex-end;
          justify-content: flex-end;
          flex-direction: column;
          width: 407px;
          height: 160px; }
          .p-top-howto__book--list--note .-txt {
            font-size: 14px;
            letter-spacing: 0em;
            line-height: 1.86;
            margin-bottom: 25px; }
          .p-top-howto__book--list--note a {
            text-decoration: underline; }
          .p-top-howto__book--list--note .-icon {
            display: inline-block;
            width: 15px;
            height: 15px;
            background: url(../img/common/icon_blank_red.svg) no-repeat center/cover; }
  .p-top-sponsor {
    margin-top: 95px;
    padding-bottom: 85px; }
    .p-top-sponsor__lead {
      max-width: 600px;
      font-size: 16px;
      letter-spacing: 0.05em;
      line-height: 1.88;
      margin: 0 auto; }
    .p-top-sponsor__wrap {
      display: flex;
      justify-content: space-between;
      margin-top: 40px; }
    .p-top-sponsor__blk {
      display: flex;
      flex-direction: column;
      width: 48%; }
      .p-top-sponsor__blk .-ttl {
        font-size: 22px;
        letter-spacing: 0.05em;
        line-height: 1.02;
        font-weight: 500;
        text-align: center;
        margin: 20px 0 10px; }
      .p-top-sponsor__blk .-txt {
        font-size: 16px;
        letter-spacing: 0.05em;
        line-height: 1.88; }
      .p-top-sponsor__blk .-note {
        font-size: 13px;
        letter-spacing: 0em;
        line-height: 1.69;
        text-indent: -1em;
        margin-left: 1em;
        margin-top: 5px;
        margin-bottom: 20px; }
        .p-top-sponsor__blk .-note::first-letter {
          font-feature-settings: normal; }
      .p-top-sponsor__blk .-btn {
        margin: auto auto 0; }

@media only screen and (max-width: 834px) {
  .p-top-fv {
    padding-bottom: calc(80/375*100vw); }
    .p-top-fv__nav {
      margin-top: calc(30/375*100vw); }
      .p-top-fv__nav--inr {
        height: calc(24/375*100vw);
        margin: 0 calc(15/375*100vw);
        padding: 0 calc(15/375*100vw); }
      .p-top-fv__nav--stop {
        width: calc(7/375*100vw);
        height: calc(12/375*100vw); }
      .p-top-fv__nav--line {
        height: calc(11/375*100vw);
        margin: 0 w(12); }
      .p-top-fv__nav--play {
        width: calc(8/375*100vw);
        height: calc(12/375*100vw); }
    .p-top-fv .swiper-button-prev, .p-top-fv .swiper-button-next {
      width: calc(24/375*100vw);
      height: calc(24/375*100vw); }
    .p-top-fv .swiper-pagination-bullets {
      margin-right: calc(20/375*100vw); }
    .p-top-fv .swiper-pagination span {
      width: calc(6/375*100vw);
      height: calc(6/375*100vw);
      margin: 0 calc(5/375*100vw) !important; }
    .p-top-fv .swiper-progress {
      width: calc(45/375*100vw);
      height: calc(6/375*100vw);
      margin-right: calc(5/375*100vw); }
    .p-top-fv__news {
      margin-top: calc(55/375*100vw); }
      .p-top-fv__news--blk {
        flex-direction: column;
        padding: calc(18/375*100vw) 0;
        border-top: 1px solid #cccccc; }
        .p-top-fv__news--blk:last-of-type {
          border-bottom: 1px solid #cccccc; }
        .p-top-fv__news--blk dt {
          width: auto;
          letter-spacing: 0.05em;
          margin-bottom: calc(5/375*100vw); }
        .p-top-fv__news--blk dd {
          padding-right: calc(40/375*100vw); }
          .p-top-fv__news--blk dd a::after {
            top: calc(50% - vw(10));
            right: calc(-40/375*100vw);
            width: calc(20/375*100vw);
            height: calc(20/375*100vw); }
      .p-top-fv__news--btn {
        margin: calc(30/375*100vw) auto calc(50/375*100vw); }
  .p-top-lead {
    padding-top: calc(70/375*100vw);
    height: calc(850/375*100vw);
    background: url(../img/top/lead_bg_sp.jpg) no-repeat center/cover; }
    .p-top-lead .c-txt-cnt__ttl {
      line-height: 1.45;
      letter-spacing: 0.05em;
      text-align: center;
      margin-top: 0; }
    .p-top-lead__wrap {
      flex-direction: column-reverse; }
    .p-top-lead__img {
      width: calc(162.5419/375*100vw); }
    .p-top-lead__txt {
      width: 100%;
      font-size: calc(14/375*100vw);
      letter-spacing: 0.05em;
      line-height: 1.86; }
      .p-top-lead__txt .-strong {
        font-size: calc(16/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1.75;
        text-align: center; }
      .p-top-lead__txt--btn {
        margin: calc(40/375*100vw) auto; }
  .p-top-works {
    padding-top: calc(75/375*100vw); }
    .p-top-works__slide img {
      max-height: calc(224/375*100vw); }
    .p-top-works__txt {
      margin: calc(25/375*100vw) auto; }
    .p-top-works__list {
      margin-top: calc(25/375*100vw); }
      .p-top-works__list .c-btn-more {
        width: 100%;
        color: #fff;
        background: #cc0000;
        margin-bottom: calc(15/375*100vw);
        border: none; }
        .p-top-works__list .c-btn-more .ttl {
          margin-left: calc(15/375*100vw); }
        .p-top-works__list .c-btn-more .txt {
          font-size: calc(13/375*100vw);
          letter-spacing: 0.03em;
          line-height: 1;
          width: 100%;
          margin-left: 0.5em;
          border-color: #fff; }
          .p-top-works__list .c-btn-more .txt br {
            display: none; }
        .p-top-works__list .c-btn-more::before {
          border-color: #fff; }
    .p-top-works__link {
      margin-top: calc(35/375*100vw); }
      .p-top-works__link--btn {
        margin: calc(12/375*100vw) auto 0; }
  .p-top-howto {
    margin-top: calc(95/375*100vw); }
    .p-top-howto__fv {
      display: block;
      height: calc(810/375*100vw);
      padding-top: calc(75/375*100vw);
      background: url(../img/top/howto_bg_sp.jpg) no-repeat center/cover; }
      .p-top-howto__fv--txt {
        max-width: none; }
        .p-top-howto__fv--txt .c-txt-cnt__ttl {
          line-height: 1.45; }
        .p-top-howto__fv--txt--body .-step {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          height: calc(50/375*100vw);
          font-size: calc(18/375*100vw);
          letter-spacing: 0.04em;
          line-height: 1.94;
          margin-top: calc(10/375*100vw);
          padding: calc(10/375*100vw) ve(20);
          border-radius: ve(6); }
          .p-top-howto__fv--txt--body .-step:last-of-type {
            margin-bottom: calc(25/375*100vw); }
          .p-top-howto__fv--txt--body .-step small {
            font-size: calc(10.39/375*100vw);
            letter-spacing: 0.02em;
            line-height: 3.37; }
          .p-top-howto__fv--txt--body .-step dt {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: calc(55/375*100vw);
            margin-right: calc(15/375*100vw); }
        .p-top-howto__fv--txt--body p {
          font-size: calc(14/375*100vw);
          letter-spacing: 0.05em;
          line-height: 1.86; }
    .p-top-howto__movie {
      margin-top: ve(75); }
      .p-top-howto__movie--wrap {
        display: block; }
      .p-top-howto__movie--blk {
        width: 100%; }
        .p-top-howto__movie--blk:nth-of-type(n+2) {
          margin-top: calc(30/375*100vw); }
        .p-top-howto__movie--blk .movie__icon {
          width: calc(34.8/375*100vw);
          height: calc(34.8/375*100vw); }
        .p-top-howto__movie--blk .ttl {
          display: block;
          font-size: calc(14/375*100vw);
          letter-spacing: 0.05em;
          line-height: 1.6;
          margin-top: 10px;
          text-align: center; }
          .p-top-howto__movie--blk .ttl small {
            font-size: calc(13/375*100vw);
            letter-spacing: 0em;
            line-height: 1.54;
            margin-left: 0; }
    .p-top-howto__book {
      margin-top: calc(60/375*100vw);
      padding-bottom: calc(90/375*100vw); }
      .p-top-howto__book--list {
        display: flex;
        justify-content: space-between; }
        .p-top-howto__book--list--card {
          width: calc(154/375*100vw);
          height: calc(126/375*100vw); }
          .p-top-howto__book--list--card:nth-of-type(n+3) {
            margin-top: calc(15/375*100vw); }
          .p-top-howto__book--list--card .-ttl {
            font-size: calc(14/375*100vw);
            letter-spacing: 0.05em;
            line-height: 1.26;
            margin-bottom: calc(5/375*100vw); }
            .p-top-howto__book--list--card .-ttl small {
              font-size: calc(11/375*100vw);
              letter-spacing: 0.03em;
              line-height: 1.29; }
          .p-top-howto__book--list--card .-txt {
            font-size: calc(12/375*100vw);
            letter-spacing: 0.03em;
            line-height: 1.25; }
          .p-top-howto__book--list--card .-bite {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            font-size: calc(12/375*100vw);
            letter-spacing: 0.03em;
            line-height: 1.25; }
          .p-top-howto__book--list--card .-icon {
            width: calc(12/375*100vw);
            height: calc(12/375*100vw);
            margin-top: calc(5/375*100vw); }
        .p-top-howto__book--list--note {
          width: 100%;
          height: auto;
          margin-top: calc(25/375*100vw); }
          .p-top-howto__book--list--note .-txt {
            font-size: calc(14/375*100vw);
            letter-spacing: 0em;
            line-height: 1.86;
            margin-bottom: 1em; }
          .p-top-howto__book--list--note .-icon {
            width: calc(13/375*100vw);
            height: calc(13/375*100vw); }
  .p-top-sponsor {
    margin-top: calc(80/375*100vw);
    padding-bottom: calc(45/375*100vw); }
    .p-top-sponsor__lead {
      font-size: calc(14/375*100vw);
      letter-spacing: 0.05em;
      line-height: 1.86; }
    .p-top-sponsor__wrap {
      display: block;
      margin-top: calc(45/375*100vw); }
    .p-top-sponsor__blk {
      width: 100%; }
      .p-top-sponsor__blk:nth-of-type(n+2) {
        margin-top: calc(60/375*100vw); }
      .p-top-sponsor__blk .-ttl {
        font-size: calc(16/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1.4;
        margin: calc(20/375*100vw) 0 calc(10/375*100vw); }
      .p-top-sponsor__blk .-txt {
        font-size: calc(14/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1.86; }
      .p-top-sponsor__blk .-note {
        font-size: calc(12/375*100vw);
        letter-spacing: 0em;
        line-height: 1.5;
        margin-top: calc(5/375*100vw);
        margin-bottom: calc(40/375*100vw); }

  .c-lang-en .p-top-lead {
    height: calc(900/375*100vw); }
  .c-lang-en .p-top-howto__fv--txt--body .-step dd {
    line-height: 1.2; } }
.p-works-fv__mv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 380px;
  padding-bottom: 25px;
  background: url(../img/works/mv_bg.jpg) repeat center top/1300px auto; }
  .p-works-fv__mv--ttl {
    width: 467px; }
  .p-works-fv__mv--thema {
    position: absolute;
    width: 180px;
    bottom: 60px;
    right: 80px; }
.p-works-fv__txt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #2e3642;
  padding-top: 22px;
  padding-bottom: 22px; }
  .p-works-fv__txt--lang {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 350px;
    min-height: 50px;
    color: #fff;
    background: #00a596;
    margin-top: 15px;
    padding: 8px 20px;
    border-radius: 100vw; }
    .p-works-fv__txt--lang.-red {
      background-color: #cc0000; }
.p-works-fv__more {
  position: relative;
  display: block;
  margin: 70px auto 0; }
  .p-works-fv__more--hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    z-index: 1;
    transition: .3s;
    pointer-events: none; }
  .p-works-fv__more:hover {
    opacity: 1; }
    .p-works-fv__more:hover .p-works-fv__more--hover {
      opacity: 1; }
.p-works-list {
  position: relative;
  margin-top: 80px; }
  .p-works-list__wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 28px; }
    .p-works-list__wrap.-column2 .p-works-list__wrap--blk {
      width: 50%;
      margin-bottom: 55px; }
      .p-works-list__wrap.-column2 .p-works-list__wrap--blk .img {
        height: calc(425/1300*100vw);
        min-height: 425px; }
        .p-works-list__wrap.-column2 .p-works-list__wrap--blk .img.-yoko {
          padding-bottom: calc(50/1300*100vw); }
          @media only screen and (max-width: 1300px) {
            .p-works-list__wrap.-column2 .p-works-list__wrap--blk .img.-yoko {
              padding-bottom: 50px; } }
          .p-works-list__wrap.-column2 .p-works-list__wrap--blk .img.-yoko .inner {
            width: calc(350/1300*100vw);
            min-width: 350px;
            height: calc(247/1300*100vw);
            min-height: 247px; }
        .p-works-list__wrap.-column2 .p-works-list__wrap--blk .img.-tate {
          padding-bottom: calc(42/1300*100vw); }
          @media only screen and (max-width: 1300px) {
            .p-works-list__wrap.-column2 .p-works-list__wrap--blk .img.-tate {
              padding-bottom: 42px; } }
          .p-works-list__wrap.-column2 .p-works-list__wrap--blk .img.-tate .inner {
            width: calc(247/1300*100vw);
            min-width: 247px;
            height: calc(350/1300*100vw);
            min-height: 350px; }
      .p-works-list__wrap.-column2 .p-works-list__wrap--blk .title {
        font-size: 16px;
        letter-spacing: 0.1em;
        line-height: 1.31;
        margin-top: 21px; }
      .p-works-list__wrap.-column2 .p-works-list__wrap--blk .name {
        margin-top: 8px;
        font-size: 22px;
        letter-spacing: 0em;
        line-height: 1.27; }
        .p-works-list__wrap.-column2 .p-works-list__wrap--blk .name__en {
          font-size: 16px;
          letter-spacing: 0em;
          line-height: 1.75; }
      .p-works-list__wrap.-column2 .p-works-list__wrap--blk .info {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.4;
        margin-top: 8px; }
    .p-works-list__wrap.-column3 .p-works-list__wrap--blk {
      width: 33.3333333333%;
      margin-bottom: 35px; }
      .p-works-list__wrap.-column3 .p-works-list__wrap--blk .img {
        height: 22vw;
        height: calc(282/1300*100vw);
        min-height: 282px; }
        .p-works-list__wrap.-column3 .p-works-list__wrap--blk .img.-yoko {
          padding-bottom: calc(35/1300*100vw); }
          @media only screen and (max-width: 1300px) {
            .p-works-list__wrap.-column3 .p-works-list__wrap--blk .img.-yoko {
              padding-bottom: 35px; } }
          .p-works-list__wrap.-column3 .p-works-list__wrap--blk .img.-yoko .inner {
            width: calc(233.6923/1300*100vw);
            min-width: 233.6923px;
            height: calc(164.92/1300*100vw);
            min-height: 164.92px; }
        .p-works-list__wrap.-column3 .p-works-list__wrap--blk .img.-tate {
          padding-bottom: calc(29/1300*100vw); }
          @media only screen and (max-width: 1300px) {
            .p-works-list__wrap.-column3 .p-works-list__wrap--blk .img.-tate {
              padding-bottom: 29px; } }
          .p-works-list__wrap.-column3 .p-works-list__wrap--blk .img.-tate .inner {
            width: calc(164.92/1300*100vw);
            min-width: 164.92px;
            height: calc(233.6923/1300*100vw);
            min-height: 233.6923px; }
        @media only screen and (min-width: 835px) {
          .p-works-list__wrap.-column3 .p-works-list__wrap--blk .img::after {
            top: calc(50% - 20px);
            left: calc(50% - 80px);
            width: 160px;
            height: 40px;
            font-size: 14px;
            letter-spacing: 0.05em;
            line-height: 1.6; } }
      .p-works-list__wrap.-column3 .p-works-list__wrap--blk .title {
        font-size: 14px;
        letter-spacing: 0.1em;
        line-height: 1.5;
        margin-top: 19px; }
      .p-works-list__wrap.-column3 .p-works-list__wrap--blk .name {
        margin-top: 8px;
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.3; }
        .p-works-list__wrap.-column3 .p-works-list__wrap--blk .name__en {
          font-size: 14px;
          letter-spacing: 0em;
          line-height: 1.86; }
      .p-works-list__wrap.-column3 .p-works-list__wrap--blk .info {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 1.6;
        margin-top: 3px; }
    .p-works-list__wrap--blk {
      text-align: center; }
      .p-works-list__wrap--blk .haiku {
        width: 75%;
        font-size: 14px;
        letter-spacing: 0.03em;
        line-height: 1.6;
        margin: 0 auto;
        padding-bottom: 15px;
        border-bottom: 1px solid #b2b2b2; }
        .p-works-list__wrap--blk .haiku p {
          margin-top: 15px; }
      .p-works-list__wrap--blk .img {
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        width: 100%;
        background-size: 100% auto;
        background-position: center bottom; }
        .p-works-list__wrap--blk .img .inner {
          display: flex;
          align-items: center;
          justify-content: center;
          object-fit: contain; }
          .p-works-list__wrap--blk .img .inner img {
            max-width: 100%;
            max-height: 100%; }
        @media only screen and (min-width: 835px) {
          .p-works-list__wrap--blk .img::before, .p-works-list__wrap--blk .img::after {
            opacity: 0;
            transition: .3s; }
          .p-works-list__wrap--blk .img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            display: block;
            width: 100%;
            height: 100%;
            background: rgba(46, 54, 66, 0.7); }
          .p-works-list__wrap--blk .img::after {
            content: '詳しく見る';
            position: absolute;
            top: calc(50% - 21px);
            left: calc(50% - 90px);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 180px;
            height: 42px;
            font-size: 16px;
            letter-spacing: 0.05em;
            line-height: 1.4;
            font-weight: 500;
            color: #2e3642;
            background: url(../img/common/arw_btn_rgt.svg) no-repeat center right 15px/7px auto, #fff;
            border-radius: 100vw; } }
        .p-works-list__wrap--blk .img.-yoko {
          background-image: url(../img/works/list_bg_yoko.jpg); }
        .p-works-list__wrap--blk .img.-tate {
          background-image: url(../img/works/list_bg_tate.jpg); }
      .p-works-list__wrap--blk .held {
        width: 75%;
        font-size: 14px;
        letter-spacing: 0.03em;
        line-height: 1.6;
        margin: 15px auto 0;
        padding-top: 15px;
        border-top: 1px solid #b2b2b2; }
        .p-works-list__wrap--blk .held .rank {
          margin-left: 1em;
          padding-left: 1em;
          border-left: 1px solid #b2b2b2; }
      .p-works-list__wrap--blk:hover .img::before, .p-works-list__wrap--blk:hover .img::after {
        opacity: 1;
        z-index: 10; }
  .p-works-list__btn {
    width: 434px;
    margin: 25px auto 0; }
  .p-works-list .swiper-wrapper {
    flex-wrap: unset;
    margin-top: 0; }
  .p-works-list .swiper-button-next, .p-works-list .swiper-button-prev {
    top: 5px; }
.p-works-cnt {
  margin-top: 100px; }
  .p-works-cnt__outline {
    padding: 70px; }
  .p-works-cnt__review {
    padding: 90px 0 110px; }
    .p-works-cnt__review--blk {
      margin-top: 50px; }
      .p-works-cnt__review--blk:nth-of-type(n+3) {
        margin-top: 90px; }
      .p-works-cnt__review--blk--person {
        text-align: center;
        margin-bottom: 25px; }
        .p-works-cnt__review--blk--person .post {
          font-size: 18px;
          letter-spacing: 0.05em;
          line-height: 1.24; }
        .p-works-cnt__review--blk--person .name-jp {
          font-size: 24px;
          letter-spacing: 0.1em;
          line-height: 1.67; }
        .p-works-cnt__review--blk--person .name-en {
          font-size: 14px;
          letter-spacing: 0.05em;
          line-height: 1; }
      .p-works-cnt__review--blk--txt p {
        line-height: 2;
        margin-top: 15px; }
  .p-works-cnt__more {
    padding: 100px; }
    .p-works-cnt__more--btn {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 35px; }
      .p-works-cnt__more--btn > *:nth-of-type(n+2) {
        margin-left: 30px; }
.p-works-article {
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #eff2f4;
  padding-bottom: 125px; }
  .p-works-article.-tate {
    background-image: url(../img/works/article_bg_tate_pc.jpg); }
    @media only screen and (min-width: 835px) {
      .p-works-article.-tate .p-works-article__main--img {
        width: calc(494/1300*100vw);
        min-width: 494px;
        height: calc(700/1300*100vw);
        min-height: 700px;
        padding: calc(85/1300*100vw) 0 calc(65/1300*100vw);
        box-sizing: content-box;
        margin: 0 auto; } }
  @media only screen and (min-width: 835px) and (max-width: 1300px) {
    .p-works-article.-tate .p-works-article__main--img {
      padding: 85px 0 65px; } }
    @media only screen and (min-width: 835px) {
        .p-works-article.-tate .p-works-article__main--img--box {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 100%;
          height: 100%; } }
  .p-works-article.-yoko {
    background-image: url(../img/works/article_bg_yoko_pc.jpg); }
    @media only screen and (min-width: 835px) {
      .p-works-article.-yoko .p-works-article__main--img {
        width: calc(700/1300*100vw);
        min-width: 700px;
        height: calc(494/1300*100vw);
        min-height: 494px;
        padding: calc(141/1300*100vw) 0 calc(65/1300*100vw);
        box-sizing: content-box;
        margin: 0 auto; } }
  @media only screen and (min-width: 835px) and (max-width: 1300px) {
    .p-works-article.-yoko .p-works-article__main--img {
      padding: 141px 0 65px; } }
    @media only screen and (min-width: 835px) {
        .p-works-article.-yoko .p-works-article__main--img--box {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 100%;
          height: 100%; } }
  .p-works-article .fb-like {
    margin: 50px auto 0;
    display: block;
    width: fit-content; }
  .p-works-article__main--img--box img {
    width: 100%;
    max-width: none;
    max-height: 100%;
    object-fit: contain; }
  .p-works-article__main--txt {
    max-width: 740px;
    text-align: center;
    margin: 0 auto; }
    .p-works-article__main--txt--haiku {
      font-size: 24px;
      letter-spacing: 0.05em;
      line-height: 1.67;
      padding-bottom: 20px;
      border-bottom: 1px solid #b2b2b2; }
      .p-works-article__main--txt--haiku p {
        margin-bottom: 1em; }
    .p-works-article__main--txt--name {
      margin-top: 30px;
      padding-bottom: 20px;
      border-bottom: 1px solid #b2b2b2; }
      .p-works-article__main--txt--name .main {
        font-size: 30px;
        letter-spacing: 0.03em;
        line-height: 1;
        margin: 5px 0; }
      .p-works-article__main--txt--name .en {
        font-size: 18px;
        letter-spacing: 0em;
        line-height: 1.24; }
      .p-works-article__main--txt--name .jp {
        margin-top: 10px; }
    .p-works-article__main--txt--thema {
      margin-top: 45px;
      line-height: 1.15;
      letter-spacing: 0.03em; }
      .p-works-article__main--txt--thema .nation {
        margin-bottom: 10px; }
      .p-works-article__main--txt--thema .rank {
        margin-left: 1em;
        padding-left: 1em;
        border-left: 1px solid #b2b2b2; }
  .p-works-article__sns {
    position: absolute;
    top: 50vh;
    left: 2.5%;
    width: 30px;
    z-index: 10; }
    .p-works-article__sns--list--icon {
      margin: 15px 0; }
      .p-works-article__sns--list--icon.-like {
        position: relative; }
      .p-works-article__sns--list--icon .-like_icon {
        cursor: pointer; }
        .p-works-article__sns--list--icon .-like_icon-on {
          display: none; }
        .p-works-article__sns--list--icon .-like_icon.liked .-like_icon-off {
          display: none; }
        .p-works-article__sns--list--icon .-like_icon.liked .-like_icon-on {
          display: block; }
      .p-works-article__sns--list--icon .-like_count {
        position: absolute;
        bottom: -25px;
        left: 50%;
        font-size: 14px;
        letter-spacing: 0.03em;
        line-height: 1.57;
        transform: translateX(-50%); }
    .p-works-article__sns--list--line {
      width: 30px;
      height: 1px;
      background: #b2b2b2; }
  .p-works-article__column {
    max-width: 740px;
    line-height: 2;
    margin: 75px auto 0; }
    .p-works-article__column p {
      margin-top: 1.5em; }
.p-works-movie {
  padding: 95px 0; }
  .p-works-movie__wrap {
    width: 85%;
    max-width: 580px;
    margin: 0 auto; }
  .p-works-movie__caption {
    text-align: center;
    margin-top: 20px; }
.p-works-special.-tate .-gold {
  background-image: url(../img/works/gold_tate_pc.jpg); }
.p-works-special.-tate .-silver {
  background-image: url(../img/works/silver_tate_pc.jpg); }
.p-works-special.-tate .-bronze {
  background-image: url(../img/works/bronze_tate_pc.jpg); }
.p-works-special.-tate .-special {
  background-image: url(../img/works/blue_tate_pc.jpg); }
@media only screen and (min-width: 835px) {
  .p-works-special.-tate .p-works-special__main {
    padding-bottom: calc(60/1300*100vw); }
    .p-works-special.-tate .p-works-special__main--img {
      width: calc(359/1300*100vw);
      min-width: 359px;
      height: calc(506/1300*100vw);
      min-height: 506px;
      padding: calc(162/1300*100vw) 0 calc(65/1300*100vw);
      box-sizing: content-box;
      margin: 0 auto; } }
    @media only screen and (min-width: 835px) and (max-width: 1300px) {
      .p-works-special.-tate .p-works-special__main--img {
        padding: 162px 0 65px; } }
@media only screen and (min-width: 835px) {
      .p-works-special.-tate .p-works-special__main--img--box {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%; }
    .p-works-special.-tate .p-works-special__main__btn {
      margin-bottom: 0; } }
.p-works-special.-yoko .-gold {
  background-image: url(../img/works/gold_yoko_pc.jpg); }
.p-works-special.-yoko .-silver {
  background-image: url(../img/works/silver_yoko_pc.jpg); }
.p-works-special.-yoko .-bronze {
  background-image: url(../img/works/bronze_yoko_pc.jpg); }
.p-works-special.-yoko .-special {
  background-image: url(../img/works/blue_yoko_pc.jpg); }
@media only screen and (min-width: 835px) {
  .p-works-special.-yoko .p-works-special__main {
    padding-bottom: calc(60/1300*100vw); }
    .p-works-special.-yoko .p-works-special__main--img {
      width: calc(500/1300*100vw);
      min-width: 500px;
      height: calc(352.85/1300*100vw);
      min-height: 352.85px;
      padding: calc(310/1300*100vw) 0 calc(65/1300*100vw);
      box-sizing: content-box;
      margin: 0 auto; } }
    @media only screen and (min-width: 835px) and (max-width: 1300px) {
      .p-works-special.-yoko .p-works-special__main--img {
        padding: 310px 0 65px; } }
@media only screen and (min-width: 835px) {
      .p-works-special.-yoko .p-works-special__main--img--box {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%; }
    .p-works-special.-yoko .p-works-special__main__btn {
      margin-bottom: 0; } }
.p-works-special__main {
  min-height: 1200px;
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #eff2f4; }
  .p-works-special__main--img--box img {
    width: 100%;
    max-width: none;
    max-height: 100%;
    object-fit: contain; }
  .p-works-special__main--txt {
    max-width: 740px;
    text-align: center;
    margin: 0 auto; }
    .p-works-special__main--txt--ttl {
      font-size: 36px;
      letter-spacing: 0.2em;
      line-height: 1.11;
      font-weight: 500; }
    .p-works-special__main--txt--name {
      margin-top: 30px;
      padding-bottom: 20px; }
      .p-works-special__main--txt--name .main {
        font-size: 30px;
        letter-spacing: 0.03em;
        line-height: 1;
        margin: 5px 0; }
      .p-works-special__main--txt--name .en {
        font-size: 18px;
        letter-spacing: 0em;
        line-height: 1.24; }
      .p-works-special__main--txt--name .jp {
        margin-top: 10px; }

@media only screen and (max-width: 834px) {
  .p-works {
    width: 100vw;
    overflow: hidden; }
    .p-works-fv {
      border-top: calc(10/375*100vw) solid #2e3642; }
      .p-works-fv__mv {
        height: calc(220/375*100vw);
        padding-bottom: calc(10/375*100vw);
        background: url(../img/works/mv_bg.jpg) repeat center top/750px auto; }
        .p-works-fv__mv--ttl {
          width: calc(251/375*100vw); }
        .p-works-fv__mv--thema {
          width: calc(90/375*100vw);
          bottom: calc(-28/375*100vw);
          right: calc(15/375*100vw); }
      .p-works-fv__txt {
        font-size: calc(16/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1.38;
        padding-top: calc(10/375*100vw);
        padding-bottom: calc(22/375*100vw); }
        .p-works-fv__txt--lang {
          min-width: calc(320/375*100vw);
          min-height: calc(36/375*100vw);
          margin-top: calc(10/375*100vw);
          padding: calc(8/375*100vw) calc(20/375*100vw);
          font-size: calc(18/375*100vw);
          letter-spacing: 0.15em;
          line-height: 1; }
      .p-works-fv__more {
        margin: calc(40/375*100vw) auto 0; }
        .p-works-fv__more--hover {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: auto;
          opacity: 0;
          z-index: 1;
          transition: .3s; }
        .p-works-fv__more:hover .p-works-fv__more--hover {
          opacity: 1; }
    .p-works-list {
      margin-top: calc(80/375*100vw); }
      .p-works-list__wrap {
        margin-top: calc(20/375*100vw); }
        .p-works-list__wrap.-column2 .p-works-list__wrap--blk {
          width: 100%;
          margin-bottom: calc(30/375*100vw); }
          .p-works-list__wrap.-column2 .p-works-list__wrap--blk .img {
            height: 66vw; }
            .p-works-list__wrap.-column2 .p-works-list__wrap--blk .img.-yoko {
              padding-bottom: 7.5vw; }
              .p-works-list__wrap.-column2 .p-works-list__wrap--blk .img.-yoko .inner {
                width: 54vw;
                height: 39vw; }
            .p-works-list__wrap.-column2 .p-works-list__wrap--blk .img.-tate {
              padding-bottom: 7vw; }
              .p-works-list__wrap.-column2 .p-works-list__wrap--blk .img.-tate .inner {
                width: 39vw;
                height: 54vw; }
          .p-works-list__wrap.-column2 .p-works-list__wrap--blk .title {
            font-size: calc(13/375*100vw);
            letter-spacing: 0em;
            line-height: 1.62;
            margin-top: calc(20/375*100vw); }
          .p-works-list__wrap.-column2 .p-works-list__wrap--blk .name {
            font-size: calc(22/375*100vw);
            letter-spacing: 0em;
            line-height: 0.95; }
            .p-works-list__wrap.-column2 .p-works-list__wrap--blk .name__en {
              font-size: calc(13/375*100vw);
              letter-spacing: 0em;
              line-height: 1.62; }
          .p-works-list__wrap.-column2 .p-works-list__wrap--blk .info {
            font-size: calc(13/375*100vw);
            letter-spacing: 0em;
            line-height: 1.62;
            margin-top: 0; }
        .p-works-list__wrap.-column3 .p-works-list__wrap--blk {
          width: 50%;
          margin-bottom: 55px; }
          .p-works-list__wrap.-column3 .p-works-list__wrap--blk .img {
            height: 33vw; }
            .p-works-list__wrap.-column3 .p-works-list__wrap--blk .img.-yoko {
              padding-bottom: 3.75vw; }
              .p-works-list__wrap.-column3 .p-works-list__wrap--blk .img.-yoko .inner {
                width: 27vw;
                height: 19.5vw; }
            .p-works-list__wrap.-column3 .p-works-list__wrap--blk .img.-tate {
              padding-bottom: 3.5vw; }
              .p-works-list__wrap.-column3 .p-works-list__wrap--blk .img.-tate .inner {
                width: 19.5vw;
                height: 27vw; }
          .p-works-list__wrap.-column3 .p-works-list__wrap--blk .title {
            font-size: calc(11/375*100vw);
            letter-spacing: 0em;
            line-height: 1.64;
            margin-top: calc(10/375*100vw); }
          .p-works-list__wrap.-column3 .p-works-list__wrap--blk .name {
            font-size: calc(13/375*100vw);
            letter-spacing: 0em;
            line-height: 1.38;
            margin-top: 0; }
            .p-works-list__wrap.-column3 .p-works-list__wrap--blk .name__en {
              font-size: calc(11/375*100vw);
              letter-spacing: 0em;
              line-height: 1.64; }
          .p-works-list__wrap.-column3 .p-works-list__wrap--blk .info {
            font-size: calc(11/375*100vw);
            letter-spacing: 0em;
            line-height: 1.64;
            margin-top: 0; }
        .p-works-list__wrap--blk {
          text-align: center; }
          .p-works-list__wrap--blk .haiku {
            font-size: calc(13/375*100vw);
            letter-spacing: 0.03em;
            line-height: 1.72;
            margin: 0 auto;
            padding-bottom: calc(15/375*100vw); }
            .p-works-list__wrap--blk .haiku p {
              margin-top: calc(15/375*100vw); }
          .p-works-list__wrap--blk .img {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            width: 100%;
            min-height: 0 !important;
            background-size: 100% auto;
            background-position: center bottom; }
            .p-works-list__wrap--blk .img .inner {
              display: flex;
              align-items: center;
              justify-content: center;
              object-fit: contain;
              min-width: 0 !important;
              min-height: 0 !important; }
              .p-works-list__wrap--blk .img .inner img {
                max-width: 100%;
                max-height: 100%; }
            .p-works-list__wrap--blk .img.-yoko {
              background-image: url(../img/works/list_bg_yoko.jpg); }
            .p-works-list__wrap--blk .img.-tate {
              background-image: url(../img/works/list_bg_tate.jpg); }
          .p-works-list__wrap--blk .held {
            width: 75%;
            font-size: calc(13/375*100vw);
            letter-spacing: 0.03em;
            line-height: 1.72;
            margin: calc(15/375*100vw) auto 0;
            padding-top: calc(15/375*100vw); }
      .p-works-list__pager {
        display: flex;
        justify-content: space-between;
        width: calc(140/375*100vw);
        margin: 0 auto; }
      .p-works-list__slide .-column3 .p-works-list__wrap--blk {
        width: 100%;
        margin-bottom: calc(30/375*100vw); }
        .p-works-list__slide .-column3 .p-works-list__wrap--blk .img {
          height: 66vw; }
          .p-works-list__slide .-column3 .p-works-list__wrap--blk .img.-yoko {
            padding-bottom: 7.5vw; }
            .p-works-list__slide .-column3 .p-works-list__wrap--blk .img.-yoko .inner {
              width: 54vw;
              height: 39vw; }
          .p-works-list__slide .-column3 .p-works-list__wrap--blk .img.-tate {
            padding-bottom: 7vw; }
            .p-works-list__slide .-column3 .p-works-list__wrap--blk .img.-tate .inner {
              width: 39vw;
              height: 54vw; }
        .p-works-list__slide .-column3 .p-works-list__wrap--blk .name {
          font-size: calc(22/375*100vw);
          letter-spacing: 0em;
          line-height: 1.02;
          margin-top: calc(5/375*100vw); }
        .p-works-list__slide .-column3 .p-works-list__wrap--blk .info {
          font-size: calc(13/375*100vw);
          letter-spacing: 0em;
          line-height: 1.72;
          margin-top: 0; }
      .p-works-list__btn {
        width: calc(320/375*100vw);
        margin: calc(50/375*100vw) auto 0; }
        .p-works-list__btn + .p-works-list__btn {
          margin-top: calc(20/375*100vw); }
      .p-works-list .swiper-button-next, .p-works-list .swiper-button-prev {
        position: static; }
    .p-works-cnt {
      margin-top: calc(100/375*100vw); }
      .p-works-cnt__outline {
        padding: calc(70/375*100vw) 0; }
      .p-works-cnt__review {
        padding: calc(70/375*100vw) 0; }
        .p-works-cnt__review--blk {
          margin-top: calc(25/375*100vw); }
          .p-works-cnt__review--blk:nth-of-type(n+3) {
            margin-top: calc(55/375*100vw); }
          .p-works-cnt__review--blk--person {
            margin-bottom: calc(25/375*100vw); }
            .p-works-cnt__review--blk--person .post {
              font-size: calc(16/375*100vw);
              letter-spacing: 0.05em;
              line-height: 1.4; }
            .p-works-cnt__review--blk--person .name-jp {
              font-size: calc(24/375*100vw);
              letter-spacing: 0.1em;
              line-height: 1.67; }
            .p-works-cnt__review--blk--person .name-en {
              font-size: calc(14/375*100vw);
              letter-spacing: 0.05em;
              line-height: 1; }
          .p-works-cnt__review--blk--txt p {
            line-height: 1.85;
            margin-top: calc(20/375*100vw); }
      .p-works-cnt__more {
        padding: calc(70/375*100vw) 0; }
        .p-works-cnt__more--btn {
          display: block;
          margin-top: 0; }
          .p-works-cnt__more--btn > * {
            margin-top: calc(20/375*100vw); }
            .p-works-cnt__more--btn > *:nth-of-type(n+2) {
              margin-left: auto; }
    .p-works-article {
      padding-bottom: calc(70/375*100vw); }
      .p-works-article.-tate {
        background-image: url(../img/works/article_bg_tate_sp.jpg); }
        .p-works-article.-tate .p-works-article__main--img {
          width: calc(197.6/375*100vw);
          height: calc(280/375*100vw);
          padding: calc(54/375*100vw) 0 calc(35/375*100vw); }
      .p-works-article.-yoko {
        background-image: url(../img/works/article_bg_yoko_sp.jpg); }
        .p-works-article.-yoko .p-works-article__main--img {
          width: calc(280/375*100vw);
          height: calc(197.6/375*100vw);
          padding: calc(55/375*100vw) 0 calc(35/375*100vw); }
      .p-works-article .fb-like {
        margin: calc(20/375*100vw) auto 0; }
      .p-works-article__main--img {
        width: 53%;
        margin: 0 auto;
        box-sizing: content-box; }
        .p-works-article__main--img--box {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 100%;
          height: 100%; }
      .p-works-article__main--txt {
        width: 85%; }
        .p-works-article__main--txt--haiku {
          font-size: calc(16/375*100vw);
          letter-spacing: 0.03em;
          line-height: 1.5;
          padding-bottom: calc(10/375*100vw); }
          .p-works-article__main--txt--haiku p {
            margin-bottom: 1em; }
        .p-works-article__main--txt--name {
          margin-top: calc(12/375*100vw);
          padding-bottom: calc(10/375*100vw); }
          .p-works-article__main--txt--name .title {
            font-size: 13px;
            letter-spacing: 0.1em;
            line-height: 1.72; }
          .p-works-article__main--txt--name .main {
            font-size: 20px;
            letter-spacing: 0.03em;
            line-height: 1.12; }
          .p-works-article__main--txt--name .en {
            font-size: 14px;
            letter-spacing: 0.03em;
            line-height: 1.6; }
          .p-works-article__main--txt--name .jp {
            font-size: 14px;
            letter-spacing: 0.03em;
            line-height: 1.6;
            margin-top: calc(2/375*100vw); }
        .p-works-article__main--txt--thema {
          margin-top: calc(30/375*100vw);
          padding-bottom: calc(10/375*100vw);
          letter-spacing: 0.03em; }
          .p-works-article__main--txt--thema .thema {
            margin-top: calc(7/375*100vw); }
      .p-works-article__sns {
        position: static;
        width: 85%;
        margin: calc(20/375*100vw) auto 0; }
        .p-works-article__sns--list {
          display: flex;
          align-items: center;
          justify-content: center; }
          .p-works-article__sns--list--icon {
            width: calc(30/375*100vw);
            margin: 0 calc(10/375*100vw); }
            .p-works-article__sns--list--icon .-like_count {
              font-size: calc(14/375*100vw);
              letter-spacing: 0.03em;
              line-height: 1.57;
              bottom: calc(-25/375*100vw); }
          .p-works-article__sns--list--line {
            width: 1px;
            height: calc(30/375*100vw);
            margin: auto calc(10/375*100vw); }
      .p-works-article__column {
        width: 85%;
        margin: calc(80/375*100vw) auto 0;
        line-height: 1.85; }
    .p-works-movie {
      padding: calc(75/375*100vw) 0; }
      .p-works-movie__caption {
        margin-top: calc(20/375*100vw); }
    .p-works-special.-tate .-gold {
      background-image: url(../img/works/gold_tate_sp.jpg); }
    .p-works-special.-tate .-silver {
      background-image: url(../img/works/silver_tate_sp.jpg); }
    .p-works-special.-tate .-bronze {
      background-image: url(../img/works/bronze_tate_sp.jpg); }
    .p-works-special.-tate .-special {
      background-image: url(../img/works/blue_tate_sp.jpg); }
    .p-works-special.-tate .p-works-special__main--img {
      width: calc(152/375*100vw);
      height: calc(215/375*100vw);
      padding: calc(72/375*100vw) 0 calc(35/375*100vw); }
    .p-works-special.-yoko .-gold {
      background-image: url(../img/works/gold_yoko_sp.jpg); }
    .p-works-special.-yoko .-silver {
      background-image: url(../img/works/silver_yoko_sp.jpg); }
    .p-works-special.-yoko .-bronze {
      background-image: url(../img/works/bronze_yoko_sp.jpg); }
    .p-works-special.-yoko .-special {
      background-image: url(../img/works/blue_yoko_sp.jpg); }
    .p-works-special.-yoko .p-works-special__main--img {
      width: calc(215/375*100vw);
      height: calc(152/375*100vw);
      margin-left: calc(89/375*100vw);
      padding: calc(135/375*100vw) 0 calc(35/375*100vw); }
    .p-works-special__main {
      padding-bottom: 1px;
      min-height: 0; }
      .p-works-special__main--img {
        width: 53%;
        margin: 0 auto;
        box-sizing: content-box; }
        .p-works-special__main--img--box {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 100%;
          height: 100%; }
      .p-works-special__main--txt {
        width: 85%; }
        .p-works-special__main--txt--ttl {
          font-size: calc(28/375*100vw);
          letter-spacing: 0.2em;
          line-height: 1.43;
          padding-bottom: calc(10/375*100vw); }
        .p-works-special__main--txt--name {
          margin-top: calc(12/375*100vw);
          padding-bottom: calc(10/375*100vw); }
          .p-works-special__main--txt--name .title {
            font-size: 13px;
            letter-spacing: 0.1em;
            line-height: 1.72; }
          .p-works-special__main--txt--name .main {
            font-size: 20px;
            letter-spacing: 0.03em;
            line-height: 1.12; }
          .p-works-special__main--txt--name .en {
            font-size: 14px;
            letter-spacing: 0.03em;
            line-height: 1.6; }
          .p-works-special__main--txt--name .jp {
            font-size: 14px;
            letter-spacing: 0.03em;
            line-height: 1.6;
            margin-top: calc(2/375*100vw); } }
.p-contest-fv__mv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 380px;
  padding-bottom: 25px;
  background: url(../img/works/mv_bg.jpg) repeat center top/1300px auto; }
  .p-contest-fv__mv--ttl {
    width: 467px; }
  .p-contest-fv__mv--thema {
    position: absolute;
    width: 180px;
    bottom: 60px;
    right: 80px; }
.p-contest-fv__txt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #2e3642;
  padding-top: 22px;
  padding-bottom: 22px; }
  .p-contest-fv__txt--lang {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 50px;
    color: #fff;
    background: #00a596;
    margin-top: 15px;
    border-radius: 100vw; }
.p-contest-fv__more {
  position: relative;
  display: block;
  margin: 70px auto 0; }
  .p-contest-fv__more--hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    z-index: 1;
    transition: .3s; }
  .p-contest-fv__more:hover .p-works-fv__more--hover {
    opacity: 1; }
.p-contest-list {
  position: relative;
  margin-top: 80px; }
  .p-contest-list__wrap {
    margin-top: 65px; }
    .p-contest-list__wrap--list {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap; }
      .p-contest-list__wrap--list.-jp {
        display: block;
        width: 400px;
        margin: 0 auto; }
      .p-contest-list__wrap--list--box {
        width: 400px;
        height: 70px;
        margin-top: -1px;
        border-top: 1px solid #b2b2b2;
        border-bottom: 1px solid #b2b2b2; }
  .p-contest-list__nav {
    display: flex;
    justify-content: center;
    margin-bottom: 55px; }
    .p-contest-list__nav--anker {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column-reverse;
      width: 200px;
      height: 70px;
      color: #fff;
      background: #2e3642; }
      .p-contest-list__nav--anker:not(:first-of-type) {
        margin-left: 8px; }
      .p-contest-list__nav--anker::before {
        border-color: #fff;
        transform: rotate(135deg); }
      .p-contest-list__nav--anker:hover {
        background: #434a55; }
        .p-contest-list__nav--anker:hover::before {
          border-color: #fff;
          transform: translateY(2px) rotate(135deg); }
  .p-contest-list__region {
    display: flex;
    justify-content: space-between; }
    .p-contest-list__region--ttl {
      flex-shrink: 0;
      width: 160px;
      font-size: 20px;
      letter-spacing: 0.1em;
      line-height: 1.4;
      font-weight: 500;
      margin-top: -1px;
      margin-right: 40px;
      padding: 20px 10px;
      border-top: 1px solid #b2b2b2; }
    .p-contest-list__region--body {
      width: 100%; }
.p-contest-other {
  background: #f7f7f7;
  margin-top: 180px;
  padding: 85px 0; }
  .p-contest-other .c-btn-more {
    border: 1px solid #b2b2b2; }
    .p-contest-other .c-btn-more:hover {
      border-color: #cc0000; }

@media only screen and (max-width: 834px) {
  .p-contest {
    width: 100vw;
    overflow: hidden; }
    .p-contest-fv {
      border-top: calc(10/375*100vw) solid #2e3642; }
      .p-contest-fv__mv {
        height: calc(220/375*100vw);
        padding-bottom: calc(10/375*100vw);
        background: url(../img/works/mv_bg.jpg) repeat center top/750px auto; }
        .p-contest-fv__mv--ttl {
          width: calc(251/375*100vw); }
        .p-contest-fv__mv--thema {
          width: calc(90/375*100vw);
          bottom: calc(-28/375*100vw);
          right: calc(15/375*100vw); }
      .p-contest-fv__txt {
        font-size: calc(16/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1.38;
        padding-top: calc(15/375*100vw);
        padding-bottom: calc(15/375*100vw); }
      .p-contest-fv__more {
        margin: calc(40/375*100vw) auto 0; }
        .p-contest-fv__more--hover {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: auto;
          opacity: 0;
          z-index: 1;
          transition: .3s; }
        .p-contest-fv__more:hover .p-works-fv__more--hover {
          opacity: 1; }
    .p-contest-list {
      margin-top: calc(80/375*100vw); }
      .p-contest-list__wrap {
        margin-top: calc(35/375*100vw); }
        .p-contest-list__wrap--list {
          display: flex;
          justify-content: space-between; }
          .p-contest-list__wrap--list.-jp {
            width: 100%; }
          .p-contest-list__wrap--list--box {
            width: 100%;
            height: calc(56/375*100vw); }
      .p-contest-list__nav {
        display: none; }
      .p-contest-list__region {
        display: block; }
        .p-contest-list__region--ttl {
          position: relative;
          display: flex;
          align-items: center;
          justify-content: flex-start;
          width: 100%;
          height: calc(56/375*100vw);
          font-size: calc(18/375*100vw);
          letter-spacing: 0.1em;
          line-height: 1.56;
          font-weight: 400;
          margin: calc(10/375*100vw) 0 0;
          padding: 0 calc(15/375*100vw);
          color: #fff;
          background: #2e3642;
          border-top: none; }
        .p-contest-list__region--body {
          display: none; }
    .p-contest-other {
      margin-top: calc(80/375*100vw);
      padding: calc(70/375*100vw) 0 calc(60/375*100vw); }
      .p-contest-other .l-hd-nav-more__list {
        margin-top: calc(30/375*100vw); }
      .p-contest-other .c-btn-more {
        width: 100%;
        color: #fff;
        background: #cc0000;
        margin-bottom: calc(15/375*100vw);
        border: none; }
        .p-contest-other .c-btn-more .ttl {
          margin-left: calc(15/375*100vw); }
        .p-contest-other .c-btn-more .txt {
          font-size: calc(13/375*100vw);
          letter-spacing: 0.03em;
          line-height: 1;
          width: 100%;
          margin-left: 0.5em;
          border-color: #fff; }
          .p-contest-other .c-btn-more .txt br {
            display: none; }
        .p-contest-other .c-btn-more::before {
          border-color: #fff; } }
.p-search__wrap {
  padding-bottom: 120px;
  background: #f7f7f7; }
.p-search__submit {
  width: 310px;
  font-size: 1.8rem;
  margin: 60px auto 0; }
.p-search-tab {
  display: flex;
  justify-content: space-between;
  max-width: 650px;
  margin: 95px auto 60px; }
  .p-search-tab__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    font-size: 24px;
    letter-spacing: 0.09em;
    line-height: 2.13;
    font-weight: 500;
    color: #808080;
    border-bottom: 6px solid #808080; }
    .p-search-tab__btn.current {
      color: #cc0000;
      border-color: #cc0000; }
.p-search-sort input {
  display: none; }
.p-search-sort__wrap {
  background: #fff;
  padding: 30px 40px; }
  .p-search-sort__wrap:nth-of-type(n+2) {
    margin-top: 15px; }
.p-search-sort__head {
  position: relative;
  margin-bottom: 10px; }
  .p-search-sort__head--ttl {
    font-size: 20px;
    letter-spacing: 0.09em;
    line-height: 1.4;
    font-weight: 500;
    text-align: center; }
  .p-search-sort__head--btn {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 225px; }
    .p-search-sort__head--btn .-btn {
      width: 110px;
      height: 28px;
      font-size: 13px;
      letter-spacing: 0.05em;
      line-height: 1; }
.p-search-sort__cnt--ttl {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.11;
  font-weight: 500;
  margin-top: 35px;
  padding-left: 0.25em;
  border-left: 3px solid #db4c4c; }
  @media only screen and (min-width: 835px) {
    .p-search-sort__cnt--ttl {
      pointer-events: none; } }
.p-search-sort__cnt--list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap; }
  @media only screen and (min-width: 835px) {
    .p-search-sort__cnt--list li:not(:nth-of-type(3n)) {
      margin-right: 15px; } }
  .p-search-sort__cnt--list .-btn {
    width: 310px;
    height: 38px;
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 1;
    margin-top: 15px;
    cursor: pointer; }
.p-search-keyword {
  display: none;
  max-width: 650px;
  margin: 0 auto; }
  .p-search-keyword__lead {
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.78; }
  .p-search-keyword__input {
    margin-top: 25px; }
    .p-search-keyword__input input {
      width: 100%;
      height: 60px;
      font-size: 18px;
      letter-spacing: 0.05em;
      line-height: 1.78;
      color: #000;
      border: 1px solid #b2b2b2;
      border-radius: 10px;
      padding: 20px; }
.p-search-result {
  margin-top: 115px; }
  .p-search-result__filter {
    background: #f7f7f7;
    padding: 25px; }
    .p-search-result__filter--ttl {
      font-size: 18px;
      letter-spacing: 0.1em;
      line-height: 1.56;
      font-weight: 500;
      text-align: center; }
    .p-search-result__filter--list {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex-wrap: wrap; }
    .p-search-result__filter .-btn {
      width: 310px;
      min-height: 38px;
      font-size: 14px;
      letter-spacing: 0.03em;
      line-height: 1;
      margin-top: 15px;
      padding: 0.2em 1.2em; }
      @media only screen and (min-width: 835px) {
        .p-search-result__filter .-btn:not(:nth-of-type(3n)) {
          margin-right: 15px; } }
  .p-search-result .p-works-list__wrap {
    margin-top: 105px; }
  .p-search-result .p-works-list__wrap--blk {
    margin-bottom: 75px !important; }
  .p-search-result__na {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.78;
    text-align: center;
    margin-top: 65px; }
  .p-search-result__pager {
    display: flex;
    align-items: center;
    justify-content: center; }
    .p-search-result__pager a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      font-size: 18px;
      letter-spacing: 0.03em;
      line-height: 1;
      margin: 0 3px;
      border-radius: 100vw; }
      .p-search-result__pager a.current {
        background: #d5d7d9;
        pointer-events: none; }
    .p-search-result__pager .-prev {
      background: url(../img/common/arw_prev.svg) no-repeat center/contain;
      margin-right: 30px; }
    .p-search-result__pager .-next {
      background: url(../img/common/arw_nxet.svg) no-repeat center/contain;
      margin-left: 30px; }
  .p-search-result__btn {
    margin: 70px auto 0; }

@media only screen and (max-width: 834px) {
  .p-search__wrap {
    padding-bottom: calc(80/375*100vw); }
  .p-search__submit {
    width: calc(200/375*100vw);
    font-size: calc(14/375*100vw);
    margin: calc(45/375*100vw) auto 0; }
  .p-search-tab {
    width: calc(320/375*100vw);
    margin: calc(45/375*100vw) auto calc(50/375*100vw); }
    .p-search-tab__btn {
      width: calc(150/375*100vw);
      font-size: calc(14/375*100vw);
      letter-spacing: 0.09em;
      line-height: 2.14;
      border-bottom: calc(3/375*100vw) solid #808080; }
  .p-search-sort__wrap {
    padding: calc(20/375*100vw) calc(20/375*100vw) calc(30/375*100vw); }
    .p-search-sort__wrap:nth-of-type(n+2) {
      margin-top: calc(20/375*100vw); }
  .p-search-sort__head {
    position: relative;
    margin-bottom: 0; }
    .p-search-sort__head--ttl {
      font-size: calc(16/375*100vw);
      letter-spacing: 0.09em;
      line-height: 1.75; }
    .p-search-sort__head--btn {
      position: static;
      width: 100%;
      margin-top: calc(15/375*100vw); }
      .p-search-sort__head--btn .-btn {
        width: calc(135/375*100vw);
        height: calc(28/375*100vw);
        font-size: calc(13/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1; }
  .p-search-sort__cnt--ttl {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: calc(56/375*100vw);
    font-size: calc(18/375*100vw);
    letter-spacing: 0.1em;
    line-height: 1.56;
    font-weight: 400;
    margin: calc(10/375*100vw) 0 0;
    padding: 0 calc(15/375*100vw);
    color: #fff;
    background: #2e3642;
    border-left: none; }
    .p-search-sort__cnt--ttl + .p-search-sort__cnt--list {
      display: none; }
  .p-search-sort__cnt--list {
    display: block; }
    .p-search-sort__cnt--list .-btn {
      width: 100%;
      height: calc(34/375*100vw);
      font-size: 12px;
      letter-spacing: 0.03em;
      line-height: 117.67;
      margin-top: calc(10/375*100vw); }
  .p-search-keyword {
    width: calc(320/375*100vw); }
    .p-search-keyword__lead {
      font-size: calc(14/375*100vw);
      letter-spacing: 0.05em;
      line-height: 1.86; }
    .p-search-keyword__input {
      margin-top: calc(15/375*100vw); }
      .p-search-keyword__input input {
        height: calc(40/375*100vw);
        font-size: calc(16/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1.4;
        border-radius: calc(6/375*100vw);
        padding: calc(10/375*100vw); }
  .p-search-result {
    margin-top: calc(40/375*100vw); }
    .p-search-result__filter {
      margin-top: calc(25/375*100vw);
      margin-bottom: calc(60/375*100vw);
      padding: calc(20/375*100vw); }
      .p-search-result__filter--ttl {
        font-size: calc(14/375*100vw);
        letter-spacing: 0.1em;
        line-height: 2; }
      .p-search-result__filter .-btn {
        width: 100%;
        min-height: calc(34/375*100vw);
        font-size: calc(12/375*100vw);
        letter-spacing: 0.03em;
        line-height: 1.17;
        margin-top: calc(10/375*100vw); }
    .p-search-result .p-works-list__wrap {
      margin-top: calc(60/375*100vw); }
    .p-search-result .p-works-list__wrap--blk {
      margin-bottom: calc(45/375*100vw) !important; }
    .p-search-result__na {
      font-size: calc(14/375*100vw);
      letter-spacing: 0.05em;
      line-height: 1.86;
      text-align: center;
      margin-top: calc(40/375*100vw); }
    .p-search-result__pager a {
      width: calc(40/375*100vw);
      height: calc(40/375*100vw);
      font-size: calc(18/375*100vw);
      letter-spacing: 0.03em;
      line-height: 1;
      margin: 0 3px; }
    .p-search-result__pager .-prev {
      margin-right: 15px; }
    .p-search-result__pager .-next {
      margin-left: 15px; }
    .p-search-result__btn {
      margin: 70px auto 0; }
    .p-search-result .-column3 .p-works-list__wrap--blk {
      width: 100%;
      margin-bottom: calc(30/375*100vw); }
      .p-search-result .-column3 .p-works-list__wrap--blk .img {
        height: 66vw; }
        .p-search-result .-column3 .p-works-list__wrap--blk .img.-yoko {
          padding-bottom: 7.5vw; }
          .p-search-result .-column3 .p-works-list__wrap--blk .img.-yoko .inner {
            width: 54vw;
            height: 39vw; }
        .p-search-result .-column3 .p-works-list__wrap--blk .img.-tate {
          padding-bottom: 7vw; }
          .p-search-result .-column3 .p-works-list__wrap--blk .img.-tate .inner {
            width: 39vw;
            height: 54vw; }
      .p-search-result .-column3 .p-works-list__wrap--blk .title {
        font-size: calc(13/375*100vw);
        letter-spacing: 0em;
        line-height: 1.62;
        margin-top: calc(20/375*100vw); }
      .p-search-result .-column3 .p-works-list__wrap--blk .name {
        font-size: calc(22/375*100vw);
        letter-spacing: 0em;
        line-height: 0.95; }
        .p-search-result .-column3 .p-works-list__wrap--blk .name__en {
          font-size: calc(13/375*100vw);
          letter-spacing: 0em;
          line-height: 1.62; }
      .p-search-result .-column3 .p-works-list__wrap--blk .info {
        font-size: calc(13/375*100vw);
        letter-spacing: 0em;
        line-height: 1.62;
        margin-top: 0; } }
@media only screen and (min-width: 835px) {
  .p-news {
    padding-top: 100px; }
    .p-news-list__ttl {
      font-size: 4rem;
      text-align: center;
      letter-spacing: .2em;
      font-weight: 500; }
    .p-news-list__main {
      margin-top: 30px; }
      .p-news-list__main a {
        display: block;
        position: relative; }
        .p-news-list__main a::after {
          content: '';
          position: absolute;
          top: calc(50% - 10px);
          right: 30px;
          width: 20px;
          height: 20px;
          background-size: contain;
          background-position: center;
          background-repeat: no-repeat;
          background-image: url(../img/common/icon_link.svg); }
        .p-news-list__main a[target="_blank"]::after {
          background-image: url(../img/common/icon_link_blank.svg); }
        .p-news-list__main a:hover {
          opacity: 1;
          background: #fcf2f2; }
      .p-news-list__main .p-top-fv__news--blk {
        flex-wrap: wrap;
        margin-top: -1px;
        padding: 30px 40px 30px 20px;
        border-bottom: 1px solid #b2b2b2;
        border-top: 1px solid #b2b2b2; }
        .p-news-list__main .p-top-fv__news--blk:hover {
          color: #000; }
          .p-news-list__main .p-top-fv__news--blk:hover::before {
            border-color: #cc0000; }
        .p-news-list__main .p-top-fv__news--blk dt {
          width: 100%;
          font-size: 1.6rem;
          margin-bottom: 15px; }
        .p-news-list__main .p-top-fv__news--blk dd {
          width: 100%;
          font-size: 1.8rem;
          line-height: 1.6; }
    .p-news-detail__ttl {
      font-size: 28px;
      margin-top: 20px;
      font-weight: bold; }
    .p-news-detail__cts {
      margin: 30px 0 120px;
      padding-top: 30px;
      border-top: 1px solid #cc0000; }
      .p-news-detail__cts p {
        line-height: 2; } }
@media only screen and (max-width: 834px) {
  .p-news {
    padding-top: calc(50/375*100vw); }
    .p-news-list__ttl {
      font-size: calc(22/375*100vw);
      text-align: center;
      letter-spacing: .2em;
      font-weight: 500; }
    .p-news-list__main {
      margin-top: calc(20/375*100vw); }
      .p-news-list__main a {
        display: block;
        position: relative; }
        .p-news-list__main a::after {
          content: '';
          position: absolute;
          top: calc(50% - vw(10));
          right: calc(10/375*100vw);
          width: calc(20/375*100vw);
          height: calc(20/375*100vw);
          background-size: contain;
          background-position: center;
          background-repeat: no-repeat;
          background-image: url(../img/common/icon_link.svg); }
        .p-news-list__main a[target="_blank"]::after {
          background-image: url(../img/common/icon_link_blank.svg); }
        .p-news-list__main a:hover {
          opacity: 1;
          background: #fcf2f2; }
      .p-news-list__main .p-top-fv__news--blk {
        flex-wrap: wrap;
        margin-top: calc(-1/375*100vw);
        padding: calc(20/375*100vw) calc(10/375*100vw) calc(20/375*100vw) 0;
        border-bottom: calc(1/375*100vw) solid #b2b2b2;
        border-top: calc(1/375*100vw) solid #b2b2b2; }
        .p-news-list__main .p-top-fv__news--blk dt {
          width: 100%;
          margin-bottom: calc(10/375*100vw); }
        .p-news-list__main .p-top-fv__news--blk dd {
          width: 100%;
          line-height: 1.6; }
    .p-news-detail__ttl {
      font-size: calc(18/375*100vw);
      margin-top: calc(10/375*100vw);
      font-weight: bold; }
    .p-news-detail__cts {
      margin: calc(30/375*100vw) 0 calc(120/375*100vw);
      padding-top: calc(30/375*100vw);
      border-top: 1px solid #cc0000; }
      .p-news-detail__cts p {
        line-height: 2; } }
@media only screen and (min-width: 835px) {
  .p-faq__nav a {
    width: 33%; }
  .p-faq .indent {
    text-indent: -0.8em;
    padding-left: 0.8em; }
  .p-faq-main {
    padding-bottom: 50px; }
    .p-faq-main__ttl {
      font-size: 2.4rem;
      font-weight: 500;
      text-align: center;
      letter-spacing: .1em;
      margin-bottom: 40px; }
      .p-faq-main__ttl--next {
        margin-top: 90px; }
    .p-faq-main__wrap {
      margin-bottom: 70px; }
    .p-faq-main__q, .p-faq-main__a {
      padding: 20px;
      position: relative; }
      .p-faq-main__q--ttl, .p-faq-main__a--ttl {
        font-size: 3rem;
        font-weight: 500;
        position: absolute;
        top: 12px;
        left: 20px; }
      .p-faq-main__q--txt, .p-faq-main__a--txt {
        padding-left: 50px; }
    .p-faq-main__q {
      background: #fcf2f2;
      color: #cc0000;
      border-top: 1px solid #e58080;
      border-bottom: 1px solid #e58080; }
      .p-faq-main__q--txt {
        font-size: 2rem;
        font-weight: 500; }
    .p-faq-main__a--txt {
      line-height: 1.6; }
      .p-faq-main__a--txt span {
        display: block; } }
@media only screen and (max-width: 834px) {
  .p-faq__nav {
    display: block; }
    .p-faq__nav a {
      width: 100%;
      margin-bottom: calc(5/375*100vw);
      height: calc(56/375*100vw);
      align-items: flex-start;
      padding: calc(10/375*100vw);
      font-size: 1.8rem;
      position: relative; }
      .p-faq__nav a:not(:first-of-type) {
        margin-left: 0; }
      .p-faq__nav a::before {
        width: calc(12/375*100vw);
        height: calc(12/375*100vw);
        position: absolute;
        top: 50%;
        right: calc(10/375*100vw);
        transform: translateY(-50%) rotate(135deg); }
  .p-faq .indent {
    text-indent: -0.8em;
    padding-left: 0.8em; }
  .p-faq-main__ttl {
    font-size: calc(18/375*100vw);
    font-weight: 500;
    text-align: center;
    letter-spacing: .1em;
    margin-bottom: calc(20/375*100vw); }
    .p-faq-main__ttl--next {
      margin-top: calc(40/375*100vw); }
  .p-faq-main__wrap {
    margin-bottom: calc(25/375*100vw); }
  .p-faq-main__q, .p-faq-main__a {
    padding: calc(15/375*100vw);
    position: relative; }
    .p-faq-main__q--ttl, .p-faq-main__a--ttl {
      font-size: calc(20/375*100vw);
      font-weight: 500;
      position: absolute;
      top: calc(12/375*100vw);
      left: calc(20/375*100vw); }
    .p-faq-main__q--txt, .p-faq-main__a--txt {
      padding-left: calc(30/375*100vw); }
  .p-faq-main__q {
    background: #fcf2f2;
    color: #cc0000;
    border-top: 1px solid #e58080;
    border-bottom: 1px solid #e58080; }
    .p-faq-main__q__txt {
      font-size: calc(16/375*100vw);
      font-weight: 500; }
  .p-faq-main__a--txt {
    line-height: 1.6; }
    .p-faq-main__a--txt span {
      display: block; } }
.p-search__wrap {
  padding-bottom: 120px;
  background: #f7f7f7; }
.p-search__submit {
  width: 310px;
  font-size: 1.8rem;
  margin: 60px auto 0; }
.p-search-tab {
  display: flex;
  justify-content: space-between;
  max-width: 650px;
  margin: 95px auto 60px; }
  .p-search-tab__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    font-size: 24px;
    letter-spacing: 0.09em;
    line-height: 2.13;
    font-weight: 500;
    color: #808080;
    border-bottom: 6px solid #808080; }
    .p-search-tab__btn.current {
      color: #cc0000;
      border-color: #cc0000; }
.p-search-sort input {
  display: none; }
.p-search-sort__wrap {
  background: #fff;
  padding: 30px 40px; }
  .p-search-sort__wrap:nth-of-type(n+2) {
    margin-top: 15px; }
.p-search-sort__head {
  position: relative;
  margin-bottom: 10px; }
  .p-search-sort__head--ttl {
    font-size: 20px;
    letter-spacing: 0.09em;
    line-height: 1.4;
    font-weight: 500;
    text-align: center; }
  .p-search-sort__head--btn {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 225px; }
    .p-search-sort__head--btn .-btn {
      width: 110px;
      height: 28px;
      font-size: 13px;
      letter-spacing: 0.05em;
      line-height: 1; }
.p-search-sort__cnt--ttl {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.11;
  font-weight: 500;
  margin-top: 35px;
  padding-left: 0.25em;
  border-left: 3px solid #db4c4c; }
  @media only screen and (min-width: 835px) {
    .p-search-sort__cnt--ttl {
      pointer-events: none; } }
.p-search-sort__cnt--list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap; }
  @media only screen and (min-width: 835px) {
    .p-search-sort__cnt--list li:not(:nth-of-type(3n)) {
      margin-right: 15px; } }
  .p-search-sort__cnt--list .-btn {
    width: 310px;
    height: 38px;
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 1;
    margin-top: 15px;
    cursor: pointer; }
.p-search-keyword {
  display: none;
  max-width: 650px;
  margin: 0 auto; }
  .p-search-keyword__lead {
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.78; }
  .p-search-keyword__input {
    margin-top: 25px; }
    .p-search-keyword__input input {
      width: 100%;
      height: 60px;
      font-size: 18px;
      letter-spacing: 0.05em;
      line-height: 1.78;
      color: #000;
      border: 1px solid #b2b2b2;
      border-radius: 10px;
      padding: 20px; }
.p-search-result {
  margin-top: 115px; }
  .p-search-result__filter {
    background: #f7f7f7;
    padding: 25px; }
    .p-search-result__filter--ttl {
      font-size: 18px;
      letter-spacing: 0.1em;
      line-height: 1.56;
      font-weight: 500;
      text-align: center; }
    .p-search-result__filter--list {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex-wrap: wrap; }
    .p-search-result__filter .-btn {
      width: 310px;
      min-height: 38px;
      font-size: 14px;
      letter-spacing: 0.03em;
      line-height: 1;
      margin-top: 15px;
      padding: 0.2em 1.2em; }
      @media only screen and (min-width: 835px) {
        .p-search-result__filter .-btn:not(:nth-of-type(3n)) {
          margin-right: 15px; } }
  .p-search-result .p-works-list__wrap {
    margin-top: 105px; }
  .p-search-result .p-works-list__wrap--blk {
    margin-bottom: 75px !important; }
  .p-search-result__na {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.78;
    text-align: center;
    margin-top: 65px; }
  .p-search-result__pager {
    display: flex;
    align-items: center;
    justify-content: center; }
    .p-search-result__pager a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      font-size: 18px;
      letter-spacing: 0.03em;
      line-height: 1;
      margin: 0 3px;
      border-radius: 100vw; }
      .p-search-result__pager a.current {
        background: #d5d7d9;
        pointer-events: none; }
    .p-search-result__pager .-prev {
      background: url(../img/common/arw_prev.svg) no-repeat center/contain;
      margin-right: 30px; }
    .p-search-result__pager .-next {
      background: url(../img/common/arw_nxet.svg) no-repeat center/contain;
      margin-left: 30px; }
  .p-search-result__btn {
    margin: 70px auto 0; }

@media only screen and (max-width: 834px) {
  .p-search__wrap {
    padding-bottom: calc(80/375*100vw); }
  .p-search__submit {
    width: calc(200/375*100vw);
    font-size: calc(14/375*100vw);
    margin: calc(45/375*100vw) auto 0; }
  .p-search-tab {
    width: calc(320/375*100vw);
    margin: calc(45/375*100vw) auto calc(50/375*100vw); }
    .p-search-tab__btn {
      width: calc(150/375*100vw);
      font-size: calc(14/375*100vw);
      letter-spacing: 0.09em;
      line-height: 2.14;
      border-bottom: calc(3/375*100vw) solid #808080; }
  .p-search-sort__wrap {
    padding: calc(20/375*100vw) calc(20/375*100vw) calc(30/375*100vw); }
    .p-search-sort__wrap:nth-of-type(n+2) {
      margin-top: calc(20/375*100vw); }
  .p-search-sort__head {
    position: relative;
    margin-bottom: 0; }
    .p-search-sort__head--ttl {
      font-size: calc(16/375*100vw);
      letter-spacing: 0.09em;
      line-height: 1.75; }
    .p-search-sort__head--btn {
      position: static;
      width: 100%;
      margin-top: calc(15/375*100vw); }
      .p-search-sort__head--btn .-btn {
        width: calc(135/375*100vw);
        height: calc(28/375*100vw);
        font-size: calc(13/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1; }
  .p-search-sort__cnt--ttl {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: calc(56/375*100vw);
    font-size: calc(18/375*100vw);
    letter-spacing: 0.1em;
    line-height: 1.56;
    font-weight: 400;
    margin: calc(10/375*100vw) 0 0;
    padding: 0 calc(15/375*100vw);
    color: #fff;
    background: #2e3642;
    border-left: none; }
    .p-search-sort__cnt--ttl + .p-search-sort__cnt--list {
      display: none; }
  .p-search-sort__cnt--list {
    display: block; }
    .p-search-sort__cnt--list .-btn {
      width: 100%;
      height: calc(34/375*100vw);
      font-size: 12px;
      letter-spacing: 0.03em;
      line-height: 117.67;
      margin-top: calc(10/375*100vw); }
  .p-search-keyword {
    width: calc(320/375*100vw); }
    .p-search-keyword__lead {
      font-size: calc(14/375*100vw);
      letter-spacing: 0.05em;
      line-height: 1.86; }
    .p-search-keyword__input {
      margin-top: calc(15/375*100vw); }
      .p-search-keyword__input input {
        height: calc(40/375*100vw);
        font-size: calc(16/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1.4;
        border-radius: calc(6/375*100vw);
        padding: calc(10/375*100vw); }
  .p-search-result {
    margin-top: calc(40/375*100vw); }
    .p-search-result__filter {
      margin-top: calc(25/375*100vw);
      margin-bottom: calc(60/375*100vw);
      padding: calc(20/375*100vw); }
      .p-search-result__filter--ttl {
        font-size: calc(14/375*100vw);
        letter-spacing: 0.1em;
        line-height: 2; }
      .p-search-result__filter .-btn {
        width: 100%;
        min-height: calc(34/375*100vw);
        font-size: calc(12/375*100vw);
        letter-spacing: 0.03em;
        line-height: 1.17;
        margin-top: calc(10/375*100vw); }
    .p-search-result .p-works-list__wrap {
      margin-top: calc(60/375*100vw); }
    .p-search-result .p-works-list__wrap--blk {
      margin-bottom: calc(45/375*100vw) !important; }
    .p-search-result__na {
      font-size: calc(14/375*100vw);
      letter-spacing: 0.05em;
      line-height: 1.86;
      text-align: center;
      margin-top: calc(40/375*100vw); }
    .p-search-result__pager a {
      width: calc(40/375*100vw);
      height: calc(40/375*100vw);
      font-size: calc(18/375*100vw);
      letter-spacing: 0.03em;
      line-height: 1;
      margin: 0 3px; }
    .p-search-result__pager .-prev {
      margin-right: 15px; }
    .p-search-result__pager .-next {
      margin-left: 15px; }
    .p-search-result__btn {
      margin: 70px auto 0; }
    .p-search-result .-column3 .p-works-list__wrap--blk {
      width: 100%;
      margin-bottom: calc(30/375*100vw); }
      .p-search-result .-column3 .p-works-list__wrap--blk .img {
        height: 66vw; }
        .p-search-result .-column3 .p-works-list__wrap--blk .img.-yoko {
          padding-bottom: 7.5vw; }
          .p-search-result .-column3 .p-works-list__wrap--blk .img.-yoko .inner {
            width: 54vw;
            height: 39vw; }
        .p-search-result .-column3 .p-works-list__wrap--blk .img.-tate {
          padding-bottom: 7vw; }
          .p-search-result .-column3 .p-works-list__wrap--blk .img.-tate .inner {
            width: 39vw;
            height: 54vw; }
      .p-search-result .-column3 .p-works-list__wrap--blk .title {
        font-size: calc(13/375*100vw);
        letter-spacing: 0em;
        line-height: 1.62;
        margin-top: calc(20/375*100vw); }
      .p-search-result .-column3 .p-works-list__wrap--blk .name {
        font-size: calc(22/375*100vw);
        letter-spacing: 0em;
        line-height: 0.95; }
        .p-search-result .-column3 .p-works-list__wrap--blk .name__en {
          font-size: calc(13/375*100vw);
          letter-spacing: 0em;
          line-height: 1.62; }
      .p-search-result .-column3 .p-works-list__wrap--blk .info {
        font-size: calc(13/375*100vw);
        letter-spacing: 0em;
        line-height: 1.62;
        margin-top: 0; } }
.p-schedule-top {
  padding: 64px 0 123px; }
  .p-schedule-top__sche--img {
    margin-top: 35px; }
  .p-schedule-top__archive {
    margin-top: 66px;
    width: 520px;
    margin-right: auto;
    margin-left: auto; }
    .p-schedule-top__archive--ttl {
      font-size: 24px;
      letter-spacing: 0.1em;
      line-height: 1.43;
      font-weight: 500;
      text-align: center;
      margin-bottom: 13px; }
.p-schedule-award {
  background-color: #f7f7f7;
  padding: 86px 0 110px; }
  .p-schedule-award .-awardTtl {
    font-size: 3.2rem; }
  .p-schedule-award__flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 42px;
    padding-bottom: 30px; }
    .p-schedule-award__flex--box {
      background-color: #fff;
      padding: 27px 54px 28px;
      width: 390px;
      border-radius: 10px;
      position: relative;
      border: 1px solid #e5e5e5; }
      .p-schedule-award__flex--box:after {
        position: absolute;
        content: "";
        width: 32px;
        height: 16px;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #cc0000;
        clip-path: polygon(50% 100%, 0 0, 100% 0); }
      .p-schedule-award__flex--box .-ttl {
        text-align: center;
        color: #cc0000;
        font-size: 2rem;
        font-weight: 500; }
      .p-schedule-award__flex--box .-txt {
        margin-top: 15px;
        font-size: 1.6rem;
        line-height: 1.875; }
  .p-schedule-award__speBox {
    margin-top: 10px;
    background-color: #fae5e5;
    padding: 20px 20px 29px; }
    .p-schedule-award__speBox--bbl {
      background-color: #cc0000;
      border-radius: 999px;
      color: #fff;
      position: relative;
      width: 200px;
      text-align: center;
      padding: 10px 10px 10px;
      margin-left: auto;
      margin-right: 37px;
      position: relative;
      top: 36px; }
      .p-schedule-award__speBox--bbl:before {
        position: absolute;
        content: "";
        width: 20px;
        height: 15px;
        left: -18px;
        top: 50%;
        transform: translateY(-50%);
        background-color: #cc0000;
        clip-path: polygon(100% 0, 0 50%, 100% 100%); }
      .p-schedule-award__speBox--bbl .-smlTxt {
        font-size: 1.6rem; }
      .p-schedule-award__speBox--bbl .-txt {
        font-size: 2rem; }
    .p-schedule-award__speBox--ttl {
      margin-left: auto;
      margin-right: auto;
      width: 180px;
      margin-top: -57px;
      font-weight: 500; }
      .p-schedule-award__speBox--ttl .-ttl {
        text-align: center;
        color: #cc0000;
        font-size: 2.4rem; }
      .p-schedule-award__speBox--ttl .-subTtl {
        text-align: center;
        color: #cc0000;
        padding: 10px 0 10px;
        border-top: 1px solid #cc0000;
        border-bottom: 1px solid #cc0000;
        margin-top: 12px; }
        .p-schedule-award__speBox--ttl .-subTtl .-bigTxt {
          font-size: 2rem; }
        .p-schedule-award__speBox--ttl .-subTtl .-smlTxt {
          font-size: 1.4rem; }
    .p-schedule-award__speBox--txtArea {
      margin-top: 17px; }
      .p-schedule-award__speBox--txtArea .-txt {
        text-align: center;
        font-size: 1.8rem;
        line-height: 1.66;
        font-weight: 500; }
      .p-schedule-award__speBox--txtArea .-att {
        margin-top: 14px;
        font-size: 1.3rem;
        line-height: 1.84;
        text-align: center; }
.p-schedule-btn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 43px 0 0px;
  width: 640px;
  margin-left: auto;
  margin-right: auto; }

@media only screen and (min-width: 835px) {
  .c-lang-en .p-schedule-award__speBox--bbl {
    line-height: 1.25;
    letter-spacing: 0.01em;
    padding: 15px 10px 13px; } }
@media only screen and (max-width: 834px) {
  .p-schedule-top {
    padding: calc(48/375*100vw) 0 calc(83/375*100vw); }
    .p-schedule-top__sche--img {
      margin-top: 0;
      overflow-x: scroll; }
      .p-schedule-top__sche--img img {
        width: calc(650/375*100vw);
        max-width: none; }
    .p-schedule-top__archive {
      width: 100%;
      margin-top: calc(42/375*100vw); }
      .p-schedule-top__archive--ttl {
        font-size: calc(18/375*100vw); }
      .p-schedule-top__archive--img.open {
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100dvw;
        height: 100dvh;
        padding: calc(20/375*100vw);
        overflow-x: scroll;
        background: rgba(0, 0, 0, 0.9);
        z-index: 1000; }
        .p-schedule-top__archive--img.open::before, .p-schedule-top__archive--img.open::after {
          content: '';
          display: block;
          position: absolute;
          top: 50%;
          left: 50%;
          width: 30px;
          height: 2px;
          background: #fff;
          transform: translate(-50%, 0) rotate(45deg);
          transform-origin: center; }
        .p-schedule-top__archive--img.open::after {
          transform: translate(-50%, 0) rotate(-45deg); }
        .p-schedule-top__archive--img.open::before, .p-schedule-top__archive--img.open::after {
          position: fixed;
          top: auto;
          bottom: 40px; }
        .p-schedule-top__archive--img.open img {
          width: calc(500/375*100vw);
          max-width: none; }
  .p-schedule-award {
    padding: calc(72/375*100vw) 0 calc(80/375*100vw); }
    .p-schedule-award .-awardTtl {
      font-size: calc(22/375*100vw); }
    .p-schedule-award__flex {
      margin-top: calc(23/375*100vw);
      align-items: normal; }
      .p-schedule-award__flex--box {
        padding: calc(18/375*100vw) 0 calc(18/375*100vw);
        width: calc(50% - vw(12) * 1 / 2);
        margin-right: calc(12/375*100vw); }
        .p-schedule-award__flex--box:nth-of-type(2n) {
          margin-right: 0; }
        .p-schedule-award__flex--box .-ttl {
          font-size: calc(16/375*100vw);
          display: flex;
          align-items: center;
          justify-content: center;
          height: calc(49/375*100vw);
          letter-spacing: 0.05em; }
        .p-schedule-award__flex--box .-txt {
          font-size: calc(13/375*100vw);
          margin-top: calc(4/375*100vw);
          padding: 0 calc(21/375*100vw);
          line-height: 1.53;
          letter-spacing: 0.01em; }
    .p-schedule-award__speBox {
      margin-top: calc(11/375*100vw);
      padding: calc(28/375*100vw) calc(30/375*100vw) calc(29/375*100vw); }
      .p-schedule-award__speBox--bbl {
        width: calc(200/375*100vw);
        top: 0;
        padding: calc(10/375*100vw) calc(10/375*100vw) calc(7/375*100vw);
        margin-left: auto;
        margin-right: auto; }
        .p-schedule-award__speBox--bbl:before {
          top: unset;
          bottom: calc(-10/375*100vw);
          left: 50%;
          transform: translateX(-50%);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
          width: calc(15/375*100vw);
          height: calc(15/375*100vw); }
        .p-schedule-award__speBox--bbl .-smlTxt {
          font-size: calc(14/375*100vw); }
        .p-schedule-award__speBox--bbl .-txt {
          font-size: calc(18/375*100vw); }
      .p-schedule-award__speBox--ttl {
        width: calc(180/375*100vw);
        margin-top: calc(17/375*100vw); }
        .p-schedule-award__speBox--ttl .-ttl {
          font-size: calc(20/375*100vw); }
        .p-schedule-award__speBox--ttl .-subTtl {
          margin-top: calc(6/375*100vw);
          padding: calc(5/375*100vw) 0 calc(5/375*100vw); }
          .p-schedule-award__speBox--ttl .-subTtl .-bigTxt {
            font-size: calc(16/375*100vw); }
          .p-schedule-award__speBox--ttl .-subTtl .-smlTxt {
            font-size: calc(12/375*100vw); }
      .p-schedule-award__speBox--txtArea .-txt {
        font-size: calc(16/375*100vw); }
      .p-schedule-award__speBox--txtArea .-att {
        font-size: calc(13/375*100vw);
        text-align: left;
        line-height: 1.5;
        margin-top: calc(20/375*100vw); }
  .p-schedule-btn {
    flex-direction: column;
    width: 100%; }
    .p-schedule-btn a:not(:first-of-type) {
      margin-top: 20px; } }
@media only screen and (min-width: 835px) {
  .p-rules-main {
    background: #f7f7f7;
    padding: 100px 0 120px; }
    .p-rules-main__wrap {
      background: #fff;
      border-radius: 30px;
      padding: 85px 0; }
      .p-rules-main__wrap--inr {
        max-width: 800px;
        width: 95%;
        margin: 0 auto; }
    .p-rules-main__subttl {
      font-size: 1.8rem;
      font-weight: 500;
      text-align: center; }
    .p-rules-main__ttl {
      margin: 15px 0 35px;
      text-align: center;
      font-size: 3.2rem;
      font-weight: 500; }
    .p-rules-main__lead {
      margin-bottom: 50px; }
    .p-rules-main .indent {
      text-indent: -1em;
      padding-left: 1em; }
    .p-rules-main__blk {
      padding: 15px 0;
      border-top: 1px solid #808080;
      border-bottom: 1px solid #808080;
      display: flex;
      justify-content: space-between;
      line-height: 1.8; }
      .p-rules-main__blk:not(:first-of-type) {
        border-top: none; }
      .p-rules-main__blk .-ttl {
        width: 150px;
        font-weight: bold; }
      .p-rules-main__blk .-txt {
        width: calc(100% - 160px); }
        .p-rules-main__blk .-txt small {
          display: block;
          font-size: 1.3rem; }
          .p-rules-main__blk .-txt small:first-of-type {
            margin-top: 10px; }
        .p-rules-main__blk .-txt a {
          text-decoration: underline; }
      .p-rules-main__blk .-list li {
        display: block;
        text-indent: -1em;
        padding-left: 1em; }
        .p-rules-main__blk .-list li .-icon {
          color: #808080; }
    .p-rules-main__btn {
      font-size: 1.4rem;
      color: #fff;
      background: #808080;
      text-decoration: none !important;
      width: 200px;
      height: 30px;
      border: none;
      border-radius: 0; }
      .p-rules-main__btn::before {
        border-color: #fff;
        right: 10px;
        top: 45%;
        transform: translate(0, -50%) rotate(135deg); }
  .p-rules-list {
    margin-top: 120px; }
    .p-rules-list .c-btn-contest {
      line-height: 1.25; }
    .p-rules-list__btm {
      margin-top: 65px; }
      .p-rules-list__btm__txt {
        padding-left: 200px;
        font-size: 1.4rem;
        line-height: 2; }
        .p-rules-list__btm__txt__link {
          position: relative;
          text-decoration: underline; }
          .p-rules-list__btm__txt__link::before {
            position: absolute;
            top: 55%;
            left: 102%;
            transform: translateY(-50%); }
          .p-rules-list__btm__txt__link:hover::before {
            background: #cc0000 !important; }
      .p-rules-list__btm__btn {
        margin: 90px auto 0;
        width: 500px;
        height: 70px;
        font-size: 2.2rem; }
        .p-rules-list__btm__btn::before {
          right: 40px;
          width: 12px;
          height: 12px; } }
@media only screen and (max-width: 834px) {
  .p-rules-main {
    background: #f7f7f7;
    padding: calc(50/375*100vw) 0 calc(70/375*100vw); }
    .p-rules-main__wrap {
      background: #fff;
      border-radius: calc(15/375*100vw);
      padding: calc(40/375*100vw) 0; }
      .p-rules-main__wrap--inr {
        max-width: calc(260/375*100vw);
        width: 90%;
        margin: 0 auto; }
    .p-rules-main__subttl {
      font-size: calc(16/375*100vw);
      font-weight: 500;
      text-align: center; }
    .p-rules-main__ttl {
      margin: calc(5/375*100vw) 0 calc(25/375*100vw);
      text-align: center;
      font-size: calc(24/375*100vw);
      font-weight: 500; }
    .p-rules-main__lead {
      font-size: calc(14/375*100vw);
      margin-bottom: calc(30/375*100vw); }
    .p-rules-main .indent {
      text-indent: -1em;
      padding-left: 1em; }
    .p-rules-main__blk {
      padding: calc(15/375*100vw) 0;
      border-top: 1px solid #808080;
      border-bottom: 1px solid #808080;
      font-size: calc(14/375*100vw);
      line-height: 1.8; }
      .p-rules-main__blk:not(:first-of-type) {
        border-top: none; }
      .p-rules-main__blk .-ttl {
        font-weight: bold;
        display: block; }
      .p-rules-main__blk .-txt {
        display: block; }
        .p-rules-main__blk .-txt small {
          display: block;
          font-size: 1.3rem; }
          .p-rules-main__blk .-txt small:first-of-type {
            margin-top: calc(5/375*100vw); }
      .p-rules-main__blk .-list li {
        display: block;
        text-indent: -1em;
        padding-left: 1em; }
        .p-rules-main__blk .-list li .-icon {
          color: #808080; }
      .p-rules-main__blk .-list a {
        text-decoration: underline; }
      .p-rules-main__blk .-list--left {
        text-align: left; }
    .p-rules-main__btn {
      font-size: calc(14/375*100vw);
      color: #fff;
      background: #808080;
      text-decoration: none !important;
      width: calc(200/375*100vw);
      height: calc(35/375*100vw);
      border: none;
      border-radius: 0;
      margin: calc(10/375*100vw) 0 0; }
      .p-rules-main__btn::before {
        border-color: #fff;
        right: 10px;
        top: 45%;
        transform: translate(0, -50%) rotate(135deg); }
  .p-rules-list .-blank {
    flex-direction: row-reverse; }
    .p-rules-list .-blank::before {
      content: "";
      display: block;
      width: calc(20/375*100vw);
      height: calc(20/375*100vw);
      margin-right: 0.5em; }
  .p-rules-list__cty {
    font-size: calc(16/375*100vw); }
  .p-rules-list__btm {
    margin-top: calc(50/375*100vw); }
    .p-rules-list__btm__txt {
      font-size: calc(14/375*100vw);
      line-height: 2; }
      .p-rules-list__btm__txt__link {
        display: inline-block;
        position: relative;
        text-decoration: underline;
        margin-top: calc(20/375*100vw);
        line-height: 1.8;
        text-align: left; }
        .p-rules-list__btm__txt__link::after {
          display: inline-block !important;
          width: calc(15/375*100vw) !important;
          height: calc(15/375*100vw) !important;
          margin-left: calc(5/375*100vw);
          margin-top: calc(2/375*100vw); }
    .p-rules-list__btm__btn {
      margin: calc(50/375*100vw) auto 0;
      width: calc(320/375*100vw);
      height: calc(55/375*100vw);
      font-size: calc(18/375*100vw); } }
@media only screen and (min-width: 835px) {
  .p-about section {
    padding: 100px 0; }
    .p-about section p {
      line-height: 2; }
  .p-about__comNumTtl {
    font-family: "M PLUS Rounded 1c", sans-serif;
    text-align: center;
    color: #cc0000;
    font-size: 1.8rem;
    font-weight: 500; }
    .p-about__comNumTtl__num {
      display: block;
      font-size: 5.2rem; }
  .p-about__comTtl {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 2.4rem;
    text-align: center;
    line-height: 1.6;
    margin: 15px 0 45px; }
  .p-about__comleadBlk {
    max-width: 600px;
    margin: 0 auto; }
  .p-about__about01__img {
    margin-top: 70px; }
  .p-about__about02 {
    background: #f7f7f7; }
    .p-about__about02__map {
      border-top: 1px solid #e5e5e5;
      border-bottom: 1px solid #e5e5e5;
      width: 100%;
      margin-bottom: 50px; }
    .p-about__about02__box {
      border: 1px solid #e5e5e5;
      margin-top: 60px;
      background: #fff;
      padding: 35px 65px; }
      .p-about__about02__box__ttl {
        text-align: center;
        font-family: "M PLUS Rounded 1c", sans-serif;
        font-weight: 500;
        font-size: 1.8rem;
        color: #cc0000;
        margin-bottom: 30px; }
        .p-about__about02__box__ttl__small {
          font-size: 1.3rem;
          display: block; }
      .p-about__about02__box__dl {
        padding: 23px 0;
        border-top: 1px solid #b2b2b2;
        display: flex;
        justify-content: space-between; }
        .p-about__about02__box__dl__dt {
          width: 120px; }
        .p-about__about02__box__dl__dd {
          width: calc(100% - 120px); }
          .p-about__about02__box__dl__dd__ul {
            display: flex;
            flex-wrap: wrap; }
            .p-about__about02__box__dl__dd__ul__li {
              width: 20%;
              margin-bottom: 7px;
              position: relative;
              padding-left: 15px; }
              .p-about__about02__box__dl__dd__ul__li::before {
                content: "";
                width: 11px;
                height: 11px;
                background: #cc0000;
                border-radius: 50%;
                position: absolute;
                top: 5px;
                left: 0; }
  .p-about__about03__3steps {
    display: flex;
    justify-content: center;
    margin: 60px 0; }
    .p-about__about03__3steps__step {
      width: 240px;
      margin: 0 20px;
      background: #fcf2f2;
      border-radius: 20px;
      padding: 25px;
      text-align: center; }
      .p-about__about03__3steps__step:not(:last-of-type) {
        position: relative; }
        .p-about__about03__3steps__step:not(:last-of-type)::after {
          content: "";
          display: block;
          width: 0;
          height: 0;
          border-style: solid;
          border-top: 16px solid transparent;
          border-bottom: 16px solid transparent;
          border-left: 16px solid #cc0000;
          border-right: 0;
          position: absolute;
          top: 50%;
          right: -30px;
          transform: translateY(-50%); }
      .p-about__about03__3steps__step__ttl {
        display: inline-block;
        color: #cc0000;
        font-size: 1.8rem;
        font-weight: 500;
        border-bottom: 1px solid #cc0000;
        line-height: 1.4 !important; }
        .p-about__about03__3steps__step__ttl__num {
          font-size: 2.6rem; }
      .p-about__about03__3steps__step__txt {
        font-size: 2rem;
        line-height: 1.4 !important;
        margin-top: 15px; }
        .p-about__about03__3steps__step__txt.-oneline {
          margin-top: 25px; }
  .p-about__about03__img {
    margin-top: 60px; }
  .p-about__about04 {
    background: #f7f7f7; }
    .p-about__about04__award {
      padding: 60px 0 0; }
      .p-about__about04__award__flex {
        margin-top: 20px; }
      .p-about__about04__award__speBox {
        border-radius: 10px;
        border: 1px solid #fff; }
    .p-about__about04__subttl {
      font-size: 2rem !important; }
    .p-about__about04__postcard {
      margin-top: 130px; }
      .p-about__about04__postcard__ttl {
        font-size: 2rem;
        text-align: center; }
      .p-about__about04__postcard__img {
        margin: 30px 0 40px; } }
@media only screen and (max-width: 834px) {
  .p-about section {
    padding: calc(60/375*100vw) 0; }
    .p-about section p {
      line-height: 2; }
  .p-about__h1 img {
    width: 100%; }
  .p-about__comNumTtl {
    font-family: "M PLUS Rounded 1c", sans-serif;
    text-align: center;
    color: #cc0000;
    font-size: calc(16/375*100vw);
    font-weight: 500; }
    .p-about__comNumTtl__num {
      display: block;
      font-size: calc(36/375*100vw); }
  .p-about__comTtl {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: calc(18/375*100vw);
    text-align: center;
    line-height: 1.6;
    margin: calc(20/375*100vw) 0 calc(30/375*100vw); }
  .p-about__about01__img {
    margin-top: calc(30/375*100vw); }
    .p-about__about01__img img {
      width: 100%; }
  .p-about__about02 {
    background: #f7f7f7; }
    .p-about__about02__map {
      border-top: 1px solid #e5e5e5;
      border-bottom: 1px solid #e5e5e5;
      width: 100%;
      margin-bottom: calc(35/375*100vw); }
    .p-about__about02__box {
      border: 1px solid #e5e5e5;
      margin-top: calc(40/375*100vw);
      background: #fff;
      padding: calc(30/375*100vw); }
      .p-about__about02__box__ttl {
        text-align: center;
        font-family: "M PLUS Rounded 1c", sans-serif;
        font-weight: 500;
        font-size: calc(16/375*100vw);
        color: #cc0000;
        margin-bottom: calc(20/375*100vw); }
        .p-about__about02__box__ttl__small {
          font-size: calc(12/375*100vw);
          display: block; }
      .p-about__about02__box__dl {
        padding: calc(20/375*100vw) 0;
        border-top: 1px solid #b2b2b2; }
        .p-about__about02__box__dl:last-of-type {
          padding-bottom: 0; }
        .p-about__about02__box__dl__dt {
          margin-bottom: calc(10/375*100vw); }
        .p-about__about02__box__dl__dd__ul {
          display: flex;
          flex-wrap: wrap; }
          .p-about__about02__box__dl__dd__ul__li {
            width: 50%;
            margin-bottom: calc(6/375*100vw);
            position: relative;
            padding-left: calc(15/375*100vw); }
            .p-about__about02__box__dl__dd__ul__li::before {
              content: "";
              width: calc(11/375*100vw);
              height: calc(11/375*100vw);
              background: #cc0000;
              border-radius: 50%;
              position: absolute;
              top: calc(5/375*100vw);
              left: 0; }
  .p-about__about03__3steps {
    margin: calc(25/375*100vw) 0 calc(30/375*100vw); }
    .p-about__about03__3steps__step {
      margin-bottom: calc(30/375*100vw);
      background: #fcf2f2;
      border-radius: calc(15/375*100vw);
      padding: calc(20/375*100vw);
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .p-about__about03__3steps__step:not(:last-of-type) {
        position: relative; }
        .p-about__about03__3steps__step:not(:last-of-type)::after {
          content: "";
          display: block;
          width: 0;
          height: 0;
          border-style: solid;
          border-top: 16px solid transparent;
          border-bottom: 16px solid transparent;
          border-left: 16px solid #cc0000;
          border-right: 0;
          width: 0;
          height: 0;
          border-style: solid;
          border-right: calc(10/375*100vw) solid transparent;
          border-left: calc(10/375*100vw) solid transparent;
          border-top: calc(10/375*100vw) solid #cc0000;
          border-bottom: 0;
          position: absolute;
          bottom: calc(-20/375*100vw);
          left: 50%;
          transform: translateX(-50%); }
      .p-about__about03__3steps__step__ttl {
        width: calc(60/375*100vw);
        color: #cc0000;
        font-size: calc(12/375*100vw);
        font-weight: 500;
        border-right: 1px solid #cc0000;
        line-height: 1.4 !important; }
        .p-about__about03__3steps__step__ttl__num {
          font-size: calc(18/375*100vw); }
      .p-about__about03__3steps__step__txt {
        width: calc(100% - vw(75));
        font-size: calc(16/375*100vw);
        line-height: 1.4 !important; }
  .p-about__about03__img {
    margin-top: calc(60/375*100vw);
    margin-left: calc(50% - 50vw);
    width: 100vw; }
    .p-about__about03__img img {
      width: 100%; }
  .p-about__about04 {
    background: #f7f7f7; }
    .p-about__about04__award {
      padding: calc(50/375*100vw) 0 0; }
      .p-about__about04__award__flex {
        margin-top: calc(20/375*100vw); }
      .p-about__about04__award__speBox {
        border-radius: calc(10/375*100vw);
        border: 1px solid #fff; }
    .p-about__about04__subttl {
      font-size: calc(16/375*100vw) !important; }
    .p-about__about04__postcard {
      margin-top: calc(70/375*100vw); }
      .p-about__about04__postcard__ttl {
        font-size: calc(16/375*100vw);
        text-align: center; }
      .p-about__about04__postcard__img {
        margin: calc(15/375*100vw) 0 calc(20/375*100vw); }
        .p-about__about04__postcard__img img {
          width: 100%; } }
.p-form {
  background: #f7f7f7; }
  .p-form-fv {
    padding-top: 90px; }
    .p-form-fv__step {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 75px; }
      .p-form-fv__step--icon {
        width: 120px; }
      .p-form-fv__step--line {
        display: block;
        width: 80px;
        height: 2px;
        background: #c0c3c6;
        border: none;
        margin: 0 15px; }
        .p-form-fv__step--line.-on {
          background: #cc0000; }
    .p-form-fv__note {
      font-size: 18px;
      letter-spacing: 0.05em;
      line-height: 1.11;
      text-align: center;
      color: #fff;
      background: #cc0000;
      margin-top: 50px;
      padding: 15px;
      border-radius: 15px; }
  .p-form-main {
    margin-top: 50px;
    margin-bottom: 170px;
    padding: 30px 100px 60px;
    background: #fff;
    border-radius: 20px; }
    .p-form-main__wrap {
      padding: 45px 0 10px;
      border-bottom: 1px solid #b2b2b2; }
    .p-form-main__blk {
      display: flex;
      justify-content: space-between;
      padding-bottom: 35px; }
      .p-form-main__blk dt {
        display: flex;
        justify-content: space-between;
        flex-shrink: 0;
        width: 200px;
        margin-right: 25px;
        padding-top: 8px; }
      .p-form-main__blk dd {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 100%; }
      .p-form-main__blk input.short {
        width: 70px;
        margin-right: 15px; }
      .p-form-main__blk input.zip {
        width: 150px;
        margin-right: 15px; }
      .p-form-main__blk input.half {
        width: 49%; }
        .p-form-main__blk input.half + .half {
          margin-left: 2%; }
      .p-form-main__blk input.full {
        width: 100%; }
        .p-form-main__blk input.full:not(:first-of-type) {
          margin-top: 7px; }
      .p-form-main__blk input[type="text"] {
        font-size: 20px;
        letter-spacing: 0.05em;
        line-height: 1.2;
        padding: 10px 15px;
        background: #f7f7f7;
        border: 1px solid #f2f2f2;
        border-radius: 5px; }
        .p-form-main__blk input[type="text"]::placeholder {
          color: #b2b2b2; }
      .p-form-main__blk input[type="radio"] {
        width: 30px;
        height: 30px;
        background: #f7f7f7;
        border-radius: 30px;
        margin-top: 0;
        margin-right: 10px;
        accent-color: #cc0000; }
      .p-form-main__blk textarea {
        width: 100%;
        height: 125px;
        font-size: 16px;
        letter-spacing: 0.05em;
        line-height: 1.75;
        padding: 18px;
        background: #f7f7f7;
        border: 1px solid #f2f2f2;
        border-radius: 5px; }
        .p-form-main__blk textarea::placeholder {
          color: #b2b2b2; }
      .p-form-main__blk .-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 30px;
        line-height: 1;
        color: #6d727b;
        border: 1px solid #6d727b; }
      .p-form-main__blk .-file {
        display: flex;
        align-items: center;
        justify-content: flex-start; }
        .p-form-main__blk .-file .file-btn {
          cursor: pointer; }
        .p-form-main__blk .-file #file-form {
          display: none; }
        .p-form-main__blk .-file .file-select {
          margin-left: 1em; }
      .p-form-main__blk .-radio {
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        margin-right: 30px; }
      .p-form-main__blk .-txt {
        font-size: 16px;
        letter-spacing: 0.05em;
        line-height: 1.75;
        margin: 20px 0 10px; }
        .p-form-main__blk .-txt i {
          font-size: 14px;
          letter-spacing: 0.05em;
          line-height: 2;
          color: #cc0000; }
      .p-form-main__blk .-note {
        font-size: 13px;
        letter-spacing: 0.05em;
        line-height: 2;
        margin-bottom: 7px; }
      .p-form-main__blk .-atn {
        position: absolute;
        bottom: -30px;
        font-size: 16px;
        letter-spacing: 0.05em;
        line-height: 1.63;
        color: #cc0000;
        visibility: hidden; }
        .p-form-main__blk .-atn.-inline {
          position: static;
          margin-left: 1em; }
      .p-form-main__blk .-note {
        font-size: 13px;
        letter-spacing: 0.05em;
        line-height: 2; }
      .p-form-main__blk .-add {
        width: 120px;
        height: 30px;
        cursor: pointer; }
      .p-form-main__blk.-required .-icon {
        color: #cc0000;
        border-color: #cc0000; }
      .p-form-main__blk.-error input[type="text"] {
        border-color: #cc0000; }
      .p-form-main__blk.-error .-atn {
        visibility: visible; }
    .p-form-main__submit {
      margin-top: 50px; }
      .p-form-main__submit--check {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 30px 50px;
        background: #fcf2f2; }
        .p-form-main__submit--check .-ttl {
          font-size: 20px;
          letter-spacing: 0.05em;
          line-height: 1.5;
          font-weight: 500;
          color: #cc0000; }
        .p-form-main__submit--check--list {
          display: flex;
          justify-content: center;
          font-size: 16px;
          letter-spacing: 0.05em;
          line-height: 1.63;
          flex-direction: column;
          width: 450px; }
          .p-form-main__submit--check--list .-list {
            cursor: pointer; }
            .p-form-main__submit--check--list .-list input {
              display: none; }
              .p-form-main__submit--check--list .-list input:checked + .-list_txt::before {
                background: url(../img/common/icon_check_red.svg) no-repeat center/cover; }
            .p-form-main__submit--check--list .-list_txt {
              display: flex;
              align-items: center;
              justify-content: flex-start;
              width: 100%; }
              .p-form-main__submit--check--list .-list_txt::before {
                content: '';
                display: block;
                width: 30px;
                height: 30px;
                background: #fff;
                border: 1px solid #fae5e5;
                margin-right: 1em; }
            .p-form-main__submit--check--list .-list:not(:first-of-type) {
              margin-top: 20px; }
      .p-form-main__submit--btn {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 500px;
        height: 70px;
        font-size: 22px;
        letter-spacing: 0.05em;
        line-height: 1.02;
        font-weight: 500;
        margin: 50px auto 0;
        border-radius: 100vw;
        cursor: pointer; }
        .p-form-main__submit--btn.-none {
          color: #fff;
          background: #ccc;
          border: none;
          pointer-events: none; }
          .p-form-main__submit--btn.-none::before {
            position: absolute;
            right: 20px;
            border-color: #fff; }
      .p-form-main__submit--back {
        margin: 40px auto 0; }
        .p-form-main__submit--back::before {
          position: absolute;
          left: 15px;
          transform: rotate(-135deg) translateY(50%); }
  .p-form .js-form-home {
    display: none; }
  .p-form .c-bg-wht {
    background: #fff; }
  .p-form.confirm input, .p-form.confirm textarea {
    color: #000;
    background: #fcf2f2 !important;
    pointer-events: none; }
    .p-form.confirm input::placeholder, .p-form.confirm textarea::placeholder {
      color: #000 !important; }
  .p-form.confirm label {
    pointer-events: none; }
  .p-form.confirm .-add {
    display: none; }
  .p-form-thanks {
    margin-top: 50px;
    margin-bottom: 90px;
    padding: 70px 100px;
    background: #fff;
    border-radius: 20px; }
    .p-form-thanks__number {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      width: 600px;
      height: 150px;
      font-weight: 500;
      text-align: center;
      margin: 0 auto;
      color: #cc0000;
      background: #fcf2f2;
      border-radius: 10px; }
      .p-form-thanks__number .-ttl {
        font-size: 18px;
        letter-spacing: 0.05em;
        line-height: 1.67; }
      .p-form-thanks__number .-no {
        font-size: 40px;
        letter-spacing: 0.05em;
        line-height: 1; }
    .p-form-thanks__txt {
      margin-top: 40px;
      text-align: center; }
  .p-form-back {
    margin: 90px auto; }

@media only screen and (max-width: 834px) {
  .p-form-fv {
    padding-top: calc(50/375*100vw); }
    .p-form-fv__step {
      margin-top: calc(20/375*100vw); }
      .p-form-fv__step--icon {
        width: calc(80/375*100vw); }
      .p-form-fv__step--line {
        width: calc(25/375*100vw);
        margin: 0 calc(5/375*100vw); }
    .p-form-fv__note {
      font-size: calc(16/375*100vw);
      letter-spacing: 0.05em;
      line-height: 1.38;
      margin-top: calc(40/375*100vw);
      padding: calc(15/375*100vw);
      border-radius: calc(15/375*100vw); }
  .p-form-main {
    margin-top: calc(30/375*100vw);
    margin-bottom: calc(40/375*100vw);
    padding: 0 calc(15/375*100vw) calc(50/375*100vw);
    border-radius: calc(10/375*100vw); }
    .p-form-main__wrap {
      padding: calc(30/375*100vw) 0 calc(10/375*100vw); }
    .p-form-main__blk {
      display: block;
      padding-top: calc(5/375*100vw);
      padding-bottom: calc(30/375*100vw); }
      .p-form-main__blk dt {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-right: 0;
        padding-top: 0;
        margin-bottom: calc(10/375*100vw); }
      .p-form-main__blk input.short {
        width: calc(60/375*100vw);
        margin-right: calc(15/375*100vw); }
      .p-form-main__blk input.zip {
        width: calc(120/375*100vw);
        margin-right: calc(15/375*100vw); }
      .p-form-main__blk input.full:not(:first-of-type) {
        margin-top: calc(7/375*100vw); }
      .p-form-main__blk input[type="text"] {
        font-size: calc(16/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1.5;
        padding: calc(10/375*100vw);
        border-radius: calc(5/375*100vw); }
      .p-form-main__blk input[type="radio"] {
        width: calc(25/375*100vw);
        height: calc(25/375*100vw);
        margin-right: calc(5/375*100vw); }
      .p-form-main__blk textarea {
        height: calc(140/375*100vw);
        font-size: calc(14/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1.71;
        padding: calc(15/375*100vw);
        border-radius: calc(5/375*100vw); }
      .p-form-main__blk .-icon {
        width: calc(50/375*100vw);
        height: calc(24/375*100vw); }
      .p-form-main__blk .-file {
        flex-wrap: wrap; }
        .p-form-main__blk .-file .file-btn {
          width: 100%; }
        .p-form-main__blk .-file .file-select {
          margin-left: 0; }
      .p-form-main__blk .-radio {
        margin-right: calc(20/375*100vw);
        font-size: calc(13/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1.54; }
        .p-form-main__blk .-radio + .-radio {
          margin-right: 0; }
        .p-form-main__blk .-radio + .-atn {
          margin-left: 0; }
      .p-form-main__blk .-txt {
        font-size: calc(14/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1.71;
        text-indent: -1em;
        margin: calc(20/375*100vw) 0 calc(10/375*100vw) 1em; }
        .p-form-main__blk .-txt i {
          font-size: 14px;
          letter-spacing: 0.05em;
          line-height: 2;
          color: #cc0000; }
      .p-form-main__blk .-note {
        font-size: calc(11/375*100vw);
        letter-spacing: 0.05em;
        line-height: 2.36;
        margin-top: calc(7/375*100vw); }
      .p-form-main__blk .-atn {
        bottom: calc(-26/375*100vw);
        font-size: calc(14/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1.86; }
      .p-form-main__blk .-note {
        font-size: calc(11/375*100vw);
        letter-spacing: 0.02em;
        line-height: 1.64; }
      .p-form-main__blk .-add {
        width: calc(120/375*100vw);
        height: calc(30/375*100vw); }
    .p-form-main__submit {
      margin-top: calc(30/375*100vw); }
      .p-form-main__submit--check {
        display: block;
        padding: calc(20/375*100vw); }
        .p-form-main__submit--check .-ttl {
          font-size: calc(16/375*100vw);
          letter-spacing: 0.05em;
          line-height: 1.88;
          text-align: center; }
        .p-form-main__submit--check--list {
          font-size: calc(14/375*100vw);
          letter-spacing: 0.05em;
          line-height: 1.57;
          width: 100%; }
          .p-form-main__submit--check--list .-list_txt {
            align-items: flex-start; }
            .p-form-main__submit--check--list .-list_txt::before {
              flex-shrink: 0;
              width: calc(30/375*100vw);
              height: calc(30/375*100vw); }
          .p-form-main__submit--check--list .-list:not(:first-of-type) {
            margin-top: calc(20/375*100vw); }
      .p-form-main__submit--btn {
        width: 100%;
        height: calc(50/375*100vw);
        font-size: calc(16/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1.2;
        margin: calc(50/375*100vw) auto 0; }
  .p-form-thanks {
    margin-top: calc(30/375*100vw);
    margin-bottom: 0;
    padding: calc(35/375*100vw) calc(15/375*100vw);
    border-radius: calc(10/375*100vw); }
    .p-form-thanks__number {
      width: calc(280/375*100vw);
      height: calc(120/375*100vw);
      border-radius: calc(10/375*100vw); }
      .p-form-thanks__number .-ttl {
        font-size: calc(16/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1.88; }
      .p-form-thanks__number .-no {
        font-size: calc(36/375*100vw);
        letter-spacing: 0.05em;
        line-height: 1; }
    .p-form-thanks__txt {
      margin-top: calc(25/375*100vw); }
  .p-form-back {
    margin: calc(45/375*100vw) auto; } }
@media only screen and (min-width: 835px) {
  .p-404 {
    background: #ededed; }
    .p-404__inr {
      padding: 80px 0 100px;
      text-align: center; }
    .p-404__ttl {
      font-size: 10rem;
      font-weight: 500;
      line-height: 1.2; }
      .p-404__ttl__small {
        font-size: 2.4rem;
        display: block;
        margin-top: -5px; }
    .p-404__subttl {
      font-size: 2.4rem;
      font-weight: 500;
      margin: 70px 0 35px; }
      .p-404__subttl .en {
        font-size: 1.8rem;
        margin-top: 5px; }
    .p-404__txt {
      line-height: 2; }
      .p-404__txt .en {
        font-size: 1.6rem;
        line-height: 1.75;
        margin-top: 10px; }
    .p-404__img {
      width: 220px;
      margin: 50px auto 70px; }
    .p-404__wrap {
      display: flex;
      justify-content: space-between;
      width: 595px;
      margin: 0 auto; }
    .p-404__link {
      margin: 0 auto; } }
@media only screen and (max-width: 834px) {
  .p-404__inr {
    padding: calc(85/375*100vw) 0 calc(100/375*100vw);
    text-align: center; }
  .p-404__ttl {
    font-size: calc(56/375*100vw);
    font-weight: 500;
    line-height: 1.2; }
    .p-404__ttl__small {
      font-size: calc(14/375*100vw);
      display: block; }
  .p-404__subttl {
    font-size: calc(18/375*100vw);
    font-weight: 500;
    margin: calc(30/375*100vw) 0 calc(25/375*100vw); }
    .p-404__subttl .en {
      font-size: calc(14/375*100vw);
      margin-top: 5px; }
  .p-404__txt {
    line-height: 2; }
    .p-404__txt .en {
      font-size: 1.4rem;
      line-height: 1.7;
      margin-top: 10px; }
  .p-404__wrap {
    width: auto; }
  .p-404__img {
    width: calc(160/375*100vw);
    margin: calc(30/375*100vw) auto calc(40/375*100vw); }
  .p-404__link {
    margin: calc(20/375*100vw) auto; } }
.p-overall-review {
  padding: calc(72/375*100vw) 0 calc(35/375*100vw);
  padding: 86px 0 110px; }

@media only screen and (max-width: 834px) {
  .p-overall-review {
    padding: calc(72/375*100vw) 0 calc(35/375*100vw); } }
.u-mt10 {
  margin-top: 10px; }

.u-mt20 {
  margin-top: 20px; }

.u-mt30 {
  margin-top: 30px; }

.u-mt40 {
  margin-top: 40px; }

.u-mt50 {
  margin-top: 50px; }

.u-mt60 {
  margin-top: 60px; }

.u-mt70 {
  margin-top: 70px; }

.u-mt80 {
  margin-top: 80px; }

.u-mt90 {
  margin-top: 90px; }

.u-mt100 {
  margin-top: 100px; }

.u-tal {
  text-align: left; }

.u-tac {
  text-align: center; }

.u-tar {
  text-align: right; }

@media only screen and (max-width: 834px) {
  .u-mt10 {
    margin-top: 10px; }

  .u-mt20 {
    margin-top: 10px; }

  .u-mt30 {
    margin-top: 13px; }

  .u-mt40 {
    margin-top: 20px; }

  .u-mt50 {
    margin-top: 20px; }

  .u-mt60 {
    margin-top: 30px; }

  .u-mt70 {
    margin-top: 30px; }

  .u-mt80 {
    margin-top: 35px; }

  .u-mt90 {
    margin-top: 45px; }

  .u-mt100 {
    margin-top: 60px; } }

/*# sourceMappingURL=style.css.map */
