@charset "UTF-8";
@font-face {
  font-family: "MBCorpoA-Regular1";
  src: url(/fonts/MBCorpoA/MBCorpoA-Regular1.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "MBCorpoA-Regular2";
  src: url(/fonts/MBCorpoA/MBCorpoA-Regular2.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "MBCorpoA-Regular3";
  src: url(/fonts/MBCorpoA/MBCorpoA-Regular3.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "MBCorpoS-BRegular1";
  src: url(/fonts/MBCorpoS/MBCorpoS-BRegular1.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "MBCorpoS-Regular2";
  src: url(/fonts/MBCorpoS/MBCorpoS-Regular2.woff) format("woff");
  font-display: swap;
}
/*16*1.75/2*/
/*======*/
/* 共通 */
/*======*/
/* PC/SP出し分け
------------------------------ */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .sp-link {
    pointer-events: none;
    color: #FFF;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* 共通アニメーション
------------------------------ */
.animate {
  opacity: 0;
}

.fadein {
  -webkit-animation: fade-in 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
          animation: fade-in 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
          animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
          animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
          animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
}

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

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* レイアウト
-----------------------------------*/
body {
  height: 100%;
}

main {
  margin-top: 96px;
}
@media (max-width: 767px) {
  main {
    margin-top: 80px;
  }
}

section .contents {
  width: 86%;
  max-width: 1680px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  section .contents {
    width: 90%;
    padding: 0 0;
  }
}

section .contents-min {
  width: 86%;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  section .contents-min {
    width: 90%;
    padding: 0 0;
  }
}

section .contents p,
section .contents ul,
section .contents ol {
  margin-bottom: 1em;
}

/* フォーム
-----------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 8px;
  font-size: 16px;
}

input[type=date],
select {
  max-width: 100%;
  padding: 8px;
  font-size: 16px;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  font-family: "MFW-GothicMB101Pro-Regular";
  font-size: 16px;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* パンくず
-----------------------------------*/
.b-nv {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .b-nv {
    display: none;
  }
}
.b-nv ul {
  display: flex;
  justify-content: flex-start;
  padding: 16px 0;
}
.b-nv ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 8px;
  line-height: 1;
}
.b-nv ul li a {
  margin-right: 8px;
}
.b-nv ul li::after {
  content: "";
  display: block;
  border-color: #333;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(-45deg);
}
.b-nv ul li:last-child::after {
  content: none;
}

/* Webフォントアイコン
-----------------------------------*/
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* タイトル
-----------------------------------*/
.title-sec {
  max-width: 1920px;
  margin: 0 auto 172px;
}
@media (max-width: 1279px) {
  .title-sec {
    margin-bottom: 100px;
    padding-top: 20px;
    background: url(/images/common/title_bg01.jpg) no-repeat;
    background-size: cover;
  }
}
.title-sec .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1279px) {
  .title-sec .wrap {
    display: block;
  }
}
.title-sec .wrap .title-area {
  width: 50%;
  max-width: 718px;
  margin: 0 auto;
  padding: 24px;
  background-color: #000;
}
@media (max-width: 1279px) {
  .title-sec .wrap .title-area {
    width: 100%;
    max-width: 100%;
    padding: 48px 24px;
  }
}
.title-sec .wrap .title-img {
  width: 50%;
}
.title-sec .wrap .title-img img {
  width: 100%;
}
@media (max-width: 1279px) {
  .title-sec .wrap .title-img {
    width: 100%;
  }
}
.title-sec .heading-title {
  font-size: 16px;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
  letter-spacing: 0.025em;
  line-height: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .title-sec .heading-title {
    font-size: 14px;
  }
}
.title-sec .heading-title .en-txt {
  display: block;
  margin-bottom: 24px;
  font-family: "MBCorpoS-Regular2";
  font-size: 42px;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .title-sec .heading-title .en-txt {
    margin-bottom: 16px;
    font-size: 24px;
  }
}

.simple-title {
  margin-bottom: 64px;
  padding: 104px 0;
  background: url(/images/common/com_bg01.webp) repeat;
  background-size: 1920px auto;
  background-position: center center;
}
@media (max-width: 767px) {
  .simple-title {
    margin-bottom: 32px;
    padding: 48px 0;
  }
}
.simple-title .heading-title {
  color: #FFF;
  font-size: 18px;
  line-height: 1;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
  letter-spacing: 0.028em;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .simple-title .heading-title {
    font-size: 14px;
  }
}
.simple-title .heading-title .en-txt {
  display: block;
  margin-bottom: 32px;
  font-family: "MBCorpoS-Regular2";
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .simple-title .heading-title .en-txt {
    margin-bottom: 16px;
    font-size: 28px;
  }
}

.h-area {
  margin: 118px 0 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .h-area {
    margin: 80px 0 32px;
  }
}
.h-area .sub-txt {
  margin-bottom: 16px;
  font-family: "MFW-GothicMB101Pro-DeBold";
  color: #999;
  letter-spacing: 3px;
  line-height: 1;
}
@media (max-width: 767px) {
  .h-area .sub-txt {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 2px;
  }
}
.h-area .heading01, .h-area .heading02 {
  margin: 0;
}

.heading01 {
  margin: 118px 0 40px;
  font-size: 32px;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.025em;
  text-align: center;
}
@media (max-width: 767px) {
  .heading01 {
    margin: 112px 0 32px;
    font-size: 24px;
  }
}

.heading02 {
  margin: 118px 0 40px;
  text-align: center;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
  font-size: 40px;
  line-height: 1.125;
  letter-spacing: 0.025em;
  text-align: center;
}
@media (max-width: 767px) {
  .heading02 {
    margin: 112px 0 32px;
    font-size: 32px;
  }
}
.heading02.en-txt {
  font-family: "MBCorpoS-Regular2";
  font-weight: bold;
  letter-spacing: 0.025em;
}

.heading03 {
  margin: 64px 0 32px;
  font-size: 28px;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
  line-height: 1.3;
  letter-spacing: 0.025em;
  text-align: center;
}
@media (max-width: 767px) {
  .heading03 {
    margin: 112px 0 32px;
    font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
    font-size: 18px;
  }
}

.heading04 {
  margin: 48px 0 24px;
  font-size: 24px;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
  line-height: 1.3;
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  .heading04 {
    margin: 24px 0 16px;
    font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
    font-size: 16px;
  }
}

/* 背景色
-----------------------------------*/
.bg-white {
  background-color: #FFF;
  color: #000;
}

/* com-warp
-----------------------------------*/
.com-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 100px 0;
}
@media (max-width: 767px) {
  .com-wrap {
    display: block;
    margin: 110px 0;
  }
}
.com-wrap .txt {
  width: 53.75%; /*688/1280*/
}
@media (max-width: 767px) {
  .com-wrap .txt {
    width: 100%;
  }
}
.com-wrap .txt .bt {
  margin: 0;
}
.com-wrap figure {
  width: 40.546%; /*519/1280*/
}
@media (max-width: 767px) {
  .com-wrap figure {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .com-wrap.type01 .txt {
    margin-bottom: 20px;
  }
}
.com-wrap.type01 .txt .heading01 {
  margin: 0 0 40px;
  text-align: left;
}
@media (max-width: 767px) {
  .com-wrap.type01 .txt .heading01 {
    margin: 0 0 32px;
  }
}
.com-wrap.type01 .txt p {
  margin-bottom: 40px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .com-wrap.type01 .txt p {
    margin-bottom: 32px;
  }
}
.com-wrap.type01 .txt p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .com-wrap.type01 .txt .bt {
    max-width: 110px;
  }
}
@media (max-width: 767px) {
  .com-wrap.type01 .txt .bt .com-bt {
    padding: 12px 8px;
  }
}
.com-wrap.type02 {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .com-wrap.type02 .txt {
    margin-bottom: 20px;
  }
}
.com-wrap.type02 .txt .h-area {
  margin: 0 0 40px;
}
@media (max-width: 767px) {
  .com-wrap.type02 .txt .h-area {
    margin: 0 0 32px;
  }
}
.com-wrap.type02 .txt .h-area .sub-txt {
  margin-bottom: 16px;
  text-align: left;
}
@media (max-width: 767px) {
  .com-wrap.type02 .txt .h-area .sub-txt {
    margin-bottom: 20px;
  }
}
.com-wrap.type02 .txt .h-area .heading02 {
  text-align: left;
}
.com-wrap.type02 .txt p:not(.sub-txt) {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .com-wrap.type02 .txt p:not(.sub-txt) {
    margin-bottom: 32px;
  }
}
.com-wrap.type02 .txt p:last-of-type {
  margin-bottom: 0;
}
.com-wrap.type02 .txt .list-col2 {
  margin-top: 40px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .com-wrap.type02 .txt .list-col2 {
    margin-top: 24px;
  }
}
.com-wrap.type02 .txt .list-col2 li {
  width: 49.418%; /*340/688*/
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .com-wrap.type02 .txt .list-col2 li {
    width: 48.805%; /*327/670*/
  }
}
.com-wrap.type02 .txt .list-col2 li:nth-child(even) {
  margin-left: 1.162%; /*8/688*/
}
@media (max-width: 767px) {
  .com-wrap.type02 .txt .list-col2 li:nth-child(even) {
    margin-left: 2.388%; /*16/670*/
  }
}

/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
/*.link-txt {
	text-decoration: underline;
}*/
.other-link {
  display: flex !important;
  align-items: center;
}
.other-link::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  background: url(/images/common/link_ic01.svg) no-repeat;
  background-size: 100% auto;
}

/* リンクアイコンボタン
-----------------------------------*/
.com-ic-bt-wrap {
  position: relative;
  display: inline-block;
  max-width: 234px;
  width: 100%;
}
@media (max-width: 767px) {
  .com-ic-bt-wrap {
    max-width: 205px;
  }
}
.com-ic-bt-wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 2px;
  background: #700909;
}
.com-ic-bt-wrap .com-ic-bt {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 32px 0 80px;
  background: #000;
  color: #FFF;
  line-height: 48px;
  text-align: center;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .com-ic-bt-wrap .com-ic-bt {
    padding: 0 28px 0 70px;
    line-height: 42px;
  }
}
.com-ic-bt-wrap .com-ic-bt:hover {
  background: #B21E23;
  text-decoration: none;
}
.com-ic-bt-wrap .com-ic-bt:hover .ic {
  background: #870812;
}
.com-ic-bt-wrap .com-ic-bt:hover .ic span {
  background: #FF9F9F;
}
.com-ic-bt-wrap label {
  position: relative;
  display: block;
  width: 100%;
}
.com-ic-bt-wrap label:hover .ic {
  background: #870812;
}
.com-ic-bt-wrap label:hover .ic span {
  background: #FF9F9F;
}
.com-ic-bt-wrap input[type=submit].com-ic-bt,
.com-ic-bt-wrap input[type=button].com-ic-bt,
.com-ic-bt-wrap button.com-ic-bt {
  border: none;
  background-color: #000;
  line-height: 48px;
  cursor: pointer;
}
.com-ic-bt-wrap input[type=submit].com-ic-bt:hover,
.com-ic-bt-wrap input[type=button].com-ic-bt:hover,
.com-ic-bt-wrap button.com-ic-bt:hover {
  background-color: #B21E23;
}
@media (max-width: 767px) {
  .com-ic-bt-wrap input[type=submit].com-ic-bt,
.com-ic-bt-wrap input[type=button].com-ic-bt,
.com-ic-bt-wrap button.com-ic-bt {
    font-size: 14px;
    line-height: 42px;
  }
}
.com-ic-bt-wrap .ic {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 48px;
  height: 48px;
  background: #474747;
  pointer-events: none;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .com-ic-bt-wrap .ic {
    width: 42px;
    height: 42px;
  }
}
.com-ic-bt-wrap .ic span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  background: #FFF;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .com-ic-bt-wrap .ic span {
    width: 4px;
    height: 4px;
  }
}
.com-ic-bt-wrap .ic span:nth-of-type(1) {
  transform: translate(-3.7px, -3.7px);
}
@media (max-width: 767px) {
  .com-ic-bt-wrap .ic span:nth-of-type(1) {
    transform: translate(-3.2px, -3.2px);
  }
}
.com-ic-bt-wrap .ic span:nth-of-type(2) {
  transform: translate(3.7px, -3.7px);
}
@media (max-width: 767px) {
  .com-ic-bt-wrap .ic span:nth-of-type(2) {
    transform: translate(3.2px, -3.2px);
  }
}
.com-ic-bt-wrap .ic span:nth-of-type(3) {
  transform: translate(-3.7px, 3.7px);
}
@media (max-width: 767px) {
  .com-ic-bt-wrap .ic span:nth-of-type(3) {
    transform: translate(-3.2px, 3.2px);
  }
}
.com-ic-bt-wrap .ic span:nth-of-type(4) {
  transform: translate(3.7px, 3.7px);
}
@media (max-width: 767px) {
  .com-ic-bt-wrap .ic span:nth-of-type(4) {
    transform: translate(3.2px, 3.2px);
  }
}

