@charset "UTF-8";

:root {
  --maincolor: #14183b;
}

* {
  color: #3c3c3c;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #3c3c3c;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #3c3c3c;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  line-height: 1.7;
  color: #191718;
  font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
  font-weight: 200;
  letter-spacing: 0.1em;
}

p {
  line-height: 1.7;
  margin-bottom: 15px;
}

/*  endresetcss  */

.conts-wrap {
  overflow: hidden;
  max-width: 1200px;
  padding: 0 15px;
  margin: auto;
}

.breadcrumb-wrapper {
  max-width: 1200px;
  margin: auto;
}

.header {
  height: 50px;
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  background-color: var(--maincolor);
  color: #fff;
}

.header>div {
  margin: auto;
  width: 1200px;
}

.spnav {
  display: none;
}

header a {
  color: #ffffff;
}


.sitettl a {
  font-weight: bold;
}

.slidewrap {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.conts-wrap.mainvisual {
  margin: 0px auto 40px;
  padding: 0
}

.mainvisual img {
  width: 100%;
  height: auto;
}

.mainvisual-pc {
  display: block;
}

.slide {
  min-width: 100%;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.slide li {
  overflow: hidden;
  width: 31.5%;
  background: #646162;
  margin: 0;
  padding: 0;
  position: relative;
}

.slide-ttl {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 30%;
  left: 0;
  z-index: 2;
  color: #fff;
  padding: 0 5%;
}

.slide-contents:hover .slide-ttl {
  color: #ffffff;
}

.slide-img {
  display: block;
  margin-bottom: 0;
  opacity: .4;
  z-index: 1;
  transition: all .3s ease;
}

.slide-contents:hover .slide-img {
  opacity: .1;
}

.slide-img img {
  width: 100%;
  height: auto;
  margin: -35px 0;
}

.lead h1 {
  font-size: 24px;
  font-weight: bold;
  margin: 0px 0 20px;
  border-bottom: 5px solid var(--maincolor);
  padding: 0px 0 10px 0;
  line-height: 1.2;
}

.lead h1 .br {
  display: block;
}

.cont-hl2 {
  font-size: 24px;
  text-align: center;
  margin: 0;
  padding: 80px 0 40px;
  position: relative;
}

.atl-lk-ttl {
  font-size: 18px;
  font-weight: bold;
}

.grid-layout {
  margin-bottom: 50px;
}

.grid-layout ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.grid-layout.odd ul>li:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.grid-layout.odd ul>li:first-child .catch-img {
  display: flex;
  align-items: flex-end;
}

.grid-layout.odd ul>li:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  display: flex;
  align-items: flex-start;
  margin-top: 32px;
}

.grid-layout.odd ul>li:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  display: flex;
  align-items: flex-end;
}

.grid-layout.odd ul>li:nth-child(2) a,
.grid-layout.odd ul>li:nth-child(3) a,
.grid-layout.even ul>li:nth-child(1) a,
.grid-layout.even ul>li:nth-child(2) a {
  display: flex;
  flex-direction: row-reverse;
}

.grid-layout.odd ul>li:nth-child(2) p,
.grid-layout.odd ul>li:nth-child(3) p,
.grid-layout.even ul>li:nth-child(1) p,
.grid-layout.even ul>li:nth-child(2) p {
  display: none;
}

.grid-layout.even ul>li:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  display: flex;
  align-items: flex-start;
  margin-top: 32px;
}

.grid-layout.even ul>li:nth-child(2) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  display: flex;
  align-items: flex-end;
}

