/*
Theme Name: long rare ロンレア（隆業）株式会社
Theme URI: 
Version: 2026
*/

@charset "UTF-8";
/* ============================================
   LONG RARE Co.,Ltd. - WordPress Theme CSS
   FLOCSS + BEM Structure
   ============================================ */

/* ============================================
   Foundation
   ============================================ */

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.sp{
  display: none !important;
}
@media (max-width: 768px) {
.sp{
  display: block !important;
}
.pc{
  display: none !important;
}
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.8px;
    font-weight: 600;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
    transition: 0.4s;
}

a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
/* ============================================
   Layout
   ============================================ */

/* Container */
.l-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .l-container {
    padding: 0 40px;
  }
}

@media (min-width: 1025px) {
  .l-container {
    padding: 0 20px;
  }
}

/* Section */
.l-section {
  padding: 50px 0 0;
}

@media (min-width: 768px) {
  .l-section {
    padding: 80px 0 0;
  }
}

@media (min-width: 1025px) {
  .l-section {
    padding: 100px 0 0;
  }
}

/* ============================================
   Layout - Header
   ============================================ */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(255 255 255 / 90%);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.l-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1440px; */
    margin: 0 auto;
    padding: 0 0 0 20px;
    height: 70px;
}
@media (min-width: 768px) {
.l-header__inner {
    padding: 0 0 0 40px;
}
}

@media (min-width: 1025px) {
  .l-header__inner {
    height: 80px;
  }
}

.l-header__logo {
  flex-shrink: 0;
}

.l-header__logo a {
  display: block;
}

.l-header__logo img {
    width: auto;
    height: 32px;
}

@media (min-width: 1025px) {
.l-header__logo img {
        width: auto;
        height: 64px;
        object-fit: contain;
    }
}

/* Navigation */
.l-header__nav {
  display: none;
}

@media (min-width: 1025px) {
    .l-header__nav {
        display: block;
        height: 100%;
    }
}

.l-header__menu {
    display: flex;
    align-items: center;
    gap: 60px;
    height: 100%;
}
.l-header__menu li {
    display: flex;
    justify-content: center;
    align-items: center;
}
.l-header__menu li:has(.is-cta) {
    border: none;
}
.l-header__menu li a {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    padding: 8px 0;
    position: relative;
}

.l-header__menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0062ac;
  transition: width 0.3s ease;
}

.l-header__menu li a:hover::after {
  width: 100%;
}

.l-header__menu li a:hover {
  opacity: 1;
}

.l-header__menu li a.is-cta {
    background-color: #c1bb14;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    width: 100%;
    margin-top: 20px;
}

.l-header__menu li a.is-cta::after {
  display: none;
}

.l-header__menu li a.is-cta:hover {
    background-color: #0062ac;
    opacity: 1;
}

@media (min-width: 1025px) {
.l-header__menu li {
    height: 100%;
}
.l-header__menu li a.is-cta {
    margin-top: 0;
    height: 100%;
}
}

@media (max-width: 1280px) {
.l-header__menu li a {
    font-size: 1.4rem;
}
.l-header__menu {
    gap: 40px;
}
}

/* Mobile Navigation */
@media (max-width: 1024px) {
  .l-header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #fff;
    padding: 40px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .is-menu-open .l-header__nav {
    display: block;
    transform: translateX(0);
  }

  .l-header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .l-header__menu li {
    border-bottom: 1px solid #eee;
  }

  .l-header__menu li a {
    display: block;
    padding: 16px 0;
    font-size: 1.6rem;
  }

  .l-header__menu li a::after {
    display: none;
  }

}

/* ============================================
   Layout - Footer
   ============================================ */
.l-footer {
  padding: 60px 0 0;
}

.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .l-footer__inner {
    padding: 0 40px;
  }
}

@media (min-width: 1025px) {
  .l-footer__inner {
    padding: 0 20px;
  }
}