/* リンクボタン
-----------------------------------*/
.com-bt {
  display: inline-block;
  padding: 16px 48px;
  border-bottom: 2px solid #700909;
  background-color: #000;
  color: #FFF;
  line-height: 1;
  text-align: center;
  vertical-align: top;
  transition: 0.5s all;
  /*黒背景用サブボタン*/
}
.com-bt:hover {
  background-color: #B21E23;
  text-decoration: none;
  color: #FFF;
}
@media (max-width: 767px) {
  .com-bt {
    display: block;
    width: 100%;
    padding: 12px 32px;
  }
}
.com-bt.next {
  position: relative;
}
.com-bt.next::after {
  content: "";
  position: absolute;
  display: block;
  right: 16px;
  top: 50%;
  margin-top: -4px;
  border-color: #FFF;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(-45deg);
}
.com-bt.prev {
  position: relative;
}
.com-bt.prev::before {
  content: "";
  position: absolute;
  display: block;
  left: 16px;
  top: 50%;
  margin-top: -4px;
  border-color: #FFF;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(135deg);
}
.com-bt.sub-bt {
  border-bottom: 2px solid #000;
  background-color: #666;
}
.com-bt.sub-bt:hover {
  background-color: #474747;
}

input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
  border: none;
  border-bottom: 2px solid #700909;
  background-color: #000;
  line-height: 1;
  cursor: pointer;
  /*黒背景用サブボタン*/
}
input[type=submit].com-bt:hover,
input[type=button].com-bt:hover,
button.com-bt:hover {
  background-color: #B21E23;
}
@media (max-width: 767px) {
  input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
    font-size: 14px;
  }
}
input[type=submit].com-bt.sub-bt,
input[type=button].com-bt.sub-bt,
button.com-bt.sub-bt {
  background-color: #666;
  border-bottom: 2px solid #000;
}
input[type=submit].com-bt.sub-bt:hover,
input[type=button].com-bt.sub-bt:hover,
button.com-bt.sub-bt:hover {
  background-color: #474747;
}