.grid-layout.even ul>li:last-child {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.grid-layout.even ul>li:last-child .catch-img {
  display: flex;
  align-items: flex-end;
}

.grid-layout.odd ul>li:first-child .catch-img img,
.grid-layout.even ul>li:last-child .catch-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.grid-layout.odd ul>li:nth-child(2) .catch-img,
.grid-layout.odd ul>li:nth-child(3) .catch-img,
.grid-layout.even ul>li:nth-child(1) .catch-img,
.grid-layout.even ul>li:nth-child(2) .catch-img {
  width: 150px;
  min-width: 150px;
  margin-right: 10px;
  display: flex;
}

.grid-layout.odd ul>li:nth-child(2) .catch-img img,
.grid-layout.odd ul>li:nth-child(3) .catch-img img,
.grid-layout.even ul>li:nth-child(1) .catch-img img,
.grid-layout.even ul>li:nth-child(2) .catch-img img {
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.grid-layout ul li a:hover {
  opacity: 0.6;
}

.grid-layout ul time {
  color: #999;
}

.footer-wrapper {
  padding: 10px;
  background-color: #ebebeb;
  text-align: center;
}

#fixedTop {
  display: none;
  position: fixed;
  right: 40px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  color: #ffffff;
  font-size: 35px;
  text-align: center;
  background: var(--maincolor);
  z-index: 9999;
  border-radius: 10px;
  -webkit-transform: translateZ(0);
}

#fixedTop.fa-caret-up::before {
  content: "\f0d8";
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  padding-top: 7px;
}

#fixedTop:hover {
  opacity: 0.6;
}

/* ////////////////// 下層ページ ////////////////// */
.breadcrumb {
  display: flex;
  padding: 10px 15px;
}

.breadcrumb li::before {
  content: "\03e";
  padding: 0 5px;
}

.breadcrumb li:first-child::before {
  content: none;
}

.breadcrumb a {
  font-size: 14px;
}

.breadcrumb a:hover,
.breadcrumb a span:hover {
  color: var(--maincolor);
}

