@import url('https://use.typekit.net/org3ywm.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.2/font/bootstrap-icons.css");

:root {
  --font-family-noto-sans: noto-sans, sans-serif;
  --font-family-neo-sans: neo-sans, sans-serif;
  --color-black: #3A3F3B;
  --color-gray: #F2F2F2;
  --color-orange: #F89600;
  --color-orange-light: #F2BE7E;
  --color-blue: #3F61A6;
  --color-blue-dark: #002891;
  /*--container-width: 1440px;*/
  --container-width: 1400px;
}

.my-body {
  display: flex;
  flex-direction: column;
  color: var(--color-black);
  min-height: 100vh;
  min-height: 100dvh;
  min-width: calc(var(--container-width) + 20px);
  font-family: var(--font-family-noto-sans);
}

.my-header {
  height: 380px;
  background: #fff;
}

.my-header-container {
  position: relative;
  width: var(--container-width);
  height: 100%;
  background: url(../img/bg-header.png) right 0 top -99px no-repeat;
  margin: 0 auto;
}

.my-header-logo {
  position: absolute;
  top: 40px;
  left: 0;
}

.my-header-logo a {
  position: relative;
  display: flex;
  align-items: center;
  height: 110px;
  padding-right: 260px;
  padding-left: 330px;
  background: url(../img/logo.svg) 0 0 no-repeat;
  background-size: contain;
  font-size: 36px;
  color: var(--color-blue-dark);
  text-decoration: none;
}

.my-header-logo a::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 180px;
  background: url(../img/logo-comment.png) center / contain no-repeat;
}

.my-header-text {
  position: absolute;
  top: 14px;
  right: 0;
  color: var(--color-blue-dark);
}

.my-header-menu {
  position: absolute;
  right: 0;
  bottom: 40px;
  left: 0;
}

.my-header-menu ul {
  display: flex;
  height: 140px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.my-header-menu li {
  flex: 1;
}

.my-header-menu a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 120px;
  padding-top: 54px;
  text-align: center;
  font-size: 20px;
  color: inherit;
  text-decoration: none;
}

.my-header-menu a::after {
  content: '';
  position: absolute;
  right: 30px;
  bottom: 0;
  left: 30px;
  height: 2px;
  background: var(--color-orange);
  transform: scale(0);
  transition: transform ease-out .3s;
}

.my-header-menu a:hover::after {
  transform: scale(1);
}

.my-header-menu a > strong {
  position: absolute;
  top: 24px;
  right: 0;
  left: 0;
  font-family: var(--font-family-neo-sans);
}

.my-header-menu a > span {
  flex: 1;
}

.my-header-menu-open,
.my-header-menu-close,
#my-header-menu {
  display: none;
}

.my-body.-lp .my-header {
  height: 200px;
}

.my-body.-lp .my-header-container {
  background-image: none;
}

.my-body.-lp .my-header-menu-open,
.my-body.-lp .my-header-menu {
  display: none;
}

.my-main {
  flex: 1;
}

.my-main a {
  color: var(--color-blue);
  text-decoration: none;
}

.my-main a:hover {
  text-decoration: underline;
}

.my-main-visual {
  width: 100%;
  height: 700px;
  background: url(../img/main-visual.jpg) center center no-repeat;
  background-size: cover;
  color: #fff;
  font-weight: bold;
  overflow: hidden;
}

.my-main-visual-text01 {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 22.4%;
  font-size: 3.8em;
  letter-spacing: .1em;
}

.my-main-visual-text02 {
  text-align: right;
  font-size: 1.8rem;
  letter-spacing: .1rem;
}

.my-main-container {
  position: relative;
  width: var(--container-width);
  margin: 0 auto;
}

.my-main-title {
  display: flex;
  justify-content: center;
  align-items: center;
  background: center center no-repeat;
  background-size: cover;
  height: 165px;
  font-size: 30px;
  margin-bottom: 80px;
}

.my-main-title > h2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 480px;
  min-height: 136px;
  padding: 15px;
  margin: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(2px);
}

.my-main-title > h2 > strong {
  font-family: var(--font-family-neo-sans);
  font-size: 50px;
  color: var(--color-orange);
}

.my-section {
  margin-top: 100px;
}