/*============*/
/* 共通・汎用 */
/*============*/
/* サブテキスト
-----------------------------------*/
p.sub-txt {
  color: #999;
}

/* 段落
-----------------------------------*/
/* ぶら下げインデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* 汎用カラム
-----------------------------------*/
.row:after {
  content: "";
  clear: both;
  display: block;
}

.multicolumn,
.multilist {
  overflow: hidden !important;
}

.multicolumn-left {
  float: left;
}

.multicolumn-right {
  float: right;
}

.multilist li {
  float: left;
}

/* 横並びリスト
-----------------------------------*/
.list-col2,
.list-col3,
.list-col4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.list-col2 li {
  width: 48%;
  margin-bottom: 24px;
}
.list-col2 li:nth-child(even) {
  margin-left: 4%;
}

.list-col3 li {
  width: 32%;
  margin-bottom: 16px;
  margin-right: 2%;
}
.list-col3 li:nth-child(3n) {
  margin-right: 0;
}

.list-col4 li {
  width: 24%;
  margin-bottom: 16px;
  margin-right: 1.333%;
}
.list-col4 li:nth-child(4n) {
  margin-right: 0;
}

/* タブ切り替え
-----------------------------------*/
.tab {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .tab {
    margin-bottom: 32px;
  }
}
.tab li {
  padding: 16px 24px;
  border-bottom: 2px solid #000;
  background-color: #666;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .tab li {
    padding: 12px 8px;
  }
}
.tab li:hover, .tab li.active {
  border-color: #700909;
  background-color: #000;
  color: #FFF;
}
.tab li:not(:last-child) {
  margin-right: 24px;
}
@media (max-width: 767px) {
  .tab li:not(:last-child) {
    margin-right: 18px;
  }
}