.article-wrapper {
  padding-bottom: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.article-wrapper .main {
  width: 65%;
}

.article-wrapper .side-nav {
  width: 35%;
  padding-left: 50px;
}

.article-wrapper .main img {
  width: 100%;
  height: auto;
}

.heading1 {
  background-color: var(--maincolor);
  color: #ffffff;
  padding: 15px;
  margin: 3% 0;
  font-size: 24px;
}

.article-wrapper .main h2 {
  border-left: 7px solid var(--maincolor);
  background: #f1f1f1;
  padding: 15px;
  margin-bottom: 3%;
  font-size: 20px;
}

.official {
  border: 1px solid #ddd;
  margin: 0 0 5% 0;
  padding: 3%;
  line-height: 1.2;
}

.official dt {
  font-size: 18px;
  font-weight: bold;
  color: var(--maincolor);
  margin-bottom: 5px;
}

.official dd a {
  display: block;
  font-weight: normal;
  word-break: break-word;
}

.official dd a span {
  text-decoration: underline;
}

.official dd a span:after {
  display: inline-block;
  font: normal normal normal 14px / 1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f14c";
  padding-left: 5px;
}

.article-wrapper a:hover {
  opacity: 0.6;
}

.official dd a.fa-external-link-square:before {
  content: none;
}

.breadcrumb li:first-child .official dd a.fa-external-link-square:hover::after {
  content: "\f14c";
  padding-left: 5px;
}

.aside-newslist li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.aside-newslist li a {
  display: flex;
  align-items: center;
}

dl.aside-newslist {
  margin-bottom: 30px;
}

.eye-catch {
  position: relative;
  width: 30%;
  display: flex;
  align-items: center;
}

.eye-catch img {
  width: 100%;
  height: auto;
}

.aside-title {
  width: 70%;
  padding: 0 0 0 3%;
}

.eye-catch .fa-external-link-square:before {
  content: none;
}

.aside-newslist li .fa {
  display: none;
}

.aside-newslist li:hover .fa {
  display: block;
}

.aside-newslist li:hover .fa-external-link-square:before {
  content: "\f14c";
  position: absolute;
  top: 30px;
  left: 32px;
  display: inline-block;
}

.aside-newslist dt {
  border-bottom: 1px solid #ddd;
  text-align: center;
  padding-bottom: 20px;
  font-size: 1.2em;
  line-height: 1em;
  font-weight: bold;
}

.sitemap li .fa-chain:before,
.fa-link:before {
  display: inline-block;
}

ul.sitemap-list li dl dt {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.sitemap li a {
  padding: 20px;
  display: flex;
}

.sitemap li .fa-chain:before {
  padding: 0 5px 0 0;
}

.fa-link:before {
  padding: 0 5px 0 0;
}

.sitemap li span {
  display: block;
  line-height: 1.5em;
}

.sitemaplink a:hover {
  opacity: 0.6;
}

.article_list li a {
  margin-bottom: 40px;
  position: relative;
  display: block;
}

.article_list li a>dl {
  display: block;
  margin-left: 225px;
  min-height: 140px;
}

.article_list li a>dl>dt {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  margin: 0 0 15px;
  width: 100%;
  position: inherit;
}

.article_list li a>dl>dd {
  line-height: 1.5;
}

.article_list li a>dl>dd>.rank_cap {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
}

.article_list li a>dl>dd>.rank_cap .cap_border {
  border: 5px solid #ffffff;
  box-shadow: 1px 1px 5px #bbbbbb;
  position: relative;
  vertical-align: middle;
  height: 125px;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.article_list .rank_cap img {
  width: 100%;
  vertical-align: middle;
}

.article_list li a>dl>dd>.txt {
  color: #014478;
  font-size: 16px;
}

.sitemap-list li {
  margin-bottom: 15px;
}

/*共通class
------------------------------------------*/
.serif {
  font-family: serif;
}

.big {
  font-size: 120% !important;
}

.small {
  font-size: 70% !important;
}

.bold {
  font-weight: bold;
}

.block {
  display: block;
}

.white {
  color: #fff !important;
}

.color {
  color: #014478 !important;
}

.shadow {
  text-shadow: 1px 1px 5px #3c3c3c;
}

.shadow_white {
  text-shadow: 1px 1px 5px #fff;
}

.glow {
  text-shadow: 0px 0px 5px #3c3c3c;
}

.glow_white {
  text-shadow: 0px 0px 5px #fff;
}

.edge {
  letter-spacing: 2px;
  text-shadow: 2px 2px 1px #3c3c3c,
    -2px 2px 1px #3c3c3c,
    2px -2px 1px #3c3c3c,
    -2px -2px 1px #3c3c3c,
    2px 0px 1px #3c3c3c,
    0px 2px 1px #3c3c3c,
    -2px 0px 1px #3c3c3c,
    0px -2px 1px #3c3c3c;
}

.edge_white {
  letter-spacing: 2px;
  text-shadow: 2px 2px 1px #fff,
    -2px 2px 1px #fff,
    2px -2px 1px #fff,
    -2px -2px 1px #fff,
    2px 0px 1px #fff,
    0px 2px 1px #fff,
    -2px 0px 1px #fff,
    0px -2px 1px #fff;
}

.edge_color {
  letter-spacing: 2px;
  text-shadow: 2px 2px 1px #014478, -2px 2px 1px #014478, 2px -2px 1px #014478, -2px -2px 1px #014478, 2px 0px 1px #014478, 0px 2px 1px #014478, -2px 0px 1px #014478, 0px -2px 1px #014478;
}

@media screen and (max-width: 768px) {
  .conts-wrap {
    max-width: 100%;
    min-width: 300px;
    margin: auto;
  }

  .header {
    display: none;
  }

  #top {
    padding-top: 50px;
  }

  .spnav {
    color: #ffffff;
    background: var(--maincolor);
  }

  .spnav dd {
    background: #ffffff;
  }

  #article .spnav .nav li a,
  .spnav .nav li a {
    color: var(--maincolor);
    border-bottom: 1px solid #ddd;
  }

  #article .spnav .nav li:first-child a,
  .spnav .nav li:first-child a {
    border-top: 1px solid #ddd;
  }

  #panel-btn-icon {
    background: #ffffff;
  }

  #panel-btn-icon:before,
  #panel-btn-icon:after {
    background: #ffffff;
  }

  .spnav {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    min-width: 300px;
    height: 50px;
    z-index: 200;
  }

  .spnav>dt {
    display: flex;
    align-items: center;
    cursor: pointer;
    line-height: 1.5;
    margin: 0;
  }

  #article .spnav .nav li a,
  .spnav .nav li a {
    list-style: none;
    margin: 0;
    padding: 10px 3%;
    display: block;
    font-size: 14px;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }

  .conts-wrap.mainvisual {
    margin: 0px auto 20px;
  }

  #article .spnav .nav li:last-child a,
  .spnav .nav li:last-child a {
    border-bottom: none;
  }

  #panel-btn {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 50px;
    border-radius: 50%;
    display: table-cell;
    vertical-align: middle;
  }

  #panel-btn-icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 4px;
    margin: -2px 0 0 -25px;
    transition: .2s;
  }

  #panel-btn-icon:before,
  #panel-btn-icon:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 22px;
    height: 4px;
    transition: .3s;
  }

  #panel-btn-icon:before {
    margin-top: -12px;
  }

  #panel-btn-icon:after {
    margin-top: 8px;
  }

  #panel-btn .close {
    background: transparent;
  }

  #panel-btn .close:before,
  #panel-btn .close:after {
    margin-top: -5px;
  }

  #panel-btn .close:before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }

  #panel-btn .close:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }

  .lead h1 {
    font-size: 20px;
  }

  .lead h1 .br {
    display: inline;
  }

  .slide li {
    width: 100%;
    margin-bottom: 10px;
  }

  .atl-lk-p-wrap,
  .atl-lk.right .atl-lk-p-wrap {
    padding: 20px 3% 20px 3%;
  }

  .atl-lst li:hover .catch-img img {
    transform: scale(1) rotate(0deg);
  }

  .atl-lst li:hover .atl-lk-p {
    transform: scale(1);
  }

  .article-wrapper .main {
    width: 100%;
  }

  .heading1 {
    font-size: 18px;
    margin: 5% 0;
  }

  .article-wrapper .main h2 {
    font-size: 18px;
  }

  .article-wrapper .side-nav {
    width: 100%;
    padding-left: 0;
  }

  .breadcrumb {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .breadcrumb li {
    display: flex;
    align-items: center;
  }

  .breadcrumb span {
    display: block;
  }

  .breadcrumb a {
    font-size: 12px;
    padding: 0;
  }

  .breadcrumb li::before {
    padding: 0 5px;
  }

  .official {
    margin: 5% 0;
  }

  .aside-newslist dt {
    margin-top: 30px;
  }

  .aside-newslist dd {
    margin: 20px 0;
  }

  .article_list li a>dl {
    margin-left: 0;
  }

  .article_list li a>dl>dd>.rank_cap {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
  }

  .article_list li a>dl>dd>.rank_cap .cap_border {
    height: 200px;
  }

  #fixedTop {
    right: 15px;
  }

  h2.cont-hl2 {
    font-size: 20px;
    padding: 40px 0 40px;
  }

  .grid-layout {
    margin-bottom: 0;
  }

  .grid-layout ul {
    display: block;
  }

  .grid-layout ul>li {
    margin-bottom: 30px;
    margin-top: 0;
  }

  .grid-layout.odd ul>li:nth-child(2) a,
  .grid-layout.odd ul>li:nth-child(3) a,
  .grid-layout.even ul>li:nth-child(1) a,
  .grid-layout.even ul>li:nth-child(2) a,
  .grid-layout ul>li a {
    display: flex;
    flex-direction: column;
  }

  .grid-layout ul>li .catch-img {
    order: 1;
    margin-bottom: 15px;
  }

  .grid-layout ul>li .atl-lk {
    order: 2;
  }

  .grid-layout ul>li .atl-lk p {
    margin-bottom: 0;
  }

  .grid-layout.odd ul>li:nth-child(2) .catch-img,
  .grid-layout.odd ul>li:nth-child(3) .catch-img,
  .grid-layout.even ul>li:nth-child(1) .catch-img,
  .grid-layout.even ul>li:nth-child(2) .catch-img {
    width: 100%;
    min-width: auto;
    margin-right: 0;
  }

  .grid-layout.odd ul>li:nth-child(2) .catch-img img,
  .grid-layout.odd ul>li:nth-child(3) .catch-img img,
  .grid-layout.even ul>li:nth-child(1) .catch-img img,
  .grid-layout.even ul>li:nth-child(2) .catch-img img {
    aspect-ratio: 2 / 1;
  }

  .grid-layout.odd ul>li:nth-child(2) p,
  .grid-layout.odd ul>li:nth-child(3) p,
  .grid-layout.even ul>li:nth-child(1) p,
  .grid-layout.even ul>li:nth-child(2) p {
    display: block;
  }

  /*共通class
	------------------------------------------*/
  .sp_block {
    display: block;
  }

  .sp_il-block {
    display: inline-block;
  }

}