@charset "UTF-8";
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%;
  vertical-align: baseline;
}

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

body {
  line-height: 1.5;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

main {
  display: block;
}

button {
  border: none;
  background: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  font-family: inherit;
}

html {
  font-size: 10px;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  color: #000;
}
@media print, screen and (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

.modalOpen {
  overflow: hidden;
}
.modalOpen .js_modalWindow {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

.js_modalWindow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12000;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.js_modalWindow.show .modalDialog {
  transform: none;
}
.js_modalWindow.popup {
  text-align: center;
}
.js_modalWindow .modalDialog {
  position: relative;
  width: auto;
  max-width: 980px;
  min-height: calc(100% - (40px));
  margin: 20px auto;
  pointer-events: none;
  display: flex;
  align-items: center;
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}
.js_modalWindow .modalDialog::before {
  content: "";
  display: block;
  height: calc(100vh - (40px));
}
.js_modalWindow .modalContent {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  outline: 0;
}

.modalBg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11999;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.15s linear;
  pointer-events: none;
}
.modalBg.show {
  opacity: 1;
  pointer-events: all;
}

@media screen and (prefers-reduced-motion: reduce) {
  .js_modalWindow .modalDialog,
  .modalBg {
    transition: none;
  }
}
.js_modalWindow .close {
  border: none;
  background: none;
  outline: none;
}

#popupModal .modalBody {
  text-align: center;
}
#popupModal .modalBody img, #popupModal .modalBody iframe {
  max-width: 100%;
}

.m_modal .modalContent {
  position: relative;
}
.m_modal .modalContent .closeBtn {
  position: absolute;
  top: 30px;
  right: 30px;
}
.m_modal .modalBody {
  background: #fff;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .m_modal .modalDialog {
    margin: 20px;
  }
}

.popup.mov .modalDialog {
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.popup.mov .modalContent {
  align-items: center;
  width: auto;
}
.popup.mov .closeBtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  background: #000;
  font-size: 20px;
  color: #fff;
  padding: 11px 16px;
  position: relative;
  border-radius: 26px;
  margin: 0 auto 12px 0;
}
.popup.mov .closeBtn:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url(../images/modfalClose.png) no-repeat 0 0/100%;
  vertical-align: -7px;
}
.popup.mov iframe {
  width: 900px;
  max-width: 100%;
  aspect-ratio: 1/0.56;
}
@media print, screen and (min-width: 769px) {
  .popup.mov .modalContent {
    padding: 0 80px;
  }
}

@media screen and (max-width: 768px) {
  .popup.mov .modalContent {
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
  }
  .popup.mov .modalBody {
    width: 100%;
  }
  .popup.mov iframe {
    width: 100%;
    height: auto;
  }
  .popup.mov .closeBtn {
    font-size: 1.6rem;
  }
}

.m_alignCenter {
  text-align: center;
}

