/* ==============================
   共通スタイル common.css
================================ */
/* 🎨 カラーパレット & フォント設定 */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --background-color: #f9f9fc;
    --text-color: #333;
    --link-color: #0056b3;
    --border-color: #ddd;

    --font-primary: "Zen Kaku Gothic New", sans-serif;
    --font-secondary: "Josefin Sans", sans-serif;

    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 20px;
    --font-size-heading: 32px;

    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    --box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);

    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
}
/* ==============================
   基本スタイル
================================ */
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.8;
    color: #12182e;
}
/* button */
button, .btn {
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 4px;
    border: none;
    box-shadow: var(--box-shadow);
    font-size: var(--font-size-base);
    transition: 0.3s ease-in-out;
}
button:hover, .btn:hover {
    background-color: var(--link-color);
}
/* button common-style & comp-animation */
.rgl_btn{
    position: relative;
    border: 1px solid #0574b0;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 230px;
    height: 55px;
    margin: 70px auto 0;
    overflow: hidden;
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.rgl_btn > a{
    letter-spacing: 0.075em;
    font-weight: bold;
    font-size: 0.875rem;
    color: #0574b0;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
.company_btn.hover,
.rgl_btn:hover {
    background-color: #0574b0;
    border-color: #0574b0;
}
.company_btn.hover a,
.rgl_btn:hover a {
    color: #ffffff;
}
.company_btn.hover .fa-solid,
.rgl_btn:hover .fa-solid {
    color: #ffffff;
    transform: translateX(8px);
}
.fa-solid {
    overflow: hidden;
    position: absolute;
    top: 36%;
    right: 5%;
    bottom: 0;
    width: 30px;
    margin: auto 0;
    line-height: 1;
    transition: transform 0.3s ease-in-out;    
  }

  @keyframes transformLeftRight {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  @keyframes transformRightLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(100%);
    }
  }
img {
    width: 100%;
    height: auto;
}
@media (max-width: var(--breakpoint-md)) {
    body {
        font-size: var(--font-size-small);
    }
}
/* 共通設定 */
.sp {
    display: block;
}
.pc {
    display: none;
}
.hidden-sp{
    display: none;
}
@media (min-width: 900px) {
    .sp {
        display: none;
    }
    .pc {
        display: block;
    }
}
.wrapper{
    min-width: 1200px;
    min-height: 100%;
}
.wrapper-bg{
    background: #f9f9fc;
}
/* header /////////////////////////////////////////////////////////////////////////////////////////////////*/
#header {
    position: relative;
}
#header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    z-index: 50;
    opacity: .15;
}
.header-logo {
    position: absolute;
    top: 0;
    left: 20px;
    width: 130px;
    height: auto;
    z-index: 100;
}
.header-area::after {
    content: "";
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
    background-size: cover;
    z-index: 100;
}
.mainV-area::before{
    content: "";
    position: absolute;
    top: 0;
    right: auto;
    left: 338px;
    width: 1px;
    min-height: 100svh;
    background-color: rgba(255, 255, 255, 0.7);
    background-size: cover;
    z-index: 100;
    transition: min-height 1.6s;
    transition-delay: .5s;
}
/* sp hamburger ///////////////////////////////////////*/
.slide-menu_btn {
    position: absolute;
    top: 22px;
    right: 20px;
    z-index: 10000;
}
.menu-trigger {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.menu-trigger span {
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}
.menu-trigger span:nth-of-type(1) { top: 10px; }
.menu-trigger span:nth-of-type(2) { top: 18px; }
.menu-trigger span:nth-of-type(3) { top: 26px; }
/* change button shape */
.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
    transform: scaleX(0);
}
.menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* slide menu */
.slide-menu_nav {
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 100px 0 70px 60px;
    background-color: rgba(255, 255, 255, 0.96);
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.slide-menu_nav.open {
    visibility: visible;
    opacity: 1;
}
.menu-trigger.active span{
    background-color: #333;
}
.menu-trigger.active .scroll_down a{
    color: rgb(47 47 47);
}
.slide-menu_logo{
    position: absolute;
    top: 20px;
    left: 20px;
    width: 130px;
    height: auto;
}
.gnav_sp{
    margin-top: 60px;
}
.slide-menu_nav .gnav_sp > li {
    position: relative;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
/* open menu animate */
.slide-menu_nav.open .gnav_sp > li {
    opacity: 1;
    transform: translateY(0);
}
.slide-menu_nav.open .gnav_sp > li:nth-child(1) {
    transition-delay: 0s;
}
.slide-menu_nav.open .gnav_sp > li:nth-child(2) {
    transition-delay: .04s;
}
.slide-menu_nav.open .gnav_sp > li:nth-child(3) {
    transition-delay: .08s;
}
.slide-menu_nav.open .gnav_sp > li:nth-child(4) {
    transition-delay: .12s;
}
.slide-menu_nav.open .gnav_sp > li:nth-child(5) {
    transition-delay: .16s;
}
.slide-menu_nav.open .gnav_sp > li:nth-child(6) {
    transition-delay: .2s;
}

.slide-menu_nav .item > a {
    position: relative;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1;
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 8000;
}
.menu-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* scroll button */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');
.scroll_down{
    position: absolute;
    right: 8%;
    z-index: 9999;
}
.scroll_down a{
  position: absolute;
  left: 10px;
  bottom: 87px;
  color: #fff;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 999;
}
.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background:#fff;
  z-index: 999;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove{
  0%{bottom:160px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}
.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:2px;
  height: 160px;
  background:#000;
}
/* pankuzu/////////////////////////////////////////////////////////////////////////////////////////////// */
.pankuzu {
    padding: 34px 0 40px;
}
.pankuzu_inner {
    width: auto;
    overflow-x: auto;
    padding-left: 10px;
}
.pankuzu_list {
    margin: 0;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    justify-content: flex-start;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    margin-right: 17px;
}
.pankuzu_item {
    font-size: 0.7857142857rem;
    white-space: nowrap;
    font-weight: 500;
    color: #8a8d99;
}
.pankuzu_item > a {
    text-decoration: none;
    color: #12182e;
    transition: all 0.4s;
}
.pankuzu_item a:hover{
    opacity: 0.6;
}
.pankuzu_item:not(:first-child)::before {
    content: "　|　";
}
/* contents////////////////////////////////////////////////////////////////////////////////////////////// */
.contents_header{
    width: auto;
    margin-top: 30px;
    padding: 0 24px;
}
.contentsHeadings_en{
    font-size: 5.625rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.001em;
    padding-bottom: 10px;
    color: #0574b0;
}
.contentsHeadings_ja{
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.025em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #12182e;
    margin-top: 0;
}
.contentsHeadings_ja::before{
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #0574b0;
    border-radius: 50%;
    margin-right: 10px;
}
.newsBlock{
    padding-bottom: 120px;
}
.newsBlock_inner{
    width: auto;
    margin: 0 auto;
    margin-top: 50px;
}
.headLine1 {
    font-weight: bold;
    color: #12182e;
    letter-spacing: 0.025em;
    line-height: 1.5;
    background-color: #edf0f7;
    padding: 10px 26px;
    margin-bottom: 20px;
}
.headLine2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0574b0;
    border-bottom: 1px solid #0574b0;
    padding-left: 16px;
    padding-right: 16px;
    letter-spacing: 0.025em;
    line-height: 1.5;
    padding-bottom: 10px;
    margin: 60px 0 30px;
}
.newsBlock_list{
    margin: 20px 0;
    list-style-type: disc;
}
.newsBlock_item{
    margin-left: 20px;
}
/* footer /////////////////////////////////////////////////////////////////////////////////////////////////*/
.footer-sitemap_inner-top{
    position: relative;
    padding: 60px 40px 50px;
    border-left: 20px solid #fff;
    border-right: 20px solid #fff;
    background-color: #F7F7F7;
}
.footer-sitemap_inner-top::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 40px;
    width: calc(100% - 80px);
    height: 1px;
    background-color: #EDEDED;
}
.footer-nav {
    margin-bottom: 35px;
}
.fnav_item{
    margin-bottom: 14px;
}
.fnav_item a{
    font-size: 0.95rem;
}
.footer-sitemap_inner-bottom{
    padding: 50px 40px 60px;
    border-left: 20px solid #E8E8E8;
    border-right: 20px solid #E8E8E8;
    background-color: #F7F7F7;
}
.footer-cnav{
    padding-bottom: 95px;
}
.cnav_title{
    font-size: 0.95rem;
}
.cnav_title img{
    width: 60%;
    margin-bottom: 10px;
}
.cnav_add{
    margin-top: 25px;
    font-size: 0.975rem;
}
.cnav_add_link{
    margin-top: 20px;
}
.cnav_add_link a,
.policy-link_item a{
    transition: all .3s;
}
.cnav_add_link a:hover,
.policy-link_item a:hover{
    opacity: .6;
    cursor: pointer;
}
/* popup */
.popup {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    justify-content: center;
    align-items: center;
}
.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.popup.show .popup-content {
    transform: translateY(0);
    opacity: 1;
}
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    border: 1px solid;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: all 0.3s
}
.close:hover {
    color: rgb(5, 116, 176);
    opacity: .6;
}
.footer-sitemap_bottom{
    padding-top: 28px;
    background-color: #E8E8E8;
}
.footer_policy-link{
    margin-bottom: 80px;
    padding-right: 20px;
    text-align: right;
    font-size: 12px;
    line-height: 2;
}
.footer_policy-link a{
    display: inline-block;
    font-family: "Inter", system-ui;
    letter-spacing: 0;
    line-height: 1.3;
    font-size: 14px;
    transition: color .3s;
}
.footer_copyright{
    padding: 30px 15px;
    letter-spacing: 0;
    line-height: 1.4;
    font-size: 12px;
    text-align: center;
}
/* company ////////////////////////////////////////////////////////////////////////////////////////////////////// */
  .hero {
    position: relative;
    background: url(../images/mainvisual.jpeg) no-repeat center center/cover;
    height: 350px;
    padding: 135px 0px 0 20px;
    text-align: left;
    color: #fff;
    background-color: #2a2a2a;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); 
    z-index: 1;
  }
  .hero h2,
  .hero p {
    position: relative;
    color: #fff;
    opacity: 1 !important;
    z-index: 2;
    
 }
  .hero h2 {
    font-size: 2.5rem;
    margin-top: 20px;
  }
  .hero p {
    font-size: 1.2rem;
    opacity: 0.9;
  }
  .company-info {
    padding: 60px 20px;
    max-width: 960px;
    margin: 0 auto;
  }
  .info-box {
    margin-bottom: 60px;
  }
  .info-box h3 {
    font-size: 1.8rem;
    color: #0574b0;
    margin-bottom: 20px;
    border-left: 4px solid #0574b0;
    padding-left: 12px;
  }
  .info-box dl {
    padding: 15px 0 15px 11px;
    border-bottom: 1px solid #d7dbeb;
    padding: 15px 0 15px 11px;
    margin-top: 0;
 }
 .info-box dl dt{
    color: #8f93a8;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.025em;
 }
 .info-box dl dd{
    font-size: 1rem;
    color: #12182e;
    letter-spacing: 0.025em;
 }
 .permit-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  .permit-list li:first-child {
    margin-bottom: 15px;
  }  
  .mapBox-map{
    width: 100%;
    height: 500px;
  }
    
