@charset "UTF-8";
/* -----------------------------------
Flexbox設定
----------------------------------- */
.footer-container,
.header-container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.container {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 25px;
}

.flex {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.flex .col-2,
.flex .col-3 {
  width: 100%;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .footer-container,
  .header-container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .flex {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .flex .col-2 {
    width: calc(50% - 15px);
  }
  .flex .col-3 {
    width: calc(33.33% - 15px);
  }
}


.wrap {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}

.flex-center {
  -webkit-box-pack: center;
          justify-content: center;
}
.flex-around {
  -webkit-box-pack: center;
          justify-content: space-around;
}

.center {
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1029px) {
  .container,
  .footer-container,
  .footer-main-container,
  .header-container {
    max-width: 1029px;
  }
}


@media (min-width: 1240px) {
  .container {
    max-width: 1240px;
  }
}

/* -----------------------------------
リセットCSS
----------------------------------- */
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
img,
p {
  margin: 0;
  padding: 0;
}

hr {
  border: none;
  height: 1px;
  background: #f1eded;
  margin: 2em auto;
  width: 100%;
}

a,
input,
textarea,
img {
  -webkit-transition: .3s;
  transition: .3s;
}

h1,
h2,
h3,
h4,
h5,
p {
  line-height: 1.6em;
}

/* -----------------------------------
ベース設定
----------------------------------- */
* {
  box-sizing: border-box;
}

body {
  color: #000000;
  /*font-family:"Segoe UI", YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;*/
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  padding: 0;
  margin: 0;
}

/* つけるとスマホでしか表示されなくなるクラス */
.only-phone {
  display: inline-block;
}

@media (min-width: 768px) {
  .only-phone {
    display: none;
  }
}

/* つけるとスマホで見たときだけ表示されなくなるクラス */
.except-phone {
  display: none;
}

@media (min-width: 768px) {
  .except-phone {
    display: inline-block;
  }
}

/* つけるとPCでしか表示されなくなるクラス */
.only-pc {
  display: none;
}

@media (min-width: 768px) and (max-width: 1029px) {
  .only-pc {
    display: inline-block;
  }
}

/* つけるとPCで見たときだけ表示されなくなるクラス */
.except-pc {
  display: inline-block;
}

@media (min-width: 768px) and (max-width: 1029px) {
  .except-pc {
    display: none;
  }
}

/* つけると幅PCでしか表示されなくなるクラス */
.only-pc-wide {
  display: none;
}

@media (min-width: 1030px) {
  .only-pc-wide {
    display: inline-block;
  }
}

/* つけると幅PCで見たときだけ表示されなくなるクラス */
.except-pc-wide {
  display: inline-block;
}

@media (min-width: 1030px) {
  .except-pc-wide {
    display: none;
  }
}

.footer-container,
.footer-main-container{
  margin: 0 auto;
  padding: 0 35px;
  font-size: 0.9rem;
}

.header-container {
  margin: 0 auto;
  padding: 0 18px;
}


@media (min-width: 768px) {
  .footer-container,
  .footer-main-container,
  .header-container {
    padding: 0 50px 0 80px;
  }
  .footer-container,
  .footer-main-container {
    font-size: 1.0rem;
  }

}

@media (min-width: 900px) {
  .footer-container,
  .footer-main-container,
  .header-container {
    padding: 0 10px 0 30px;
  }
}

@media (min-width: 1080px) {
  .footer-container,
  .footer-main-container,
  .header-container {
    padding: 0 30px 0 80px;
  }
}

@media (min-width: 1340px) {
  .footer-container,
  .footer-main-container,
  .header-container {
    padding: 0 80px 0 100px;
  }
}

/* -----------------------------------
見出し、テキストなど
----------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
  line-height: 1.8em;
}

h1.center,
h2.center,
h3.center,
h4.center,
h5.center,
h6.center,
ol.center,
p.center,
ul.center {
  text-align: center;
}

p {
  margin: 0 auto 1em;
  font-size: 15px;
}

ol,
ul {
  font-size: 15px;
}

code {
  /* font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;*/
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  background: #f5f5f5;
  font-size: 12px;
  border: 1px solid #cacaca;
  padding: 1px 5px;
  border-radius: 3px;
  margin: 0 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0.8em auto 0.4em;
}

h1 {
  text-align: center;
  margin: 40px auto;
}

h2 {
  font-size: 20px;
}

@media (min-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 18px;
}

@media (min-width: 768px) {
  h3 {
    font-size: 21px;
  }
}

h4 {
  font-size: 17px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 15px;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), color-stop(30%, #ffff00));
  background: linear-gradient(transparent 30%, #ffff00 30%);
  font-weight: bold;
}

/* -----------------------------------
リンク関係
----------------------------------- */
a {
  color: #1d3994;
}

a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: #000000;
}

a:hover img {
  opacity: 0.6;
}

a.btn {
  display: block;
  background: #000000;
  color: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 150px;
  text-align: center;
  padding: 10px 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

a.btn.center {
  margin: 40px auto;
}

a.btn:hover {
  background: #6F7FA5;
}

/* -----------------------------------
ヘッダー
----------------------------------- */
header {
  position: relative;
  overflow: hidden;
  padding: 0;
  height: 20px;
}

@media (min-width: 1030px) {
  header {
    height: 70px;
  }
}

.logo-sm{
  padding: 0 20px 0 0;
}

/* -----------------------------------
メニュー
----------------------------------- */
nav#globalnav {
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;
  height: 60px;
}

@media (min-width: 1030px) {
  nav#globalnav {
    height: 80px;
    top: 0;
  }
}

