/*
Theme Name: SUDO お問い合わせ受付サービス
*/

/* プライマリーカラーを青系に設定 */
:root {
    --primary-color: #0099ff;
    --secondary-color: #E3F3FD;		
    --button-color: #4a90e2;
	--border-color: #e0ddd5;
}

html {
	font-size: 16px;
	scroll-behavior: smooth; /* スムーススクロール */
	scroll-padding-top: 80px; /* ヘッダー固定でのアンカーリンク調整 */
}
html,
body {
	background: #fff;
}
html,
body,
.entry-body,
p {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1em;
	letter-spacing: 0.07em;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/*overflow-x: hidden;*/
}
b, strong {
    font-weight: bold;
}
h1, h2, h3, h4 {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 800;
	font-weight: bold;
	letter-spacing: 0;
}
img {
	max-width: 100%;
	height: auto;
}
a {
	text-decoration: none;
}

.btn__text {
	font-size: 16px;
	/*line-height: 30px;*/
}
/* ベース */
.site-header {
	width: 100vw;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    color: #000;
	/*box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);*/
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
	max-width: 1100px;
    margin: 0 auto;
    padding: 12px 16px;
	color: #000;
}
.site-logo a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
}

h1.site-logo,
p.site-logo {
    margin: 0;
	padding: 0;
    line-height: 1;
    flex: 0 0 auto;
}
.site-logo a {
    display: inline-block;
    line-height: 1;
}
.site-logo img {
    display: block;
    width: 130px;      /* デザインに合わせて固定 */
    height: auto;
}

/* ハンバーガー */
/* ボタン本体 */
.hamburger {
    position: relative;
    width: 80px;
    height: 80px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

/* 3本線を絶対中央に配置 */
.hamburger__bar {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 48px;
    height: 2px;
    background: #fff;
    transform: translate(-50%, -50%); /* 中央基準 */
    transition: transform .25s ease, opacity .2s ease;
    transform-origin: center center;   /* 念押し */
}

/* 初期並び（上・中・下）：中央から上下にだけずらす */
.hamburger__bar:nth-child(1) {
    transform: translate(-50%, calc(-50% - 18px));
}
.hamburger__bar:nth-child(2) {
    opacity: 1;
}
.hamburger__bar:nth-child(3) {
    transform: translate(-50%, calc(-50% + 18px));
}

/* 開いたとき：中央に集合してからクロスに回転 */
.hamburger.is-active .hamburger__bar:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.is-active .hamburger__bar:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active .hamburger__bar:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーション配慮（任意） */
@media (prefers-reduced-motion: reduce) {
    .hamburger__bar {
		transition: none;
	}
}

/* ナビ（モバイル：オフキャンバス） */
.global-nav {
    position: fixed;
    inset: 0 0 0 auto; /* 右側からスライド */
    width: min(92vw, 500px);
    background: #101638;
    translate: 100% 0;
    transition: translate .28s ease;
    padding: 24px 20px 40px;
    overflow-y: auto;
    z-index: 1000
}
.global-nav.is-open {
    translate: 0 0;
	margin-top: 100px;
}
.global-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.global-nav__list > li > a {
    display: block;
    padding: 14px 8px;
    color: #000;
    font-weight: bold;	
    text-decoration: none;
}
.global-nav__list > li > a:hover,
.global-nav__list > li > a:focus {
    /*background: #1926A1;*/
    outline: none;
}

/* 親liを基準にする */
.global-nav__list > li {
    position: relative;
	/*font-family: "M PLUS Rounded 1c", sans-serif;*/
	font-weight: 500;	
}

/* 子メニュー 初期非表示 */
.global-nav__list > li > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

/* 親hoverで表示 */
.global-nav__list > li:hover > .sub-menu,
.global-nav__list > li:focus-within > .sub-menu {
    display: flex; /* 横並び */
    gap: 24px;
    background: #F2F7F6;
    padding: 16px 30px;
    margin: 0;
    list-style: none;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
}

/* 子メニューリンク */
.global-nav__list > li > .sub-menu a {
    padding: 4px 0;
    font-size: 16px;
    font-weight: bold;	
	color: #000;
}

/* hover */
.global-nav__list > li > .sub-menu a:hover {
    text-decoration: underline;
}

/* オーバーレイ */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
	margin-top: 80px;
    
}
.nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.site-header__inner {
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.site-logo {
    flex: 0 0 auto;
}

.btn__wrapper {
    display: flex;
    margin-left: auto;
}

.hamburger {
    margin-left: 12px;
}

.global-nav__list,
.global-nav__list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.global-nav__list a {
    text-decoration: none;
}

main.site-main {
	max-width: 1100px;
	margin: auto;
}

.other-inquiry {
    padding: 60px 20px 80px;
	background: #f5f6f7;
}

.other-inquiry__inner {
	max-width: 1100px;
	margin: auto;
}

.other-inquiry__title {
    margin: 0 0 32px;
    font-size: 32px;
    line-height: 1.4;
}

.other-inquiry__section {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    padding: 32px 24px;
}

.other-inquiry__heading {
    margin: 0 0 20px;
    font-size: 24px;
    line-height: 1.5;
}

.other-inquiry__lead {
    margin: 0 0 16px;
}

.other-inquiry__notes {
    margin-bottom: 24px;
    padding: 16px;
    background: #f7f7f7;
    border-radius: 12px;
}

.other-inquiry__notes p {
    margin: 0 0 8px;
}

.other-inquiry__notes p:last-child {
    margin-bottom: 0;
}

.other-inquiry__field {
    margin-bottom: 24px;
}

.other-inquiry__field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.other-inquiry__field input[type="text"],
.other-inquiry__field input[type="email"],
.other-inquiry__field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    box-sizing: border-box;
}

