@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Noto+Sans+JP:wght@400;700&display=swap");
/*------------------------------------------------------------
  ベース
------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #222;
  font-size: 1.6rem;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: none;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: #222;
  text-decoration: none;
  transition: all 0.5s 0s ease;
}
@media screen and (min-width: 801px) {
  a:hover {
    opacity: 0.65;
    color: inherit;
  }
}

@media screen and (min-width: 801px) {
  button {
    cursor: pointer;
  }
  button:hover {
    opacity: 0.65;
  }
}

input,
select,
button {
  font-family: inherit;
  outline: none;
  font-size: 1.6rem;
}
@media screen and (max-width: 800px) {
  input,
select,
button {
    font-size: 1.4rem;
  }
}

::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #999;
}

:placeholder-shown {
  color: #999;
}

sup {
  vertical-align: super;
  font-size: 66.6%;
}

/*------------------------------------------------------------
  コーポレートサイトのcssに対して
------------------------------------------------------------*/
header .header {
  position: relative !important;
}
@media screen and (min-width: 1101px) {
  header .header {
    overflow: hidden;
  }
}
header .pc-search__button img {
  vertical-align: inherit;
}

/*------------------------------------------------------------------------------------------
  構造
------------------------------------------------------------------------------------------*/
.l-header {
  width: 100%;
  background-color: #EDF3F8;
  height: 130px;
}
@media screen and (min-width: 1101px) {
  .l-header.-scroll {
    height: 100px;
  }
}
.l-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.l-header__inner__logo {
  width: 200px;
}
.l-header__inner__navigation.is-pc {
  display: block;
}
.l-header__inner__navigation.is-sp {
  display: none;
}
.l-header__inner__share.is-sp {
  display: none;
}
@media screen and (max-width: 1280px) {
  .l-header__inner {
    padding: 0 8px;
  }
}
@media screen and (max-width: 1100px) {
  .l-header {
    height: 72px;
  }
  .l-header__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    max-width: 100%;
  }
  .l-header__inner__logo {
    width: 200px;
    order: 1;
  }
  .l-header__inner__navigation {
    order: 0;
  }
  .l-header__inner__navigation.is-pc {
    display: none;
  }
  .l-header__inner__navigation.is-sp {
    display: block;
  }
  .l-header__inner__navigation .sp-category-button {
    text-align: center;
    position: absolute;
    padding-top: 4px;
    width: 58px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    top: 15px;
    left: 14px;
  }
  .l-header__inner__navigation .sp-category-button .ico {
    display: block;
    padding-top: 3px;
  }
  .l-header__inner__navigation .sp-category-button .ico span {
    margin: 0 auto 4px auto;
    display: block;
    width: 20px;
    height: 2px;
    background-color: #222;
  }
  .l-header__inner__navigation .sp-category-button .txt {
    display: block;
    font-size: 1rem;
    font-weight: bold;
  }
  .l-header__inner__navigation .sp-category-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #EDF3F8;
    z-index: 1000;
  }
  .l-header__inner__navigation .sp-category-nav.-active {
    display: flex;
    padding: 0 40px;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
  }
  .l-header__inner__navigation .sp-category-nav.-active > li {
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .l-header__inner__navigation .sp-category-nav.-active > li > a {
    display: block;
    padding-bottom: 6px;
    border-bottom: 8px #000 solid;
  }
  .l-header__inner__navigation .sp-category-nav.-active > li > a.is-category-sky {
    border-color: #00A1C2;
  }
  .l-header__inner__navigation .sp-category-nav.-active > li > a.is-category-pink {
    border-color: #CF6868;
  }
  .l-header__inner__navigation .sp-category-nav.-active > li > a.is-category-green {
    border-color: #449F56;
  }
  .l-header__inner__navigation .sp-category-nav.-active > li > a.is-category-orange {
    border-color: #C79306;
  }
  .l-header__inner__share {
    order: 2;
  }
  .l-header__inner__share.is-sp {
    display: block;
  }
  .l-header__inner__share .sp-share-button {
    position: absolute;
    padding-top: 4px;
    text-align: center;
    width: 58px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    top: 15px;
    right: 14px;
  }
  .l-header__inner__share .sp-share-button .ico {
    display: block;
    margin: 0 auto;
  }
  .l-header__inner__share .sp-share-button .txt {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 2px;
  }
  .l-header__inner__share .sp-share-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #EDF3F8;
    z-index: 1000;
  }
  .l-header__inner__share .sp-share-nav.-active {
    display: flex;
    padding: 0 40px;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .l-header__inner__share .sp-share-nav.-active .txt {
    margin-bottom: 24px;
    font-size: 3.2rem;
    font-weight: bold;
  }
}
.l-header + .l-main {
  margin-top: 0;
}

.l-main {
  position: relative;
}