nav#globalnav .header-container {
  background: #ffffff;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
}

@media (min-width: 1030px) {
  nav#globalnav .header-container {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
}

nav#globalnav h1 {
  margin: 0;
  line-height: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (min-width: 1030px) {
  nav#globalnav h1 {
    line-height: 80px;
  }
}

nav#globalnav h1 a {
  color: #000000;
  display: block;
  padding: 0;
  font-size: 18px;
}

nav#globalnav h1 a:hover {
  color: #6F7FA5;
}

nav#globalnav h1 a img {
  height: 40px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  top: 10px;
}

nav#globalnav ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

nav#globalnav ul li a {
  display: block;
  text-decoration: none;
  color: #000000;
}

nav#globalnav ul li a:hover {
  color: #6F7FA5;
  text-decoration: none;
}

@media (min-width: 1030px) {
nav#globalnav ul li a:hover {
  /*text-decoration: underline;
  text-underline-offset: 8px;*/
  text-decoration: none;
}
}

nav#globalnav ul li.selected a {
  text-decoration: none;
}

@media (min-width: 1030px) {
nav#globalnav ul li.selected a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 10px;
}
}

/* -----------------------------------
上からスライドインしてくるタイプのハンバーガーメニュー
----------------------------------- */
nav#globalnav .header-container {
  max-height: 100vh;
}

@media (min-width: 1030px) {
  nav#globalnav .header-container {
    overflow-y: inherit;
  }
}

nav#globalnav ul#navmenu {
  list-style: none;
  position: relative;
  background: #ffffff;
  width: 100%;
  height: auto;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 1030px) {
  nav#globalnav ul#navmenu {
    position: relative;
    background: transparent;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 85%;
    height: 80px;
    right: auto;
    padding: 0;
    overflow-y: hidden;
    box-shadow: none;
    -webkit-transition: none;
    transition: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  nav#globalnav ul#navmenu::-webkit-scrollbar {
    display: none;
  }
}

nav#globalnav ul#navmenu li {
  margin: 0;
  min-height: 0;
  height: 0;
}

@media (min-width: 1030px) {
  nav#globalnav ul#navmenu li:hover ul {
    opacity: 1;
    z-index: 10;
  }
  nav#globalnav ul#navmenu li:hover ul li {
    height: 46px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav#globalnav ul#navmenu li:hover ul li a {
    height: 46px;
    line-height: 46px;
    overflow: visible;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}

