@charset "UTF-8";
/*
Theme Name: SHINWA
Author: SHINWA
Description: SHINWA
Version: 1.0
*/
/*.mouseover-fadeout // ホバーでフェードアウト*/
/* Base settings */
[class*=fade], [class*=slide], [class*=fadeup] {
  transition-timing-function: ease-out;
}

/* Fade In */
.fadein {
  opacity: 0;
  animation: fadein 0.6s ease-out forwards;
}

@keyframes fadein {
  to {
    opacity: 1;
  }
}
/* Slide Up */
.slideup {
  transform: translateY(30px);
  animation: slideup 0.8s ease-out forwards;
}

@keyframes slideup {
  to {
    transform: translateY(0);
  }
}
/* Fade Up (Slide Up + Fade In) */
.fadeup {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeup 0.8s ease-out forwards;
}

@keyframes fadeup {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Slide Right to Left */
.sliderighttoleft {
  transform: translateX(50px);
  animation: sliderighttoleft 0.8s ease-out forwards;
}

@keyframes sliderighttoleft {
  to {
    transform: translateX(0);
  }
}
.mouseover-box {
  background: #48bb78;
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
}

/* Mouseover Slow Fade Out */
.mouseover-fadeout {
  opacity: 1;
  transition: opacity 1s ease;
}

.mouseover-fadeout:hover {
  opacity: 0.3;
}

/* ========== Animation Delays ========== */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-600 {
  animation-delay: 0.6s;
}

.delay-800 {
  animation-delay: 0.8s;
}

.delay-1000 {
  animation-delay: 1s;
}

/* ========== Animation Durations ========== */
.duration-fast {
  animation-duration: 0.3s;
}

.duration-normal {
  animation-duration: 0.6s;
}

.duration-slow {
  animation-duration: 1s;
}

.duration-slower {
  animation-duration: 1.5s;
}

.inview-fadeup {
  opacity: 0; /*表示前に透明にしておく */
  transform: translateY(20px); /*表示前の位置 */
  transition: 0.8s; /*移動にかける時間 */
  transition-delay: 0.1s; /*遅延をかける秒数 */
}

.inview-fadeup.show {
  opacity: 1;
  transform: translateY(0px);
}

.inview-fadeup.delay {
  transition-delay: 0.3s;
}

.inview-fadein {
  opacity: 0; /*表示前に透明にしておく */
  transition: 0.8s; /*移動にかける時間 */
  transition-delay: 0.1s; /*遅延をかける秒数 */
}

.inview-fadein.show {
  opacity: 1;
  transform: translateY(0px);
}

.inview-fadein.delay {
  transition-delay: 0.3s;
}

/*パンくずリストーーーーーーーーーーーーーーーーーーーーーーーー*/
/* パンくずリスト */
.breadcrumb_outer {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 60px;
  padding-left: 5vw;
  padding-right: 5vw;
  border-bottom: #1F528E 1px solid;
  align-items: center;
  justify-content: flex-start;
}
.breadcrumb_outer ul {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.breadcrumb_outer li.breadcrumb {
  display: inline;
}
@media (max-width: 768px) {
  .breadcrumb_outer li.breadcrumb {
    font-size: 0.875rem;
  }
}
.breadcrumb_outer li.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb_outer li.breadcrumb + li.breadcrumb:before {
  content: ">";
  margin: 0 0.5em;
}

@media (max-width: 768px) {
  .wrapper.wrapper--limited.wrapper--limited-company {
    padding: 0 5vw;
  }
}
@media (max-width: 900px) {
  .content-wrapper .onlypc {
    display: none !important;
  }
}
.content-wrapper .onlysp {
  display: none;
}
@media (max-width: 900px) {
  .content-wrapper .onlysp {
    display: block !important;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 140px; /* メインとサイドの余白 */
}
@media (max-width: 900px) {
  .content-wrapper {
    display: block;
    flex-direction: column;
    gap: 40px; /* メインとサイドの余白 */
  }
}
.content-wrapper h2 {
  font-size: clamp(1.75rem, 3vw, 1.875rem);
  margin-bottom: 30px;
}
.content-wrapper h3 {
  font-size: 1.375rem;
}
.content-wrapper .sidebar {
  width: 25%;
  position: sticky;
  top: 50px; /* 画面上からどの位置で固定するか */
  align-self: flex-start; /* 高さ揃え */
}
.content-wrapper .sidebar ul {
  font-size: 1.25rem;
}
.content-wrapper .sidebar ul li {
  padding-bottom: 15px;
}
@media (max-width: 1080px) {
  .content-wrapper .sidebar {
    display: none;
    width: 100%;
    position: static;
    margin-bottom: 50px;
  }
}
.content-wrapper .sidebar-single {
  width: 25%;
  position: sticky;
  top: 50px; /* 画面上からどの位置で固定するか */
  align-self: flex-start; /* 高さ揃え */
}
.content-wrapper .sidebar-single ul li {
  padding-bottom: 10px;
}
@media (max-width: 1080px) {
  .content-wrapper .sidebar-single {
    width: 100%;
    position: static;
  }
}
.content-wrapper .main-wrapper {
  width: 75%;
  flex: 1;
}
@media (max-width: 1080px) {
  .content-wrapper .main-wrapper {
    width: 100%;
  }
}

.company-top {
  position: relative;
}
@media (max-width: 768px) {
  .company-top {
    cursor: auto;
    margin-left: -5vw;
    margin-right: -5vw;
    margin-bottom: -10px;
  }
}
.company-top img {
  width: 100%;
  border-radius: 50px;
  border: 1px solid;
}
@media (max-width: 768px) {
  .company-top img {
    border-radius: 0;
    border: none;
  }
}

.company-category {
  position: absolute;
  top: -20px;
  left: -10px;
  background-color: #1F528E;
  color: white;
  display: inline;
  padding: 10px 30px;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .company-category {
    top: 50%;
    margin-left: -20px;
    margin-right: -5vw;
    min-width: 150px;
    padding: 10px 30px 10px 50px;
    transform: translateY(-50%);
  }
}

.company-wrapper .company-vertical-title {
  position: absolute;
  letter-spacing: 4px;
  top: 40px;
  left: 30px;
  writing-mode: vertical-rl; /* 縦書き指定の場合 */
  font-feature-settings: "palt" 0; /* 無効化 */
}
.company-wrapper p {
  line-height: 2;
}
@media (max-width: 768px) {
  .company-wrapper p {
    font-size: 0.9375rem;
  }
}
.company-wrapper .vertical-text-2, .company-wrapper .vertical-text-1 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: white;
  font-size: 1.25rem;
  padding: 10px 5px;
  border: 1px solid #1F528E;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .company-wrapper .vertical-text-2, .company-wrapper .vertical-text-1 {
    display: none;
  }
}
.company-wrapper .vertical-text-1 {
  position: absolute;
  left: 52px;
  top: 0;
}
.company-wrapper .vertical-text-2 {
  position: relative;
}

.company-text {
  border-left: 1px solid;
  border-right: 1px solid;
  padding: 100px 50px 50px 50px;
  display: none;
  transition: all 0.4s ease;
  margin-left: 5%;
  width: 90%;
  margin-top: -15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
@media (max-width: 768px) {
  .company-text {
    padding: 50px 0 30px 0;
    border-left: none;
    border-right: none;
  }
}
.company-text.is-open {
  display: block;
  max-height: 4000px;
}
.company-text div {
  margin-bottom: 100px;
}
.company-text div:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .company-text div {
    margin-bottom: 50px;
  }
}
.company-text img {
  margin-top: 30px;
}
.company-text h3 {
  margin-bottom: 50px;
}

.open-close-button {
  height: 80px;
  width: calc(100% + 100px);
  margin-left: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
  margin-bottom: 0;
  text-align: center;
  cursor: pointer;
  margin-left: 5%;
  width: 90%;
  margin-top: -10px;
  margin-bottom: 100px;
  border-left: 1px solid;
  border-bottom: 1px solid;
  border-right: 1px solid;
  text-underline-offset: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.open-close-button:hover {
  background: #1F528E;
  color: white;
}
@media (max-width: 768px) {
  .open-close-button {
    display: none;
  }
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.policy-table th {
  width: 50px;
  text-align: center;
  vertical-align: top;
  padding: 30px 10px;
}

.policy-table td {
  padding: 30px 10px;
  line-height: 1.8;
}

.policy-table tr {
  border-bottom: 1px dotted;
}
.policy-table tr:last-child {
  border-bottom: none;
}

.policy-table tr + tr td {
  border-top: none;
}

.history-table th {
  width: 100px;
}

.making-wrapper {
  max-width: 100% !important;
  padding: 0 !important;
  display: flex;
  justify-content: space-between;
  gap: 0;
  margin-top: 0;
  padding-top: 0;
}
@media (max-width: 768px) {
  .making-wrapper {
    flex-direction: column;
  }
}
.making-wrapper .left-wrapper {
  flex: 0 0 55%;
  max-width: 735px;
  margin: 0 0 0 auto;
  padding: 0 70px 0 5vw;
  box-sizing: border-box;
  line-height: 1.9;
  border-right: 1px solid;
}
.making-wrapper .left-wrapper::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  bottom: -140px;
  width: 1px;
  background: #1F528E;
}
@media (max-width: 900px) {
  .making-wrapper .left-wrapper {
    transform: translateY(-50px);
    max-width: 100%;
    width: 100%;
    padding: 0 5vw;
    border-right: none;
    transform: none;
  }
  .making-wrapper .left-wrapper::before {
    display: none;
  }
}
.making-wrapper .right-wrapper {
  flex: 0 0 45%;
  max-width: 665px;
  margin: 0 auto 0 0;
  padding: 50px 70px 50px 5vw;
  box-sizing: border-box;
  background: white;
  position: sticky;
  top: 30px;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .making-wrapper .right-wrapper {
    width: 100%;
    padding: 0 5vw 50px 5vw;
    position: static;
  }
}
.making-wrapper h2, .making-wrapper h3 {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 70px 40px 70px;
  margin: 0 -70px 40px -70px;
  line-height: 1;
  font-size: 1.875rem;
  border-bottom: 1px solid #1F528E;
}
@media (min-width: 1334px) {
  .making-wrapper h2, .making-wrapper h3 {
    margin-left: calc(-50vw + 367.5px);
    padding-left: calc(50vw - 367.5px);
  }
}
@media (max-width: 768px) {
  .making-wrapper h2, .making-wrapper h3 {
    font-size: 1.5rem;
    margin-left: -5vw;
    margin-right: -5vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.making-wrapper h3 {
  border-top: 1px solid;
}
.making-wrapper h3 span {
  font-size: 1.375rem;
  display: flex;
  align-items: baseline;
  transform: translateY(6px);
  position: relative;
  top: -3px;
}
@media (max-width: 768px) {
  .making-wrapper h3 span {
    font-size: 1.125rem;
  }
}
.making-wrapper h3 span:nth-child(2) {
  font-size: 1rem;
  margin-left: 10px;
  top: 0;
}
@media (max-width: 768px) {
  .making-wrapper h3 span:nth-child(2) {
    top: -5px;
    line-height: 1.6;
  }
}
.making-wrapper h4 {
  font-size: 1.375rem;
  margin-bottom: 30px;
}
.making-wrapper strong {
  font-weight: bold;
}
.making-wrapper .product-intro, .making-wrapper .product-qa, .making-wrapper .product-features, .making-wrapper .product-bonding, .making-wrapper .product-fields {
  margin-bottom: 50px;
}
.making-wrapper h2 {
  margin-bottom: 0;
}

.product-bold {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 70px 40px 70px;
  margin: 0 -70px 40px -70px;
  font-weight: bold;
  border-bottom: 1px solid;
}
@media (min-width: 1470px) {
  .product-bold {
    margin-left: calc(-50vw + 367.5px);
    padding-left: calc(50vw - 367.5px);
  }
}
@media (max-width: 768px) {
  .product-bold {
    margin-left: -5vw;
    margin-right: -5vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.article-wrapper .left-wrapper {
  width: 30%;
  flex: 0 0 30%;
  transform: none;
  padding-top: 0;
}
.article-wrapper .right-wrapper {
  width: 70%;
  flex: 0 0 70%;
  transform: none;
}
.article-wrapper .right-wrapper::before {
  width: 0;
}

.making-section {
  margin: 0 1.5%;
  background: white;
  position: relative;
  z-index: 1;
}
@media (max-width: 700px) {
  .making-section {
    margin: 0;
    padding-bottom: 50px;
    margin-bottom: 30px;
    border-bottom: none;
  }
}
.making-section .making-images {
  margin-bottom: 1em;
}
.making-section .making-tag {
  border-bottom: #1F528E 1px solid;
  border-top: #1F528E 1px solid;
  padding: 12px 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(50px, 1fr));
  gap: 1.5%;
  align-items: center;
}
.making-section .making-tag span {
  font-size: clamp(11px, 1.2vw, 1rem);
  line-height: 1.3;
  text-align: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #CED5DB;
}
.making-section .making-infomation {
  line-height: 1.8;
}
.making-section .making-infomation span {
  font-size: 0.75rem;
  border: none;
}

.making-method {
  border-bottom: #1F528E 1px solid;
  padding: 12px 0;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 10px 1.5%;
}
.making-method a {
  display: inline-block;
}
@media (max-width: 768px) {
  .making-method {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-bonding ul {
  margin-top: 30px;
}

.product-features ul li,
.product-bonding ul li {
  padding: 30px 0;
  border-bottom: 1px dotted;
}
.product-features ul li:first-child,
.product-bonding ul li:first-child {
  padding-top: 10px;
}
.product-features ul li:last-child,
.product-bonding ul li:last-child {
  border-bottom: none;
  padding-bottom: 10px;
}

.product-features ul li {
  list-style-type: none;
}
.product-features ul li p {
  margin-bottom: 0;
}

.product-process img.flow {
  margin-bottom: 30px;
}
.product-process table {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted;
}
@media (max-width: 768px) {
  .product-process table {
    font-size: 0.9375rem;
  }
}
.product-process table th {
  width: 140px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .product-process table th {
    width: 100px;
  }
}
.product-process table tr:last-child td,
.product-process table tr:last-child th {
  padding-bottom: 20px;
}
.product-process figure {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dotted;
}
.product-process figure:last-child, .product-process figure.no-border {
  border-bottom: none;
  padding-bottom: 0;
}
.product-process figure img {
  width: 120px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .product-process figure img {
    width: 80px;
  }
}
.product-process figure span {
  font-weight: bold;
}

.product-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 30px 0;
}
@media (max-width: 768px) {
  .product-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.product-4 figure {
  font-size: 0.8125rem;
}
@media (max-width: 768px) {
  .product-4 figure {
    font-size: 0.75rem;
  }
}
.product-4 figure img {
  width: 100%;
}

.dictionary-single-body .making-section-template {
  padding: 45px 70px;
  margin: 0;
  background: white;
  border-bottom: 1px dotted;
}
@media (max-width: 768px) {
  .dictionary-single-body .making-section-template {
    padding: 30px 20px;
  }
}

/* Q&A----------------- ------------------*/
.qa-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qa-q, .qa-a {
  display: flex;
  align-items: flex-start; /* 複数行でも先頭に揃える */
  font-size: 1.375rem;
  line-height: 1.5;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .qa-q, .qa-a {
    font-size: 1.125rem;
  }
}
.qa-q::before, .qa-a::before {
  content: "Q.";
  font-size: 1.875rem;
  width: 40px;
  flex-shrink: 0;
  text-align: right;
  margin-right: 10px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .qa-q::before, .qa-a::before {
    font-size: 1.5rem;
  }
}

/* A用に変更 */
.qa-a::before {
  content: "A.";
}

.qa-q {
  margin-bottom: 50px;
}

/* Aの詳細テキスト */
.qa-a-text {
  display: flex;
  flex-direction: column;
  margin-left: 50px;
  gap: 5px;
}
@media (max-width: 768px) {
  .qa-a-text {
    font-size: 0.9375rem;
  }
}
.qa-a-text span {
  font-weight: bold;
  display: block;
}

/* お問い合わせボタンなど */
.qa-contact {
  padding-left: 40px;
  margin-top: 100px;
}
.qa-contact p {
  font-weight: bold;
  margin-bottom: 20px;
}
.qa-contact span {
  position: relative;
  font-size: 0.8125rem;
  padding: 5px 10px;
  border-radius: 20px;
  border: #1F528E 1px solid;
  display: inline-block;
  margin-top: 10px;
  overflow: hidden;
}
.qa-contact span a {
  position: relative;
  color: inherit;
  z-index: 1;
}
.qa-contact span a::after {
  content: " >";
}
.qa-contact span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #ffffff;
  z-index: 0;
}

/*contact--------------------------------*/
.contact-wrapper {
  line-height: 1.8;
  text-align: justify;
}
.contact-wrapper h3 {
  text-underline-offset: 10px;
  font-weight: bold;
  margin: 150px 0 66px 0;
}
@media (max-width: 768px) {
  .contact-wrapper h3 {
    margin-top: 100px;
  }
}

.web-inquiry-list {
  display: flex;
  gap: 30px;
}
@media (max-width: 900px) {
  .web-inquiry-list {
    display: block;
  }
}
.web-inquiry-list .web-inquiry-item {
  position: relative;
  flex: 1;
  border: 1px solid #1F528E;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  margin-bottom: 30px;
}
.web-inquiry-list .web-inquiry-item::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  border: 1px solid #1F528E;
  background: #fff;
  z-index: -1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.web-inquiry-list .web-inquiry-item .web-inquiry-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.web-inquiry-list .web-inquiry-item .web-inquiry-header::after {
  content: "›";
  font-size: 1.25rem;
  color: #1F528E;
  margin-left: auto;
}
.web-inquiry-list .web-inquiry-item .web-inquiry-header .web-inquiry-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.web-inquiry-list .web-inquiry-item .web-inquiry-header .web-inquiry-icon img {
  max-width: 70%;
  max-height: 70%;
  transition: opacity 0.3s ease;
}
.web-inquiry-list .web-inquiry-item .web-inquiry-header h4 {
  font-size: clamp(15px, 1.5vw, 1.125rem);
  font-weight: bold;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.web-inquiry-list .web-inquiry-item p {
  font-size: 0.875rem;
  line-height: 2;
}
.web-inquiry-list .web-inquiry-item:hover .web-inquiry-seihin img {
  content: url("assets/img/icon/icon-seihin1.svg");
}
.web-inquiry-list .web-inquiry-item:hover .web-inquiry-recruit img {
  content: url("assets/img/icon/icon-recruit1.svg");
}
.web-inquiry-list .web-inquiry-item:hover .web-inquiry-contact img {
  content: url("assets/img/icon/icon-contact1.svg");
}
.web-inquiry-list .web-inquiry-item:hover h4 {
  text-decoration: underline;
}

ol.privacy {
  margin-top: 2rem;
  margin-bottom: 2rem;
  list-style: decimal;
  list-style-position: outside;
  padding-left: 1.5em;
}
ol.privacy li {
  margin-bottom: 1.5rem;
  text-align: justify;
}
ol.privacy li::last-child {
  margin-bottom: 0;
}

.support-methods {
  display: flex;
  gap: 20px; /* 横に並べる場合 */
  align-items: flex-start;
  justify-content: center;
  margin-top: 50px;
}
.support-methods .support-method-text {
  padding: 0 1em;
  list-style: 1.9;
}
.support-methods .support-method {
  width: 33.3%;
  font-size: 0.875rem;
}
.support-methods .support-method div h4 {
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
.support-methods .support-method div p {
  font-weight: bold;
  font-size: clamp(1.125rem, 1.7vw, 25px);
  text-align: center;
  position: relative;
  display: inline-block;
  padding-left: 30px;
}
.support-methods .support-method div p a {
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.support-methods .support-method div p a::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: -30px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.support-methods .support-method1 div p a::before {
  background-image: url("img/icon-tell.svg");
  top: 48%;
}
.support-methods .support-method2 div p a::before {
  background-image: url("img/icon-fax.svg");
  top: 46%;
}
.support-methods .support-method3 div p {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
}
.support-methods .support-method3 div p a::before {
  background-image: url("img/icon-mail.svg");
  top: 49%;
}

.support-method div {
  position: relative;
  text-align: center;
  flex: 1;
  border: 1px solid #1F528E;
  background: #DDE4EE;
  padding: 35px 20px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .support-methods {
    display: block;
  }
  .support-methods .support-method {
    width: 100%;
  }
  .support-method:not(:nth-child(1)) {
    margin-top: 30px;
  }
}
/*contact-qa--------------------*/
.faq-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
  }
}

.faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 900px) {
  .faq-column {
    width: 100%;
    max-width: 100%;
  }
}

.faq-item {
  background-color: white;
  border: 1px solid;
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 20px 15px;
  background-color: #1F528E; /* または直接色を指定 */
  color: #fff;
}
@media (max-width: 600px) {
  .faq-item.active .faq-answer {
    padding: 12px;
  }
}

.faq-item.active .faq-question,
.faq-item.active button {
  color: #fff;
  background-color: #1F528E;
}

/* 回答部分の文字色も変更 */
.faq-item.active .faq-answer {
  color: #fff;
  background-color: #1F528E;
}

.faq-question {
  position: relative;
  padding: 15px;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 0.875rem;
  color: #1F528E;
  display: flex;
  align-items: flex-start;
  transition: none;
  min-height: 80px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: background-color 0.3s ease, color 0.3s ease;
  /*&:hover {
    background-color: #f8f9fa;
  }*/
}
.faq-question::after {
  content: "";
  position: absolute;
  bottom: -1px; /* 下に配置 */
  left: 5%; /* 左右に余白をとる */
  width: 90%; /* 横幅90% */
  height: 1px; /* 線の太さ */
  background: #fff; /* 線の色 */
}
@media (max-width: 600px) {
  .faq-question {
    padding: 12px;
    font-size: 0.8125rem;
    min-height: 70px;
  }
}

.question-text {
  flex: 1;
  line-height: 2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.question-label {
  background: transparent;
  position: relative;
  top: -5px;
  padding: 0;
  border-radius: 0;
  font-size: 1.375rem;
  margin-right: 8px;
  min-width: auto;
  text-align: left;
}
@media (max-width: 600px) {
  .question-label {
    font-size: 1.125rem;
    margin-right: 6px;
  }
}

.faq-answer {
  background: white;
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .faq-answer {
    padding: 0 12px;
  }
}

.answer-label {
  background: transparent;
  padding: 0;
  position: relative;
  top: -6px;
  border-radius: 0;
  font-size: 1.375rem;
  margin-right: 8px;
  min-width: auto;
  text-align: left;
}
@media (max-width: 600px) {
  .answer-label {
    font-size: 1.125rem;
  }
}

.answer-content {
  font-size: 0.875rem;
  line-height: 2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 600px) {
  .answer-content {
    font-size: 0.8125rem;
  }
}

.answer-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.highlight-section {
  margin-top: 15px;
}

.highlight-title {
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
}
@media (max-width: 600px) {
  .highlight-title {
    font-size: 0.6875rem;
    padding: 3px 6px;
    margin-bottom: 8px;
  }
}

.highlight-content {
  font-size: 0.8125rem;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 600px) {
  .highlight-content {
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 20px 15px;
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

.more-link {
  font-size: 1.375rem;
  text-align: center;
  text-underline-offset: 5px;
  text-decoration: underline;
  margin-top: 70px;
}
@media (max-width: 600px) {
  .more-link {
    font-size: 1.125rem;
  }
}

.faq-item-new {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*contactform--------------*/
.contact-wrapper .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 70px 70px 70px;
  background-color: white;
}
@media (max-width: 768px) {
  .contact-wrapper .container {
    padding: 0 0 70px 0;
  }
}
.contact-wrapper .container form {
  margin-top: 70px;
}
.contact-wrapper .container p {
  line-height: 1.9;
}
.contact-wrapper .container .form-group {
  margin-bottom: 30px;
  position: relative;
  padding-left: 60px;
}
.contact-wrapper .container .form-group .form-label {
  font-weight: bold;
  color: #1F528E;
  font-size: 0.875rem;
  margin-bottom: 8px;
  display: block;
}
.contact-wrapper .container .form-group .input-wrapper {
  position: relative;
}
.contact-wrapper .container .form-group input[type=file] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #1F528E;
  font-size: 0.875rem;
  background-color: white;
  color: #1F528E;
  cursor: pointer;
}
.contact-wrapper .container .form-group input[type=file]::file-selector-button {
  background-color: #1F528E;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}
.contact-wrapper .container .form-group input[type=file]::file-selector-button:hover {
  background-color: #164080;
}
.contact-wrapper .container .form-group input[type=file]:focus {
  outline: none;
  border-color: #1F528E;
}
.contact-wrapper .container .form-group .input-wrapper.contact-type {
  border: 1px solid;
  padding-top: 14px;
  padding-bottom: 7px;
  font-size: 1rem;
}
.contact-wrapper .container .form-group .wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
  display: block;
  font-weight: bold;
}
.contact-wrapper .container .form-group .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.contact-wrapper .container .form-group .wpcf7-radio .wpcf7-list-item label input[type=radio] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: radio;
  -moz-appearance: radio;
  flex-shrink: 0;
}
.contact-wrapper .container .form-group .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  color: #1F528E;
  font-size: 0.875rem;
}
.contact-wrapper .container .form-input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 1px solid #1F528E;
  font-size: 0.875rem;
  background-color: white;
  color: #1F528E;
}
.contact-wrapper .container .form-input:focus {
  outline: none;
  border-color: #1F528E;
}
.contact-wrapper .container .form-input::-moz-placeholder {
  color: #999;
}
.contact-wrapper .container .form-input::placeholder {
  color: #999;
}
.contact-wrapper .container .message-textarea {
  width: 100%;
  min-height: 200px;
  padding: 12px 40px 12px 16px;
  border: 1px solid #1F528E;
  font-size: 0.875rem;
  background-color: white;
  color: #1F528E;
  resize: vertical;
}
.contact-wrapper .container .message-textarea:focus {
  outline: none;
}
.contact-wrapper .container .message-textarea.wpcf7-not-valid {
  border-color: #dc3545;
}
.contact-wrapper .container .info-icon {
  display: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #dc3545;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}
.contact-wrapper .container .wpcf7-not-valid + .info-icon {
  display: block;
}
.contact-wrapper .container .error-message {
  color: #dc3545;
  font-size: 0.75rem;
  margin-top: 4px;
  display: none;
}
.contact-wrapper .container .wpcf7-not-valid-tip {
  color: #dc3545 !important;
  font-size: 0.75rem !important;
  margin-top: 4px !important;
  display: block !important;
}
.contact-wrapper .container .required-badge,
.contact-wrapper .container .optional-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}
.contact-wrapper .container .required-badge {
  background-color: #1F528E;
  color: white;
}
.contact-wrapper .container .optional-badge {
  background-color: #999;
  color: white;
}
.contact-wrapper .privacy-section {
  margin: 50px 0;
  padding-left: 60px;
}
@media (max-width: 768px) {
  .contact-wrapper .privacy-section {
    padding-left: 0;
  }
}
.contact-wrapper .privacy-section .privacy-notice {
  font-size: 0.875rem;
  margin-bottom: 70px;
  color: #1F528E;
}
.contact-wrapper .privacy-section .privacy-policy-box {
  border: 1px solid #ddd;
  line-height: 1.8;
  padding: 20px;
  max-height: 300px;
  overflow-y: auto;
  background-color: white;
  margin-bottom: 30px;
  /* スクロールバー */
}
.contact-wrapper .privacy-section .privacy-policy-box h3 {
  color: #1F528E;
  font-size: 1rem;
  margin-bottom: 15px;
  margin-top: 0;
}
.contact-wrapper .privacy-section .privacy-policy-box h4 {
  color: #1F528E;
  font-size: 0.875rem;
  margin: 20px 0 10px 0;
}
.contact-wrapper .privacy-section .privacy-policy-box p {
  font-size: 0.875rem;
  margin-bottom: 10px;
  color: #1F528E;
}
.contact-wrapper .privacy-section .privacy-policy-box ol {
  padding-left: 20px;
  margin-bottom: 15px;
}
.contact-wrapper .privacy-section .privacy-policy-box ol li {
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: #1F528E;
}
.contact-wrapper .privacy-section .privacy-policy-box ul {
  padding-left: 20px;
  margin-bottom: 15px;
}
.contact-wrapper .privacy-section .privacy-policy-box a {
  color: #1F528E;
  text-decoration: underline;
}
.contact-wrapper .privacy-section .privacy-policy-box::-webkit-scrollbar {
  width: 6px;
}
.contact-wrapper .privacy-section .privacy-policy-box::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.contact-wrapper .privacy-section .privacy-policy-box::-webkit-scrollbar-thumb {
  background: #1F528E;
  border-radius: 3px;
}
.contact-wrapper .privacy-section .privacy-policy-box::-webkit-scrollbar-thumb:hover {
  background: #164080;
}
.contact-wrapper .privacy-checkbox {
  text-align: center;
  padding: 15px;
  width: 60%;
  margin: 0 auto 50px auto;
  background-color: #CED5DB;
}
@media (max-width: 768px) {
  .contact-wrapper .privacy-checkbox {
    width: 100%;
  }
}
.contact-wrapper .privacy-checkbox input[type=checkbox] {
  all: revert;
}
.contact-wrapper .privacy-checkbox label {
  font-size: 0.875rem;
  color: #1F528E;
  cursor: pointer;
}
.contact-wrapper .submit-button {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 15px 30px;
  background-color: white;
  color: #1F528E;
  border: 2px solid #1F528E;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
  pointer-events: none;
  text-align: center;
}
.contact-wrapper .submit-button.enabled {
  opacity: 1;
  pointer-events: all;
}
.contact-wrapper .submit-button.enabled:hover {
  background-color: #1F528E;
  color: white;
}

/* セレクト本体 */
.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  color: #1F528E;
  border: 1px solid #1F528E;
  border-radius: 0;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

/* ドロップダウンの選択肢 */
.form-input option {
  background: #1F528E;
  color: #fff;
  border-radius: 0;
}

/* select の矢印カスタム */
.form-input::-ms-expand {
  display: none;
}

.input-wrapper {
  position: relative;
}

/*検索結果----------------------*/
.post-content {
  border-bottom: 1px dotted;
  margin-bottom: 50px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .post-content {
    margin-bottom: 30px;
    padding-bottom: 0;
  }
  .post-content p {
    font-size: 0.875rem;
  }
}
.post-content h3 {
  font-size: 1.125rem;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .post-content h3 {
    font-size: 1rem;
    margin-top: 10px;
  }
}
.post-content .post-type-label {
  line-height: 2;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.main-wrapper a:nth-child(1) .postcontent {
  padding-top: 0;
}

.main-wrapper a:last-child .postcontent {
  border-bottom: none;
}

.article-content h3 {
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.article-content .post-type-label {
  line-height: 2;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.section-single-wrapper {
  width: 100%;
  background: #CED5DB;
}

.section-single {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
}
@media (min-width: 1400px) {
  .section-single {
    border-right: 1px solid;
    border-left: 1px solid;
  }
}

.single-header {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.single-header img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-vertical-title {
  position: absolute;
  left: 70px;
  top: 60px;
  white-space: nowrap;
  z-index: 2;
}
@media (max-width: 900px) {
  .single-vertical-title {
    left: 20px;
    top: 30px;
  }
}

.single-article-title {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 1;
}
@media (max-width: 900px) {
  .single-article-title {
    left: 20px;
    bottom: 65px;
    font-size: 1.125rem;
  }
}
.single-article-title .article-text-1 {
  text-orientation: mixed;
  background: white;
  padding: 5px 10px;
  border: 1px solid #1F528E;
  letter-spacing: 1px;
  display: inline-block;
  font-size: 0.8125rem;
  padding: 10px;
  margin-bottom: 6px;
}
@media (max-width: 900px) {
  .single-article-title .article-text-1 {
    font-size: 0.75rem;
  }
}
.single-article-title .article-text-2 span {
  display: inline-block;
  margin-right: 20px;
  text-orientation: mixed;
  background: white;
  padding: 5px 10px;
  border: 1px solid #1F528E;
}
.single-article-title .vertical-text-2, .single-article-title .vertical-text-1 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: white;
  font-size: 1.25rem;
  padding: 10px 5px;
  border: 1px solid #1F528E;
  letter-spacing: 7px;
  line-height: 1.7;
  padding: 10px 4px;
  font-size: 1.375rem;
}
@media (max-width: 900px) {
  .single-article-title .vertical-text-2, .single-article-title .vertical-text-1 {
    font-size: 1.125rem;
  }
}
.single-article-title .vertical-text-1 {
  position: absolute;
  top: 0;
  left: 54px;
}
@media (max-width: 768px) {
  .single-article-title .vertical-text-1 {
    left: 48px;
  }
}

.single-header .vertical-text-2, .single-header .vertical-text-1 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: white;
  font-size: 1.25rem;
  padding: 10px 5px;
  border: 1px solid #1F528E;
  letter-spacing: 4px;
  line-height: 1.7;
  padding: 10px 4px;
  font-size: 1.375rem;
}
@media (max-width: 900px) {
  .single-header .vertical-text-2, .single-header .vertical-text-1 {
    font-size: 1.125rem;
  }
}
.single-header .vertical-text-1 {
  position: absolute;
  top: 0;
  left: 54px;
}
@media (max-width: 768px) {
  .single-header .vertical-text-1 {
    left: 48px;
  }
}

@media (max-width: 900px) {
  .section-single-wrapper .content-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
}
.section-single-wrapper .content-wrapper .sidebar-single {
  width: 25%;
  padding-top: 20px;
  margin-top: 50px;
  position: sticky;
  z-index: 100;
}
@media (max-width: 900px) {
  .section-single-wrapper .content-wrapper .sidebar-single {
    width: 100%;
    padding-top: 0;
    width: 100%;
    margin-top: 0;
  }
}
.section-single-wrapper .content-wrapper .main-wrapper {
  padding-top: 70px;
}
@media (max-width: 900px) {
  .section-single-wrapper .content-wrapper .main-wrapper {
    padding-top: 0;
    width: 100%;
  }
}
.section-single-wrapper .new-arrival-dictionary .new-arrival-title {
  padding-left: 70px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .section-single-wrapper .new-arrival-dictionary .new-arrival-title {
    padding-left: 5vw;
  }
}
.section-single-wrapper .new-arrivals {
  padding: 0 50px;
}
.section-single-wrapper .new-arrivals .arrivals::before {
  height: 0;
}
@media (max-width: 900px) {
  .section-single-wrapper .arrivals:first-child:before {
    height: 1px;
  }
  .section-single-wrapper .arrivals:last-child:before {
    height: 0;
  }
}
.section-single-wrapper .new-arrival-dictionary {
  padding-bottom: 30px;
  border-top: none;
}

.content-wrapper.wrapper.wrapper--limited.content-single {
  padding: 70px 100px;
}
@media (max-width: 768px) {
  .content-wrapper.wrapper.wrapper--limited.content-single {
    padding: 50px 5vw;
  }
}

.content-single .main-wrapper {
  /*padding-left:50px;
  padding-right:50px;*/
}
@media (max-width: 900px) {
  .content-single .main-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.content-single .main-wrapper .wp-block-heading {
  margin-bottom: 40px;
  margin-top: 20px;
}
.content-single .main-wrapper p {
  line-height: 1.9;
  margin-bottom: 80px;
  text-align: justify;
}
@media (max-width: 768px) {
  .content-single .main-wrapper p {
    margin-bottom: 60px;
  }
}
.content-single .main-wrapper .caption {
  font-size: 0.875rem;
}
.content-single .main-wrapper .wp-block-image {
  width: 100%;
  margin-bottom: 40px;
}
.content-single .main-wrapper .wp-block-image img {
  margin-bottom: 10px;
}
.content-single .main-wrapper h1 {
  font-size: 1.875rem;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .content-single .main-wrapper h1 {
    font-size: 1.625rem;
  }
}
.content-single .main-wrapper h3 {
  font-size: 1.875rem;
  margin-bottom: 60px;
}
.content-single .main-wrapper h4 {
  font-size: 1.375rem;
  margin-bottom: 60px;
}
.content-single .main-wrapper .wp-block-media-text {
  margin-bottom: 30px;
}
.content-single .main-wrapper .wp-block-media-text figure {
  height: 100%;
}
.content-single .main-wrapper .wp-block-media-text figure img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}
.content-single .main-wrapper .wp-block-separator {
  border-top: 1px solid;
  padding: 50px 0 15px 0;
}
@media (max-width: 768px) {
  .content-single .main-wrapper .wp-block-separator {
    padding: 40px 0 15px 0;
  }
}
.content-single .main-wrapper .post-content {
  border: none;
}
@media (max-width: 768px) {
  .content-single .main-wrapper .post-content p {
    font-size: 0.9375rem;
  }
  .content-single .main-wrapper .post-conten h1 {
    font-size: 1.625rem;
  }
}
.content-single .main-wrapper .making-method {
  border-top: 1px solid;
  justify-content: center;
}
.content-single .main-wrapper .shisaku-round {
  padding: 60px 110px;
  border: 1px solid;
  border-radius: 200px;
  margin: 100px 0;
}
@media (max-width: 768px) {
  .content-single .main-wrapper .shisaku-round {
    margin: 20px 0 80px;
  }
}
.content-single .main-wrapper .shisaku-round h3 {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 0;
}
.content-single .main-wrapper .shisaku-round p {
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .content-single .main-wrapper .shisaku-round {
    padding: 40px 60px;
  }
  .content-single .main-wrapper .shisaku-round h3 {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .content-single .main-wrapper .shisaku-round p {
    font-size: 0.875rem;
  }
}
@media (max-width: 500px) {
  .content-single .main-wrapper .shisaku-round {
    padding: 20px 50px;
  }
  .content-single .main-wrapper .shisaku-round h3 {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }
  .content-single .main-wrapper .shisaku-round p {
    font-size: 0.8125rem;
  }
}
.content-single .main-wrapper .wp-block-heading {
  margin-bottom: 30px;
  font-size: 1.375rem;
}
.content-single .main-wrapper .shisaku-making {
  position: relative;
  border-top: 1px solid #1F528E;
  text-align: center;
  margin-bottom: 0;
}
.content-single .main-wrapper .shisaku-making span {
  border: 1px solid;
  background: #fff;
  padding: 3px 20px;
  border-radius: 30px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.content-single .new-arrivals .arrivals::before {
  height: 0;
}

.content-single .person-comment {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 30px;
}
.content-single .person-comment .person-image img {
  flex-shrink: 0;
  width: 80px;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
}
.content-single .person-comment .person-image img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-single .person-comment .person-name {
  font-weight: bold;
}
.content-single .person-comment .person-text {
  color: #2a5d9f;
}
.content-single .person-comment .person-text .person-speech {
  line-height: 1.8;
  font-size: 0.875rem;
}

figure.wp-block-gallery.has-nested-images {
  margin-bottom: 30px;
}

.article-icon {
  margin-bottom: 10px;
}

.article-icon::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  background-size: contain;
}

.article-tag::before {
  top: 6px;
  left: 0;
  margin-right: 2px;
  background: url("assets/img/icon/icon-tag.svg") no-repeat center center;
}

.article-title::before {
  top: 6px;
  left: 0;
  margin-right: 2px;
  background: url("assets/img/icon/icon-title.svg") no-repeat center center;
}

.article-category::before {
  top: 7px;
  left: 0;
  margin-right: 2px;
  background: url("assets/img/icon/icon-category.svg") no-repeat center center;
}

.article-share::before {
  top: 6px;
  left: 0;
  margin-right: 2px;
  background: url("assets/img/icon/icon-share.svg") no-repeat center center;
}

.article-text {
  font-size: 0.875rem;
  margin-bottom: 30px;
}
.article-text .tags a {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  border: #1F528E 1px solid;
  margin-bottom: 10px;
  margin-right: 10px;
}
.article-text .tags a::before {
  content: "# ";
}

.article-making {
  margin-bottom: 30px;
}
.article-making span {
  display: block;
  font-size: 0.875rem;
  line-height: 2;
}

.wp-block-cover .has-background-dim:not([class*=-background-color]) {
  background: none;
}

.wp-block-cover {
  margin-left: calc(-25% - 350px);
  margin-right: -100px;
  min-height: 300px;
  margin-bottom: 80px;
  margin-top: 80px;
  overflow: hidden;
}

p.has-text-align-center.has-medium-font-size {
  margin-bottom: 0;
  text-align: center;
  color: #1F528E;
}

/*キャプションを出す-------------------*/
.wp-block-image {
  position: relative;
  display: inline-block;
  width: 100%;
}

.wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
}

.wp-block-image figcaption {
  width: 100%;
  font-size: 0.9rem;
  box-sizing: border-box;
  text-align: left; /* ← 左寄せ */
}

.main-wrapper p.number {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.main-wrapper p.number span {
  font-size: 2.5rem;
  display: inline-block;
  padding-left: 5px;
}

.related-posts h3 {
  font-size: 43px;
  padding-left: 5vw;
  border-bottom: 1px solid;
  margin: 0;
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 200;
}

.new-arrival-dictionary {
  padding-bottom: 80px;
  /*position: relative;*/
  border-top: #1F528E 1px solid;
}
@media (max-width: 768px) {
  .new-arrival-dictionary .button-wrapper {
    margin-top: 50px;
  }
}
.new-arrival-dictionary .making-section-divider3 {
  height: 1px;
  background-color: #1F528E;
  width: 100%;
  margin: 0 auto 40px auto;
}
@media (max-width: 1024px) {
  .new-arrival-dictionary .making-section-divider3 {
    height: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .new-arrival-dictionary .making-section-divider2 {
    height: 1px;
    background-color: #1F528E;
    width: 100%;
    margin: 0 auto 40px auto;
  }
}
.new-arrival-dictionary .new-arrival-title {
  height: 160px;
  display: flex;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: #1F528E 1px solid;
}
@media (max-width: 768px) {
  .new-arrival-dictionary .new-arrival-title {
    height: auto;
    margin-bottom: 10px;
    border-bottom: none;
    padding: 30px 0;
    border-bottom: #1F528E 1px solid;
  }
}
.new-arrival-dictionary .new-arrival-title .inner {
  width: 1400px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding: 0 70px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 900px) {
  .new-arrival-dictionary .new-arrival-title .inner {
    padding: 0 5vw;
    display: block;
  }
}
.new-arrival-dictionary .new-arrival-title h3 {
  font-size: 43px;
  padding-right: 10px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 200;
}
@media (max-width: 768px) {
  .new-arrival-dictionary .new-arrival-title h3 {
    font-size: 1.625rem;
    margin-top: -10px;
  }
}
.new-arrival-dictionary .new-arrival-title ul {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 920px) {
  .new-arrival-dictionary .new-arrival-title ul {
    gap: 8px;
  }
}
.new-arrival-dictionary .new-arrival-title ul li {
  display: flex;
  padding: 5px 20px;
  color: white;
  background: #1F528E;
  white-space: nowrap;
  border-radius: 20px;
  font-size: 1rem;
  flex-direction: row;
  color: white;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
@media (max-width: 920px) {
  .new-arrival-dictionary .new-arrival-title ul li {
    padding: 4px 10px;
    font-size: 0.875rem;
  }
}
.new-arrival-dictionary .new-arrival-title ul li:hover {
  color: #1F528E;
  background-color: #ECDF2B;
}
.new-arrival-dictionary .new-arrival-title ul li.active {
  color: #1F528E;
  background-color: #ECDF2B;
}
.new-arrival-dictionary .new-arrival-title ul li:nth-child(2):before {
  content: "";
  background: url(assets/img/icon/circle.svg);
  width: 20px;
  height: 20px;
  background-size: cover;
}
.new-arrival-dictionary .new-arrival-title ul li:nth-child(2):hover::before, .new-arrival-dictionary .new-arrival-title ul li:nth-child(2).active::before {
  background: url(assets/img/icon/circle_blue.svg);
  width: 20px;
  height: 20px;
  background-size: cover;
}
.new-arrival-dictionary .new-arrival-title ul li:nth-child(3):before {
  content: "";
  background: url(assets/img/icon/square.svg);
  width: 20px;
  height: 20px;
  background-size: cover;
}
.new-arrival-dictionary .new-arrival-title ul li:nth-child(3):hover::before, .new-arrival-dictionary .new-arrival-title ul li:nth-child(3).active::before {
  background: url(assets/img/icon/square_blue.svg);
  width: 20px;
  height: 20px;
  background-size: cover;
}
.new-arrival-dictionary .new-arrival-title ul li:nth-child(4):before {
  content: "";
  background: url(assets/img/icon/flag.svg);
  width: 20px;
  height: 20px;
  background-size: cover;
}
.new-arrival-dictionary .new-arrival-title ul li:nth-child(4):hover::before, .new-arrival-dictionary .new-arrival-title ul li:nth-child(4).active::before {
  background: url(assets/img/icon/flag_blue.svg);
  width: 20px;
  height: 20px;
  background-size: cover;
}

.new-arrivals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  position: relative;
}
@media (max-width: 1024px) {
  .new-arrivals {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .new-arrivals {
    grid-template-columns: repeat(1, 1fr);
  }
}
.new-arrivals .arrivals {
  position: relative;
  padding-bottom: 40px;
  pointer-events: auto !important;
}
.new-arrivals .arrivals:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: calc(100% - 40px);
  transform: translateX(15px);
  width: 1px;
  background: #1F528E;
}
@media (max-width: 1024px) {
  .new-arrivals .arrivals:not(:nth-child(3n))::after {
    width: 0;
  }
}
@media (max-width: 1024px) {
  .new-arrivals .arrivals:nth-child(2n-1)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: calc(100% - 40px);
    transform: translateX(15px);
    width: 1px;
    background: #1F528E;
  }
}
@media (max-width: 600px) {
  .new-arrivals .arrivals:nth-child(2n-1)::after {
    display: none;
  }
}
.new-arrivals .arrivals::before {
  content: "";
  height: 1px;
  width: calc(100% + 30px);
  background: #1F528E;
  position: absolute;
  bottom: 0;
  left: -15px;
}
.new-arrivals .arrivals-top {
  position: relative;
  margin-bottom: 20px;
}
.new-arrivals .arrivals-title {
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
  min-height: 300px;
}
.new-arrivals .arrivals-title .category {
  color: white;
  border-radius: 20px;
  background: #1F528E;
  color: white;
  text-align: center;
  padding: 2px 10px;
  width: 100px;
}
.new-arrivals .vertical-text-2, .new-arrivals .vertical-text-1 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: white;
  font-size: 1.25rem;
  padding: 10px 1px;
  white-space: nowrap;
  writing-mode: vertical-rl;
  font-feature-settings: "palt" 0;
  border: 1px solid #1F528E;
}
.new-arrivals .vertical-text-1 {
  position: absolute;
  top: 40px;
  left: 50px;
}
.new-arrivals .vertical-text-2 {
  position: relative;
  top: 6px;
  left: 4px;
}
.new-arrivals .arrivals-bottom {
  font-size: 0.75rem;
  text-align: center;
  letter-spacing: 1px;
}
.new-arrivals .arrivals-bottom span {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  border: #1F528E 1px solid;
  margin-bottom: 10px;
  margin-left: 10px;
}
.new-arrivals .arrivals-bottom span a::before {
  content: "# ";
}
.new-arrivals .arrivals-bottom span:last-child {
  margin-left: 0;
}

@media (max-width: 1024px) {
  .new-arrivals::before {
    left: calc(50% + 15px);
  }
  .new-arrivals::after {
    display: none;
  }
}
/* 1列のとき → 縦線なし */
@media (max-width: 768px) {
  .new-arrivals::before,
  .new-arrivals::after {
    display: none;
  }
}
/*ここまで*/
.grid-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(1, 1fr);
  position: relative;
  width: 100%;
  max-width: 600px;
  padding: 10px 20px;
  /*aspect-ratio: 7 / 7;*/
}
@media (max-width: 768px) {
  .grid-container {
    padding: 30px 20px 10px 20px;
  }
}

.arrivals-images {
  margin-bottom: 1em;
  position: relative;
}
.arrivals-images .responsive-svg {
  width: 100%;
  height: 100%;
}
.arrivals-images .responsive-svg svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1.2);
  transform-origin: center center;
}

/* 背景画像 */
.background {
  grid-column: 1/8;
  grid-row: 1/6;
  position: absolute;
  width: 100%;
  top: 62px;
  aspect-ratio: 258/204;
  overflow: hidden;
}

/* ピンク部分 */
.pink-area {
  grid-column: 1/3;
  grid-row: 1/6;
  z-index: 1;
}

/* テキスト部分 */
.text-area {
  grid-column: 1/8;
  grid-row: 6/7;
  min-height: 7em;
}

/* タグ・日付 */
.meta-area {
  grid-column: 1/8;
  grid-row: 7/8;
}

html {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #1F528E;
  font-size: 1rem;
  line-height: 1.9;
  overflow-x: hidden;
  scroll-behavior: smooth;
  letter-spacing: 0.05em;
  text-align: justify;
  font-feature-settings: "palt";
}
html a {
  text-decoration: none;
  color: #1F528E;
}

body {
  padding-top: 160px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
@media (max-width: 1080px) {
  body {
    padding-top: 85px;
  }
}
@media (max-width: 768px) {
  body {
    overflow: hidden;
  }
}

body.dictionary-page {
  padding-top: 0;
}
@media (max-width: 1080px) {
  body.dictionary-page {
    padding-top: 0;
  }
}

img, video {
  max-inline-size: 100%;
  max-block-size: 100%;
}

strong {
  font-weight: bold;
}

.wrapper {
  width: 100%;
}

.wrapper.wrapper--limited, .wrapper--limited-no-margin {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.wrapper.wrapper--limited {
  padding: 70px 5vw;
}

.wrapper--limited-no-margin {
  padding: 0 5vw;
}

@media (max-width: 768px) {
  .wrapper.wrapper--limited {
    padding: 50px 5vw;
  }
  .wrapper.wrapper--limited .news-date, .wrapper.wrapper--limited .hotel-date {
    margin-right: 0;
    margin-bottom: 4px;
    min-width: unset;
  }
  .wrapper.wrapper--limited .news-title, .wrapper.wrapper--limited hotel-title {
    line-height: 1.6;
  }
  .wrapper.wrapper--limited .button-white, .wrapper.wrapper--limited .button-black {
    margin-left: auto;
    margin-right: auto;
  }
}
.wrapper.wrapper--full {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/*ローディングアニメーション*/
#loading {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.loader-wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-content {
  width: 118px;
  height: 120px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .loader-content {
    width: 80px;
    height: 82px;
    transform: scale(1.2);
  }
}
@media (max-width: 480px) {
  .loader-content {
    width: 60px;
    height: 61px;
    transform: scale(1.2);
  }
}

.loader-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}

.loop-svg {
  width: 800px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
@media (max-width: 768px) {
  .loop-svg {
    width: 543px;
  }
}
@media (max-width: 480px) {
  .loop-svg {
    width: 407px;
  }
}

.loaded {
  opacity: 0;
  pointer-events: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

header, .header-menu--common {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000 !important;
  background-color: #fff;
  transition: transform 0.3s ease-in-out, background-color 0.5s ease;
  box-sizing: border-box;
}

header {
  overflow-x: hidden;
}

.header-menu--common {
  display: flex;
  width: 100%;
  max-width: 100%;
  height: 160px;
  border-bottom: #1F528E 1px solid;
  flex-direction: row;
  box-sizing: border-box;
  margin: 0 auto;
}
.header-menu--common > * {
  box-sizing: border-box;
}
@media (max-width: 1080px) {
  .header-menu--common {
    height: 85px;
  }
}

.header-menu--common.header-hidden {
  transform: translateY(-100%);
}

.header-menu--common.header-visible {
  transform: translateY(0);
}

.company-logo {
  width: 20%;
  max-width: 20%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
@media (min-width: 1081px) and (max-width: 1400px) {
  .company-logo {
    width: 16%;
    max-width: 16%;
  }
}
@media (max-width: 860px) {
  .company-logo {
    margin-left: 5vw;
    width: 100px;
    max-width: 100px;
  }
}
.company-logo a {
  display: block;
  height: 100%;
  width: 100%;
}
.company-logo::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 0;
  width: 1px;
  background-color: #1F528E;
}
@media (max-width: 860px) {
  .company-logo::after {
    display: none;
  }
}
.company-logo .logo-text {
  max-width: 200px;
  width: 72%;
  height: 100%;
  margin: 0 auto;
  background: url("assets/img/common/company_h1.svg") no-repeat center center;
  background-size: contain;
}
@media (min-width: 1081px) and (max-width: 1400px) {
  .company-logo .logo-text {
    width: 80%;
  }
}
@media (max-width: 860px) {
  .company-logo .logo-text {
    background: url("assets/img/common/logo_only.svg") no-repeat center center;
    width: 100%;
  }
}

.global-menu-wrapper {
  flex: 1;
  min-width: 0;
  height: 100%;
  position: relative;
  margin-top: 0;
}
@media (min-width: 1081px) and (max-width: 1400px) {
  .global-menu-wrapper {
    width: 58.08%;
  }
}
@media (max-width: 1080px) {
  .global-menu-wrapper {
    background: url(assets/img/common/logo_text.svg) center center no-repeat;
    /*width:calc(100% - 20.31% - 80px);*/
  }
}
@media (max-width: 600px) {
  .global-menu-wrapper {
    background: none;
  }
}
.global-menu-wrapper::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 0;
  width: 1px;
  background-color: #1F528E;
}
.global-menu-wrapper nav {
  height: 100%;
}
.global-menu-wrapper ul {
  display: flex;
  height: 100%;
  width: 100%;
}
@media (min-width: 1081px) and (max-width: 1400px) {
  .global-menu-wrapper ul {
    width: calc(100% + 1px);
  }
}
@media (max-width: 1080px) {
  .global-menu-wrapper ul {
    display: none;
  }
}
.global-menu-wrapper ul li {
  flex: 1;
  position: relative;
  box-sizing: border-box;
  font-size: clamp(0.625rem, 3vw, 1rem);
  white-space: nowrap;
}
.global-menu-wrapper ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  height: calc(100% + 1px);
  width: calc(100% + 1px);
  left: -1px;
  padding-right: 0;
}
.global-menu-wrapper ul li a::after {
  content: "";
  position: absolute;
  top: 60px;
  bottom: 75px;
  right: 0;
  width: 1px;
  background-color: #1F528E;
  transition: top 0.3s ease, bottom 0.3s ease;
}
.global-menu-wrapper ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.global-menu-wrapper ul li a:hover, .global-menu-wrapper ul li a.is-hovered {
  background: #ECDF2B;
}
.global-menu-wrapper ul li a:hover::before, .global-menu-wrapper ul li a.is-hovered::before {
  background-color: #1F528E;
}
.global-menu-wrapper ul li a:hover::after, .global-menu-wrapper ul li a.is-hovered::after {
  top: 0;
  bottom: 0;
}
.global-menu-wrapper ul li a span {
  position: relative;
}
.global-menu-wrapper ul li a span::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #1F528E;
  border-bottom: 1px solid #1F528E;
  transform: rotate(45deg);
  margin: 8px auto 0;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.global-menu-wrapper ul li a span::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 50%;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #1F528E;
  border-bottom: 1px solid #1F528E;
  transform: rotate(225deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.global-menu-wrapper ul li:last-child a::after {
  top: 10px;
  bottom: 10px;
}
@media (min-width: 1081px) and (max-width: 1400px) {
  .global-menu-wrapper ul li:last-child a::after {
    right: 1px;
  }
}
.global-menu-wrapper ul li:last-child a:hover::after, .global-menu-wrapper ul li:last-child a.is-hovered::after {
  top: 0;
  bottom: 0;
}
.global-menu-wrapper ul li a:hover span::after, .global-menu-wrapper ul li a.is-hovered span::after {
  opacity: 0;
}
.global-menu-wrapper ul li a:hover span::before, .global-menu-wrapper ul li a.is-hovered span::before {
  opacity: 1;
}
.global-menu-wrapper ul li:last-child {
  text-align: center;
}
.global-menu-wrapper ul li.active a {
  background: #ECDF2B;
}
.global-menu-wrapper ul li.active a::after {
  top: 0;
  bottom: 0;
}
.global-menu-wrapper ul li.active a::before {
  background-color: #1F528E;
}

.menu-panel {
  position: fixed;
  top: 160px;
  left: 0;
  width: 100%;
  height: 0;
  background: #FFFFFF;
  overflow: hidden;
  z-index: 999;
  transition: opacity 0.2s ease;
  opacity: 1;
}
.menu-panel.is-open {
  height: 400px;
  top: 160px;
  opacity: 1;
}
.menu-panel.is-closing {
  height: 0;
  opacity: 0;
}
@media (max-width: 1080px) {
  .menu-panel {
    top: 85px;
  }
  .menu-panel.is-open {
    top: 85px;
  }
}
.menu-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to bottom, #ECDF2B 0px, #ECDF2B 3px, #1F528E 3px, #1F528E 4px);
  z-index: 10;
}
.menu-panel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to bottom, #ECDF2B 0px, #ECDF2B 3px, #1F528E 3px, #1F528E 4px);
  z-index: 10;
}
.menu-panel .menu-panel-content {
  height: 343px;
  overflow-y: auto;
  padding: 30px;
  display: flex;
  flex-direction: row;
}
.menu-panel .menu-panel-content .menu_inner {
  display: flex;
  flex-wrap: wrap; /* 折り返しを有効化 */
  gap: 15px;
}
.menu-panel .menu-panel-content .menu_inner li {
  flex: 0 0 calc(33.33% - 10px);
  box-sizing: border-box;
  margin-bottom: 10px;
  font-size: 0.875rem;
  position: relative;
}
.menu-panel .menu-panel-content .menu_inner li a {
  border-bottom: #1F528E 1px solid;
  padding-bottom: 5px;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.menu-panel .menu-panel-content .menu_inner li::after {
  content: " >";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-bottom: none;
}
.menu-panel .menu-panel-content .menu-outer {
  width: calc(100% - 550px);
  max-width: 550px;
}
.menu-panel .menu-panel-content .menu_company li a {
  min-width: 120px;
}
.menu-panel .menu-panel-content .menu_contact li a {
  min-width: 200px;
}
.menu-panel .menu-panel-content .menu-title-outer {
  min-width: 300px;
}
.menu-panel .menu-panel-content .menu-titletext-outer {
  width: 520px;
  margin-right: 20px;
  border-right: 1px dotted #1F528E;
}
.menu-panel .menu-panel-content .menu-titletext-outer:after {
  content: "";
  width: 1px;
  height: auto;
  background: #1F528E;
}
.menu-panel .menu-panel-content .menu-title {
  font-size: 34px;
  margin-bottom: 35px;
  letter-spacing: 6px;
  line-height: 1.5;
}
.menu-panel .menu-panel-content .menu-text {
  max-width: 500px;
  box-sizing: border-box;
  font-size: 0.875rem;
  text-align: justify;
  margin-bottom: 35px;
  padding-right: 20px;
}
.menu-panel .menu-panel-content .tag_menu_images li a:nth-child(2)::after {
  content: " >";
  border-bottom: none;
}
.menu-panel .menu-panel-content .menu-jiten-outer {
  display: block;
  flex-direction: row;
  overflow-x: scroll;
}
.menu-panel .menu-panel-content .menu-jiten-outer div {
  margin-right: 50px;
}
.menu-panel .menu-panel-content .menu-jiten-outer p {
  font-size: 1.25rem;
  margin-bottom: 35px;
}
.menu-panel .menu-panel-content .menu-jiten-outer .tag_menu li {
  margin-bottom: 10px;
}
.menu-panel .menu-panel-content .menu-jiten-outer .tag_menu li a {
  border-bottom: #1F528E 1px solid;
  padding-bottom: 5px;
  font-size: 0.875rem;
  min-width: 150px;
  display: inline-block;
}
.menu-panel .menu-panel-content .menu-jiten-outer .tag_menu li::after {
  content: " >";
  border-bottom: none;
}
.menu-panel .menu-panel-making .menu_inner li a, .menu-panel .menu-panel-dictionary .menu_inner li a {
  border-bottom: none;
}
.menu-panel .menu-panel-making .menu_inner li::after, .menu-panel .menu-panel-dictionary .menu_inner li::after {
  display: none;
}
.menu-panel .shisaku-menu {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.menu-panel .shisaku-menu li {
  max-width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8125rem;
  letter-spacing: -1px;
  position: relative;
}
.menu-panel .shisaku-menu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.2s;
  position: relative;
}
.menu-panel .shisaku-menu li a img {
  display: block;
}
.menu-panel .shisaku-menu li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.menu-panel .shisaku-menu li a:hover img {
  opacity: 0;
}
.menu-panel .shisaku-menu li a:hover::before {
  opacity: 1;
}
.menu-panel .shisaku-menu li:nth-child(1) a::before {
  background-image: url("assets/img/common/shisaku01o.png");
}
.menu-panel .shisaku-menu li:nth-child(2) a::before {
  background-image: url("assets/img/common/shisaku02o.png");
}
.menu-panel .shisaku-menu li:nth-child(3) a::before {
  background-image: url("assets/img/common/shisaku03o.png");
}
.menu-panel .menu-panel-close {
  display: block;
  width: 100%;
  height: 57px;
  background: #CED5DB;
  border: none;
  text-align: center;
  line-height: 57px;
  font-size: 1rem;
  cursor: pointer;
}
.menu-panel .menu-panel-close span::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 5px;
  left: 5px;
  width: 24px;
  height: 24px;
  background: url("assets/img/icon/close-icon.svg") no-repeat center center;
  background-size: contain;
}

.menu-panel-content.menu-panel-contact .menu-outer {
  width: 650px;
}
.menu-panel-content.menu-panel-contact .menu-outer ul li a {
  white-space: nowrap;
  width: 230px;
}

#panel-4 .menu-panel-content, #panel-5 .menu-panel-content {
  height: 203px;
}

#panel-4.is-open {
  height: 260px;
}
#panel-4.is-open .primary-button {
  margin-top: 20px;
}

#panel-5.is-open {
  height: 260px;
}

