html, body, div, span, a, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, address, em, img, dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figcaption, figure, footer, header, menu, nav, section, time, video, button, input, textarea, select, option, optgroup, fieldset, legend, strong, b, small, code, mark, sub, sup, audio, canvas, svg, main, details, summary, progress, meter {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    box-sizing: border-box;
    font: inherit;
    vertical-align: baseline;
}

:root {
    --container-width: 1200px;
	--blue-color: #4A90E2;
	--text-color: #333;
}

@media (max-width: 1199.98px) {
    :root {
        --container-width: 100%;
    }
}

.pc {
    display: block;
}
.sp {
    display: none;
}

@media (max-width: 767.98px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

body {
    color: var(--text-color);
    background-color: #ffffff;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

p {
    line-height: 2;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 10px;
    margin: 0 auto;
}

.bg_blue {
    position: relative;
}
.bg_blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    bottom: 0;
    z-index: -1;
    width: 100vw;
    height: 100%;
    background-image: url(../img/common/bg_blue.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bw span,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    display: inline-block;
}

.center {
    text-align: center;
}

.mw-600 {
    max-width: 600px;
    margin: 0 auto;
}

.mw-900 {
    max-width: 900px;
    margin: 0 auto;
}

.mt-1em {
    margin-top: 1em;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-90 {
    margin-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

.title-en {
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Zen Maru Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    line-height: 2;
}

.title-en h2 {
    font-size: 28px;
}

.title-en p {
    color: #3CB8C4;
    font-size: 13px;
    font-weight: 500;
}

.title-bg-blue {
    position: relative;
    background-color: #418FD6;
    padding: 0.5em 4em;
    border-radius: 10px;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    text-align: center;
}
.title-bg-blue::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 1.5em;
    transform: translateY(-50%);
    width: 1em;
    height: 1px;
    background-color: #fff;
}

@media screen and (max-width: 767.98px) {
    .title-bg-blue {
        padding: 0.5em 2em;
        font-size: 24px;
    }
    .title-bg-blue::before {
        left: 0.5em;
    }
}

.title-bg-green {
    position: relative;
    background-color: #60BC64;
    padding: 0.5em 4em;
    border-radius: 10px;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    text-align: center;
}
.title-bg-green::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 1.5em;
    transform: translateY(-50%);
    width: 1em;
    height: 1px;
    background-color: #fff;
}

@media (max-width: 767.98px) {
    .title-bg-green {
        padding: 0.5em 2em;
        font-size: 24px;
    }
    .title-bg-green::before {
        left: 0.5em;
    }
}

.title-green h3 {
    color: #078B49;
    font-size: 24px;
    text-align: center;
}

.title-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    padding: 0 6em 1.5em;
    text-align: center;
}
.title-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1em;
    height: 1px;
    background-color: #5C9BD5;
}
.title-icon img {
    position: absolute;
    top: 0;
    z-index: -1;
    width: 5em;
    object-fit: contain;
    object-position: center;
}
.title-icon img:first-child {
    left: 0;
}
.title-icon img:last-child {
    right: 0;
}
.title-icon h3 {
    font-size: 28px;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .title-icon {
        padding: 0 0.5em 1.5em;
    }
    .title-icon h3 {
        font-size: 20px;
    }
    .title-icon img {
        opacity: 0.5;
    }
}

.list {
    padding-left: 1.5em;
}

.list li + li {
    margin-top: 0.5em;
}

.list-check ul {
    list-style: none;
    padding-left: 1.5em;
}

.list-check ul li {
    position: relative;
    padding-left: 2em;
}
.list-check ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1.5em;
    height: 1.5em;
    background-image: url(../img/common/icon_check.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.list-check ul li + li {
    margin-top: 1em;
}

.btn-arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 500px;
    height: 5em;
    margin: 0 auto;
    padding: 0 5em;
    border-radius: 10px;
    background-color: #195FA0;
    color: #fff;
    font-size: 18px;
    text-align: center;
}
.btn-arrow a:hover {
    background-color: #1478C8;
}
.btn-arrow a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 3em;
    transform: translateY(-50%);
    width: 3em;
    height: 3em;
    background-image: url(../img/common/arrow_white.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 767.98px) {
    .btn-arrow a {
        padding: 0 2em;
    }
    .btn-arrow a::after {
        width: 2em;
        height: 2em;
        right: 0.5em;
    }
}