.my-section > h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 70px;
  font-size: 20px;
}

.my-section > h3::before {
  content: '';
  display: block;
  width: 100px;
  height: 5px;
  background: var(--color-orange);
}

.my-section > h3 > strong {
  font-family: var(--font-family-neo-sans);
  font-size: 50px;
  color: var(--color-blue);
}

.my-news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 37px;
}

.my-news-list > a {
  width: calc((100% - 37px * 3) / 4);
  padding: 40px 30px;
  border-radius: 24px;
  border: 2px solid var(--color-orange-light);
  transition: background .3s ease-out;
}

.my-news-list > a:hover {
  text-decoration: none;
  background: var(--color-orange-light);
}

.my-news-list-img {
  height: 0;
  padding-top: 71.8%;
  background: url(/assets/img/img-news.jpg) center center;
  background-size: cover;
  margin-bottom: 15px;
}

.my-news-list-date {
  margin-bottom: 10px;
}

.my-news-list-title {
  font-weight: bold;
  margin-bottom: 18px;
}

.my-news-list-text {
  height: 90px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.my-news-list-link {
  font-size: 20px;
  text-align: right;
  margin-top: 18px;
}

.my-home-links {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 102px;
}

.my-home-links a {
  width: calc((100% - 102px * 3) / 4);
  transition: opacity .3s ease-out;
}

.my-home-links a:hover {
  opacity: .8;
}

.my-home-links a img {
  display: block;
  width: 100%;
}

.my-content {
  max-width: 950px;
  margin: 0 auto;
}

.my-table {
  min-width: 600px;
  margin: 0 auto;
}

.my-table th,
.my-table td {
  padding: 5px;
  border: 1px solid var(--color-black);
}

.my-table th {
  white-space: nowrap;
  background: var(--color-gray);
}

.my-table.-borderless th,
.my-table.-borderless td {
  border: 0;
}

.my-tategaki {
  writing-mode: tb-rl;
  white-space: nowrap;
  margin: 0 auto;
}

.my-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 47%;
}

.my-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.my-footer {
  background: var(--color-gray);
  display: flex;
  flex-direction: column;
  margin-top: 100px;
}

.my-footer-container {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--container-width);
  margin: 0 auto;
  padding: 70px 0 70px 140px;
}

.my-footer-logo a {
  display: block;
  width: 310px;
  padding-top: 126px;
  background: url(../img/logo.svg) 0 0 no-repeat;
  background-size: contain;
  color: inherit;
  text-decoration: none;
}

.my-footer-logo a > strong {
  display: block;
  font-size: 20px;
}

.my-footer-menu {
  width: 845px;
  border-left: 1px solid #707070;
}

.my-footer-menu ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 24px;
  height: 140px;
  margin: 0 0 0 160px;
  padding: 0;
  list-style: none;
}

.my-footer-menu li {
  width: calc(100% / 3);
}

.my-footer-menu a {
  color: inherit;
  font-size: 20px;
  text-decoration: none;
}

.my-footer > small {
  display: block;
  background: var(--color-blue-dark);
  font-size: 16px;
  text-align: center;
  padding: 20px 10px;
  color: #fff;
}

/* member */
#modalForm .modal-body {
  padding: 0;
}

#modalForm iframe {
  display: block;
  width: 100%;
  height: calc(100vh - 240px);
}

