@charset "UTF-8";
@-o-viewport {
  width: device-width;
  initial-scale: 1;
}
@viewport {
  width: device-width;
  initial-scale: 1;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

* {
  min-height: 0;
  min-width: 0;
}

* {
  box-sizing: border-box;
  font-variant-ligatures: none;
}

html {
  line-height: 1;
}

html, body {
  width: 100%;
  height: auto;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

a {
  text-decoration: none;
}

/*--------------------------------
レスポンシブ
--------------------------------*/
/*--------------------------------
全体
--------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  background-color: #ffffff;
  background-image: linear-gradient(90deg, #EAFF95 0.5px, transparent 0.5px), linear-gradient(#EAFF95 0.5px, transparent 0.5px);
  background-position: 10px 10px;
  background-size: 20.5px 20.5px;
}

.container {
  width: 90%;
  max-width: 1440px;
  margin: 0px auto;
}
@media screen and (orientation: portrait) {
  .container {
    width: 85%;
  }
}
@media only screen and (max-width: 460px) {
  .container {
    width: 85%;
  }
}
@media screen and (orientation: portrait) {
  .container {
    flex-direction: column;
  }
}
@media only screen and (max-width: 460px) {
  .container {
    flex-direction: column;
  }
}

img {
  max-width: 100%;
  vertical-align: auto;
}

li {
  list-style: none;
}

a {
  color: #001C30;
  text-decoration: none;
}

.section-title {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.section-title .en {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3rem;
  color: #64ccc5;
}
@media only screen and (max-width: 460px) {
  .section-title .en {
    font-size: 2.5rem;
  }
}

.section-title .ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
  font-size: 1rem;
  color: #001C30;
  margin-top: 0.6rem;
}

#content {
  padding-top: 5rem;
}

/*--------------------------------
header
--------------------------------*/
#header {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 999;
  background-color: #ffffff;
  background-image: linear-gradient(90deg, #EAFF95 0.5px, transparent 0.5px), linear-gradient(#EAFF95 0.5px, transparent 0.5px);
  background-position: 10px 10px;
  background-size: 20.5px 20.5px;
}

#header .innner-wrapper {
  height: 100px;
  padding: 0% 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (orientation: portrait) {
  #header .innner-wrapper {
    height: 80px;
  }
}
@media only screen and (max-width: 460px) {
  #header .innner-wrapper {
    height: 80px;
  }
}
#header .innner-wrapper .logo {
  width: 12%;
  min-width: 100px;
  max-width: 140px;
}
@media only screen and (max-width: 768px) {
  #header .innner-wrapper .logo {
    width: 5%;
  }
}
#header .innner-wrapper nav {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 3rem;
  color: #001C30;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  #header .innner-wrapper nav {
    margin-right: 1rem;
    font-size: 1rem;
  }
}
#header .innner-wrapper ul {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media only screen and (max-width: 768px) {
  #header .innner-wrapper ul {
    gap: 2rem;
  }
}
#header .innner-wrapper a {
  transition: opacity 0.3s ease;
  opacity: 1;
}
#header .innner-wrapper a:hover {
  opacity: 0.7;
}
#header .innner-wrapper .contactButtonBox {
  display: flex;
}
#header .innner-wrapper .contactButtonBox a {
  color: #001C30;
  background-color: #EAFF95;
  border-radius: 9999px;
  padding: 1em 2em;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  font-optical-sizing: auto;
}
@media only screen and (max-width: 768px) {
  #header .innner-wrapper .contactButtonBox {
    display: none;
  }
}

/*--------------------------------
メイン
--------------------------------*/
main {
  margin-top: 70px;
}
@media screen and (orientation: portrait) {
  main {
    margin-top: 35px;
  }
}