/* contact ////////////////////////////////////////////////////////////////////////////////////////////////////// */
  .contact-section {
    position: relative;
    background: url(../images/mainvisual.jpeg) center center no-repeat;
    background-size: cover;
    padding: 80px 20px;
    z-index: 0;
  }
  .contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(38, 38, 38, 0.4);
    z-index: -1;
  }
  .contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
  }
  .contact-container h2 {
    font-size: 5rem;
    margin-bottom: 10px;
    color: #0574b0;
    text-align: center;
    font-weight: 500;
  }  
  .contact-container p {
    text-align: center;
    color: #777;
    margin-bottom: 30px;
  }
  .contact-form label {
    display: block;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #444;
    font-weight: 500;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    background-color: #fafafa;
    transition: border 0.3s;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
    background-color: #fff;
  }
  .contact-form button {
    margin-top: 30px;
    width: 100%;
    padding: 14px;
    background-color: #0574b0;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .contact-form button:hover {
    opacity: .6
  }
  .required {
    color: red;
    margin-left: 4px;
    font-size: 14px;
    vertical-align: middle;
  }
  .field-error {
    color: red;
    font-size: 14px;
    margin-top: 4px;
  }
  .form-error-message {
    background-color: #ffebeb;
    color: #d8000c;
    padding: 12px 16px;
    border-left: 5px solid #d8000c;
    margin-bottom: 20px;
    font-weight: 500;
    border-radius: 4px;
  }  