.other-inquiry__field textarea {
    resize: vertical;
}

.other-inquiry__error {
    margin: 8px 0 0;
    color: #b42318;
    font-size: 14px;
    line-height: 1.6;
}

.other-inquiry__notice {
    margin: 0 0 24px;
    padding: 14px 16px;
    border-radius: 10px;
}

.other-inquiry__notice--error {
    background: #fff1f0;
    color: #b42318;
}

.other-inquiry__check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.other-inquiry__privacyBox {
    margin-top: 16px;
    max-height: 280px;
    overflow: auto;
    padding: 16px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    background: #F9F9F9;
}

.other-inquiry__buttons {
    display: flex;
	justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px auto;
}

.other-inquiry__button {
    min-width: 180px;
    padding: 14px 22px;
    border: none;
    border-radius: 999px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
}

.other-inquiry__button--sub {
    background: #666666;
}

.other-inquiry__confirm {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.other-inquiry__confirmRow {
    margin: 0;
    padding: 0 0 16px;
    border-bottom: 1px solid #e5e5e5;
}

.other-inquiry__confirmRow dt {
    margin: 0 0 8px;
    font-weight: 700;
}

.other-inquiry__confirmRow dd {
    margin: 0;
}

.other-inquiry__receipt {
    font-weight: 700;
}

.required {
    color: #b42318;
}

@media screen and (max-width: 767px) {
    .other-inquiry {
        padding: 40px 16px 60px;
    }

    .other-inquiry__title {
        font-size: 28px;
    }

    .other-inquiry__section {
        padding: 24px 16px;
    }

    .other-inquiry__heading {
        font-size: 22px;
    }

    .other-inquiry__button {
        width: 100%;
    }
}

.other-inquiry__steps {
    margin: 0 0 32px;
}

.other-inquiry__stepsList {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    border: 2px solid #d9d9d9;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

.other-inquiry__step {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 68px;
    padding: 12px 20px 12px 32px;
    background: #ffffff;
    color: #b5b5b5;
    font-weight: 700;
    box-sizing: border-box;
}

.other-inquiry__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: -2px;
    right: -34px;
    width: 68px;
    height: calc(100% + 4px);
    background: #ffffff;
    border-top: 2px solid #d9d9d9;
    border-right: 2px solid #d9d9d9;
    transform: skewX(-28deg);
    z-index: 2;
}

.other-inquiry__stepNum,
.other-inquiry__stepText {
    position: relative;
    z-index: 3;
}

.other-inquiry__stepNum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #d9d9d9;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
}

.other-inquiry__stepText {
    font-size: 18px;
    line-height: 1.4;
}