.btn-mail a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 80%;
    max-width: 500px;
    height: 5em;
    background-color: #FD9C49;
    border-radius: 10px;    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    margin: 0 auto;
}
.btn-mail a:hover {
    background-color: #FFB366;
}
.btn-mail a::before {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url(../img/common/icon_mail.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.col2 {
    display: flex;
    gap: 30px;
}

.col2-item {
    width: 50%;
}

@media (max-width: 767.98px) {
    .col2 {
        flex-wrap: wrap;
    }
    .col2-item {
        width: 100%;
    }
}

.box_white {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
}
@media (max-width: 767.98px) {
    .box_white {
        padding: 20px;
    }
}

.box-border {
    position: relative;
    border: 1px solid #5EC662;
    border-radius: 10px;
    padding: 60px;
    background-color: #fff;
}

.box-border-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: table;
    padding: 0.5em 3em;
    border-radius: 10px;
    background-color: #5EC662;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 767.98px) {
    .box-border-title {
        padding: 0.5em 1em;
        min-width: 80%;
    }
}

.box-border-content .list-check ul li + li {
    margin-top: 1.5em;
}

.box-border-content .list-check ul li::before {
    background-image: url(../img/common/icon_check_green.png);
}

.box-border-content > dl > dt {
    position: relative;
    color: #5EC662;
    font-size: 24px;
    font-family: "Zen Maru Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    padding-left: 2em;
}
.box-border-content > dl > dt::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 2em;
    height: 2em;
    background-image: url(../img/common/icon_check_green.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.box-border-content > dl > dd + dt {
    margin-top: 2em;
}

.box-border-content > dl > dd {
    margin-top: 1em;
    padding-left: 2.5em;
    padding-bottom: 2em;
    border-bottom: 1px solid #CBCBCB;
}

.box-border-content > dl > dd:last-child {
    border-bottom: none;
}

.box-border-content dl dl {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 2em;
    border-left: 1px solid #078B49;
}

.box-border-content dl dl dt {
    padding-left: 2em;
    color: #078B49;
    font-size: 20px;
    width: 40%;
}

.box-border-content dl dl dd {
    width: calc(60% - 20px);
}

@media (max-width: 767.98px) {
    .box-border {
        padding: 60px 1em;
    }
}

.header {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #d1d1d1;
}

.header-inner {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 10px;
    margin: 0 auto;
}

.header-logo {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.header-logo img {
    width: 100%;
    height: auto;
}

.header-nav {
    width: 100%;
    margin: 30px auto 0;
}

.header-nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
}

.header-nav ul li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    font-family: "Zen Maru Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.header-nav ul li a:hover {
    color: #4D99DE;
}

.header-nav-sp {
    display: none;
}

.header-nav-sp-button {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.header-nav-sp-button span {
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    left: 50%;
    transform: translateX(-50%);
}

.header-nav-sp-button span:nth-child(1) {
    top: 6px;
}

.header-nav-sp-button span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.header-nav-sp-button span:nth-child(3) {
    bottom: 6px;
}

/* 開いた状態（×印） */
.header-nav-sp.active .header-nav-sp-button span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.header-nav-sp.active .header-nav-sp-button span:nth-child(2) {
    opacity: 0;
}

.header-nav-sp.active .header-nav-sp-button span:nth-child(3) {
    bottom: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
}

.header-nav-sp-content {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 80px;
}

.header-nav-sp.active .header-nav-sp-content {
    display: block;
    right: 0;
}

.header-nav-sp-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-nav-sp-content ul li {
    border-bottom: 1px solid #f0f0f0;
}

.header-nav-sp-content ul li a {
    display: block;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    font-family: "Zen Maru Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.header-nav-sp-content ul li a:hover {
    background-color: #f8f8f8;
    color: #4D99DE;
}

/* オーバーレイ */
.header-nav-sp-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-nav-sp.active .header-nav-sp-overlay {
    display: block;
    opacity: 1;
}

@media (max-width: 767.98px) {
    .fukushi .header-title {
        height: 300px;
    }
    .header-inner {
        position: relative;
    }
    .header-nav-sp {
        display: block;
        position: absolute;
        top: 0px;
        right: 10px;
    }
    .header-logo {
        width: 80%;
        margin: 0;
    }
    .header-nav {
        display: none;
    }
    .header-title-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    .header-title-nav ul li a {
        width: 100%;
        max-width: 320px;
    }
}

.header-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 240px;
    background-image: url(../img/common/bg_pagetitle.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-title h1 {
    color: #2876BE;
    font-size: 32px;
    text-align: center;
}

.header-title h1 + p {
    margin-top: 1em;
    color: #2876BE;
    font-size: 16px;
    text-align: center;
}

.header-title-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.header-title-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.header-title-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 320px;
    height: 3.5em;
    padding: 0 5em 0 3em;
    border-radius: 10px;
    background-color: #2876BE;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}
.header-title-nav ul li a:hover {
    background-color: #1478C8;
}
.header-title-nav ul li a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    background-image: url(../img/common/arrow_down.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.breadcrumb ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    gap: 10px;
    padding: 10px 0;
}
.breadcrumb ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.breadcrumb ul li img {
    width: 1em;
    height: 1em;
}
.breadcrumb ul li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}
.breadcrumb ul li a:hover {
    color: #4D99DE;
}

.home-main-inner {
    padding: 0 0 40px;
}

.home-main-inner h1 {
    font-family: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.home-main-content {
    position: relative;
    margin-top: 40px;
}

.home-main-content-text {
    position: absolute;
    top: 20px;
    left: 0;
}

.home-main-content-text h1 {
    color: #4990E2;
    font-size: 48px;
    font-weight: 700;
    text-shadow: -2px -2px 6px #fff, 2px -2px 6px #fff, 2px 2px 6px #fff, -2px 2px 6px #fff;
    line-height: 1.5;
}

.home-main-content-text h1 + p {
    margin-top: 30px;
    font-weight: 700;
    text-shadow: -2px -2px 6px #fff, 2px -2px 6px #fff, 2px 2px 6px #fff, -2px 2px 6px #fff;
}

.home-main-content-image {
    position: relative;
    z-index: -1;
    transform: translateX(10%);
}

@media (max-width: 767.98px) {
    .home-main-content-text h1 {
        font-size: 28px;
    }
}

.home-business-inner {
    position: relative;
    padding: 60px 0;
}
.home-business-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    bottom: 20px;
    z-index: -1;
    width: 100vw;
    height: 100%;
    background-image: url(../img/top/business_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-business-content {
    position: relative;
    margin-top: 60px;
}

.home-business-content-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.home-business-content-image_item {
    width: 65%;
}

.home-business-content-menu {
    width: 60%;
    margin: 0 0 0 auto;
}

.home-business-content-menu-image {
    max-width: 300px;
    margin: 0 0 0 50%;
}

.home-business-content-menu-inner {
    background-color: #4D99DE;
    border-radius: 15px;
    padding: 60px;
    margin-top: 30px;
    color: #fff;
}

.home-business-content-menu h3 {
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    font-size: 32px;
    text-align: center;
}
.home-business-content-menu h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1em;
    transform: translateX(-50%);
    height: 1px;
    background-color: #fff;
}

@media (max-width: 767.98px) {
    .home-business-content-menu h3 {
        font-size: 24px;
    }
}

.home-business-content-menu p {
    margin-top: 20px;
    text-align: center;
}

.home-business-content-menu a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 5em;
    margin-top: 30px;
    padding: 0 5em;
    border-radius: 10px;
    border: 2px solid #fff;
    background-color: #fff;
    color: #3087D6;
    font-size: 18px;
    text-align: center;
}
.home-business-content-menu a:hover {
    border: 2px solid #2D89DB;
    background-color: #DCEEFF;
}
.home-business-content-menu a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 3em;
    transform: translateY(-50%);
    width: 3em;
    height: 3em;
    background-image: url(../img/common/arrow_blue.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.home-business-content-menu-inner-list {
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 1em;
    color: var(--text-color);
}

.home-business-content-fukushi .home-business-content-image_item img:nth-child(2) {
    margin: 60px 0 0 60px;
    max-width: 200px;
}

.home-business-content-fukushi .home-business-content-menu-inner {
    margin-top: 0;
    background-color: #60BC64;
}

.home-business-content-fukushi .home-business-content-menu a {
    border: 2px solid #058D49;
    background-color: #058D49;
    color: #fff;
}
.home-business-content-fukushi .home-business-content-menu a:hover {
    border: 2px solid #07B35E;
    background-color: #07B35E;
}
.home-business-content-fukushi .home-business-content-menu a::after {
    background-image: url(../img/common/arrow_white.png);
}

.home-business-content-fukushi .home-business-content-menu-image {
    max-width: 200px;
    margin: 0 10% 0 auto;
}

@media (max-width: 1099.98px) {
    .home-business-content-menu {
        width: 80%;
    }
    .home-business-content-menu-image,
    .home-business-content-fukushi .home-business-content-menu-image {
        max-width: 200px;
        margin: 0 0 0 auto;
    }
}
@media (max-width: 991.98px) {
    .home-business-content-menu {
        width: 90%;
        margin: 0 auto;
    }
}
@media (max-width: 767.98px) {
    .home-business-content-menu-inner {
        padding: 30px;
    }
    .home-business-content-menu a {
        padding: 0 2em;
        font-size: 15px;
        white-space: nowrap;
    }
    .home-business-content-menu a::after {
        width: 2em;
        height: 2em;
        right: 0.25em;
    }
}

.home-business-info {
    padding: 50px 1em;
    margin-top: 30px;
    border: 1px solid #5C9BD5;
    border-radius: 10px;
}

.home-business-info-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.home-business-info-inner h4 {
    color: #5C9BD5;
    font-size: 24px;
    font-weight: 500;
    color: #5C9BD5;
}

.home-business-info-inner p {
    margin-left: 40px;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .home-business-info {
        text-align: center;
    }
    .home-business-info-inner {
        flex-wrap: wrap;
    }
    .home-business-info-inner h4 {
        width: 100%;
    }
    .home-business-info-inner p {
        width: 100%;
        margin-top: 20px;
        margin-left: 0;
    }
}

.home-rinen {
    position: relative;
    padding: 90px 0;
}

.home-rinen::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    bottom: 0;
    z-index: -1;
    width: 100vw;
    height: 100%;
    background-color: #F4FEFF;
}

.home-rinen-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
}

.home-rinen-content-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 50%;
    height: 8em;
    border: 1px solid #3CB8C3;
    border-radius: 10px;
    background-color: #fff;
    padding: 1em;
}