.l-footer__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .l-footer__main {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (min-width: 768px) {
.foot_nav_copy_area {
    padding-top: 53px;
}
}

.l-footer__info {
  flex-shrink: 0;
}


@media (min-width: 768px) {
.l-footer__info {
    width: 29%;
}
}
.l-footer__logo {
  margin-bottom: 16px;
}

.l-footer__logo img {
    width: 300px;
    height: auto;
}
.l-footer__company {
    font-size: 1.4rem;
    margin-bottom: 0;
    color: #333;
}

.l-footer__address {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #333;
}

.l-footer__nav {
  flex-grow: 1;
}

@media (max-width: 780px) {
  .l-footer__nav {
    display: none;
}
.l-footer__info {
    text-align: center;
}
nav.l-footer__nav.policy_area {
    display: block;
}
.l-footer__menu {
    display: block;
    flex-wrap: wrap;
    gap: 16px 24px;
    text-align: center;
    margin-bottom: 50px;
}
}


.l-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

@media (min-width: 768px) {
  .l-footer__menu {
    justify-content: flex-end;
    gap: 16px 32px;
  }
}

.l-footer__menu li a {
    font-size: 1.4rem;
    color: #333;
    transition: color 0.3s ease;
}

.l-footer__menu li a:hover {
  color: #0062ac;
  opacity: 1;
}

.l-footer__copyright {
    font-size: 1rem;
    margin-top: 0px;
}
.l-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    text-align: center;
    margin-top: 0;
}
@media (min-width: 768px) {
.l-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
    margin-top: 97px;
}

.l-footer__copyright {
    font-size: 1.4rem;
    color: #333;
}
}


/* ============================================
   Component - Hamburger
   ============================================ */
.c-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 6px;
  z-index: 1001;
    padding-right: 30px;
}

@media (min-width: 768px) {
.c-hamburger {
    padding-right: 50px;
}
}

@media (min-width: 1025px) {
  .c-hamburger {
    display: none;
  }
}

.c-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.is-menu-open .c-hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.is-menu-open .c-hamburger span:nth-child(2) {
  opacity: 0;
}

.is-menu-open .c-hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   Component - Heading
   ============================================ */
.c-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0062ac;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: 4px;
}
.c-heading span {
    font-size: 1.2rem;
    display: block;
}
@media (min-width: 768px) {
  .c-heading {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
}

@media (min-width: 1025px) {
.c-heading {
        font-size: 4rem;
        line-height: 1;
    }
.c-heading span {
        font-size: 2rem;
        margin-top: 8px;
    }
}

.c-heading--white {
  color: #fff;
}

.c-heading--center {
  text-align: center;
}

/* ============================================
   Component - Button
   ============================================ */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
}

.c-btn--primary {
    background-color: #0062ac;
    color: #fff;
    border: 2px solid #0062ac;
    width: 280px;
}
.c-btn--primary:hover {
  background-color: #004494;
  border-color: #004494;
  opacity: 1;
}

.c-btn__arrow {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    position: absolute;
    right: 24px;
    top: 2px;
    bottom: 0;
    margin: auto;
    background-image: url(images/right-arrow_w.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 100;
}
/* ============================================
   Component - Editor (本文エディタ領域)
   ============================================ */
.c-editor p {
  margin-bottom: 1.5em;
}

.c-editor p:last-child {
  margin-bottom: 0;
}

.c-editor h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 2em 0 1em;
  color: #0062ac;
}

.c-editor h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 1.5em 0 0.8em;
  color: #333;
}

.c-editor ul,
.c-editor ol {
  margin: 1em 0;
  padding-left: 1.5em;
}

.c-editor ul {
  list-style: disc;
}

.c-editor ol {
  list-style: decimal;
}

.c-editor li {
  margin-bottom: 0.5em;
}

.c-editor a {
  color: #0062ac;
  text-decoration: underline;
}

.c-editor a:hover {
  text-decoration: none;
}

/* ============================================
   Project - FV (First View)
   ============================================ */
.hero {
  width: 100%;
  overflow: hidden;
  height: 80vh;
}

.heroSlider,
.heroSlider .slick-list,
.heroSlider .slick-track {
  height: 80vh;
}

.heroSlide {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.heroSlide picture,
.heroSlide img {
  display: block;
  width: 100%;
  height: 100%;
}

.heroSlide img {
  object-fit: cover;
}

/* 文字やボタンを上に載せる */
.heroSlide__caption{
  position:absolute;
  left:5%;
  bottom:10%;
  color:#fff;
  max-width:min(680px, 90%);
  text-shadow:0 2px 16px rgba(0,0,0,.35);
}
.heroSlide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slick-dots {
}

@media (max-width: 1280px){
.hero {
    height: auto;
}
.heroSlider, .heroSlider .slick-list, .heroSlider .slick-track {
    height: auto;
}
}


/* SPで800px固定は重い → clampで現実的に */
@media (max-width: 480px){
  .heroSlider,
  .heroSlider .slick-list,
  .heroSlider .slick-track,
  .heroSlide{
    height:clamp(420px, 85vh, 800px);
  }
}
/* 矢印 */
.slick-prev,
.slick-next{
  width:50px;
  height:50px;
  z-index:10;
}

.slick-prev{
  left:20px;
}

.slick-next{
  right:20px;
}

.slick-prev:before,
.slick-next:before{
  font-size:40px;
  color:#fff;
  opacity:.8;
}
.slick-prev:before, .slick-next:before {
    font-size: 50px !important;
}
.slick-next {
    right: 45px !important;
}
.slick-prev {
    left: 15px !important;
}

.heroSlider {
  position: relative;
}

.hero .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;   /* 負の値にしない */
  z-index: 20;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0;
}

