@charset "utf-8";

/* ==========================================
   Reset
========================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

body{
    min-width:320px;
    color:var(--color-text);
    background:var(--color-white);
    font-family:"Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic UI","Yu Gothic","Meiryo",sans-serif;
    sans-serif;
    font-size:16px;
    line-height:1.8;
    letter-spacing:.05em;
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    color:inherit;
    text-decoration:none;
    transition:var(--transition);
}

ul,
ol{
    list-style:none;
}

button{
    border:0;
    background:none;
    color:inherit;
    font:inherit;
    cursor:pointer;
}

input,
textarea,
select{
    font:inherit;
    color:inherit;
}

address{
    font-style:normal;
}


/* ==========================================
   Variables
========================================== */

:root{

    --color-main:#005bac;
    --color-main-hover:#00498f;
    --color-main-light:#eaf4ff;

    --color-text:#222;
    --color-white:#fff;
    --color-border:#e5e5e5;
    --color-bg:#f7f8fa;

    --content-width:1200px;
    --header-footer-width:1800px;

    --header-height:100px;
    --header-sp-height:60px;

    --radius:10px;
    --shadow:0 10px 30px rgba(0,0,0,.08);

    --transition:.3s ease;

}


/* ==========================================
   Base
========================================== */

body.is-lock{
    overflow:hidden;
    touch-action:none;
}

section{
    position:relative;
}

.container{
    width:min(var(--content-width),calc(100% - 40px));
    margin:0 auto;
}


/* ==========================================
   Utility
========================================== */

.pc{
    display:block;
}

.sp{
    display:none;
}

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


/* ==========================================
   Layout
========================================== */

.header,
.footer,
main,
section{
    width:100%;
}

main{
    padding-top:var(--header-height);
}


/* ==========================================
   Header
========================================== */

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:var(--header-height);
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  z-index:1000;
  transition:background .3s ease,box-shadow .3s ease;
}

.header.is-scrolled{
  box-shadow:var(--shadow);
}


/* ==========================================
   Header Container
========================================== */

.header__container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:min(var(--header-footer-width),calc(100% - 60px));
  height:100%;
  margin:0 auto;
}


/* ==========================================
   Logo
========================================== */

.header__logo{
  flex-shrink:0;
}

.header__logo a{
  display:block;
}

.header__logo img{
  display:block;
  width:auto;
  max-height:50px;
}


/* ==========================================
   Header Right Area
========================================== */

.header__actions{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-end;
  height:100%;
}

.header__top{
  display:flex;
  justify-content:flex-end;
  align-items:flex-start;
}

.header__bottom{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}


/* ==========================================
   Utility Navigation
========================================== */

.utility-nav{
  display:flex;
  align-items:center;
  gap:12px;
}

.utility-nav__item a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  height:30px;
  padding:0 18px;
  color:var(--color-white);
  font-size:.8rem;
  font-weight:600;
  white-space:nowrap;
  transition:var(--transition);
}

.utility-nav__item--blue a{
  background:var(--color-main);
}

.utility-nav__item--blue a:hover{
  background:#1976c5;
  color:var(--color-white);
}

.utility-nav__item--green a{
  background:#2e8b57;
}

.utility-nav__item--green a:hover{
  background:#39a96b;
  color:var(--color-white);
}

.utility-nav__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.95rem;
}


/* ==========================================
   Global Navigation
========================================== */

.global-nav__list{
  display:flex;
  align-items:center;
  gap:32px;
}

.global-nav__item{
  position:relative;
}

.global-nav__link{
  position:relative;
  display:flex;
  align-items:center;
  height:auto;
  padding:10px 0;
  color:var(--color-text);
  font-size:1rem;
  font-weight:600;
  white-space:nowrap;
  transition:var(--transition);
}

.global-nav__link::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:0;
  height:3px;
  background:var(--color-main);
  transform:translateX(-50%);
  transition:var(--transition);
}

.global-nav__item:hover .global-nav__link{
  color:var(--color-main);
}

.global-nav__item:hover .global-nav__link::after{
  width:100%;
}


/* ==========================================
   Dropdown
========================================== */

.global-nav__item--has-dropdown{
  padding-right:15px;
}