.home-rinen-content-item-image {
    position: absolute;
    top: 0;
    transform: translateY(-75%);
    max-width: 100px;
}
.home-rinen-content-item:nth-child(1) .home-rinen-content-item-image {
    left: 30px;
}
.home-rinen-content-item:nth-child(2) .home-rinen-content-item-image {
    right: 0px;
}

.home-rinen-content-item-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #3CB8C3;
    font-size: 60px;
    font-weight: 500;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    text-align: center;
}

@media (max-width: 991.98px) {
    .home-rinen-content {
        flex-wrap: wrap;
    }
    .home-rinen-content-item {
        width: 100%;
    }
}

.home-profile {
    padding: 60px 0;
}

.home-profile-content {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.home-profile-content-image {
    width: 45%;
}

.home-profile-content-text {
    width: 55%;
    padding: 0 3em;
}

.home-profile-content-text p {
    margin-top: 2em;
}

.home-profile-content .btn-arrow a {
    background-color: #418FD6;
}
.home-profile-content .btn-arrow a:hover {
    background-color: #5BA5E6;
}

@media (max-width: 991.98px) {
    .home-profile-content {
        flex-wrap: wrap;
    }
    .home-profile-content-text,
    .home-profile-content-image {
        width: 100%;
    }
}

.fukushi-main {
    padding: 0 0 60px;
}

.fukushi-main-content {
    max-width: 1000px;
    margin: 30px auto 0;
}

.fukushi-main-content p {
    margin-top: 1em;
    text-align: center;
}

.fukushi-kouken {
    padding: 60px 0;
}

.fukushi-kouken-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 60px;
}