/* coming-soon ////////////////////////////////////////////////////////////////////////////////////////////////// */
.coming-soon{
    position: relative;
    background: url(../images/mainvisual.jpeg) center center no-repeat;
    background-size: cover;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.coming-soon::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); 
    z-index: -1;
}
.coming-soon-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    animation: fadeIn 1.5s ease-in-out;
}
.coming-soon-container h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.coming-soon-container h2{
    margin: .67em 0;
    line-height: 1.5;
}
.coming-soon-container p {
    font-size: 1rem;
    margin: 5px 0;
}
.loading-animation {
    position: relative;
    left: 180px;
    width: 40px;
    height: 40px;
    margin: 20px 0;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.6) 10%, transparent 70%);
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}
.back-home{
    color: #12182e;
    transition: all 0.4s;
}
.back-home:hover{
    opacity: 0.6;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}


@media only screen and (max-width: 900px) {
    .newsBlock_in{
        padding: 0 16px;
    }
    .loading-animation{
        left: 120px;
    }
    .contact-container h2{
        font-size: 3rem;
    }     
}

@media only screen and (min-width: 900px) {
/* header /////////////////////////////////////////////////////////////////////////////////////////////////*/
.header-logo {
    position: absolute;
    top: 0;
    left: 60px;
    width: 130px;
    z-index: 100;
}
.header-area {
    position: fixed;
    height: 130px; 
    top: 0;
    left: 0;
    width: 100%;
    padding-bottom: 0;
    z-index: 1000;
    transition: height 0.5s ease-in-out; 
}
.header-logo {
    position: absolute;
    top: 38px;
    left: 50px;
    width: 160px;
    height: auto;
    z-index: 100;
    transition: all 0.5s ease-in-out;
    padding: 0;
}
.mainV-area::before{
    left: 260px;
}
.header-area::after{
    top: 130px;
}
.header-gnav_pc{
    height: 130px;
    transition: all 0.5s ease-in-out;
    background: transparent;
}
.header-gnav_pc.scrolled {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 0;
}
.header-logo.scrolled {
    top: 25px; 
}
.header-gnav_pc_list{
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding: 0 0 0 310px;
    padding-bottom: 30px;
}
.header-gnav_pc_list li{
    margin-right: 30px;
    color: #fff;
    transition: all .3s;
    font-weight: 400;
}
.header-gnav_pc_list li:last-child{
    margin-right: 0;
}
.header-gnav_pc_list > li > a,
.fnav_item > a {
    display: inline-block; 
    transition: all 0.3s; 
}
.header-gnav_pc_list > li > a:hover,
.fnav_item > a:hover {
    opacity: .6;
    cursor: pointer;
}
.scroll_down{
    right: 10%;
}
/* back to top */
.page_Top {
    position: fixed;
    right: 50px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.page_Top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background: #333;
}
.pageTop {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    text-decoration: none;
}
.pageTop_arrow {
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(-45deg);
}
.page_Top:hover {
    opacity: .5;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.pankuzu_inner{
    width: 1160px;
    margin: 0 auto;
}
.pankuzu_list {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-right: 17px;
}
.pankuzu_item {
    font-size: 0.75rem;
}
.contents_header {
    width: 1160px;
    margin: 0 auto;
    margin-top: 50px;
}
.contentsHeadings_en{
    font-size: 6.25rem;
}
.newsBlock_inner {
    width: 1160px;
    margin: 0 auto;
    margin-top: 50px;
}
.newsBlock_in{
    line-height: 1.875;
}
.footer-sitemap_inner-top{
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 105px 60px 65px;
    border-left: 60px solid #fff;
    border-right: 60px solid #fff;
    background-color: #F7F7F7;
}
.footer-sitemap_inner-top::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 60px;
    width: calc(100% - 120px);
    height: 1px;
    background-color: #EDEDED;
}
.footer-nav {
    display: flex;
    margin-bottom: 0;
}
.fnav_item{
    margin: 0 30px 0 0;
}
.footer-catch{
    font-family: "Cormorant Garamond", system-ui;
    font-size: 4.5rem;
    letter-spacing: -0.015em;
    line-height: 0.91;
    text-align: right;
    color: #333;
}
.footer-sitemap_inner-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 0 60px;
    padding: 50px 60px 0;
    border-left: none;
    border-right: none;
    background-color: #F7F7F7;
}
.footer-sitemap_inner-bottom::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: -60px;
    width: calc(100% + 120px);
    height: 66.5%;
    background-color: #E8E8E8;
    z-index: -10;
}
.cnav_title img{
    width: 30%;
    margin-bottom: 10px;
}
.cnav_add{
    margin-top: 20px;
}
.footer-sitemap_bottom{
    padding-top: 45px;
}
.footer_policy-link{
    margin-bottom: 100px;
    padding-right: 60px;
    font-size: 14px;
    line-height: 1.5;
}
.footer_copyright{
    padding: 0 60px 45px 0;
    letter-spacing: 0;
    line-height: 1.4;
    font-size: 14px;
    text-align: center;
}
.popup-content{
    line-height: 2;
}
/* company //////////////////////////////////////////////////////////////////////////////////////*/
.hero {
    height: 500px;
    padding: 230px 0 0 0;
  }
.hero_headding {
    padding: 60px 20px;
    max-width: 960px;
    margin: 0 auto;
}
.company-info{
    padding: 90px 20px;
}
.info-box{
    margin-bottom: 100px;
}
.info-box h3{
    margin-bottom: 24px;
}
.info-box dl{
    padding: 30px 0 30px 25px;
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.info-box dt{
    flex-basis: 220px;
    color: #8f93a8;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.025em;
}

}