@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/* ----------------------------------
    Clear
---------------------------------- */
.elementor-element {
  padding: 0 !important;
}

.page-content, .entry-content, .entry-summary {
  margin: 0;
}

.e-con.e-flex > .e-con-inner {
  max-width: none;
  padding: 0;
  gap: 0;
}

a:visited, a:hover, a:active {
  color: inherit;
}

.e-con {
  gap: 0;
}

.post, .page {
  margin: 0;
}

body,
button,
input,
select,
optgroup,
textarea {
  color: #000;
}

/* ----------------------------------
    Selectors
---------------------------------- */
* {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

img {
  width: 100%;
}

.image-container-s img {
  border-radius: 16px;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
}
.image-container-m img {
  border-radius: 24px;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
}
.image-container-l img {
  border-radius: 32px;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
}

body {
  background-color: #F9FAFB;
}

/* グローバルメニュー・ハンバーガーメニュー開時：背景のスクロールを無効化し、モーダル内のみスクロール可能にする */
html.modal-open,
body.modal-open {
  overflow: hidden;
  height: 100%;
}

section {
  padding-inline: 32px;
}
section + section {
  margin-top: 80px;
}
@media (max-width: 480px) {
  section {
    padding-inline: 24px;
  }
}

/* ----------------------------------
    Wrapper & Container
---------------------------------- */
.bg-dark {
  background-color: #E0EAEC;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.main-content {
  margin-top: 80px;
}

.outer-padding {
  padding-inline: 32px !important;
}
@media (max-width: 480px) {
  .outer-padding {
    padding-inline: 24px !important;
  }
}

.content-wrapper {
  max-width: 1280px !important;
  margin: 0 auto;
}

.whitecard {
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
}

.icon img {
  min-width: 54px;
  height: 54px;
}
@media (max-width: 480px) {
  .icon img {
    min-width: 48px;
    height: 48px;
  }
}

/* ----------------------------------
    Flex
---------------------------------- */
.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
@media (max-width: 480px) {
  .flex-container {
    gap: 24px;
  }
}

/* ----------------------------------
    Grid
---------------------------------- */
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) {
  .grid-container {
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.grid-container.col3 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 480px) {
  .grid-container.col3 {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
.grid-container.col4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 560px) {
  .grid-container.col4 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .grid-container.col4 {
    grid-template-columns: 1fr 1fr;
  }
}
.grid-container.col5 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 768px) {
  .grid-container.col5 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .grid-container.col5 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .grid-container.col5 {
    grid-template-columns: 1fr 1fr;
  }
}
.grid-container.col6 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 1080px) {
  .grid-container.col6 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .grid-container.col6 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .grid-container.col6 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .grid-container.col6 {
    grid-template-columns: 1fr 1fr;
  }
}

