@charset "UTF-8";
/*----------------------------------------------------
  変数セット
----------------------------------------------------*/
:root {
  --primary-blue: #006AB8;
  --light-blue: #C5EAFE;
  --text-color: #2A2A2A;
  --accent-blue: #5BAFF5;
  --white: #ffffff;
}

/*----------------------------------------------------
  基本のレイアウト
----------------------------------------------------*/
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #222;
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 767.98px) {
  body {
    font-size: 1.4rem;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.section-wrap {
  margin-top: 8rem;
}
.container-inner {
  max-width: 900px;
  margin: 0 auto;
}

/*----------------------------------------------------
  リンク色
----------------------------------------------------*/
a:link {
  color: var(--text-color);
  text-decoration: none;
}
a:visited {
  color: var(--text-color);
  text-decoration: none;
}
a:hover {
  color: var(--primary-blue);
  text-decoration: none;
}
a:active {
  color: var(--primary-blue);
  text-decoration: none;
}

/*----------------------------------------------------
  アニメーション
----------------------------------------------------*/
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/*----------------------------------------------------
  ヘッダー
----------------------------------------------------*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px 0;
  background: var(--white);
  position: relative;
  z-index: 10;
}
.logo-text {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.logo-text .jp-text {
  width: 180px;
  margin-right: 20px;
  line-height: 1.0;
}
.logo-text .en-text {
  width: 130px;
  line-height: 1.0;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.company-link {
  font-size: 1.8rem;
  font-weight: 500;
}
.contact-info {
  display: flex;
  gap: 10px;
}
.header-bg {
  overflow: hidden;
}
.header-bg {
  content: '';
  font-family: 'shape divider from ShapeDividers.com';
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 100% 80px;
  background-position: 50% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23ffffff"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23ffffff"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23ffffff"/></svg>');
}
@media (min-width:2100px) {
  .header-bg::before {
    background-size: 100% calc(2vw + 80px);
  }
}

/*----------------------------------------------------
  スマホメニュー
----------------------------------------------------*/
.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 8px;
}
.burger-menu span {
  width: 29px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: 0.3s ease;
}
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/*----------------------------------------------------
  セクションタイトル
----------------------------------------------------*/
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.en-title {
  font-family: "Jost", sans-serif;
  font-size: 4.8rem;
  font-weight: 400;
  color: var(--primary-blue);
  margin: 0;
  font-weight: 400;
}
.ja-title {
  font-size: 2.2rem;
  font-weight: 500;
  margin: 5px 0 0;
}

/*----------------------------------------------------
  パンくず
----------------------------------------------------*/
.breadcrumb {
  padding: 20px 40px;
}
.breadcrumb ul {
  padding-left: 0;
  list-style: none;
  text-align: right;
}
.breadcrumb ul li {
  font-size: 1.2rem;
  display: inline-block;
}
.breadcrumb ul li:not(:last-child)::after {
  content: "";
  width: 0.4em;
  height: 0.4em;
  display: inline-block;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 0.8rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.breadcrumb ul li a {
  color: #555;
}

/*----------------------------------------------------
  ボタン
----------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.6rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-phone {
  background-color: #a3d9ff;
  border: 2px solid #a3d9ff;
  color: #2A2A2A;
  font-size: 1.8rem;
}
.btn-email {
  background-color: #006AB8;
  border: 2px solid #006AB8;
  color: #fff !important;
}
.btn-primary {
  background-color: #006AB8;
  border: 2px solid #006AB8;
  color: #fff !important;
  padding: 10px 30px;
}
.btn-phone:hover,
.btn-email:hover,
.btn-primary:hover {
  background-color: #fff;
  border: 2px solid #006AB8;
  color: #006AB8 !important;
  text-decoration: none;
}
.footer .btn-phone {
  width: 280px;
  background-color: #fff;
}
.footer .btn-email {
  width: 280px;
}

/*----------------------------------------------------
  フッター
----------------------------------------------------*/
.footer {
  background-color: #8bc9f2;
  padding: 40px 10%;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-left .logo-text {
  margin-bottom: 20px;
}
.footer-left .address {
  line-height: 1.8;
}
.footer-left .copyright {
  margin-top: 20px;
}
.footer-right {
  text-align: right;
}
.contact-btns {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  justify-content: flex-end;
}
.tel-btn-large {
  width: 280px;
  background: var(--white);
  color: var(--text-color);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
}
.mail-btn-large {
  width: 280px;
  background: var(--primary-blue);
  color: var(--white) !important;
  padding: 14px 30px 10px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1.6rem;
  text-align: center;
}
.copyright {
  text-align: center;
  font-size: 1.2rem;
}

/*----------------------------------------------------
  お知らせ
----------------------------------------------------*/
.information {
  background-color: var(--white);
  padding: 80px 10%;
}
.info-content {
  display: flex;
  gap: 40px;
  padding-bottom: 20px;
  font-size: 1.6rem;
}
.info-list {
  flex: 1;
  margin-bottom: 20px;
  padding: 0;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid #ccc;
  font-size: 1.8rem;
}
.info-item:last-child {
  border-bottom: 1px solid #ccc;
}
.info-item:nth-child(even) {
  background-color: #f8f8f8;
}
.text-center {
  text-align: center;
}
.tablenav {
  text-align: center;
  margin-bottom: 5rem;
}
.tablenav>a,
.tablenav>span {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--primary-blue) !important;
  padding: 5px 0.8em;
  border: 1px solid var(--primary-blue);
  text-decoration: none;
  background: var(--white);
  margin: 0.5rem 0;
  transition: all 0.2s;
}
.tablenav>span.current {
  color: var(--white) !important;
  background-color: var(--primary-blue);
  font-weight: 500;
}
.tablenav>a:hover {
  opacity: 0.7;
}
.single {
  margin-bottom: 40px;
  padding: 0;
}
.single .single-title {
  margin: 0 0 2rem;
  padding: 0 0 2rem;
  border-bottom: 1px dashed var(--primary-blue);
  font-size: 2.8rem;
  line-height: 1.6;
}
.single .date {
  text-align: right;
  margin-bottom: 1rem;
}
.single .date .new {
  margin: 0 0 0 10px;
  padding: 1px 6px;
  border: 1px solid #f30;
  color: #f30;
  font-size: 1.2rem;
  line-height: 1.3;
  vertical-align: middle;
}
.single .button-area {
  text-align: center;
  margin-top: 3rem;
}
.single .button-area a.btn-back {
  display: inline-block;
  background-color: #fff;
  color: var(--primary-blue);
  font-weight: 500;
  border: 2px solid var(--primary-blue);
  border-radius: 5rem;
  padding: 1rem 4rem 1rem 6rem;
  position: relative;
  text-decoration: none;
  transition: 0.1s;
  font-size: 1.8rem;
}
.single .button-area a.btn-back::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -0.6em;
  left: 2rem;
  transition: 0.1s;
}
.single .button-area a.btn-back::after {
  content: "";
  width: 0.4em;
  height: 0.4em;
  border: 0;
  border-top: solid 2px var(--primary-blue);
  border-left: solid 2px var(--primary-blue);
  transform: rotate(-45deg);
  border-radius: 1px;
  position: absolute;
  top: 50%;
  left: 2.8rem;
  margin-top: -0.2em;
  transition: 0.1s;
}
.single .button-area a.btn-back:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}
.single .button-area a.btn-back:hover::after {
  border-color: var(--white);
}
.info-content .contents {
  flex: 1;
}
.info-content .contents ul.info-list {
  list-style: none;
  padding-left: 0;
}
.info-content .contents ul.info-list li {
  border-bottom: 1px dashed var(--primary-blue);
}
.info-content .contents ul.info-list li a {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  padding: 2.5rem 1rem;
}
.info-content .contents ul.info-list li a time {
  width: 120px;
}
.info-content .contents ul.info-list li a .new {
  margin: 0 0 0 10px;
  padding: 1px 6px;
  border: 1px solid #f30;
  color: #f30;
  font-size: 1.2rem;
  line-height: 1.3;
  vertical-align: middle;
}
.info-content .contents ul.info-list li a>div {
  flex: 1;
  font-weight: 500;
}
.info-content .contents ul.info-list li a:hover {
  background-color: var(--white);
}
.info-content .contents ul.info-list li a:hover>div {
  color: var(--primary-blue);
}
.info-content .side {
  width: 270px;
  padding-left: 3rem;
}
.info-content .side .archive-block {
  background-color: #fff;
  border-radius: 5rem;
  margin-bottom: 8rem;
  padding: 0;
}
.info-content .side p.archive-title {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.6;
}
.info-content .side ul.archive-list {
  list-style: none;
  margin-bottom: 1rem;
  padding-left: 0;
}
.info-content .side ul.archive-list li a {
  display: flex;
  padding: 1rem 0.5rem;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.2s;
}
.info-content .side ul.archive-list li a:hover {
  background-color: var(--white);
  color: var(--primary-blue);
}
.info-image {
  width: 200px;
  margin: 0 auto;
}
.info-image img {
  width: 100%;
  height: auto;
}
.text-center {
  text-align: center;
}
.banners {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
.banner-placeholder {
  width: 100%;
  height: 100px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.0;
}
.banner-placeholder:hover {
  border: 1px solid var(--primary-blue);
}
.banner-placeholder a {
  width: 100%;
}
.banner-placeholder img {
  display: block;
  height: 80px;
  margin: 0 auto;
}
/* Footer Shape */
.footer-shape {
  width: 100%;
  line-height: 0;
}
.footer-shape img {
  display: block;
  width: 100%;
}

/*----------------------------------------------------
  スマホ
----------------------------------------------------*/
@media screen and (max-width: 425px) {
  .logo-text .en-text {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  /* ヘッダー */
  .header {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 20px 10px;
    gap: 0;
  }
  /* ハンバーガーメニュー */
  .burger-menu {
    display: flex;
  }
  .header-right {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 10px;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .header-right.active {
    max-height: 500px;
    padding-bottom: 20px;
  }
  .company-link {
    padding: 16px 0 0;
    font-size: 16px;
  }
  .contact-info {
    flex-direction: column;
    gap: 10px;
  }
  .tel-btn,
  .mail-btn {
    width: 100%;
    text-align: center;
  }
  .mail-btn {
    margin-bottom: 20px;
  }
  /* お知らせ */
  .information {
    padding: 60px 5% 40px;
  }
  .info-content {
    display: block;
  }
  .banners {
    flex-direction: column;
    align-items: center;
  }
  /* フッター */
  .footer {
    padding: 40px 5%;
  }
  .footer-right {
    width: 100%;
    text-align: left;
  }
  .contact-btns {
    flex-direction: column;
    justify-content: flex-start;
  }
  .tel-btn-large {
    width: 100%;
  }
  .mail-btn-large {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}