.tab-cts {
  padding: 16px;
  border: 1px solid #AAA;
}
.tab-cts.disnon {
  display: none;
}

/* list-nv
-----------------------------------*/
.list-nv {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .list-nv {
    margin-bottom: 32px;
  }
}
.list-nv li {
  border-bottom: 2px solid #000;
  background-color: #666;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  transition: 0.5s all;
}
.list-nv li:hover, .list-nv li.active {
  border-color: #700909;
  background-color: #000;
}
.list-nv li:hover a, .list-nv li.active a {
  text-decoration: none;
}
.list-nv li:not(:last-child) {
  margin-right: 24px;
}
@media (max-width: 767px) {
  .list-nv li:not(:last-child) {
    margin-right: 18px;
  }
}
.list-nv li a {
  display: block;
  padding: 16px 24px;
  color: #FFF;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .list-nv li a {
    padding: 12px 8px;
  }
}

/* アコーディオン
-----------------------------------*/
.ac-menu {
  position: relative;
  margin-top: 24px;
  padding: 16px 64px 16px 24px;
  border: 1px solid #CECECE;
  line-height: 1;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
  cursor: pointer;
}
.ac-menu::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 calc(24px / 2) 16px calc(24px / 2);
  border-color: transparent transparent #CECECE transparent;
}
.ac-menu.open::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px calc(24px / 2) 0 calc(24px / 2);
  border-color: #CECECE transparent transparent transparent;
}