.global-menu-sub-wrapper {
  width: 21%;
  max-width: 21%;
  position: relative;
  align-items: center;
  justify-content: center;
  background: white;
  flex-shrink: 0;
}
@media (min-width: 1081px) and (max-width: 1400px) {
  .global-menu-sub-wrapper {
    width: 25%;
    max-width: 25%;
  }
}
@media (max-width: 1080px) {
  .global-menu-sub-wrapper {
    width: 80px;
    max-width: 120px;
    display: flex;
  }
}
.global-menu-sub-wrapper .hamburger {
  display: none;
}
@media (max-width: 1080px) {
  .global-menu-sub-wrapper .hamburger {
    width: 30px;
    height: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  .global-menu-sub-wrapper .hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #1F528E;
    border-radius: 2px;
  }
  .global-menu-sub-wrapper .hamburger span {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .global-menu-sub-wrapper .hamburger.active span:nth-child(1) {
    transform: rotate(30deg) translate(5px, 5px);
  }
  .global-menu-sub-wrapper .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .global-menu-sub-wrapper .hamburger.active span:nth-child(3) {
    transform: rotate(-30deg) translate(5px, -5px);
  }
}
.global-menu-sub-wrapper nav ul.global-menu-sub {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1080px) {
  .global-menu-sub-wrapper nav ul.global-menu-sub {
    display: none;
  }
}
.global-menu-sub-wrapper nav ul.global-menu-sub li {
  display: flex;
  align-items: center;
  position: relative;
  height: 79px;
}
.global-menu-sub-wrapper nav ul.global-menu-sub li:first-child {
  padding: 1em;
  height: 80px;
  text-align: center;
}
.global-menu-sub-wrapper nav ul.global-menu-sub li:first-child a {
  width: 100%;
}
.global-menu-sub-wrapper nav ul.global-menu-sub li:first-child a::before {
  content: "";
  display: inline-block;
  position: relative;
  background-image: url("assets/img/icon/icon-search.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 2px;
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.global-menu-sub-wrapper nav ul.global-menu-sub li:first-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 0;
  height: 1px;
  background-color: #1F528E;
}
.global-menu-sub-wrapper nav ul.global-menu-sub li a {
  display: inline-block;
}
.global-menu-sub-wrapper nav ul.global-menu-sub li.global-menu-sub-in {
  display: flex;
  width: 100%;
  font-size: 90%;
  position: relative;
  justify-content: space-evenly;
}
.global-menu-sub-wrapper nav ul.global-menu-sub li.global-menu-sub-in span {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-align: center;
  padding: 1em;
}
.global-menu-sub-wrapper nav ul.global-menu-sub li.global-menu-sub-in span a {
  display: inline-block;
}
.global-menu-sub-wrapper nav ul.global-menu-sub li.global-menu-sub-in span a:not(:last-child)::after {
  content: "/";
  margin: 0 5px;
  color: #1F528E;
  pointer-events: none;
}

/*hamburger menu-----------------------*/
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
body.menu-open .header-menu--common {
  transform: translateY(0) !important;
}

.hamburger-menu-wrapper {
  display: none;
}

@media (max-width: 1080px) {
  .hamburger-menu-wrapper {
    width: 100%;
    position: fixed;
    top: 85px;
    right: 0;
    left: 0;
    height: calc(100dvh - 85px);
    overflow-y: auto;
    overflow-x: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    background: #CED5DB;
    padding: 0 15px 20px 15px;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    transition: opacity 0.3s ease;
    -webkit-overflow-scrolling: touch;
  }
  .hamburger-menu-wrapper ul {
    font-size: 0.8125rem;
    letter-spacing: -1px;
  }
  .hamburger-menu-wrapper ul li {
    line-height: 2;
  }
  .hamburger-menu-wrapper ul span {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    white-space: nowrap;
    text-align: center;
  }
  .hamburger-menu-wrapper ul span a {
    display: inline-block;
  }
  .hamburger-menu-wrapper ul span a:not(:last-child)::after {
    content: "/";
    margin: 0 5px;
    color: #1F528E;
    pointer-events: none;
  }
  .hamburger-menu-wrapper.active {
    opacity: 1;
    pointer-events: auto;
  }
  .hamburger-menu-wrapper > div {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid;
    border-bottom: 1px solid;
    opacity: 0;
    min-height: 240px;
    transition: opacity 0.5s ease;
  }
  .hamburger-menu-wrapper > div ul > li::after {
    content: ">";
    padding-left: 4px;
  }
  .hamburger-menu-wrapper > div:last-child ul li::after {
    content: "";
    padding-left: 0;
  }
  .hamburger-menu-wrapper > div p a {
    font-size: 1rem;
    line-height: 1.6;
    padding-bottom: 20px;
  }
  /* 上から下にじわっと出すアニメーション */
  .hamburger-menu-wrapper.active > div {
    animation: fadeInUp 0.4s forwards;
    animation-delay: 0s;
  }
  .hamburger-menu-wrapper.active > div:nth-child(2) {
    border-right: 1px solid;
  }
  .hamburger-menu-wrapper.active > div:nth-child(4) {
    border-right: 1px solid;
  }
  .hamburger-menu-wrapper.active > div:nth-child(6) {
    border-right: 1px solid;
    text-align: right;
    justify-content: flex-end;
    gap: 10px;
  }
  .hamburger-menu-wrapper.active > div:nth-child(6) p {
    font-size: 0.5rem;
    line-height: 1.4;
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
@media (max-width: 760px) {
  .hamburger-menu-wrapper {
    width: 100%;
  }
}
.header-menu--common {
  background: #fff;
  transition: transform 0.3s ease-in-out, background-color 0.5s ease;
}

.header-menu--common.active {
  background: #CED5DB;
}

.site-search-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 80.1%;
  background-color: #CED5DB;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 20px;
  box-sizing: border-box;
  border-left: 1px solid;
  z-index: 998;
  /* 初期状態:非表示 */
  opacity: 0;
  height: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  /* 表示状態 */
  /* 閉じるボタン */
}
@media (min-width: 1081px) and (max-width: 1400px) {
  .site-search-panel {
    width: 84.1%;
  }
}
.site-search-panel.is-visible {
  opacity: 1;
  height: 159px;
  pointer-events: auto;
  z-index: 1200;
}
@media (max-width: 1080px) {
  .site-search-panel {
    top: 85px;
    width: 100%;
  }
}
.site-search-panel .tag_wrapper {
  display: flex;
  flex-direction: row;
  width: 50%;
}
.site-search-panel .tag_title {
  padding: 2px 0;
  margin-right: 16px;
  font-size: 0.8125rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .site-search-panel .tag_title {
    display: block;
    margin-bottom: 40px;
  }
}
.site-search-panel .tags a {
  font-weight: bold;
  font-size: 0.8125rem;
  white-space: nowrap;
  margin: 5px;
  flex-wrap: wrap;
}
.site-search-panel .tags a::before {
  content: "# ";
}
.site-search-panel .search-close-button {
  position: absolute;
  top: 18px;
  right: 21px;
  width: 26px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.site-search-panel .search-close-button:hover {
  opacity: 0.6;
}
.site-search-panel form label {
  border-radius: 20px;
  background: #fff;
  color: #CED5DB;
  padding: 10px;
  font-size: 1rem;
}

.search-submit {
  cursor: pointer;
  color: #1F528E;
  width: 20px;
  position: relative;
  top: 5px;
}

.news-section--home {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: #1F528E 1px solid;
  overflow: hidden;
  z-index: 100;
}

.news-scroll {
  width: 89.11%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .news-scroll {
    width: 80%;
  }
}
.news-scroll ul {
  display: inline-flex;
  animation: news-scroll 40s linear infinite;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
  gap: 50px;
}
.news-scroll:hover ul {
  animation-play-state: paused;
}
.news-scroll li {
  display: inline-block;
  /*margin-right: 50px;*/
  flex-shrink: 0;
}
.news-scroll li a {
  text-decoration: none;
  white-space: nowrap;
}
.news-scroll li span.notranslate {
  position: relative;
  top: -1px;
  font-size: 0.8125rem;
  padding: 2px 15px;
  border-radius: 20px;
  border: 1px solid #1F528E;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
.news-scroll li span.notranslate::after {
  content: " ";
}

@keyframes news-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.news-selection {
  width: 10.89%;
  padding-left: 5px;
  overflow: hidden;
  z-index: 101;
}
.news-selection span {
  padding: 20px;
  border-left: 1px dotted #1F528E;
  font-size: 0.8125rem;
}
@media (max-width: 768px) {
  .news-selection {
    width: 20%;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  z-index: 10;
  /*height:858px;*/
}
.hero-section .hero-inner {
  position: relative;
}
.hero-section .hero-vertical-title {
  position: absolute;
  left: 50px;
  top: 40px;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-section .hero-vertical-title {
    left: 20px;
    top: 30px;
  }
}
.hero-section .hero-article-title {
  position: absolute;
  left: 50px;
  bottom: 40px;
  z-index: 1;
  max-width: calc(100% - 100px);
}
@media (max-width: 768px) {
  .hero-section .hero-article-title {
    left: 20px;
    bottom: 65px;
    font-size: 1.125rem;
    max-width: calc(100% - 40px);
  }
}
.hero-section .hero-article-title .article-text-1 {
  text-orientation: mixed;
  background: white;
  padding: 5px 10px;
  border: 1px solid #1F528E;
  letter-spacing: 1px;
  display: inline-block;
  font-size: 0.75rem;
  padding: 6px 10px;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .hero-section .hero-article-title .article-text-1 {
    font-size: 0.75rem;
  }
}
.hero-section .hero-article-title .article-text-2 {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
  gap: 10px;
  align-items: flex-start;
}
.hero-section .hero-article-title .article-text-2 span {
  display: inline-block;
  margin-right: 0;
  text-orientation: mixed;
  background: white;
  padding: 5px 10px;
  border: 1px solid #1F528E;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.hero-section .hero-article-title .article-text-2 span.view-more {
  border: none;
  border-bottom: #1F528E 1px solid;
  padding-bottom: 5px;
  font-size: 0.8125rem;
  background: none;
  white-space: normal;
  max-width: none;
}
.hero-section .hero-article-title .article-text-2 span.view-more::after {
  content: " >";
  border-bottom: none;
}
.hero-section .vertical-text-2, .hero-section .vertical-text-1 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: white;
  font-size: 1.25rem;
  padding: 10px 5px;
  border: 1px solid #1F528E;
  letter-spacing: 4px;
  line-height: 1.7;
  padding: 14px 4px;
  font-size: 21px;
  white-space: nowrap;
}
.hero-section .vertical-text-1 {
  position: absolute;
  top: 0;
  left: 52px;
}

.slider {
  height: 750px;
  position: relative;
  overflow: hidden;
}
.slider .hero-inner {
  position: relative;
  height: 750px;
  width: 100%;
}
.slider .hero-inner img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}

.hero-vertical-title {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
  z-index: 1;
  writing-mode: vertical-rl;
  font-feature-settings: "palt" 0;
}
.hero-vertical-title.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.slick-arrow {
  display: block !important;
  opacity: 1 !important;
  z-index: 1000;
}

.slick-prev, .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: block !important;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .slick-prev, .slick-next {
    width: 35px;
    height: 35px;
    top: 95%;
  }
}

.slick-prev {
  left: calc(9% - 5px);
}

.slick-prev:before {
  content: none;
}

.slick-next {
  right: calc(9% - 5px);
}

.slick-next:before {
  content: none;
}

.slider {
  position: relative;
  overflow: visible;
}

.slick-prev img, .slick-next img {
  width: 100%;
  height: auto;
}

.catch-section--home {
  width: 100%;
  position: relative;
}

/* 動的セクション */
.catch-section-dynamic {
  position: relative;
  background: #f5f5f5;
}

.catch-dynamic-content {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 40px;
  background-size: cover;
  background-position: center;
  transition: background-image 0.8s ease;
  will-change: transform;
  transform: translateZ(0);
}
@media (max-width: 900px) {
  .catch-dynamic-content {
    flex-direction: column;
    display: flex;
    gap: 30px;
    justify-content: center;
  }
}

html {
  scroll-behavior: smooth;
}

.catch-dynamic-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1080px) {
  .catch-dynamic-inner {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 900px) {
  .catch-dynamic-inner {
    flex-direction: column;
    gap: 30px;
  }
}
@media (orientation: landscape) and (max-height: 450px) {
  .catch-dynamic-inner {
    gap: 30px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) and (orientation: portrait) {
  .catch-dynamic-inner {
    gap: 40px;
  }
}

@media (max-width: 1080px) {
  #catch-a {
    flex-direction: column;
    display: flex;
    gap: 30px;
    justify-content: center;
    transform: 0;
  }
}

.catch-left, .catch-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  z-index: 10;
  position: relative;
}
@media (max-width: 1080px) {
  .catch-left, .catch-right {
    width: 100%;
    font-size: 0.875rem;
  }
  .catch-left p, .catch-right p {
    max-width: 400px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) and (orientation: portrait) {
  .catch-left, .catch-right {
    font-size: 0.9375rem;
  }
  .catch-left p, .catch-right p {
    max-width: 400px;
  }
}
@media (orientation: landscape) and (max-height: 450px) {
  .catch-left p, .catch-right p {
    max-width: 500px;
    font-size: 90%;
  }
}

.catch-left {
  position: relative;
  justify-content: center;
  text-align: center;
}
.catch-left img {
  transform: scale(0.8);
}
@media (min-width: 769px) and (max-width: 1080px) and (orientation: portrait) {
  .catch-left img {
    transform: scale(1);
  }
}
@media (orientation: landscape) and (max-height: 450px) {
  .catch-left {
    gap: 20px;
  }
}

#catch-a .catch-right {
  transform: translateX(-5vw);
  white-space: nowrap;
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  #catch-a .catch-right {
    white-space: normal;
    transform: translateX(0);
  }
}
#catch-a .catch-left {
  gap: 20px;
}
@media (max-width: 1080px) {
  #catch-a .catch-right {
    white-space: normal;
    transform: translateX(0);
  }
}