.global-nav__item--has-dropdown::before{
  content:"";
  position:absolute;
  top:50%;
  right:0;
  width:7px;
  height:7px;
  border-right:2px solid var(--color-text);
  border-bottom:2px solid var(--color-text);
  transform:translateY(-70%) rotate(45deg);
  transition:var(--transition);
}

.global-nav__item--has-dropdown:hover::before{
  border-color:var(--color-main);
  transform:translateY(-30%) rotate(225deg);
}


/* ==========================================
   Mega Menu
========================================== */

.mega-menu{
  position:fixed;
  top:var(--header-height);
  left:0;
  width:100%;
  background:#f7f8fa;
  border-top:1px solid var(--color-border);
  border-bottom:1px solid var(--color-border);
  box-shadow:var(--shadow);
  opacity:0;
  visibility:hidden;
  transform:none;
  transition:opacity .3s ease,visibility .3s ease;
  z-index:1100;
}

.global-nav__item--has-dropdown:hover .mega-menu{
  opacity:1;
  visibility:visible;
  transform:none;
}

.mega-menu__inner{
  display:grid;
  grid-template-columns:1fr 300px;
  gap:40px;
  width:min(800px,calc(100% - 60px));
  margin:0 auto;
  padding:35px 0;
}

.mega-menu__links{
  max-width:750px;
}

.mega-menu__title{
  margin-bottom:25px;
  color:var(--color-main);
  font-size:1.4rem;
  font-weight:700;
  line-height:1.4;
}

.mega-menu__list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px 30px;
}

.mega-menu__list li{
  border-bottom:1px solid var(--color-border);
}

.mega-menu__list a{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
  width:max-content;
  padding:10px 0;
  color:var(--color-text);
  font-size:.95rem;
  font-weight:500;
  transition:var(--transition);
}

.mega-menu__list a::after{
  content:"";
  position:absolute;
  left:20px;
  bottom:4px;
  width:0;
  height:2px;
  background:var(--color-main);
  transition:var(--transition);
}

.mega-menu__list a:hover{
  color:var(--color-main);
}

.mega-menu__list a:hover::after{
  width:calc(100% - 20px);
}

.mega-menu__arrow{
  width:8px;
  height:8px;
  background:var(--color-main);
  transform:rotate(45deg);
  flex-shrink:0;
}

.mega-menu__image{
  overflow:hidden;
}

.mega-menu__image img{
  width:100%;
  height:220px;
  object-fit:cover;
}


/* ==========================================
   Mega Overlay
========================================== */

.mega-overlay{
  position:fixed;
  top:var(--header-height);
  left:0;
  width:100%;
  height:calc(100vh - var(--header-height));
  background:rgba(0,0,0,.35);
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:900;
}

.mega-overlay.is-active{
  opacity:1;
  visibility:visible;
}


/* ==========================================
   Hamburger
========================================== */

.hamburger{
  display:none;
  position:fixed;
  top:12px;
  right:15px;
  width:40px;
  height:40px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  z-index:3000;
  font-size:12px;
}

.hamburger__box{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  width:28px;
  height:24px;
}

.hamburger__line{
  display:block;
  width:28px;
  height:2px;
  background:var(--color-text);
  transition:var(--transition);
}

.hamburger__menu{
  margin-top:5px;
  color:var(--color-text);
  font-size:.65rem;
  line-height:1;
  letter-spacing:.1em;
}

.hamburger__close{
  display:none;
}

.hamburger.is-active .hamburger__line{
  background:var(--color-white);
}

.hamburger.is-active .hamburger__line:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2){
  opacity:0;
}

.hamburger.is-active .hamburger__line:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

.hamburger.is-active .hamburger__menu{
  display:none;
}

.hamburger.is-active .hamburger__close{
  display:block;
  color:var(--color-white);
}


/* ==========================================
   Mobile Menu
========================================== */

.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:min(420px,85%);
  height:100vh;
  padding:90px 30px 40px;
  background:#111;
  color:var(--color-white);
  overflow-y:auto;
  z-index:2000;
  transition:var(--transition);
}

.mobile-menu.is-active{
  right:0;
}