.ac-cts {
  display: none;
  padding: 16px 24px;
  background-color: #CECECE;
}

/* カラム幅
-----------------------------------*/
.w1000 {
  width: 1000px;
}

/* リスト、アイコン
-----------------------------------*/
/* リスト（デフォルト） */
.list-df {
  margin-left: 23px;
  list-style: disc;
}

/* リスト（ドット） */
.list-dot li {
  padding-left: 1em;
}

.list-dot li:before {
  content: "・";
  margin-left: -1em;
}

/* リスト（数字） */
.list-num li {
  margin-left: 30px;
}

/* テーブル
-----------------------------------*/
/* 幅 */
col.colw05 {
  width: 5%;
}

col.colw10 {
  width: 10%;
}

col.colw15 {
  width: 15%;
}

col.colw20 {
  width: 20%;
}

col.colw25 {
  width: 25%;
}

col.colw30 {
  width: 30%;
}

col.colw35 {
  width: 35%;
}

col.colw40 {
  width: 40%;
}

col.colw45 {
  width: 45%;
}

col.colw50 {
  width: 50%;
}

/* テーブル */
.table {
  width: 100%;
  margin-bottom: 1em;
  background-color: #222;
  border-collapse: collapse;
  border-spacing: 0;
}
.table th {
  padding: 16px;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
}
@media (max-width: 767px) {
  .table th {
    padding: 8px 4px;
  }
}
.table td {
  padding: 16px;
}
@media (max-width: 767px) {
  .table td {
    padding: 8px 4px;
  }
}
.table tr:nth-child(even) {
  background-color: #333;
}
.table thead th {
  background-color: #333;
}