.catch-right {
  justify-content: flex-start;
  text-align: left;
  line-height: 2;
  font-size: 0.9375rem;
}

.catch-shisaku-top {
  width: 332px;
  position: relative;
  height: 80px;
  margin: 0 auto;
  margin-top: -4vh;
  background: url(assets/img/top/hibishisaku-background.svg) no-repeat;
  background-size: cover;
  z-index: 9999;
  transform: scale(0.8);
}
@media (min-width: 769px) and (max-width: 1080px) and (orientation: portrait) {
  .catch-shisaku-top {
    transform: scale(0.9);
  }
}
@media (max-width: 400px) {
  .catch-shisaku-top {
    width: 100%;
    background-size: contain;
  }
}

.catch-shisaku-top img {
  position: absolute;
  top: 11%;
  right: 12%;
}
@media (min-width: 769px) and (max-width: 1080px) and (orientation: portrait) {
  .catch-shisaku-top img {
    top: 18%;
    right: 15%;
  }
}
@media (max-width: 400px) {
  .catch-shisaku-top img {
    right: 11%;
  }
}

.catch-shisaku-top img {
  width: 42%;
  transition: opacity 0.6s ease;
}
@media (min-width: 769px) and (max-width: 1080px) and (orientation: portrait) {
  .catch-shisaku-top img {
    width: 36%;
  }
}

