
/* ----- root ----- */

:root {
  --primary-color:  #666; /* プライマリカラー */
  --secondary-color:  #D8133C; /* プライマリカラー */
  --site-with: 1240px;
  --box-shadow: 2px 2px 4px var(--primary-color);
}

/* ----- end root ----- */

/* --- common --- */

html {
	scroll-behavior: smooth;
}

html,
body,
.container-left {
    height: 100%;
}

img {
    width: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.pos-rel {
    position: relative;
}

.pos-abs {
    position: absolute;
}

.pos-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.underline {
    text-decoration:underline;
}

.action-box:hover {
    background-color: var(--primary-color);
}

.wpcf7-spinner {
    display: none;
}

.wpcf7 form .wpcf7-response-output {
    text-align: center;
    border: unset;
}

.un-border-primCol {
    border: 1px solid var(--primary-color);
}

.mon, .pc {
    display: none;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

#access.anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 20;
  color: var(--secondary-color);
}

.required {
    color: var(--secondary-color);
}

/* ----- back to top ----- */

.back-to-top {
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 999999;
    right: 0;
    bottom: 2px;
    background-color:  var(--primary-color);
    /* 初期状態（隠れている） */
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.back-to-top.active {
    /* 表示状態（下から出現） */
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top a {
    display: block;
    height: 100%;
    position: relative;
}

.back-to-top a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 50%;
    left: 57%;
    transform: rotate(-45deg) translate(-50%, -50%);
}


/* ----- end back to top ----- */

/* ----- header ----- */
#header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #999;
}

.hd-container-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    max-width: var(--site-with);
}

.hd-container-inner,
.hd-title, 
.title-link img {
    height: 45px;
}

.hd-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 300px;
}

.title-link {
    display: block;
    padding-left: 10px;
}

.hd-list {
    display: none;
}

/* ハンバーガーメニューボタン */

.btn-trigger {
    /* display: block; */
    position: relative;
    width: 50px;
    height: 45px;
    cursor: pointer;
}

.btn-trigger:hover {
    background-color:  var(--primary-color);
}

.btn-trigger .btn-trigger-line {
    position: absolute;
    left: 15px;
    width: 20px;
    height: 2px;
    background-color:  var(--primary-color);
    border-radius: 4px;
}

.btn-trigger:hover .btn-trigger-line {
    background-color: #fff;
}

.btn-trigger .btn-trigger-line {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
}

.btn-trigger.active .btn-trigger-line:nth-of-type(1) {
    top: 17px;
    transform: none;
}

.btn-trigger.active .btn-trigger-line:nth-of-type(2) {
    display: block;
    top: 21px;
    transform: none;
}

.btn-trigger.active .btn-trigger-line:nth-of-type(3) {
    top: 25px;
    transform: none;
}

.btn-trigger .btn-trigger-line:nth-of-type(1) {
    top: 21px;
    transform: rotate(45deg);
}

.btn-trigger .btn-trigger-line:nth-of-type(2) {
   display: none;
}

.btn-trigger .btn-trigger-line:nth-of-type(3) {
    top: 21px;
    transform: rotate(-45deg);
}
/* ----- js付与後 ----- */

.mobile-menu.active {
    display: block;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 45px;
    width: 100%;
    max-height: calc(100vh - 45px);
    padding: 35px 10px 20px;
    z-index: 9;
    background-color: #fff;
    overflow-y: auto;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.cloth-btn {
    width: 100%;
    transition: all .3s;
}

.btn-trigger-box {
    width: 50px;
    height: 45px;
    margin: 0 0 0 auto;
    position: relative;
}

.mobile-global-main {
    border-bottom: 1px solid #fff;
}

.mobile-global-main .mobile-global-link {
    display: block;
    width: 100%;
    padding: 18px 0;
    border: 1px solid currentColor;
    margin-bottom: 15px;
    text-align: center;
    transition: all .3s;
}

.mobile-global-main .mobile-global-link:hover {
    box-sizing: border-box;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--secondary-color);
}