nav#globalnav ul#navmenu li a {
  height: 0;
  opacity: 0;
}

@media (min-width: 9px) {
  nav#globalnav ul#navmenu li a {
    padding: 0 5px;
  }
}

@media (min-width: 1030px) {
  nav#globalnav ul#navmenu li a {
    opacity: 1;
    display: block;
    font-weight: bold;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 8px;
    margin: auto;
    font-size: 16px;
    height: 80px;
    line-height: 80px;
  }
}
@media (min-width: 1300px) {
  nav#globalnav ul#navmenu li a {
    padding: 0 15px;
  }
}


nav#globalnav ul#navmenu.checked li {
  min-height: 46px;
  height: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

nav#globalnav ul#navmenu.checked li a {
  opacity: 1;
  height: 46px;
  line-height: 46px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

nav#globalnav ul#navmenu ul {
  list-style: none;
  margin-left: 20px;
}

@media (min-width: 1030px) {
  nav#globalnav ul#navmenu ul {
    margin-left: auto;
    opacity: 0;
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    height: auto;
    background: #ffffffc7;
    position: fixed;
  }
  nav#globalnav ul#navmenu ul li {
    overflow: hidden;
    position: relative;
    height: 0;
  }
  nav#globalnav ul#navmenu ul li a {
    min-width: 150px;
    padding: 0 20px;
    width: 100%;
    text-align: left;
    height: 0;
    line-height: 0;
    margin: 0;
    font-size: 16px;
  }
}

button#menubtn {
  color: #000000;
  margin: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 24px;
  position: absolute;
  color: #000000;
  top: 10px;
  right: 15px;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  z-index: 99999;
}

@media (min-width: 1030px) {
  button#menubtn {
    display: none;
  }
}

button#menubtn:hover {
  cursor: pointer;
}

button#menubtn#inmenu {
  color: #ffffff;
}

button#menubtn#inmenu-back {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: -1;
}

/* -----------------------------------
メイン部分
----------------------------------- */
main {
  margin: 0 auto;
  overflow: hidden;
}

section {
  padding: 10px 16px;
}

section#main-visual {
  padding: 0;
}

@media (min-width: 768px) {
  section {
    padding: 0 35px 20px 35px;
  }
}

section.indent p {
  line-height: 2.0em;
  text-indent: 1em;
}

.container {
  background: #ffffff;
}


#main-visual {
  height: calc(100vh - 60px);
  position: relative;
}

@media (min-width: 768px) {
  #main-visual {
    height: 500px;
  }
}

#main-visual .container {
  padding: 0;
  margin: 0 auto;
  height: 100%;
}

#main-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* -----------------------------------
フッター部分
----------------------------------- */
footer {
  margin: 0 auto;
  overflow: hidden;
  min-height: 50px;
}

footer p {
  margin: 15px auto;
  font-size: 12px;
}