.fukushi-kouken-content-item {
    width: 50%;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
}

@media (max-width: 767.98px) {
    .fukushi-kouken-content-item {
        padding: 20px;
    }
}

.fukushi-kouken-content-item img {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.fukushi-kouken-content-item h3 {
    position: relative;
    color: #2876BE;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
    padding-bottom: 20px;
}
.fukushi-kouken-content-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1em;
    transform: translateX(-50%);
    height: 1px;
    background-color: #2876BE;
}

.fukushi-kouken-content-item p {
    margin-top: 1em;
}

@media (max-width: 767.98px) {
    .fukushi-kouken-content {
        flex-wrap: wrap;
    }
    .fukushi-kouken-content-item {
        width: 100%;
    }
}

.fukushi-kouken-contact {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 90px;
}

.fukushi-kouken-contact-item {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.fukushi-kouken-contact-item-image {
    width: 50%;
}

.fukushi-kouken-contact-item-text {
    width: 50%;
}

@media (max-width: 767.98px) {
    .fukushi-kouken-contact-item {
        flex-wrap: wrap;
    }
    .fukushi-kouken-contact-item-image,
    .fukushi-kouken-contact-item-text {
        width: 100%;
    }
}

.fukushi-kouken-info {
    margin-top: 60px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
}

@media (max-width: 767.98px) {
    .fukushi-kouken-info {
        padding: 20px;
    }
}

.fukushi-kouken-info-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.fukushi-kouken-info-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 30%;
    text-align: center;
}