.catch-text {
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
  line-height: 2;
  z-index: 10;
  transition: opacity 0.6s ease;
}
@media (max-width: 768px) {
  .catch-text {
    font-size: 0.9375rem;
    min-height: 270px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) and (orientation: portrait) {
  .catch-text {
    max-width: 400px;
    font-size: 0.9375rem;
  }
}
@media (orientation: landscape) and (max-height: 450px) {
  .catch-text {
    min-height: auto;
  }
}

/* アニメーション用のSVGマスク */
.shisaku-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  transform: scale(1.4);
  pointer-events: none;
  z-index: 5;
  opacity: 0.4;
}
@media (max-width: 768px) {
  .shisaku-wrapper {
    transform: scale(1.2);
  }
}

.shisaku-clip {
  width: 100%;
  height: 100%;
}
@media (max-width: 400px) {
  .shisaku-clip {
    width: 110%;
    margin-top: -10px;
  }
}

/* フェードアニメーション */
.fade-element {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-element.active {
  opacity: 1;
  transform: translateY(0);
}

/* 背景画像 */
.bg-catch2 {
  background-image: url(assets/img/slider/shisaku01.jpg);
}

.bg-catch3 {
  background-image: url(assets/img/slider/shisaku02.jpg);
}

.bg-catch4 {
  background-image: url(assets/img/slider/shisaku03.jpg);
}

@media (max-width: 768px) {
  .bg-catch2 {
    background-image: url(assets/img/slider/shisakutate01.jpg);
  }
  .bg-catch3 {
    background-image: url(assets/img/slider/shisakutate02.jpg);
  }
  .bg-catch4 {
    background-image: url(assets/img/slider/shisakutate03.jpg);
  }
}
.floating-button {
  position: fixed;
  bottom: 40px;
  right: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 900 !important;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 900px) {
  .floating-button {
    display: none;
  }
}
.floating-button.is-visible {
  visibility: visible;
}
.floating-button:hover {
  opacity: 0.7;
}
.floating-button .floating-bubble {
  position: absolute;
  top: -80px;
  left: 28px;
  text-align: center;
  background: white;
  padding: 25px 11px 44px 11px;
  z-index: 10;
  font-size: 0.875rem;
  width: 176px;
  height: 116px;
  background-size: cover;
  background: url(assets/img/icon/bubble.svg) no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 出現アニメーション（ポワン＋バウンス） */
}
.floating-button .floating-bubble.animate {
  animation: bubblePop 0.6s ease;
}
@media (max-width: 768px) {
  .floating-button .floating-bubble {
    top: -90px;
    left: -8px;
  }
}
.floating-button .floating-round {
  width: 236px;
  height: 236px;
  border-radius: 50%;
  background: #1F528E;
  color: white;
  letter-spacing: 4px;
  line-height: 1.4;
  border: white 2px solid;
  display: flex;
  text-align: center;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .floating-button .floating-round {
    width: 160px;
    height: 160px;
    font-size: 1.25rem;
  }
}

/* バウンス拡大アニメーション */
@keyframes bubblePop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
/*.responsive-svg {
    width: 100%;
    height:100%;
    svg {
        width: 109%;
        height: 109%;
        display: block;
    }
}*/
.responsive-svg svg path {
  position: relative;
  z-index: 10;
}

.responsive-svg svg image {
  position: relative;
  z-index: 1;
}

.primary-button {
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  background: #1F528E;
  border-radius: 30px;
  overflow: hidden;
  transition: color 0.4s ease;
  -webkit-clip-path: inset(0 round 20px);
          clip-path: inset(0 round 20px);
  z-index: 10;
  border: 1px solid #1F528E;
}
.primary-button span {
  z-index: 11;
  display: inline-block;
  padding-left: 5px;
}
.primary-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: #ECDF2B;
  transition: left 0.4s ease;
  z-index: 4;
  border-radius: 20px;
}
.primary-button::after {
  content: " >";
  position: relative;
  z-index: 5;
}
.primary-button span {
  position: relative;
  z-index: 5;
}
.primary-button:hover::before {
  left: 0;
}
.primary-button:hover {
  color: #1F528E;
  border: 1px solid #1F528E;
}