.footer-main-container {
  background: linear-gradient(to right, #D3E4F4, #F1F4FB);
  padding-top: 15px;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .footer-main-container {
    padding-top: 25px;
    padding-bottom: 30px;
  }
}

.footer-container {
  background: #424F7A;
  color: #e9e9e9;
  overflow: hidden;
  min-height: 50px;
}

/* -----------------------------------
区切り線
----------------------------------- */
hr {
  width: 100px;
  height: 1px;
  background: #b5b5b5;
}

img.line {
  display: block;
  width: 95%;
  max-width: 700px;
  height: auto;
  margin: 40px auto;
}

/* -----------------------------------
画像用
----------------------------------- */
.container ul.banner {
  list-style: none;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.container ul.banner li {
  width: 46%;
  position: relative;
  margin: 0 0 2%;
}

.container ul.banner li:nth-of-type(1n) {
margin-right: 0;
}

.container ul.banner li:nth-of-type(2n) {
margin-left: 8%;
}


@media (min-width: 768px) {
  .container ul.banner li {
    width: 29%;
    margin: 0 0 calc(5% / 3);
  }
  .container ul.banner li:not(:nth-of-type(2n)) {
    margin-right: 0;
  }
  .container ul.banner li:nth-of-type(2n) {
    margin-left: 0;
  }
  .container ul.banner li:not(:nth-of-type(3n)) {
    margin-right: calc(12% / 2);
  }

}

.container ul.banner li:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.container ul.banner li a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.container ul.banner li a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}


/* -----------------------------------
リスト
----------------------------------- */

.container ul.list-point {
  margin-left: 20px;
  margin-bottom: 0;
  list-style-type: circle;
}


.container ol.list-number {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
}

.container ol.list-number {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
}

.container ol.list-number li {
  margin-left: 30px;
  margin-bottom: 10px;
  position: relative;
}

.container ol.list-number li:before {
  background: #666666;
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  color: white;
  font-weight: bold;
  font-size: 15px;
  top: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -35px;
  text-align: center;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 20px;
}


/* -----------------------------------
テーブル
----------------------------------- */
table {
  border-collapse: collapse;
  min-width: 640px;
}

table td,
table th {
  padding: 5px 14px;
}

table tr {
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}

table th {
  background: #f5f5f5;
}

.table_wrapper {
  max-width: 100%;
  overflow-x: auto;
  margin: 40px auto 40px 0;
}

/* -----------------------------------
上に戻るボタン
----------------------------------- */
a#totop {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 20;
  background: #000000;
  right: 0;
  bottom: 0;
  border-left: 1px solid #ffffff45;
}

a#totop.totop-hidden {
  opacity: 0;
  z-index: -1;
}

a#totop:before {
  content: '';
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: auto;
  top: 24px;
  right: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a#totop:hover:before {
  top: 20px;
}

/* -----------------------------------
  expansion
----------------------------------- */
.partition-line{
    border-top: 1px solid #95A4B7;
}

.menu-heading {
    border-bottom: 3px solid #f2f2f2;
    margin: 0 0 30px 0;
}

.menu-heading span {
    display: inline-block;
    position: relative;
    padding: 0 .4em .2em;
    color: #000000;
}

.menu-heading span::before {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #424f7a;
    content: '';
}

.pdf-button,
.pdf-bl-button,
.pdf-gr-button,
.word-button {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 250px;
    padding: .7em 2em;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    font-size: 1em;
}

.pdf-button:hover,
.pdf-bl-button:hover,
.pdf-gr-button:hover,
.word-button:hover {
    cursor: pointer;
}

.pdf-button::after,
.pdf-bl-button::after,
.pdf-gr-button::after,
.word-button::after {
    width: 1.5em;
    height: 1.5em;
    content: '';
    display: inline-block;
    margin: 0 0 0 8px;
}

.pdf-button {
    background-color: #DA5F4E;
}

.pdf-button:hover {
    background-color: #C93D2A;
}

