/* -----------------------------------
   Font Face
----------------------------------- */
@font-face {
    font-family: 'M PLUS 1p';
    src: url('../fonts/MPLUS1p-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'M PLUS 1p';
    src: url('../fonts/MPLUS1p-Medium.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'M PLUS 1p';
    src: url('../fonts/MPLUS1p-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'M PLUS 1p';
    src: url('../fonts/MPLUS1p-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* -----------------------------------
   Base reset
----------------------------------- */
html,
body {
    font-family: 'M PLUS 1p', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #222;
    overflow-x: hidden;
    /* prevent horizontal scroll */
    scroll-behavior: smooth;
}

body {
    background-image: url(../images/dot_bg.png);
    background-repeat: repeat;
}

p,
h1,
h2,
h3 {
    margin: 0;
    padding: 0;
}

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* -----------------------------------
   Header
----------------------------------- */
header {
    width: 100%;
    height: 80px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-left: 32px;
    padding-right: 32px;

    position: fixed;
    top: 0;
    left: 0;

    background-color: #fff;

    z-index: 9999;
}

.header-logo {
    width: 160px;
    max-width: 100%;
}

.header-logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.header-menues {
    display: flex;
    gap: 32px;

    align-items: center;
}

.header-menues a {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1px;

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.header-menues p {
    color: #222;
    transition-duration: 300ms;
    transition-timing-function: ease-in-out;
}

.menu-underline {
    width: 0%;
    height: 1px;
    background-color: #14a917;
    transition: width 0.2s ease;
}

.header-menues a:hover p {
    color: #14a917;
    /* ホバー時の文字色 */
    transition-duration: 300ms;
    transition-timing-function: ease-in-out;
}

.header-menues a:hover .menu-underline {
    width: 100%;
    /* ホバー時に線を100%に */
    transition: width 0.2s ease-in-out;
    /* アニメーションも付けると綺麗 */
}

.header-menues__contact-button {
    padding: 9px 16px;
    background-color: #fe4f17;
    border: 1px solid #fe4f17;
    border-radius: 4px;

    color: #fff;
    font-weight: 700;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);

    transition-duration: 400ms;
    transition-timing-function: ease-in-out;
}

.header-menues__contact-button:hover {
    background-color: #fff;
    color: #fe4f17;
}

/* Hamburger menu */
.hamburger-menu {
    display: none;
    /* Hidden on PC */
}

/* -----------------------------------
   Modal menu
----------------------------------- */
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    /* background-color: #ffffff; */
    border-radius: 50%;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #333333;
    position: absolute;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check {
    display: none;
}

#menu-btn-check:checked~.menu-btn span {
    background-color: transparent;
    transition: all 0.2s ease;
}

#menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

#menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    transition: all 0.5s ease;
}

/* Modal menu content */
.menu-content {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    transition: all 0.5s;
    opacity: 0;
    animation: fadeIn 0.1s ease-in forwards;
}

#menu-btn-check:checked~.menu-content {
    display: block;
    opacity: 1;
    /* left: 0; */
}

.menu-content-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-top: 80px;
    padding: 0 32px 64px 0;
    /* gap: 24px; */
    background-color: #fff;
}

/* .inquiry-button-mobile a {
    color: #ffffff;
} */

.menu-content-inner a {
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    padding: 20px 0;
    color: #333;
    text-decoration: none;
}

.border-bottom {
    border-bottom: 1px solid #e2e2e2;
}

/* hamburger-menu__contact-button */
.hamburger-menu__contact-button {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    color: #FFFFFF;
    font-size: 14px;

    background: #fe4f17ff;
    border-radius: 4px;
    padding: 16px 10px;
}

/* -----------------------------------
   Main Content
----------------------------------- */
#main-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    gap: 92px;
}

/* -----------------------------------
   First View
----------------------------------- */
.section-firstview {
    width: 100%;

    padding-top: 80px;
}

.backgroundImage_1 {
    width: 100%;
}

.backgroundImage_sp {
    display: none;
}

/* -----------------------------------
   Main Catch
----------------------------------- */
.section-maincatch {
    width: 100%;

    display: flex;
    justify-content: flex-end;

    position: relative;
}