.mobile-global-main .mobile-global-btn {
    display: block;
    width: 100%;
    padding: 18px 0;
    color: #fff;
    background-color: var(--secondary-color);
    border-radius: 6px;
    text-align: center;
    transition: all .3s;
}

.mobile-global-main .mobile-global-btn:hover {
    opacity: .8;
}

/* end js付与後 */

/* ----- end header ----- */

/* ----- main-visual ----- */

.main-visual {
    width: 100%;
    margin-top: 45px;
}

.main-visual-inner {
    overflow: hidden;
    max-width: 1200px;
    min-height: 240px;
    margin: 0 auto;
}

.main-visual-inner img {
    height: 100%;
    object-fit: cover;
}

.main-visual-box {
    padding: 0 20px;
    margin-top: 30px;
}

.main-visual-box .main-visual-title {
    color: #333;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.main-visual-box .main-visual-title span {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 5px solid var(--secondary-color);
}

.main-visual-box .main-visual-text {
    font-size: 0.985rem;
    line-height: 1.5;
}

/* ----- end main-visual ----- */
/* ----- contents ----- */

.contents {
    padding: 20px 0 0;
}

.container {
    width: 100%;
    margin-bottom: 10px;
    padding-top: 20px;
    padding-bottom: 10px;
}

.container.bgc-light-gray {
    padding-bottom: 20px;
    margin-bottom: 0;
}

.container:last-child {
    margin-bottom: 0;
}

.container-inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-inner > *:last-child {
    margin-bottom: 0;
}

a.grid-box {
    display: block;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 2px 2px 4px var(--primary-color);
    background-color: #fff;
    transition: all 0.5s;
    margin-bottom: 20px;
}

a.grid-box:last-child {
    margin-bottom: 0 !important;
}

a.grid-box:hover {
    opacity: 0.5;
}