.mobile-nav__item{
  border-bottom:1px solid rgba(255,255,255,.2);
}

.mobile-nav__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.mobile-nav__link{
  display:block;
  flex:1;
  padding:16px 0;
  color:var(--color-white);
  font-size:1rem;
}

.mobile-nav__toggle{
  position:relative;
  width:45px;
  height:45px;
}

.mobile-nav__toggle span,
.mobile-nav__toggle span::after{
  position:absolute;
  top:50%;
  left:50%;
  width:18px;
  height:2px;
  background:var(--color-white);
  content:"";
  transform:translate(-50%,-50%);
}

.mobile-nav__toggle span::after{
  transform:translate(-50%,-50%) rotate(90deg);
  transition:var(--transition);
}

.mobile-nav__item.is-open .mobile-nav__toggle span::after{
  transform:translate(-50%,-50%) rotate(0);
}

.mobile-dropdown{
  display:none;
  padding-bottom:15px;
}

.mobile-nav__item.is-open .mobile-dropdown{
  display:block;
}

.mobile-dropdown__item{
  padding-left:20px;
}

.mobile-dropdown__link{
  display:block;
  padding:10px 0;
  color:rgba(255,255,255,.85);
  font-size:.9rem;
}


/* ==========================================
   Overlay
========================================== */

.overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.5);
  opacity:0;
  visibility:hidden;
  transition:var(--transition);
  z-index:1500;
}

.overlay.is-active{
  opacity:1;
  visibility:visible;
}


/* ==========================================
   Mobile Contact
========================================== */

.mobile-menu__contact{
  margin-top:40px;
}

.mobile-menu__contact-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:55px;
  border:1px solid var(--color-white);
  color:var(--color-white);
  font-weight:600;
}


/* ==========================================
   TOP Page Header
========================================== */

body.is-top-page .header.is-top-header{
  background:transparent;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  box-shadow:none;
}


/* ==========================================
   TOP Page Global Navigation
========================================== */

body.is-top-page .header.is-top-header .global-nav__link{
  color:var(--color-white);
}

body.is-top-page .header.is-top-header .global-nav__item:hover .global-nav__link{
  color:var(--color-white);
}

body.is-top-page .header.is-top-header .global-nav__link::after{
  background:var(--color-white);
}

body.is-top-page .header.is-top-header .global-nav__item--has-dropdown::before{
  border-color:var(--color-white);
}

body.is-top-page .header.is-top-header .global-nav__item--has-dropdown:hover::before{
  border-color:var(--color-white);
}


/* ==========================================
   TOP Page Scrolled
========================================== */

body.is-top-page .header.is-top-header.is-scrolled{
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:var(--shadow);
}

body.is-top-page .header.is-top-header.is-scrolled .global-nav__link{
  color:var(--color-text);
}

body.is-top-page .header.is-top-header.is-scrolled .global-nav__item:hover .global-nav__link{
  color:var(--color-main);
}

body.is-top-page .header.is-top-header.is-scrolled .global-nav__link::after{
  background:var(--color-main);
}

body.is-top-page .header.is-top-header.is-scrolled .global-nav__item--has-dropdown::before{
  border-color:var(--color-text);
}

body.is-top-page .header.is-top-header.is-scrolled .global-nav__item--has-dropdown:hover::before{
  border-color:var(--color-main);
}


/* ==========================================
   TOP Page PC Hover
========================================== */

@media screen and (min-width:1201px){

  body.is-top-page .header.is-top-header.is-header-hover{
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    box-shadow:var(--shadow);
  }

  body.is-top-page .header.is-top-header.is-header-hover .global-nav__link{
    color:var(--color-text);
  }

  body.is-top-page .header.is-top-header.is-header-hover .global-nav__item:hover .global-nav__link{
    color:var(--color-main);
  }

  body.is-top-page .header.is-top-header.is-header-hover .global-nav__link::after{
    background:var(--color-main);
  }

  body.is-top-page .header.is-top-header.is-header-hover .global-nav__item--has-dropdown::before{
    border-color:var(--color-text);
  }

  body.is-top-page .header.is-top-header.is-header-hover .global-nav__item--has-dropdown:hover::before{
    border-color:var(--color-main);
  }

}