.hero .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
}

.hero .slick-dots li button:before {
  font-size: 12px;
  color: #fff;
  opacity: .5;
}

.hero .slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 1;
}

.hero .slick-prev,
.hero .slick-next {
  z-index: 20;
}



@media (max-width: 767px) {
.slick-prev:before, .slick-next:before {
    font-size: 30px !important;
}
.slick-prev {
    left: 0px !important;
}
.slick-next {
    right: 10px !important;
}
}



/* ============================================
   Project - News
   ============================================ */
.home section.page_head.l-section {
    display: none;
}
.p-news__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (min-width: 768px) {
    .p-news__inner {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 50px;
    }
    .p-news__inner .c-heading {
        flex-shrink: 0;
        margin-bottom: 0;
        width: 22%;
    }

  .p-news__list {
    flex: 1;
  }

  .p-news__action {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 1025px) {
  .p-news__inner {
    gap: 40px;
  }
}

.p-news__list article.p-news__item:first-child {
    /* padding-top: 0; */
    border-top: 1px solid #c5ccd5;
}
.p-news__list {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
@media (min-width: 768px) {
  .p-news__list {
      margin-bottom: 0px;
  }
}
.p-news__item {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 0px 50px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #c5ccd5;
}

@media (max-width: 767px) {
  .p-news__item {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
  }

  .p-news__title {
    grid-column: 1 / -1;
  }
}

.p-news__date {
    font-size: 1.6rem;
    color: #0062ac;
    white-space: nowrap;
}
.p-news__label {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    color: #0062ac;
    padding: 2px 24px;
    border: 1px solid #0062ac;
    border-radius: 1px;
    white-space: nowrap;
    text-align: center;
}
.p-news__title {
    font-size: 1.6rem;
    color: #333;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 500;
}

.p-news__title:hover {
  color: #0062ac;
  opacity: 1;
}

.p-news__action {
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 780px) {
.p-news__title {
    font-size: 1.4rem;
    color: #333;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 10px;
}
.p-news__label {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 500;
    color: #0062ac;
    padding: 4px 30px;
    border: 1px solid #0062ac;
    border-radius: 2px;
    white-space: nowrap;
    text-align: center;
}
.p-news__date {
    font-size: 1.2rem;
}
.p-news__date {
    font-size: 1.2rem;
}
}
.p-news_detail {
    margin-top: 50px;
}
/* ============================================
   Project - Message Band
   ============================================ */
.p-message-band {
    position: relative;
    padding: 50px 20px;
    overflow: hidden;
    margin-top: 50px;
}

section.p-message-band {
    padding: 100px 0;
}
@media (min-width: 768px) {
.p-message-band {
        padding: 100px 40px;
        margin-top: 100px;
    }
section.p-message-band {
    padding: 180px 0;
}
}

@media (min-width: 1025px) {
  .p-message-band {
    padding: 100px 0px;
    margin-top: 100px;
  }
}

.p-message-band__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-message-band__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 10% 13%;
}

.p-message-band__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(12 69 85 / 69%);
}

.p-message-band__content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.p-message-band__title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .p-message-band__title {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}

@media (min-width: 1025px) {
.p-message-band__title {
        font-size: 3.5rem;
        line-height: 1.4;
        letter-spacing: 2.8px;
    }
}

.p-message-band__text {
    font-size: 1.4rem;
    line-height: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
}

@media (min-width: 768px) {
.p-message-band__text {
        font-size: 1.4rem;
        text-align: center;
    }
}

@media (min-width: 1025px) {
.p-message-band__text {
        font-size: 1.6rem;
        font-weight: 400;
        letter-spacing: 1px;
    }
}

/* ============================================
   Project - Products
   ============================================ */

section.p-products {
    overflow: hidden;
    padding-bottom: 90px;
}