.m_btnList {
  display: flex;
}
.m_btnList .btn {
  display: inline-block;
}
.m_btnList .btn a {
  display: block;
  background: #fff;
  text-decoration: none;
  border: 1px solid #000;
  font-weight: 700;
  border-radius: 4px;
  box-sizing: border-box;
  text-align: center;
}
.m_btnList .btn.btn1 a {
  color: #000;
}
.m_btnList .btn.btn2 a {
  background: #000;
  color: #fff;
}
/*20240109追記*/
@media print, screen and (min-width: 1170px) { /*769以上*/
  .m_btnList > .m_btnList_inner > li + li {
    margin-left: 16px;
  }
  .m_btnList > .m_btnList_inner > li.btn a {
    padding: 7px 30px;
    transition: opacity 0.3s;
  }
  .m_btnList > .m_btnList_inner > li.btn a:hover {
    opacity: 0.7;
  }
  .m_btnList > .m_btnList_inner + .m_btnList_inner {
    margin-left: 16px;
  }
  /*20250513追記*/
  .headWrap .header-headLogo {
    display: none;
  }
}
/*20240109追記*/
@media screen and (max-width: 1169px) { /*768以下*/
  .m_btnList {
    justify-content: center;
    flex-direction: column;
  }
  .m_btnList > .m_btnList_content {
    display: contents;
  }
  .m_btnList > .m_btnList_inner {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .m_btnList > .m_btnList_inner + .m_btnList_inner {
    margin-top: 8px;
  }
  .m_btnList > .m_btnList_inner > li.btn.btn1, 
  .m_btnList > .m_btnList_inner > li.btn.btn2 {
    width: calc(35% - 6px);
  }
  .m_btnList > .m_btnList_inner > li.btn.btn1 {
    flex-shrink: 0;
  }
  .m_btnList > .m_btnList_inner > li.btn.btn2 a {
    max-width: 100%;
  }
  .m_btnList > .m_btnList_inner > li.btn a {
    padding: 9px 12px;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /*並び*/
  .m_btnList > .m_btnList_inner > li.btn.btn2.item2 {
    margin-left: 8px;
  }
  .m_btnList > .m_btnList_inner > li.btn.btn2.item4 {
    margin-left: 8px;
  }
  .m_btnList > .m_btnList_inner > li.btn.btn2.item3 {
    margin-left: 8px;
  }
}
.m_secHead {
  margin-bottom: 48px;
}
.m_secHead .en {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.88px;
  margin-bottom: 16px;
}
.m_secHead .jp {
  font-weight: 700;
  font-size: 1.6rem;
}
@media print, screen and (min-width: 1168px) {
  .m_secHead .en {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 1169px) {
  .m_secHead .en {
    font-size: 3.2rem;
  }
}

.m_btn {
  display: inline-block;
}
.m_btn > .txt {
  display: block;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.96px;
  border-radius: 4px;
  border: 1px solid #000;
  padding: 12px 48px;
  background: #fff;
  cursor: pointer;
  line-height: 1;
}
@media print, screen and (min-width: 769px) {
  .m_btn > .txt {
    transition: opacity 0.3s;
  }
  .m_btn > .txt:hover {
    opacity: 0.7;
  }
}
.m_card:not(.mix) {
  opacity: 0;
}
.m_card a {
  background: #fff;
  text-decoration: none;
  color: #000;
  height: 100%;
}
.m_card .txtWrap {
  border: 10px solid #EDEDED;
  position: relative;
  padding: 14px;
  min-height: 180px;
  box-sizing: border-box;
  flex-grow: 1;
}
.m_card .txtWrap:before, .m_card .txtWrap::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  height: 36px;
}
.m_card .txtWrap:before {
  background: url(../images/cardCor1.png) no-repeat 0 0/100%;
  width: 43px;
  top: -10px;
  right: -10px;
}
.m_card .txtWrap:after {
  background: url(../images/cardCor2.png) no-repeat 0 0/100%;
  width: 38px;
  bottom: -10px;
  left: -10px;
}
.m_card .txtWrap .cat {
  padding: 4px 8px;
  display: inline-block;
  color: #fff;
  background: #000;
  margin-bottom: 8px;
  font-size: 12px;
}
.m_card .txtWrap .cat:before {
  content: "#";
  margin-right: 4px;
}
.m_card .txtWrap .ttl {
  line-height: 1.6;
  letter-spacing: 1.32px;
  font-weight: 700;
  font-size: 2.2rem;
}
.m_card .author {
  padding: 16px;
  display: flex;
  align-items: center;
  padding-right: 48px;
  position: relative;
}
.m_card .author:after {
  content: "";
  display: block;
  width: 24px;
  height: 38px;
  background: url(../images/linkArw.png) no-repeat 0 0/100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
}
.m_card .author .icon {
  flex-shrink: 0;
  margin-right: 10px;
}
.m_card .author .name {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 100%;
  font-size: 1.2rem;
}
.m_card .author .name .post {
  width: 100%;
  margin-left: 10px;
}
.m_card .author .name .main {
  font-weight: 700;
}
.m_card .author .name .main .grad {
  font-weight: 400;
  display: block;
  font-size: 1.1rem;
}
.m_card .author .name .sub {
  margin-left: auto;
  font-size: 1.2rem;
}
@media print, screen and (min-width: 769px) {
  .m_card > a {
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, -webkit-backdrop-filter 0.3s;
    transition: box-shadow 0.3s, backdrop-filter 0.3s;
    transition: box-shadow 0.3s, backdrop-filter 0.3s, -webkit-backdrop-filter 0.3s;
  }
  .m_card > a:hover {
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.06);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
}
@media screen and (max-width: 768px) {
  .m_card {
    width: 100%;
  }
  .m_card > a {
    display: block;
  }
}

@media print, screen and (min-width: 769px) {
  .m_cardList {
    display: flex;
    flex-wrap: wrap;
    gap: 48px 24px;
  }
  .m_cardList > * {
    width: calc((100% - 48px) / 3);
  }
}
@media screen and (max-width: 768px) {
  .m_cardList > * + * {
    margin-top: 32px;
  }
}

.m_article > a {
  background: #fff;
  text-decoration: none;
  color: #000;
  height: 100%;
  display: flex;
}
.m_article > a .img {
  order: 1;
}
.m_article > a .txtWrap {
  order: 2;
}
.m_article > a .txtWrap .txt {
  font-weight: 700;
  line-height: 1.6;
  font-size: 1.6rem;
}
.m_article > a .txtInner .label {
  font-family: Roboto, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
}
.m_article > a .txtInner .time {
  font-family: Roboto;
  font-weight: 400;
  color: #808080;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 769px) {
  .m_article > a {
    transition: box-shadow 0.3s, -webkit-backdrop-filter 0.3s;
    transition: box-shadow 0.3s, backdrop-filter 0.3s;
    transition: box-shadow 0.3s, backdrop-filter 0.3s, -webkit-backdrop-filter 0.3s;
  }
  .m_article > a:hover {
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.06);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
  .m_article .txtWrap {
    border: 1px solid #E3E3E3;
    border-left: none;
    padding: 21px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .m_article .txtWrap .txt {
    margin-bottom: 8px;
  }
  .m_article .txtInner {
    display: flex;
    align-items: center;
  }
  .m_article .txtInner .time:before {
    content: "/";
    margin: 0 8px;
  }
}
@media screen and (max-width: 768px) {
  .m_article > a {
    position: relative;
    flex-direction: column;
  }
  .m_article .txtInner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 103px;
    width: calc(100% - 210px);
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid #E3E3E3;
    border-left: none;
    box-sizing: border-box;
    padding-left: 16px;
  }
  .m_article .txtInner .label {
    margin-bottom: 4px;
  }
  .m_article .txt {
    margin-top: 8px;
  }
}

.m_articleList {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 769px) {
  .m_articleList {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .m_articleList {
    gap: 48px;
  }
}

@media print, screen and (min-width: 769px) {
  .m_pcHide {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .m_spHide {
    display: none;
  }
}
img {
  vertical-align: top;
}

@keyframes headerAnim {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@media print, screen and (min-width: 769px) {
  .headWrap {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 88px;
    top: 0;
    left: 0;
    padding: 0 72px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
  }
  .headWrap.is_fixed {
    position: fixed;
    background: #F5F5F5;
    box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    animation: headerAnim 0.3s both;
  }
  .headWrap #gheader .headInner .btnList {
    display: flex;
    align-items: center;
  }
}
/*20240109追記*/
@media screen and (max-width: 1169px) {
  .headWrap.is_fixed #gheader {
    position: fixed;
    animation: headerAnim 0.3s both;
  }
  .headWrap #gheader {
    padding: 16px 32px;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #f5f5f5;
    background: #f5f5f5;
    box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
  }
  .headWrap .headLogo {
    display: none;
    position: absolute;
    top: 129px;
    left: 16px;
  }
  /*20250513追記*/
    .headWrap .header-headLogo {
    display: block;
    margin: 0 0 8px;
  }
}

/*20240109追記*/
@media print, screen and (min-width: 769px) {
  .bgWrap {
    background: url(../images/mvBg.png) repeat-x center top/2640px, #f5f5f5;
  }
}
/*20240109追記*/
@media screen and (max-width: 1169px) {
  .bgWrap {
    padding-top: 170px;
    background: url(../images/mvBgSp.png) no-repeat center top/100%, #f5f5f5;
  }
}

.mvArea .txt {
  font-weight: 500;
  letter-spacing: 0.96px;
}
@media print, screen and (min-width: 769px) {
  .mvArea {
    padding: 95px 72px 0;
  }
  .mvArea .areaInner {
    max-width: 1136px;
    margin: 0 auto;
    display: flex;
  }
  .mvArea .areaInner .logo {
    margin-left: 60px;
    margin-right: 5px;
  }
  .mvArea .areaInner .txt {
    margin-top: 75px;
    margin-bottom: 85px;
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  .mvArea {
    padding-bottom: 41px;
  }
  .mvArea .areaInner {
    margin: 0 16px;
  }
}

@media print, screen and (min-width: 769px) {
  .secInner {
    max-width: 1136px;
    margin-inline: auto;
  }
}
#sec01 .tagBox {
  border-radius: 8px;
  border: 1px solid var(--white, #FFF);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
#sec01 .tagBox .list > li {
  font-size: 14px;
}
#sec01 .tagBox .list > li .btn {
  color: #808080;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
#sec01 .tagBox .list > li .btn.active {
  background: #000;
  color: #fff;
  pointer-events: none;
}
#sec01 .tagBox .list > li .btn:before {
  content: "#";
  margin-right: 4px;
}
#sec01 .moreBtn {
  background: #f5f5f5;
}
#sec01 .cardListWrap {
  overflow: hidden;
  transition: 0.3s;
}
@media print, screen and (min-width: 769px) {
  #sec01 {
    padding: 0 72px 96px;
    margin-top: -60px;
  }
  #sec01 .tagBox {
    display: flex;
    align-items: center;
    padding: 24px;
    margin-bottom: 48px;
  }
  #sec01 .tagBox .headCol {
    margin-right: 40px;
    flex-shrink: 0;
  }
  #sec01 .tagBox .listWrap {
    display: block !important;
  }
  #sec01 .tagBox .list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  #sec01 .tagBox .list > li .btn {
    padding: 4px 11px;
    border-radius: 14px;
    transition: color 0.3s, background-color 0.3s;
  }
  #sec01 .tagBox .list > li .btn:hover {
    color: #000;
    background: #fff;
  }
  #sec01 .moreBtn {
    padding-top: 28px;
  }
}
@media screen and (max-width: 768px) {
  #sec01 {
    padding-bottom: 64px;
  }
  #sec01 .secInner {
    margin: 0 16px;
  }
  #sec01 .tagBox {
    margin-bottom: 32px;
  }
  #sec01 .tagBox .headCol {
    display: flex;
    align-items: center;
    padding: 14px 22px 14px 16px;
    cursor: pointer;
  }
  #sec01 .tagBox .headCol.is_active:after {
    transform: rotateX(180deg);
  }
  #sec01 .tagBox .headCol .boxHead {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-right: auto;
  }
  #sec01 .tagBox .headCol .current {
    margin-left: auto;
    text-align: right;
    margin: 0 14px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  #sec01 .tagBox .headCol .current.is_active {
    opacity: 1;
  }
  #sec01 .tagBox .headCol .current span {
    font-size: 1.4rem;
    font-weight: 400;
    color: #fff;
    background: #000;
    padding: 5px 10px;
    border-radius: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
  #sec01 .tagBox .headCol:after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 8px;
    background: url(../images/accArw.png) no-repeat 0 0/100%;
    transition: transform 0.3s;
    flex-shrink: 0;
  }
  #sec01 .tagBox .listWrap {
    padding: 0 16px;
    display: none;
  }
  #sec01 .tagBox .listWrap .list {
    padding-bottom: 24px;
    border-bottom: 1px solid #CCCCCC;
  }
  #sec01 .tagBox .listWrap .list > li + li {
    margin-top: 24px;
  }
  #sec01 .tagBox .listWrap .list > li .btn {
    padding: 6px 17px;
    border-radius: 16px;
  }
  #sec01 .tagBox .listWrap .close {
    display: block;
    width: 100%;
    text-align: center;
    padding: 26px 0;
    font-size: 1.4rem;
  }
  #sec01 .tagBox .listWrap .close:after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 8px;
    background: url(../images/accArw.png) no-repeat 0 0/100%;
    transform: rotateX(180deg);
    margin-left: 7px;
  }
  #sec01 .m_btn {
    margin-top: 32px;
  }
}

