@charset "UTF-8";
@font-face {
  font-family: "NotoSansJP-Black";
  src: url(/fonts/NotoSansJP/NotoSansJP-Black.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Bold";
  src: url(/fonts/NotoSansJP/NotoSansJP-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Light";
  src: url(/fonts/NotoSansJP/NotoSansJP-Light.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Medium";
  src: url(/fonts/NotoSansJP/NotoSansJP-Medium.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Regular";
  src: url(/fonts/NotoSansJP/NotoSansJP-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Thin";
  src: url(/fonts/NotoSansJP/NotoSansJP-Thin.woff) format("woff");
  font-display: swap;
}
/*======*/
/* 共通 */
/*======*/
/* PC/SP出し分け
------------------------------ */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@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) both;
          animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

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

.fade-in-right {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 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: 88px;
}
@media (max-width: 767px) {
  main {
    margin-top: 80px;
  }
}

section .contents {
  max-width: 1648px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  section .contents {
    padding: 0 24px;
  }
}

section .contents2 {
  max-width: 1488px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  section .contents2 {
    padding: 0 24px;
  }
}

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

section .contents2 p,
section .contents2 ul,
section .contents2 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: "NotoSansJP-Regular", sans-serif;
  font-size: 18px;
  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;
}

/* タイトル
-----------------------------------*/
.title-area {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 250px;
  margin-bottom: 72px;
  padding: 16px 0 32px;
  background: url(/images/common/title_bg01.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  /* パンくず */
}
@media (max-width: 767px) {
  .title-area {
    min-height: 200px;
    margin-bottom: 40px;
    padding: 16px 0;
    background: url(/images/common/title_bg01_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
  }
}
.title-area .contents {
  width: 100%;
}
.title-area .b-nv {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  max-width: 1648px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .title-area .b-nv {
    display: none;
  }
}
.title-area .b-nv ul {
  display: flex;
  justify-content: flex-start;
  padding: 16px 0;
}
.title-area .b-nv ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 8px;
  color: #FFF;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1;
}
.title-area .b-nv ul li a {
  margin-right: 6px;
  color: #FFF;
  font-family: "NotoSansJP-Bold", sans-serif;
  transition: 0.5s all;
}
.title-area .b-nv ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.title-area .b-nv ul li::after {
  content: "/";
}
.title-area .b-nv ul li:last-child::after {
  content: none;
}
.title-area .heading-title {
  margin-bottom: 0;
  color: #FFF;
  font-size: min(64px, 6.25vw); /*64/1024*/
  font-family: "NotoSansJP-Black", sans-serif;
  line-height: 1;
  text-shadow: 0 0 12px rgba(14, 62, 91, 0.5);
}
@media (max-width: 767px) {
  .title-area .heading-title {
    font-size: 32px;
  }
}
.title-area .heading-title.ja {
  font-size: min(40px, 3.906vw); /*40/1024*/
  line-height: 1.2;
}
@media (max-width: 767px) {
  .title-area .heading-title.ja {
    font-size: 32px;
  }
}
.title-area .heading-title span {
  display: block;
  margin-top: min(24px, 2.343vw); /*24/1024*/
  font-size: min(24px, 2.343vw); /*24/1024*/
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .title-area .heading-title span {
    margin-top: 24px;
    font-size: 14px;
  }
}

.heading01 {
  margin: 80px 0 48px;
  font-size: 40px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1;
}
@media (max-width: 767px) {
  .heading01 {
    margin: 60px 0 32px;
    font-size: 32px;
  }
}
.heading01 span {
  display: block;
  margin-top: 24px;
  color: #009B94;
  font-size: 18px;
  font-family: "NotoSansJP-Medium", sans-serif;
}
@media (max-width: 767px) {
  .heading01 span {
    margin-top: 8px;
    font-size: 12px;
  }
}

.heading02 {
  margin: 64px 0 32px;
  font-size: 32px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading02 {
    margin: 40px 0 32px;
    font-size: 24px;
  }
}
.heading02 span {
  position: relative;
  display: inline-block;
  padding-left: 32px;
}
@media (max-width: 767px) {
  .heading02 span {
    padding-left: 24px;
  }
}
.heading02 span::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  transform: rotate(-45deg);
  width: 8px;
  height: 8px;
  background: linear-gradient(130deg, #009B94 0%, #1D4293 100%);
}
@media (max-width: 767px) {
  .heading02 span::before {
    top: 0.5em;
    width: 7px;
    height: 7px;
  }
}

.heading03 {
  margin: 40px 0 24px;
  color: #009B94;
  font-size: 24px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading03 {
    margin: 32px 0 16px;
    font-size: 18px;
  }
}

.heading04 {
  margin: 40px 0 24px;
  color: #57647A;
  font-size: 24px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading04 {
    margin: 32px 0 16px;
    font-size: 18px;
  }
}

/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
.link-txt:hover {
  color: #193342;
  text-decoration: underline;
}
.link-txt:active {
  color: #009B94;
}

/* リンクボタン
-----------------------------------*/
.com-bt {
  position: relative;
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  min-width: 200px;
  width: 100%;
  border: 1px solid #1D4293;
  border-radius: 3px;
  background: #1D4293;
  color: #FFF;
  font-size: 16px;
  text-align: left;
  line-height: 46px;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .com-bt {
    min-width: 175px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 40px;
  }
}
.com-bt:hover {
  background: #FFF;
  color: #1D4293;
  text-decoration: none;
}
.com-bt:hover .com-ic {
  background: #1D4293;
}
.com-bt:hover .com-ic::before {
  background: #FFF;
}
.com-bt .com-ic {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
@media (max-width: 767px) {
  .com-bt .com-ic {
    width: 18px;
    height: 18px;
  }
}
.com-bt .com-ic::before {
  width: 3px;
  height: 3px;
}
@media (max-width: 767px) {
  .com-bt .com-ic::before {
    width: 2px;
    height: 2px;
  }
}
.com-bt.prev {
  padding: 0 16px 0 52px;
  text-align: right;
}
@media (max-width: 767px) {
  .com-bt.prev {
    padding: 0 16px 0 50px;
  }
}
.com-bt.prev .com-ic {
  left: 16px;
}
.com-bt.next {
  padding: 0 52px 0 16px;
}
@media (max-width: 767px) {
  .com-bt.next {
    padding: 0 50px 0 16px;
  }
}
.com-bt.next .com-ic {
  right: 16px;
}
.com-bt.input-bt:hover input {
  color: #1D4293;
}
.com-bt.input-bt.prev {
  padding: 0;
}
.com-bt.input-bt.prev input {
  padding: 0 16px 0 52px;
  text-align: right;
}
@media (max-width: 767px) {
  .com-bt.input-bt.prev input {
    padding: 0 16px 0 50px;
  }
}
.com-bt.input-bt.next {
  padding: 0;
}
.com-bt.input-bt.next input {
  padding: 0 52px 0 16px;
  text-align: left;
}
@media (max-width: 767px) {
  .com-bt.input-bt.next input {
    padding: 0 50px 0 16px;
  }
}
.com-bt.sub-bt {
  border: 1px solid #57647A;
  background: #57647A;
}
.com-bt.sub-bt:hover {
  background: #FFF;
  color: #57647A;
}
.com-bt.sub-bt:hover .com-ic {
  background: #57647A;
}
.com-bt.sub-bt:hover .com-ic::before {
  background: #FFF;
}
.com-bt.sub-bt:hover input {
  color: #57647A;
}
.com-bt.sub-bt .com-ic::before {
  background: #57647A;
}

.com-bt input[type=submit],
.com-bt input[type=button] {
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 3px;
  background: none;
  color: #FFF;
  font-size: 16px;
  line-height: 46px;
  vertical-align: top;
  cursor: pointer;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .com-bt input[type=submit],
.com-bt input[type=button] {
    font-size: 14px;
    line-height: 40px;
  }
}

button.com-bt {
  border: 1px solid #1D4293;
  border-radius: 3px;
  background: #1D4293;
  color: #FFF;
  font-size: 16px;
  line-height: 46px;
  cursor: pointer;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  button.com-bt {
    font-size: 14px;
    line-height: 40px;
  }
}
button.com-bt:hover {
  background: #FFF;
  color: #1D4293;
  text-decoration: none;
}
button.com-bt:hover .com-ic {
  background: #1D4293;
}
button.com-bt:hover .com-ic::before {
  background: #FFF;
}
button.com-bt.sub-bt {
  border: 1px solid #57647A;
  background: #57647A;
}
button.com-bt.sub-bt:hover {
  color: #57647A;
}
button.com-bt.sub-bt:hover .com-ic {
  background: #57647A;
}

/*============*/
/* 共通・汎用 */
/*============*/
/* 段落
-----------------------------------*/
/* ぶら下げインデント */
.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;
}

.com-row01 {
  display: flex;
  justify-content: space-between;
  margin: 64px 0;
}
@media (max-width: 767px) {
  .com-row01 {
    display: block;
    margin: 32px 0;
  }
}
.com-row01 .img {
  width: 28.75%; /*460/1600*/
}
@media (max-width: 767px) {
  .com-row01 .img {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 24px;
  }
}
.com-row01 .txt {
  width: 63%; /*1008/1600*/
}
@media (max-width: 767px) {
  .com-row01 .txt {
    width: 100%;
  }
}
.com-row01.reverse {
  flex-direction: row-reverse;
}
.com-row01.reverse .img {
  width: 63%; /*1008/1600*/
}
@media (max-width: 767px) {
  .com-row01.reverse .img {
    width: 100%;
  }
}
.com-row01.reverse .txt {
  width: 28.75%; /*460/1600*/
}
@media (max-width: 767px) {
  .com-row01.reverse .txt {
    width: 100%;
  }
}

.com-row02 {
  display: flex;
  flex-wrap: wrap;
  margin: 48px 0;
}
@media (max-width: 767px) {
  .com-row02 {
    margin: 24px 0;
  }
}
.com-row02 li {
  width: 31.625%; /*506/1600*/
  margin-top: 2.5625%; /*41/1600*/
  margin-right: 2.5625%; /*41/1600*/
}
@media (max-width: 767px) {
  .com-row02 li {
    width: 100%;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 12px;
  }
}
.com-row02 li:nth-of-type(3n) {
  margin-right: 0;
}
.com-row02 li:nth-of-type(-n+3) {
  margin-top: 0;
}
@media (max-width: 767px) {
  .com-row02 li:last-of-type {
    margin-bottom: 0;
  }
}

/* 注釈タイトル
-----------------------------------*/
.note-box {
  margin: 64px 0;
  background: #F2F2F2;
}
@media (max-width: 767px) {
  .note-box {
    margin: 56px 0;
  }
}
.note-box .inner {
  padding: 32px;
}
.note-box .ttl {
  margin-bottom: 32px;
  color: #57647A;
  font-size: 24px;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .note-box .ttl {
    margin-bottom: 30px;
    font-size: 18px;
  }
}
.note-box p:last-of-type {
  margin-bottom: 0;
}

/* 画像ボタン
-----------------------------------*/
.link-img {
  overflow: hidden;
  position: relative;
  display: block;
  max-width: 506px;
  width: 100%;
  height: 100%;
  margin: 40px 0;
}
.link-img:hover {
  opacity: 1;
}
.link-img:hover .txt {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.link-img:hover .com-ic {
  background: #1D4293;
}
.link-img:hover .com-ic::before {
  background: #FFF;
}
.link-img:hover img {
  opacity: 1;
}
.link-img .bg {
  transition: 0.5s all;
}
.link-img .txt {
  position: absolute;
  padding: min(40px, 2.427vw); /*40/1648*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s all;
}
@media (max-width: 1024px) {
  .link-img .txt {
    padding: min(24px, 2.343vw); /*24/1024*/
  }
}
@media (max-width: 767px) {
  .link-img .txt {
    padding: 24px;
  }
}
.link-img .txt .ttl {
  margin-bottom: min(32px, 1.941vw); /*32/1648*/
  color: #FFF;
  font-size: clamp(34px, 3.398vw, 56px); /*56/1648*/
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1;
}
@media (max-width: 767px) {
  .link-img .txt .ttl {
    margin-bottom: 10px;
    font-size: 32px;
  }
}
.link-img .txt p {
  margin-bottom: 0;
  color: #FFF;
  font-size: clamp(14px, 1.334vw, 22px); /*22/1648*/
  font-family: "NotoSansJP-Medium", sans-serif;
}
.link-img .com-ic {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  width: min(40px, 3.906vw); /*40/1024*/
  height: min(40px, 3.906vw); /*40/1024*/
}
@media (max-width: 767px) {
  .link-img .com-ic {
    width: 24px;
    height: 24px;
  }
}
.link-img .com-ic .dot {
  width: min(8px, 0.781vw); /*8/1024*/
  height: min(8px, 0.781vw); /*8/1024*/
}
@media (max-width: 767px) {
  .link-img .com-ic .dot {
    width: 3.5px;
    height: 3.5px;
  }
}

/* ボーダー
-----------------------------------*/
.border {
  position: relative;
  display: block;
  margin: 80px 0;
  width: 100%;
  height: 1px;
}
@media (max-width: 767px) {
  .border {
    margin: 60px 0;
  }
}
.border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #DDD;
}

/* 青背景色
-----------------------------------*/
.bg-b {
  position: relative;
  margin: 120px 0;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .bg-b {
    margin: 80px 0;
    padding: 60px 0;
  }
}
.bg-b::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: linear-gradient(to right, #D8F1E8 0%, #E2F2F5 100%);
}
.bg-b .inner {
  position: relative;
  z-index: 0;
}
.bg-b .heading01 {
  margin: 0 0 80px;
  text-align: center;
}
@media (max-width: 767px) {
  .bg-b .heading01 {
    margin: 0 0 40px;
  }
}
.bg-b p:last-of-type {
  margin-bottom: 0;
}

/* 横並び + sticky
-----------------------------------*/
.sticky-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .sticky-wrap {
    display: block;
  }
}
.sticky-wrap .l-cts {
  width: min(560px, 33.98vw); /*560/1648*/
  padding-right: min(117px, 7.099vw); /*117/1648*/
}
@media (max-width: 1024px) {
  .sticky-wrap .l-cts {
    width: 100%;
    margin-bottom: 56px;
    padding-right: 0;
  }
}
.sticky-wrap .l-cts.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  left: 0;
}
@media (max-width: 1024px) {
  .sticky-wrap .l-cts.sticky {
    position: initial;
  }
}
.sticky-wrap .r-cts {
  flex: 1;
}
.sticky-wrap .r-cts .list-news {
  margin-bottom: 0;
}
.sticky-wrap .r-cts .list-news li a:hover .ic .com-ic {
  border-color: #1D4293;
  background: #1D4293;
}
.sticky-wrap .r-cts .list-news li a .date-wrap .label span {
  background: #F4F4F4;
}
.sticky-wrap .r-cts .list-news li a .ic .com-ic {
  border: 1px solid #F4F4F4;
  background: #F4F4F4;
}

/* list-bt
-----------------------------------*/
.list-bt {
  display: flex;
  justify-content: space-between;
  max-width: 424px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .list-bt {
    display: block;
  }
}
.list-bt li {
  width: 200px;
}
@media (max-width: 767px) {
  .list-bt li {
    width: 100%;
    margin-bottom: 12px;
  }
}
.list-bt li p {
  margin-bottom: 0;
}
.list-bt li .com-bt {
  min-width: 200px;
}
@media (max-width: 767px) {
  .list-bt li .com-bt {
    min-width: 175px;
  }
}
@media (max-width: 767px) {
  .list-bt li:last-child {
    margin-bottom: 0;
  }
}

/* タブ切り替え
-----------------------------------*/
.tab {
  display: flex;
  justify-content: center;
  margin-bottom: 0 !important;
}
.tab li {
  padding: 16px 24px;
  background-color: #CECECE;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}
.tab li:hover, .tab li.active {
  background-color: #AAA;
  color: #FFF;
}

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

/* アコーディオン
-----------------------------------*/
.ac-menu {
  position: relative;
  margin-top: 24px;
  padding: 16px 64px 16px 24px;
  border: 1px solid #CECECE;
  line-height: 1;
  font-family: "NotoSansJP-Bold", sans-serif;
  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;
  border-collapse: collapse;
  border-spacing: 0;
}
.table th {
  font-family: "NotoSansJP-Bold", sans-serif;
}
.table.type01 {
  border-top: 1px solid #DDD;
}
@media (max-width: 767px) {
  .table.type01 {
    border: none;
  }
}
.table.type01 th {
  width: 240px;
  padding: 24px 16px;
  border-bottom: 1px solid #DDD;
  background: linear-gradient(to right, #D8F1E8 0%, #E2F2F5 100%);
}
@media (max-width: 767px) {
  .table.type01 th {
    display: block;
    width: 100%;
    padding: 20px 12px;
    border: none;
  }
}
.table.type01 td {
  width: calc(100% - 240px);
  padding: 24px 32px;
  border-bottom: 1px solid #DDD;
}
@media (max-width: 767px) {
  .table.type01 td {
    display: block;
    width: 100%;
    padding: 16px 0;
    border: none;
  }
}
.table.type02 {
  border-left: 1px solid #DDD;
}
.table.type02 th {
  width: 33.3333333333%;
  padding: 24px 16px;
  border-right: 1px solid #DDD;
  background: linear-gradient(to right, #D8F1E8 0%, #E2F2F5 100%);
}
@media (max-width: 767px) {
  .table.type02 th {
    padding: 20px 12px;
  }
}
.table.type02 td {
  width: 33.3333333333%;
  padding: 24px 16px;
  border-right: 1px solid #DDD;
}
@media (max-width: 767px) {
  .table.type02 td {
    padding: 16px;
  }
}
.table.type03 {
  border-top: 1px solid #DDD;
}
.table.type03 th, .table.type03 td {
  border: 1px solid #DDD;
  border-top: none;
}
.table.type03 thead th {
  width: 33.3333333333%;
  padding: 24px 16px;
  background: linear-gradient(to right, #D8F1E8 0%, #E2F2F5 100%);
}
@media (max-width: 767px) {
  .table.type03 thead th {
    padding: 24px 12px;
  }
}
.table.type03 tbody th {
  width: 33.3333333333%;
  padding: 24px 16px;
}
@media (max-width: 767px) {
  .table.type03 tbody th {
    padding: 8px;
  }
}
.table.type03 tbody td {
  width: 33.3333333333%;
  padding: 24px 16px;
}
@media (max-width: 767px) {
  .table.type03 tbody td {
    padding: 8px;
  }
}

/* 共通アイコン
-----------------------------------*/
.com-ic {
  position: relative;
  display: flex;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #FFF;
  border-radius: 2px;
  background: #F2F2F2;
  transition: 0.5s all;
  pointer-events: none;
}
@media (max-width: 767px) {
  .com-ic {
    width: 24px;
    height: 24px;
  }
}
.com-ic::before {
  content: "";
  display: block;
  transform: rotate(45deg);
  align-self: center;
  width: 6px;
  height: 6px;
  background: #1D4293;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .com-ic::before {
    width: 4px;
    height: 4px;
  }
}

/* ニュース一覧
-----------------------------------*/
.list-news {
  border-top: 1px solid #DDD;
}
.list-news li {
  border-bottom: 1px solid #DDD;
}
.list-news li a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 28px 64px 28px 0;
  color: #193342;
}
@media (max-width: 767px) {
  .list-news li a {
    display: block;
    padding: 14px 40px 14px 0;
  }
}
.list-news li a .date-wrap {
  display: flex;
  align-items: center;
  width: 340px;
}
@media (max-width: 767px) {
  .list-news li a .date-wrap {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    width: 100%;
    margin-bottom: 8px;
  }
}
.list-news li a .date-wrap .date {
  width: 130px;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 767px) {
  .list-news li a .date-wrap .date {
    width: 100px;
    font-size: 12px;
  }
}
.list-news li a .date-wrap .label {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 184px;
  color: #009B94;
  text-align: center;
  font-size: 11px;
  line-height: 1;
}
@media (max-width: 767px) {
  .list-news li a .date-wrap .label {
    gap: 3.5px;
    width: calc(100% - 100px);
    font-size: 10px;
  }
}
.list-news li a .date-wrap .label span {
  width: 88px;
  border-radius: 500px;
  background: #FFF;
  line-height: 28px;
}
@media (max-width: 767px) {
  .list-news li a .date-wrap .label span {
    width: 80px;
    line-height: 24px;
  }
}
.list-news li a .title {
  flex: 1;
  font-size: 14px;
  word-wrap: break-word;
}
@media (max-width: 767px) {
  .list-news li a .title {
    font-size: 12px;
  }
}
.list-news li a .title span {
  background: linear-gradient(#193342, #193342) 0 100%/0 1px no-repeat;
  word-wrap: break-word;
  line-height: 1.3;
  transition: background 0.5s;
}
.list-news li a .ic {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.list-news li a .ic .com-ic {
  margin-left: auto;
  background: #FFF;
}
.list-news li a.other-link .title span::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  background: url(/images/common/link_ic01.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .list-news li a.other-link .title span::after {
    width: 10px;
    height: 10px;
  }
}
.list-news li a:hover {
  color: #193342;
  text-decoration: none;
}
.list-news li a:hover .title span {
  background-size: 100% 1px;
}
.list-news li a:hover .ic .com-ic {
  border-color: #1D4293;
  background: #1D4293;
}
.list-news li a:hover .ic .com-ic::before {
  background: #FFF;
}

/* WPページャー
-----------------------------------*/
.wp-pagenavi {
  display: flex;
  padding: 64px 0;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .wp-pagenavi {
    justify-content: center;
    padding: 40px 0;
    line-height: 35px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span.current {
  display: inline-block;
  width: 40px;
  margin: 0 8px;
  border-radius: 6px;
  color: #1D4293;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .wp-pagenavi a,
.wp-pagenavi span.current {
    width: 35px;
  }
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  text-decoration: none;
  background-color: #1D4293;
  color: #FFF;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 9px;
  height: 13px;
  background: url(/images/common/com_ic01.svg) no-repeat;
  background-size: 100% auto;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
    width: 8px;
    height: 12px;
  }
}
.wp-pagenavi .previouspostslink:hover::before,
.wp-pagenavi .nextpostslink:hover::before {
  background: url(/images/common/com_ic02.svg) no-repeat;
  background-size: 100% auto;
}
.wp-pagenavi .previouspostslink {
  margin-left: 0;
}
.wp-pagenavi .previouspostslink::before {
  transform: rotate(180deg);
  transform-origin: center center;
}
.wp-pagenavi .nextpostslink {
  margin-right: 0;
}

/* 投稿記事 タイトル
-----------------------------------*/
.entry-detail .entry-header .entry-title {
  display: none;
  margin: 40px 0 32px;
  font-size: 28px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-title {
    margin: 28px 0;
    font-size: 24px;
  }
}
.entry-detail .entry-header .entry-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.entry-detail .entry-header .entry-meta .date {
  color: #757370;
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-meta .date {
    font-size: 14px;
  }
}
.entry-detail .entry-header .entry-meta .label {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: 24px;
  color: #009B94;
  text-align: center;
  font-size: 13px;
  line-height: 1;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-meta .label {
    width: 168px;
    font-size: 12px;
  }
}
.entry-detail .entry-header .entry-meta .label span {
  display: inline-block;
  width: 88px;
  border-radius: 500px;
  background-color: #F4F4F4;
  line-height: 28px;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-meta .label span {
    width: 80px;
    line-height: 24px;
  }
}
.entry-detail .entry-content {
  margin: 16px 0;
  overflow: hidden;
  word-break: break-all;
}
@media (max-width: 767px) {
  .entry-detail .entry-content {
    margin: 16px 0;
  }
}
.entry-detail .btn-area {
  margin: 88px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .btn-area {
    margin: 40px 0;
  }
}
.entry-detail .btn-area .com-bt {
  margin: 0 auto;
}

/* 投稿記事 詳細
-----------------------------------*/
.entry-detail .entry-content {
  font-size: 18px;
  /* 投稿画像 */
}
@media (max-width: 767px) {
  .entry-detail .entry-content {
    font-size: 16px;
  }
}
.entry-detail .entry-content p {
  margin: 1em 0;
  font-size: 18px;
}
@media (max-width: 767px) {
  .entry-detail .entry-content p {
    font-size: 16px;
  }
}
.entry-detail .entry-content h1 {
  margin: 24px 0 16px;
  font-size: 32px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h1 {
    margin: 16px 0 12px;
    font-size: 28px;
  }
}
.entry-detail .entry-content h2 {
  margin: 24px 0 16px;
  font-size: 28px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h2 {
    margin: 16px 0 12px;
    font-size: 25px;
  }
}
.entry-detail .entry-content h3 {
  margin: 16px 0;
  font-size: 22px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h3 {
    margin: 12px 0;
    font-size: 19px;
  }
}
.entry-detail .entry-content h4 {
  margin: 16px 0;
  font-size: 20px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h4 {
    margin: 12px 0;
    font-size: 18px;
  }
}
.entry-detail .entry-content h5 {
  margin: 16px 0;
  font-size: 18px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h5 {
    margin: 12px 0;
    font-size: 16px;
  }
}
.entry-detail .entry-content h6 {
  margin: 16px 0;
  font-size: 18px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@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 table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.entry-detail .entry-content table th {
  padding: 16px;
  border: solid 1px #333;
  font-family: "NotoSansJP-Bold", sans-serif;
  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 #333;
}
@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 */