/*----------------------------
  注意事項
  ・common_style.css のみ
  　PC表示とスマホ表示の
  　書き方が反転しています。
----------------------------*/

/* 共通処理＆横幅が1111pxより小さい場合（スマホ用表示） */
html {
scroll-behavior: smooth;
}

body {
    text-align: center;
    font-family: "Montserrat", "ヒラギノ角ゴ Pro W3", "Noto Sans JP", "Zen Kaku Gothic New", 'Noto Sans', sans-serif;
}

header {
    font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
}

footer {
    font-family: "Montserrat", 'Noto Sans';
    background-color: #eeeeee;
    background-attachment: fixed;
    background-position: bottom left;
	background-repeat: no-repeat;
	background-size: cover;
    padding: 20px 0px;
    margin-top: 70px;
}

/* 2026.01.05 R.Inokihara デザイン・仕様の修正 S */
.phone {
    display: block;
}

.PC {
    display: none;
}
/* 2026.01.05 R.Inokihara デザイン・仕様の修正 E */

/* "株式会社"のスタイル */
.company {
    font-family: "Zen Maru Gothic";
    font-weight: 700;
}

/* "タクマテック"のスタイル */
.ttec {
    font-family: "Chiron GoRound TC";
    font-weight: 600;
}

/* リンク先の調整 */
.link {
    scroll-margin-top: 120px; /* リンク等で呼ばれた際の上部の余白 */
}

/* 英字や数字用の文字間隔調整 */
.wide-spacing {
    letter-spacing: 0.08em;
}

/* ボタンのスタイル */
.button a {
    width: 70%;
    height: 25px;
    padding: 12px;
    font-size: 15px;
    font-weight: bold;
    position: relative;
    display: flex;
    justify-content: space-around;
    margin: 18px auto;
    background-color: #ffffff;
    transition: 0.3s ease-in-out;
    color: #454545;
    border: solid 3px #454545;
    border-radius:30px;
    text-decoration: none; /* リンクの下線を消す */
    box-shadow: 4px 6px 8px #cccccc;
}

.button a:hover {
    background: #656565;
    color: #ffffff;
    font-weight: normal;
    border: solid 3px #656565;
}

.button a:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 2rem;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 8px;
    height: 8px;
    border-top: solid 3px currentColor;
    border-right: solid 3px currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.button a:hover:after {
    right: 1.4rem;
}

/*----------------------------
  scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

.scroll_up.on {
    opacity: 1;
    transform: translateY(0);
}

/*----------------------------
  page_top ｜Topへ戻るボタン
----------------------------*/
#page_top {
    /* 初期表示状態 */
    opacity: 0;
    pointer-events: none; /* 非表示時クリック無効 */
    transform: translateY(10px);
    transition: opacity 0.2s, transform 0.2s;

    /* デザイン */
    width: 100px;
    height: 100px;
    margin: 20px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 9999;
    background-color: rgb(255 255 255 / 70%);
    border: solid 3px rgb(79 112 156 / 50%);
    backdrop-filter: blur(5px);
    border-radius: 50%;
}

/* 表示状態 */
#page_top.is-visible {
    opacity: 1;
    pointer-events: auto; /* 表示時クリック有効 */
    transform: translateY(0);
}

#page_top::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f106';
    font-size: 40px;
    color: rgb(79 112 156 / 70%);
    position: absolute;
    top: 45%;
    left: 50%;
    translate: -50%;
}

#page_top::after {
    content: 'Page Top';
    font-weight: 600;
    font-size: 15px;
    color: rgb(79 112 156 / 70%);
    position: absolute;
    margin: auto;
    text-align: center;
    width: 100%;
    top: 30%;
    left: 50%;
    translate: -50%;
}

/*----------------------------
  header ｜ヘッダーの設定
----------------------------*/
header h1 {
    height: 40px;
    margin: 5px;
    text-align: left;
    font-size: 20pt;
    color: #003871;
}

header a {
    text-decoration: none; /* 下線を消す */
}

.header_flex {
    height: 60px;
    padding: 18px;
    display: flex;
	justify-content: center;
    margin-left: -15px;
}

.header_company-name {
    width: 290px;
    height: 50px;
    padding: 5px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.header_company-name h1 {
    font-size: 22px;
}

.header_company-icon {
    width: 50px;
    height: 50px;
}

.header_icon {
    width: 45px;
    height: 45px;
    padding: 5px;
}

/* 2026.01.05 R.Inokihara 個人情報についての記載を追加に伴う追加修正 S */
.p-nav__list .phone {
    /* margin-top : 40px;    2026.01.06 R.Inokihara デザイン・仕様の修正 DEL */
    margin-top : 50px;    /* 2026.01.06 R.Inokihara デザイン・仕様の修正 ADD */
    /* line-height: 10px;    2026.01.06 R.Inokihara デザイン・仕様の修正 DEL */
    line-height: 26px;    /* 2026.01.06 R.Inokihara デザイン・仕様の修正 ADD */
    /* font-size: 12px;    2026.01.06 R.Inokihara デザイン・仕様の修正 DEL */
    font-size: 20px;    /* 2026.01.06 R.Inokihara デザイン・仕様の修正 ADD */
    font-weight: normal;
}
/* 2026.01.05 R.Inokihara 個人情報についての記載を追加に伴う追加修正 E */

/*----------------------------
  topics ｜トピックスの設定
----------------------------*/

.topics-table {
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    font-family: "Roboto", "ヒラギノ角ゴ Pro W3", "Noto Sans JP", "Zen Kaku Gothic New", 'Noto Sans', sans-serif;
    font-style: normal;
    box-sizing: border-box;
}

.topics-table th {
    text-align: left; 
    height: 35px;
    width: 80px;
    padding: 12.5px 10px;
    white-space: nowrap;
    box-sizing: border-box;
}

.topics-table td {
    text-align: left; 
    height: 30px;
    padding: 12.5px 10px;
    box-sizing: border-box;
    border-bottom: dashed 1px #cccccc;
}

/* 最後の行の右側セルだけボーダーなし */
.topics-table tr:last-child td {
    border-bottom: none;
}

.topics-table time {
    background-color: #ffffff;
    color: #4F709C;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 30px;
}

.topics-table a {
    color: #4F709C;
}

/*----------------------------
  footer ｜フッターの設定
----------------------------*/
.footer_outline {
    width: 100%;
    margin: 0 auto;
    display: flex;
	justify-content: center;
    flex-wrap: wrap;
}

.footer_inline_left {
    width: 100%;
    padding: 15px;
    margin: 0;
    display: flex;
	justify-content: left;
    /* background-color: #f6f6f6; */
    /* border-radius: 10px; */
    border-right: none;
}

.footer_inline_right {
    display: none;
}

.footer_company-table {
    height: auto;
    border: none;
    margin:   10px;
    font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.footer_company-table th {
    min-width: 65px;
    padding-right: 12px;
    font-size: 15px;
    text-align: left;
    /* border-right: dashed 1px #cccccc; */
}

.footer_company-table td {
    /* width: 400px; */
    font-size: 15px;
    text-align: left;
    font-weight: bold;
}

.footer_company-table_colspan {
    height: 60px;
    text-align: left;
    font-weight: bold;
}

.footer_company-table_colspan {
    height: 50px;
    text-align: left;
    font-weight: bold;
}

.footer_flex {
    /* width: 350px; */
    height: 30px;
    /* padding: 10px; */
    display: flex;
	justify-content: left;
}

.footer_icon {
    width: 30px;
    height: 30px;
    padding: 5px;
    padding-left: 0px;
}

.footer_company-name {
    height: 30px;
    padding: 5px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.footer_company-name h1 {
    margin: 0;
    line-height: 30px;
    font-size: 20px;
    white-space: nowrap;
    /* color: #003871; */
}

.footer_tel {
    /* font-size: 20px;    2026.01.05 R.Inokihara デザイン・仕様の修正 DEL */
    font-size: 26px;    /* 2026.01.05 R.Inokihara デザイン・仕様の修正 ADD */
    line-height: 40px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    color: #003871;
}

.footer_table {
    width: 100%;
    max-width: 880px;
    margin-left: 5px;
    /* display: none; */
    font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
}

.footer_table td {
    width: 25%;
}

.footer_table-text {
	font-size: 14px;
    line-height: 28px;
	text-align: left;
    /* white-space: nowrap; */
    color:#454545;
    vertical-align: top; /* 上揃え */
    white-space: nowrap;
	padding: 24px;
}

.footer_table-text a {
    text-decoration: none;
}

.footer_table-text b {
	font-size: 16px;
    line-height: 40px;
}

.footer_table-link {
    color:#454545;
}

.footer_copy {
    height: 22px;
    padding: 10px;
    padding-left: 30px;
    font-size: 13px;
    text-align: left;
    overflow-wrap: nowrap;
}

/*----------------------------
  header ｜ヘッダーの処理
----------------------------*/
.l-header {
    display: block;
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: rgb(255 255 255 / 90%);
    backdrop-filter: blur(5px);
}

.c-hamburger {
    position: relative;
    width: inherit;
    height: inherit;
    margin: 0;
    border: transparent;
    background-color: transparent;
    cursor: pointer;
}

.c-hamburger span {
    display: block;
    position: relative;
    left: 50%;
    width: 25px;
    height: 1px;
    transform: translateX(-50%);
    background: #454545;
    transition: all 0.4s;
}

.c-hamburger span:nth-of-type(1) {
    top: -4px;
}

.c-hamburger span:nth-of-type(2) {
    top: 1px;
    transform: translateX(-0.45deg);
}

.c-hamburger span:nth-of-type(3) {
    top: 6px;
    transform: translateX(-0.45deg);
}

.c-hamburger.is-active span:nth-of-type(1) {
    top: 0;
    transform: translateX(-50%) rotate(225deg);
}

.c-hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
}

.c-hamburger.is-active span:nth-of-type(3) {
    top: -2px;
    transform: translateX(-50%) rotate(-225deg);
}

.p-header__nav {
    display: flex;
    z-index: 10;
    position: absolute;
    top: 0;
    right: -100%;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: transparent;
    opacity: 0;
    transition: top 0.6s, right 0.6s, opacity 0.6s;
}

.p-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    padding: 0 20px;

}

.p-header__hamburger {
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    width: 95px;
    height: 100%;
    }

.p-header__nav.is-active {
    position: fixed;
    top: 0;
    right: 0;
    opacity: 1;
    background-color: rgb(255 255 255 / 85%);
}

.p-nav__list {
    display: block;
    padding-right: 20px;
    padding-left: 20px;
    list-style-type: none; /* 点の削除処理 */
}

.p-nav__item {
    position: relative;
    text-align: center;
    color: #353535;
    font-size: 22px;     /* 2026.01.06 R.Inokihara デザイン・仕様の修正 ADD */
}

.p-nav__link {
    color: #353535;
    display: block;
    padding: 20px;
}

/*----------------------------
  PC用表示設定
----------------------------*/
/* 横幅が1111pxより大きい場合（PC用表示） */
@media screen and (min-width: 1111px) {

    /* 2026.01.05 R.Inokihara デザイン・仕様の修正 S */
    .phone {
        display: none;
    }

    .PC {
        display: block;
    }
    /* 2026.01.05 R.Inokihara デザイン・仕様の修正 E */

/*----------------------------
  header ｜ヘッダーの設定
----------------------------*/
    .header_company-name {
        width: 290px;
        height: 50px;
        padding: 3px 1px;
    }

    .header_company-name h1 {
        font-size: 28px;
    }

    .header_company-icon {
        width: 60px;
        height: 60px;
    }

    .header_icon {
        width: 55px;
        height: 55px;
        padding: 2.5px;
    }

/*----------------------------
  topics ｜トピックスの設定
----------------------------*/
    .topics-table th {
        width: 125px;
    }

    .topics-table time {
        font-size: 16px;
    }

/*----------------------------
  footer ｜フッターの設定
----------------------------*/
    footer {
        padding: 40px 0px;
        margin-top: 120px;
    }

    .footer_inline_left {
        flex: 1; /* 左側：33%相当 */
        max-width: 450px;
        padding: 15px;
        margin: 0;
        display: flex;
        justify-content: left;
        /* background-color: #f6f6f6; */
        /* border-radius: 10px; */
        border-right: dashed 1px #cccccc;
    }

    .footer_inline_right {
        display: block;
        flex: 2; /* 右側：66%相当 */
        max-width: 935px;
        padding: 15px;
        margin: 0;
        display: flex;
        justify-content: right;
        /* background-color: #f6f6f6; */
        /* border-radius: 10px; */
    }

    .footer_company-table {
        height: 280px;
        border: none;
        margin: 10px;
        font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
        font-weight: 500;
        font-style: normal;
    }

    .footer_company-table th {
        min-width: 65px;
        padding-right: 12px;
        font-size: 16px;
        text-align: left;
        /* border-right: dashed 1px #cccccc; */
    }

    .footer_company-table td {
        /* width: 400px; */
        font-size: 16px;
        text-align: left;
        font-weight: bold;
    }

    .footer_company-table_colspan {
        height: 60px;
        text-align: left;
        font-weight: bold;
    }

    .footer_flex {
        /* width: 350px; */
        height: 55px;
        margin: 10px 0; 
        /* padding: 10px; */
        display: flex;
        justify-content: left;
    }

    .footer_icon {
        width: 40px;
        height: 40px;
        padding: 5px;
        padding-left: 0px;
    }

    .footer_company-name {
        height: 40px;
        padding: 5px;
        font-family: "Zen Maru Gothic", sans-serif;
        font-weight: 900;
        font-style: normal;
    }

    .footer_company-name h1 {
        margin: 0;
        line-height: 40px;
        font-size: 26px;
        white-space: nowrap;
        /* color: #003871; */
    }

    .footer_tel {
        font-size: 30px;
        line-height: 40px;
        letter-spacing: 0.05em;
        white-space: nowrap;
        color: #003871;
    }

    .footer_company-table {
        font-size: 20px;
    }

    .footer_iframe_map {
        width: 500px;
        height: 340px;
        border: none;
    }

    .footer_map {
        width: 500px;
        height: 340px;
        padding: 10px;
    }

    .footer_copy {
        padding-right: 150px;
        font-size: 14px;
        text-align: right;
    }

/*----------------------------
  header ｜ヘッダーの処理
----------------------------*/
    .p-header__hamburger {
        display: none;
    }

    .p-nav__inner {
        margin-right: auto;
        margin-left: auto;
        max-width: initial;
        width: 100%;
    }

    .p-header__nav {
        position: static;
        opacity: 1;
        height: inherit;
        width: auto;
    }

    /* 2026.01.06 R.Inokihara デザイン・仕様の修正 S */
    .p-nav__item {
        font-size: 16px;
    }
    /* 2026.01.06 R.Inokihara デザイン・仕様の修正 E */

    .p-nav__list {
        padding-right: 0;
        padding-left: 0;
        display: flex;
    }
}

/* 動きを控えたいユーザーに配慮（OS設定に従う） */
@media (prefers-reduced-motion: reduce) {
    #page_top {
        transition: none;
        transform: none;
    }
}