.button-wrapper.center {
  text-align: center;
}
@media (max-width: 768px) {
  .button-wrapper.center {
    margin-top: 50px;
    margin-bottom: 0;
  }
}

.button-wrapper.center .primary-button {
  display: inline-block;
}

.new-arrival-dictionary .button-wrapper.center {
  margin-top: 70px;
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  .new-arrival-dictionary .button-wrapper.center {
    margin-top: 50px;
    margin-bottom: 0;
  }
}

.dictionary-section--home {
  background: url(assets/img/top/dictionary-background.jpg) left top;
  background-size: cover;
  height: 857px;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .dictionary-section--home {
    height: auto;
    padding: 40px 0;
  }
}
.dictionary-section--home .dictionary-inner {
  position: relative;
  width: 600px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #1F528E;
  border-bottom: 1px solid #1F528E;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .dictionary-section--home .dictionary-inner {
    display: none;
  }
}
.dictionary-section--home .dictionary-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-right: 1px solid #1F528E;
  border-bottom: 1px solid #1F528E;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  z-index: 2;
}
.dictionary-section--home .dictionary-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #1F528E;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}
.dictionary-section--home .dictionary-inner .dictionary {
  position: relative;
  z-index: 3;
  display: inline-block;
  overflow: hidden;
  padding-top: 114px;
  padding-bottom: 100px;
  width: 470px;
}
@media (max-width: 768px) {
  .dictionary-section--home .dictionary-inner .dictionary {
    width: 80%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.dictionary-section--home .dictionary-inner .dictionary .dictionary-title {
  font-size: 55px;
  margin-bottom: 29px;
  margin-right: -14px;
  letter-spacing: 14px;
}
@media (max-width: 768px) {
  .dictionary-section--home .dictionary-inner .dictionary .dictionary-title {
    font-size: 1.375rem;
    margin-bottom: 10px;
    line-height: 1.4;
  }
}
.dictionary-section--home .dictionary-inner .dictionary p:first-child {
  border-top: #1F528E dotted 1px;
  margin-bottom: 29px;
  padding-top: 39px;
  letter-spacing: 1px;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .dictionary-section--home .dictionary-inner .dictionary p:first-child {
    padding-bottom: 10px;
    font-size: 0.75rem;
    padding-top: 30px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
}
.dictionary-section--home .dictionary-inner .dictionary p:nth-child(3) {
  border-bottom: #1F528E dotted 1px;
  padding-bottom: 39px;
  letter-spacing: 1px;
  font-size: 1.25rem;
  margin-bottom: 39px;
}
@media (max-width: 768px) {
  .dictionary-section--home .dictionary-inner .dictionary p:nth-child(3) {
    padding-bottom: 20px;
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.dictionary-section--home .dictionary-inner .dictionary p:last-child {
  text-align: left;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .dictionary-section--home .dictionary-inner .dictionary p:last-child {
    font-size: 0.875rem;
  }
}
.dictionary-section--home .dictionary-inner .dictionary-tag {
  width: 103px;
  height: 243px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(calc(100% - 5px), -50%);
  overflow: hidden;
  z-index: 4;
}
.dictionary-section--home .dictionary-inner .dictionary-tag a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("assets/img/top/dictionary-tag-long.svg") no-repeat;
  background-position: -52px center;
  background-size: auto 100%;
  transition: background-position 0.4s ease;
}
@media (max-width: 768px) {
  .dictionary-section--home .dictionary-inner .dictionary-tag a {
    transform: scale(0.8);
  }
}
.dictionary-section--home .dictionary-inner .dictionary-tag a:hover {
  background-position: -22px center;
}

.dictionary_sp {
  background: url(assets/img/top/dictionary-s.png) no-repeat center;
  background-size: contain;
  width: 100%;
  max-width: 400px;
  min-height: 400px;
  aspect-ratio: 16/9;
  margin: 0 auto;
  transition: background-image 0.3s ease;
  /*&:hover {
    background: url(assets/img/top/dictionary-s_ol.png) no-repeat center;
    background-size: contain;
  }*/
}

@media (max-width: 700px) {
  .making-section--home.making-section {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .making-section--home .wrapper.wrapper--limited {
    padding: 0 5vw;
  }
}
.making-section--home .wrapper--limited:first-child {
  padding-top: 0;
}
.making-section--home h3 {
  font-size: 38px;
  display: flex;
  letter-spacing: 10px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 245px;
  border-bottom: #1F528E 1px solid;
}
@media (max-width: 768px) {
  .making-section--home h3 {
    letter-spacing: 2px;
    padding: 50px 5vw;
    height: auto;
    font-size: 1.5rem;
  }
}
.making-section--home .making-section-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 1024px) {
  .making-section--home .making-section-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .making-section--home .making-section-6 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.making-section--home .making-section-6 a {
  display: block;
  width: 100%;
  margin: 0;
  background: white;
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: inherit;
  padding: 0;
  padding-bottom: 40px;
}
.making-section--home .making-section-6 a:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: calc(100% - 40px);
  transform: translateX(15px);
  width: 1px;
  background: #1F528E;
}
.making-section--home .making-section-6 a::before {
  content: "";
  height: 1px;
  width: calc(100% + 30px);
  background: #1F528E;
  position: absolute;
  bottom: 0;
  left: -15px;
}
.making-section--home .making-section-6 a:nth-last-child(-n+3)::before {
  display: none;
}
@media (max-width: 1024px) {
  .making-section--home .making-section-6 a:not(:nth-child(3n))::after {
    width: 0;
  }
  .making-section--home .making-section-6 a:nth-child(2n-1)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: calc(100% - 40px);
    transform: translateX(15px);
    width: 1px;
    background: #1F528E;
  }
  .making-section--home .making-section-6 a:nth-last-child(-n+2)::before {
    display: none;
  }
  .making-section--home .making-section-6 a:nth-last-child(-n+3)::before {
    display: block;
  }
}
@media (max-width: 768px) {
  .making-section--home .making-section-6 a {
    padding: 50px 0;
  }
  .making-section--home .making-section-6 a:nth-child(2n-1)::after {
    display: none;
  }
  .making-section--home .making-section-6 a:nth-last-child(-n+2)::before {
    display: block;
  }
  .making-section--home .making-section-6 a:last-child::before {
    display: none;
  }
}
.making-section--home .making-section-6 a .making-section-6-1 .making-section-6-1-title {
  font-size: 1.25rem;
  margin-bottom: 1em;
  line-height: 1.4;
}
.making-section--home .making-section-6 a .making-section-6-1 .making-section-6-1-title span {
  font-size: 0.875rem;
}
.making-section--home .making-section-6 a .making-section-6-1 .making-section-6-1-images {
  margin-bottom: 1em;
}
.making-section--home .making-section-6 a .making-section-6-1 .making-section-6-1-tag {
  border-bottom: #1F528E 1px solid;
  border-top: #1F528E 1px solid;
  padding: 12px 0;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5%;
  align-items: center;
  justify-content: flex-start;
}
.making-section--home .making-section-6 a .making-section-6-1 .making-section-6-1-tag span {
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ced5db;
}
@media (max-width: 768px) {
  .making-section--home .making-section-6 a .making-section-6-1 .making-section-6-1-tag span {
    font-size: clamp(11px, 2.4vw, 26px);
  }
}
.making-section--home .making-section-6 a .making-section-6-1 .making-section-6-1-tag span:last-child {
  margin-right: 0;
}
.making-section--home .making-section-6 a .making-section-6-1 .making-section-6-1-infomation {
  line-height: 1.8;
}
.making-section--home .making-section-6 a .making-section-6-1 .making-section-6-1-infomation span {
  font-size: 0.75rem;
  border: none;
}

.news-main-section--home {
  border-top: #1F528E 1px solid;
  text-align: center;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
}
.news-main-section--home h4 {
  width: 100%;
  height: 120px;
  font-size: 1.875rem;
  border-bottom: #1F528E 1px solid;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.news-main-section--home h4 .inner {
  width: 1400px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding: 0 5vw;
}
.news-main-section--home .news-list {
  width: 100%;
  max-width: 1080px;
  list-style: none;
  padding: 0;
  position: relative;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.news-main-section--home .news-list li {
  position: relative;
}
.news-main-section--home .news-list li:not(:last-of-type)::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 0;
  height: 1px;
  background-color: #1F528E;
}
.news-main-section--home .news-list li a {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  text-decoration: none;
  color: #1F528E;
  height: 85px;
  padding: 0;
  background: linear-gradient(to right, rgba(205, 214, 221, 0.7) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.4s ease;
}
@media (max-width: 768px) {
  .news-main-section--home .news-list li a {
    height: auto;
    min-height: auto;
    padding: 5px 10px;
    display: block;
    grid-template-columns: 115px 1fr;
  }
}
.news-main-section--home .news-list li a:hover {
  background-position: 0 0;
}
.news-main-section--home .news-list li a .news-date {
  border-right: 1px solid #1F528E;
  padding: 24px 24px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .news-main-section--home .news-list li a .news-date {
    padding: 10px 10px 0 10px;
    display: block;
    font-size: 0.875rem;
    border-right: none;
  }
}
.news-main-section--home .news-list li a .news-title {
  padding: 0 24px;
}
@media (max-width: 1080px) {
  .news-main-section--home .news-list li a .news-title {
    padding: 0 10px 10px 10px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.news-main-section--home .news-list li a::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 1px;
  background-color: #1F528E;
}
.news-main-section--home .news-list li a span:last-child::after {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: 0;
  width: 1px;
  background-color: #1F528E;
}

.person-section--home {
  background: #1F528E;
  color: white;
  padding: 80px 0;
  overflow: hidden;
}
.person-section--home .title {
  position: relative;
  letter-spacing: 6px;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .person-section--home .title {
    font-size: 31px;
  }
}
.person-section--home .title p {
  position: relative;
  z-index: 10;
}
.person-section--home .title img {
  position: absolute;
  width: 210px;
  max-width: 210px;
  height: auto;
  top: 15px;
  left: 235px;
  z-index: 0;
}
@media (max-width: 768px) {
  .person-section--home .title img {
    width: 160px;
    top: 37px;
    left: 217px;
  }
}
.person-section--home .button-wrapper {
  overflow: visible;
}
.person-section--home .button-wrapper a {
  position: relative;
  font-size: 0.875rem;
  padding: 10px 30px;
  border-radius: 30px;
  border: 1px solid #1F528E;
  background: white;
  margin-top: 80px;
  transition: background-color 0.4s ease, color 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
@media (max-width: 768px) {
  .person-section--home .button-wrapper a {
    margin-top: 0;
  }
}
.person-section--home .button-wrapper a span::after {
  content: "";
  display: inline-block;
  background: url(assets/img/icon/icon-link.svg) no-repeat center/cover;
  width: 16px;
  height: 16px;
  top: 2px;
  margin-left: 6px;
  position: relative;
}
.person-section--home .button-wrapper a span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -100px;
  width: 100px;
  height: 1px;
  opacity: 0;
  background-color: #1F528E;
  z-index: 101;
  transform: translateX(-20px);
  transition: opacity 0.4s ease;
}
.person-section--home .button-wrapper a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  width: 0;
  height: 1px;
  background-color: #ECDF2B;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s ease;
}
.person-section--home .button-wrapper a::after {
  content: "";
  position: absolute;
  top: 37%;
  right: -19px;
  width: 8px;
  height: 20px;
  border-top: solid 1px #ECDF2B;
  opacity: 0;
}
.person-section--home .button-wrapper a:hover {
  background: #ECDF2B;
}
.person-section--home .button-wrapper a:hover::before {
  width: 30px;
  opacity: 1;
  transform: translateX(0) translateY(-50%);
}
.person-section--home .button-wrapper a:hover span::before {
  opacity: 1;
}
.person-section--home .button-wrapper a:hover::after {
  opacity: 1;
  transform: translateX(0) rotate(45deg);
}
.person-section--home .text-detail {
  margin-top: 20px;
  font-size: 0.75rem;
  line-height: 1.6;
}
.person-section--home .text-person {
  max-width: 260px;
  box-sizing: border-box;
  margin-top: 20px;
}
.person-section--home .person-slider-outer {
  margin-right: calc((100vw - 100%) / -2);
  overflow: hidden;
  padding-left: 0;
}
@media (max-width: 768px) {
  .person-section--home .person-slider-outer {
    margin-left: calc((100vw - 100%) / -2);
  }
}
.person-section--home .person-slider-outer .person-slider .img-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.person-section--home .person-slider-outer .person-slider .img-wrapper::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 6px;
  width: 100%;
  height: 100%;
  background-color: #80D1E2;
  z-index: -1;
}
.person-section--home .person-slider-outer .person-slider .img-wrapper img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}
.person-section--home .person-slider-outer .person-slider .text-person,
.person-section--home .person-slider-outer .person-slider .text-detail {
  max-width: 260px;
}
.person-section--home .person-slider-outer > div {
  min-width: 260px;
  flex-shrink: 0;
}
.person-section--home .person-slider-outer > div img {
  display: block;
  width: 260px;
  height: auto;
}
.person-section--home .person-slider-outer > div .text-detail {
  max-width: 100%;
  box-sizing: border-box;
}

.person-slider .slick-slide {
  margin-right: 30px;
  margin-left: 6px;
}

footer {
  background: #CED5DB;
}
footer h3 {
  width: 100%;
  font-size: 2rem;
  height: 247px;
  display: flex;
  border-bottom: #1F528E 1px solid;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  footer h3 {
    height: auto;
    font-size: 1.5rem;
  }
}
footer .company-list {
  display: flex;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.6;
}
footer h4 {
  width: 100%;
  font-size: 1.125rem;
  height: 67px;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.company-mouseover {
  line-height: 1.8;
}
.company-mouseover p {
  display: inline;
  background: none;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  background-image: linear-gradient(to right, white 100%, white 100%);
  transition: background-size 0.5s ease;
}
.company-mouseover:hover p {
  background-size: 100% 100%;
}

.footer-address-connection-section--common h4 {
  width: 100%;
  border-bottom: #1F528E 1px solid;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-address-connection-section--common h4 .inner {
  width: 1400px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding: 0 5vw;
}
@media (max-width: 768px) {
  .footer-address-connection-section--common h4 .inner {
    padding: 0 5vw;
  }
}
.footer-address-connection-section--common .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 0 50px;
  margin: 0 auto;
  transform: translateY(1px);
}
.footer-address-connection-section--common .wrapper .company-list {
  display: flex;
  gap: 16px;
  padding-bottom: 40px;
  line-height: 1.7;
  position: relative;
}
@media (max-width: 768px) {
  .footer-address-connection-section--common .wrapper .company-list:last-child {
    padding-bottom: 0;
  }
}
.footer-address-connection-section--common .wrapper .company-list:nth-child(4)::after, .footer-address-connection-section--common .wrapper .company-list:nth-child(5)::after {
  content: "";
  position: absolute;
  top: 0;
  left: -25px;
  width: 1px;
  height: 100%;
  background-color: #1F528E;
}
.footer-address-connection-section--common .wrapper .company-list:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -26px;
  width: 1px;
  height: 100%;
  background-color: #1F528E;
}
.footer-address-connection-section--common .wrapper .company-list > div:first-child {
  min-width: 160px;
  white-space: normal;
  flex-shrink: 0;
}
.footer-address-connection-section--common .wrapper .company-list > div:nth-child(2) {
  flex: 1;
  word-break: break-word;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-address-connection-section--common .wrapper .company-list {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .footer-address-connection-section--common .wrapper .company-list {
    flex-direction: column;
    gap: 8px;
    line-height: 1.6;
  }
  .footer-address-connection-section--common .wrapper .company-list::after {
    display: none !important;
  }
  .footer-address-connection-section--common .wrapper .company-list > div:first-child {
    min-width: auto;
  }
}
@media (max-width: 767px) {
  .footer-address-connection-section--common .wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
    gap: 0;
  }
}
.footer-address-connection-section--common span {
  position: relative;
  font-size: 0.625rem;
  padding: 6px 15px;
  border-radius: 20px;
  border: #1F528E 1px solid;
  display: inline-block;
  margin-top: 10px;
  overflow: hidden;
  z-index: 0;
}
.footer-address-connection-section--common span a {
  position: relative;
  color: inherit;
  z-index: 1;
}
.footer-address-connection-section--common span a::after {
  content: " >";
  display: inline-block;
  padding-left: 5px;
}
.footer-address-connection-section--common span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #ffffff;
  z-index: 0;
  transition: width 0.4s ease;
}
.footer-address-connection-section--common span:hover::before {
  width: 100%;
}