/* ==========================================
   TOP Page Mobile
========================================== */

@media screen and (max-width:1200px){

  body.is-top-page .header.is-top-header{
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    box-shadow:none;
  }

  body.is-top-page .hamburger.is-top-hamburger .hamburger__line{
    background:var(--color-white);
  }

  body.is-top-page .hamburger.is-top-hamburger .hamburger__menu{
    color:var(--color-white);
  }


  /* ==========================================
     TOP Page Mobile Scrolled
  ========================================== */

  body.is-top-page .header.is-top-header.is-scrolled{
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    box-shadow:var(--shadow);
  }

  body.is-top-page .hamburger.is-top-hamburger.is-scrolled .hamburger__line{
    background:var(--color-text);
  }

  body.is-top-page .hamburger.is-top-hamburger.is-scrolled .hamburger__menu{
    color:var(--color-text);
  }

}


/* ==========================================
   Responsive Header
========================================== */

@media screen and (max-width:1200px){

  .header__actions{
    display:none;
  }

  .hamburger{
    display:flex;
    top:30px;
  }

}


@media screen and (max-width:768px){

  main{
    padding-top:60px;
  }

  .header{
    height:var(--header-sp-height);
  }

  .header__container{
    width:calc(100% - 30px);
  }

  .header__logo img{
    max-height:30px;
  }

  .hamburger{
    top:15px;
    right:15px;
  }

  .mobile-menu{
    width:90%;
    padding:90px 25px 35px;
  }

}


/* ==========================================
   Responsive
========================================== */

@media screen and (max-width:768px){

  body{
    font-size:15px;
  }

  .container{
    width:calc(100% - 30px);
  }

}


/* ==========================================
   Hover Disable Mobile
========================================== */

@media (hover:none){

  a:hover,
  button:hover{
    color:inherit;
  }

  .utility-nav__item a:hover::after,
  .global-nav__link:hover::after{
    width:0;
  }

  .dropdown__link:hover{
    background:none;
  }

}


/* ==========================================
   Header Fixed Space
========================================== */

@media screen and (min-width:769px){

  main{
    padding-top:100px;
  }

}

@media screen and (max-width:768px){

  main{
    padding-top:60px;
  }

}


/* ==========================================
   PC Header Balance
========================================== */

@media screen and (min-width:1201px){

  .header__actions{
    gap:0;
  }

  .utility-nav{
    margin-bottom:5px;
  }

  .global-nav__list{
    gap:30px;
  }

  .global-nav__link{
    font-size:.95rem;
  }

}


/* ==========================================
   Mobile Menu Scroll Lock
========================================== */

body.is-lock .mobile-menu{
  overscroll-behavior:none;
}


/* ==========================================
   Accessibility
========================================== */

a:focus-visible,
button:focus-visible{
  outline:2px solid var(--color-main);
  outline-offset:3px;
}


/* ==========================================
   Image
========================================== */

img{
  user-select:none;
}


/* ==========================================
   Small Device
========================================== */

@media screen and (max-width:480px){

  .mobile-menu{
    width:100%;
  }

  .hamburger{
    right:10px;
  }

}

/* ==========================================
   Footer
========================================== */

.Footer {
    background: #1b2025;
    color: #fff;
}