@media print, screen and (min-width: 769px) {
  #sec02 {
    padding: 96px 72px;
  }
}
@media screen and (max-width: 768px) {
  #sec02 {
    padding: 64px 16px;
  }
}

#gfooter {
  background: #f5f5f5;
}
#gfooter .sideCol .linkList > li {
  font-weight: 500;
  letter-spacing: 0.96px;
}
#gfooter .sideCol .linkList > li a {
  text-decoration: none;
  color: #000;
}
#gfooter .sideCol .copyright {
  color: #808080;
  font-family: "Roboto";
}
#gfooter .sideCol .copyright small {
  font-size: 1.2rem;
}
@media print, screen and (min-width: 769px) {
  #gfooter {
    padding: 48px 70px;
  }
  #gfooter .footInner {
    display: flex;
    justify-content: space-between;
  }
  #gfooter .logoCol .logo1 {
    margin-bottom: 40px;
  }
  #gfooter .sideCol .m_btnList {
    margin-bottom: 48px;
  }
  #gfooter .sideCol .linkList {
    display: flex;
    margin-bottom: 16px;
  }
  #gfooter .sideCol .linkList > li + li {
    margin-left: 32px;
  }
  #gfooter .sideCol .linkList > li a {
    transition: opacity 0.3s;
  }
  #gfooter .sideCol .linkList > li a:hover {
    opacity: 0.7;
  }
  #gfooter .sideCol .copyright {
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  #gfooter {
    padding: 48px 16px 24px;
  }
  #gfooter .logoCol {
    margin-bottom: 32px;
  }
  #gfooter .logoCol .logo1 {
    margin-bottom: 32px;
  }
  #gfooter .linkList {
    margin-bottom: 32px;
  }
  #gfooter .linkList > li + li {
    margin-top: 24px;
  }
  #gfooter .copyright {
    text-align: center;
  }
}

.m_card .author .iconWrap {
  display: flex;
}

.js_cardList .mix {
  display: none;
}/*# sourceMappingURL=styles.css.map */