/*--------------------------------
mainVI
--------------------------------*/
.slider-wrap {
  width: 100%;
  overflow: hidden;
}
.slider-wrap .image-slider {
  width: 260vw;
  white-space: nowrap;
  animation: slider 130s linear infinite;
  margin: 0;
  font-size: 0;
}
@media screen and (orientation: portrait) {
  .slider-wrap .image-slider {
    width: 540vw;
  }
}
.slider-wrap .image-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-wrap .image-slider .slider-image {
  width: 100%;
  height: auto;
}
@keyframes slider {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}

/*--------------------------------
About
--------------------------------*/
.about {
  margin-top: 3rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (orientation: portrait) {
  .about {
    flex-direction: column;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 460px) {
  .about {
    flex-direction: column;
    margin-top: 1rem;
  }
}

.about-title {
  width: 400px;
}
@media screen and (orientation: portrait) {
  .about-title {
    display: none;
  }
}
@media only screen and (max-width: 460px) {
  .about-title {
    display: none;
  }
}

@media screen and (orientation: portrait) {
  #about {
    margin: auto;
    width: auto;
    height: auto;
  }
}
@media only screen and (max-width: 460px) {
  #about {
    margin: auto;
    width: auto;
    height: auto;
  }
}

#about h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 2.5rem;
  line-height: 1.8em;
  letter-spacing: 0.05em;
  color: #001C30;
}
@media screen and (orientation: portrait) {
  #about h1 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 460px) {
  #about h1 {
    font-size: 1.8rem;
  }
}

#about p {
  flex-wrap: wrap;
  margin-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 2.2rem;
  color: #001C30;
}
@media screen and (orientation: portrait) {
  #about p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 460px) {
  #about p {
    font-size: 1rem;
  }
}

/*--------------------------------
Service
--------------------------------*/
.service {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4%;
}
@media screen and (orientation: portrait) {
  .service {
    flex-direction: column;
    margin-top: 5%;
  }
}
@media only screen and (max-width: 460px) {
  .service {
    flex-direction: column;
    margin-top: 5%;
  }
}

.service .left {
  flex-basis: 28%;
}
@media only screen and (max-width: 1350px) {
  .service .left {
    flex-basis: 100%;
    padding-bottom: 2em;
  }
}