.other-inquiry__step.is-current {
    color: #333333;
}

.other-inquiry__step.is-current .other-inquiry__stepNum {
    background: #e60012;
}

.other-inquiry__step.is-done {
    color: #666666;
}

.other-inquiry__step.is-done .other-inquiry__stepNum {
    background: #999999;
}

@media screen and (max-width: 767px) {
    .other-inquiry__steps {
        margin-bottom: 24px;
    }

    .other-inquiry__stepsList {
        display: block;
        border: none;
        background: transparent;
    }

    .other-inquiry__step {
        min-height: auto;
        justify-content: flex-start;
        padding: 12px 14px;
        border: 1px solid #d9d9d9;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .other-inquiry__step:last-child {
        margin-bottom: 0;
    }

    .other-inquiry__step:not(:last-child)::after {
        display: none;
    }

    .other-inquiry__stepText {
        font-size: 16px;
    }

    .other-inquiry__stepNum {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

.other-inquiry__field select {
    width: auto;
    min-height: 52px;
    padding: 12px 44px 12px 14px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    box-sizing: border-box;
    background-color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #666666 50%), linear-gradient(135deg, #666666 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.other-inquiry__field select:focus {
    outline: none;
    border-color: #005bac;
    box-shadow: 0 0 0 3px rgba(0, 91, 172, 0.12);
}

.other-inquiry__field input[type="file"] {
    font-size: 16px;
    line-height: 1.6;
}

.other-inquiry__field input[type="file"]::file-selector-button {
    font-size: 16px;
    line-height: 1.4;
    padding: 14px 20px;
    margin-right: 16px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
}

.other-inquiry__field input[type="file"]::-webkit-file-upload-button {
    font-size: 16px;
    line-height: 1.4;
    padding: 14px 20px;
    margin-right: 16px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
}

/* POLICY  */
.privacy h2.ttl {
    font-size: 24px;
    margin-top: 0.5em;
    margin-bottom: 1em;
	/*text-align: center;*/
}
.privacy h3.subttl {
    font-size: 18px;
    margin-top: 1em;
    margin-bottom: 0.5em;
}


/* サポートトップ  */
.support-center {
    background: #f5f6f7;
    padding: 24px 0 40px;
}

.support-center__inner {
    width: min(100% - 32px, 1200px);
    margin: 0 auto;
}

.support-center__logo {
    margin-bottom: 20px;
}

.support-center__logo img {
    width: 140px;
    height: auto;
    display: block;
}

.support-hero {
    background: #ffffff;
    border: 1px solid #d8dde6;
    border-radius: 12px;
    padding: 40px 24px 28px;
    text-align: center;
    margin-bottom: 20px;
}

.support-hero__title {
    margin: 0;
    font-size: 50px;
    line-height: 1.3;
    font-weight: 700;
    color: #222222;
}

.support-hero__lead {
    margin: 16px 0 0;
    font-size: 20px;
    line-height: 1.8;
    color: #333333;
}

.support-hero__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: min(100%, 860px);
    margin: 28px auto 0;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 110px;
    padding: 20px 24px;
    border: 2px solid #d7dfe9;
    border-radius: 14px;
    background: #ffffff;
    text-decoration: none;
}

.support-link--faq {
    border-color: #6e9ef5;
}

.support-link--pdf {
    border-color: #74b69a;
}

.support-link__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    font-size: 36px;
    flex-shrink: 0;
}

.support-link--faq .support-link__icon {
    background: #2f66da;
    color: #ffffff;
}

.support-link--pdf .support-link__icon {
    background: #3f8f6b;
    color: #ffffff;
}

.support-link__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.support-link__title {
    font-size: 30px;
    line-height: 1.4;
    font-weight: 700;
}

.support-link--faq .support-link__title {
    color: #2f66da;
}

.support-link--pdf .support-link__title {
    color: #3f8f6b;
}

.support-link__text {
    margin-top: 4px;
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
}

.support-box {
    border: 1px solid #d6dde7;
    border-radius: 12px;
    background: #ffffff;
    padding: 24px;
    margin-top: 18px;
}

.support-box--faq {
    background: #f8fbff;
}