.pdf-button::after {
    background: url("../img/pdf.png") no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.pdf-bl-button {
    background-color: #7794D4;
}

.pdf-bl-button:hover {
    background-color: #4D73C5;
}

.pdf-bl-button::after {
    background: url("../img/pdf.png") no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.pdf-gr-button {
    background-color: #009961;
}

.pdf-gr-button:hover {
    background-color: #006640;
}

.pdf-gr-button::after {
    background: url("../img/pdf.png") no-repeat;
    background-size: contain;
    vertical-align: middle;
}


.word-button {
    background-color: #1462BA;
}

.word-button:hover {
    background-color: #0F4A89;
}

.word-button::after {
    background: url("../img/word.png") no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.bold-font {
    font-weight: bold;
}

.red-font {
    color: #ed551b;
}

.big-font {
    font-size: 1.2rem;
}


.g-map {
    width: 800px;
    height: 450px;
}

@media screen and (max-width: 767px){
.g-map {
    margin: auto auto;
    width: auto;
    height: 500px;
}
}

p a:hover {
 text-decoration: underline; 
}

a.external{
  background: url("../img/external.png") no-repeat right center;
  padding-right: 22px;
  margin-right: 5px;
}
a.internal{
  background: url("../img/internal.png") no-repeat right center;
  padding-right: 22px;
  margin-right: 5px;
}

ul.pos_rel { 
    position: relative;
    margin-bottom: 30px;
}
ul.pos_rel > li {
    display: inline-block;
    margin-left: 30px;
    vertical-align: middle;
    font-weight: bold;
    cursor: pointer;
}                

a.btn_sub_menu {
  position: relative;
  width: 150px;
  display: inline-block;
  padding: 0.8rem 0 0.8rem 1.0rem;
  border: 2px solid;
  transition: all 0.3s;
  color: #000000;
  font-size: 1.0em;
  letter-spacing: 0.03em;
  z-index: 1;
  overflow: hidden;
}
a.btn_sub_menu:before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -25px;
  bottom: -25px;
  width: 50px;
  height: 50px;
  background-color: #424F7A;
  transform: rotate(-45deg);
  transition: all 0.3s;
}
a.btn_sub_menu .arrow {
  color: #000;
  position: absolute;
  bottom: 10px;
  right: 6px;
  margin-left: 2px;
  margin-top: 10px;
  width: 15px;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s;
}
a.btn_sub_menu .arrow:before {
  content: "";
  position: absolute;
  right: 1px;
  top: -4px;
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
a.btn_sub_menu:hover {
}
a.btn_sub_menu:hover:before {
  right: -80px;
}
a.btn_sub_menu:hover .arrow {
  right: -20px;
}


@media (max-width: 768px) {
ul.pos_rel > li {
    margin-left: 15px;
}                
a.btn_sub_menu {
  border: 2px solid;
  font-size: 1.1em;
}
}
a.button-link:hover {
  text-decoration: none;
}

.box-square {
    max-width: 700px;
    margin: 10px 0 0 20px;
    border-radius: 3px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

.box-square span#box-square-title {
    display: flex;
    height: 5px;
    background-color: #092a44;
    color: #fff;
}

.box-square p {
    margin: 0;
    padding: 1em 1em;
    color: #333;
}

@media (max-width: 768px) {
.box-square {
    margin: 10px auto 0 auto;
}
}

/*-------------------------------------------------------------------------
  index
---------------------------------------------------------------------------*/
.news-list{
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.news-list .item div{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #000000;
  border-bottom: 1px solid #CCC;
  padding: 20px 20px;
}
.news-list .item:first-child div{
  border-top: 1px solid #CCC;
}
.news-list .item .date{
  margin: 0;
  min-width: 120px;
  font-size: 16px;
  padding: 0 20px 0 0;
}
.news-list .item .title{
  margin: 0;
  width: 100%;
}
.news-list .item a:hover .title{
  color: #00F;
}

@media screen and (max-width: 767px){
.news-list .item div{
  flex-wrap: wrap;
}
.news-list .item .date{
  min-width: 100px;
}
.news-list .item .title{
  margin-top: 10px;
}
}

.sub-heading {
    padding:0 .4em .2em;
    border-bottom: 3px double #95A4B7;
    background-color: #ffffff;
    color: #000000;
}

/*-------------------------------------------------------------------------
  greetings
---------------------------------------------------------------------------*/
.list-normal * {margin: 0;padding: 0;}

.list-normal .list {
    padding: 0.5rem 2rem 2rem 2rem;
    margin: 2rem;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
    position: relative;
}

@media screen and (max-width: 767px){
.list-normal .list {
    padding: 0.5rem 1rem 2rem 1rem;
    margin: 0.5rem;
}
}

.list-normal figure {
    margin-bottom: 1rem;
}

.list-normal figure p{
    padding-top: 10px;
}

.list-normal figure img{
    max-width: 80%;
}
.list-normal figure img{
    margin: .5rem 2rem 0 2rem ;
}
.list-normal figure p{
    margin: 0 0 0 2rem ;
}

@media screen and (min-width:600px) {

.list-normal .text {
    flex: 1;
    letter-spacing: 0.05em;
}

.list-normal .list {
    padding: 2rem;
    display: flex;
    gap: 2rem;
}

.list-normal figure {
    width: 25%;
    margin: 0 10px 20px 0;
}
.list-normal figure p{
    padding-top: 5px;
    font-size: 0.8rem;
}
.list-normal figure img{
    max-width: 100%;
}
}
/*-------------------------------------------------------------------------
  schedule
---------------------------------------------------------------------------*/
.sub-contents p{
    font-size: 1.05em;
    padding: 10px 0 10px 5px;
}

/*-------------------------------------------------------------------------
  program
---------------------------------------------------------------------------*/
.pro-box {
    margin: 15px 0;
    max-width: 800px;
    padding: .5em 1.5em 1em;
    border-top: 5px solid #d3d3d3;
    border-radius: 3px;
    box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
    background-color: #f8f8f8;
}

.pro-box > div {
    margin: .5em 0;
    color: #333;
    font-weight: 600;
    font-size: 1.05em;
}

.pro-box > p {
    margin: 0;
}

/*-------------------------------------------------------------------------
  application
---------------------------------------------------------------------------*/

.lg-sub-heading {
    display: flex;
    align-items: center;
    padding: .5em .7em;
    background: linear-gradient(to right, #D3E4F4, #F1F4FB);
    color: #333333;
    margin: 2em 0 1.5em 0;
}

.lg-sub-heading::before {
    display: inline-block;
    width: 5px;
    height: 1.5em;
    margin-right: .5em;
    background-color: #424f7a;
    content: '';
}

.small-heading {
    font-weight: bold;
    margin: 30px 0 10px 0;
}

.small-sub-heading {
    padding:0 .4em .2em;
    border-bottom: 1px solid #95A4B7;
    background-color: #ffffff;
    color: #000000;
}

table.sub-list {
  table-layout: fixed;
  width: 100%;
  min-width: auto;
  border: 2px solid #ccc;
}

table.sub-list th,
table.sub-list td {
  padding: 5px 5px 5px 5px;
  border-right: 1px solid #bbb;
  word-wrap: break-word;
  white-space: normal;
}

table.sub-list th.bdm-line,
table.sub-list td.bdm-line {
  border-top: 1px solid #ccc;
}

table.sub-list th.bd-line,
table.sub-list td.bd-line {
  border-top: 2px solid #ccc;
}

table.sub-list th.top-th {
    width: 10%;
    color: #fff;
    background: #535890;
}
table.sub-list td {
  text-align: center;
}
table.sub-list p {
  margin: 0;
}


table.sub-list-hight th,
table.sub-list-hight td {
  padding: 10px 5px 10px 5px;
}

.app-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 230px;
    margin:5px 0 10px 0;
    padding: 1em 2em;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 3px rgb(0 0 0 / 25%), 0 2px 3px -2px rgb(0 0 0 / 15%);
    background-color: #ed7c31;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
}

.app-button:hover {
    background-color: #dd6c21;
    text-decoration: none;
    cursor: pointer;
}

a.app-button-link:hover {
    text-decoration: none;
}

/*-------------------------------------------------------------------------
  access
---------------------------------------------------------------------------*/

.access-contents p{
    padding: 10px 0 10px 5px;
}

.photo-adjust{
    margin-right: 15%;
}
@media (max-width: 768px) {
.photo-adjust{
    margin-right: 0;
}
}

.access-contents p{
    padding: 10px 0 10px 5px;
}


.access_img{
    max-width: 700px;
}
@media (max-width: 768px) {
.access_img{
    width: 100%
}
}