a.grid-box .grid-box-img {
    position: relative;
    padding-top: 50%;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.grid-box-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.grid-box-body {
    padding: 15px;
}

.grid-box-body > *:last-child {
    margin-bottom: 0 !important;
}

.grid-box-text {
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.grid-box-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden; 
    line-clamp: 2;
    -webkit-line-clamp: 2; 
}

.grid-card {
    padding: 38px 38px 28px;
    border: 1px solid var(--primary-color);
    margin-bottom: 20px;
}

a.grid-card {
    display: block;
    transition: all .3s;
}

a.grid-card:hover {
    background-color: #f9f6f6;
}

.grid-card-img {
    margin-bottom: 20px;
}

.grid-card-body:last-child {
    margin-bottom: 0 !important;
}

.grid-card-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.contents-text-block {
    margin-bottom: 40px;
}

.contents-text-block > *:last-child {
    margin-bottom: 0 !important;
}

.contents-text-block .contents-text {
    margin-bottom: 30px;
    line-height: 1.8;
}

.contents-img-block-small {
    max-width: 500px;
    margin: 0 auto 40px;
}

.contents-img-block-small img {
    border-radius: 6px;
    box-shadow: 2px 2px 4px var(--primary-color);
}

.contents-img-block {
    height: 290px;
    max-width: 100%;
    margin: 0 auto 40px;
}

.contents-img-block img {
    object-fit: cover; 
    height: 100%;
}

.contents-body {
    text-align: center;
    padding: 0 15px;
    margin-bottom: 40px;
}

.contents-body > *:last-child {
    margin-bottom: 0 !important;
}

.contents-body-title {
    font-size: 25px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contents-body-text {
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.contents-btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.contents-btn {
    display: block;
    width: 220px;
    padding: 1rem 20px;
    text-align: center;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 5px;
}

.contents-btn:hover {
    color: #fff;
    background-color:  var(--primary-color);
    transition: all .3s;
}

.contents-text-center {
    text-align: center;
}

.bgc-main {
    background-color:  var(--primary-color);
    color: #fff;
}

.contents-btn.bgc-main:hover {
    color:  var(--primary-color);
    border: 1px solid  var(--primary-color);
    background-color: #fff;
}

.bgc-light-gray {
    background-color: #eae9e9;
}

.contents-title-block {
    text-align: center;
    margin-bottom: 20px;
}

.contents-title {
    font-size: 1.87rem;
    margin-bottom: 40px;
    color:  var(--primary-color);
}

.contents-title span {
    display: inline-block;
}

.contents-title span::after {
    content: "";
    display: block;
    width: 55px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 8px auto 0;
}

.sub-title {
    color: #999;
}

/* ----- 固定ページ area ----- */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block > *:last-child {
    margin-bottom: 0 !important;
}

.content-block-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.content-block-body {
    padding: 0 1rem;
}

.content-block-body > *:last-child {
    margin-bottom: 0 !important;
}

.content-block-body-ttl {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 25px;
}

.content-block-body-list {
    padding: 0 2rem;
    margin-bottom: 50px;
}

.content-block-body-list ul li {
    font-size: 1.25rem;
    line-height: 1.5;
}

.content-block-body-text .text-lead {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-block-body-text .text {
    line-height: 1.8;
    font-size: 1.25rem;
}

.content-block-body-text .text {
    padding: 0 1rem;
    margin-bottom: 1rem;
}

/* ----- ennd 固定ページ area ----- */

/* ----- 解説・コラム area ----- */
.to-contact-form {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 4px double var(--secondary-color);
    margin-bottom: 60px;
}

.to-contact-form > *:last-child {
    margin-bottom: 0;
}

.to-contact-form .form-text {
    margin-bottom: 30px;
    line-height: 1.5;
}

.to-contact-form-text {
    order: 1;
}

.to-contact-form-img {
    order: 2;
}

.to-contact-form .contents-btn-block {
    order: 3;
}

.to-contact-form-img .frame img {
    border-radius: 6px;
    box-shadow: var(--box-shadow);
}

.category-lists {
    margin-bottom: 40px;
}

.category-lists ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.category-lists ul li {
    margin-right: 10px;
    margin-bottom: 5px;
}

.category-lists ul li:last-child {
    margin-right: 0;
}

.category-lists .category-lists-link {
    display: inline-block;
    padding: 4px 12px;
    color: var(--secondary-color);
    background-color: color-mix(in srgb, currentColor 20%, transparent);
    border-radius: 30px;
}

/* ----- end 解説・コラム area ----- */

/* ----- map area ----- */
.map-block-inner {
    max-width: 100%;
    height: 500px;
    margin: 0 auto;
}

.map-block-inner iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ----- end map area ----- */
/* ----- contact area ----- */
.contents.contact {
    padding-top: 40px;
    margin-top: 45px;
}

.contents.contact .action-box,
#contact .action-box {
    margin-bottom: 40px;
}

.recaptcha_policy {
    text-align: center;
}

/* ----- end contact area ----- */

/* ----- 関連記事エリア ----- */
.related-articles {
    margin-bottom: 40px;
}

.related-articles-ttl {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 20px;
}


/* ----- end 関連記事エリア ----- */

/* ----- single page ----- */
.contents.single .container-inner {
    max-width: 800px;
}
.contents.single .container {
    padding-bottom: 40px;
}

.contents.single .contents-title {
    font-weight: bold;
    color: #222;
}

.contents.single .contents-title-block {
    text-align: left;
}

.contents.single  .contents-block-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 35px;
    color: #333;
}

.contents.single .contents-title-block .time {
    display: inline-block;
    margin-bottom: 20px;
    color: #ccc;
}

/* ----- end single page ----- */

/* ----- 404 area ----- */
.search-box {
    padding-left: 16px;
}

.search-input {
    border: 1px solid #666;
    padding: 10px 15px;
    background-color: #f7f8f9;
}

.search-box .button-submit {
    color: #fff;
    background-color: #555;
    padding: 10px 20px;
    border: 1px solid;
    transform: all .3;
}

.search-box .button-submit:hover,
.search-box .button-submit:focus {
    opacity: .8;
}
/* ----- ennd 404 area ----- */

/* ----- search area ----- */
.searchResult-Wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.searchResultList {
    max-width: 300px;
    margin-bottom: 20px;
}

.searchResultList > *:last-child {
    margin-bottom: 0 !important;
}

.searchResultList-item {
    margin-bottom: 20px;
}
/* ----- end search page ----- */

/* ----- end contents ----- */

/* ----- footer ----- */

footer {
    width: 100%;
    position: sticky;
    top: 100vh;
}

.ft-container {
    width: 100%;
}

.ft-container-inner {
    background-color:  var(--secondary-color);
    padding: 18px;
}

.ft-container-inner .copyright {
    color: #fff;
    text-align: center;
    font-size: 1rem;
}

/* ----- end footer ----- */

/* ----- breadcrumbs lists ----- */

.breadcrumbs.container {
    padding: 16px 0;
    margin-bottom: 0;
    background-color:  var(--secondary-color);
    color: #fff;
    margin-top: 45px;
}

/* ----- end breadcrumbs lists ----- */

/* ----- page-lawyer ----- */

/* 260123修正 */
.main-visual-inner.page {
    margin-top: 45px;
}

.main-visual-inner.page img {
   object-fit: cover;
} 

.main-visual-inner.page .main-visual-box {
   position: absolute;
   top: 50%;
   left: 50%;
   right: unset;
   bottom: unset;
   transform: translate(-50%, -50%);
   background-color: rgba(255, 255, 255, 0.5);
   padding: 10px;
   margin-top: unset;
} 

.main-visual-inner.page .main-visual-box h2 {
    font-size: 3rem;
    font-weight: bold;
} 

.contents-intro-card {
    padding: 20px;
    margin: 0 auto;
}

.contents-intro-header {
    margin-bottom: 30px;
}

.contents-intro-img {
    margin-bottom: 25px;
}

.contents-intro-img img {
    border-radius: 6px;
    box-shadow: 2px 2px 4px var(--primary-color);
}

.contents-intro-info {
    display: flex;
    align-items: center;
}

.contents-intro-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contents-intro-title span.name {
    font-size: 22px;
    padding: 10px 0;
}

.contents-intro-title span.affiliation {
    font-size: 14px;
}

.contents-intro-title span.en-name{
    font-size: 12px;
}

.contents-intro-body > *:last-child {
    margin-bottom: 0 !important;
}

.contents-intro-text-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.contents-intro-text {
    font-size: 0.875rem;
    padding-left: 1em;
    margin-bottom: 15px;
    line-height: 24px;
}
/* ----- end page-lawyer ----- */

/* ----- page-business ----- */
.accordion-block {
    display: block;
    max-width: 800px;
    margin: 0 auto 60px;
}

.accordion-block:last-child {
    margin-bottom: 0;
}

.accordion-block-header {
    background-color:  var(--primary-color);
    padding: 20px 35px;
}

.accordion-title {
    color: #ffff;
    font-size: 22px;
}

.accordion-box {
    display: block;
    border: 1px solid  var(--primary-color);
}

.accordion-box-img img {
    object-fit: cover;
}

a.accordion-box:hover {
    background-color: #eae9e9;
}

.accordion-box-info {
    padding: 25px 25px;
}

.accordion-box-title {
    font-size: 20px;
    margin-bottom: 10px;
    color:  var(--primary-color);
}

.accordion-box-text {
    line-height: 1.5;
    font-size: 14px;
}

/* ----- end page-business ----- */

/* ----- pg-contact ----- */
.pg-contact {
    max-width: 800px;
    margin: 0 auto;
}

.pg-lead {
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 60px;
    font-size: 18px;
    line-height: 1.5;
    color:  var(--primary-color);
}

.label-area {
    font-size: 1.06rem;
    font-weight: bold;
}

.input-box {
    margin-bottom: 35px;
}

.input-area {
    font-size: 14px;
    margin: 20px 0 0;
}

.input-area input {
    background-color: #f4f4f4;
    width: 100%;
    line-height: 1.5;
    outline: none;
    padding: 15px 20px;
}

.input-area input::placeholder {
  font-size: 1.06rem;
}

.input-area textarea {
    background-color: #f4f4f4;
    width: 100%;
    height: 300px;
    outline: none;
    padding: 15px 20px;
}

.input-area input:focus, 
.input-area textarea:focus {
    box-shadow:  0 0 1.5px black;
} 

.action-box {
    width: 200px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background-color: var(--secondary-color);
    border-radius: 5px;
    transition: all .3s;
    color: #fff;
    cursor: pointer;
}

/* ----- end pg-contact ----- */

/* スマホ用のCSSはメディアクエリの外に記述する */

@media screen and (min-width: 481px) {
	/* 481px以上に適用されるCSS（タブレット用） */

}

@media screen and (min-width: 960px) {
	/* 960px以上に適用されるCSS（PC用） */
    /* ----- common ----- */

    /* ----- end common ----- */

    .hd-container-inner { 
        padding: 0 20px;
    }

    .main-visual-inner {
        position: relative;
        height: 600px;
        border-radius: 0 0 6px 6px;
        box-shadow: 2px 2px 4px var(--primary-color);
    }

    .main-visual-box {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background-color:rgba(255, 255, 255, 0.5);
        padding: 10px 10px 10px 30px;
        z-index: 100;
        margin-top: 0;
    }
    
    .main-visual-box .main-visual-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .main-visual-box .main-visual-text {
        font-size: 1.88rem;
        line-height: 2;
    }

    /* ----- header ----- */
    .title-link { 
        padding: 0;
    }

    /* ----- end header ----- */

    /* ----- contents ----- */
    
    .contents-intro-card {
        max-width: 80%;
    }

    .contents-intro-text-title {
        font-size: 1.3rem;
    }

    .contents-intro-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .grid-3 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-column-gap: 25px;
    }

    .grid-3.achive {
        grid-template-columns: repeat(3, 1fr);
        grid-row-gap: 20px;
    }

    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 25px;
        grid-row-gap: 20px;
    }

    .grid-3 .grid-box,
    .grid-2 .grid-box {
        margin-bottom: 0;
    }

    .contents-header-title {
        font-size: 30px;
    }

    .catgory-tag {
        min-width: 200px;
        padding: 15px 20px;
    }

    .contents-img-block {
        height: 440px;
    }

    .contents-body {
        margin-bottom: 80px;
    }

    .contents-body-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .contents-body-text {
        font-size: 18px;
        line-height: 2;
        margin-bottom: 80px;
    }

    .accordion-box {
        display: flex;
        padding: 15px;
    }

    .accordion-box-img {
        width: 300px;
        height: 170px;
        position: relative;
        overflow: hidden;
    }

    .accordion-box-img img {
        object-fit: unset;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .accordion-box-info {
        padding: 25px;
        width: 70%;
    }

    .input-box {
        margin-bottom: 40px;
    }

    /* ----- single page area ----- */
    
    .contents.single .container {
        padding-bottom: 60px;
    }

    .contents.single  .contents-block-title {
        margin-bottom: 35px;
    }

    /* ----- end single page area ----- */
    /* ----- 解説・コラム area ----- */
    .to-contact-form {
        flex-direction: row-reverse;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .to-contact-form-img {
        order: 1;
        width: 30%;
        margin-left: 13%;
    }

    .to-contact-form-text,
    .to-contact-form .contents-btn-block {
        width: 50%;
    }

    .to-contact-form-text {
        order: 2;
    }

    .to-contact-form .contents-btn-block {
        padding-top: 0;
        margin-top: -50px;
        order: 3;
    }

    /* ----- end 解説・コラム area ----- */
    
    .contents-intro-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 20px;
        margin-bottom: 30px;
    }

    .contents-intro-img {
        margin-bottom: 0;
    }

    .contents-intro-info {
        display: flex;
        align-items: center;
    }

    .contents-intro-title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .contents-intro-title span.name {
        font-size: 22px;
        padding: 10px 0;
    }

    .contents-intro-title span.affiliation {
        font-size: 14px;
    }

    .contents-intro-title span.en-name{
        font-size: 12px;
    }

    /* ----- end contents ----- */
    /* ----- footer ----- */
    .ft-container-inner {
        padding: 23px;
    }
    /* ----- end footer ----- */
}

@media screen and (min-width: 1305px) {
	/* 1305px以上に適用されるCSS（monitor用） */

    /* ----- common ----- */
    .mon {
        display: block;
    }

    .mon-none {
        display: none;
    }
    /* ----- end common ----- */

    /* ----- back-to-top ----- */
    .back-to-top {
        width: 60px;
        height: 60px;
    }
    /* ----- end back-to-top ----- */
    
    /* ----- breadcrumbs lists ----- */

    .breadcrumbs.container {
        padding: 20px 0;
        margin-top: 90px;
    }

    /* ----- end breadcrumbs lists ----- */

    /* ----- header ----- */
    .hd-container-inner {
        height: 90px;
        margin: 0 auto;
    }

    .hd-title, 
    .title-link img {
        height: 90px;
    }

    .hd-list {
        width: 70%;
        line-height: 90px;
        display: flex;
        justify-content: flex-end;
    }

    .hd-list-main {
        display: flex;
    }

    .hd-list-main li {
        margin-left: 46px;
    }

    .hd-list-main li a {
        cursor: pointer;
    }

    .hd-list-main li a.hd-list-link {
        padding-bottom: 12px;
    }

    .hd-list-main li.current-menu-item a[href*="#"].hd-list-link {
        border-bottom: unset;
    }

    .hd-list-main li.current-menu-item a[href*="#"].hd-list-link:hover,
    .hd-list-main li a.hd-list-link:hover {
        color:#999;
        transition: all .3s;
        border-bottom: 3px solid var(--secondary-color);
    }

    .hd-list-main li.current-menu-item a.hd-list-link {
        border-bottom: 3px solid var(--secondary-color);
    }
    
    .hd-list-main li.current-menu-item a[href*="#"].hd-list-link {
        border-bottom: unset;
    }



    .hd-list-main li .hd-list-bnt {
        padding: 20px 20px;
        color: #fff;
        background-color:  var(--secondary-color);
        transition: all .3s;
        border-radius: 5px;
    }

    .hd-list-main li .hd-list-bnt:hover {
        background-color:#999;
    }

    .hd-sub-list {
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;

        position: absolute;
        top: 100%;
        left: -26px;
        background: #fff;
        z-index: 1000;
    }

    /* 表示状態 */
    .hd-sub-list.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hd-sub-list li {
        margin-left: 0;
    }

    .hd-sub-list .hd-sub-list-link {
        display: block;
        width: 160px;
        background-color:  var(--primary-color);
        padding: 1rem 15px;
        color: #fff;
        line-height: normal;
    }

    .hd-sub-list .hd-sub-list-link:hover {
        background-color:#999;
        transition: all .3s;
    }
    .hd-list-main {
        display: flex;
    }

    .btn-trigger {
        display: none;
    }

    /* ----- end header ----- */

    /* ----- main-visual ----- */
    .main-visual {
        margin-top: 90px;
    }

    .main-visual-box .main-visual-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    /* ----- end main-visual ----- */

    /* ----- contents ----- */

    /* ----- contact area ----- */
    .contents.contact {
        margin-top: 90px;
    }

    /* ----- end contact area ----- */

    .contents {
        padding: 0;
    }

    .container {
        margin-bottom: 20px;
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .container.bgc-light-gray {
        padding-bottom: 40px;
    }

    .container:last-child {
        margin-bottom: 0;
    }

    .container-inner {
        max-width: var(--site-with);
        padding-left: 20px;
        padding-right: 20px;
    }

    .contents-text-block .contents-text {
        margin-bottom: 40px;
        font-size: 1.25rem;
    }

    .contents-btn-block {
        padding-top: 40px;
    }

    .contents-title-block {
        margin-bottom: 40px;
    }

    .contents-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }

    .contents-title span::after {
        width: 95px;
        height: 5px;
    }

    /* 260123 修正 */
    .main-visual-inner.page {
        margin-top: 90px;
    }

    .contents.single  .contents-block-title {
        font-size: 2rem;
        margin-bottom: 45px;
    }
    
    /* ----- end contents ----- */

} /* end min-width: 1280px */