.Footer__inner {
    width: min(var(--content-width), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        minmax(320px, 0.9fr)
        minmax(420px, 1.1fr);
    gap: 80px;
    padding: 70px 0 65px;
}

.Footer__company {
    min-width: 0;
}

.Footer__logo {
    display: inline-block;
    margin-bottom: 32px;
}

.Footer__logo img {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 55px;
}

.Footer__address {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 32px;
}

.Footer__address-item {
    min-width: 0;
}

.Footer__label {
    margin: 0 0 8px;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
    color: #fff;
}

.Footer__text {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #c7cdd2;
}

.Footer__iso {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid #3a4148;
}

.Footer__iso-image {
    flex: 0 0 auto;
}

.Footer__iso-image img {
    display: block;
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.Footer__iso-text {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;

    color: #dce1e5;
}

.Footer__nav {
    align-self: center;
    min-width: 0;
}

.Footer__menu {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    column-gap: 42px;
    row-gap: 24px;
}

.Footer__menu-item {
    flex: 0 0 auto;
}

.Footer__menu-item a {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.Footer__menu-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #005bac;
    transition: width 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {

    .Footer__menu-item a:hover {
        color: #dce8f2;
    }

    .Footer__menu-item a:hover::after {
        width: 100%;
    }

}

.Footer__bottom {
    border-top: 1px solid #343b42;
}

.Footer__bottom-inner {
    width: min(var(--content-width), calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 0;
}

.Footer__copyright {
    order: 1;
    margin: 0;
    color: #8f979e;
    font-size: 0.72rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.04em;
}

.Footer__utility {
    order: 2;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
}

.Footer__utility a {
    position: relative;
    color: #aeb5bb;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.04em;

    transition: color 0.2s ease;
}

.Footer__utility a + a {
    padding-left: 28px;
}

.Footer__utility a + a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 12px;
    background: #4a5158;
    transform: translateY(-50%);
}

@media (hover: hover) and (pointer: fine) {

    .Footer__utility a:hover {
        color: #fff;
    }
}

/* ==========================================
   Tablet
========================================== */

@media (max-width: 1100px) {

    .Footer__inner {
        grid-template-columns:
            minmax(280px, 0.9fr)
            minmax(320px, 1.1fr);
        gap: 50px;
        padding: 60px 0 55px;
    }

    .Footer__menu {
        column-gap: 28px;
        row-gap: 20px;
    }

    .Footer__menu-item a {
        font-size: 0.95rem;
    }

}

/* ==========================================
   Smartphone
========================================== */

@media (max-width: 767px) {

    .Footer__inner {
        width: min(
            var(--content-width),
            calc(100% - 32px)
        );
        display: block;
        padding: 48px 0 42px;
    }

    .Footer__logo {
        margin-bottom: 25px;
    }

    .Footer__logo img {
        max-width: 185px;
        max-height: 48px;
    }

    .Footer__address {
        gap: 20px;

        margin-bottom: 25px;
    }

    .Footer__label {
        margin-bottom: 6px;

        font-size: 0.75rem;
    }

    .Footer__text {
        font-size: 0.72rem;
        line-height: 1.7;
    }

    .Footer__iso {
        gap: 12px;

        padding-top: 20px;
    }

    .Footer__iso-image img {
        width: 46px;
        height: 46px;
    }

    .Footer__iso-text {
        font-size: 0.75rem;
    }

    .Footer__nav {
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid #3a4148;
    }

    .Footer__menu {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .Footer__menu-item {
        border-bottom: 1px solid #343b42;
    }

    .Footer__menu-item a {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: 8px 20px 8px 0;
        font-size: 0.82rem;
        line-height: 1.5;
        letter-spacing: 0.04em;
    }

    .Footer__menu-item a::before {
        content: "→";
        flex: 0 0 auto;
        margin-right: 8px;
        color: #005bac;
        font-size: 0.8rem;
    }

    .Footer__menu-item a::after {
        display: none;
    }

    .Footer__bottom-inner {
        width: min(
            var(--content-width),
            calc(100% - 32px)
        );
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }

    .Footer__utility {
        order: 1;
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 0;
        width: 100%;
    }


    .Footer__utility a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 8px 10px;
        color: #aeb5bb;
        font-size: 0.68rem;
        line-height: 1.5;
        letter-spacing: 0.03em;
        text-align: center;
    }

    .Footer__utility a + a {
        padding-left: 10px;
    }

    .Footer__utility a + a::before {
        left: 0;
        top: 50%;
        width: 1px;
        height: 16px;
        background: #4a5158;
        transform: translateY(-50%);
    }

    .Footer__copyright {
        order: 2;
        width: 100%;
        padding: 14px 0 16px;
        border-top: 1px solid #343b42;
        color: #8f979e;
        font-size: 0.58rem;
        line-height: 1.5;
        text-align: center;
    }

}


/* ==========================================
   Small Smartphone
========================================== */

@media (max-width: 480px) {

    .Footer__inner {
        padding: 40px 0 35px;
    }

    .Footer__logo img {
        max-width: 165px;
        max-height: 44px;
    }

    .Footer__address {
        gap: 15px;
    }

    .Footer__text {
        font-size: 0.68rem;
    }

    .Footer__iso {
        gap: 10px;

        padding-top: 18px;
    }

    .Footer__iso-image img {
        width: 42px;
        height: 42px;
    }

    .Footer__iso-text {
        font-size: 0.7rem;
    }

    .Footer__nav {
        margin-top: 32px;
        padding-top: 25px;
    }

    .Footer__menu-item a {
        min-height: 48px;
        padding-right: 12px;
        font-size: 0.76rem;
    }

    .Footer__utility a {
        min-height: 44px;
        padding: 7px 8px;
        font-size: 0.64rem;
    }

    .Footer__utility a + a {
        padding-left: 8px;
    }

    .Footer__utility a + a::before {
        height: 14px;
    }

    .Footer__copyright {
        padding: 13px 0 15px;
        font-size: 0.55rem;
    }
}

/* ==========================================
   共通見出し（h2）
========================================== */

.CommonHeading_h2 {
    margin-bottom: 35px;
}

.CommonHeading_h2 h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    padding-bottom: 14px;

    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    color: #222;
}

.CommonHeading_h2 h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 55px;
    height: 2px;

    background: #005bac;
}

/* ==========================================
   h2：タブレット
========================================== */

@media (max-width: 1024px) {

    .CommonHeading_h2 {
        margin-bottom: 30px;
    }

    .CommonHeading_h2 h2 {
        font-size: 1.8rem;
        padding-bottom: 12px;
        letter-spacing: 0.07em;
    }

    .CommonHeading_h2 h2::after {
        width: 50px;
    }

}

/* ==========================================
   h2：スマートフォン
========================================== */

@media (max-width: 767px) {

    .CommonHeading_h2 {
        margin-bottom: 23px;
    }

    .CommonHeading_h2 h2 {
        font-size: 1.5rem;
        line-height: 1.45;
        letter-spacing: 0.04em;
        padding-bottom: 10px;
    }

    .CommonHeading_h2 h2::after {
        width: 40px;
        height: 2px;
    }

}

/* ==========================================
   h2：小型スマートフォン
========================================== */

@media (max-width: 480px) {

    .CommonHeading_h2 {
        margin-bottom: 20px;
    }

    .CommonHeading_h2 h2 {
        font-size: 1.35rem;
        line-height: 1.5;
        letter-spacing: 0.03em;
        padding-bottom: 9px;
    }

    .CommonHeading_h2 h2::after {
        width: 36px;
    }
}

/* ==========================================
   共通見出し（h3）
========================================== */

.CommonHeading_h3 {
    margin: 0;
}

.CommonHeading_h3 h3 {
    margin: 0 0 18px;
    padding-left: 16px;
    border-left: 3px solid #005bac;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #222;
}

/* ==========================================
   h3：タブレット
========================================== */

@media (max-width: 1024px) {

    .CommonHeading_h3 h3 {
        margin-bottom: 16px;
        padding-left: 14px;
        font-size: 1.35rem;
        line-height: 1.5;
        letter-spacing: 0.03em;
    }
}

/* ==========================================
   h3：スマートフォン
========================================== */

@media (max-width: 767px) {

    .CommonHeading_h3 h3 {
        margin-bottom: 14px;
        padding-left: 11px;
        border-left-width: 3px;
        font-size: 1.15rem;
        line-height: 1.55;
        letter-spacing: 0.02em;
    }

}

/* ==========================================
   h3：小型スマートフォン
========================================== */

@media (max-width: 480px) {

    .CommonHeading_h3 h3 {
        margin-bottom: 12px;
        padding-left: 10px;
        font-size: 1.05rem;
        line-height: 1.55;
        letter-spacing: 0.01em;
    }

}

/* =================================
   注意書き
================================= */

.notes{
  margin:12px 0 0;

  color:#666;
  font-size:13px;
  font-weight:400;
  line-height:1.8;
}


/* =================================
   Smartphone
================================= */

@media screen and (max-width:768px){

  .notes{
    margin-top:10px;

    font-size:12px;
    line-height:1.7;
  }

}