/* GSC */
.gsc-selected-option {
  white-space: nowrap;
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  :root {
    --container-width: 100%;
  }

  .my-body {
    min-width: 0;
  }

  .my-header,
  .my-body.-lp .my-header {
    height: 210px;
  }

  .my-header-container {
    background: url(../img/bg-header-sp.png) 10px -22px no-repeat;
  }

  .my-header-logo {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    width: 182px;
    margin: 0 auto;
  }

  .my-header-logo a {
    display: block;
    height: auto;
    padding: 74px 0 55px;
    font-size: 14px;
    text-align: center;
  }

  .my-header-logo a br {
    display: none;
  }

  .my-header-logo a::after {
    top: auto;
    left: 0;
    width: auto;
    height: 50px;
    background-image: url(../img/logo-comment-sp.png);
  }

  .my-header-text {
    top: 17px;
    right: 62px;
    font-size: 10px;
  }

  .my-header-menu {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: 0;
    overflow: hidden;
    padding: 65px 0 45px;
    background: var(--color-blue);
    z-index: 2;
    transition: width ease-out .3s;
  }

  :checked + .my-header-menu {
    width: 250px;
  }

  .my-header-menu ul {
    flex-direction: column;
    row-gap: 10px;
    height: auto;
  }

  .my-header-menu li {
    flex: 0;
  }

  .my-header-menu a {
    width: 250px;
    height: 40px;
    padding: 0 50px;
    text-align: left;
    font-size: 14px;
    color: #fff;
  }

  .my-header-menu a::after,
  .my-header-menu a > strong {
    display: none;
  }

  .my-header-menu-open,
  .my-header-menu-close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 0;
    width: 45px;
    height: 35px;
  }

  .my-main {
    font-size: 14px;
  }

  .my-main-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 270px;
  }

  .my-main-visual-text01 {
    margin: 0 .5em;
    font-size: 2.4em;
    letter-spacing: 0;
  }

  .my-main-visual-text02 {
    font-size: 1.2rem;
    letter-spacing: 0;
  }

  .my-main-container {
    width: calc(var(--container-width) - 20px);
  }

  .my-main-title {
    margin-right: -10px;
    margin-bottom: 50px;
    margin-left: -10px;
    font-size: 20px;
  }

  .my-main-title > h2 {
    width: 100%;
    min-height: 110px;
  }

  .my-main-title > h2 > strong {
    font-size: 30px;
  }

  .my-section {
    margin-top: 50px;
  }

  .my-section > h3 {
    gap: 15px;
    margin-bottom: 40px;
    font-size: 10px;
  }

  .my-section > h3::before {
    width: 60px;
    height: 3px;
  }

  .my-section > h3 > strong {
    font-size: 24px;
  }

  .my-news-list {
    flex-direction: column;
    gap: 20px;
  }

  .my-news-list a {
    position: relative;
    width: 100%;
    padding: 15px 12px 15px 112px;
    border-radius: 7px;
    border-width: 1px;
    font-size: 10px;
  }

  .my-news-list-img {
    position: absolute;
    top: 15px;
    left: 12px;
    width: 90px;
    height: 80px;
    padding-top: 0;
    margin-bottom: 0;
  }

  .my-news-list-date {
    margin-bottom: 5px;
  }

  .my-news-list-title {
    margin-bottom: 5px;
  }

  .my-news-list-text {
    height: 45px;
    -webkit-line-clamp: 3;
  }

  .my-news-list-link {
    font-size: 11px;
    margin-top: 9px;
  }

  .my-home-links {
    gap: 15px 27px;
  }

  .my-home-links a {
    width: calc((100% - 27px) / 2);
  }

  .my-table {
    min-width: 0;
  }

  .my-map {
    padding-top: 100%;
  }

  .my-footer {
    margin-top: 50px;
  }

  .my-footer-container {
    flex-direction: column;
    padding: 20px 0;
  }

  .my-footer-logo a {
    width: 183px;
    padding-top: 70px;
    font-size: 10px;
  }

  .my-footer-logo a > strong {
    font-size: 14px;
  }

  .my-footer-menu {
    width: 100%;
    border-left: 0;
  }

  .my-footer-menu ul {
    display: flex;
    flex-direction: row;
    row-gap: 0;
    height: auto;
    margin: 26px 0 0;
    border-top: 1px solid var(--color-black);
    border-left: 1px solid var(--color-black);
  }

  .my-footer-menu li {
    width: calc(100% / 2);
  }

  .my-footer-menu a {
    display: block;
    padding: 12px 6px 12px 40px;
    font-size: 14px;
    background: url(../img/icon-arrow-link.svg) 15px center no-repeat;
    background-size: 20px;
    border-right: 1px solid var(--color-black);
    border-bottom: 1px solid var(--color-black);
  }

  .my-footer > small {
    font-size: 10px;
    padding: 7px 10px;
  }
}
.archive_link{
    margin: 30px 0;
    text-align: center;
}
.archive_link a{
    background-color: #002891;
    padding: 10px 30px;
    border-radius: 10px;
    color: #f89600;
    font-weight: bold;

}