.service p {
  margin-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 2.1rem;
  color: #001C30;
}
@media screen and (orientation: portrait) {
  .service p {
    width: auto;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 460px) {
  .service p {
    width: auto;
    font-size: 1rem;
  }
}

.service .right {
  flex-basis: 68%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1350px) {
  .service .right {
    flex-basis: 100%;
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .service .right {
    flex-direction: column;
    width: 80%;
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 460px) {
  .service .right {
    flex-direction: column;
    width: 100%;
    margin-top: 2rem;
  }
}

.service .right .div1 {
  flex-basis: 50%;
}
.service .right .div1 img {
  width: 100%;
}

.service .right .div2 {
  flex-basis: 50%;
}
.service .right .div2 img {
  width: 100%;
}

/*--------------------------------
Business flow
--------------------------------*/
.businessflow {
  align-items: baseline;
  margin-top: 5%;
  margin-bottom: 15%;
}
@media screen and (orientation: portrait) {
  .businessflow {
    flex-direction: column;
    margin-bottom: 20%;
  }
}
@media only screen and (max-width: 460px) {
  .businessflow {
    flex-direction: column;
    margin-bottom: 20%;
  }
}

@media screen and (orientation: portrait) {
  .businessflow h2 {
    width: auto;
    height: auto;
  }
}
@media only screen and (max-width: 460px) {
  .businessflow h2 {
    width: auto;
    height: auto;
  }
}

.businessflow h2 .en {
  flex-wrap: wrap;
}

.businessflow p {
  width: auto;
  margin-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 2.1rem;
  color: #001C30;
}
@media screen and (orientation: portrait) {
  .businessflow p {
    width: auto;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 460px) {
  .businessflow p {
    width: auto;
    font-size: 1rem;
  }
}

.businessflow .right {
  margin: 0px auto;
  margin-top: 4rem;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 2%;
  max-width: 1100px;
}
@media only screen and (max-width: 768px) {
  .businessflow .right {
    flex-direction: column;
    width: 80%;
  }
}
@media only screen and (max-width: 460px) {
  .businessflow .right {
    flex-direction: column;
    width: 100%;
  }
}

.businessflow .right .div {
  flex-basis: 32%;
}
@media only screen and (max-width: 768px) {
  .businessflow .right .div {
    flex-basis: 100%;
    margin-bottom: 2rem;
    padding: 0 1em;
  }
}
@media only screen and (max-width: 460px) {
  .businessflow .right .div {
    flex-basis: 100%;
  }
}

/*--------------------------------
News
--------------------------------*/
#news {
  background-color: #F4F7FA;
  margin: auto;
  padding: 3rem 0;
}
#news .flex {
  display: block;
  width: 70%;
  max-width: 1440px;
  margin: 0px auto;
}
#news .list {
  display: flex;
  justify-content: center;
  gap: 5%;
  margin: 0px auto;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  #news .list {
    flex-direction: column;
    align-items: center;
  }
}
#news li {
  flex-basis: 30%;
}
@media only screen and (max-width: 768px) {
  #news li {
    flex-basis: 100%;
    width: 100%;
  }
}
#news li img {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s ease;
  opacity: 1;
}
#news li img:hover {
  opacity: 0.7;
}
#news li .thumb {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  position: relative;
}
#news .date-area {
  display: flex;
  align-items: center;
  padding-top: 1.2rem;
}
#news time {
  width: auto;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  color: #001C30;
}
#news .list span {
  width: 80px;
  height: 26px;
  margin-left: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.5rem;
  color: #FFFFFF;
  background-color: #176B87;
  border-radius: 9999px;
  text-align: center;
}
#news .list p {
  padding-top: 0.8rem;
  padding-bottom: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.8rem;
  color: #001C30;
}
@media screen and (orientation: portrait) {
  #news .list p {
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 460px) {
  #news .list p {
    padding-bottom: 2rem;
  }
}

.newsButtonBox {
  display: flex;
  justify-content: flex-end;
  padding: 1em 0;
}
@media only screen and (max-width: 768px) {
  .newsButtonBox {
    justify-content: center;
  }
}
.newsButtonBox a {
  color: #001C30;
  background-color: #EAFF95;
  border-radius: 9999px;
  padding: 1em 2.5em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6em;
  letter-spacing: 0.05rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1em;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.newsButtonBox a:hover {
  opacity: 0.7;
}
.newsButtonBox a::after {
  content: "→";
  font-weight: 600;
  font-size: 1.4rem;
}

/*--------------------------------
contact us
--------------------------------*/
#contact {
  background-color: #176B87;
  margin: 0 auto;
  padding: 5rem 0;
}
#contact .flex {
  width: 70%;
  max-width: 1440px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10%;
}
@media only screen and (max-width: 460px) {
  #contact .flex {
    width: 80%;
  }
}
@media screen and (orientation: portrait) {
  #contact {
    flex-direction: column;
  }
}
@media only screen and (max-width: 460px) {
  #contact {
    flex-direction: column;
  }
}

#contact .left {
  flex-basis: 55%;
}
@media only screen and (max-width: 1350px) {
  #contact .left {
    flex-basis: 100%;
  }
}
#contact .left h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 460px) {
  #contact .left h2 {
    font-size: 2rem;
  }
}
#contact .left p {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.8rem;
}
@media screen and (orientation: portrait) {
  #contact .left p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 460px) {
  #contact .left p {
    font-size: 1rem;
  }
}