.footer-address-sub-section--common {
  border-bottom: #1F528E 1px solid;
  position: relative;
  width: 100%;
}
.footer-address-sub-section--common .wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 0 50px;
  margin: 0 auto;
}
.footer-address-sub-section--common .wrapper .company-list {
  display: flex;
  gap: 16px;
  padding-bottom: 40px;
  line-height: 1.6;
  position: relative;
}
@media (min-width: 1025px) {
  .footer-address-sub-section--common .wrapper .company-list:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .footer-address-sub-section--common .wrapper .company-list:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .footer-address-sub-section--common .wrapper .company-list:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }
  .footer-address-sub-section--common .wrapper .company-list:nth-child(4) {
    grid-column: 3;
    grid-row: 1;
  }
  .footer-address-sub-section--common .wrapper .company-list:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }
}
@media (max-width: 768px) {
  .footer-address-sub-section--common .wrapper .company-list:last-child {
    padding-bottom: 0;
  }
}
.footer-address-sub-section--common .wrapper .company-list:nth-child(1)::after, .footer-address-sub-section--common .wrapper .company-list:nth-child(2)::after, .footer-address-sub-section--common .wrapper .company-list:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -25px;
  width: 1px;
  height: 100%;
  background-color: #1F528E;
}
.footer-address-sub-section--common .wrapper .company-list > div:first-child {
  min-width: 120px;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-address-sub-section--common .wrapper .company-list > div:nth-child(2) {
  flex: 1;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-address-sub-section--common .wrapper .company-list:nth-child(1)::after, .footer-address-sub-section--common .wrapper .company-list:nth-child(2)::after, .footer-address-sub-section--common .wrapper .company-list:nth-child(3)::after, .footer-address-sub-section--common .wrapper .company-list:nth-child(4)::after {
    display: none;
  }
  .footer-address-sub-section--common .wrapper .company-list:nth-child(1)::after, .footer-address-sub-section--common .wrapper .company-list:nth-child(3)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -25px;
    width: 1px;
    height: 100%;
    background-color: #1F528E;
  }
  .footer-address-sub-section--common .wrapper .company-list:nth-child(5) {
    padding-bottom: 0;
  }
}
@media (max-width: 960px) and (min-width: 768px) {
  .footer-address-sub-section--common .wrapper .company-list {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .footer-address-sub-section--common .wrapper .company-list {
    flex-direction: column;
    gap: 8px;
  }
  .footer-address-sub-section--common .wrapper .company-list::after {
    display: none !important;
  }
  .footer-address-sub-section--common .wrapper .company-list > div:first-child {
    min-width: auto;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-address-sub-section--common .wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
  }
}
@media (max-width: 767px) {
  .footer-address-sub-section--common .wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
    gap: 0;
  }
}
.footer-address-sub-section--common span {
  position: relative;
  font-size: 0.75rem;
  padding: 8px 20px;
  border-radius: 20px;
  border: #1F528E 1px solid;
  display: inline-block;
  margin-top: 10px;
  overflow: hidden;
  z-index: 0;
}
.footer-address-sub-section--common span a {
  position: relative;
  color: inherit;
  z-index: 1;
}
.footer-address-sub-section--common span a::after {
  display: inline-block;
  padding-left: 5px;
  content: ">";
}
.footer-address-sub-section--common span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #ffffff;
  z-index: 0;
  transition: width 0.4s ease;
}
.footer-address-sub-section--common span:hover::before {
  width: 100%;
}