.support-box--pdf {
    background: #f8fcf9;
}

.support-box__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.support-box__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.support-box__label--blue {
    background: #2f66da;
}

.support-box__label--green {
    background: #3f8f6b;
}

.support-box__title {
    margin: 0;
    font-size: 38px;
    line-height: 1.4;
    font-weight: 700;
    color: #233243;
}

.support-box__title--green {
    color: #3f8f6b;
}

.faq-search {
    margin-bottom: 20px;
}

.faq-search input {
    width: 100%;
    min-height: 58px;
    border: 1px solid #cfd7e3;
    border-radius: 999px;
    padding: 0 20px;
    font-size: 18px;
    box-sizing: border-box;
    background: #ffffff;
}

.faq-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 18px;
}

.faq-categories__title {
    margin: 6px 0;
    font-size: 20px;
    font-weight: 700;
    color: #233243;
}

.faq-category {
    width: 100%;
    min-height: 62px;
    border: none;
    border-radius: 8px;
    padding: 8px 18px 6px;
    margin-top: 10px;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
	transition : all 0.5s ease 0s;
}

.faq-category--blue {
	border: 2px solid #2f66da;
    background: #2f66da;
}
.faq-category--blue:hover {
    background: #fff;
	color: #2f66da;
}

.faq-category--red {
	border: 2px solid #e53d28;
    background: #e53d28;
}
.faq-category--red:hover {
    background: #fff;	
    color: #e53d28;
}

.faq-category--orange {
	border: 2px solid #f07b2a;
    background: #f07b2a;
}
.faq-category--orange:hover {
	background: #fff;	
    color: #f07b2a;
}

.faq-category--green {
	border: 2px solid #469a2f;
    background: #469a2f;
}
.faq-category--green:hover {
	background: #fff;
    color: #469a2f;
}

.faq-category--sky {
	border: 2px solid #5791e8;
    background: #5791e8;
}
.faq-category--sky:hover {
	background: #fff;
    color: #5791e8;
}

.faq-list-wrap {
    border-left: 1px solid #dde5ef;
    padding-left: 18px;
}

.faq-list-wrap__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

@media screen and (max-width: 500px) {
	.faq-list-wrap__head {
		flex-wrap: wrap;
	}	
}

.faq-list-wrap__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #233243;
}

.faq-list-wrap__current {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 4px 12px;
    border: 1px solid #7ca3e8;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: #2f66da;
    background: #ffffff;
}

.faq-item {
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #d9e1ec;
    margin-top: 10px;
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 16px 52px 16px 18px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    color: #233243;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 28px;
    line-height: 1;
    color: #233243;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item__answer {
    padding: 0 18px 18px;
    font-size: 15px;
    line-height: 1.9;
    color: #333333;
}

.faq-contact-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
	justify-content: center;
    gap: 20px;
    margin-top: 18px;
    /*border: 1px solid #bfd1f3;*/
    border-radius: 12px;
    /*background: #f3f8ff;*/
    padding: 18px 0;
	/*margin-bottom: 30px;*/
}

.faq-contact-banner__left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-contact-banner__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #2f66da;
    color: #ffffff;
    font-size: 28px;
    flex-shrink: 0;
}
.support-contact .faq-contact-banner__icon {
    width: 40px;
    height: auto;
	margin-right: 10px;
}

.faq-contact-banner__title {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
	text-align: center;
    /*color: #2f66da;*/
}

.faq-contact-banner__text {
    display: flex;
	justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #333333;
}

.faq-contact-banner__text img {
	width: 30px;
	height: auto;
}

.faq-contact-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 8px;
    background: #2f66da;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
}

.pdf-filter {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
    margin-top: 12px;
    margin-bottom: 18px;
    align-items: start;
}

.pdf-filter__group {
    display: block;
}

.pdf-filter__label {
    display: flex;
    align-items: center;
    min-height: 24px;
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #233243;
    box-sizing: border-box;
}

.pdf-filter__buttons {
    display: flex;
    gap: 10px;
    /*flex-wrap: wrap;*/
	min-height: 48px;
    align-items: center;
}

.pdf-filter__button {
    display: flex;
    align-items: center;	
    min-height: 48px;
    padding: 0 10px;
    border: 1px solid #bfd3c6;
    border-radius: 8px;
    background: #ffffff;
    color: #2c6b51;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.pdf-filter__toggleIcon--living {
    display: inline-block;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    background: url("images/organism_icon.png") no-repeat center / contain;	
	padding-right: 10px;
}

.pdf-filter__toggleIcon--goods {
    display: inline-block;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    background: url("images/supplies_icon.png") no-repeat center / contain;	
	padding-right: 10px;
}

.pdf-filter__button.is-active {
    background: #eff8f2;
}

.pdf-filter select {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid #cfd7e3;
    border-radius: 8px;
    background: #ffffff;
    font-size: 17px;
    box-sizing: border-box;
}

.pdf-filter select {
    width: 100%;
    height: 46px;
    padding: 0 44px 0 16px;
    border: 1px solid #cfd7e3;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 17px;
    line-height: 46px;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #233243 50%),
        linear-gradient(135deg, #233243 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.pdf-list {
    border: 1px solid #d9e3dc;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
}

.pdf-list__row {
    display: grid;
    grid-template-columns: 1fr 120px 40px;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-top: 1px solid #e2e8e4;
}

.pdf-list__row:first-child {
    border-top: none;
}

.pdf-list__name {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    line-height: 1.5;
    font-weight: 700;
    color: #2f66da;
    text-decoration: none;
}

.pdf-list__nameIcon {
    display: inline-block;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    background: url("images/pdf_icon.svg") no-repeat center / contain;
}

.pdf-list__nameText {
    display: inline-block;
}

.pdf-list__date {
    font-size: 16px;
    color: #666666;
    text-align: right;
}

.pdf-list__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #233243;
    text-decoration: none;
    font-size: 20px;
}

.pdf-list__note {
    margin: 12px 0 0;
    font-size: 15px;
    color: #666666;
}

.support-contact {
    margin-top: 18px;
    border: 1px solid #eadfd4;
    border-radius: 12px;
    background: #fffdf9;
    padding: 24px;
}

.support-contact__title {
    margin: 20px 0 0;
    font-size: 36px;
    line-height: 1.4;
    font-weight: 700;
    color: #233243;
	text-align: center;
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;	
}

.support-contact__title img {
	width: 40px;
	height: 40px;
}

.support-contact__lead {
    margin: 6px 0 0;
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
}

.support-contact__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 230px;
    border: 1px solid #d7dde8;
    border-radius: 10px;
    background: #ffffff;
    padding: 24px 20px;
    text-align: center;
    text-decoration: none;
}

.contact-card__icon {
    font-size: 46px;
    line-height: 1;
}

.contact-card__title {
    margin-top: 16px;
    font-size: 26px;
    line-height: 1.5;
    font-weight: 700;
}

.contact-card__text {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
}

.contact-card--blue .contact-card__title,
.contact-card--blue .contact-card__icon {
    color: #2f66da;
}

.contact-card--orange .contact-card__title,
.contact-card--orange .contact-card__icon {
    color: #f07b2a;
}

.contact-card--purple .contact-card__title,
.contact-card--purple .contact-card__icon {
    color: #8b57c7;
}

.support-flow {
    margin-top: 18px;
	border: 1px solid #eadfd4;
    border-radius: 12px;
    background: #fffdf9;
    padding: 22px 20px;
}

.support-flow__title {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.4;
    font-weight: 700;
    color: #233243;
}

.support-flow__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.support-flow__item {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.support-flow__icon {
    display: block;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 10px;
}

.support-flow__icon img {
	width: 40px;
	height: 40px;
}

.support-flow__text {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    font-weight: 700;
}

@media screen and (min-width: 768px) {	
	.support-flow__step {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.support-flow__item {
		position: relative;		
        padding-top: 42px;
	}
	.support-flow__step {
		position: absolute;
		top: 22px;
		left: 10px;
		top: 40px;
		left: 6px;		
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 26px;
		height: 26px;
		border-radius: 999px;
		background: #3f7f67;
		color: #ffffff;
		font-size: 13px;
		font-weight: 700;
		line-height: 1;
	}	
}

@media screen and (max-width: 800px) and (min-width: 768px) {
	.support-flow__text {
		font-size: 15px;
	}	
}

.support-flow__arrow {
    font-size: 26px;
    color: #7b8592;
    flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
    .support-hero__title {
        font-size: 42px;
    }

    .support-hero__lead {
        font-size: 18px;
    }

    .support-hero__links {
        grid-template-columns: 1fr;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-list-wrap {
        border-left: none;
        padding-left: 0;
    }

    .pdf-filter {
        grid-template-columns: 1fr;
    }

    .support-contact__cards {
        grid-template-columns: 1fr;
    }

    .faq-contact-banner {
        flex-direction: column;
        align-items: flex-start;
    }

	.support-contact .faq-contact-banner {
        flex-direction: column;
        align-items: center;
    }
	
    .faq-contact-banner__button {
        width: 100%;
    }

    .pdf-list__row {
        grid-template-columns: 1fr 90px 30px;
    }
}

@media screen and (max-width: 767px) {
    .support-center {
        padding: 16px 0 28px;
    }

    .support-center__inner {
        width: min(100% - 20px, 100%);
    }

    .support-hero {
        padding: 28px 16px 20px;
    }

    .support-hero__title {
        font-size: 34px;
    }

    .support-hero__lead {
        font-size: 16px;
    }

    .support-link {
        min-height: 94px;
        padding: 16px;
    }

    .support-link__icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .support-link__title {
        font-size: 24px;
    }

    .support-link__text {
        font-size: 15px;
    }

    .support-box,
    .support-contact,
    .support-flow {
        padding: 16px;
    }

    .support-box__title,
    .support-contact__title {
        font-size: 28px;
    }

    .faq-category {
        font-size: 19px;
    }

    .faq-item summary {
        font-size: 16px;
        padding: 14px 46px 14px 14px;
    }

    .faq-item__answer {
        padding: 0 14px 14px;
        font-size: 15px;
    }

    .faq-contact-banner__title {
        font-size: 18px;
    }

    .faq-contact-banner__text {
        font-size: 14px;
    }

    .faq-contact-banner__button {
        width: auto;
        font-size: 18px;
		margin: auto;
    }

    .pdf-list__row {
        /*grid-template-columns: 1fr;*/
        gap: 8px;
    }

    .pdf-list__date {
        text-align: left;
    }

    .support-flow__list {
        align-items: stretch;
    }
	.support-flow__step {
		display: none;
	}
    .support-flow__arrow {
        text-align: center;
        /*transform: rotate(90deg);*/
    }
}

body.is-support-notice-open {
    overflow: hidden;
}

.faq-contact-banner__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2f66dd;
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    font-family: Arial, "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
    flex-shrink: 0;
}

.support-contact .banner__icon {
	content: '';
	display: inline-block;
	width: 50px;
	height: 50px;
	background-image: url(images/how_to_use.svg);
	background-size: contain;
	vertical-align: middle;
}

.support-contact .exchange__icon {
	content: '';
	display: inline-block;
	width: 50px;
	height: 50px;
	background-image: url(images/exchange.svg);
	background-size: contain;
	vertical-align: middle;
}
.support-contact .mail__icon {
	content: '';
	display: inline-block;
	width: 50px;
	height: 40px;
	background-image: url(images/mail.svg);
	background-size: contain;
	vertical-align: middle;	
}

.support-flow .faq-contact-banner__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2f66dd;
    color: #ffffff;
    font-size: 30px;
	margin-bottom: 10px;
}

.pdf-list__empty {
	padding: 20px;
}

.pdf-list__row.is-hidden {
    display: none !important;
}

span.support-box__label {
	display: none;
}

.faq-list-wrap__current {
    white-space: nowrap;
}

.support-hero__links {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    /*flex-wrap: wrap;*/
}

.support-hero__links .support-link {
    width: min(100%, 380px);
}

@media screen and (max-width: 500px) {
	.support-hero__title {
        font-size: 28px;
    }
	.support-hero__lead {
        text-align: left;
    }
	.support-box__title,
	.support-contact__title,
	.support-flow__title {
		margin: 16px auto;
		text-align: center;
	}
	.faq-search input {
		padding: 0 10px;
		font-size: 14px;
	}
    .pdf-list__row {
        grid-template-columns: 1fr;
    }	
    .pdf-list__date {
        text-align: right;
    }	
	.pdf-list img.emoji {
		display: none !important;
	}	
}

@media screen and (max-width: 400px) {
	.support-hero__lead {
        font-size: 15px;
    }
	.pdf-filter__buttons {
		justify-content: space-between;
	}
	.pdf-filter__button {
		font-size: 17px;
	}
}


@media screen and (max-width: 375px) {
	.pdf-filter__button {
		font-size: 16px;
	}
}

@media screen and (min-width: 768px) {
    .faq-list-wrap {
        max-height: 760px;
        overflow-y: auto;
        padding-right: 8px;
    }
}

@media screen and (min-width: 768px) {
    .faq-list-wrap::-webkit-scrollbar {
        width: 8px;
    }

    .faq-list-wrap::-webkit-scrollbar-thumb {
        background: #c8d2d8;
        border-radius: 999px;
    }

    .faq-list-wrap::-webkit-scrollbar-track {
        background: #f3f5f7;
    }
}

@media screen and (max-width: 767px) {
    .support-flow {
        margin-top: 32px;
    }

    .support-flow__list {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .support-flow__item {
        flex: 0 0 140px;
        min-width: 140px;
        scroll-snap-align: start;
    }

    .support-flow__arrow {
        flex: 0 0 24px;
        min-width: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
	
    .support-flow__item {
        min-height: 120px;
        padding: 14px 0;
    }

    .support-flow__icon,
    .faq-contact-banner__icon {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 8px;
    }

    .support-flow__text {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media screen and (max-width: 600px) {
	.support-hero__links {
		flex-wrap: wrap;
	}
   .support-flow__list {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0;
        overflow: hidden;
    }

    .support-flow__item {
        flex: 1 1 0;
        min-width: 0;
        padding: 32px 4px 0;
    }

    .support-flow__step {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .support-flow__icon,
    .faq-contact-banner__icon {
        font-size: 20px;
        margin-bottom: 6px;
    }
	.support-flow .faq-contact-banner__icon {
		width: 20px;
		height: 20px;
	}
    .support-flow__text {
        font-size: 14px;
        line-height: 1.45;
        word-break: keep-all;
    }

    .support-flow__arrow {
        flex: 0 0 16px;
        min-width: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        padding-top: 30px;
    }
}

@media screen and (max-width: 375px) {
	.support-flow__text {
        font-size: 12px;
    }
}


.support-box--pdf .pdf-list {
    max-height: 560px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    background: #ffffff;
}

.support-box--pdf .pdf-list__row {
    padding-right: 16px;
}

@media screen and (max-width: 767px) {
    .support-box--pdf .pdf-list {
        max-height: 420px;
    }
}

.support-notice-modal[hidden] {
    display: none !important;
}

.support-notice-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    padding: 30px 16px;
    box-sizing: border-box;
}

.support-notice-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.support-notice-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    max-height: calc(100vh - 60px);
    max-height: calc(100dvh - 60px);
    margin: 0 auto;
	padding: 32px 24px 24px;
    border-radius: 16px;
    background: #ffffff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.support-notice-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.support-notice-modal__content {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 32px 24px 20px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

.support-notice-modal__label {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: #d94b2b;
}

.support-notice-modal__title {
    margin: 0 40px 20px 0;
    font-size: 30px;
    line-height: 1.5;
    font-weight: 700;
    color: #222222;
}

.support-notice-modal__body {
    font-size: 16px;
    line-height: 1.9;
    color: #333333;
}

.support-notice-modal__body h3 {
    margin: 20px 0 10px;
    font-size: 18px;
    line-height: 1.6;
}

.support-notice-modal__body p {
    margin: 0 0 14px;
}

.support-notice-modal__body p:last-child {
    margin-bottom: 0;
}

.support-notice-modal__body ul {
    margin: 0 0 16px 20px;
    padding: 0;
}

.support-notice-modal__body li {
    margin-bottom: 8px;
}

.support-notice-modal__actions {
    position: sticky;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    box-sizing: border-box;
}

.support-notice-modal__button,
.support-notice-modal__cancel,
.support-notice-modal__agree {
    min-width: 180px;
    min-height: 52px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.support-notice-modal__button,
.support-notice-modal__agree {
    background: #005bac;
    color: #ffffff;
}

.support-notice-modal__button--sub,
.support-notice-modal__cancel {
    background: #e5e5e5;
    color: #333333;
}

@media screen and (max-width: 767px) {
    .support-notice-modal {
        padding: 20px 10px;
    }

    .support-notice-modal__dialog {
        width: 100%;
        max-height: calc(100vh - 40px);
        max-height: calc(100dvh - 40px);
        border-radius: 14px;
		padding: 10px;
    }

    .support-notice-modal__content {
        padding: 24px 16px 16px;
    }

    .support-notice-modal__title {
        margin: 0 32px 16px 0;
        font-size: 24px;
    }

    .support-notice-modal__body {
        font-size: 15px;
    }

    .support-notice-modal__actions {
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px calc(16px + env(safe-area-inset-bottom));
    }

    .support-notice-modal__button,
    .support-notice-modal__cancel,
    .support-notice-modal__agree {
        width: 100%;
        min-width: 100%;
    }
}

@media screen and (min-width: 768px) {
    .support-notice-modal__content::-webkit-scrollbar {
        width: 8px;
    }

    .support-notice-modal__content::-webkit-scrollbar-thumb {
        background: #c8d2d8;
        border-radius: 999px;
    }

    .support-notice-modal__content::-webkit-scrollbar-track {
        background: #f3f5f7;
    }
}

/* ========================================
    品質基準一覧 スクロールバー
    FAQ一覧と同じ見た目にする
======================================== */

.support-box--pdf .pdf-list {
    max-height: 420px;
    overflow-y: auto;
    overflow-x: hidden;
}

@media screen and (min-width: 768px) {
    .support-box--pdf .pdf-list::-webkit-scrollbar {
        width: 8px;
    }

    .support-box--pdf .pdf-list::-webkit-scrollbar-thumb {
        background: #c8d2d8;
        border-radius: 999px;
    }

    .support-box--pdf .pdf-list::-webkit-scrollbar-track {
        background: #f3f5f7;
    }
}

p.other-inquiry__attachment-note {
	color: #b42318;
}

.other-inquiry__fileInput {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
}

.other-inquiry__fileButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid #cfcfcf;
    border-radius: 16px;
    background: #ffffff;
    color: #222222;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    box-sizing: border-box;
}

.other-inquiry__fileStatus {
    flex: 1 1 240px;
    min-width: 240px;
    color: #222222;
    line-height: 1.5;
    word-break: break-word;
}

.other-inquiry__attachment-note {
    margin: 16px 0 0;
    padding: 12px 14px;
    border: 1px solid #f0c7bf;
    border-radius: 8px;
    background: #fff6f3;
    color: #b23a24;
    line-height: 1.7;
}


.support-notice-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    max-height: calc(100vh - 60px);
    max-height: calc(100dvh - 60px);
    margin: 0 auto;
    border-radius: 16px;
    background: #ffffff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.support-notice-modal__content {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 32px 24px 120px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

.support-notice-modal__body {
        font-size: 15px;
        overflow-y: auto;
    }
}
.support-notice-modal__actions {
    position: sticky;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    box-sizing: border-box;
}

@media screen and (max-width: 767px) {
    .support-notice-modal {
        padding: 20px 10px;
    }

    .support-notice-modal__dialog {
        width: 100%;
        max-height: calc(100vh - 40px);
        max-height: calc(100dvh - 40px);
        border-radius: 14px;
    }

    .support-notice-modal__content {
        padding: 24px 16px 180px;
    }

    .support-notice-modal__actions {
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px calc(16px + env(safe-area-inset-bottom));
    }

    .support-notice-modal__cancel,
    .support-notice-modal__agree,
    .support-notice-modal__button {
        width: 100%;
        min-width: 100%;
        min-height: 52px;
    }
}

.pdf-list__row.is-hidden {
    display: none;
}

.faq-item__attachment {
    margin-top: 16px;
}

.faq-item__attachment a {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    text-decoration: none;
}