/* ----------------------------------
    Margin & Padding
---------------------------------- */
.mt-0 {
  margin-top: 0;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-64 {
  margin-top: 64px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mb-80 {
  margin-bottom: 80px;
}

.pt-0 {
  padding-top: 0;
}

.pt-8 {
  padding-top: 8px;
}

.pt-16 {
  padding-top: 16px;
}

.pt-24 {
  padding-top: 24px;
}

.pt-32 {
  padding-top: 32px;
}

.pt-48 {
  padding-top: 48px;
}

.pt-64 {
  padding-top: 64px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-8 {
  padding-bottom: 8px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pb-48 {
  padding-bottom: 48px;
}

.pb-64 {
  padding-bottom: 64px;
}

.pb-80 {
  padding-bottom: 80px;
}

/* ----------------------------------
    Text
---------------------------------- */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}
a:visited {
  color: inherit;
}

h2 {
  font-size: 32px;
  margin-bottom: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

.title .deco {
  font-family: "M PLUS 1", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1558A0;
  letter-spacing: 5px;
}
@media (max-width: 768px) {
  .title .deco {
    font-size: 20px;
  }
}
.title h2 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .title h2 {
    font-size: 28px;
  }
}

.caption {
  font-size: 14px;
  color: #555;
}

.txt-center {
  text-align: center;
}

/* ----------------------------------
    Global Navigation
---------------------------------- */
.nav-global {
  color: #fff;
}
.nav-global .nav-global-inner {
  display: flex;
  justify-content: space-between;
  padding: 8px 20px;
  background-color: #214C7A;
  font-weight: 700;
  line-height: 1.2;
  border-bottom: 1px solid #aaa;
  min-height: 48px;
  z-index: 1006;
  position: relative;
}
@media (max-width: 480px) {
  .nav-global .nav-global-inner {
    padding: 8px 8px;
  }
}
.nav-global .group-bg {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
}
.nav-global ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.nav-global .left-side {
  display: flex;
  align-items: center;
}
.nav-global .right-side {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 8px;
  pointer-events: all;
}
.nav-global .right-side ul {
  position: relative;
}
.nav-global .right-side ul li:not(:first-child)::before {
  content: "｜";
  margin-left: 4px;
  margin-right: 4px;
}
.nav-global .right-side ul.nav-links-with-underline .nav-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #fff;
  transition: left 0.3s ease, width 0.3s ease;
  pointer-events: none;
}
.nav-global .right-side ul.nav-links-with-underline li {
  position: relative;
}
.nav-global .right-side ul.nav-links-with-underline li .underline-item {
  display: inline-block;
  position: relative;
}
.nav-global .right-side ul.nav-links-with-underline li a {
  display: inline-block;
  position: relative;
}
.nav-global * {
  font-size: 12px;
}
.nav-global .links-function {
  gap: 8px;
}
.nav-global button {
  border: 1px solid #fff;
  padding: 2px 8px;
  border-radius: 100px;
  color: #fff;
}
@media (max-width: 1400px) {
  .nav-global .w1400 {
    display: none;
  }
}
@media (max-width: 1100px) {
  .nav-global .nav-global-inner {
    display: block;
  }
  .nav-global .right-side {
    justify-content: space-between;
  }
  .nav-global .w1100 {
    display: none;
  }
}
.nav-global.clone .open-menu {
  display: none;
}
.nav-global .open-menu {
  opacity: 0;
  position: fixed;
  background-color: #214C7A;
  left: 0;
  top: 0;
  z-index: 1005;
  width: 100%;
  padding: 32px;
  transform: translateY(-100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 90vh;
}
.nav-global .open-menu.active {
  transform: translateY(47px);
  opacity: 1;
}
.nav-global .open-menu.active .open-menu-inner {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-global .open-menu .open-menu-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.nav-global .open-menu a {
  font-size: 16px;
  line-height: 1.25em;
}
.nav-global .open-menu .title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  width: 100%;
}
.nav-global .open-menu .title a {
  font-size: 20px;
}
.nav-global .open-menu .sub-menu a {
  font-size: 14px;
}
.nav-global .open-menu .sub-menu a::before {
  content: "- ";
  margin-right: 4px;
}
.nav-global .open-menu .button-link a {
  font-size: 14px;
}
.nav-global .open-menu .menu-list {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  gap: 16px 32px;
}
.nav-global .open-menu .sub-menu {
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 8px 32px;
  margin-top: 16px;
}
@media screen and (max-width: 1080px) {
  .nav-global .open-menu .w1080 {
    flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  .nav-global .open-menu {
    padding: 24px;
  }
  .nav-global .open-menu .menu-list {
    grid-template-rows: auto;
    grid-auto-flow: row;
  }
  .nav-global .open-menu .title {
    flex-direction: column;
    align-items: start;
  }
  .nav-global .open-menu .sub-menu {
    grid-template-rows: repeat(7, auto);
  }
}

/* ----------------------------------
    Fixed Nav Wrapper (clone display control)
---------------------------------- */
.fixed-nav-wrap {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  top: var(--fixed-nav-hidden-top, -120px);
  transition: top 0.3s ease;
  pointer-events: none;
}
.fixed-nav-wrap.is-visible {
  top: 0;
}
.fixed-nav-wrap .nav-global.clone {
  width: 100%;
}
.fixed-nav-wrap .nav-site.clone {
  position: static;
  top: auto;
  width: 100%;
  pointer-events: none;
}
.fixed-nav-wrap .nav-site.clone .mobile-menu {
  display: none !important;
}

/* ----------------------------------
    Site Navigation
---------------------------------- */
.nav-site {
  position: absolute;
  width: 100%;
  z-index: 11;
  padding-top: 16px;
  padding-bottom: 60px;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.nav-site .nav-site-inner {
  display: flex;
  justify-content: space-between;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  gap: 32px;
  z-index: 1001;
  position: relative;
  pointer-events: all;
}
@media (max-width: 480px) {
  .nav-site .nav-site-inner {
    gap: 8px;
  }
}
.nav-site .logo {
  width: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.nav-site .logo img {
  margin-left: 20px;
  width: 100%;
}
@media (max-width: 480px) {
  .nav-site .logo img {
    margin-left: 8px;
  }
}
.nav-site .list-links {
  gap: 32px;
}
@media (min-width: 1011px) {
  .nav-site .list-links {
    margin-right: 20px;
  }
}
.nav-site .left-side {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-site .menu-item {
  position: relative;
}
.nav-site .menu-item a {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.nav-site .menu-item.has-sub-menu > a::after {
  content: url("/asset/common/img/arrow.svg");
  display: inline-block;
  margin-left: 4px;
  position: relative;
  top: -2px;
}
.nav-site .menu-item .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  background-color: #fff;
  border-radius: 8px;
  min-width: 240px;
  margin: 0;
  padding: 4px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.nav-site .menu-item .sub-menu li {
  padding: 4px 8px;
}
.nav-site .menu-item .sub-menu li a {
  display: block;
  border-radius: 8px;
  padding: 8px 16px;
  height: 100%;
}
.nav-site .menu-item .sub-menu li a:hover {
  background: #E0EAEC;
  opacity: 1;
}
.nav-site .menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-site .right-side {
  height: 100%;
  gap: 0;
}
@media (max-width: 480px) {
  .nav-site .right-side {
    flex-direction: row;
  }
}
.nav-site .right-side .button-header {
  width: 180px;
  height: 100%;
  color: rgb(255, 255, 255);
}
.nav-site .right-side .button-header.is {
  background-color: #29BDC5;
}
.nav-site .right-side .button-header.entry {
  background-color: #e8730d;
}
.nav-site .right-side .button-header.is a, .nav-site .right-side .button-header.entry a {
  width: 100%;
  height: 100%;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
}
.nav-site .right-side .button-header.is span, .nav-site .right-side .button-header.entry span {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
.nav-site .right-side .button-header.is small, .nav-site .right-side .button-header.entry small {
  font-size: 11px;
  margin-top: -4px;
  line-height: 1.5;
}
.nav-site .hamburger-container {
  background-color: #fff;
  height: 38px;
  width: 38px;
  border-radius: 100px;
  display: none;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  margin-left: 8px;
}
.nav-site .hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transform: scale(0.6);
  z-index: 1001;
}
.nav-site .hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: #1558A0;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.nav-site .hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(11px, 9px);
}
.nav-site .hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
.nav-site .hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}
.nav-site .mobile-menu {
  display: none;
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 1000;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.35s ease-out, opacity 0.25s ease-out;
}
.nav-site .mobile-menu.active {
  display: block;
  max-height: calc(100vh - 48px);
  opacity: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: all;
  transition: max-height 0.4s ease-in, opacity 0.3s ease-out 0.05s;
}
.nav-site .mobile-menu .left-side {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 80px 20px 16px;
}
.nav-site .mobile-menu .left-side .menu-item {
  width: 100%;
  position: relative;
}
.nav-site .mobile-menu .left-side .menu-item a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.nav-site .mobile-menu .left-side .menu-item.has-sub-menu::before .active {
  transform: rotate(270deg);
}
.nav-site .mobile-menu .left-side .menu-item .sub-menu {
  position: static;
  top: auto;
  left: auto;
  z-index: auto;
  border-radius: 0;
  border: none;
  min-width: auto;
  background-color: transparent;
  opacity: 1;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin-top: 0;
  width: 100%;
  transform: none;
  transition: max-height 0.3s ease, padding 0.3s ease, margin-top 0.3s ease, visibility 0.3s ease;
}
.nav-site .mobile-menu .left-side .menu-item .sub-menu li {
  padding: 0;
}
.nav-site .mobile-menu .left-side .menu-item .sub-menu li a {
  display: block;
  padding: 8px 16px 8px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  height: auto;
}
.nav-site .mobile-menu .left-side .menu-item .sub-menu li a:hover {
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}
.nav-site .mobile-menu .left-side .menu-item.active .sub-menu {
  visibility: visible;
  max-height: 500px;
  padding: 8px 0;
}
.nav-site .mobile-menu .left-side .menu-item.active::before {
  transform: rotate(270deg);
}
.nav-site .mobile-menu .left-side .menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1010px) {
  .nav-site .logo {
    width: 180px;
  }
  .nav-site .left-side {
    display: none;
  }
  .nav-site .mobile-menu.active > .left-side {
    display: flex;
  }
  .nav-site .right-side .button-header.is span,
  .nav-site .right-side .button-header.entry span {
    font-size: 18px;
  }
  .nav-site .hamburger-container,
  .nav-site .hamburger-menu {
    display: flex;
  }
  .nav-site .mobile-menu {
    display: block;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease-out, opacity 0.25s ease-out;
  }
  .nav-site .mobile-menu.active {
    max-height: calc(100vh - 48px);
    opacity: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: all;
    transition: max-height 0.4s ease-in, opacity 0.3s ease-out 0.05s;
  }
}
@media (max-width: 720px) {
  .nav-site .right-side .button-header {
    width: 110px !important;
  }
  .nav-site .w720.none {
    display: none;
  }
  .nav-site .w720.disp {
    display: block;
  }
}

/* ----------------------------------
    Pankuzu
---------------------------------- */
.pankuzu {
  margin-top: 16px;
  padding-inline: 20px;
  overflow-x: auto;
  pointer-events: all;
}
.pankuzu > span {
  display: flex;
  gap: 8px;
}
.pankuzu > span > span {
  font-size: 14px;
  white-space: nowrap;
}
.pankuzu > span > span a {
  font-size: 14px;
  color: #555;
}
.pankuzu > span > span a::after {
  content: url("/asset/common/img/arrow.svg");
  display: inline-block;
  transform: rotate(-90deg);
  margin-left: 4px;
}

.nav-site.clone .pankuzu {
  display: none;
}

/* ----------------------------------
    Section Contact
---------------------------------- */
.sec-contact {
  background-color: #E0EAEC;
  margin-top: 80px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.sec-contact > .flex-container {
  align-items: flex-start;
  position: relative;
}
.sec-contact .text-adjust {
  position: absolute;
  right: 19%;
  top: 20%;
}
.sec-contact .large-text {
  font-size: 32px;
  color: #1558A0;
}
.sec-contact .img-container {
  max-width: 370px;
}
@media screen and (max-width: 930px) {
  .sec-contact > .flex-container {
    flex-direction: column;
  }
  .sec-contact .text-adjust {
    position: relative;
    margin-left: auto;
    right: 160px;
  }
  .sec-contact .img-container {
    margin-top: -180px;
    margin-left: auto;
  }
}
@media screen and (max-width: 567px) {
  .sec-contact .text-adjust {
    position: static;
    margin-left: 0;
  }
  .sec-contact .img-container {
    margin-top: -80px;
    margin-left: auto;
    width: 80%;
  }
}

/* ----------------------------------
    Footer
---------------------------------- */
footer {
  background-color: #E0EAEC;
  color: #fff;
  align-items: flex-start;
}
footer .inner {
  padding: 64px 32px 16px;
  border-radius: 32px 32px 0 0;
  background-color: #204C7A;
}
footer .flex-container {
  align-items: flex-start;
}
@media (max-width: 800px) {
  footer .flex-container {
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }
  footer .flex-container .logo {
    margin-inline: auto;
  }
  footer .flex-container nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }
  footer .flex-container .copyright {
    order: 2;
  }
}
footer .company-info {
  display: grid;
  gap: 16px;
}
footer .logo {
  max-width: 240px;
}
footer .iso {
  max-width: 274px;
}
footer .menu-list {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  gap: 24px;
}
footer .sub-menu {
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 4px 32px;
}
footer .sub-menu a {
  font-size: 14px;
}
footer .sub-menu a::before {
  content: "-";
  margin-right: 4px;
}
footer .under-menu {
  margin-top: 42px;
}
footer .under-menu a, footer .under-menu p {
  font-size: 14px;
}
footer .under-menu p + p::before {
  content: "｜";
}
footer .under-menu > .flex-container {
  gap: 0;
}
@media (max-width: 800px) {
  footer .under-menu > .flex-container {
    flex-direction: row;
  }
}
@media screen and (max-width: 1040px) {
  footer .w1040 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .w1040 p {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  footer .w768 {
    grid-template-rows: repeat(3, auto);
  }
  footer .w640 {
    grid-template-rows: repeat(6, auto);
  }
}

/* ----------------------------------
    Button
---------------------------------- */
.button-link a {
  background-image: linear-gradient(90deg, #1558a0, #3e98a0);
  border-radius: 100px;
  padding: 8px 16px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
}
.button-link.small a {
  padding: 4px 10px;
  font-size: 14px;
}
.button-link.white a {
  background-image: none;
  background-color: #fff;
  color: #1558A0;
  border: 1px solid #ddd;
}

.arrrow-link {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.arrrow-link::before {
  content: url("/asset/common/img/arrow-btn-small.svg");
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 8px;
}

.text-link {
  color: #555;
  text-decoration: underline;
}
.text-link:hover {
  text-decoration: none;
}

/* ----------------------------------
    Card
---------------------------------- */
.card {
  border-radius: 16px;
}
.card .image {
  border-radius: 16px;
  min-width: 100px;
  min-height: 100px;
  background-color: #eee;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
}
.card .tag-list {
  margin-top: 16px;
}
.card .title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
}
.card .description {
  font-size: 14px;
  margin-top: 8px;
}

/* ----------------------------------
    Tag
---------------------------------- */
.tag-list {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.tag {
  padding: 1px 8px;
  border-radius: 100px;
  background-color: #E0EAEC;
  color: #296972;
  font-size: 12px;
  text-align: center;
}

/* ----------------------------------
    Swiper
---------------------------------- */
.swiper {
  position: relative;
  padding-bottom: 48px;
}
.swiper .swiper-wrapper {
  height: auto;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  width: 48px;
  height: 48px;
  background-image: url("/asset/common/img/arrow-btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  display: none;
}
.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover {
  opacity: 1;
}
.swiper .swiper-button-prev[aria-disabled=true],
.swiper .swiper-button-next[aria-disabled=true] {
  opacity: 0.3;
  filter: grayscale(1);
}
@media screen and (max-width: 480px) {
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    width: 32px;
    height: 32px;
  }
}
.swiper .swiper-button-prev {
  left: 20px;
  transform: translateY(-50%) rotate(180deg);
}
.swiper .swiper-button-next {
  right: 20px;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  background: #1558A0;
}
.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #1558A0;
}

/* ----------------------------------
    Title Area
---------------------------------- */
.title-area {
  position: relative;
  background-image: linear-gradient(#c3dcd2, #58bcc6);
  overflow: hidden;
  margin-bottom: 80px;
}
.title-area .title-spacer {
  padding-inline: 32px;
}
@media (max-width: 480px) {
  .title-area .title-spacer {
    padding-inline: 24px;
  }
}
.title-area .nav-site {
  position: relative;
  top: 18px;
}
.title-area .pankuzu {
  position: relative;
  z-index: 10;
}
.title-area h1 {
  margin-top: 180px;
  font-size: 44px;
  color: #fff;
  text-shadow: 4px 4px 32px rgba(0, 0, 0, 0.5);
  display: inline-block;
  border-bottom: 5px solid #1558A0;
  padding-bottom: 20px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .title-area h1 {
    font-size: 32px;
  }
}

.image-title {
  position: relative;
}
.image-title > div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 0 8%;
  position: absolute;
  top: 0;
  bottom: 0;
}
.image-title img {
  border-radius: 32px;
}
@media (max-width: 480px) {
  .image-title img {
    border-radius: 18px;
  }
}
.image-title p {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #1558A0;
}
.image-title h2 {
  font-weight: 700;
  color: #000;
  margin: 0;
}

.text-title p {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #1558A0;
  text-align: center;
}
.text-title h2 {
  font-weight: 700;
  color: #000;
  margin-top: 0px;
  text-align: center;
}

/* ----------------------------------
    Anchor Links
---------------------------------- */
.nav-anchor {
  margin-bottom: 40px;
}
.nav-anchor > div {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.nav-anchor > div p::after {
  padding-left: 8px;
  content: url("/asset/common/img/arrow.svg");
  position: relative;
  top: -2px;
}
.nav-anchor .flex-container {
  justify-content: center;
  gap: 64px;
}
@media screen and (max-width: 1080px) {
  .nav-anchor .flex-container {
    gap: 32px;
  }
}
@media screen and (max-width: 480px) {
  .nav-anchor .flex-container {
    font-size: 14px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }
}

/* ----------------------------------
    Clouds
---------------------------------- */
/* 雲のアイソメ移動アニメーション */
.cloud {
  width: 18vw;
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

/* アイソメトリック角度（約30度）で右上から左下へ移動 */
/* アイソメの角度: X方向 -1, Y方向 +0.577 (tan(30°)) */
@keyframes isometricMove {
  0% {
    transform: translate(180vw, -60vw);
  }
  100% {
    transform: translate(-60vw, 78.48vw);
  }
}
.cloud1 {
  animation: isometricMove 50s linear infinite;
  animation-delay: 0s;
  top: 5vw;
  left: -50vw;
}

.cloud2 {
  animation: isometricMove 50s linear infinite;
  animation-delay: -5s;
  top: 3vw;
  left: -1vw;
}

.cloud3 {
  animation: isometricMove 50s linear infinite;
  animation-delay: -15s;
}

.cloud4 {
  animation: isometricMove 50s linear infinite;
  animation-delay: -20s;
}
.cloud4:nth-of-type(3) {
  top: 5vw;
  left: 67vw;
}
.cloud4:nth-of-type(4) {
  top: 9vw;
  left: 108vw;
}

.cloud5 {
  animation: isometricMove 50s linear infinite;
  animation-delay: 3s;
}

.cloud6 {
  animation: isometricMove 50s linear infinite;
  animation-delay: -25s;
  top: -1vw;
  left: -50vw;
}

.cloud7 {
  animation: isometricMove 50s linear infinite;
  animation-delay: 0s;
  top: 39vw;
  left: -2vw;
}

.cloud8 {
  animation: isometricMove 50s linear infinite;
  animation-delay: -5s;
  top: 39vw;
  left: -22vw;
}

.cloud9 {
  animation: isometricMove 50s linear infinite;
  animation-delay: -15s;
  top: 10vw;
  left: -30vw;
}

.cloud10 {
  animation: isometricMove 50s linear infinite;
  animation-delay: -20s;
  top: 9vw;
  left: 108vw;
}

.cloud11 {
  animation: isometricMove 50s linear infinite;
  animation-delay: 3s;
  top: 9vw;
  left: 108vw;
}

.cloud12 {
  animation: isometricMove 50s linear infinite;
  animation-delay: -25s;
  top: 9vw;
  left: 108vw;
}

/* ----------------------------------
    Table
---------------------------------- */
.table-container {
  max-width: 960px;
  margin-inline: auto;
}

table {
  border-collapse: separate;
  border-spacing: 0 40px;
  margin: 0 auto;
}
table th {
  width: 130px;
  border-right: 1px solid #A2A7AC;
  padding-right: 24px;
}
table td {
  padding-left: 24px;
}
table th, table td {
  height: 64px;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  table tr {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
  }
  table tr + tr {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
  }
  table tr th, table tr td {
    padding: 0;
    height: auto;
  }
  table tr th {
    border: 0;
  }
}

/* ----------------------------------
    検索結果の商品カード
---------------------------------- */
.search-result-product .search-result-product-link {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}
.search-result-product .search-result-product-thumb {
  flex-shrink: 0;
  width: 120px;
  border-radius: 8px;
  overflow: hidden;
}
.search-result-product .search-result-product-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.search-result-product .search-result-product-body {
  flex: 1;
  min-width: 0;
}
.search-result-product .search-result-product-title {
  font-size: 1rem;
  margin: 0 0 8px;
  font-weight: 600;
}
.search-result-product .search-result-product-price {
  font-size: 0.9375rem;
  font-weight: 600;
}/*# sourceMappingURL=common.css.map */