.footer-address-main-section--common {
  border-bottom: #1F528E 1px solid;
}
.footer-address-main-section--common .wrapper {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer-address-main-section--common .wrapper {
    flex-direction: column;
  }
}
.footer-address-main-section--common .footer-address-main-section-left {
  width: 50%;
}
@media (max-width: 768px) {
  .footer-address-main-section--common .footer-address-main-section-left {
    width: 100%;
  }
}
.footer-address-main-section--common .footer-address-main-section-left h4 {
  margin-bottom: 40px;
}
.footer-address-main-section--common .footer-address-main-section-left .address-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px 16px;
}
@media (max-width: 1080px) {
  .footer-address-main-section--common .footer-address-main-section-left .address-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer-address-main-section--common .footer-address-main-section-left .address-row {
  display: contents;
}
@media (max-width: 1080px) {
  .footer-address-main-section--common .footer-address-main-section-left .address-row {
    display: block;
  }
  .footer-address-main-section--common .footer-address-main-section-left .address-row:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1080px) {
  .footer-address-main-section--common .footer-address-main-section-left .address-label {
    margin-bottom: 10px;
  }
}
.footer-address-main-section--common .footer-address-main-section-left .address-content p {
  margin-bottom: 10px;
}
.footer-address-main-section--common .footer-address-main-section-left .address-content span a {
  display: inline-block;
}
.footer-address-main-section--common .footer-address-main-section-right {
  width: 50%;
  position: relative;
  height: auto;
  z-index: 2;
  overflow: hidden;
  background: #CED5DB;
}
@media (max-width: 768px) {
  .footer-address-main-section--common .footer-address-main-section-right {
    width: 100%;
    min-height: 300px;
  }
  .footer-address-main-section--common .footer-address-main-section-right .slick-dotted.slick-slider {
    margin-bottom: 0;
  }
}
.footer-address-main-section--common .footer-address-main-section-right .company-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: calc(-50vw + 50%);
  width: 100%;
  min-height: 500px;
}
@media (max-width: 1080px) {
  .footer-address-main-section--common .footer-address-main-section-right .company-slider {
    min-height: 550px;
  }
}
@media (max-width: 768px) {
  .footer-address-main-section--common .footer-address-main-section-right .company-slider {
    position: static;
    width: 100vw;
    min-height: auto;
    right: 0;
  }
}
.footer-address-main-section--common .footer-address-main-section-right .company-slider .slick-list,
.footer-address-main-section--common .footer-address-main-section-right .company-slider .slick-track,
.footer-address-main-section--common .footer-address-main-section-right .company-slider .slick-slide,
.footer-address-main-section--common .footer-address-main-section-right .company-slider .slick-slide > div,
.footer-address-main-section--common .footer-address-main-section-right .company-slider .slick-slide > div > div {
  height: 100% !important;
}
.footer-address-main-section--common .footer-address-main-section-right .company-slider [class^=slide-] {
  height: 100%;
  width: 100%;
}
.footer-address-main-section--common .footer-address-main-section-right .company-slider [class^=slide-] img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: center center !important;
     object-position: center center !important;
}
.footer-address-main-section--common .footer-address-main-section-right .company-slider .slick-dots {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}
@media (max-width: 768px) {
  .footer-address-main-section--common .footer-address-main-section-right .company-slider .slick-dots {
    left: 15px;
    gap: 8px;
    bottom: 25%;
  }
}
.footer-address-main-section--common .footer-address-main-section-right .company-slider .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0;
}
.footer-address-main-section--common .footer-address-main-section-right .company-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  font-size: 0;
  line-height: 0;
}
.footer-address-main-section--common .footer-address-main-section-right .company-slider .slick-dots li button:before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  opacity: 0.7;
  transition: all 0.3s;
}
.footer-address-main-section--common .footer-address-main-section-right .company-slider .slick-dots li.slick-active button:before {
  background: #fff;
  opacity: 1;
}

@media (max-width: 768px) {
  .company-slider {
    width: 100%;
    margin: 0 auto 20px;
  }
  .company-slider img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .footer-address-main-section-right {
    width: 100%;
  }
}
.footer-address-main-section-left {
  width: 50%;
  padding-left: 5vw;
  padding-bottom: 50px;
  box-sizing: border-box;
}
@media (min-width: 1400px) {
  .footer-address-main-section-left {
    max-width: 700px;
    margin-left: auto;
    margin-right: 0;
    padding-left: 5vw;
  }
}
@media (max-width: 768px) {
  .footer-address-main-section-left {
    width: 100%;
    padding-left: 5vw;
    margin-top: 50px;
  }
}
.footer-address-main-section-left h4 {
  position: relative;
  display: inline-block;
  display: flex;
}
@media (max-width: 768px) {
  .footer-address-main-section-left h4 {
    margin-left: -5vw;
    padding-left: 5vw;
  }
}
.footer-address-main-section-left h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 1px;
  background-color: #1F528E;
  z-index: 0;
}
.footer-address-main-section-left table {
  margin-top: 60px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-address-main-section-left table {
    margin-top: 40px;
  }
}
.footer-address-main-section-left span {
  position: relative;
  font-size: 0.75rem;
  padding: 8px 20px;
  border-radius: 30px;
  border: #1F528E 1px solid;
  display: inline-block;
  margin-top: 10px;
  overflow: hidden;
  z-index: 0;
}
.footer-address-main-section-left span a {
  position: relative;
  color: inherit;
  z-index: 1;
}
.footer-address-main-section-left span a::after {
  content: ">";
  display: inline-block;
  padding-left: 5px;
}
.footer-address-main-section-left span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #ffffff;
  z-index: 0;
  transition: width 0.4s ease;
}
.footer-address-main-section-left span:hover::before {
  width: 100%;
}

.footer-tag-section--common {
  border-top: 1px solid;
  border-bottom: #1F528E 1px solid;
  line-height: 2;
  background: white;
}
.footer-tag-section--common .wrapper {
  display: flex;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-tag-section--common .wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-tag-section--common .wrapper .tag_title {
  margin-right: 16px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .footer-tag-section--common .wrapper .tag_title {
    display: block;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .footer-tag-section--common .wrapper .tags {
    display: flex;
    flex-wrap: wrap;
    transform: translateX(-5px);
  }
}
.footer-tag-section--common .wrapper .tags a {
  font-size: 0.75rem;
  min-width: 6em;
  padding: 2px 10px;
  display: inline-block;
  border: 1px solid;
  border-radius: 20px;
  margin: 5px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-tag-section--common .wrapper .tags a {
    display: inline-block;
  }
}
.footer-tag-section--common .wrapper .tags a::before {
  content: "# ";
}

.footer-company-about-section--common {
  background: white;
  border-bottom: #1F528E 1px solid;
}
.footer-company-about-section--common .wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer-company-about-section--common .wrapper {
    flex-direction: column;
    font-size: 0.9375rem;
  }
}
.footer-company-about-section--common .footer-company-about-section-left {
  width: 50%;
}
@media (max-width: 768px) {
  .footer-company-about-section--common .footer-company-about-section-left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.footer-company-about-section--common .footer-company-about-section-left img {
  max-width: 134px;
  margin-bottom: 40px;
}
.footer-company-about-section--common .footer-company-about-section-right {
  display: flex;
  flex-direction: column;
  width: 50%;
}
@media (max-width: 768px) {
  .footer-company-about-section--common .footer-company-about-section-right {
    width: 100%;
  }
}
.footer-company-about-section--common .footer-menu {
  width: 100%;
  text-align: right;
}
@media (max-width: 768px) {
  .footer-company-about-section--common .footer-menu {
    text-align: left;
    font-size: 0.9375rem;
  }
}
.footer-company-about-section--common .footer-menu li {
  display: inline-block;
  padding: 0 15px 0 10px;
  border-right: 1px solid #1F528E;
  line-height: 1.2;
}
.footer-company-about-section--common .footer-menu li:first-child, .footer-company-about-section--common .footer-menu li:nth-child(4) {
  padding: 0 15px 0 0;
}
.footer-company-about-section--common .footer-menu li:last-child, .footer-company-about-section--common .footer-menu li:nth-child(3) {
  border-right: none;
  padding: 0 0 0 10px;
}
.footer-company-about-section--common .footer-menu li a {
  display: block;
  width: 100%;
}

.news-letter {
  width: 100%;
}
.news-letter label {
  display: block;
  margin-bottom: 5px;
}

.input-group {
  position: relative;
  background: #CED5DB;
  border-bottom: #1F528E 1px solid;
  max-height: 52px;
  overflow: hidden;
}
.input-group #mailpoet_form_1 {
  width: 100% !important;
}
.input-group #mailpoet_form_1 form.mailpoet_form {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  padding: 0 0 0 10px !important;
  margin: 0 !important;
  height: 52px;
}
.input-group #mailpoet_form_1 .mailpoet_paragraph:not(.last) {
  flex: 1 !important;
  margin-bottom: 0 !important;
}
.input-group #mailpoet_form_1 .mailpoet_paragraph.last {
  position: static !important;
  flex-shrink: 0 !important;
  margin-bottom: 0 !important;
  width: auto !important;
}
.input-group #mailpoet_form_1 input.mailpoet_text {
  width: 100% !important;
  border: none !important;
  background: transparent !important;
  padding: 10px 50px 10px 10px !important;
  margin: 0 !important;
  line-height: normal !important;
  height: 60px !important;
  box-sizing: border-box !important;
  font-size: 0.8125rem !important;
  color: white !important;
}
.input-group #mailpoet_form_1 input.mailpoet_text::-moz-placeholder {
  color: white !important;
  opacity: 0.8;
}
.input-group #mailpoet_form_1 input.mailpoet_text::placeholder {
  color: white !important;
  opacity: 0.8;
}
.input-group #mailpoet_form_1 input.mailpoet_submit {
  position: absolute !important;
  top: 50% !important;
  right: 10px !important;
  transform: translateY(-50%) !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  border: none !important;
  background: url("assets/img/icon/icon-enter.svg") no-repeat center center !important;
  background-size: contain !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
  text-indent: -9999px !important;
}
.input-group #mailpoet_form_1 .mailpoet_error_njukc {
  display: block;
  color: red;
  font-size: 0.75rem;
  margin-top: 5px;
}
.input-group #mailpoet_form_1 .mailpoet_form_loading {
  display: none !important;
}
.input-group #mailpoet_form_1 .mailpoet_message {
  margin: 10px 0 0 0 !important;
  padding: 0 !important;
}
.input-group #mailpoet_form_1 .mailpoet_message p {
  font-size: 0.75rem;
  margin: 0;
}

.footer-copy-section--common {
  height: 126px;
  background: white;
}
.footer-copy-section--common .wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.footer-copy-section--common .footer-menu-sub {
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .footer-copy-section--common .footer-menu-sub {
    font-size: 0.9375rem;
  }
}
.footer-copy-section--common .footer-menu-sub li {
  display: inline-block;
}
.footer-copy-section--common .footer-menu-sub li a {
  display: block;
}
.footer-copy-section--common .footer-menu-sub li:first-child {
  border-right: #1F528E 1px solid;
  padding-right: 10px;
  margin-right: 5px;
}

.copyright {
  font-size: 0.6875rem;
}

#animated-path {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.arrivals:hover #animated-path {
  opacity: 1;
}

.catch-shisaku {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  position: fixed;
  top: calc((100vh - 550px) / 2);
  left: calc((25vw - 40px) / 2);
  z-index: 1000;
}

.border-top {
  border-top: 1px solid;
}

.post-link {
  all: unset;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.hidden {
  display: none;
}

/*-shisaku top-----------------*/
.filter-content {
  display: none;
}

.filter-content.active {
  display: block;
}

.filter-buttons li {
  cursor: pointer;
}

/*-----------------------------*/
.custom-cursor {
  position: fixed;
  width: 88px;
  height: 88px;
  background-image: url("assets/img/cursor.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9000;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .custom-cursor {
    background-image: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .custom-cursor {
    background-image: none;
  }
}

/*--------------------------------*/
#new-arrivals-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

#new-arrivals-content.loading {
  opacity: 0.5;
  pointer-events: none;
}

.arrivals {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arrivals svg {
  transform: translateZ(0);
}

.circle-wrapper {
  border-radius: 25px;
}

.onlypc {
  display: block;
}

@media (max-width: 768px) {
  .onlypc {
    display: none !important;
  }
}
.onlysp {
  display: none !important;
}

@media (max-width: 768px) {
  .onlysp {
    display: block !important;
  }
}
.onlywide {
  display: block;
}

@media (max-width: 1080px) {
  .onlywide {
    display: none !important;
  }
}
.arrivals .responsive-svg {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center center;
  overflow: visible;
  transform: scale(1.12);
}
.arrivals:hover .responsive-svg {
  transform: scale(1.25);
}

.arrivals.cat-shisaku2 .responsive-svg {
  transform: scale(1.2);
}
.arrivals.cat-shisaku2:hover .responsive-svg {
  transform: scale(1.3);
}

.arrivals.cat-shisaku3 .responsive-svg {
  transform: scale(1.2);
}
.arrivals.cat-shisaku3:hover .responsive-svg {
  transform: scale(1.25);
}

.arrivals-images {
  overflow: visible;
  display: flex;
  justify-content: center;
}
.arrivals-images.background {
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}
.arrivals-images.background .responsive-svg {
  width: 100%;
}

.pin-spacer {
  z-index: 1 !important;
}

.gsap-pin {
  z-index: 1 !important;
}/*# sourceMappingURL=style.css.map */