#contact .right {
  flex-basis: 35%;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1350px) {
  #contact .right {
    padding-top: 1rem;
    flex-basis: 100%;
  }
}
#contact .right .contactButtonBox {
  display: flex;
  justify-content: flex-end;
  padding: 1em 0;
}
@media only screen and (max-width: 768px) {
  #contact .right .contactButtonBox {
    justify-content: center;
  }
}
#contact .right .contactButtonBox #url_copy_btn {
  border: none;
  /* ボーダーをなしに */
  color: inherit;
  /* テキストの色を親要素から継承 */
  font: inherit;
  /* フォントを親要素から継承 */
  cursor: pointer;
  /* カーソルをポインターに */
  text-decoration: none;
  /* テキストの下線をなしに */
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #001C30;
  background-color: #EAFF95;
  border-radius: 9999px;
  padding: 2em 3em;
  transition: opacity 0.3s ease;
  opacity: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6em;
  letter-spacing: 0.05rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5em;
  position: relative;
  overflow: hidden;
}
#contact .right .contactButtonBox #url_copy_btn:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 460px) {
  #contact .right .contactButtonBox #url_copy_btn {
    font-size: 1rem;
    padding: 2em 2em;
    width: 100%;
  }
}
#contact .right .contactButtonBox #url_copy_btn::after {
  width: 1rem;
  content: "";
  font-weight: 600;
  font-size: 1.4rem;
  aspect-ratio: 1/1;
  background-image: url("img/copy.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

/*--------------------------------
footer
--------------------------------*/
#footer {
  background-color: #001C30;
}

#footer .wrapper {
  width: 70%;
  max-width: 1440px;
  margin: 0px auto;
  padding-bottom: 3rem;
}
#footer .wrapper .corporate-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 4rem 0;
}
@media only screen and (max-width: 768px) {
  #footer .wrapper .corporate-info {
    padding: 3rem 0;
  }
}
#footer .wrapper .corporate-info .logo {
  flex-basis: 10%;
  min-width: 220px;
}
@media screen and (orientation: portrait) {
  #footer .wrapper .corporate-info .logo {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  #footer .wrapper .corporate-info .logo {
    margin: 0 auto;
  }
}
#footer .wrapper .corporate-info .corporate-text {
  text-align: end;
}
@media only screen and (max-width: 768px) {
  #footer .wrapper .corporate-info .corporate-text {
    flex-basis: 100%;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
  }
}
#footer .wrapper .corporate-info .corporate-text h1 {
  margin: auto;
  color: #eeeeee;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  #footer .wrapper .corporate-info .corporate-text h1 {
    font-size: 1rem;
  }
}
#footer .wrapper .corporate-info .corporate-text p {
  margin: auto;
  padding-top: 1rem;
  color: #eeeeee;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 2rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  #footer .wrapper .corporate-info .corporate-text p {
    line-height: 1.5rem;
  }
}
#footer .wrapper .site-policy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: end;
  color: #eeeeee;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
}
@media screen and (orientation: portrait) {
  #footer .wrapper .site-policy {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  #footer .wrapper .site-policy {
    font-size: 0.8rem;
    flex-basis: 100%;
    margin: 0 auto;
    text-align: center;
    gap: 1rem;
  }
}
#footer .wrapper .site-policy a {
  color: #eeeeee;
  text-decoration: underline;
}

/*--------------------------------
NEWS 一覧
--------------------------------*/
.news-list {
  min-height: 90vh;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 5rem;
  margin-bottom: 6em;
  justify-content: center;
  max-width: 1000px;
}
@media screen and (orientation: portrait) {
  .news-list {
    width: 85%;
  }
}
@media only screen and (max-width: 460px) {
  .news-list {
    width: 85%;
  }
}
@media only screen and (max-width: 768px) {
  .news-list {
    margin-top: 2rem;
  }
}
.news-list h2 {
  padding: 2rem 0;
  padding-top: 3rem;
}
.news-list .news-container {
  width: 100%;
  margin: 0 auto;
}
.news-list .news-item {
  display: flex;
  align-items: center;
  padding: 2rem;
  gap: 8%;
  border-bottom: 1px solid #176B87;
}
.news-list .news-item:last-of-type {
  border-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .news-list .news-item {
    flex-direction: column;
    align-items: center;
  }
}
.news-list .thumbnail {
  display: block;
  flex-basis: 30%;
  aspect-ratio: 3/2;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .news-list .thumbnail {
    width: 100%;
  }
}
.news-list .thumbnail img {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.news-list .thumbnail img:hover {
  opacity: 0.7;
}

.news-details {
  flex: 1;
  flex-basis: 57%;
  padding: 2em 0;
}
@media only screen and (max-width: 768px) {
  .news-details {
    width: 100%;
  }
}
.news-details .news-info {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
}
.news-details .date {
  display: block;
  width: auto;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  color: #001C30;
}
.news-details .category {
  display: block;
  width: 100px;
  height: 26px;
  margin-left: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.5rem;
  color: #FFFFFF;
  background-color: #176B87;
  border-radius: 9999px;
  text-align: center;
}
.news-details .title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.3rem;
  line-height: 2.2rem;
  color: #001C30;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 3rem 0;
  gap: 2rem;
}