/* .maincatch-container {
    display: flex;
    justify-content: center;

    width: 75%;

    background-color: #f6f6f6;
    border-radius: 20px 0px 0px 20px;
} */

.maincatch-container {
    width: 1280px;
    max-width: calc(100% - 64px);

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 50px;

    padding: 80px 0px;
    margin: 0px 32px;

    position: relative;
    z-index: 1;
}

.maincatch-image-container {
    width: 40%;
    border-radius: 24px;

    position: relative;
    overflow: hidden;
    /* はみ出し対策 */
}

.image-container__border {
    border: 5px solid #14a917;
}

.maincatch-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* or 'contain' depending on the effect you want */
    display: block;
    /* 画像下の余白（inline要素の隙間）対策 */
}

.maincatch-text-container {
    width: 60%;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.maincatch-title {
    font-size: 36px;
    font-weight: 700;
    color: #14a917;
}

.maincatch-text {
    font-size: 18px;
    font-weight: 500;
    font-family: 'M PLUS 1p', sans-serif;
}

.maincatch-text__orange {
    font-size: 20px;
    font-weight: 700;
    color: #fe4f17;
}

.maincatch-background__gray {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background-color: #f6f6f6;
    z-index: 0;
    border-radius: 20px 0px 0px 20px;
}

/* -----------------------------------
   About
----------------------------------- */
.section-about {
    width: 100%;
    margin-bottom: 100px;

    display: flex;
    justify-content: center;

    position: relative;
}

.about-container {
    width: 1280px;

    margin: 0px 32px;
    padding: 80px 0px;

    display: flex;
    justify-content: space-between;

    position: relative;
    z-index: 1;
}

.about-text-container {
    width: 45%;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-title__en {
    font-size: 16px;
    font-weight: 600;
    color: #fe4f17;
    letter-spacing: 0.1em;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #14a917;
}


.about-image-container {
    width: 50%;
    border-radius: 24px;

    position: relative;
    overflow: hidden;
    /* はみ出し対策 */
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* or 'contain' depending on the effect you want */
    display: block;
    /* 画像下の余白（inline要素の隙間）対策 */
}

.about-text {
    font-size: 18px;
    font-weight: 500;
    color: #222222;
}

.about-text__orange {
    font-size: 20px;
    font-weight: 700;
    color: #fe4f17;
}

.about-list-group ul {
    display: flex;
    flex-direction: column;
    /* 縦並びにする */
    gap: 10px;
    padding-left: 0;
    /* 必要ならリストマークの余白を消す */
    list-style: none;
    /* リストマーク非表示 */
}

.about-list-group li {
    display: flex;
    gap: 8px;
    align-items: center;

    font-size: 22px;
    font-weight: 700;
    color: #14a917;
}

.about-list-group p {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.about-background__gray {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    background-color: #f6f6f6;
    z-index: 0;
    border-radius: 0px 20px 20px 0px;
}

/* -----------------------------------
   Problems
----------------------------------- */
.section-problems {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 24px;

    /* position: relative; */
}

.problems-container {
    width: 1280px;
    max-width: calc(100% - 64px);

    padding: 50px 32px;
    margin: 0px auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 44px;

    background-image: url("../images/ツドエルゾフッターグラデ.png");
    background-position: center center;
    background-size: cover;

    border-radius: 20px;
}

.problems-container-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
}

.problem-cards-container {
    /* display: flex;
    justify-content: center;
    align-items: center; */

    gap: 32px;
    flex-wrap: wrap;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.problem-card {
    width: 100%;
    padding: 32px 16px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

    background: #FFFFFF;

    position: relative;
}

.problem-card-decoration {
    height: 17px;
    left: 7px;
    margin: 0 0 0 0;
    position: absolute;
    top: -10px;
    width: 24px;
    max-width: 100%;
}

.problem-card-title-group {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.problem-card-title {
    color: #fe4f17;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    max-width: calc(100% - 20px);
}

.problem-card-title-img {
    width: 15%;
}

.problem-card-list-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.problem-card-list-group li {
    display: flex;
    justify-content: flex-start;

    gap: 8px;
}

.problem-card-list-group i {
    margin-top: 2px;

    font-size: 20px;
    color: #14a917;
}

.problem-card-list-group p {
    text-align: left;
    font-weight: 500;
}

.fa-angles-down {
    color: #14a917;
    font-size: 72px;
}

.problem-text-groups {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-main-text {
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 32px;
    font-weight: 700;
}

.problem-main-text img {
    aspect-ratio: 457 / 106;
    width: 160px;
    height: calc(100% * (457 / 106));
    display: block;
}

.problem-main-text-row {
    display: flex;
    align-items: center;
}

.problem-desc-text {
    display: flex;
    justify-content: center;

    color: #fe4f17;
    font-size: 18px;
    font-weight: 500;
}

/* -----------------------------------
   Services
----------------------------------- */
.section-service {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.service-container {
    width: calc(100% - 64px);
    max-width: calc(100% - 64px);


    padding: 80px 0;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 64px;

    background: #f6f6f6;
    border-radius: 40px;
}

.service-title {
    color: #14a917;
    font-size: 36px;
    font-weight: 700;
}

.sevice-title-desc {
    display: flex;
    justify-content: center;

    color: #fe4f17;
    font-size: 18px;
    font-weight: 500;
}

.service-contents {
    width: 90%;
    margin: 0 auto;
}

.service-cards {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 80px;
}

.service-card {
    width: 100%;
    padding: 32px 80px 32px 40px;

    display: flex;
    justify-content: center;

    position: relative;
}

.service-card-content {
    width: 100%;
    display: flex;
    align-items: center;

    gap: 32px;

    z-index: 2;
}

.service-card-content__reverse {
    flex-direction: row-reverse;
}

.service-card-text-group {
    width: 100%;
    text-align: left;
}

.service-card-number {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Open Sans', 'Noto Sans JP';
    color: #fe4f17;
    font-size: 48px;
    font-weight: 600;
}

.articles {
    height: 5px;
    width: 20px;
    max-width: 100%;
}

.articles__orange {
    background: #fe4f17;
}

.service-card-title {
    color: #14a917;
    /* font-family: 'Open Sans', 'Noto Sans JP'; */
    font-size: 28px;
    font-weight: 700;
}

.service-card-desc {
    margin-top: 20px;
    color: #222222;
    font-size: 18px;
    font-weight: 500;
}

.service-card-img-container {
    width: 100%;
    border-radius: 24px;

    border: 5px solid #14a917;

    overflow: hidden;
    /* はみ出し対策 */
}

.service-card-img-container img {
    width: 100%;
    height: 100%;
    /* 高さも合わせたいとき */
    object-fit: cover;
    /* もしくは contain */
    display: block;
}

.service-card-decoration {
    width: 72px;
    height: 72px;

    background: linear-gradient(45deg, #9afd66ff 0%, rgb(68, 177, 157) 28%, #44b19dff 54%, #9afd66ff);
    border-radius: 10px;

    transform: rotate(-90deg)
}

.service-card-decoration__left {
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 0;
}

.service-card-decoration__right {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 0;
}

.service-card-background {
    width: 65%;
    height: 100%;

    background: #FFFFFF;
    border-bottom: 1px solid #F6F6F6;
    border-left: 1px solid #F6F6F6;
    border-radius: 10px;
    border-right: 1px solid #F6F6F6;
    border-top: 1px solid #F6F6F6;
    box-shadow: 1px 3px 18px 0px rgba(18, 18, 18, 0.03999999910593033);

    max-width: 65%;
}

.service-card-background__left {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.service-card-background__right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

/* -----------------------------------
   Contact
----------------------------------- */
.section-contact {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.contact-container {
    width: 85%;

    margin: 0 auto;
    padding: 64px 40px 40px 40px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;

    background: #f6f6f6;
    border-radius: 20px;
}

.contact-info-container {
    width: 50%;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-title-container {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

.contact-info-title {
    color: #14a917;
    font-size: 34px;
    font-weight: 700;
}

.contact-button {
    width: 300px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #fe4f17;
    border: 2px solid #fe4f17;
    border-radius: 4px;

    font-size: 18px;

    color: #fff;
    text-decoration: none;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);

    cursor: pointer;

    transition-duration: 400ms;
    transition-timing-function: ease-in-out;
}

.contact-button:hover {
    background: #fff;
    color: #fe4f17;
}

.contact-button-text {
    margin: 25px 10px 25px 10px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    transition-duration: 400ms;
    transition-timing-function: ease-in-out;
}

.contact-button:hover .contact-button-text {
    gap: 20px;
}

.contact-img-container {
    width: 50%;
    border-radius: 24px;

    overflow: hidden;
}

.contact-img-container img {
    width: 100%;

    object-fit: cover;
    /* もしくは contain */
    display: block;
}

.contact-info {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}

.contact-phone-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    color: #000000;
    font-size: 36px;
    font-weight: 700;
}

.contact-phone-number i {
    color: #000000;
    font-size: 23px;
}

/* -----------------------------------
   Event
----------------------------------- */
.event-service {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.event-container {
    width: calc(100% - 64px);
    max-width: calc(100% - 64px);

    padding: 80px 0;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 64px;

    background: #f6f6f6;
    border-radius: 40px;
}

.event-title-group {
    text-align: center;
}

.event-title_en {
    color: #14a917ff;
    font-size: 16px;
    font-weight: 600;
}

.event-title {
    color: #222;
    font-size: 36px;
    font-weight: 700;
}

.event-title-desc {
    display: flex;
    justify-content: center;

    color: #fe4f17;
    font-size: 18px;
    font-weight: 500;
}

.event-contents {
    width: 90%;
    margin: 0 auto;
}

.event-cards {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 80px;
}

.event-card {
    width: 100%;
    padding: 32px 80px 32px 40px;

    display: flex;
    justify-content: center;

    position: relative;
}

.event-card-content {
    width: 100%;
    display: flex;
    align-items: center;

    gap: 32px;

    z-index: 2;
}

.event-card-content__reverse {
    flex-direction: row-reverse;
}

.event-card-text-group {
    width: 100%;
    text-align: left;
}

.event-card-number {
    display: flex;
    align-items: center;
    gap: 7px;

    font-family: 'Open Sans', 'Noto Sans JP';
    color: #14a917ff;
    font-size: 20px;
    font-weight: 600;
}

.articles {
    height: 5px;
    width: 20px;
    max-width: 100%;
}

.articles__green {
    background: #14a917;
}

.event-card-title {
    color: #222;
    font-family: 'Open Sans', 'Noto Sans JP';
    font-size: 28px;
    font-weight: 700;
}

.event_steps {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-top: 20px;

    color: #222222;
    font-size: 18px;
    font-weight: 500;
}

.step {
    border: 1px solid #14a917ff;
    color: #14a917ff;
    font-size: 20px;
    font-weight: 400;
    padding: 2px;
    white-space: nowrap;
}

.event-card-img-container {
    width: 100%;
    border-radius: 10px;

    overflow: hidden;
    /* はみ出し対策 */

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.event-card-img-container img {
    width: 100%;
    height: 100%;
    /* 高さも合わせたいとき */
    object-fit: cover;
    /* もしくは contain */
    display: block;
}

.event-card-decoration {
    width: 72px;
    height: 72px;

    background: linear-gradient(45deg, #9afd66ff 0%, rgb(68, 177, 157) 28%, #44b19dff 54%, #9afd66ff);
    border-radius: 10px;

    transform: rotate(-90deg)
}

.event-card-decoration__left {
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 0;
}

.event-card-decoration__right {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 0;
}

.event-card-background {
    width: 65%;
    height: 100%;

    background: #FFFFFF;
    border: 10px solid #448d44;
    border-radius: 10px;
    box-shadow: 1px 3px 18px 0px rgba(18, 18, 18, 0.03999999910593033);

    max-width: 65%;
}

.event-card-background__left {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.event-card-background__right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

/* -----------------------------------
   Case
----------------------------------- */
.section-case {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.case-container {
    margin: 120px auto 0px auto;
    width: 1280px;
    max-width: calc(100% - 64px);

    display: flex;
    flex-direction: column;
    gap: 64px;
}

.case-title-container {
    color: #fe4f17;
    font-size: 16px;
    font-weight: 600;
}

.case-title {
    color: #14a917;
    font-size: 36px;
    font-weight: 700;
}

.case-card-container {
    position: relative;
}

.case-cards {
    padding-bottom: 44px;
}

.case-card {
    width: 100%;
    padding: 0px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;

    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 1px 3px 18px 0px rgba(18, 18, 18, 0.03999999910593033);

    position: relative;
    z-index: 1;
}

.case-img-container {
    width: 50%;
    padding: 16px 16px 32px 16px;

    overflow: hidden;
    /* はみ出し対策 */
}

.case-img-container img {
    width: 100%;
    height: 100%;

    border-radius: 8px;
    /* 高さも合わせたいとき */
    object-fit: cover;
    /* もしくは contain */
    display: block;
}

.case-card-info {
    width: 50%;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.case-card-title {
    border-bottom: 1px solid #e2e2e2;
    color: #14a917;
    font-size: 20px;
    font-weight: 700;
}

.case-card-desc {
    color: #333333;
    font-size: 20px;
}

.case-customer-info {
    padding-top: 12px;
    display: flex;
    justify-content: flex-start;
    gap: 4px;

    border-top: 1px solid #e2e2e2;

    font-size: 12px;
    color: #222;
    font-weight: 500;
}

.bg-gray {
    background-color: #f6f6f6;
    padding: 0px 6px;
}

.case-card-decoration {
    width: 500%;
    height: 60%;

    position: absolute;
    z-index: 0;
    top: auto;
    right: 0px;
    bottom: 0px;
    left: -32px;

    background: linear-gradient(45deg, #9afd66ff 0%, rgb(68, 177, 157) 28%, #44b19dff 54%, #9afd66ff);
    border-radius: 20px;

    transform-origin: center right;
}

/* -----------------------------------
   Services
----------------------------------- */
.section-plan {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.plan-container {
    width: calc(100% - 64px);

    margin: 0px 32px;
    padding: 80px 0px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 64px;

    background: #f6f6f6;
    border-radius: 40px;
}

.plan-title__en {
    color: #14a917ff;
    font-size: 16px;
    font-weight: 600;
}

.plan-title {
    color: #222;
    font-size: 36px;
    font-weight: 700;
}

table {
    width: 90%;
    margin: 0 auto;
    border-spacing: 8px;
    border: none;
    table-layout: fixed;
}

th,
td {
    padding: 24px;
    border-radius: 8px;
}

th {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

td {
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.td-icon {
    font-size: 24px;
}

.bg-highlight {
    background: #dfffdfff;
}

.orange-gradation {
    background: linear-gradient(180deg, #fe4f17, #ffe9e2ff);
}

.green-gradation {
    background: linear-gradient(180deg, #14a917, #96f398ff);
}

.blue-gradation {
    background: linear-gradient(180deg, #6acdd2, #ffffff);
}

.t-sub-header {
    width: 280px;

    background: #14a917;

    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
}

/* -----------------------------------
   FAQ
----------------------------------- */
.section-faq {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

    position: relative;
}

.faq-container {
    width: 1280px;
    max-width: calc(100% - 64px);
    margin: 0 auto;
    padding: 80px 0px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;

    z-index: 1;
}

.faq-title-container {
    display: flex;
    flex-direction: column;
    gap: 2px;

    text-align: left;
}

.faq-title__en {
    color: #fe4f17;
    font-size: 16px;
    font-weight: 600;
}

.faq-title {
    color: #14a917;
    font-size: 36px;
    font-weight: 700;
    white-space: nowrap;
}

.faq-cards ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-block {
    box-shadow: 4px 4px 8px rgba(84, 73, 0, 0.08);
    position: relative;
    border-radius: 10px;
}

.Label {
    width: 100%;
    padding: 16px 20px;

    display: flex;
    gap: 32px;

    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
    position: relative;

    background: #FFFFFF;
    border-radius: 10px;
}

.Label::before {
    content: "";
    width: 10px;
    height: 10px;

    border-top: 2px solid #333333;
    border-right: 2px solid #333333;
    transform: rotate(135deg);

    position: absolute;

    top: calc(50% - 5px);
    right: 50px;
}

.hidden.toggle {
    display: none;
}

.accordion-title {
    width: 100%;
    padding: 16px 20px;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 32px;

    background: #FFFFFF;
    border-radius: 10px;
}

.accordion-title-icon {
    width: 28px;
    height: 28px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #14a917ff;
    border-radius: 50px;

    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.content {
    height: 0;
    padding: 0px 20px;

    background: #FFFFFF;
    box-shadow: 2px 2px 6px rgba(84, 73, 0, 0.08);

    text-align: left;
    color: #333;
    font-size: 14px;

    border-radius: 0px 0px 10px 10px;

    overflow: hidden;
    transition: all 0.3s;
    /* line-height: 1.6; */
}

.content p {
    margin: 16px 32px 16px 52px;
}

.toggle:checked+.Label+.content {
    height: auto;
}

.toggle:checked+.Label {
    background-color: #14a917;
    border-radius: 10px 10px 0px 0px;
    color: #fff;
}

.toggle:checked+.Label .accordion-title-icon {
    background: #fff;
    color: #14a917;
}

.toggle:checked+.Label::before {
    transform: rotate(-45deg);
    display: none;
}

.faq-background {
    width: 75%;
    height: 100%;
    max-width: 75%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;

    background: #f6f6f6;
    border-radius: 0px 20px 20px 0px;

}

/* -----------------------------------
   Contact Form
----------------------------------- */
.section-contact-form {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

    position: relative;
}

.contact-form-container {
    width: 1280px;
    margin: 0px auto;
    padding: 80px 0px;

    display: flex;
    align-items: center;
    gap: 50px;

    z-index: 1;
    max-width: calc(100% - 64px);
}

.contact-form-info-container {
    width: 55%;

    display: flex;
    flex-direction: column;
    gap: 20px;

    text-align: left;

    color: #222;
    font-size: 16px;
    font-weight: 500;
}

.contact-form-title-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-form-title-container p {
    color: #fe4f17;
    font-size: 16px;
    font-weight: 600;
}

.contact-form-title-container h2 {
    color: #14a917;
    font-size: 36px;
    font-weight: 700;
    white-space: nowrap;
}

.contact-form-img-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    /* はみ出し対策 */
}

.contact-form-img-container img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}

.contact-form {
    width: 45%;
    /*height: 850px;*/

    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/

    /*background-color: gray;*/

    color: #fff;
    font-size: xx-large;
}

/* -----------------------------------
   Company
----------------------------------- */
.section-company {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

    position: relative;
}

.section-department {
    width: 100%;
    margin-top: -92px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

    position: relative;
}

.company-container {
    width: 1280px;
    max-width: calc(90% - 64px);
    margin: 0px auto;
    padding: 80px 0px;

    display: flex;
    align-items: center;
    gap: 50px;

    z-index: 1;
}

.company-container__reverse {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.company-info-container {
    width: 45%;

    display: flex;
    flex-direction: column;
    gap: 20px;

    text-align: left;

    color: #222;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;

    z-index: 1;

    /* white-space: nowrap; */
}

.company-info-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.company-info-title p {
    color: #14a917ff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.company-info-title h2 {
    color: #222;
    font-size: 36px;
    font-weight: 700;
}

.company-img-container {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
    /* はみ出し対策 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.company-img-container img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}

.company-background {
    width: 75%;
    height: 100%;
    max-width: 75%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;

    background: #f6f6f6;
    border-radius: 0px 20px 0px 0px;
}

.department-text__bold {
    font-weight: 700;
}

.department-background {
    width: 75%;
    height: 100%;
    max-width: 75%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;

    background: #f6f6f6;
    border-radius: 0px 0px 20px 0px;
}

/* -----------------------------------
   Footer
----------------------------------- */
.footer-inner {
    width: 100%;
    margin: 120px 0px 0px 0px;
    padding: 80px 0px 0px 0px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;

    background: linear-gradient(45deg, #9afd66ff 0%, rgb(68, 177, 157) 28%, #44b19dff 54%, #9afd66ff);
}

.footer-upper {
    width: 1280px;
    max-width: calc(100% - 64px);
    margin: 0px 32px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-logo {
    width: 300px;
}

.footer-nav {
    display: flex;
    gap: 80px;

    color: #fff;
    text-decoration: none;
}

.footer-nav a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.footer-underline {
    width: 0%;
    height: 1px;
    background-color: #000000;
    transition: width 0.1s ease;
}

.footer-nav a:hover p {
    color: #000000;
    /* ホバー時の文字色 */
    transition-duration: 300ms;
    transition-timing-function: ease-in-out;
}

.footer-nav a:hover .footer-underline {
    width: 100%;
    /* ホバー時に線を100%に */
    transition: width 0.1s ease-in-out;
    /* アニメーションも付けると綺麗 */
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-group a {
    font-size: 14px;
    transition-duration: 300ms;
    transition-timing-function: ease-in-out;
}

.link-group i {
    font-size: 14px;
    transition-duration: 300ms;
    transition-timing-function: ease-in-out;
}

.link-group:hover a,
.link-group:hover i {
    color: #000000;
    transition-duration: 300ms;
    transition-timing-function: ease-in-out;
}

.footer-lower {
    width: 100%;
    padding: 16px 0px 16px 0px;

    text-align: center;

    background: #fff;
    border-top: 1px solid #e2e2e2;

    color: #424242;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 2;
}

/* -----------------------------------
   Media queries
----------------------------------- */

@media (max-width: 840px) {

    .header-menues {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    /* 840pxまでの幅の場合に適用される */
    .maincatch-container {
        flex-direction: column-reverse;
    }

    .maincatch-text-container {
        width: 100%;
        margin: 0 50px;
    }

    .maincatch-title {
        font-size: 32px;
    }

    .maincatch-text {
        font-size: 14px;
    }

    .maincatch-image-container {
        margin-left: auto;
        width: 50%;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-text-container {
        width: 70%;
    }

    .about-text {
        font-size: 14px;
    }

    .about-list-group p {
        font-size: 15px;
    }

    .about-image-container {
        width: 100%;
    }

    .problem-main-text {
        font-size: 28px;
    }

    .problem-desc-text {
        font-size: 14px;
    }

    .service-contents {
        width: 70%;
    }

    .service-card {
        padding: 32px 40px;
    }

    .service-title {
        font-size: 32px;
    }

    .sevice-title-desc {
        font-size: 14px;
    }

    .service-card-content {
        flex-direction: column;
    }

    .service-card-background {
        width: 100%;
        max-width: 100%;
        height: 60%;
    }

    .service-card-title {
        font-size: 22px;
    }

    .service-card-desc {
        font-size: 14px;
    }

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

    .contact-info-title {
        font-size: 24px;
    }

    .contact-title-container {
        font-size: 14px;
    }

    .contact-button-text {
        margin: 16px 10px;
    }

    .contact-phone-number {
        font-size: 28px;
    }

    .event-card {
        width: 80%;
        margin: 0 auto;
        padding: 32px 40px;
    }

    .event-title_en {
        font-size: 15px;
    }

    .event-title {
        font-size: 32px;
    }

    .event-card-content {
        flex-direction: column;
    }

    .event-card-title {
        font-size: 22px;
    }

    .event_steps {
        font-size: 14px;
    }

    .event-card-img-container {
        width: 80%;
    }

    .event-card-background {
        width: 100%;
        max-width: 100%;
        height: 65%;
    }

    .case-card-container {
        width: 90%;
        margin: 0 auto;
    }

    .case-title-container {
        width: 90%;
        margin: 0 auto;
    }

    .case-card {
        padding: 32px;
    }

    .case-card-title,
    .case-card-desc {
        font-size: 18px;
    }

    .case-card-decoration {
        width: 110%;
        height: 105%;
        bottom: 10px;
    }

    .plan-title {
        font-size: 32px;
    }

    th {
        font-size: 18px;
    }

    th,
    td {
        padding: 12px;
    }

    .plan-info-container {
        overflow-y: hidden;
        width: 90%;
        margin: 0 auto;
    }

    table {
        width: 140%;
    }

    .faq-container {
        flex-direction: column;
        gap: 40px;
    }

    .faq-title__en {
        font-size: 15px;
    }

    .faq-title {
        font-size: 32px;
    }

    .contact-form-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form-info-container {
        width: calc(100% - 50px);
        font-size: 14px;
    }

    .contact-form-img-container {
        display: none;
    }

    .contact-form-title-container {
        font-size: 15px;
    }

    .contact-form-title-container h2 {
        font-size: 32px;
    }

    .contact-form {
        width: 100%;
    }

    .company-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 0px 0px 0px;
    }

    .company-info-container {
        width: 70%;
    }

    .company-info-title {
        font-size: 15px;
    }

    .company-info-title h2 {
        font-size: 32px;
    }

    .company-img-container {
        width: 75%;
        margin-left: auto;
    }

    .company-background,
    .department-background {
        height: 75%;
    }

    .footer-upper {
        max-width: calc(100% - 32px);
        font-size: 13px;
    }
}

@media (max-width: 540px) {

    .backgroundImage_1 {
        display: none;
    }

    .backgroundImage_sp {
        display: block;
        width: 100%;
    }

    .maincatch-title {
        font-size: 24px;
    }

    .maincatch-image-container {
        width: 70%;
    }

    .about-title__en {
        font-size: 15px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-text-container {
        width: 100%;
        margin-top: 20px;
    }

    .problems-container-title {
        font-size: 22px;
    }

    .problem-cards-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .problem-card-title {
        font-size: 18px;
    }

    .problem-card-list-group {
        font-size: 14px;
    }

    .fa-angles-down {
        font-size: 48px;
    }

    .problem-main-text {
        display: flex;
        flex-direction: column;
        font-size: 24px;
    }

    .problem-desc-text {
        display: flex;
        flex-direction: column;
        font-size: 20px;
    }

    .service-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .service-title {
        font-size: 24px;
    }

    .sevice-title-desc {
        flex-direction: column;
        font-size: 16px;
    }

    .service-contents {
        width: 90%;
    }

    .service-card-title {
        font-size: 20px;
    }

    .service-card-desc {
        font-size: 14px;
    }

    .contact-container {
        flex-direction: column;
        padding: 64px 0px;
    }

    .contact-info-container {
        width: 100%;
    }

    .contact-info-title {
        font-size: 18px;
    }

    .contact-title-container {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .none {
        display: none;
    }

    .contact-button {
        width: 90%;
    }

    .contact-img-container {
        width: 90%;
    }

    .event-container {
        width: 100%;
        max-width: 100%;
    }

    .event-contents {
        width: 100%;
    }

    .event-card {
        width: 90%;
        padding: 20px;
    }

    .articles {
        height: 3px;
    }

    .event-card-number {
        font-size: 16px;
    }

    .event-title {
        font-size: 24px;
    }

    .event-card-title {
        font-size: 20px;
    }

    .event-card-background {
        border: 3px solid #448d44;
    }

    .event-card-decoration__right {
        right: 0;
        left: -10px;
    }

    .section-case {
        position: relative;
    }

    .case-card {
        flex-direction: column;
    }

    .case-card-container {
        width: 100%;
        position: static;
    }

    .case-card-decoration {
        width: 100%;
        height: 75%;
        left: 0;
    }

    .case-img-container {
        width: 100%;
        padding: 0;
    }

    .case-card-info {
        width: 100%;
    }

    .case-card-desc {
        font-size: 14px;
    }

    .plan-title__en {
        font-size: 15px;
    }

    .plan-container {
        width: 100%;
        margin: 0;
    }

    .faq-title {
        font-size: 24px;
    }

    .accordion-title-icon {
        font-size: 13px;
    }

    .Label {
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }

    .Label::before {
        right: 20px;
    }

    .content p {
        margin: 16px 0px;
    }

    .contact-form-title-container {
        font-size: 15px;
    }

    .contact-form-title-container {
        font-size: 24px;
    }

    .contact-form-img-container {
        display: block;
    }

    .company-container {
        max-width: calc(100% - 64px);
    }

    .company-info-container {
        width: 100%;
        font-size: 14px;
    }

    .company-info-title h2 {
        font-size: 24px;
    }

    .company-img-container {
        width: 100%;
    }

    .company-img-container {
        width: 100%;
    }

    .footer-inner {
        padding: 40px 0px 0px 0px;
    }

    .footer-nav {
        margin: 0 auto;
    }

    .menu-content-inner {
        padding: 0;
    }

    .menu-content-inner a {
        display: flex;
        margin: 0 auto;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        padding: 20px 0;
        color: #333;
        text-decoration: none;
    }

    .maincatch-background__gray {
        position: absolute;
        top: 0;
        right: 0;
        width: 75%;
        height: 80%;
        background-color: #f6f6f6;
        z-index: 0;
        border-radius: 20px 0px 0px 20px;
    }

    .about-background__gray {
        position: absolute;
        top: 0;
        left: 0;
        width: 75%;
        height: 90%;
        background-color: #f6f6f6;
        z-index: 0;
        border-radius: 0px 20px 20px 0px;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }
}