@media (min-width: 1025px) {
section.p-products {
    padding-bottom: 120px;
}
}

.p-products__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
.p-products__header {
    margin-bottom: 50px;
}
}

.p-products__header .c-heading {
  margin-bottom: 0;
}

.p-products__nav {
  display: flex;
  gap: 8px;
}

.p-products__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.p-products__nav-btn:hover {
  opacity: 0.6;
}


.p-products__nav-btn span {
  display: block;
  width: 17px;
  height: 17px;
  transition: border-color 0.4s ease;
}

.p-products__nav-btn--prev span {
    background-image: url(images/left-arrow_bk.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.p-products__nav-btn--next span {
    background-image: url(images/right-arrow_bk.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.p-products__slider {
    /* overflow: visible; */
    margin-right: calc(50% - 50vw);
}

.p-products__card {
    background-color: #fff;
    /* border-radius: 8px; */
    overflow: hidden;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.p-products__card-img {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.p-products__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.p-products__card:hover .p-products__card-img img {
  transform: scale(1.05);
}

.p-products__card-body {
    padding: 16px 0 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.p-products__card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0062ac;
    margin-bottom: 16px;
    line-height: 1.4;
}

.p-products__card-desc {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.7;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.p-products__card-desc span {
    border-right: 1px solid #ccc;
    padding: 0 4px 0 3px;
    display: inline-block;
    line-height: 1.4;
}
/* ============================================
   Project - About
   ============================================ */
.p-about {
    /* overflow: hidden; */
    padding: 0;
    background-color: #0062ac;
}
.p-about__inner {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1025px) {
.p-about__inner {
        flex-direction: row;
        align-items: stretch;
        min-height: 500px;
        justify-content: space-between;
    }
}

.p-about__img {
    position: relative;
    /* aspect-ratio: 4 / 3; */
    /* overflow: hidden; */
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1025px) {
.p-about__img {
        width: 50%;
        aspect-ratio: auto;
        padding: 0px 5% 0 0;
    }
}

.p-about__img img {
    width: 100%;
    height: 110%;
    object-fit: cover;
}

@media (max-width: 1024px) {
.p-about__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    margin-top: -50px;
}
}

  .sp_image{
    display: none !important;
  }
@media (max-width: 1024px) {
  .sp_image{
    display: block !important;
  }
  .pc_image{
    display: none !important;    
  }
}


.p-about__content {
  background-color: #0062ac;
  color: #fff;
  padding: 50px 0px;
}

@media (min-width: 768px) {
.p-about__content {
        padding: 50px 20px 80px;
    }
}

@media (min-width: 1025px) {
.p-about__content {
        width: 50%;
        padding: 150px 0 150px 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.p-about__text {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 32px;
        font-weight: 400; 
}

@media (min-width: 768px) {
  .p-about__text {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
}

.p-about__nav {
  margin-top: auto;
}

.p-about__menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .p-about__menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.p-about__menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 18px 24px;
    font-size: 1.6rem;
    font-weight: 400;
    transition: all 0.3s ease;
    min-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    position: relative;
    text-align: center;
}

@media (max-width: 1024px) {
.p-about__menu li a {
    padding: 16px;
    font-size: 1.4rem;
}
}

.p-about__menu li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.p-about__menu li a .c-btn__arrow {
  flex-shrink: 0;
  margin-left: 8px;
}

/* ============================================
   Project - Contact
   ============================================ */
.p-contact .c-heading {
  margin-bottom: 16px;
}

.p-contact__lead {
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}

@media (min-width: 768px) {
    .p-contact__lead {
        font-size: 1.6rem;
        margin-bottom: 48px;
    }
}

.p-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
.p-contact__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
}
.p-contact__item {
    display: flex;
    align-items: baseline;
    gap: 30px;
    padding: 20px 0px;
    border-right: 1px solid #ccc;
}
@media (min-width: 1025px) {
.p-contact__item {
    padding: 20px 64px;
}
}

.p-contact__grid .p-contact__item:nth-child(2) {
    border: none;
}

@media (max-width: 780px){ 
  .p-contact__item{
    border-right: none;
    border-bottom:1px solid #ccc;
  }
}
@media (max-width: 1080px){ 
.p-contact__item {
    display: block;
}
.p-contact__icon {
    margin: 0 auto 16px;
}
.p-contact__body {
    text-align: center;
}
.p-contact__grid {
    gap: 0;
}
}



.p-contact__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0062ac;
  border-radius: 50%;
}

.p-contact__icon img {
  width: 28px;
  height: auto;
  filter: brightness(0) invert(1);
}

.p-contact__body {
  flex-grow: 1;
}

.p-contact__label {
    font-weight: 700;
    color: #0062ac;
    margin-bottom: 8px;
    font-size: 4rem;
    letter-spacing: 2.8px;
}
@media (max-width: 1080px) {
.p-contact__label {
    font-size: 2rem;
}
}


@media (max-width: 1080px) {
  .p-contact__label {
    font-size: 2rem;
  }
}

.p-contact__tel {
  font-weight: 700;
  color: #0062ac;
  margin-bottom: 4px;
    font-size: 4rem;
}

@media (max-width: 1080px) {
  .p-contact__tel {
    font-size: 2rem;
  }
}

.p-contact__note {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

@media (min-width: 768px) {
.p-contact__note {
        font-size: 1.6rem;
        font-weight: bold;
        letter-spacing: 1px;
    }
}

section.p-contact.l-section .l-container {
    border-bottom: 1px solid #ccc;
    padding-bottom: 80px;
}
section.p-contact.l-section {
    padding-bottom: 0;
}

@media (min-width: 780px) {
section.p-contact.l-section {
    padding-bottom: 0;
    padding-top: 100px;
}
}

@media (max-width: 779px) {
section.p-contact.l-section .l-container {
    padding-bottom: 40px;
}
}

/* ============================================
   Utility
   ============================================ */
.u-pc-only {
  display: none;
}

@media (min-width: 1025px) {
  .u-pc-only {
    display: inline;
  }
}

.u-sp-only {
  display: inline;
}

@media (min-width: 1025px) {
  .u-sp-only {
    display: none;
  }
}

/* Body scroll lock when menu is open */
.is-menu-open {
  overflow: hidden;
}

@media (min-width: 1025px) {
  .is-menu-open {
    overflow: auto;
  }
}

c-wiz.SSPGKf {
    display: none !important;
}
.b7B4sd {
    display: none !important;
}





/* ============================================
   カスタム投稿　product_guide　archive
   ============================================ */
.bread_area {
    border-top: 1px solid #ccc;
    padding-top: 8px;
    margin-bottom: 70px;
    position: relative;
}
.bread_area:before {
    content: '';
    display: block;
    height: 1px;
    width: 130px;
    background-color: #0062ac;
    position: absolute;
    top: -1px;
}
.home .bread_area {
  display: none;
}
.breadcrumbs {
    font-size: 12px;
    font-weight: 400;
}
section.page_head {
    width: 100%;
    position: relative;
    padding-bottom: 0;
}

h1.page_ttl {
    font-size: 48px;
    color: #0062ac;
}
.list_style01 ul {
    display: flex;
    flex-wrap: wrap;
}
.list_style01 ul li {
    flex: 31.33333%;
    max-width: 31.33333%;
    margin-right: 3%;
    margin-bottom: 24px;
}
.list_style01 ul li:nth-child(3n){
  margin-right: 0;
}
.list_style01 ul li {
    flex: 31.33333%;
    max-width: 31.33333%;
    margin-right: 3%;
    margin-bottom: 32px;
}
.bg-glay {
    background-color: #eff8ff;
}
section.p-contact.l-section.bg-glay .l-container {
    border: none;
}
@media (max-width: 1024px) {
.p-products__card-title {
    line-height: 1.4;
}
.bread_area {
    margin-bottom: 40px;
}
}

@media (max-width: 779px) {
section.page_head {
    padding-top: 80px;
}
.p-products__card-title {
    font-size: 1.8rem;
}
h1.page_ttl {
    top: 56%;
    font-size: 32px;
    line-height: 1;
}
.h1_txt {
    margin-top: 20px;
}
}

@media (max-width: 480px) {
.list_style01 ul li {
    flex: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
}
.list_style01 ul li:last-child{
  margin-bottom: 0;
}
}





/*製品詳細*/
section.single_p-products_detail.l-section {
    padding-top: 50px;
}
.single_p-products-header {
}
.single_p-products-img {
    text-align: center;
    margin-bottom: 50px;
}
.single_p-products-img img {
    width: 80%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.single_p-products-files {
    display: flex;
    flex-wrap: wrap;
}
.single_p-products-files a {
    flex: 31.33333%;
    max-width: 31.33333%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    margin-right: 3%;
    margin-bottom: 16px;
    border-radius: 50px;
    padding: 8px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    font-weight: 600;
    line-height: 1.4;
    color: #0062ac;
}
.single_p-products-files a:nth-child(3n){
  margin-right: 0;
}
.single_p-products-files a .c-btn__arrow {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    position: absolute;
    right: 24px;
    top: 2px;
    bottom: 0;
    margin: auto;
    background-image: url(images/right-arrow_bl.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 100;
}
span.bg_cl {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(12 69 85 / 69%);
}




@media (max-width: 779px) {
.single_p-products-img img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.box_layout_row {
        flex: 100%;
        max-width: 100%;
    }
.single_p-products-files a {
    margin-right: 0;
    flex: 100%;
    max-width: 100%;
}
.single_p-products-files a:last-child {
    margin-bottom: 0;
}
}


/*会社概要*/
div#in_china {
    margin-top: -100px;
    padding-top: 100px;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.page_company_list table {
    width: 100%;
}
.page_company_list table th {
    width: 30%;
    text-align: left;
    /* background-color: #eff8ff; */
}
.page_company_list table td {
    width: 70%;
    text-align: left;
    font-weight: 400;
}
.page_company_list table th,.page_company_list table td{

}
.page_company_list table th, .page_company_list table td {
    border-bottom: 1px solid #ccc;
    padding: 24px 24px 24px 0;
}
.page_company_list h2.c-heading {
    margin-top: 100px;
}
.g_map {
    margin-top: 16px;
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
}
.g_map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.g_map.main_map {
    margin-bottom: 50px;
}

@media (max-width: 779px) {
.page_company_list table th, .page_company_list table td {
    display: block;
    width: 100%;
}
.page_company_list h2.c-heading {
    margin-top: 50px;
}
}




/*ご挨拶*/
.greeting_box_area {
    overflow: hidden;
}
.greeting_box_area .r_box {
    float: right;
    width: 35%;
    padding-left: 5%;
}
.greeting_box_area .l_box {
    float: left;
    width: 65%;
}
h2.greeting_h2.c-heading {
    font-size: 3rem;
    line-height: 1.5;
}
.greeting_sign {
    width: 200px;
    float: right;
    margin-top: 30px;
}
.greeting_box_area {
    overflow: hidden;
    margin-bottom: 50px;
}
.greeting_gallery .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 5.8px;
}
.greeting_gallery .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 23px;
}
.greeting_gallery .gallery a {
    flex: 32%;
    max-width: 32%;
}
.greeting_gallery .gallery a img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}


@media (max-width: 779px) {
.greeting_box_area .r_box {
        float: none;
        width: 100%;
        padding-left: 0;
        overflow: hidden;
        margin: 50px 0;
    }
.greeting_box_area .l_box {
    float: none;
    width: 100%;
    overflow: hidden;
}
.greeting_gallery .gallery a {
    flex: 100%;
    max-width: 100%;
}
}


/*お問い合わせ*/
.page_contact_form form table.contact-table {
    width: 100%;
}
.page_contact_form form table.contact-table th{
    width: 30%;
}
.page_contact_form form table.contact-table td{
    width: 70%;
}
.page_contact_form form table.contact-table th,.page_contact_form form table.contact-table td{
    padding: 24px 24px 24px 0;
    border-bottom: 1px solid #ccc;
    text-align: left;
}
input[type="text"],input[type="email"],textarea {
    font-size: 1.6rem;
    padding: 8px;
    width: 100%;
}
select {
    padding: 8px;
    font-size: 1.6rem;
    width: 50%;
}
span.req {
    font-size: 1.2rem;
    display: inline-block;
    vertical-align: text-top;
    color: #e21313;
    margin-left: 4px;
}
.agree_area {
    text-align: center;
    margin: 50px 0;
}
a.pp_page {
    text-decoration: underline;
    color: #0062ac;
}
span.mwform-checkbox-field-text {
    font-weight: bold;
}
input.submit {
    background-color: #c1bb14;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    border: none;
    font-size: 1.6rem;
    padding: 24px;
    margin: 0 auto;
    cursor: pointer;
    transition: 0.4s;
}
input.submit:hover{
    background-color: #0062ac;
}

@media (max-width: 779px) {
.page_contact_form form table.contact-table th, .page_contact_form form table.contact-table td {
    display: block;
    width: 100%;
    padding: 16px 0px;
    border-bottom: 1px solid #ccc;
    text-align: left;
}
input.tel {
    width: 30% !important;
}
select {
    width: 100%;
}
}