.fukushi-kouken-info-title img {
    width: 2em;
    height: 2em;
    object-fit: contain;
    object-position: center;
}

.fukushi-kouken-info-title h3 {
    color: #2D7BC0;
    font-size: 24px;
    font-weight: 500;
}

.fukushi-kouken-info-content {
    width: 70%;
}

@media (max-width: 767.98px) {
    .fukushi-kouken-info-inner {
        flex-wrap: wrap;
    }
    .fukushi-kouken-info-title,
    .fukushi-kouken-info-content {
        width: 100%;
    }
    .fukushi-kouken-info-title {
        text-align: center;
    }
    .fukushi-kouken-info-title img {
        width: 1.5em;
        height: 1.5em;
    }
    .fukushi-kouken-info-title h3 {
        font-size: 20px;
    }
}

.fukushi-kouken-flow {
    margin-top: 90px;
    background-image: url(../img/common/bg_cross.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 30px;
}

.fukushi-kouken-flow-content ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
    list-style: none;
}

.fukushi-kouken-flow-content ul li {
    position: relative;
    padding: 0px 60px;
    width: calc(33.3% - 20px);
}
.fukushi-kouken-flow-content ul li::before {
    content: '';
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
    width: 30px;
    height: 30px;
    background-image: url(../img/common/icon_triangle.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.fukushi-kouken-flow-content ul li h4 {
    color: #2876BE;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
}

.fukushi-kouken-flow-content ul li p {
    margin-top: 1em;
}

@media (max-width: 1199.98px) {
    .fukushi-kouken-flow-content ul li {
        padding: 0px 20px;
    }
}
@media (max-width: 991.98px) {
    .fukushi-kouken-flow-content ul li {
        width: calc(50% - 20px);
    }
    .fukushi-kouken-flow-content ul li:nth-child(2)::before,
    .fukushi-kouken-flow-content ul li:nth-child(4)::before,
    .fukushi-kouken-flow-content ul li:nth-child(5)::before {
        display: block;
    }
}
@media (max-width: 767.98px) {
    .fukushi-kouken-flow-content ul li {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 60px 0 0;
    }
    .fukushi-kouken-flow-content ul li:nth-child(2)::before,
    .fukushi-kouken-flow-content ul li:nth-child(3)::before,
    .fukushi-kouken-flow-content ul li:nth-child(4)::before,
    .fukushi-kouken-flow-content ul li:nth-child(5)::before {
        display: block;
        top: 0px;
        left: 50%;
        transform: translate(-50%, 0px) rotate(90deg);
    }
}
@media (min-width: 992px) {
    .fukushi-kouken-flow-content ul li:nth-child(2)::before,
    .fukushi-kouken-flow-content ul li:nth-child(3)::before,
    .fukushi-kouken-flow-content ul li:nth-child(5)::before {
        display: block;
    }
}

.fukushi-kouken-keiyaku {
    max-width: 900px;
    margin: 0 auto;
    padding: 90px 0 60px;
}

.fukushi-soudan-inner {
    position: relative;
    padding: 60px 0 90px;
}

.fukushi-soudan-content {
    max-width: 900px;
    margin: 60px auto;
}

.fukushi-soudan-kazari_right {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 200px;
}

.fukushi-soudan-about {
    background-color: #fff;
    border-radius: 10px;
    padding: 60px 90px;
    margin-top: 60px;
}

@media (max-width: 767.98px) {
    .fukushi-soudan-about {
        padding: 20px;
    }
}

.office-main {
    margin-top: 30px;
}

.office-main-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 60px 90px;
    margin-top: 60px;
}

.office-main-content img {
    display: block;
    margin: 0px auto;
}

@media (max-width: 767.98px) {
    .office-main-content {
        padding: 20px;
    }
}

.office-feature {
    margin-top: 90px;
}

.office-feature-content {
    margin-top: 60px;
}

.office-feature-content h3 {
    position: relative;
    color: #078B49;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
    padding-bottom: 20px;
}
.office-feature-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1em;
    height: 2px;
    background-color: #078B49;
}

.office-feature-content h3 + p {
    margin-top: 20px;
    text-align: center;
}

.office-feature-flow {
    background-image: url(../img/common/bg_cross.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 30px;
}

.list-feature-flow {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
    list-style: none;
}

.list-feature-flow li {
    position: relative;
    width: calc(25% - 20px);
}
.list-feature-flow li::before {
    content: '';
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
    width: 30px;
    height: 30px;
    background-image: url(../img/common/icon_triangle_green.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.list-feature-flow-image {
    max-width: 150px;
    margin: 0 auto;
}

.list-feature-flow li h4 {
    color: #068C49;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
}

.list-feature-flow li p {
    margin-top: 1em;
}

@media (max-width: 991.98px) {
    .list-feature-flow li {
        width: calc(50% - 20px);
    }
    .list-feature-flow li:nth-child(2)::before,
    .list-feature-flow li:nth-child(4)::before {
        display: block;
    }
}
@media (min-width: 992px) {
    .list-feature-flow li:nth-child(2)::before,
    .list-feature-flow li:nth-child(3)::before,
    .list-feature-flow li:nth-child(4)::before {
        display: block;
    }
}

.about h3 {
    color: #2876BE;
    font-size: 28px;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    h3.about-message {
        font-size: 18px;
    }
}

.about-raireki dl {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 700px;
    border-bottom: 1px solid #CBCBCB;
}

.about-raireki dt {
    width: 8em;
    padding: 2em 0;
}

.about-raireki dd {
    width: calc(100% - 8em - 20px);
    padding: 2em 0;
}

.contact h2 {
    color: #2A7FE3;
    font-size: 28px;
    font-weight: 500;
    text-align: center;
}

.text-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 36px;
    font-weight: 500;
    text-align: center;
}
.text-tel::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url(../img/common/icon_tel.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

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

.content-contact {
    padding: 60px 0;
    background-image: url(../img/common/bg_contact.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content-contact-inner-title h2 {
    font-size: 32px;
    text-align: center;
}

@media (max-width: 767.98px) {
    .content-contact-inner-title h2 {
        font-size: 24px;
    }
}

.content-contact-inner-info {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 30px auto 0;
}

.content-contact-inner-info-item {
    width: 50%;
}

.content-contact-inner-info-item-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 42px;
    font-weight: 500;
    text-align: center;
}
.content-contact-inner-info-item-tel::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url(../img/common/icon_tel.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 767.98px) {
    .content-contact-inner-info-item-tel {
        font-size: 28px;
    }
}

.content-contact-inner-info-item-mail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 700px;
    height: 5em;
    background-color: #FD9C49;
    border-radius: 10px;    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    margin: 0 auto;
}
.content-contact-inner-info-item-mail:hover {
    background-color: #FFB366;
}
.content-contact-inner-info-item-mail::before {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url(../img/common/icon_mail.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.content-contact-inner-info-text {
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
}
.content-contact-inner-info-text p:nth-child(2) {
    margin-top: 1em;
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .content-contact-inner-info {
        flex-wrap: wrap;
    }
    .content-contact-inner-info-item {
        width: 100%;
    }
    .content-contact-inner-info-item:nth-child(2) {
        margin-top: 30px;
    }
}

.footer {
    width: 100%;
    background-color: var(--blue-color);
}

.footer-inner {
    padding: 30px 10px;
}

.footer-inner a {
    display: block;
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
}

.mfp_rows + .mfp {
    margin-top: 30px;
}

.mfp-border {
    border-bottom: 1px solid #AAAAAA;
    padding-bottom: 20px;
}

.mailform input[type="text"],
.mailform input[type="email"],
.mailform input[type="tel"],
.mailform input[type="number"],
.mailform textarea {
    border: 1px solid #AAAAAA;
    box-shadow: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    width: 100% !important;
    max-width: 500px !important;
    box-sizing: border-box;
}

.mfp_buttons button[type="submit"] {
    position: relative;
    border-radius: 10px;
    width: 240px;
    padding: 1em 3em;
    margin-top: 20px;
    background: none;
    background-color: #FF9801;
    color: #fff;
    text-shadow: none;
    transition: all 0.5s ease;
}
.mfp_buttons button[type="submit"]:hover {
    background: none;
    background-color: #FFB366;
}
.mfp_buttons button[type="submit"]::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    width: 2em;
    height: 2em;
    background-image: url(../img/common/arrow_white.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