.pagination a {
  background-color: #EAFF95;
  color: #001C30;
  text-align: center;
  /* 中央揃え */
  border-radius: 9999px;
  /* 角丸 */
  padding: 1rem 2.5rem;
  /* 内側の余白 */
  text-decoration: none;
  /* 下線を消す */
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.1rem;
  color: #001C30;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5em;
  position: relative;
  overflow: hidden;
}
.pagination a.disabled {
  opacity: 0.3;
}
.pagination a.link-page {
  background: none;
}

.pagination a.prev::before {
  content: "←";
  /* 左向き矢印 */
}

.pagination a.next::after {
  content: "→";
  /* 右向き矢印 */
}

.pagination .current-page {
  padding: 0 1rem;
  /* ページ番号の余白 */
  padding-top: 0.2em;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.4rem;
  color: #001C30;
}

/*--------------------------------
NEWS 詳細
--------------------------------*/
.news-single-container {
  min-height: 90vh;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  justify-content: center;
  max-width: 1000px;
  margin-top: 70px;
}
@media screen and (orientation: portrait) {
  .news-single-container {
    width: 85%;
  }
}
@media only screen and (max-width: 460px) {
  .news-single-container {
    width: 85%;
  }
}
@media screen and (orientation: portrait) {
  .news-single-container {
    margin-top: 35px;
  }
}
.news-single-container .container {
  padding: 3rem 0;
  margin: 0 auto;
}
.news-single-container .container .news-info {
  display: flex;
  align-items: center;
}
.news-single-container .container .thumbnail {
  display: block;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-single-container .container .thumbnail figure, .news-single-container .container .thumbnail img {
  max-width: 100%; /* 親要素の幅に合わせる */
  height: auto;
}
.news-single-container .container .date {
  display: block;
  width: auto;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.2rem;
  color: #001C30;
}
.news-single-container .container .category {
  display: block;
  width: 100px;
  height: 26px;
  margin-left: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.5rem;
  color: #FFFFFF;
  background-color: #176B87;
  border-radius: 9999px;
  text-align: center;
}
.news-single-container .container .title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 2rem;
  line-height: 3rem;
  color: #001C30;
  padding: 2rem 0;
}
@media only screen and (max-width: 460px) {
  .news-single-container .container .title {
    font-size: 1.7rem;
    line-height: 2.7rem;
  }
}
.news-single-container .container .content {
  margin: 2rem 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #001C30;
}
@media screen and (orientation: portrait) {
  .news-single-container .container .content {
    width: auto;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 460px) {
  .news-single-container .container .content {
    width: auto;
    font-size: 1rem;
  }
}
.news-single-container .container .content h1 {
  font-weight: 600;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;
  padding: 2rem 0;
}
@media only screen and (max-width: 460px) {
  .news-single-container .container .content h1 {
    font-size: 1.7rem;
    line-height: 2.7rem;
  }
}
.news-single-container .container .content h2 {
  font-size: 1.5rem;
  line-height: 2.5rem;
  font-weight: 600;
  padding: 1rem 0;
}
.news-single-container .container .content h3 {
  font-size: 1.2rem;
  line-height: 2.2rem;
  font-weight: 600;
  padding: 0.5rem 0;
}
.news-single-container .container .content p {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 2.1rem;
  padding: 1rem 0;
}
.news-single-container .container .content a {
  color: #176B87;
  text-decoration: none;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.news-single-container .container .content a:hover {
  opacity: 0.7;
}
.news-single-container .back-newslist {
  padding-bottom: 5rem;
}
.news-single-container .back-newslist a {
  margin: 0 auto;
}

/*--------------------------------
固定ページ
--------------------------------*/
.static-page-content {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  justify-content: center;
  max-width: 1000px;
  margin-top: 70px;
}
@media screen and (orientation: portrait) {
  .static-page-content {
    width: 85%;
  }
}
@media only screen and (max-width: 460px) {
  .static-page-content {
    width: 85%;
  }
}
@media screen and (orientation: portrait) {
  .static-page-content {
    margin-top: 35px;
  }
}
.static-page-content .title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 2rem;
  line-height: 3rem;
  color: #001C30;
  padding: 2rem 0;
  margin-top: 4rem;
}
@media only screen and (max-width: 460px) {
  .static-page-content .title {
    font-size: 1.7rem;
    line-height: 2.7rem;
  }
}
.static-page-content .content {
  margin-bottom: 6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #001C30;
}
@media screen and (orientation: portrait) {
  .static-page-content .content {
    width: auto;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 460px) {
  .static-page-content .content {
    width: auto;
    font-size: 1rem;
  }
}
.static-page-content .content h1 {
  font-weight: 600;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;
  padding: 2rem 0;
}
@media only screen and (max-width: 460px) {
  .static-page-content .content h1 {
    font-size: 1.7rem;
    line-height: 2.7rem;
  }
}
.static-page-content .content h2 {
  font-size: 1.5rem;
  line-height: 2.5rem;
  font-weight: 600;
  padding: 1rem 0;
}
.static-page-content .content h3 {
  font-size: 1.2rem;
  line-height: 2.2rem;
  font-weight: 600;
  padding: 0.5rem 0;
}
.static-page-content .content p {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 2.1rem;
  padding: 1rem 0;
}
.static-page-content .content a {
  color: #176B87;
  text-decoration: none;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.static-page-content .content a:hover {
  opacity: 0.7;
}

/*--------------------------------
投稿が見つかりませんでした。
--------------------------------*/
.content-not-found {
  display: block;
  text-align: center;
  font-size: 1.65em;
  font-weight: bold;
  padding: 4em;
  border: 5px solid #EAFF95;
  margin-bottom: 3em;
}
@media only screen and (max-width: 768px) {
  .content-not-found {
    font-size: 1.3rem;
  }
}
.content-not-found span {
  padding-top: 2em;
  font-size: 1.2rem;
  line-height: 3;
  color: #001C30;
  display: block;
  text-align: center;
  padding-top: 1em;
}
.content-not-found span a {
  font-size: 1rem;
  text-decoration: underline;
  font-weight: bold;
}

/*--------------------------------
404 Not found
--------------------------------*/
.notfound {
  display: block;
  margin: 0px auto;
  margin-top: 120px;
  width: 90%;
  max-width: 1440px;
  border: 5px solid #EAFF95;
  min-height: 70vh;
  margin-bottom: 120px;
  display: grid;
  place-content: center;
}
@media screen and (orientation: portrait) {
  .notfound {
    width: 85%;
  }
}
@media only screen and (max-width: 460px) {
  .notfound {
    width: 85%;
  }
}
.notfound * {
  text-align: center;
}
.notfound h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3rem;
  color: #64ccc5;
}
.notfound p {
  padding-top: 2em;
  font-size: 1.2rem;
  line-height: 3;
  color: #001C30;
}
.notfound p a {
  text-decoration: underline;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */