@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  /*display: none;*/
}

.slick-arrow.slick-hidden:before {
  color: #cccccc;
  opacity: 1;
  cursor: default;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../images/fonts/slick.eot");
  src: url("../images/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../images/fonts/slick.woff") format("woff"), url("../images/fonts/slick.ttf") format("truetype"), url("../images/fonts/slick.svg#slick") format("svg");
}
/************************ Arrows ************************/
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  z-index: 100;
  display: block;
  width: 45px;
  height: 45px;
  margin-top: -23px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slick-prev:hover,
.slick-next:hover {
  background: #e86b6a;
}
.slick-prev.slick-hidden,
.slick-next.slick-hidden {
  display: none;
}

.slick-prev:before,
.slick-next:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.slick-prev:before {
  left: 50%;
  margin-left: -4px;
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
}

.slick-next:before {
  right: 50%;
  margin-right: -4px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.slick-prev {
  left: -30px;
}

[dir=rtl] .slick-prev {
  right: -30px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -30px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -30px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/************************ Dots ************************/
.slick-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: block;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  display: inline-block;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  overflow: hidden;
  white-space: nowrap;
  text-indent: -99999px;
  font-size: 0;
  display: block;
  padding: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  border: 0;
  background: #eeeeee;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  background: #e86b6a;
}

.slick-dots li.slick-active button {
  background: #e86b6a;
}

/* メインビジュアル */
.p-main-visual {
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
  max-height: 870px;
  overflow: hidden;
  --imgWidth: 1500;
  --imgHeight: 726;
  --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
}
@media screen and (max-width: 1920px) {
  .p-main-visual {
    --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
    max-height: var(--imgShowHeight);
  }
}
@media only screen and (max-width: 767px) {
  .p-main-visual {
    --imgWidth: 750;
    --imgHeight: 1200;
    --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
    --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
    max-height: var(--imgShowHeight);
  }
}
.p-main-visual .slick-prev {
  left: 60px;
}
.p-main-visual .slick-next {
  right: 60px;
}

.p-main-visual-link {
  position: relative;
}

.p-main-visual__img {
  position: relative;
}
.p-main-visual__img img {
  width: 100%;
}

.p-main-visual-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.p-main-visual-txt::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.p-main-visual-txt__ttl {
  position: relative;
  z-index: 100;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1023px) {
  .p-main-visual-txt__ttl {
    margin-bottom: 0;
  }
}

.p-main-visual-txt__ttl-main {
  display: block;
  padding-bottom: 15px;
  font-size: 4.5rem;
  font-weight: 200;
  color: #ffffff;
}
@media screen and (max-width: 1023px) {
  .p-main-visual-txt__ttl-main {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-main-visual-txt__ttl-main {
    padding-bottom: 10px;
    font-size: 1.875rem;
  }
}

.p-main-visual-txt__ttl-sub {
  display: block;
  font-size: 1.3125rem;
  font-weight: normal;
  color: #ffffff;
  text-shadow: 1px 1px 1px #000000;
}
@media screen and (max-width: 1023px) {
  .p-main-visual-txt__ttl-sub {
    font-size: 0.875rem;
  }
}

.slide-animation .p-main-visual__img img {
  -webkit-animation: zoom-in ease 7s forwards;
          animation: zoom-in ease 7s forwards;
}

@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.p-main-visual-wrap {
  opacity: 0;
}
.p-main-visual-wrap.slick-initialized {
  -webkit-animation: fv-fade ease 1s forwards;
          animation: fv-fade ease 1s forwards;
}

@-webkit-keyframes fv-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fv-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/***** メインビジュアル コントロール *****/
.p-main-visual-control__item {
  position: absolute;
  top: 50%;
}
.p-main-visual-control__item.is-prev {
  left: 15px;
}
@media only screen and (max-width: 767px) {
  .p-main-visual-control__item.is-prev {
    left: 10px;
  }
}
.p-main-visual-control__item.is-next {
  right: 15px;
}
@media only screen and (max-width: 767px) {
  .p-main-visual-control__item.is-next {
    right: 10px;
  }
}

.p-main-visual-control__btn {
  overflow: hidden;
  white-space: nowrap;
  text-indent: -99999px;
  position: relative;
  width: 65px;
  height: 65px;
  border: 0;
  background: transparent;
}
@media only screen and (max-width: 767px) {
  .p-main-visual-control__btn {
    width: 45px;
    height: 45px;
  }
}
.p-main-visual-control__btn:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -7px;
  width: 40px;
  height: 40px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media only screen and (max-width: 767px) {
  .p-main-visual-control__btn:before {
    margin-top: -13px;
    margin-left: -7px;
    width: 25px;
    height: 25px;
  }
}
.p-main-visual-control__btn.is-next:before {
  left: auto;
  right: 50%;
  margin-left: 0;
  margin-right: -7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-main-visual-bg {
  background: #f5f5f5;
  overflow: hidden;
  width: 100%;
  max-height: 870px;
  --imgWidth: 1500;
  --imgHeight: 756;
  --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
  --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
  height: var(--imgShowHeight);
}
@media only screen and (max-width: 1530px) {
  .p-main-visual-bg {
    --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
    max-height: var(--imgShowHeight);
    height: var(--imgShowHeight);
  }
}
@media only screen and (max-width: 767px) {
  .p-main-visual-bg {
    --imgWidth: 750;
    --imgHeight: 1200;
    --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
    --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
    max-height: var(--imgShowHeight);
    height: var(--imgShowHeight);
  }
}

/***** TOP Loading *****/
.p-loading-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  background: #ffffff;
}
.p-loading-overlay.is-loaded {
  -webkit-animation: loadingFade 0.5s ease forwards;
          animation: loadingFade 0.5s ease forwards;
}

.p-loading-overlay__logo {
  width: 280px;
  -webkit-animation: loadingLogo 0.5s ease forwards;
          animation: loadingLogo 0.5s ease forwards;
}
@media only screen and (max-width: 767px) {
  .p-loading-overlay__logo {
    width: 240px;
  }
}

@-webkit-keyframes loadingLogo {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes loadingLogo {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes loadingFade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes loadingFade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.p-loading-overlay__circle,
.p-loading-overlay__circle:after {
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

.p-loading-overlay__circle {
  position: relative;
  margin-top: 45px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-left: 1px solid #000000;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: loadingCircle 1.1s infinite linear;
          animation: loadingCircle 1.1s infinite linear;
}

@-webkit-keyframes loadingCircle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loadingCircle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/***** TOP TOPICS *****/
.p-top-topics {
  position: relative;
}
.p-top-topics * {
  min-width: 0;
  min-height: 0;
}
@media screen and (max-width: 1023px) {
  .p-top-topics .slick-prev, .p-top-topics .slick-next {
    top: -25px;
  }
}

.p-top-topics-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -75px;
  padding: 15px 15px 15px 30px;
  height: 75px;
  background: #ffffff;
}
@media screen and (max-width: 1023px) {
  .p-top-topics-wrap {
    display: block;
    margin-top: 0;
    margin-left: -15px;
    margin-right: -15px;
    padding: 15px 15px 25px 15px;
    height: auto;
  }
}

.p-top-topics__ttl {
  margin-right: 30px;
  font-size: 1.125rem;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .p-top-topics__ttl {
    margin-right: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.p-top-topics-list {
  opacity: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-topics-list.slick-initialized {
  -webkit-animation: topics-fade ease 1s forwards;
          animation: topics-fade ease 1s forwards;
}

@-webkit-keyframes topics-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes topics-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-top-topics-list__item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.875rem;
}
@media screen and (max-width: 1023px) {
  .p-top-topics-list__item {
    display: block !important;
    font-size: 0.75rem;
  }
}
.p-top-topics-list__item a {
  color: #000000;
}

.p-top-topics-list__date {
  margin-right: 30px;
  color: #444444;
}
@media screen and (max-width: 1023px) {
  .p-top-topics-list__date {
    margin-top: 5px;
    margin-right: 0;
  }
}

.p-top-topics-list__ttl {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 120px;
}
@media screen and (max-width: 1023px) {
  .p-top-topics-list__ttl {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    margin-right: 0;
  }
}

/***** TOP ABOUT *****/
@media only screen and (max-width: 767px) {
  .p-top-about-main-wrap {
    padding-bottom: 60px;
  }
}

.p-top-about-main__copy {
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 200;
  color: #696969;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-top-about-main__copy {
    font-size: 0.75rem;
  }
}

.p-top-about-main__ttl {
  margin-bottom: 20px;
  font-size: 1.875rem;
  font-weight: normal;
  color: #000000;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-top-about-main__ttl {
    font-size: 1.25rem;
  }
}

.p-top-about-main__body {
  line-height: 2.5;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-top-about-main__body {
    text-align: left;
  }
}

.p-top-about-bg {
  margin-bottom: 150px;
  width: 100%;
  height: 450px;
  background: url(../images/top-about-bg.jpg) no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
}
@media only screen and (max-width: 1530px) {
  .p-top-about-bg {
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-about-bg {
    margin-bottom: 20px;
    height: 240px;
    background-attachment: scroll;
  }
}

.p-top-about-concept {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
}
@media screen and (max-width: 1023px) {
  .p-top-about-concept {
    max-width: inherit;
  }
}

.p-top-about-concept__txt {
  position: absolute;
  top: 50%;
  right: 10vw;
  z-index: 10;
  padding: 45px 60px;
  width: 40%;
  background: #ffffff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 1530px) {
  .p-top-about-concept__txt {
    right: 60px;
    width: 595px;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-about-concept__txt {
    position: static;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 30px 20px;
    width: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-top-about-concept__ttl {
  margin-bottom: 10px;
  line-height: 2;
  font-size: 1.3125rem;
  font-weight: normal;
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .p-top-about-concept__ttl {
    line-height: 1.75;
    font-size: 1.125rem;
    text-align: center;
  }
}

.p-top-about-concept__body {
  line-height: 2;
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-top-about-concept__body {
    font-size: 0.875rem;
  }
}

.p-top-about-concept__btn {
  margin-top: 30px;
}
@media screen and (max-width: 1023px) {
  .p-top-about-concept__btn {
    text-align: center;
  }
}

.p-top-about-concept__img {
  width: 65%;
}
@media screen and (max-width: 1023px) {
  .p-top-about-concept__img {
    width: 100%;
  }
}

/***** TOP BUSINESS *****/
.p-top-business {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.p-top-business .c-ttl-main {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .p-top-business .c-ttl-main {
    margin-bottom: 60px;
  }
}

.p-top-business-in {
  position: relative;
}

.p-top-business-list {
  position: relative;
}
.p-top-business-list .slick-prev, .p-top-business-list .slick-next {
  top: -80px;
}
@media only screen and (max-width: 767px) {
  .p-top-business-list .slick-prev, .p-top-business-list .slick-next {
    top: -40px;
  }
}
.p-top-business-list .slick-list {
  margin-left: calc(50% - 47vw);
  margin-right: calc(50% - 47vw);
  width: 94vw;
}
@media screen and (min-width: 1560px) {
  .p-top-business-list .slick-list {
    margin-left: -150px;
    margin-right: auto;
    width: 1500px;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-business-list .slick-list {
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
  }
}

.p-top-business-list__item {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 1023px) {
  .p-top-business-list__item {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.p-top-business-list__ttl {
  margin-top: 30px;
  font-size: 1.125rem;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .p-top-business-list__ttl {
    font-size: 1.125rem;
  }
}

.p-top-business-list__body {
  margin-top: 10px;
  font-size: 0.875rem;
}
@media only screen and (max-width: 767px) {
  .p-top-business-list__body {
    font-size: 0.75rem;
  }
}

/***** TOP WORLD *****/
.p-top-world {
  overflow: hidden;
}

.p-top-world__body {
  margin-bottom: 45px;
}
@media only screen and (max-width: 767px) {
  .p-top-world__body {
    margin-bottom: 30px;
  }
}

.p-top-world__img {
  padding: 60px;
  background: #f5f5f5;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-top-world__img {
    padding: 45px 20px;
  }
}
.p-top-world__img img {
  max-width: 1200px;
}

.p-top-world-bg {
  width: 100%;
  height: 450px;
  background: url(../images/top-world-bg.jpg) no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
}
@media only screen and (max-width: 1530px) {
  .p-top-world-bg {
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-world-bg {
    height: 240px;
    background-attachment: scroll;
  }
}

/***** TOP MAGAZINE *****/
.p-top-magazine {
  overflow: hidden;
}
.p-top-magazine .c-ttl-main {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .p-top-magazine .c-ttl-main {
    margin-bottom: 45px;
  }
}

@media screen and (max-width: 1023px) {
  .p-top-magazine-in {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-magazine-in {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-top-magazine-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: calc(50% - 47vw);
  margin-right: calc(50% - 47vw);
  width: 98vw;
}
@media screen and (min-width: 1560px) {
  .p-top-magazine-wrap {
    margin-left: -150px;
    margin-right: auto;
    width: 1500px;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-magazine-wrap {
    display: block;
    margin-left: 0;
    margin-right: 0;
    width: auto;
  }
}

.p-top-magazine-latest {
  padding-left: 22px;
  padding-right: 22px;
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .p-top-magazine-latest {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 680px;
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}

.p-top-magazine-latest__ttl {
  margin-top: 30px;
  font-size: 1.3125rem;
}
@media only screen and (max-width: 767px) {
  .p-top-magazine-latest__ttl {
    margin-top: 20px;
    font-size: 1.125rem;
  }
}

.p-top-magazine-latest__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  font-size: 0.75rem;
  color: #696969;
}
@media only screen and (max-width: 767px) {
  .p-top-magazine-latest__head {
    margin-top: 5px;
  }
}

.p-top-magazine-latest__category {
  margin-left: 10px;
}

.p-top-magazine-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -22px;
  margin-right: -22px;
  padding-left: 22px;
  padding-right: 22px;
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .p-top-magazine-list {
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}

.p-top-magazine-list__item {
  margin-bottom: 30px;
  padding-left: 22px;
  padding-right: 22px;
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .p-top-magazine-list__item {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.p-top-magazine-list__item:first-child {
  display: none;
}

.p-top-magazine-list__ttl {
  margin-top: 15px;
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-top-magazine-list__ttl {
    margin-top: 10px;
    font-size: 0.875rem;
  }
}

.p-top-magazine-list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  font-size: 0.75rem;
  color: #696969;
}
@media only screen and (max-width: 767px) {
  .p-top-magazine-list__head {
    display: block;
    font-size: 0.625rem;
  }
}

.p-top-magazine-list__category {
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .p-top-magazine-list__category {
    margin-left: 0;
  }
}

/***** TOP 動画 *****/
.p-top-video {
  padding-bottom: 0;
}

/***** TOP other *****/
.p-top-other {
  margin-top: 120px;
  padding-top: 90px;
  padding-bottom: 90px;
  background: url(../images/top-other-bg.jpg) no-repeat center bottom #f5f5f5;
}
@media only screen and (max-width: 767px) {
  .p-top-other {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-size: 150%;
  }
}

.p-top-other__copy {
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 200;
  color: #696969;
  text-align: center;
}

.p-top-other__ttl {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: normal;
  color: #000000;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-top-other__ttl {
    font-size: 1.125rem;
  }
}

.p-top-other__body {
  font-size: 1rem;
  line-height: 2.5;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-top-other__body {
    line-height: 2;
    font-size: 0.875rem;
    text-align: left;
  }
}