.table02 {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.table02 th {
  padding: 16px;
  border-bottom: 1px solid #666;
  color: #777;
  text-align: left;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
}
@media (max-width: 767px) {
  .table02 th {
    padding: 8px 4px;
  }
}
.table02 td {
  padding: 16px;
  border-bottom: 1px solid #666;
}
@media (max-width: 767px) {
  .table02 td {
    padding: 8px 4px;
  }
}

/* ニュース一覧
-----------------------------------*/
.list-news {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 2%;
}
@media (max-width: 767px) {
  .list-news {
    display: block;
  }
}
.list-news li {
  width: 32%;
}
@media (max-width: 1023px) {
  .list-news li {
    width: 49%;
  }
}
@media (max-width: 767px) {
  .list-news li {
    width: 100%;
    margin-bottom: 16px;
  }
}
.list-news li a {
  display: block;
  padding: 16px;
  background-color: #000;
  color: #FFF;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .list-news li a {
    padding: 8px;
  }
}
.list-news li a figure {
  position: relative;
  height: 0;
  padding-bottom: 56.25%; /*9/16*/
  border: 1px solid #696969;
  overflow: hidden;
}
.list-news li a figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.list-news li a .txt {
  padding: 16px;
}
@media (max-width: 767px) {
  .list-news li a .txt {
    padding: 4px;
  }
}
.list-news li a .txt .title {
  margin-bottom: 8px;
  font-size: 18px;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
  font-weight: bold;
}
@media (max-width: 767px) {
  .list-news li a .txt .title {
    font-size: 16px;
  }
}
.list-news li a .txt .note {
  position: relative;
  display: -webkit-box;
  max-height: 3.2em;
  white-space: normal;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 8px;
  font-size: 14px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .list-news li a .txt .note {
    font-size: 12px;
  }
}
.list-news li a .txt .info-wrap {
  display: flex;
  justify-content: space-between;
}
.list-news li a .txt .info-wrap .date {
  display: flex;
  align-items: center;
  width: 48%;
  padding: 1%;
  font-family: "MBCorpoS-Regular2";
  font-size: 18px;
  color: #CCC;
  line-height: 1;
}
.list-news li a .txt .info-wrap .date::before {
  content: "calendar_month";
  margin-right: 8px;
  font-family: "Material Symbols Outlined";
  line-height: 1;
}
.list-news li a .txt .info-wrap .label {
  width: 48%;
  padding: 1%;
  background-color: #000;
  box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.list-news li a:hover {
  background-color: #333;
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.list-news li a:hover img {
  opacity: 1 !important;
}
@media (max-width: 767px) {
  .list-news li a .title {
    width: 100%;
    margin-top: 8px;
  }
}

/* WPページャー
-----------------------------------*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  padding: 88px 0;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
  line-height: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .wp-pagenavi {
    padding: 64px 0;
  }
}
.wp-pagenavi a,
.wp-pagenavi span.current {
  display: inline-block;
  width: 32px;
  margin: 0 2px;
  color: #FFF;
  transition: 0.5s all;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  text-decoration: none;
  background-color: #B21E23;
  color: #FFF;
}

/* 投稿記事 タイトル
-----------------------------------*/
.entry-detail .entry-content {
  margin: 50px 0 112px;
  overflow: hidden;
  word-break: break-all;
}
@media (max-width: 767px) {
  .entry-detail .entry-content {
    margin: 24px 0 56px;
  }
}
.entry-detail .entry-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #666;
}
@media (max-width: 767px) {
  .entry-detail .entry-meta {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
}
.entry-detail .entry-meta .label {
  color: #999;
}
.entry-detail .entry-meta .date {
  color: #999;
}
.entry-detail .btn-area {
  margin: 0 0 24px;
  padding: 0 0 77px;
  border-bottom: 1px solid #666;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .btn-area {
    margin: 0 0 12px;
    padding: 0 0 40px;
  }
}
.entry-detail .btn-area .bt-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}
.entry-detail .btn-area .bt-list li {
  display: inline-block;
}
.entry-detail .btn-area .bt-list li a {
  display: flex;
}
.entry-detail .btn-area .bt-list li.prev {
  width: 13px;
}
@media (max-width: 767px) {
  .entry-detail .btn-area .bt-list li.prev {
    width: 7px;
  }
}
.entry-detail .btn-area .bt-list li.prev a {
  transform: rotate(180deg);
  transform-origin: center;
}
.entry-detail .btn-area .bt-list li.bt {
  width: 200px;
}
@media (max-width: 767px) {
  .entry-detail .btn-area .bt-list li.bt {
    width: 160px;
  }
}
.entry-detail .btn-area .bt-list li.next {
  width: 13px;
}
@media (max-width: 767px) {
  .entry-detail .btn-area .bt-list li.next {
    width: 7px;
  }
}
.entry-detail .news-area {
  margin-bottom: 112px;
}
@media (max-width: 767px) {
  .entry-detail .news-area {
    margin-bottom: 40px;
  }
}
.entry-detail .news-area .ttl {
  margin: 24px 0 16px;
  color: #FFF;
  font-size: 24px;
}
@media (max-width: 767px) {
  .entry-detail .news-area .ttl {
    font-size: 21px;
  }
}