.l-pankuzu {
  background: transparent url("/connect/assets/img/common/bg_slash.png") left top repeat;
  background-size: 10px 10px;
  padding: 4px 0;
}
.l-pankuzu ul {
  font-size: 0;
}
.l-pankuzu ul > li {
  display: inline-block;
  font-size: 1.2rem;
}
.l-pankuzu ul > li + li::before {
  display: inline-block;
  content: ">";
  margin: 0 1em;
}
@media screen and (max-width: 1100px) {
  .l-pankuzu {
    padding: 1px 0 2px 0;
    width: 100%;
    overflow-x: scroll;
  }
  .l-pankuzu ul {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 8px;
  }
  .l-pankuzu ul > li {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1100px) {
  .l-main {
    overflow-x: hidden;
  }
}

@media screen and (min-width: 1101px) {
  .l-pankuzu + main .l-main {
    margin-top: 0;
  }
}

.l-footer {
  padding-top: 8px;
  background-color: #EDF3F8;
}
.l-footer__logo {
  margin: 16px 0 -2px 0;
}
@media screen and (max-width: 1100px) {
  .l-footer__logo {
    margin: 8px 0 -1px 0;
  }
}

.c-bg-slash-top {
  background: transparent url("/connect/assets/img/common/bg_slash.png") left top repeat-x;
  background-size: 10px 10px;
  padding-top: 90px;
}

.c-bg-slash-bottom {
  background: transparent url("/connect/assets/img/common/bg_slash.png") left bottom repeat-x;
  background-size: 10px 10px;
  padding-bottom: 90px;
}

.l-article-section {
  padding: 80px 0 120px 0;
  position: relative;
}
.l-article-section__header {
  position: relative;
}
.l-article-section__header__title .heading .number {
  font-size: 2.4rem;
  margin-left: 0.75em;
}
.l-article-section__header__title .decorate {
  position: absolute;
  right: 0;
  top: -120px;
}
.l-article-section__header__title .decorate .cloud {
  width: 400px;
  height: 129px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  text-align: center;
}
.l-article-section__header__title .decorate .cloud.is-category-sky {
  background-image: url("/connect/assets/img/common/bg_cloud-sky.svg");
}
.l-article-section__header__title .decorate .cloud.is-category-pink {
  background-image: url("/connect/assets/img/common/bg_cloud-pink.svg");
}
.l-article-section__header__title .decorate .cloud.is-category-green {
  background-image: url("/connect/assets/img/common/bg_cloud-green.svg");
}
.l-article-section__header__title .decorate .cloud.is-category-orange {
  background-image: url("/connect/assets/img/common/bg_cloud-orange.svg");
}
.l-article-section__header__title .decorate .cloud.is-category-rainbow {
  background-image: url("/connect/assets/img/common/bg_cloud-rainbow.svg");
}
.l-article-section__list {
  margin: 40px auto;
}
.l-article-section__decorate {
  width: 100%;
}
.l-article-section__decorate::before, .l-article-section__decorate::after {
  white-space: nowrap;
  position: absolute;
  display: block;
  width: 100%;
  overflow: hidden;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 9.6rem;
  opacity: 0.24;
  pointer-events: none;
  z-index: -1;
  line-height: 1;
}
.l-article-section__decorate::before {
  top: -17px;
  left: 0;
  text-align: left;
}
.l-article-section__decorate::after {
  bottom: -1px;
  right: 0;
  text-align: right;
}
.l-article-section__decorate.is-category-sky::before, .l-article-section__decorate.is-category-sky::after {
  text-shadow: 1px 1px 0 #00A1C2, -1px 1px 0 #00A1C2, -1px -1px 0 #00A1C2, 1px -1px 0 #00A1C2;
  content: "CHALLENGING CREATION AND INNOVATION";
}
.l-article-section__decorate.is-category-pink::before, .l-article-section__decorate.is-category-pink::after {
  text-shadow: 1px 1px 0 #CF6868, -1px 1px 0 #CF6868, -1px -1px 0 #CF6868, 1px -1px 0 #CF6868;
  content: "OUR THOUGHTS ON PRODUCTS, GOODS & SERVICES";
}
.l-article-section__decorate.is-category-green::before, .l-article-section__decorate.is-category-green::after {
  text-shadow: 1px 1px 0 #449F56, -1px 1px 0 #449F56, -1px -1px 0 #449F56, 1px -1px 0 #449F56;
  content: "SUSTAINABILITY";
}
.l-article-section__decorate.is-category-orange::before, .l-article-section__decorate.is-category-orange::after {
  text-shadow: 1px 1px 0 #C79306, -1px 1px 0 #C79306, -1px -1px 0 #C79306, 1px -1px 0 #C79306;
  content: "TRIVIA";
}
.l-article-section__decorate.is-category-tag::before, .l-article-section__decorate.is-category-tag::after {
  text-shadow: 1px 1px 0 #aaa, -1px 1px 0 #aaa, -1px -1px 0 #aaa, 1px -1px 0 #aaa;
  content: "TAGS";
}
.l-article-section__decorate.is-category-reccomend::before, .l-article-section__decorate.is-category-reccomend::after {
  text-shadow: 1px 1px 0 #aaa, -1px 1px 0 #aaa, -1px -1px 0 #aaa, 1px -1px 0 #aaa;
  content: "RECOMMEND";
}
@media screen and (max-width: 1100px) {
  .l-article-section {
    padding: 56px 32px 64px 32px;
  }
  .l-article-section__header__title .heading .number {
    font-size: 1.6rem;
  }
  .l-article-section__header__title .decorate {
    top: -60px;
  }
  .l-article-section__header__title .decorate .cloud {
    padding: 0 4px;
    width: 200px;
    height: 64.5px;
    font-size: 1.1rem;
  }
  .l-article-section__list {
    margin: 32px auto;
  }
  .l-article-section__decorate::before, .l-article-section__decorate::after {
    font-size: 4.8rem;
  }
  .l-article-section__decorate::before {
    top: -8px;
  }
  .l-article-section__decorate::after {
    bottom: 4px;
  }
}
@media screen and (max-width: 800px) {
  .l-article-section {
    padding-right: 16px;
    padding-left: 16px;
  }
  .l-article-section__header__title .decorate {
    right: -24px;
  }
  .l-article-section__list {
    margin: 24px auto;
  }
  .l-article-section__decorate::before, .l-article-section__decorate::after {
    font-size: 2.8rem;
  }
  .l-article-section__decorate::before {
    top: -4px;
  }
  .l-article-section__decorate::after {
    bottom: 7px;
  }
}

.l-article-detail {
  padding: 72px 0;
}
.l-article-detail__header {
  max-width: 960px;
  margin: 0 auto;
}
.l-article-detail__header__title .supplementary {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 24px 0;
}
.l-article-detail__header__title .supplementary .ico {
  display: flex;
  gap: 8px;
}
.l-article-detail__header__title .supplementary .dat {
  color: #aaa;
}
.l-article-detail__header__title .datenote {
  margin-top: -16px;
  font-size: 1.4rem;
  color: #999;
  text-align: right;
}
@media screen and (max-width: 1100px) {
  .l-article-detail {
    padding: 16px 12px 64px 12px;
  }
  .l-article-detail__header__title .supplementary {
    margin: 16px 0;
  }
  .l-article-detail__header__title .supplementary .ico {
    gap: 4px;
  }
  .l-article-detail__header__title .supplementary .dat {
    font-size: 1.2rem;
  }
  .l-article-detail__header__title .datenote {
    margin-top: -8px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 800px) {
  .l-article-detail__header__title .supplementary {
    flex-wrap: wrap;
  }
  .l-article-detail__header__title .supplementary .dat {
    width: 100%;
    text-align: right;
    margin-top: 8px;
  }
}

.l-article-link {
  width: 100%;
  position: relative;
  padding: 80px 0;
}
.l-article-link__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.l-article-link__inner__title {
  width: 220px;
}
.l-article-link__inner__title .title {
  font-size: 3.2rem;
  font-weight: bold;
}
.l-article-link__inner__detail {
  width: calc(100% - 220px);
}
.l-article-link__inner__decorate {
  background: transparent url("/connect/assets/img/common/bg_cloud-tag.svg") left top no-repeat;
  background-size: 100% auto;
  width: 200px;
  height: 120px;
  color: #fff;
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -8px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .l-article-link {
    padding: 72px 0 48px 0;
  }
  .l-article-link__inner__title {
    position: absolute;
    top: 20px;
    right: 16px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .l-article-link__inner__title .title {
    font-size: 2rem;
  }
  .l-article-link__inner__detail {
    width: 100%;
    padding: 0 16px;
  }
  .l-article-link__inner__decorate {
    width: 120px;
    height: 72px;
    font-size: 1.8rem;
    margin: -4px 0;
  }
}

.l-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.l-tag {
  display: flex;
  align-items: center;
}
.l-tag__title {
  background: transparent url("/connect/assets/img/common/bg_cloud-tag.svg") left top no-repeat;
  background-size: 100% auto;
  width: 200px;
  height: 120px;
  color: #fff;
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -8px 0;
  position: relative;
  z-index: 1;
  align-self: flex-start;
}
.l-tag__list {
  width: calc(100% - 280px);
  padding: 24px 16px;
}
.l-tag__button {
  padding: 16px 40px 16px 0;
  width: 80px;
}
@media screen and (max-width: 1100px) {
  .l-tag__title {
    width: 120px;
    height: 72px;
    font-size: 1.8rem;
    margin: -4px 0;
  }
  .l-tag__list {
    width: calc(100% - 168px);
    padding: 8px;
  }
  .l-tag__button {
    padding: 8px 8px 8px 0;
    width: 48px;
  }
}

/*------------------------------------------------------------------------------------------
  基本コンポーネント
------------------------------------------------------------------------------------------*/
@media screen and (min-width: 801px) {
  .only-pc {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .only-pc {
    display: none;
  }
}

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

.c-heading-lv1 {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.6;
}
.c-heading-lv1 .sub {
  font-size: 2.4rem;
  display: block;
  margin: 16px 0 0 0;
}
@media screen and (max-width: 1100px) {
  .c-heading-lv1 {
    font-size: 2.4rem;
  }
  .c-heading-lv1 .sub {
    font-size: 1.6rem;
    margin-top: 8px;
  }
}
@media screen and (max-width: 800px) {
  .c-heading-lv1 {
    font-size: 2rem;
  }
}

.c-heading-lv2 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 2px #222 solid;
  padding-bottom: 16px;
}
@media screen and (max-width: 800px) {
  .c-heading-lv2 {
    font-size: 1.8rem;
  }
}

.c-bg-light-sky {
  background-color: #EDF3F8;
}

.c-bg-white {
  background-color: #fff;
}

.c-font-en {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.c-logo {
  width: 320px;
  margin: 0 auto;
}
.c-logo .img {
  display: block;
}
.c-logo .img img {
  width: 100%;
  height: auto;
}
.c-logo .txt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
  padding: 0 0 1px 1.6%;
  width: 100%;
  aspect-ratio: 37/3;
  background: transparent url("/connect/assets/img/common/logo_line.svg") left top no-repeat;
  background-size: 100% auto;
  color: #fff;
  font-size: 1.38rem;
  text-align: center;
}
.c-logo.is-header {
  width: 200px;
}
.c-logo.is-header .txt {
  margin-top: 9px;
  padding: 1px 0 0 2.4%;
  font-size: 0.88rem;
}
@media screen and (max-width: 1100px) {
  .c-logo {
    width: 240px;
  }
  .c-logo .txt {
    margin-top: 11px;
    font-size: 1rem;
  }
  .c-logo.is-header {
    position: absolute;
    width: 124px;
    top: 13px;
    left: 50%;
    margin-left: -62px;
    z-index: 10;
  }
  .c-logo.is-header .txt {
    margin-top: 5px;
    font-size: 0.56rem;
  }
}
@media screen and (max-width: 640px) {
  .c-logo {
    width: 176px;
  }
  .c-logo .txt {
    margin-top: 9px;
    font-size: 0.78rem;
  }
}
@media screen and (max-width: 375px) {
  .c-logo {
    width: 160px;
  }
  .c-logo .txt {
    margin-top: 6px;
    padding-bottom: 0;
    font-size: 0.7rem;
  }
}

.c-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
}
.c-nav > li {
  font-size: 1.8rem;
  font-weight: bold;
}
.c-nav > li a {
  display: block;
  color: #222;
  border-bottom: 8px #ccc solid;
  padding: 0 0 4px 0;
}
.c-nav > li a.is-category-sky {
  border-color: #00A1C2;
}
.c-nav > li a.is-category-pink {
  border-color: #CF6868;
}
.c-nav > li a.is-category-green {
  border-color: #449F56;
}
.c-nav > li a.is-category-orange {
  border-color: #C79306;
}
@media screen and (max-width: 1100px) {
  .c-nav {
    gap: 12px 24px;
  }
  .c-nav > li {
    font-size: 1.3rem;
  }
  .c-nav > li a {
    border-bottom-width: 4px;
    padding: 0 0 2px 0;
  }
}

.c-article-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 55px;
}
.c-article-list > li {
  width: calc((100% - 110px) / 3);
}
.c-article-list > li .wrap .image {
  width: 100%;
  height: auto;
  aspect-ratio: 6/4;
  position: relative;
}
.c-article-list > li .wrap .image .category {
  position: absolute;
  left: 0;
  top: 0;
}
.c-article-list > li .wrap .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.c-article-list > li .wrap .image.is-category-sky {
  box-shadow: 8px 8px 0px #00A1C2;
}
.c-article-list > li .wrap .image.is-category-pink {
  box-shadow: 8px 8px 0px #CF6868;
}
.c-article-list > li .wrap .image.is-category-green {
  box-shadow: 8px 8px 0px #449F56;
}
.c-article-list > li .wrap .image.is-category-orange {
  box-shadow: 8px 8px 0px #C79306;
}
.c-article-list > li .wrap .date {
  margin-top: 4px;
  font-size: 1.3rem;
  color: #888;
}
.c-article-list > li .wrap .title {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 16px;
}
.c-article-list > li .tag {
  margin-top: 8px;
}
@media screen and (max-width: 1100px) {
  .c-article-list {
    gap: 32px;
  }
  .c-article-list.is-top, .c-article-list.is-recommend {
    justify-content: center;
  }
  .c-article-list > li {
    width: calc((100% - 64px) / 3);
  }
  .c-article-list > li .wrap .image.is-category-sky {
    box-shadow: 4px 4px 0px #00A1C2;
  }
  .c-article-list > li .wrap .image.is-category-pink {
    box-shadow: 4px 4px 0px #CF6868;
  }
  .c-article-list > li .wrap .image.is-category-green {
    box-shadow: 4px 4px 0px #449F56;
  }
  .c-article-list > li .wrap .image.is-category-orange {
    box-shadow: 4px 4px 0px #C79306;
  }
  .c-article-list > li .wrap .date {
    margin-top: 2px;
    font-size: 1.1rem;
  }
  .c-article-list > li .wrap .title {
    font-size: 1.4rem;
    margin-top: 8px;
  }
}
@media screen and (max-width: 800px) {
  .c-article-list {
    gap: 16px;
  }
  .c-article-list > li {
    width: calc((100% - 32px) / 3);
  }
  .c-article-list > li .wrap .title {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 480px) {
  .c-article-list > li {
    width: calc((100% - 16px) / 2);
  }
}

.c-related-links-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.c-related-links-list > li {
  width: calc((100% - 64px) / 3);
}
.c-related-links-list > li .wrap {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 16px;
  height: 100%;
  flex-direction: column;
}
.c-related-links-list > li .wrap .image {
  width: 100%;
  height: auto;
  aspect-ratio: 6/4;
}
.c-related-links-list > li .wrap .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.c-related-links-list > li .wrap .title {
  width: 100%;
  color: #222;
  font-weight: bold;
  margin-top: 8px;
}
@media screen and (max-width: 800px) {
  .c-related-links-list {
    gap: 8px;
  }
  .c-related-links-list > li {
    width: 100%;
  }
  .c-related-links-list > li .wrap {
    padding: 4px;
  }
  .c-related-links-list > li .wrap .image {
    width: 30%;
  }
  .c-related-links-list > li .wrap .title {
    width: calc(60% - 8px);
    margin-top: 4px;
    margin-left: 8px;
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

.c-sns {
  position: absolute;
  right: 72px;
  top: -16px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-content: flex-start;
  flex-wrap: wrap;
  width: 290px;
  height: 120px;
  background: transparent url("/connect/assets/img/common/bg_cloud-share.svg") left top no-repeat;
  padding-top: 16px;
  z-index: 10;
}
@media screen and (max-width: 1600px) {
  .c-sns {
    right: -32px;
  }
}
.c-sns__title {
  width: 100%;
  background: transparent url("/connect/assets/img/common/sns_share-bg.svg") center bottom no-repeat;
  background-size: 94px 14px;
  text-align: center;
  margin-bottom: 12px;
  line-height: 20px;
}
.c-sns__list {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  gap: 24px;
}
.c-sns__list > li {
  width: 48px;
}
.c-sns__list > li a {
  display: block;
}
.c-sns__list > li img {
  width: 100%;
  height: auto;
}
.c-sns__list.is-sp > li {
  width: 64px;
}
@media screen and (max-width: 1100px) {
  .c-sns {
    display: none;
  }
}

.c-dot-list {
  margin: 32px 0;
}
.c-dot-list > li {
  position: relative;
  padding-left: 1em;
}
.c-dot-list > li + li {
  margin-top: 16px;
}
.c-dot-list > li::before {
  content: "";
  display: block;
  background-color: #222;
  width: 6px;
  height: 6px;
  position: absolute;
  left: 2px;
  top: 14px;
}

.c-num-list {
  margin: 32px 0 32px 1em;
}
.c-num-list > li {
  position: relative;
  list-style-type: decimal;
}
.c-num-list > li::marker {
  display: block;
  position: absolute;
  left: 2px;
  top: 14px;
}
.c-num-list > li + li {
  margin-top: 16px;
}

.c-icon-button {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #222;
}

.c-button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 320px;
  height: 56px;
  border-radius: 56px;
  padding: 8px;
  margin: 0 auto;
}
.c-button .txt {
  font-size: 1.8rem;
  color: #222;
  font-weight: bold;
  width: calc(100% - 40px);
  text-align: center;
  padding: 0 4px 0 24px;
}
.c-button .ico {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
}
.c-button .ico img {
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 1100px) {
  .c-button .txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 800px) {
  .c-button {
    height: 44px;
    padding: 8px;
  }
  .c-button .ico {
    width: 34px;
    height: 34px;
    border-radius: 34px;
  }
}
.c-button.is-category-sky {
  background-color: rgba(0, 161, 194, 0.1);
}
.c-button.is-category-sky .ico {
  background-color: #00A1C2;
}
.c-button.is-category-pink {
  background-color: rgba(207, 104, 104, 0.1);
}
.c-button.is-category-pink .ico {
  background-color: #CF6868;
}
.c-button.is-category-orange {
  background-color: rgba(199, 147, 6, 0.1);
}
.c-button.is-category-orange .ico {
  background-color: #C79306;
}
.c-button.is-category-green {
  background-color: rgba(68, 159, 86, 0.1);
}
.c-button.is-category-green .ico {
  background-color: #449F56;
}
.c-button.is-category-gray {
  background-color: #F5F5F5;
}
.c-button.is-category-gray .ico {
  background-color: #aaa;
}

.c-tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.c-tag > li {
  line-height: 1;
}
.c-tag > li a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.4rem;
  padding: 4px 12px 6px 12px;
  background-color: #fff;
  color: #557094;
  border-radius: 24px;
}
.c-tag.is-gray {
  background-color: transparent !important;
}
.c-tag.is-gray > li a {
  background-color: #ededed;
}
@media screen and (max-width: 1100px) {
  .c-tag {
    gap: 8px 6px;
  }
  .c-tag > li a {
    font-size: 1rem;
    padding: 3px 8px 4px 8px;
  }
}

.c-category {
  display: block;
  color: #fff;
  background-color: #aaa;
  line-height: 1;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 4px 8px 6px 8px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.c-category.is-big {
  font-size: 1.4rem;
  padding: 8px 24px;
}
@media screen and (max-width: 1100px) {
  .c-category {
    font-size: 1rem;
    padding: 3px 6px 4px 6px;
  }
  .c-category.is-big {
    font-size: 1.2rem;
    padding: 4px 10px 5px 10px;
  }
}
.c-category.is-category-sky {
  background-color: #00A1C2;
}
.c-category.is-category-pink {
  background-color: #CF6868;
}
.c-category.is-category-green {
  background-color: #449F56;
}
.c-category.is-category-orange {
  background-color: #C79306;
}

@media screen and (max-width: 880px) {
  .p-top-news .c-category {
    font-size: 0.75rem;
    padding: 3px 4px 4px 4px;
  }
}

/*------------------------------------------------------------------------------------------
  個別ページ
------------------------------------------------------------------------------------------*/
.p-top__header__logo {
  padding: 40px 0;
}
.p-top__header__visual {
  padding: 0 0 76px 0;
  width: 100%;
  overflow: hidden;
}
.p-top__header__visual .swiper {
  overflow: visible !important;
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .p-top__header__visual .swiper {
    width: 100%;
  }
}
.p-top__header__visual .swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.p-top__header__visual .swiper .swiper-pagination-bullet-active {
  background-color: #222;
}
.p-top__header__visual .swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .p-top__header__visual .swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}
.p-top__header__visual .swiper .swiper-horizontal > .swiper-pagination-bullets, .p-top__header__visual .swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .p-top__header__visual .swiper .swiper-pagination-custom, .p-top__header__visual .swiper .swiper-pagination-fraction {
  bottom: -50px;
}
.p-top__header__visual .swiper .slide-button-next,
.p-top__header__visual .swiper .slide-button-prev {
  position: absolute;
  top: calc(50% - 16px);
  z-index: 100;
  margin-top: -20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top__header__visual .swiper .slide-button-next {
  right: 22.5%;
}
.p-top__header__visual .swiper .slide-button-prev {
  left: 22.5%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-top__header__visual .slide-item .wrap {
  display: block;
  position: relative;
}
.p-top__header__visual .slide-item .wrap .title {
  position: absolute;
  bottom: -22px;
  left: -8px;
  margin-top: 4px;
  width: 77.6315789474%;
}
.p-top__header__visual .slide-item .wrap .title .ico {
  margin-bottom: 4px;
  margin-left: -16px;
}
.p-top__header__visual .slide-item .wrap .title .txt {
  font-size: 2.4rem;
  font-weight: bold;
  display: inline;
  padding: 4px 10;
  position: relative;
  line-height: 1.9;
  -webkit-filter: drop-shadow(-16px 0px #fff);
          filter: drop-shadow(-16px 0px #fff);
}
.p-top__header__visual .slide-item .wrap .title .txt-inner {
  background-color: #fff;
  -webkit-filter: drop-shadow(16px 0px #fff);
          filter: drop-shadow(16px 0px #fff);
}
.p-top__header__visual .slide-item .wrap .image {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}
.p-top__header__visual .slide-item .wrap .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-top__header__visual .slide-item .tag {
  margin-top: 24px;
  margin-left: -24px;
}
.p-top__header__navigation {
  padding: 40px;
}
@media screen and (max-width: 1280px) {
  .p-top__header__visual {
    padding-bottom: 64px;
  }
  .p-top__header__visual .swiper {
    max-width: 100%;
  }
  .p-top__header__visual .swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
  .p-top__header__visual .swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .p-top__header__visual .swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
  }
  .p-top__header__visual .swiper .swiper-horizontal > .swiper-pagination-bullets, .p-top__header__visual .swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .p-top__header__visual .swiper .swiper-pagination-custom, .p-top__header__visual .swiper .swiper-pagination-fraction {
    bottom: -40px;
  }
  .p-top__header__visual .swiper .slide-button-next {
    right: 13.4375%;
  }
  .p-top__header__visual .swiper .slide-button-prev {
    left: 13.4375%;
  }
  .p-top__header__visual .slide-item .wrap .title .ico {
    margin-left: -8px;
  }
  .p-top__header__visual .slide-item .wrap .title .txt {
    font-size: 2rem;
    -webkit-filter: drop-shadow(-8px 0px #fff);
            filter: drop-shadow(-8px 0px #fff);
  }
  .p-top__header__visual .slide-item .wrap .title .txt-inner {
    -webkit-filter: drop-shadow(8px 0px #fff);
            filter: drop-shadow(8px 0px #fff);
  }
  .p-top__header__visual .slide-item .tag {
    margin-top: 27px;
    margin-left: -16px;
  }
}
@media screen and (max-width: 1100px) {
  .p-top__header__logo {
    padding: 24px 0;
  }
  .p-top__header__visual .swiper .slide-button-next {
    right: 12.2222222222%;
  }
  .p-top__header__visual .swiper .slide-button-prev {
    left: 12.2222222222%;
  }
  .p-top__header__visual .slide-item .tag {
    margin-top: 20px;
  }
  .p-top__header .slide-item .wrap .title {
    width: 87.5%;
    bottom: -16px;
  }
  .p-top__header .slide-item .wrap .title .txt {
    font-size: 1.6rem;
  }
  .p-top__header__navigation {
    padding: 24px;
  }
}
@media screen and (max-width: 640px) {
  .p-top__header__logo {
    padding: 22px 0 20px 0;
  }
  .p-top__header__visual {
    padding-bottom: 48px;
  }
  .p-top__header__visual .swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .p-top__header__visual .swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 20px;
  }
  .p-top__header__visual .swiper .swiper-horizontal > .swiper-pagination-bullets, .p-top__header__visual .swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .p-top__header__visual .swiper .swiper-pagination-custom, .p-top__header__visual .swiper .swiper-pagination-fraction {
    bottom: -35px;
  }
  .p-top__header__visual .swiper .slide-button-next,
.p-top__header__visual .swiper .slide-button-prev {
    margin-top: -36px;
  }
  .p-top__header__visual .swiper .slide-button-next {
    right: 11.09375%;
  }
  .p-top__header__visual .swiper .slide-button-prev {
    left: 11.09375%;
  }
  .p-top__header__visual .slide-item .tag {
    margin-top: 40px;
  }
  .p-top__header .slide-item .wrap .title {
    width: 93.75%;
    bottom: -36px;
  }
  .p-top__header .slide-item .wrap .title .txt {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 480px) {
  .p-top__header__visual .swiper .slide-button-next {
    right: 9.1666666667%;
  }
  .p-top__header__visual .swiper .slide-button-prev {
    left: 9.1666666667%;
  }
  .p-top__header__visual .slide-item .tag {
    margin-top: 44px;
  }
  .p-top__header .slide-item .wrap .title {
    bottom: -40px;
  }
  .p-top__header .slide-item .wrap .title .txt {
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .p-top__header__navigation {
    padding: 16px 8px;
  }
}
@media screen and (max-width: 375px) {
  .p-top__header__visual .swiper .slide-button-next {
    right: 8.6666666667%;
  }
  .p-top__header__visual .swiper .slide-button-prev {
    left: 8.6666666667%;
  }
  .p-top__header__visual .slide-item .tag {
    margin-top: 62px;
  }
  .p-top__header .slide-item .wrap .title {
    bottom: -56px;
  }
  .p-top__header .slide-item .wrap .title .ico {
    margin-left: -4px;
    margin-bottom: 2px;
  }
  .p-top__header .slide-item .wrap .title .txt {
    font-size: 1.3rem;
    line-height: 1.5;
    -webkit-filter: drop-shadow(-4px 0px #fff);
            filter: drop-shadow(-4px 0px #fff);
  }
  .p-top__header .slide-item .wrap .title .txt-inner {
    -webkit-filter: drop-shadow(4px 0px #fff);
            filter: drop-shadow(4px 0px #fff);
  }
}

.p-top-section {
  background: transparent url("/connect/assets/img/common/bg_slash.png") left bottom repeat-x;
  background-size: 10px 10px;
  padding-bottom: 10px;
}

.p-top-news {
  margin: 40px 0 64px 0;
}
.p-top-news__title {
  margin-bottom: 32px;
}
.p-top-news__title .title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.p-top-news__title .title-main {
  font-size: 3.6rem;
  font-weight: bold;
}
.p-top-news__title .title-sub {
  font-size: 1.8rem;
}
.p-top-news .swiper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 54px;
}
.p-top-news .swiper .slide-button-next,
.p-top-news .swiper .slide-button-prev {
  position: absolute;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background-color: #fff;
  height: 100%;
}
.p-top-news .swiper .slide-button-next .c-icon-button,
.p-top-news .swiper .slide-button-prev .c-icon-button {
  cursor: pointer;
}
.p-top-news .swiper .slide-button-next .c-icon-button.swiper-button-disabled,
.p-top-news .swiper .slide-button-prev .c-icon-button.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.2;
}
.p-top-news .swiper .slide-button-next {
  right: 0;
  padding-left: 14px;
}
.p-top-news .swiper .slide-button-prev {
  left: 0;
  padding-right: 14px;
}
.p-top-news .swiper .slide-button-prev .c-icon-button {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-top-news__list .news-item .wrap .image {
  width: 100%;
  height: auto;
  aspect-ratio: 6/4;
  position: relative;
}
.p-top-news__list .news-item .wrap .image .category {
  position: absolute;
  left: 0;
  top: 0;
}
.p-top-news__list .news-item .wrap .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.p-top-news__list .news-item .wrap .date {
  margin-top: 4px;
  font-size: 1.3rem;
  color: #888;
}
.p-top-news__list .news-item .wrap .title {
  font-weight: bold;
}
.p-top-news__list .news-item .tag {
  margin-top: 8px;
}
@media screen and (max-width: 1100px) {
  .p-top-news {
    margin: 24px 0 48px 0;
  }
  .p-top-news__title {
    margin-bottom: 24px;
  }
  .p-top-news__title .title-main {
    font-size: 2.4rem;
  }
  .p-top-news__title .title-sub {
    font-size: 1.2rem;
  }
  .p-top-news .swiper {
    padding: 0 52px;
  }
  .p-top-news .swiper .slide-button-next {
    right: 0;
    padding-left: 6px;
    padding-right: 6px;
  }
  .p-top-news .swiper .slide-button-prev {
    left: 0;
    padding-right: 6px;
    padding-left: 6px;
  }
  .p-top-news__list .news-item .wrap .date {
    margin-top: 2px;
    font-size: 1.1rem;
  }
  .p-top-news__list .news-item .wrap .title {
    font-size: 1.2rem;
  }
  .p-top-news__list .news-item .tag {
    margin-top: 4px;
  }
}

.p-detail {
  max-width: 960px;
  margin: 0 auto;
  line-height: 2;
}
.p-detail a {
  color: #0071BD;
  text-decoration: underline;
}
.p-detail a[target=_blank] {
  display: inline-block;
}
.p-detail a[target=_blank]::after {
  content: "";
  background: url("/assets/img/common/blue-blank-icon.png") center center no-repeat;
  background-size: 11px 8px;
  display: inline-block;
  width: 11px;
  height: 8px;
  margin: 0 4px 0 2px;
  vertical-align: middle;
}
.p-detail a.pdf, .p-detail a[href$=".pdf"] {
  display: inline-block;
}
.p-detail a.pdf::after, .p-detail a[href$=".pdf"]::after {
  content: "";
  background: url("/assets/img/common/pdf-icon.png") center center no-repeat;
  background-size: 14px 18px;
  display: inline-block;
  width: 14px;
  height: 18px;
  margin: -4px 4px 0 2px;
  vertical-align: middle;
}

.p-detail-mv {
  margin: 32px 0;
}
.p-detail-mv img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1100px) {
  .p-detail-mv {
    margin: 16px 0;
  }
}

.p-detail-manager {
  line-height: 1.8;
  margin: 32px 0;
  background: linear-gradient(to left, #EBFCEF 0%, #F9F4E5 50%, #FAEFEF 100%);
}
.p-detail-manager__header {
  margin-bottom: -27px;
}
.p-detail-manager__header .icon {
  background-color: #222;
  color: #fff;
  font-weight: bold;
  padding: 0 16px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  line-height: 27px;
  position: relative;
  z-index: 1;
}
.p-detail-manager__detail {
  padding: 4px;
}
.p-detail-manager__detail .manager-list {
  padding: 20px;
  border: 1px #fff solid;
}
.p-detail-manager__detail .manager-list > li {
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-detail-manager__detail .manager-list > li .photo {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  aspect-ratio: 1/1;
  margin-right: 16px;
}
.p-detail-manager__detail .manager-list > li .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  border-radius: 120px;
}
.p-detail-manager__detail .manager-list > li .text {
  width: 100%;
}
.p-detail-manager__detail .manager-list > li .text .ttl {
  font-weight: bold;
}
.p-detail-manager__detail .manager-list > li .text .txt {
  margin-top: 4px;
}
@media screen and (max-width: 1100px) {
  .p-detail-manager {
    margin: 16px 0;
  }
  .p-detail-manager__header {
    margin-bottom: -18px;
  }
  .p-detail-manager__header .icon {
    padding: 0 20px;
    line-height: 16px;
    font-size: 1.3rem;
    padding-bottom: 2px;
  }
  .p-detail-manager__detail .manager-list {
    padding: 4px 8px;
  }
  .p-detail-manager__detail .manager-list > li .photo {
    width: 96px;
    height: 96px;
    margin-right: 8px;
  }
  .p-detail-manager__detail .manager-list > li .photo img {
    border-radius: 96px;
  }
  .p-detail-manager__detail .manager-list > li .text .ttl {
    font-size: 1.2rem;
  }
  .p-detail-manager__detail .manager-list > li .text .txt {
    margin-top: 4px;
    font-size: 1.2rem;
  }
}

.p-detail-index {
  margin: 80px 0;
  padding: 20px 24px 24px 24px;
  background-color: #EDF3F8;
}
.p-detail-index__title {
  padding: 4px 8px;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.4;
}
.p-detail-index__list > li a {
  display: inline-block;
  color: #222;
  font-weight: bold;
  text-decoration: underline;
  background: transparent url("/connect/assets/img/common/icon_mokuji.png") left 1px no-repeat;
  background-size: 24px 24px;
  padding-left: 32px;
  line-height: 1.6;
  min-height: 25px;
}
.p-detail-index__list > li + li {
  margin-top: 12px;
}
@media screen and (max-width: 1100px) {
  .p-detail-index {
    margin: 40px 0;
    padding: 18px 16px 24px 16px;
  }
  .p-detail-index__title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

.p-detail-section {
  margin-top: 80px;
}
@media screen and (max-width: 1100px) {
  .p-detail-section {
    margin-top: 40px;
  }
}

.p-detail-lead, .p-detail-section__body {
  margin: 32px 0;
}
.p-detail-lead h3, .p-detail-section__body h3 {
  margin-top: 32px;
  padding: 8px 16px 10px 16px;
  font-size: 2.2rem;
  color: #222;
  background-color: #EDF3F8;
  line-height: 1.6;
}
.p-detail-lead p, .p-detail-section__body p {
  margin: 24px 0;
}
.p-detail-lead ul, .p-detail-section__body ul {
  margin: 24px 0;
}
.p-detail-lead ul > li, .p-detail-section__body ul > li {
  position: relative;
  padding-left: 1em;
}
.p-detail-lead ul > li + li, .p-detail-section__body ul > li + li {
  margin-top: 14px;
}
.p-detail-lead ul > li::before, .p-detail-section__body ul > li::before {
  content: "";
  display: block;
  background-color: #0071be;
  width: 5px;
  height: 5px;
  position: absolute;
  left: 3px;
  top: 14px;
}
.p-detail-lead ol, .p-detail-section__body ol {
  margin: 24px 0 24px 1em;
}
.p-detail-lead ol > li, .p-detail-section__body ol > li {
  position: relative;
  list-style-type: decimal;
}
.p-detail-lead ol > li::marker, .p-detail-section__body ol > li::marker {
  display: block;
  position: absolute;
  left: 2px;
  top: 14px;
}
.p-detail-lead ol > li + li, .p-detail-section__body ol > li + li {
  margin-top: 14px;
}
.p-detail-lead blockquote, .p-detail-section__body blockquote {
  margin: 32px 0;
  border-left: 4px #aaa solid;
  padding: 8px 0 8px 16px;
}
.p-detail-lead blockquote p, .p-detail-section__body blockquote p {
  margin: 0;
  color: #aaa;
}
.p-detail-lead blockquote p + p, .p-detail-section__body blockquote p + p {
  margin-top: 24px;
}
.p-detail-lead table, .p-detail-section__body table {
  margin: 32px 0;
  border-collapse: collapse;
  line-height: 1.6;
}
.p-detail-lead table th, .p-detail-lead table td, .p-detail-section__body table th, .p-detail-section__body table td {
  border: 1px #aaa solid;
  padding: 12px;
}
.p-detail-lead table th > p:first-child, .p-detail-lead table td > p:first-child, .p-detail-section__body table th > p:first-child, .p-detail-section__body table td > p:first-child {
  margin-top: 0;
}
.p-detail-lead table th > p:last-child, .p-detail-lead table td > p:last-child, .p-detail-section__body table th > p:last-child, .p-detail-section__body table td > p:last-child {
  margin-bottom: 0;
}
.p-detail-lead table th, .p-detail-section__body table th {
  background-color: #222;
  font-weight: bold;
  color: #fff;
}
.p-detail-lead .image, .p-detail-section__body .image {
  margin: 32px auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
.p-detail-lead .image .img, .p-detail-section__body .image .img {
  margin: 0;
}
.p-detail-lead .image .img img, .p-detail-section__body .image .img img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.p-detail-lead .image figcaption, .p-detail-lead .image .cap, .p-detail-section__body .image figcaption, .p-detail-section__body .image .cap {
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 8px 0 0 0;
  display: block;
}
.p-detail-lead .image .cap-center, .p-detail-section__body .image .cap-center {
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 8px 0 0 0;
  display: block;
  text-align: center;
}
.p-detail-lead .column-two, .p-detail-section__body .column-two {
  margin: 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.p-detail-lead .column-two > .image, .p-detail-section__body .column-two > .image {
  margin: 0;
}
.p-detail-lead .column-two > *, .p-detail-section__body .column-two > * {
  width: calc((100% - 40px) / 2);
}
.p-detail-lead .column-three, .p-detail-section__body .column-three {
  margin: 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.p-detail-lead .column-three > .image, .p-detail-section__body .column-three > .image {
  margin: 0;
}
.p-detail-lead .column-three > *, .p-detail-section__body .column-three > * {
  width: calc((100% - 80px) / 3);
}
.p-detail-lead .sentence, .p-detail-section__body .sentence {
  align-self: center;
}
.p-detail-lead .sentence .chatch, .p-detail-section__body .sentence .chatch {
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 16px;
  font-weight: bold;
}
.p-detail-lead .sentence p, .p-detail-section__body .sentence p {
  margin: 0;
}
.p-detail-lead .movie, .p-detail-section__body .movie {
  width: 720px;
  margin: 32px auto;
  aspect-ratio: 16/9;
}
.p-detail-lead .movie iframe, .p-detail-section__body .movie iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.p-detail-lead .movie .cap, .p-detail-section__body .movie .cap {
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 8px 0 0 0;
  display: block;
}
.p-detail-lead .noteblock, .p-detail-section__body .noteblock {
  margin: 32px 0;
  background-color: #F5F5F5;
  padding: 24px;
}
.p-detail-lead .noteblock .ttl, .p-detail-section__body .noteblock .ttl {
  font-weight: bold;
  margin: 0;
}
.p-detail-lead .noteblock p, .p-detail-section__body .noteblock p {
  margin: 8px 0 0 0;
  font-size: 1.4rem;
}
@media screen and (max-width: 1100px) {
  .p-detail-lead, .p-detail-section__body {
    margin: 20px 0;
  }
  .p-detail-lead h3, .p-detail-section__body h3 {
    padding: 4px 8px 6px 8px;
    font-size: 1.6rem;
  }
  .p-detail-lead p, .p-detail-section__body p {
    margin: 16px 0;
  }
  .p-detail-lead ul, .p-detail-section__body ul {
    margin: 16px 0;
  }
  .p-detail-lead ul > li + li, .p-detail-section__body ul > li + li {
    margin-top: 10px;
  }
  .p-detail-lead ul > li::before, .p-detail-section__body ul > li::before {
    top: 12px;
  }
  .p-detail-lead ol, .p-detail-section__body ol {
    margin: 16px 0 16px 1em;
  }
  .p-detail-lead ol > li::marker, .p-detail-section__body ol > li::marker {
    top: 12px;
  }
  .p-detail-lead ol > li + li, .p-detail-section__body ol > li + li {
    margin-top: 10px;
  }
  .p-detail-lead blockquote, .p-detail-section__body blockquote {
    margin: 20px 0;
    padding: 6px 0 6px 12px;
  }
  .p-detail-lead blockquote p, .p-detail-section__body blockquote p {
    margin: 0;
  }
  .p-detail-lead blockquote p + p, .p-detail-section__body blockquote p + p {
    margin-top: 16px;
  }
  .p-detail-lead table, .p-detail-section__body table {
    margin: 20px 0;
  }
  .p-detail-lead table th, .p-detail-lead table td, .p-detail-section__body table th, .p-detail-section__body table td {
    padding: 8px;
  }
  .p-detail-lead .image, .p-detail-section__body .image {
    margin: 20px auto;
  }
  .p-detail-lead .image figcaption, .p-detail-lead .image .cap, .p-detail-section__body .image figcaption, .p-detail-section__body .image .cap {
    font-size: 1rem;
    margin: 4px 0 0 0;
  }
  .p-detail-lead .image .cap-center, .p-detail-section__body .image .cap-center {
    font-size: 1rem;
    margin: 4px 0 0 0;
  }
  .p-detail-lead .column-two, .p-detail-section__body .column-two {
    margin: 24px 0;
    justify-content: center;
    gap: 8px;
  }
  .p-detail-lead .column-two > *, .p-detail-section__body .column-two > * {
    width: 100%;
  }
  .p-detail-lead .column-three, .p-detail-section__body .column-three {
    margin: 24px 0;
    justify-content: center;
    gap: 8px;
  }
  .p-detail-lead .column-three > *, .p-detail-section__body .column-three > * {
    width: calc((100% - 8px) / 2);
  }
  .p-detail-lead .sentence, .p-detail-section__body .sentence {
    order: -1;
  }
  .p-detail-lead .sentence .chatch, .p-detail-section__body .sentence .chatch {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  .p-detail-lead .movie, .p-detail-section__body .movie {
    width: auto;
    max-width: 100%;
    margin: 24px auto;
  }
  .p-detail-lead .movie .cap, .p-detail-section__body .movie .cap {
    font-size: 1rem;
    margin: 4px 0 0 0;
  }
  .p-detail-lead .noteblock, .p-detail-section__body .noteblock {
    margin: 20px 0;
    padding: 12px;
    font-size: 1.3rem;
  }
  .p-detail-lead .noteblock p, .p-detail-section__body .noteblock p {
    margin: 4px 0 0 0;
    font-size: 1.2rem;
  }
}

.p-detail-writer {
  text-align: right;
  margin: 32px 0;
}
@media screen and (max-width: 1100px) {
  .p-detail-writer {
    margin: 16px 0;
    font-size: 1.2rem;
  }
}

.p-detail-department {
  border: 2px #ccc solid;
  padding: 24px;
}
.p-detail-department__title {
  font-weight: bold;
}
.p-detail-department__text {
  font-size: 1.4rem;
}
@media screen and (max-width: 1100px) {
  .p-detail-department {
    padding: 16px;
  }
  .p-detail-department__title {
    font-size: 1.2rem;
  }
  .p-detail-department__text {
    font-size: 1.2rem;
  }
}

.p-detail-slider {
  padding-bottom: 40px;
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .p-detail-slider {
    width: 100%;
  }
}
.p-detail-slider .swiper {
  overflow: visible !important;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .p-detail-slider .swiper {
    width: 100%;
  }
}
.p-detail-slider .swiper .swiper-slide {
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  opacity: 0.5;
  transition: 0.7s;
}
.p-detail-slider .swiper .swiper-slide.swiper-slide-active {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.p-detail-slider .swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.p-detail-slider .swiper .swiper-pagination-bullet-active {
  background-color: #222;
}
.p-detail-slider .swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .p-detail-slider .swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}
.p-detail-slider .swiper .swiper-horizontal > .swiper-pagination-bullets, .p-detail-slider .swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .p-detail-slider .swiper .swiper-pagination-custom, .p-detail-slider .swiper .swiper-pagination-fraction {
  bottom: -36px;
}
.p-detail-slider .swiper .slide-button-next,
.p-detail-slider .swiper .slide-button-prev {
  position: absolute;
  top: 50%;
  z-index: 100;
  margin-top: -20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-detail-slider .swiper .slide-button-next {
  right: 28.3333333333%;
}
.p-detail-slider .swiper .slide-button-prev {
  left: 28.3333333333%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 800px) {
  .p-detail-slider .swiper .slide-button-next {
    right: 16.6666666667%;
  }
  .p-detail-slider .swiper .slide-button-prev {
    left: 16.6666666667%;
  }
}
.p-detail-slider .slide-item {
  height: auto;
  aspect-ratio: 3/2;
}
.p-detail-slider .slide-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/*------------------------------------------------------------------------------------------
  js用ページ
------------------------------------------------------------------------------------------*/
.js-tag-more {
  transition: all 0.3s ease-out;
  height: 54px;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .js-tag-more {
    height: 44px;
  }
}
.js-tag-more-btn {
  transition: all 0.3s ease-out;
  display: none;
}
.js-tag-more-btn.is-active {
  display: block;
  cursor: pointer;
}
.js-sns-nav {
  position: absolute;
}
.js-sns-nav.-scroll {
  position: fixed;
  top: 72px;
}
.js-header-nav.-scroll {
  position: fixed;
  top: 0;
  z-index: 10;
}
.js-header-nav.-scroll + .l-main {
  margin-top: 130px;
}
@media screen and (max-width: 1100px) {
  .js-header-nav.-scroll + .l-main {
    margin-top: 72px;
  }
}
.js-sp-button-default.-off {
  display: none;
}
.js-sp-button-close {
  display: none;
}
.js-sp-button-close.-on {
  display: block;
  z-index: 1001;
}
.js-sp-nav {
  display: none;
}
.js-sp-nav.-active {
  display: block;
}