/* 投稿記事 詳細
-----------------------------------*/
.entry-detail .entry-content {
  /* 投稿画像 */
}
.entry-detail .entry-content p {
  margin: 1em 0;
}
.entry-detail .entry-content h1 {
  margin: 80px 0 40px;
  font-size: 24px;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
  letter-spacing: 0.025em;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h1 {
    margin: 48px 0 20px;
    font-size: 20px;
  }
}
.entry-detail .entry-content h2 {
  margin: 64px 0 32px;
  font-size: 22px;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
  letter-spacing: 0.025em;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h2 {
    margin: 32px 0 16px;
    font-size: 18px;
  }
}
.entry-detail .entry-content h3 {
  margin: 16px 0;
  font-size: 20px;
  line-height: 1.3;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h3 {
    margin: 12px 0;
    font-size: 17px;
  }
}
.entry-detail .entry-content h4 {
  margin: 16px 0;
  font-size: 18px;
  line-height: 1.3;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
  letter-spacing: 0.025em;
  font-weight: bold;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h4 {
    margin: 12px 0;
    font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
    font-size: 16px;
  }
}
.entry-detail .entry-content h5 {
  margin: 16px 0;
  font-size: 17px;
  line-height: 1.3;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
  letter-spacing: 0.025em;
  font-weight: bold;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h5 {
    margin: 12px 0;
    font-size: 15px;
  }
}
.entry-detail .entry-content h6 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 1.3;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
  letter-spacing: 0.025em;
  font-weight: bold;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h6 {
    margin: 12px 0;
    font-size: 14px;
  }
}
.entry-detail .entry-content ul {
  margin: 16px 0 16px 32px;
}
.entry-detail .entry-content ul li {
  list-style: disc;
}
.entry-detail .entry-content ol {
  margin: 16px 0 16px 32px;
}
.entry-detail .entry-content blockquote {
  font-style: italic;
  padding: 0 32px;
}
.entry-detail .entry-content blockquote cite,
.entry-detail .entry-content blockquote em,
.entry-detail .entry-content blockquote i {
  font-style: normal;
}
.entry-detail .entry-content b, .entry-detail .entry-content strong {
  font-family: "MFW-GothicMB101Pro-DeBold";
}
.entry-detail .entry-content table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.entry-detail .entry-content table th {
  padding: 16px;
  border: solid 1px #CCC;
  font-family: "MBCorpoS-Regular2", "MFW-GothicMB101Pro-DeBold";
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .entry-content table th {
    padding: 8px 2px;
    font-size: 12px;
  }
}
.entry-detail .entry-content table td {
  padding: 16px;
  border: solid 1px #CCC;
}
@media (max-width: 767px) {
  .entry-detail .entry-content table td {
    padding: 8px 2px;
    font-size: 12px;
  }
}
.entry-detail .entry-content .alignleft,
.entry-detail .entry-content img.alignleft {
  display: inline;
  float: left;
  margin-right: 16px;
  margin-top: 4px;
}
.entry-detail .entry-content .alignright,
.entry-detail .entry-content img.alignright {
  display: inline;
  float: right;
  margin-left: 16px;
  margin-top: 4px;
}
.entry-detail .entry-content .aligncenter,
.entry-detail .entry-content img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entry-detail .entry-content img.alignleft,
.entry-detail .entry-content img.alignright,
.entry-detail .entry-content img.aligncenter {
  margin-bottom: 16px;
}
.entry-detail .entry-content .wp-caption {
  text-align: center;
}
/*# sourceMappingURL=common.css.map */