@charset "utf-8";

/*-----------------------------フォント*/
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/*
font-family: "Noto Sans JP", serif;
font-family: "Geologica", sans-serif;
font-family: "Montserrat", sans-serif;
font-family: "Roboto", sans-serif;
*/

/*-----------------------------リセットCSS*/
html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
    overflow-x: hidden;
}

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

/* Remove default padding */

ul[class],
ol[class] {
    padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Set core root defaults */

html {
    scroll-behavior: smooth;
}

/* Set core body defaults */

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 100%;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul[class],
ol[class] {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* A elements that don't have a class get default styles */

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
    max-width: 100%;
    display: block;
}

/* Natural flow and rhythm in articles by default */

article>*+* {
    margin: 0;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
    font: inherit;
}

/* Blur images when they have no alt attribute */

/* Remove all animations and transitions for people that prefer not to see them */


img {
    height: auto;
}

address,
em {
    font-style: normal;
}

table {
    border-collapse: collapse;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea {
    -webkit-appearance: none;
    border-radius: 0;
}

input[type="search"],
input[type="submit"],
input[type="button"] {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="search"]::-webkit-search-decoration,
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    font-weight: normal;
}

/*-----------------------------初期値CSS*/
body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    position: relative;
    background: #fff;
    color: #363636;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #363636;
    display: block;
    cursor: pointer;
    -webkit-text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/*スマホ時電話リンク*/
@media (min-width: 599px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

/*iPhoneで画面サイズに合わせる*/
@supports (-webkit-touch-callout: none) {
    html {
        height: -webkit-fill-available;
    }

    body {
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
}

@media screen and (max-width: 1023px) {

    body {
        font-size: 15px;
        font-weight: 500;
    }

}

/*-----------------------------共通CSS*/
span.kai {
    display: inline-block;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.inner {
    max-width: 1200px;
    width: calc(100% - 130px);
    margin: 0 auto;
    box-sizing: border-box;
}

.pageSection .inner,
.inner1100 {
    max-width: 1100px;
}

.pageSection .inner994,
.inner994 {
    max-width: 994px;
}

.main.page .inner2 {
    max-width: 1200px;
}

a.anchor {
    display: block;
    padding-top: 85px;
    margin-top: -85px;
}

.sp {
    display: none;
}

.blue {
    color: #0E3B73;
}

.yellow {
    color: #FDD000;
}

.bold {
    font-weight: 700;
}

/*main*/
.pageSection {
    margin-top: 110px;
    margin-bottom: 135px;
}

.pageSection hr {
    height: 1px;
    max-width: 1200px;
    width: calc(100% - 130px);
    margin: 96px auto;
    background-color: #C6C6C6;
    border: none;
}

/*modBtn1*/
.modBtnWrap {
    max-width: 600px;
    margin: 0 auto;
    gap: 20px;
}

.modBtn1 {
    width: 100%;
    max-width: 273px;
}

.modBtn1.center {
    margin: 0 auto;
}

.modBtn1.right {
    margin: 0 0 0 auto;
}

.modBtn1 a,
.modBtn1 button {
    position: relative;
    height: 55px;
    width: 100%;
    border-radius: 50px;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/common/icon-right.svg) no-repeat center right 34px;
    background-size: 16px;
    background-color: #F5911E;
    transition: .3s;
}

.modBtn1 a:hover,
.modBtn1 button:hover {
    background-position: center right 24px;
    background-color: #0B3A65;
}

.modBtn1.backBtn button {
    background: url(../img/common/icon-left.svg) no-repeat center left 34px;
    background-size: 16px;
    background-color: #a4a4a4;
}

.modBtn1.backBtn button:hover {
    background-position: center left 24px;
    background-color: #656565;
}

.modBtn1 a .btnInner,
.modBtn1 button .btnInner {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    display: block;
    text-align: center;
    padding: 0 20px;
}

/*modBtn2*/
.modBtn2 {
    width: 100%;
    max-width: 273px;
}

.modBtn2 a {
    position: relative;
    height: 55px;
    width: 100%;
    border-radius: 50px;
    background-color: #167DE2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.modBtn2 a:hover {
    background-color: #0B3A65;
}

.modBtn2 a .btnInner {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    padding-right: 33px;
    display: block;
    background: url(../img/common/link.png) no-repeat center right;
    background-size: 24px;
}

/*modBtn3*/
.modBtn3 {
    width: 100%;
    max-width: 374px;
}

.modBtn3 a {
    position: relative;
    height: 88px;
    width: 100%;
    border-radius: 50px;
    overflow: hidden;
    background-color: #F5911E;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.modBtn3 a:hover {
    background-color: #BE4900;
}

.modBtn3 a .btnInner {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    background: url(../img/common/contact.png) no-repeat center left;
    background-size: 35px;
    padding-left: 46px;
}

/*modBtn4*/
.modBtn4 {
    width: 100%;
    max-width: 143px;
    margin-left: auto;
}

.modBtn4 a {
    position: relative;
    height: 40px;
    width: 100%;
    border-radius: 50px;
    background-color: #FFE9A5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.modBtn4 a:hover {
    background-color: #F5911E;
}

.modBtn4 a .btnInner {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: #F5711E;
    padding-right: 41px;
    display: block;
    background: url(../img/common/link-btn.png) no-repeat center right;
    background-size: 26px;
}

.modBtn4 a:hover .btnInner {
    color: #fff;
    background-image: url(../img/common/link-btn-hover.png);
}

/*modBtn5*/
.modBtn5 {
    font-size: 15px;
    font-weight: 700;
    text-align: right;
    padding-right: 29px;
    background: url(../img/common/btn-orange.png) no-repeat center right;
    background-size: 26px;
}

.modBtn5:hover,
.serviceList .box:hover .modBtn5 {
    background-image: url(../img/common/btn-orange-hover.png);
}


/*sectionTitle*/
.sectionTitle {
    position: relative;
    margin-bottom: 35px;
    padding-left: 24px;
}

.sectionTitle.center {
    margin-left: auto;
    margin-right: auto;
}

.sectionTitle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background-color: #F5911E;
    border-radius: 4px;
}

.sectionTitle .en {
    font-family: "Montserrat", serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    padding-left: 30px;
    background: url(../img/common/sectionTitle.svg) no-repeat center left;
    background-size: 23px;
    color: #F5711E;
    margin-bottom: 5px;
    margin-left: 4px;
}

.sectionTitle .ja {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.270454545;
    color: #0B3A65;
}

/*subTitle*/
.subTitle {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.666666666;
    padding-left: 30px;
    background: url(../img/common/subTitle.svg) no-repeat center left;
    background-size: 22px;
    color: #F5711E;
    margin-bottom: 10px;
}

/*タイトル*/
.content h2 {
    position: relative;
    font-size: 33px;
    font-weight: 700;
    padding-left: 16px;
    margin-bottom: 40px;
    line-height: 1.4;
    margin-top: 96px;
    color: #0B3A65;
}

.content h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 4px;
    background-color: #F5911E;
}

.content h2:first-child {
    margin-top: 0;
}

.content h3 {
    position: relative;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 7px;
    color: #0B3A65;
    margin-bottom: 32px;
    border-bottom: 1px solid #C6C6C6;
    margin-top: 56px;
}

.content h3::before {
    content: "";
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 103px;
    height: 2px;
    border-radius: 4px;
    background: #F5911E;
}

.content h4 {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    padding-left: 29px;
    margin-bottom: 28px;
    margin-top: 56px;
    background: url(../img/common/content-h4.svg) no-repeat top 3px left;
    background-size: 19px;
    color: #0B3A65;
}

.content h5 {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    padding-left: 17px;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 1px solid #E3E3E3;
}

.content h5::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #FFD28D;
}

/*link*/
.link {
    display: inline;
    color: #0B3A65;
    text-decoration: underline;
}

.link:hover {
    text-decoration: none;
}

/*ol*/
.content ol {
    counter-reset: item;
    margin: 14px 0 20px 0;
}

.content ol li {
    position: relative;
    text-indent: -1.0em;
    padding-left: 20px;
    margin-bottom: 3px;
}

.content ol li::before {
    counter-increment: item;
    content: counter(item)'.';
    padding-right: .5em;
}

/*ul*/
.content ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 7px;
}

.content ul li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}

/*pageMv*/
.pageMv {
    padding-top: 90px;
    height: 285px;
    background: url(../img/common/page-bg-pc.webp) no-repeat center;
    background-size: cover;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pageMv .sub {
    font-weight: bold;
    line-height: 1.666666;
    color: #F5711E;
    margin-top: -26px;
}

.pageMv .title {
    position: relative;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.136363636;
    color: #0B3A65;
}

/*パンくず*/
ul.breadcrumb {
    max-width: 1100px;
    column-gap: 18px;
    margin: 0 auto;
}

.breadcrumb li {
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb li:not(:last-of-type)::before {
    content: ">";
    position: absolute;
    top: 0;
    right: -14px;
    color: #F5711E;
}

.breadcrumb li a:hover {
    color: #F5711E;
}

/*table*/
.table,
.table th,
.table td {
    border-collapse: collapse;
}

.table {
    width: 100%;
    border-top: 1px solid #E3E3E3;
}

.table th,
.table td {
    border-bottom: 1px solid #E3E3E3;
    text-align: left;
    vertical-align: top;
}

.table th {
    font-weight: bold;
    background: #FFF9EA;
    width: 212px;
    color: #F5711E;
    padding: 20px 30px;
}

.table th .sub {
    font-size: 12px;
    font-weight: 500;
    margin-left: 6px;
    margin-top: -4px;
    display: inline-block;
    vertical-align: middle;
}

.table td {
    width: calc(100% - 212px);
    padding: 20px 36px;
}

@media screen and (max-width: 1023px) {

    .inner {
        width: calc(100% - 32px);
    }

    .pageSection .inner {
        width: calc(100% - 72px);
    }

    a.anchor {
        display: block;
        padding-top: 60px;
        margin-top: -60px;
    }

    /*pageMv*/
    .pageMv {
        padding-top: 60px;
        height: 248px;
        background-image: url(../img/common/page-bg-sp.webp);
        margin-bottom: 22px;
    }

    .pageMv .sub {
        font-size: 14px;
        margin-top: -20px;
    }

    .pageMv .title {
        font-size: 30px;
        line-height: 1.36666666;
    }

    .pageSection {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    /*modBtn1*/
    .modBtn1 {
        max-width: 240px;
        margin: 0 auto;
    }

    .modBtn1.right {
        margin: 0 auto;
    }

    .modBtn1 a,
    .modBtn1 button {
        height: 44px;
        justify-content: flex-start;
        background-position: center right 23px;
    }

    .modBtn1.submitBtn button,
    .modBtn1.backBtn button {
        justify-content: center;
    }

    .modBtn1 a .btnInner,
    .modBtn1 button .btnInner {
        padding: 0 30px;
    }

    /*modBtn2*/
    .modBtn2 {
        max-width: 240px;
        margin: 0 auto;
    }

    .modBtn2 a {
        height: 44px;
    }

    /*modBtn3*/
    .modBtn3 {
        max-width: 240px;
        margin: 0 auto;
    }

    .modBtn3 a {
        height: 44px;
    }

    .modBtn3 a .btnInner {
        font-size: 15px;
        background-size: 24px;
        padding-left: 30px;
    }

    /*sectionTitle*/
    .sectionTitle {
        margin-bottom: 30px;
        padding-left: 16px;
    }

    .sectionTitle::before {
        width: 4px;
    }

    .sectionTitle .en {
        font-size: 12px;
        margin-left: 0;
    }

    .sectionTitle .ja {
        font-size: 24px;
        line-height: 1.25;
    }

    /*subTitle*/
    .subTitle {
        font-size: 13px;
        padding-left: 22px;
        background-size: 16px;
        margin-bottom: 6px;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    /*タイトル*/
    .content h2 {
        font-size: 24px;
        padding-left: 12px;
        margin-bottom: 24px;
        margin-top: 48px;
    }

    .content h2::before {
        width: 3px;
    }

    .content h3 {
        font-size: 20px;
        padding-bottom: 8px;
        margin-bottom: 24px;
        margin-top: 32px;
    }

    .index .content h3 {
        font-size: 18px;
    }

    .content h4 {
        font-size: 19px;
        padding-left: 20px;
        margin-top: 32px;
        margin-bottom: 20px;
        background-size: 14px;
    }

    .content h4::before {
        top: 12px;
    }

    .content h5 {
        font-size: 15px;
        padding-left: 15px;
    }

    .content h5::before {
        top: 8px;
    }

    /*table*/
    .table tr {
        border-bottom: 1px solid #E3E3E3;
    }

    .table th,
    .table td {
        font-size: 15px;
        display: block;
        border-bottom: none;
        padding: 15px 20px;
    }

    .table th {
        width: 100%;
        max-width: 100%;
    }

    .table td {
        width: 100%;
    }

    .pageSection hr {
        width: calc(100% - 72px);
        margin: 48px auto;
    }

}

/*--------------------------------------------------------------------------------------------------------------------

ヘッダー

--------------------------------------------------------------------------------------------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 100;
    height: 90px;
    width: 100%;
    transition: .3s;
    justify-content: flex-end;
}

/*-----------------------------左ロゴ*/
.header .logo {
    position: absolute;
    top: 50%;
    left: min(40px, 2.857142857142857vw);
    transform: translateY(-50%);
    margin: auto;
    width: 24%;
}

.header .logo a {
    transition: .3s;
}

.header .logo a:hover {
    opacity: .5;
}

.header .logo a img {
    width: 100%;
    max-width: 334px;
}

.header .logo a .text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/*-----------------------------メニュー*/
.header .nav {
    padding: 10px min(40px, 2.857142857142857vw) 0 0;
}

/*上段*/
.header .navBtnBox {
    justify-content: flex-end;
    align-items: center;
    column-gap: 24px;
}

.header .navBtnBox .navBtn1 a {
    font-size: 14px;
    padding-left: 24px;
    background-image: url(../img/common/faq.png);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 20px;
    color: #F5711E;
}

.header .navBtnBox .navBtn1 a:hover {
    background-image: url(../img/common/faq-hover.png);
    color: #FFD28D;
}

.header .navBtnBox .navBtn2 a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F5911E;
    border-radius: 5px;
    height: 34px;
    width: 148px;
    text-align: center;
    transition: .3s;
}

.header .navBtnBox .navBtn2 a .btnInner {
    font-size: 16px;
    font-weight: 700;
    padding-left: 24px;
    background-image: url(../img/common/contact.png);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 20px;
    color: #fff;
    width: 122px;
}

.header .navBtnBox .navBtn2 a:hover {
    background-color: #BE4900;
}

/*下段*/
.header .navListBox {
    justify-content: flex-end;
}

.header .navListBox li {
    position: relative;
    display: flex;
}

.header .navListBox li .main {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    height: 100%;
    padding: 9px 0 13px 0;
    margin: 0 20px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.header .navListBox li:last-child .main {
    margin-right: 0;
}

.header .navListBox li:hover .main {
    color: #F5911E;
}

.header .navListBox a {
    position: relative;
}

.header .navListBox li::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 20px;
    transform: translateX(-50%);
    margin: auto;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: #F5911E;
    opacity: 0;
    transition: .3s;
}

.header .navListBox li:last-child:hover::after {
    left: calc(50% + 10px);
}

.header .navListBox li:hover::after {
    opacity: 1;
    left: 50%;
}

/*ドロップダウン*/
.header .nav .subMenu {
    width: 100%;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    transition: .2s;
    background: #fff;
    height: auto;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .16);
}

.header .nav .subMenu1 {
    width: 117px;
}

.header .nav .subMenu2 {
    width: 131px;
}

.header .navListBox li.sub:hover .subMenu {
    opacity: 1;
    z-index: 1;
    pointer-events: all;
}

.header .nav .subMenu li {
    display: block;
}

.header .nav .subMenu li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    padding-left: 12px;
    height: 40px;
    border-top: 1px solid #E6E6E6;
}

.header .nav .subMenu li:first-child a {
    border-top: none;
}

.subMenu li a .btnInner {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    padding-left: 10px;
}

.header .nav .subMenu li a:hover .btnInner {
    color: #F5911E;
}

.subMenu li a .btnInner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: auto;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: #AAAAAA;
}

.header .nav .subMenu li a:hover .btnInner::before {
    background-color: #F5911E;
}

.header .nav .subMenu li::after {
    display: none;
}

@media screen and (max-width: 1023px) {

    .header {
        height: 60px;
    }

    .header .nav {
        display: none;
    }

    .header .logo {
        left: 16px;
        width: 100%;
    }

    .header .logo a img {
        max-width: 100%;
        width: 199px;
    }

}

/*--------------------------------------------------------------------------------------------------------------------

ハンバーガーメニュー

--------------------------------------------------------------------------------------------------------------------*/
.hamburger {
    display: none;
}

/*----------------------------------------------------------------------三本ライン*/
.hamburger .line {
    position: fixed;
    top: 9px;
    right: 16px;
    display: flex;
    height: 42px;
    width: 42px;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    cursor: pointer;
    border-radius: 42px;
    background-color: #F5911E;
}

.hamburger .line span,
.hamburger .line span:before,
.hamburger .line span:after {
    content: '';
    display: block;
    height: 1px;
    width: 22px;
    background-color: #fff;
    position: absolute;
}

.hamburger .line span {
    right: 10px;
}

/*.line1*/
.hamburger .line span.line1:before {
    bottom: 5px;
    left: 0;
}

.hamburger .line span.line1:after {
    top: 5px;
    left: 0;
}

/*open*/
.hamburger .line.is-activeLine span {
    right: 7px;
}

.hamburger .line.is-activeLine span.line1 {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
}

.hamburger .line.is-activeLine span.line1::before {
    bottom: 0;
    width: 16px;
    transform: rotate(45deg);
}

.hamburger .line.is-activeLine span.line1::after {
    top: 0;
    width: 16px;
    transform: rotate(-45deg);
}

/* アニメーション前のメニューの状態 */
.hamburger .line.is-activeLine span.line1 {
    pointer-events: auto;
    opacity: 1;
}

/* アニメーション後のメニューの状態 */
.hamburger .line.is-activeLine span.line1 {
    pointer-events: none;
    opacity: 0;
}

.hamburger .line.is-activeLine span.line1 {
    pointer-events: none;
    opacity: 0;
}

/* アニメーション後のメニューの状態 */
.hamburger .line.is-activeLine span.line1 {
    pointer-events: auto;
    opacity: 1;
}

@media screen and (max-width: 1023px) {

    .hamburger {
        display: block;
    }

}

/*-----------------------------------------------------------------------中のメニュー*/
.hamburger .menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    /* 追加 */
    z-index: 80;
    background: #F7F6F2;
    padding: 77px 37px 37px 37px;
}

.hamburger .menu ul.menuList {
    margin-bottom: 18px;
}

.hamburger .menu ul.menuList li {
    border-bottom: 1px solid #E3E3E3;
}

.hamburger .menu ul.menuList .main {
    font-size: 15px;
    font-weight: 700;
    position: relative;
    width: 100%;
    padding: 17px 0 12px 0;
}

.hamburger .menu ul.menuList .main .en {
    display: block;
    font-family: "Geologica", sans-serif;
    font-size: 10px;
    font-weight: 300;
    line-height: .7;
}

/*動き*/
/* アニメーション前のメニューの状態 */
.hamburger .menu {
    pointer-events: none;
    opacity: 0;
    transition: .3s;
}

/* アニメーション後のメニューの状態 */
.hamburger .menu.is-active {
    pointer-events: auto;
    opacity: 1;
}

/*---------------アコーディオン*/
.hamburger .menu ul.menuList li.sub {
    position: relative;
}

.hamburger .menu ul.menuList li .toggleBtn {
    display: block;
    position: absolute;
    top: 25px;
    cursor: pointer;
    width: 14px;
    height: 14px;
    right: 27px;
}

.hamburger .child {
    display: none;
}

.hamburger .toggleBtn::before {
    /* アイコン横棒 */
    content: '';
    height: 1px;
    width: 14px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    background: #363636;
}

.hamburger .toggleBtn:after {
    /* アイコン縦棒（閉じてるとき） */
    content: '';
    height: 14px;
    width: 1px;
    display: block;
    background: #363636;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.hamburger .toggleBtn.is-active:after {
    /* アイコン縦棒なし（開いてるとき） */
    height: 0;
    width: 0;
}

.hamburger .menu ul.menuList .subMenu.child li {
    border-bottom: none;
}

.hamburger .menu ul.menuList .subMenu.child li a {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    padding-left: 9px;
    margin: 6px 0;
}

.hamburger .menu ul.menuList .subMenu.child li:first-child a {
    margin-top: 0;
}

.hamburger .menu ul.menuList .subMenu.child li:last-child a {
    margin-bottom: 12px;
}

.hamburger .menu ul.menuList .subMenu.child li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: auto;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: #AAAAAA;
}

/*btnrecruitTop*/
.btnRecruit {
    margin-bottom: 14px;
}

.btnRecruit a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 44px;
    border-radius: 22px;
    background-color: #147DE1;
    text-align: center;
}

.btnRecruit a .btnInner {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    padding-left: 25px;
    color: #fff;
    display: inline-block;
    background: url(../img/common/recruit.png) no-repeat center left;
    background-size: 17px;
}

/*btnContact*/
.btnContact {
    margin-bottom: 14px;
}

.btnContact a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 44px;
    border-radius: 22px;
    background-color: #F5911E;
    text-align: center;
}

.btnContact a .btnInner {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    padding-left: 28px;
    color: #fff;
    display: inline-block;
    background: url(../img/common/contact.png) no-repeat center left;
    background-size: 20px;
}

/*btnCompany*/
.btnCompany {
    text-align: right;
}

.btnCompany a {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #0E3B73;
    padding: 10px 12px 4px 42px;
    background-image: url(../img/common/company.png), url(../img/common/icon-right-link.svg);
    background-repeat: no-repeat, no-repeat;
    background-size: 40px, 5px;
    background-position: center left, top 20px right;
}


/*--------------------------------------------------------------------------------------------------------------------

固定要素
--------------------------------------------------------------------------------------------------------------------*/
.fixed {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin: auto;
    width: 50px;
    height: 364px;
    z-index: 11;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .16);
    border-radius: 10px 0 0 10px;
}

.fixed .btnRecruit,
.fixed .btnContact {
    margin-bottom: 0;
}

.fixed .btnRecruit a,
.fixed .btnContact a {
    transition: .3s;
}

/*btnrecruitTop*/
.fixed .btnRecruit a {
    height: 182px;
    width: 50px;
    border-radius: 10px 0 0 0;
}

.fixed .btnRecruit a .btnInner {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    padding: 28px 0 0 0;
    text-align: center;
    display: inline-block;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: .1em;
    background: url(../img/common/recruit.png) no-repeat top center;
    background-size: 17px;
}

.fixed .btnRecruit a:hover {
    background-color: #0B3A65;
}

/*btnContact*/
.fixed .btnContact a {
    height: 182px;
    width: 50px;
    border-radius: 0 0 0 10px;
}

.fixed .btnContact a .btnInner {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    padding: 21px 0 0 0;
    text-align: center;
    display: inline-block;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: .1em;
    background: url(../img/common/contact.png) no-repeat top center;
    background-size: 20px;
}

.fixed .btnContact a:hover {
    background-color: #BE4900;
}

@media screen and (max-width: 1023px) {

    .fixed {
        top: auto;
        bottom: 20px;
        right: 14px;
        transform: none;
        width: 100%;
        height: auto;
        column-gap: 6px;
        justify-content: space-between;
        box-shadow: none;
        width: calc(100% - 28px);
    }

    .fixed .btnRecruit,
    .fixed .btnContact {
        width: calc(50% - 5px);
    }

    .fixed .btnRecruit a,
    .fixed .btnContact a {
        height: 44px;
        width: 100%;
        border-radius: 22px;
        padding-top: 0;
        box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .16);
    }

    .fixed .btnRecruit a .btnInner,
    .fixed .btnContact a .btnInner {
        font-size: 16px;
        -ms-writing-mode: inherit;
        writing-mode: inherit;
        letter-spacing: 0;
    }

    .fixed .btnRecruit a .btnInner {
        padding: 0 0 0 23px;
        background: url(../img/common/recruit.png) no-repeat center left;
        background-size: 17px;
    }


    .fixed .btnContact a .btnInner {
        padding: 0 0 0 25px;
        background: url(../img/common/contact.png) no-repeat center left;
        background-size: 20px;
    }

}

/*fixed-banner*/
.fixed-banner {
    position: fixed;
    bottom: 46px;
    right: 58px;
    z-index: 100;
}

.fixed-banner a {
    width: 220px;
    height: 183px;
    background: url(../img/common/banner-pc.jpg) no-repeat center;
    background-size: cover;
    border: 1px solid rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 6px 3px rgba(116, 95, 10, .13);
    transition: .3s;
}

.fixed-banner a:hover {
    background: url(../img/common/banner-pc-hover.jpg) no-repeat center;
    background-size: cover;
    border: 1px solid #B3B3B3;
}

@media screen and (max-width: 599px) {

    .fixed-banner {
        position: fixed;
        flex-direction: column;
        bottom: 0;
        right: 0;
        z-index: 100;
        width: 100%;
    }

    .fixed-banner a {
        width: 100%;
        height: 100%;
        background: none;
        border: none;
        box-shadow: none;
    }

    .fixed-banner a:hover {
        background: none;
        border: none;
    }

}

/*--------------------------------------------------------------------------------------------------------------------

フッター
--------------------------------------------------------------------------------------------------------------------*/
.footer {
    position: relative;
}

/*footer-top*/
.footer .top {
    background-image: url(../img/common/footer-bg-pc.webp);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
    background-color: #FFE9A5;
    padding: 10.142857142857142vw 0 28px 0;
}

.index .footer .top {
    background-image: url(../img/top/footer-bg-pc-index.webp);
}

/*bgWhiteLeft*/
.footer .bgWhiteLeft {
    position: relative;
}

.footer .bgWhiteLeft::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    width: calc(100% - 100px);
    height: 100%;
    border-radius: 0 20px 20px 0;
}

.footer .bgWhiteLeft .inner {
    position: relative;
}

.footer .top .inner {
    position: relative;
    padding: 80px 70px 80px 0;
    justify-content: space-between;
    align-items: flex-start;
}

.footer .top .inner::before {
    content: "";
    position: absolute;
    top: -87px;
    right: -35px;
    width: 169px;
    height: 169px;
    background: url(../img/common/illust-2.png) no-repeat center;
    background-size: cover;
}

.footer .top .left {
    width: 376px;
}

.footer .top .right {
    width: calc(100% - 408px);
    align-items: center;
    justify-content: space-between;
    column-gap: 47px;
    row-gap: 30px;
}

.footer .top .right .telBox {
    max-width: 300px;
}

.footer .top .right .telBox .text {
    font-size: 16px;
    font-weight: bold;
    padding: 6px 22px;
    border-radius: 50px;
    color: #0B3A65;
    border: 1px solid #0B3A65;
    margin-bottom: 16px;
    display: inline-block;
}

.footer .top .right .telBox .num,
.footer .top .right .telBox .num a {
    font-family: "Geologica", serif;
    font-weight: bold;
    font-size: 36px;
    line-height: 1;
    color: #0B3A65;
    margin-bottom: 5px;
    display: inline-block;
    text-align: left;
}

.footer .top .right .telBox .num .small {
    font-size: 22px;
    display: inline-block;
    width: 47px;
}

.footer .top .right .telBox .num .spacing {
    letter-spacing: 0.045em;
}

.footer .top .right .telBox .cm {
    font-size: 14px;
    font-weight: 500;
    color: #0B3A65;
    margin-top: 9px;
    line-height: 1;
}

/*footer-bottom*/
.footer .bottom {
    position: relative;
}

.footer .bottom .bottomInner {
    position: relative;
    max-width: 1296px;
    padding: 70px 47px;
    column-gap: 37px;
    justify-content: space-between;
}

.footer .bottom .bottomInner::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #C6C6C6;
}

.footer .bottom .flex .box {
    margin-bottom: 0;
}

/*left*/
.footer .bottom .flex .left {
    background: url(../img/common/footer-img.png) no-repeat top 180px right;
    background-size: 164px;
    padding: 22px 0 80px 0;
    width: 465px;
}

.footer .bottom .flex .left .logo {
    background: url(../img/common/wako.png) no-repeat top left;
    background-size: auto 100%;
    padding: 35px 0;
    transition: .3s;
    margin-bottom: 10px;
}

.footer .bottom .flex .left .logo:hover {
    opacity: .5;
}

.footer .bottom .flex .left .text {
    font-size: 15px;
    line-height: 1.466666666;
    margin-bottom: 18px;
}

.footer .bottom .flex .left .text .bold {
    display: block;
    font-weight: 500;
}

.footer .bottom .flex .left .text a {
    display: inline-block;
}

.fotterTitle {
    font-size: 14px;
    font-weight: bold;
    padding-left: 30px;
    background: url(../img/common/footerTitle.svg) no-repeat center left;
    background-size: 23px;
    color: #0E3B73;
}

.fotterTitle a {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    transition: .3s;
}

.fotterTitle a:hover {
    opacity: .5;
}

/*right*/
.footer .bottom .flex .right {
    column-gap: 2.857142857142857vw;
    width: calc(100% - 502px);
    justify-content: space-between;
}

.footer .bottom .flex .right .box {
    width: calc(100% / 3 - 1.9285714285714284vw);
}

.footer .menu .en {
    font-family: "Geologica", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.571428571;
    padding: 3px;
    border-bottom: 1px solid #C6C6C6;
    margin: 26px 0 9px 0;
}

.footer .menu .en:first-child {
    margin-top: 0;
}

.footer .menu li .main {
    font-size: 16px;
    font-weight: 700;
}

.footer .menu li a:hover {
    opacity: .5;
}

/*groupBox*/
.footer .groupBox {
    position: relative;
    max-width: 1054px;
    margin: 0 auto;
    padding: 30px 0 36px 0;
    justify-content: space-between;
    align-items: center;
}

.footer .groupBox .title {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #0E3B73;
    padding: 0 8px 0 12px;
    width: 96px;
}

.footer .groupBox .title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 44px;
    border-radius: 4px;
    background-color: #CFD8E3;
}

.footer .groupBox .title .bold {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.footer .groupBox .banner {
    width: 220px;
}

.footer .groupBox .banner a {
    transition: .3s;
}

.footer .groupBox .banner a:hover {
    background-color: #B1D8E9;
}

.footer .policy {
    width: 105px;
    margin-top: 26px;
}

.footer .policy a {
    position: relative;
    font-size: 13px;
    font-weight: 500;
}

.footer .policy a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    transition: all 0.3s ease 0s;
    background-color: #676767;
}

.footer .menu li.policy a:hover {
    opacity: 1;
    color: #676767;
}

.footer .policy a:hover::before {
    width: 100%;
}

/*bannerBox*/
.footer .bannerBox {
    background-color: #C5CCD8;
    padding: 33px 0;
}

.footer .bannerBox .flex {
    column-gap: 20px;
    row-gap: 16px;
    justify-content: space-between;
    max-width: 940px;
    margin: 0 auto;
}

.footer .bannerBox .flex a {
    position: relative;
    transition: .3s;
}

.footer .bannerBox .flex a:hover {
    opacity: .5;
}

.footer .bannerBox .flex li:last-child a:hover {
    opacity: 1;
}

.footer .bannerBox .flex li:last-child a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
    transition: .3s;
}

.footer .bannerBox .flex li:last-child a:hover::before {
    opacity: .5;
}

/*copy*/
.footer .copy {
    font-family: "Roboto", serif;
    font-size: 15px;
    font-weight: 400;
    background-color: #0E3B73;
    color: #fff;
    padding: 8px 0;
    text-align: center;
}

.footer .copy .inner {
    display: block;
}

/*pageTop*/
.footer .pageTopInner {
    position: fixed;
    bottom: 32px;
    right: 25px;
    z-index: 10;
}

.footer .pageTop {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55px;
    height: 58px;
    background: url(../img/common/page-top.png) no-repeat top center;
    background-size: auto 100%;
    cursor: pointer;
    text-align: center;
    transition: .2s;
}

.pageTop {
    opacity: 0;
    visibility: hidden;
    /* 非表示時はフォーカスやクリックを無効化 */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pageTop.show {
    opacity: 1;
    visibility: visible;
    /* 表示時はクリック可能に */
}

.footer .pageTop:hover {
    background: url(../img/common/page-top-hover.png) no-repeat top center;
    background-size: auto 100%;
}

@media screen and (max-width: 1284px) {

    .footer .bottom .bottomInner {
        padding: 70px 0;
    }

    .footer .bottom .flex {
        justify-content: center;
    }

    .footer .bottom .flex .right {
        width: 100%;
        max-width: 698px;
    }

    .footer .bottom .flex .left .logo img {
        margin: 0 auto;
    }

    .footer .bannerBox .flex {
        max-width: 460px;
    }

    .footer .groupBox {
        max-width: 576px;
        justify-content: flex-end;
        column-gap: 20px;
        row-gap: 20px;
    }

    .footer .groupBox .title {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        margin: auto;
    }

}

@media screen and (max-width: 1023px) {

    /*copy*/
    .footer .copy {
        font-size: 10px;
        font-weight: 300;
        padding: 12px 0 86px 0;
    }

    /*footer-top*/
    .footer .top {
        background-image: url(../img/common/footer-bg-sp.webp);
        padding: 13.333333333333334vw 0 22px 0;
    }

    .index .footer .top {
        background-image: url(../img/top/footer-bg-sp-index.webp);
    }

    /*bgWhiteLeft*/
    .footer .bgWhiteLeft::before {
        display: none;
    }

    .footer .top .inner {
        background-color: #fff;
        border-radius: 20px;
        padding: 40px 20px 44px 20px;
        width: calc(100% - 72px);
    }

    .footer .top .inner::before {
        top: -3px;
        right: -14px;
        min-width: 88px;
        min-height: 88px;
        width: 15vw;
        height: 15vw;
    }

    .footer .top .left {
        width: 100%;
        max-width: 262px;
        margin: 0 auto 22px auto;
    }

    .footer .top .right {
        width: 100%;
        display: block;
    }

    .footer .top .right .telBox {
        width: 100%;
        max-width: 251px;
        margin: 0 auto 30px auto;
        text-align: center;
    }

    .footer .top .right .telBox .text {
        font-size: 15px;
        padding: 7px 19px;
        margin-bottom: 10px;
    }

    .footer .top .right .telBox .num,
    .footer .top .right .telBox .num a {
        font-size: 30px;
        margin-bottom: 3px;
        text-align: left;
    }

    .footer .top .right .telBox .num {
        display: block;
    }

    .footer .top .right .telBox .num .small {
        font-size: 17px;
        width: 40px;
    }

    .footer .top .right .telBox .cm {
        margin-top: 10px;
    }

    .footer .policy.sp {
        display: none;
    }

    .footer .pageTopInner {
        bottom: 80px;
        right: 11px;
    }

    .footer .pageTop {
        width: 53px;
        height: 53px;
    }

}

@media screen and (max-width: 599px) {

    .footer .bottom .bottomInner {
        padding: 50px 0 47px 0;
    }

    .footer .bottom .bottomInner::before {
        left: 50%;
        transform: translateX(-50%);
        margin: auto;
        width: calc(100% - 50px);
    }


    /*left*/
    .footer .bottom .flex .left {
        background: none;
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .footer .bottom .flex .left .logo {
        background: url(../img/common/wako.png) no-repeat center;
        background-size: auto 100%;
        padding: 25px 0;
        margin-bottom: 1px;
    }

    .footer .bottom .flex .left .logo img {
        width: 260px;
        height: 35px;
        margin: 0 auto;
    }

    .footer .bottom .flex .left .text {
        position: relative;
        font-size: 14px;
        line-height: 1.571428571;
        padding-left: 66px;
        max-width: 274px;
        margin: 0 auto 24px auto;
        text-align: left;
    }

    .footer .bottom .flex .left .text::before {
        content: "";
        position: absolute;
        top: 4px;
        left: 60px;
        width: 1px;
        height: calc(100% - 8px);
        background-color: #AAAAAA;
    }

    .footer .bottom .flex .left .text .bold {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        margin: auto;
    }

    .footer .bottom .flex .left .text .sp {
        display: block;
    }

    .fotterTitle {
        display: inline-block;
    }

    .fotterTitle a {
        margin-left: 9px;
        margin-top: -3px;
    }

    .fotterTitle a img {
        width: 26px;
        height: 26px;
    }

    /*right*/
    .footer .bottom .flex .right {
        display: none;
    }

    /*groupBox*/
    .footer .groupBox {
        max-width: 220px;
        padding: 30px 0;
        justify-content: center;
        row-gap: 12px;
    }

    .footer .groupBox .title {
        position: relative;
        top: auto;
        transform: none;
        display: inline-block;
        font-size: 12px;
        padding: 0 0 0 7px;
        width: auto;
    }

    .footer .groupBox .title::before {
        width: 2px;
        height: 15px;
    }

    .footer .groupBox .title .bold {
        display: inline-block;
        vertical-align: middle;
        font-size: 15px;
        margin-right: 3px;
    }

    .footer .policy.sp {
        display: block;
        width: auto;
        margin-top: 25px;
    }

    .footer .policy a {
        display: inline-block;
    }

    /*bannerBox*/
    .footer .bannerBox {
        padding: 30px 0;
    }

    .footer .bannerBox .flex {
        row-gap: 12px;
        justify-content: center;
        max-width: 220px;
    }

    /*copy*/
    .footer .copy {
        font-size: 10px;
        font-weight: 300;
        padding: 12px 0 86px 0;
    }

    /*footer-top*/
    .footer .top {
        background-image: url(../img/common/footer-bg-sp.webp);
        padding: 13.333333333333334vw 0 22px 0;
    }

    .index .footer .top {
        background-image: url(../img/top/footer-bg-sp-index.webp);
    }

    /*bgWhiteLeft*/
    .footer .bgWhiteLeft::before {
        display: none;
    }

    .footer .top .inner {
        background-color: #fff;
        border-radius: 20px;
        padding: 40px 20px 44px 20px;
        width: calc(100% - 72px);
    }

    .footer .top .inner::before {
        top: -3px;
        right: -14px;
        min-width: 88px;
        min-height: 88px;
        width: 15vw;
        height: 15vw;
    }

    .footer .top .left {
        width: 100%;
        max-width: 262px;
        margin: 0 auto 22px auto;
    }

    .footer .top .right {
        width: 100%;
        display: block;
    }

    .footer .top .right .telBox {
        width: 100%;
        max-width: 251px;
        margin: 0 auto 30px auto;
        text-align: center;
    }

    .footer .top .right .telBox .text {
        font-size: 15px;
        padding: 7px 19px;
        margin-bottom: 10px;
    }

    .footer .top .right .telBox .num,
    .footer .top .right .telBox .num a {
        font-size: 30px;
        margin-bottom: 3px;
        text-align: left;
    }

    .footer .top .right .telBox .num {
        display: block;
    }

    .footer .top .right .telBox .num .small {
        font-size: 17px;
        width: 40px;
    }

    .footer .top .right .telBox .cm {
        margin-top: 10px;
    }

    .footer .pageTopInner {
        bottom: 80px;
        right: 11px;
    }

    .footer .pageTop {
        width: 53px;
        height: 53px;
    }

}

/*--------------------------------------------------------------------------------------------------------------------

共通

--------------------------------------------------------------------------------------------------------------------*/
/*linkList*/
.linkList {
    border-top: 1px solid #E3E3E3;
}

.linkList a {
    font-size: 22px;
    font-weight: bold;
    color: #0B3A65;
    padding: 35px 79px 35px 110px;
    border-bottom: 1px solid #E3E3E3;
    transition: .2s;
}

.linkList a.companyLink {
    background-image: url(../img/common/icon-link-1.png), url(../img/common/icon-right-blue.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center left 36px, center right 57px;
    background-size: 60px, 16px;
}

.linkList a.companyLink:hover {
    background-image: url(../img/common/icon-link-1-hover.png), url(../img/common/icon-right-blue.svg);
    background-position: center left 36px, center right 36px;
}

.linkList a.accessLink {
    background-image: url(../img/common/icon-link-2.png), url(../img/common/icon-right-blue.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center left 36px, center right 57px;
    background-size: 60px, 16px;
}

.linkList a.accessLink:hover {
    background-image: url(../img/common/icon-link-2-hover.png), url(../img/common/icon-right-blue.svg);
    background-position: center left 36px, center right 36px;
}

.linkList a.historyLink {
    background-image: url(../img/common/icon-link-3.png), url(../img/common/icon-right-blue.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center left 36px, center right 57px;
    background-size: 60px, 16px;
}

.linkList a.historyLink:hover {
    background-image: url(../img/common/icon-link-3-hover.png), url(../img/common/icon-right-blue.svg);
    background-position: center left 36px, center right 36px;
}

.linkList a.licenseLink {
    background-image: url(../img/common/icon-link-4.png), url(../img/common/icon-right-blue.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center left 36px, center right 57px;
    background-size: 60px, 16px;
}

.linkList a.licenseLink:hover {
    background-image: url(../img/common/icon-link-4-hover.png), url(../img/common/icon-right-blue.svg);
    background-position: center left 36px, center right 36px;
}

.linkList a.qualityLink {
    background-image: url(../img/common/icon-link-5.png), url(../img/common/icon-right-blue.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center left 36px, center right 57px;
    background-size: 60px, 16px;
}

.linkList a.qualityLink:hover {
    background-image: url(../img/common/icon-link-5-hover.png), url(../img/common/icon-right-blue.svg);
    background-position: center left 36px, center right 36px;
}

.linkList a.messageLink {
    background-image: url(../img/common/icon-link-6.png), url(../img/common/icon-right-blue.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center left 36px, center right 57px;
    background-size: 60px, 16px;
}

.linkList a.messageLink:hover {
    background-image: url(../img/common/icon-link-6-hover.png), url(../img/common/icon-right-blue.svg);
    background-position: center left 36px, center right 36px;
}

@media screen and (max-width: 1023px) {

    .linkList a {
        font-size: 18px;
        padding: 20px 36px 20px 65px;
        background-position: center left 10px, center right 10px !important;
        background-size: 44px, 16px !important;
    }

}

/*linkBox*/
.linkBox {
    position: relative;
    margin-top: 120px;
}

.linkBox .linkList {
    padding: 40px 50px;
    border-radius: 20px;
    background-color: #FDF6E0;
    column-gap: 33px;
    row-gap: 20px;
    justify-content: space-between;
    border-top: none;
}

.linkBox .linkList li {
    width: calc(100% / 3 - 22px);
}

.linkBox .linkList a {
    background-color: #fff;
    border-radius: 10px;
    border: none;
}

@media screen and (max-width: 1323px) {

    .linkBox .linkList li {
        width: calc(100% / 2 - 22px);
    }

}

@media screen and (max-width: 1023px) {

    .linkBox {
        margin-top: 56px;
    }

    .linkBox .linkList {
        padding: 31px;
        row-gap: 10px;
        border-radius: 10px;
    }

    .linkBox .linkList li {
        width: 100%;
    }

}

/*project*/
.project {
    padding: 35px 40px;
    border-radius: 10px;
    background-color: #F7F7F7;
    margin-bottom: 72px;
}

.project h5 {
    font-size: 18px;
    line-height: 1.4;
    padding-bottom: 6px;
    margin-bottom: 24px;
    color: #0B3A65;
    border-color: #D6D6D6;
}

.project h5::before {
    width: 8px;
    height: 8px;
    border-radius: 0;
    background-color: #E35700;
}

.project .flex {
    justify-content: space-between;
    column-gap: 64px;
    row-gap: 16px;
}

.project .flex .box {
    width: calc(50% - 32px);
}

.project .flex .w100 {
    width: 100%;
}

.project .flex .box dt {
    color: #fff;
    background-color: #0B3A65;
    border-radius: 2px;
    text-align: center;
    padding: 3px;
    margin-right: 15px;
    width: 116px;
    display: inline-block;
}

.project .flex .box dd {
    width: calc(100% - 135px);
    display: inline-block;
}

@media screen and (max-width: 1023px) {

    .project {
        padding: 20px 16px;
        margin-bottom: 40px;
    }

    .project h5 {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .project h5::before {
        top: 11px;
    }

    .project .flex {
        row-gap: 12px;
    }

    .project .flex .box {
        width: 100%;
    }

    .project .flex .box dt {
        font-size: 14px;
        padding: 3px;
        margin-right: 0;
        width: 100px;
        display: block;
        margin-bottom: 8px;

    }

    .project .flex .box dd {
        width: 100%;
        display: block;
    }

}

/*--------------------------------------------------------------------------------------------------------------------

トップページ

--------------------------------------------------------------------------------------------------------------------*/
/*-----------------------------MV*/
.mv {
    position: relative;
    height: calc(var(--vh, 1vh) * 100);
}

.mv::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 13.571428571428571vw;
    background: url(../img/top/mv-ab.png) no-repeat top center;
    background-size: 100% auto;
    z-index: 9;
}

.mv .textBox {
    position: absolute;
    top: calc(50% - 2vw);
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    width: 500px;
    height: 110px;
    z-index: 10;
}

.mv .textBox .img1 {
    position: absolute;
    top: 0;
    left: 0;
}

.mv .ilustBox {
    position: absolute;
    top: calc(50% - 2vw);
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    width: 409px;
    height: 378px;
    z-index: 9;
}

.mv .bgBox {
    position: absolute;
    top: calc(50% - 2vw);
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    width: 100%;
    max-width: 1335px;
    height: 395px;
    z-index: 8;
}

.animated {
    visibility: hidden;
    /* 初期状態で非表示 */
    opacity: 0;
    /* 初期状態で透明 */
}

.mv .mvSwiper {
    z-index: 9;
    height: 100%;
}

.mv .mvSwiper .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.mv .mvSwiper .swiper-pagination {
    bottom: 5.357142857142857vw;
    right: 100px;
    left: auto;
    text-align: right;
    height: 4px;
}

.mv .mvSwiper .swiper-pagination .swiper-pagination-bullet {
    width: 36px;
    height: 4px;
    background-color: #D3D1B6;
    border-radius: 4px;
    opacity: 1;
    margin: 0 5px;
    transition: .5s;
}

.mv .mvSwiper .swiper-pagination .swiper-pagination-bullet-active {
    position: relative;
}

.mv .mvSwiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #F5911E;
}

.mv .scroll {
    position: absolute;
    bottom: min(85px, 6.071428571428571vw);
    left: 100px;
    width: 48px;
    height: 13px;
    font-family: "Montserrat", serif;
    font-weight: 700;
    font-size: 10px;
    color: #0B3A65;
    padding-left: 12px;
    z-index: 11;
}

.mv .scroll .en {
    position: absolute;
    top: 5px;
    left: 0;
    height: 8px;
    width: 8px;
    border-radius: 8px;
    background-color: #F5911E;
    transition: top 2s ease;
    /* スライドの切り替えに合わせてスムーズに動かす */
}

@media screen and (max-width: 1023px) {

    .mv::before {
        bottom: -2px;
        height: 22.133333333333333vw;
        background-image: url(../img/top/mv-ab-sp.png);
    }

    .mv .textBox {
        top: 50%;
        left: calc(50% + 6px);
        min-width: 326px;
        width: 86.93333333333332vw;
        max-width: 500px;
        max-height: 110px;
        min-height: 71px;
        height: 18.933333333333334vw;
    }

    .mv .ilustBox {
        top: 50%;
        left: calc(50% + 14px);
        min-width: 261px;
        min-height: 236px;
        max-width: 409px;
        max-height: 378px;
        width: 69.6vw;
        height: 62.93333333333333vw;
    }

    .mv .bgBox {
        top: calc(50% - 1vw);
        width: calc(100% - 30px);
        height: calc(var(--vh, 1vh) * 100 - 130px);
    }

    .mv .bgBox .wow {
        position: relative;
        height: calc(var(--vh, 1vh) * 100 - 130px);
        max-width: 650px;
        margin: 0 auto;
    }

    .mv .bgBox .wow::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 211px;
        height: 158px;
        background: url(../img/top/mv-bgBox1.png) no-repeat center;
        background-size: 100% auto;
    }

    .mv .bgBox .wow::after {
        content: "";
        position: absolute;
        bottom: 50px;
        right: 0;
        width: 201px;
        min-height: 109px;
        background: url(../img/top/mv-bgBox2.png) no-repeat center;
        background-size: 100% auto;
    }

    .mv .mvSwiper .swiper-pagination,
    .mv .scroll {
        display: none;
    }

}

/*aboutTop*/
.aboutTop {
    position: relative;
    padding: 0 0 6.714285714285714vw 0;
    background-image: url(../img/top/aboutTop-bg2-pc.webp), url(../img/top/aboutTop-bg1-pc.webp);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom center, top center;
    background-size: 100% auto, 100% auto;
    background-color: #FFF799;
    z-index: 9;
}

.aboutTop::before {
    content: "";
    position: absolute;
    bottom: 6.714285714285714vw;
    left: 0;
    width: 100%;
    height: 10vw;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), #FFF799 0%, rgba(255, 255, 255, 0) 100%, #FFF799);
}

.aboutTop::after {
    content: "";
    position: absolute;
    bottom: 7px;
    right: 26.9%;
    width: 209px;
    height: 318px;
    background-image: url(../img/top/aboutTop-ab.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    z-index: 1;
}

.aboutTop .bgWhiteLeft {
    position: relative;
}

.aboutTop .bgWhiteLeft::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 7.142857142857142vw);
    height: 100%;
    border-radius: 0 20px 20px 0;
    background-image: url(../img/top/aboutTop-bg.webp);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 100% auto;
    background-color: #fff;
}

.aboutTop .inner {
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 90px 24px 20vw 16px;
}

.aboutTop .right {
    width: calc(100% - 548px);
}

.aboutTop .right img {
    width: 100%;
}

.aboutTop .left {
    width: 548px;
    padding-right: 69px;
}

.aboutTop .left .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.375;
    color: #0B3A65;
}

.aboutTop .left .title .sub {
    font-size: 22px;
    line-height: 1.409090909;
    display: block;
}

.aboutTop .left .text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.875;
    margin: 20px 0 0 0;
}

@media screen and (max-width: 1023px) {

    .aboutTop {
        padding: 0 0 12vw 0;
        background-image: url(../img/top/aboutTop-bg2-sp.webp), url(../img/top/aboutTop-bg1-sp.webp);
    }

    .aboutTop::before {
        bottom: 50%;
        height: 10vw;
    }

    .aboutTop::after {
        bottom: -75px;
        right: 57px;
        width: 154px;
        height: 195px;
    }

    .aboutTop .bgWhiteLeft::before {
        width: calc(100% - 14px);
        background-image: url(../img/top/aboutTop-bg-sp.webp);
    }

    .aboutTop .inner {
        padding: 47px 0 79px 0;
        width: calc(100% - 72px);
    }

    .aboutTop .right {
        width: 100%;
        padding: 14px 10px 0 14px;
    }

    .aboutTop .left {
        width: 100%;
        padding-right: 0;
    }

    .aboutTop .left .title {
        font-size: 19px;
        line-height: 1.526315789;
    }

    .aboutTop .left .title .sub {
        font-size: 14px;
    }

    .aboutTop .left .text {
        font-size: 15px;
        line-height: 1.7333333333;
        margin: 17px 0 0 0;
    }

}

/*serviceTop*/
.serviceTop {
    position: relative;
    padding: 96px 0 106px 0;
}

.serviceTop::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -44px;
    width: 233px;
    height: 189px;
    background-image: url(../img/common/slash2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
}

.serviceTop::after {
    content: "";
    position: absolute;
    bottom: -44px;
    left: -92px;
    width: 233px;
    height: 189px;
    background-image: url(../img/common/slash2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    z-index: 1;
}

.serviceTop .inner {
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.serviceTop .left {
    width: calc(100% - 515px);
    padding-right: 67px;
}

.serviceTop .right {
    width: 515px;
}

.serviceTop .right .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.375;
    color: #0B3A65;
}

.serviceTop .right .text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.875;
    margin: 20px 0 30px 0;
    max-width: 479px;
}

@media screen and (max-width: 1023px) {

    .serviceTop {
        padding: 99px 0 85px 0;
    }

    .serviceTop::before,
    .serviceTop::after {
        display: none;
    }

    .serviceTop .inner {
        width: calc(100% - 72px);
    }

    .serviceTop .left {
        width: auto;
        padding-right: 0;
        position: absolute;
        top: 111px;
        right: -97px;
        z-index: -1;
    }

    .serviceTop .left img {
        width: auto;
        height: 175px;
    }

    .serviceTop .right {
        width: 100%;
    }

    .serviceTop .right .title {
        font-size: 19px;
        line-height: 1.526315789;
    }

    .serviceTop .right .text {
        font-size: 15px;
        line-height: 1.7333333333;
        margin: 17px 0 30px 0;
        max-width: 100%;
        padding-right: 27.46666666666667vw;
    }

}

/*featureTop*/
.featureTop {
    position: relative;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), #FCF7EA 50%, rgba(255, 255, 255, 0) 100%, #FCF7EA);
}

.featureTop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url(../img/top/feature-1-pc.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

.featureTop::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url(../img/top/feature-2-pc.webp);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    z-index: -1;
}

.featureTop .bg {
    position: relative;
    padding: 114px 0 147px 0;
}

.featureTop .bg::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: auto;
    width: 100%;
    height: 50vw;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), #FCF7EA 50%, rgba(255, 255, 255, 0) 100%, #FCF7EA);
}

.featureTop .bg::after {
    content: "";
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    width: calc(100% - 130px);
    height: 160px;
    max-width: 1224px;
    background: url(../img/common/illust-4.png) no-repeat top right;
    background-size: auto 100%;
}

.featureTop .sectionTitle {
    position: relative;
    max-width: 508px;
}

.featureTop .featureList {
    position: relative;
    justify-content: space-between;
    column-gap: 36px;
    align-items: flex-start;
}

.featureTop .featureList .box {
    width: calc(50% - 18px);
    border-bottom: 1px solid #F9AE3B;
}

.featureTop .featureList .box:nth-child(4),
.featureTop .featureList .box:nth-child(5) {
    border-bottom: none;
}

.featureTop .featureList .box:nth-child(even) {
    margin-top: 55px;
}

.featureTop .featureList .box:nth-child(6) {
    border-bottom: none;
    margin-top: 0;
}

.featureTop .featureList .box:nth-child(6) .ilust {
    margin: 21px auto 9px auto;
    padding-left: 16px;
}

.featureTop .featureList .box .img {
    border-radius: 10px;
    max-height: 296px;
    height: 100%;
    overflow: hidden;
}

.featureTop .featureList .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featureTop .featureList .box .textBox {
    position: relative;
    padding: 12px 0 55px 0;
}

.featureTop .featureList .box .textBox::before {
    content: "";
    position: absolute;
    top: -59px;
    right: 21px;
    width: 115px;
    height: 93px;
    background: url(../img/common/slash.png) no-repeat center;
    background-size: cover;
}

.featureTop .featureList .box .textBox .point {
    font-family: "Montserrat", serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    color: #F5711E;
    text-align: center;
    margin-right: 15px;
    margin-left: -12px;
    border-right: 1px solid #F5711E;
    display: inline-block;
    width: 87px;
}

.featureTop .featureList .box .textBox .point .num {
    font-size: 44px;
    font-weight: 700;
    display: block;
}

.featureTop .featureList .box .textBox .title {
    position: relative;
    width: calc(100% - 94px);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.409090909;
    color: #0B3A65;
    display: inline-block;
}

@media screen and (max-width: 1023px) {

    .featureTop {
        background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), #FEFDFA 50%, rgba(255, 255, 255, 0) 100%, #FEFDFA);
    }

    .featureTop .inner {
        width: calc(100% - 72px);
    }

    .featureTop::before {
        background-image: url(../img/top/feature-1-sp.webp);
    }

    .featureTop::after {
        background-image: url(../img/top/feature-2-sp.webp);
    }

    .featureTop .bg {
        padding: 60px 0 68px 0;
    }

    .featureTop .bg::before {
        background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), #FEFDFA 50%, rgba(255, 255, 255, 0) 100%, #FEFDFA);
    }

    .featureTop .bg::after {
        top: -32px;
        width: calc(100% - 64px);
        min-height: 70px;
        height: 18.666666666666668vw;
    }

    .featureTop .sectionTitle {
        max-width: 280px;
    }

    .featureTop .featureList {
        row-gap: 30px;
    }

    .featureTop .featureList .box {
        width: 100%;
        border-bottom: none;
    }

    .featureTop .featureList .box:nth-child(even) {
        margin-top: 0;
    }

    .featureTop .featureList .box:nth-child(6) .ilust {
        display: none;
    }

    .featureTop .featureList .box .img {
        max-height: 100%;
        min-height: 187px;
    }

    .featureTop .featureList .box .textBox {
        padding: 12px 0 0 0;
    }

    .featureTop .featureList .box .textBox::before {
        top: -51px;
        right: 10px;
        width: 74px;
        height: 60px;
    }

    .featureTop .featureList .box .textBox .point {
        font-size: 10px;
        margin-right: 10px;
        margin-left: -10px;
        width: 60px;
    }

    .featureTop .featureList .box .textBox .point .num {
        font-size: 34px;
    }

    .featureTop .featureList .box .textBox .title {
        width: calc(100% - 64px);
        font-size: 16px;
        line-height: 1.5;
    }

}

/*caseTop*/
.caseTop {
    position: relative;
    padding: 122px 0 60px 0;
}

.caseTop::before {
    content: "";
    position: absolute;
    top: -112px;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    width: calc(100% - 130px);
    height: 202px;
    max-width: 1200px;
    background: url(../img/top/illust-case.png) no-repeat top right;
    background-size: auto 100%;
}

.caseTop .sectionTitle {
    max-width: 200px;
}

.caseList {
    justify-content: space-between;
    column-gap: 37px;
    row-gap: 32px;
}

.caseTop .caseList {
    margin-bottom: 32px;
}

.pageCase .caseList::after {
    content: "";
    display: block;
    width: calc(100% / 3 - 25.5px);
}

.caseList .box {
    width: calc(100% / 3 - 25.5px);
    border-radius: 10px;
    background-color: #FDF6E0;
}

.caseList .box .img {
    border-radius: 10px 10px 0 0;
    max-height: 236px;
    height: 16.857142857142858vw;
    overflow: hidden;
}

.caseList .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.caseList .box:hover .img img {
    transform: scale(1.2);
}

.caseList .box .textBox {
    position: relative;
    padding: 27px 21px 56px 21px;
    background: url(../img/common/icon-right-orange.svg) no-repeat bottom 23px right 31px;
    background-size: 16px;
    transition: .3s;
}

.caseList .box .textBox::before {
    content: "";
    position: absolute;
    top: -33px;
    right: 21px;
    width: 115px;
    height: 93px;
    background: url(../img/common/slash.png) no-repeat center;
    background-size: cover;
}

.caseList .box:hover .textBox {
    background-position: bottom 23px right 21px;
}

.caseList .category {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    padding: 6px 10px;
    border-radius: 100px;
    background-color: #fff;
    color: #F5711E;
    border: 1px solid #F5711E;
    display: inline-block;
    text-align: center;
    min-width: 139px;
    margin-bottom: 10px;
}

.caseList .title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.409090909;
    padding-bottom: 12px;
    margin-bottom: 12px;
    color: #0B3A65;
    border-bottom: 1px solid #F9AE3B;
}

.caseList .text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 制限したい行数が3の場合 */
    overflow: hidden;
}

@media screen and (max-width: 1023px) {

    .caseTop {
        padding: 81px 0 76px 0;
    }

    .caseTop .inner {
        width: calc(100% - 72px);
    }

    .caseTop::before {
        top: -34px;
        width: calc(100% - 74px);
        min-height: 81px;
        height: 15vw;
    }

    .caseTop .sectionTitle {
        max-width: 112px;
    }

    .caseList {
        margin-bottom: 30px;
        row-gap: 20px;
    }

    .pageCase .caseList::after {
        display: none;
    }

    .caseList .box {
        width: 100%;
    }

    .caseList .box .img {
        max-height: 100%;
        min-height: 190px;
        height: 50.66666666666667vw;
    }

    .pageCase .caseList .box {
        width: calc(100% / 2 - 18.5px);
    }

    .pageCase .caseList .box .img {
        height: 28vw;
        min-height: auto;
    }

    .caseList .box .textBox {
        padding: 31px 18px 42px 18px;
        background: url(../img/common/icon-right-orange.svg) no-repeat bottom 19px right 18px;
        background-size: 16px;
    }

    .caseList .box .textBox::before {
        top: -41px;
        right: 13px;
        width: 74px;
        height: 60px;
    }

    .caseList .box:hover .textBox {
        background-position: bottom 19px right 18px;
    }

    .caseList .category {
        position: absolute;
        top: -19px;
        left: 18px;
        min-width: 139px;
        margin-bottom: 0;
    }

    .caseList .title {
        font-size: 16px;
        line-height: 1.5;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .caseList .text {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.7333333;
        -webkit-line-clamp: 3;
        /* 制限したい行数が3の場合 */
    }

}

@media screen and (max-width: 599px) {

    .pageCase .caseList .box {
        width: 100%;
    }

    .pageCase .caseList .box .img {
        min-height: 190px;
        height: 50.66666666666667vw;
    }

}

/*-----------------------------newsList*/
.newsTop .flex {
    background: url(../img/top/newsTop.webp) no-repeat top 247px left 49px;
    background-size: 132px;
    align-items: flex-start;
    padding: 125px 0 95px 0;
}

.newsTop .left {
    width: 259px;
}

.newsTop .right {
    width: calc(100% - 259px);
}

.newsTop .newsList {
    border-top: 1px solid #E3E3E3;
}

.newsTop .newsList {
    margin-bottom: 32px;
}

.newsList a {
    padding: 24px 100px 24px 0;
    background: url(../img/common/icon-right-orange.svg) no-repeat bottom 31px right 44px;
    background-size: 16px;
    border-bottom: 1px solid #E3E3E3;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    transition: .3s;
}

.newsTop .newsList a {
    padding: 35px 100px 35px 56px;
    background: url(../img/common/icon-right-orange.svg) no-repeat bottom 43px right 56px;
}

.newsTop .newsList a.important {
    background-image: url(../img/common/icon-right-red.svg);
}

.newsList a:hover {
    background-position: bottom 31px right;
}

.newsTop .newsList a:hover {
    background-position: bottom 45px right 16px;
}

.newsList .category {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.846153846;
    padding: 0 10px;
    border: 1px solid #F5711E;
    border-radius: 100px;
    color: #F5711E;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    min-width: 139px;
    margin-right: 10px;
    transition: .3s;
}

.newsList .important .category {
    border: 2px solid #FF0000;
    color: #FF0000;
}

.newsList .date {
    font-family: "Roboto", serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: 7px;
    transition: .3s;
}

.pageNewsDetail .newsList .date {
    margin-top: 4px;
}

.newsList a .title {
    display: inline-block;
    vertical-align: middle;
    font-weight: 500;
    font-size: 16px;
    width: calc(100% - 236px);
    margin-top: -2px;
    transition: .3s;
}

.newsList a:hover .category,
.newsList a:hover .date,
.newsList a:hover .title {
    opacity: .5;
}

@media screen and (max-width: 1023px) {

    .newsTop .flex {
        background: url(../img/top/newsTop.webp) no-repeat top 30px right 39px;
        background-size: 46px;
        padding: 60px 0 65px 0;
        justify-content: center;
        width: calc(100% - 72px);
    }

    .newsTop .left {
        width: 112px;
    }

    .newsTop .right {
        width: 100%;
    }

    .pageNews .newsList {
        border-top: 1px solid #E3E3E3;
    }

    .newsTop .newsList {
        margin-bottom: 30px;
    }

    .newsList a,
    .newsTop .newsList a {
        padding: 16px 45px 16px 16px;
        background: url(../img/common/icon-right-orange.svg) no-repeat bottom 20px right 16px;
        background-size: 16px;
    }

    .newsList a:hover,
    .newsTop .newsList a:hover {
        background-position: bottom 20px right 16px;
    }

    .newsList .category {
        font-size: 12px;
        line-height: 2;
        padding: 0 10px;
        min-width: 120px;
    }

    .newsTop .newsList .important .category {
        border: 1px solid #FF0000;
    }

    .newsList .date {
        font-size: 12px;
        margin-top: 8px;
    }

    .newsList a .title {
        display: block;
        font-size: 15px;
        line-height: 1.6;
        width: 100%;
        margin-top: 10px;
    }

}

/*recruitTop*/
.recruitTop {
    position: relative;
    background-image: url(../img/top/recruitTopBottom.webp), url(../img/top/recruitTopBottom-bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom center, top center;
    background-size: 100% auto, 100% auto;
    padding: 14.285714285714285vw 0 0.8571428571428572vw 0;
}

.recruitTop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7.142857142857142vw;
    background-image: url(../img/top/recruitTopBottom-ab.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

.recruitTop .inner {
    justify-content: space-between;
    row-gap: 25px;
}

.recruitTop .left {
    width: calc(100% - 537px);
    padding-top: 13px;
}

.recruitTop .right {
    width: 480px;
}

.recruitTop .right .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.375;
    color: #0B3A65;
}

.recruitTop .right .text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.875;
    margin: 20px 0 30px 0;
}

@media screen and (max-width: 1023px) {

    .recruitTop {
        background-image: url(../img/top/recruitTopBottom-sp.webp), url(../img/top/recruitTopBottom-bg-sp.webp);
        padding: 17.066666666666666vw 0 18.666666666666668vw 0;
    }

    .recruitTop::before {
        height: 6.666666666666667vw;
        background-image: url(../img/top/recruitTopBottom-ab-sp.webp);
    }

    .recruitTop .inner {
        width: calc(100% - 76px);
    }

    .recruitTop .left {
        width: 100%;
        padding-top: 0;
    }

    .recruitTop .left img {
        width: 100%;
        margin: 0 auto;
    }

    .recruitTop .right {
        width: 100%;
    }

    .recruitTop .right .title {
        font-size: 19px;
        line-height: 1.526315789;
    }

    .recruitTop .right .text {
        font-size: 15px;
        line-height: 1.7333333333;
        margin: 17px 0 30px 0;
    }

}

/*companyTop*/
.companyTop {
    position: relative;
    padding: 11.5vw 0 10.285714285714285vw 0;
    background-image: url(../img/top/companyTop-bg2-pc.webp), url(../img/top/companyTop-bg1-pc.webp);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom center, top center;
    background-size: 100% auto, 100% auto;
    background-color: #FCF7EA;
}

.companyTop::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: auto;
    width: 100%;
    height: 40vw;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), #FCF7EA 50%, rgba(255, 255, 255, 0) 100%, #FCF7EA);
}

.companyTop::after {
    content: "";
    position: absolute;
    top: -54px;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    width: calc(100% - 130px);
    height: 169px;
    max-width: 1116px;
    background: url(../img/top/companyTop-ab.png) no-repeat top left;
    background-size: auto 100%;
}

.companyTop .bgWhiteRight {
    position: relative;
}

.companyTop .bgWhiteRight::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 7.142857142857142vw);
    height: 100%;
    border-radius: 20px 0 0 20px;
    background-image: url(../img/top/companyTop-bg.webp);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% auto;
    background-color: #fff;
}

.companyTop .bgWhiteRight::after {
    content: "";
    position: absolute;
    top: -86px;
    right: 0;
    width: 100%;
    height: calc(100% + 86px);
    background-image: url(../img/common/slash2.png), url(../img/common/slash2.png);
    background-repeat: no-repeat, no-repeat;
    background-position: top right -44px, bottom 14px left -92px;
    background-size: 233px, 233px;
}

.companyTop .inner {
    position: relative;
    padding: 90px 17px 14.499999999999998vw 120px;
    row-gap: 50px;
    z-index: 1;
    width: calc(100% - 174px);
}

.companyTop .left {
    position: relative;
    max-width: 406px;
    width: 44%;
    margin-right: 10%;
}

.companyTop .right {
    position: relative;
    width: 46%;
    margin-top: 87px;
}

.companyTop .left .img {
    position: relative;
    margin-bottom: 34px;
}

.companyTop .left .img::before {
    content: "";
    position: absolute;
    bottom: -16px;
    left: -37px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(#FFF895, #FD9250);
}

.companyTop .left .img img {
    position: relative;
    width: 100%;
    border-radius: 10px;
    transition: .3s;
}

.companyTop .left .subTitle {
    font-size: 22px;
    color: #0B3A65;
}

.companyTop .left .text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.875;
    margin-bottom: 30px;
}

@media screen and (max-width: 1023px) {

    .companyTop {
        padding: 21.066666666666666vw 0 12vw 0;
        background-image: url(../img/top/companyTop-bg2-sp.webp), url(../img/top/companyTop-bg1-sp.webp);
    }

    .companyTop::before {
        height: 40vw;
    }

    .companyTop::after {
        top: -6px;
        width: calc(100% - 44px);
        min-height: 67px;
        height: 17.866666666666667vw;
    }

    .companyTop .bgWhiteRight::before {
        width: calc(100% - 14px);
        background-image: url(../img/top/companyTop-bg-sp.webp);
    }

    .companyTop .bgWhiteRight::after {
        display: none;
    }

    .companyTop .inner {
        padding: 50px 0 27.73333333333333vw 0;
        width: calc(100% - 72px);
    }

    .companyTop .left {
        max-width: 100%;
        width: 100%;
        margin-right: 0;
    }

    .companyTop .right {
        width: 100%;
        margin-top: 0;
    }

    .companyTop .left .img {
        margin-bottom: 30px;
        padding: 0 17px;
    }

    .companyTop .left .img::before {
        left: 0;
        width: calc(100% - 34px);
    }

    .companyTop .left .subTitle {
        font-size: 16px;
    }

    .companyTop .left .text {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.733333333;
    }

}

/*faqTop*/
.faqTop {
    position: relative;
    padding: 155px 0 126px 0;
}

.faqTop::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    width: calc(100% - 130px);
    max-width: 1200px;
    height: 1px;
    background-color: #C6C6C6;
}

.faqTop::after {
    content: "";
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    width: calc(100% - 130px);
    height: 207px;
    max-width: 1178px;
    background: url(../img/top/faqTop-ab.png) no-repeat top right;
    background-size: auto 100%;
}

.faqTop .sectionTitle {
    max-width: 288px;
}

.faqList {
    display: flex;
    flex-direction: column;
    row-gap: 13px;
}

.faqTop .faqList {
    margin-bottom: 32px;
}

.faqList .box .toggleBtn {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.66666666;
    padding: 36px 118px;
    background-color: #FFD28D;
    color: #E35700;
    border-radius: 10px;
    transition: .5s;
    cursor: pointer;
}

.faqList .box .toggleBtn.is-active {
    border-radius: 10px 10px 0 0;
}

.faqList .box .toggleBtn .icon {
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    margin: auto;
    width: 13.89px;
    height: 13.89px;
}

.faqList .box .toggleBtn .icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    width: 13.89px;
    height: 2px;
    background: #E35700;
}

.faqList .box .toggleBtn .icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    height: 13.89px;
    width: 2px;
    background: #E35700;
}

.faqList .box .toggleBtn.is-active .icon::after {
    display: none;
}

.faqList .box .qa {
    position: absolute;
    top: 50%;
    left: 38px;
    transform: translateY(-50%);
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    display: inline-block;
}

.faqList .box .q {
    color: #E35700;
    background-color: #fff;
}

.faqList .box .a {
    background-color: #F5711E;
    color: #fff;
}

.faqList .box .child {
    position: relative;
    display: none;
    font-size: 16px;
    line-height: 1.875;
    background-color: #FDF6E0;
    border-radius: 0 0 10px 10px;
    padding: 36px 36px 36px 118px;
}

@media screen and (max-width: 1023px) {

    .faqTop {
        padding: 110px 0 60px 0;
    }

    .faqTop::after {
        top: -21px;
        width: calc(100% - 30px);
        min-height: 83px;
        height: 15vw;
    }

    .faqTop::before {
        width: calc(100% - 32px);
    }

    .faqTop .sectionTitle {
        max-width: 160px;
    }

    .faqList {
        row-gap: 10px;
    }

    .faqTop .faqList {
        margin-bottom: 30px;
    }

    .faqList .box .toggleBtn {
        font-size: 17px;
        line-height: 1.647058823;
        padding: 14px 59px 14px 74px;
    }

    .pageFaq .faqList .box .toggleBtn {
        font-size: 16px;
        line-height: 1.75;
        padding: 14px 43px 14px 55px;
    }

    .faqList .box .toggleBtn .icon {
        right: 20px;
        width: 11.28px;
        height: 11.28px;
    }

    .pageFaq .faqList .box .toggleBtn .icon {
        right: 18px;
    }

    .faqList .box .toggleBtn .icon::before {
        width: 11.28px;
    }

    .faqList .box .toggleBtn .icon::after {
        height: 11.28px;
    }

    .faqList .box .qa {
        left: 20px;
        width: 35px;
        height: 35px;
        font-size: 15px;
        line-height: 35px;
    }


    .pageFaq .faqList .box .qa {
        left: 12px;
        width: 32px;
        height: 32px;
    }

    .faqList .box .child {
        font-size: 15px;
        line-height: 1.7333333;
        padding: 30px 22px 30px 74px;
    }

    .pageFaq .faqList .box .child {
        padding: 30px 38px 30px 55px;
    }

}

/*pagination*/
.pagination {
    margin-top: 70px;
}

.pagination .flex {
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
}

.pagination .button a {
    width: 8.49px;
    height: 16.97px;
    margin: 0 auto;
}

.pagination .button.prev a {
    background: url(../img/common/prev.png) no-repeat center;
    background-size: 100% auto;
}

.pagination .button.prev a:hover {
    background: url(../img/common/prev-hover.png) no-repeat center;
    background-size: 100% auto;
}

.pagination .button.next a {
    background: url(../img/common/next.png) no-repeat center;
    background-size: 100% auto;
}

.pagination .button.next a:hover {
    background: url(../img/common/next-hover.png) no-repeat center;
    background-size: 100% auto;
}

.pagination .num a {
    font-weight: 400;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 2px solid #F5711E;
    padding-top: 4px;
    color: #333;
}

.pagination .num a:hover {
    background: #F5711E;
    color: #fff;
}

@media screen and (max-width: 1023px) {

    .main.page .pagination {
        width: 100%;
        margin-top: 30px;
        max-width: 240px;
    }

    .pagination .button {
        width: 100%;
    }

}

/*paging*/
.paging {
    justify-content: space-between;
    align-items: center;
    column-gap: 18px;
}

.paging .box {
    width: calc(50% - 97px);
    border-radius: 15px;
    background-color: #FDF6E0;
    padding: 20px 28px;
    min-height: 158px;
}

.paging .box3 {
    width: 158px;
    height: 158px;
    border-radius: 15px;
    background-color: #fff;
    padding-top: 103px;
    border: 1px solid #C6C6C6;
    text-align: center;
    background-image: url(../img/common/list.svg);
    background-repeat: no-repeat;
    background-size: 46px;
    background-position: center top 34px;
    transition: .3s;
}

.paging .box3:hover {
    background-image: url(../img/common/list-hover.svg);
}

.paging .box .img {
    max-height: 112px;
    height: 29.86666666666667vw;
    width: 42%;
    border-radius: 5px;
    object-fit: cover;
}

.paging .box2 .img {
    order: 2;
}

.paging .box .text {
    width: 58%;
    padding: 0 0 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.paging .box2 .text {
    order: 1;
    padding: 0 20px 0 0;
}

.paging .box .text .title {
    font-size: 15px;
    font-weight: 700;
    color: #0B3A65;
    margin-bottom: 10px;
}

.paging .box:hover .text .title {
    text-decoration: underline;
}

.paging .box .text .btn {
    transition: .3s;
    background-size: 16px;
}

.paging .box1 .text .btn {
    padding: 0 0 0 40px;
    background: url(../img/common/icon-right-orange2.svg) no-repeat center left 16px;
}

.paging .box1:hover .text .btn {
    background-position: center left;
}

.paging .box2 .text .btn {
    display: block;
    text-align: right;
    padding: 0 40px 0 0;
    background: url(../img/common/icon-right-orange.svg) no-repeat center right 16px;
}

.paging .box2:hover .text .btn {
    background-position: center right;
}

@media screen and (max-width: 1023px) {

    .paging {
        column-gap: 8px;
    }

    .paging .box {
        width: calc(50% - 48px);
        border-radius: 10px;
        padding: 8px;
        min-height: 100%;
    }

    .paging .box3 {
        font-size: 13px;
        width: 80px;
        height: 96px;
        border-radius: 10px;
        padding-top: 63px;
        background-size: 35px;
        background-position: center top 20px;
    }

    .paging .box .img {
        max-height: 100%;
        height: 15.466666666666667vw;
        min-height: 58px;
        width: 100%;
    }

    .paging .box2 .img {
        order: 1;
    }

    .paging .box .text {
        width: 100%;
        padding: 7px 0 0 0;
    }

    .paging .box2 .text {
        order: 2;
        padding: 7px 0 0 0;
    }

    .paging .box .text .title {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .paging .box .text .btn {
        font-size: 13px;
        background-size: 12px;
    }

    .paging .box1 .text .btn {
        padding: 0 0 0 17px;
        background-position: center left;
        background-size: 12px;
    }

    .paging .box2 .text .btn {
        padding: 0 17px 0 0;
        background-position: center right;
    }


}

/*pageContact*/
.pageContact .flex1 {
    justify-content: space-between;
    column-gap: 40px;
    row-gap: 16px;
}

.pageContact .flex1 .box {
    width: calc(50% - 20px);
    background-color: #FDF6E0;
    border-radius: 15px;
    background-repeat: no-repeat;
    background-position: center left min(55px, 3.9285714285714284vw);
    background-size: 68px;
    text-align: center;
    max-height: 140px;
}

.pageContact .flex1 .box1 {
    background-image: url(../img/contact/tel.png);
    padding: 36px min(62px, 4.428571428571428vw) 40px min(172px, 12.285714285714286vw);
}

.pageContact .flex1 .box2 {
    background-image: url(../img/contact/fax.png);
    padding: 50px min(62px, 4.428571428571428vw) 55px min(172px, 12.285714285714286vw);
}

.pageContact .flex1 .box .num {
    font-weight: bold;
    font-size: 32px;
    line-height: 1;
    color: #0B3A65;
    display: inline-block;
    white-space: nowrap;
}

.pageContact .flex1 .box .cm {
    margin-top: 8px;
}

@media screen and (max-width: 1023px) {

    .pageContact .flex1 .box {
        width: 100%;
    }

}

@media screen and (max-width: 599px) {

    .pageContact .flex1 .box {
        background-position: center left 18px;
        background-size: 36px;
        max-height: 97px;
    }

    .pageContact .flex1 .box1 {
        background-image: url(../img/contact/tel-sp.png);
        padding: 21px 20px 21px 75px;
    }

    .pageContact .flex1 .box2 {
        background-image: url(../img/contact/fax-sp.png);
        padding: 38px 20px 38px 75px;
    }

    .pageContact .flex1 .box .num {
        font-size: 22px;
    }

    .pageContact .flex1 .box .cm {
        font-size: 14px;
    }

}

/*form*/
.form {
    max-width: 963px;
    margin: 0 auto;
}

.form .box {
    margin-bottom: 20px;
    align-items: center;
}

.form .box9 {
    align-items: flex-start;
}

.form .box label {
    width: 285px;
    font-size: 18px;
    font-weight: 700;
    margin-right: 19px;
}

.form .radioBox label {
    width: auto;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
}

.form .box label .small {
    font-size: 14px;
}

.form .box label .red {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    width: 50px;
    height: 25px;
    border-radius: 2px;
    background-color: #F4F4F4;
    color: #DB2356;
    line-height: 1;
    padding-top: 6px;
    display: inline-block;
    margin: 5px 0 0 10px;
    vertical-align: top;
}

.form .box input,
.form .box textarea,
.form .box select {
    -webkit-appearance: none;
    appearance: none;
    width: calc(100% - 304px);
    border: 1px solid #7C7C7C;
    padding: 10px 20px;
    font-weight: 400;
}

@media screen and (min-width: 1024px) {
    .form .radioBox {
        width: calc(100% - 304px);
    }
}

.form .radioBox input {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    padding: 0;
    vertical-align: top;
    margin-top: 5px;
    border: 2px solid #7C7C7C;
}

.form .radioBox input::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #0B3A65;
    opacity: 0;
}

.form .radioBox input[type="radio"]:checked::before {
    opacity: 1;
}

.form .radioBox .link {
    display: block;
}

.form .radioBox .link a {
    font-weight: 400;
    color: #0B3A65;
    margin-top: 7px;
    border-bottom: 1px solid #0B3A65;
    padding-right: 15px;
    background: url(../img/common/link.svg) no-repeat bottom 7px right;
    background-size: 10.73px;
    text-decoration: none;
    display: inline-block;
}

.form .radioBox .link a:hover {
    color: #666666;
    background-image: url(../img/common/link-hover.svg);
}

.form input::placeholder {
    color: #666;
    /* 好きな色に変更 */
    opacity: 1;
    /* 透明度を確保 */
}

.form select option:first-child {
    color: #666;
    /* 好きな色に変更 */
}

.form select {
    color: #666;
    /* 通常の選択肢の色 */
}

.form .box textarea {
    min-height: 180px;
}

.form .box2 input {
    max-width: 300px;
}

.form .box3 select {
    max-width: 340px;
    background: url(../img/contact/arrow.jpg) no-repeat top right;
    background-size: auto 100%;
    appearance: none;
    cursor: pointer;
}

.form .img {
    margin: 28px auto 48px auto;
    text-align: center;
    font-weight: 400;
}

.form .img img {
    width: 210px;
    margin: 0 auto 5px auto;
}

.form .img input {
    width: 220px;
    border: 1px solid #B3B3B3;
    padding: 9px;
    margin-bottom: 5px;
}

.form .policy {
    margin: 73px 0 46px;
    text-align: center;
}

.form .policy .scroll {
    max-width: 508px;
    height: 228px;
    overflow-y: scroll;
    margin: 0 auto 23px auto;
    border: 1px solid #808080;
    padding: 17px 34px 19px 34px;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
}

.form .policy input[type="checkbox"] {
    display: none;
}

.form .policy label {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    font-weight: 400;
}

.form .policy .check-icon {
    width: 20px;
    height: 20px;
    background: url(../img/contact/check-no.jpg) no-repeat center left;
    background-size: auto 100%;
    margin-right: 10px;
}

.form .policy input[type="checkbox"]:checked+.check-icon {
    background: url(../img/contact/check.jpg) no-repeat center left;
    background-size: auto 100%;
}

/*policy*/
.policy .title {
    font-size: 18px;
}

.policy .bold {
    font-weight: bold;
}

@media screen and (max-width: 1023px) {

    .form .box {
        margin-bottom: 24px;
    }

    .form .box label {
        width: 100%;
        margin-bottom: 10px;
    }

    .form .box input,
    .form .box textarea,
    .form .box select {
        width: 100%;
        padding: 12px 18px;
    }

    .form .radioBox label {
        font-size: 15px;
    }

    .form .radioBox input {
        width: 20px;
        padding: 0;
    }

    .form .box2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-self: flex-start;
        align-items: flex-start;
    }

    .form .box3 select {
        max-width: 100%;
    }

    .form .policy {
        margin: 66px 0 45px;
    }

    .form .policy .scroll {
        max-width: 100%;
        height: 250px;
        margin: 0 auto 24px auto;
        padding: 17px 40px 19px 34px;
    }

    .policy .list li {
        margin-bottom: 5px;
    }

    .form .radioBox .link a {
        margin-top: 0;
    }

}

/*pageMessage*/
.pageMessage .top {
    margin-bottom: 96px;
}

.pageMessage .top .box {
    padding: 55px 20px 50px 20px;
    border-radius: 20px;
    background-color: #F7F7F7;
    text-align: center;
}

.pageMessage .top .box .bold {
    font-size: 43px;
    font-weight: bold;
    line-height: 1.02;
    color: #0E3B75;
    display: inline-block;
    background: linear-gradient(transparent 75%, rgba(207, 216, 227, .5) 75%);
    margin-bottom: 35px;
}

.pageMessage .section .text {
    max-width: 788px;
    text-align: left;
    margin: 0 auto;
}

.pageMessage .bottom .box {
    position: relative;
    border-radius: 20px;
    min-height: 398px;
    background: url(../img/message/message-bg.webp) no-repeat bottom left;
    background-size: 100% auto;
    margin-bottom: 60px;
}

.pageMessage .bottom .box .img {
    position: absolute;
    bottom: 0;
    left: 57.9%;
}

.pageMessage .bottom .box .bold {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.375;
    color: #0B3A65;
    padding: 129px 0 0 14.1%;
}

@media screen and (max-width: 1023px) {

    .pageMessage .top {
        margin-bottom: 48px;
    }

    .pageMessage .top .box {
        padding: 35px 14px;
    }

    .pageMessage .top .box .bold {
        font-size: 27px;
        margin-bottom: 17px;
    }

    .pageMessage .bottom .box {
        min-height: 303px;
        margin-bottom: 24px;
    }

    .pageMessage .bottom .box .img img {
        width: 259px;
    }

    .pageMessage .bottom .pc {
        display: block;
    }

    .pageMessage .bottom .sp {
        display: none;
    }

    .pageMessage .bottom .box .bold {
        font-size: 22px;
        line-height: 1.636363636;
        padding: 100px 0 0 14.1%;
    }

}

@media screen and (max-width: 599px) {

    .pageMessage .bottom .box {
        background-image: url(../img/message/message-bg-sp.webp);
    }

    .pageMessage .bottom .box .img {
        left: auto;
        right: 0;
    }

    .pageMessage .bottom .pc {
        display: none;
    }

    .pageMessage .bottom .sp {
        display: block;
    }

    .pageMessage .bottom .box .bold {
        padding: 6px 19px 0 19px;
    }

}

/*pageCompany*/
.pageCompany .table .accessList {
    justify-content: flex-end;
    column-gap: 43px;
    row-gap: 40px;
    width: 100%;
    padding: 30px 36px;
}

.pageCompany .table .accessList .box {
    width: calc(50% - 21.5px);
}

.pageCompany .table .accessList .box .img {
    margin-bottom: 18px;
}

.pageCompany .table .accessList .box .img img {
    width: 100%;
}

.pageCompany .table .accessList .box .text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.pageCompany .table .accessList .box .text .spacing {
    letter-spacing: .25em;
    display: inline-block;
    width: 90px;
}

.pageCompany .table .member,
.pageCompany .table .group {
    width: 100%;
}

.pageCompany .table .member .left {
    width: 128px;
}

.pageCompany .table .group .left {
    width: 65px;
}

.pageCompany .table .member .right {
    width: calc(100% - 128px);
    vertical-align: top;
}

.pageCompany .table .group .right {
    width: calc(100% - 65px);
    vertical-align: top;
}

.pageCompany .licenseList {
    row-gap: 19px;
    width: 100%;
}

.pageCompany .licenseList ul {
    flex-direction: column;
    row-gap: 19px;
}

.pageCompany .licenseList ul.left {
    width: 359px;
    padding-right: 50px;
}

.pageCompany .licenseList ul.right {
    width: calc(100% - 359px);
}

.pageCompany .licenseList ul li {
    padding: 0;
    margin: 0;
}

.pageCompany .licenseList li::before {
    display: none;
}

.pageCompany .licenseList li h5 {
    padding-left: 15px;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.pageCompany .licenseList li p {
    padding-left: 15px;
}

.pageCompany .licenseList li p span {
    display: inline-block;
    vertical-align: top;
}

.pageCompany .licenseList li p span.left {
    padding-right: 20px;
}

@media screen and (max-width: 1023px) {

    .pageCompany .table th,
    .pageCompany .table td {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        line-height: 1.6;
    }

    .pageCompany .table .accessList {
        display: flex;
        row-gap: 30px;
        padding: 20px 0 30px 0;
    }

    .pageCompany .table .accessList,
    .pageCompany .table .member,
    .pageCompany .table .group,
    .pageCompany td.textLeft {
        text-align: left;
    }

    .pageCompany .table .accessList .box {
        width: 100%;
    }

    .pageCompany .table .accessList .box .img {
        margin-bottom: 10px;
        min-height: 194px;
        height: 51.733333333333334vw
    }

    .pageCompany .table .accessList .box .img img {
        height: 100%;
        object-fit: cover;
    }

    .pageCompany .table .member {
        max-width: 195px;
        margin: 0 auto;
    }

    .pageCompany .table .member .left {
        display: inline-block;
        width: 120px;
    }

    .pageCompany .table .member .right {
        display: inline-block;
        width: calc(100% - 120px);
    }

    .pageCompany .table .group .left {
        width: 60px;
    }

    .pageCompany .table .group {
        display: flex;
    }

    .pageCompany .table .group .right {
        width: calc(100% - 60px);
    }

    .pageCompany .licenseList {
        row-gap: 15px;
        width: 100%;
    }

    .pageCompany .licenseList ul {
        width: 100%;
        row-gap: 15px;
        text-align: left;
    }

    .pageCompany .licenseList ul.left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 15px;
    }

    .pageCompany .licenseList ul.right {
        width: 100%;
    }


}

/*squareList*/
.squareList {
    flex-direction: column;
    row-gap: 7px;
}

ul.squareList li {
    position: relative;
    padding-left: 17px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.777;
    margin-bottom: 0;
}

ul.squareList li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #004EA2;
}

@media screen and (max-width: 1023px) {

    .productsBoxList .listBox,
    .companyList {
        row-gap: 7px;
    }

    ul.squareList li {
        font-size: 16px;
    }

    ul.squareList li::before {
        top: 11px;
    }

}

/*pageHistory*/
.pageHistory .table th {
    text-align: center;
    vertical-align: middle;
}

@media screen and (max-width: 1023px) {

    .pageHistory .table th {
        text-align: left;
    }

}

/*pageQualification*/
.pageQualification .text {
    font-size: 15px;
    margin-bottom: 25px;
}

.pageQualification .text2 {
    font-size: 15px;
    margin-top: 15px;
    text-align: right;
}

.pageQualification .table th {
    width: 330px;
}

.pageQualification .table td {
    width: calc(100% - 330px);
}

@media screen and (max-width: 1023px) {

    .pageQualification .table th,
    .pageQualification .table td {
        width: 100%;
    }

}

/*pageCalendar*/
.pageCalendar .content.inner {
    max-width: 906px;
    margin-bottom: 128px;
}

.pageCalendar .img img {
    width: 100%;
}

@media screen and (max-width: 1023px) {

    .pageCalendar .content.inner {
        margin-bottom: 0;
    }

}

/*pageNews*/
.tabs .tabItem {
    font-weight: 700;
    text-align: center;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
}

.pageNews .tabs .tabItem {
    width: calc(100% / 5);
    background-color: #FDF6E0;
}

.pageCase .tabs .tabItem {
    width: calc(100% / 5);
}

.tabs .tabItem.sp {
    display: none;
}

.pageNews .tabs .tabItem1 {
    padding-left: 25px;
    border-radius: 10px 0 0 10px;
}

.pageCase .tabs .tabItem1 {
    border-radius: 10px 0 0 10px;
}

.pageNews .tabs .tabItem5 {
    padding-right: 25px;
    border-radius: 0 10px 10px 0;
}

.tabs .tabInner {
    font-weight: 700;
    color: #fff;
    background-color: #F5711E;
    padding: 10px 5px;
    text-align: center;
    display: block;
    border: 1px solid #F5711E;
    color: #fff;
    transition: .3s;
    cursor: pointer;
    border-radius: 5px;
    margin: 26px 10px;
}

.tabs .tabItem:hover .tabInner {
    color: #fff;
    background-color: #0B3A65;
    border: 1px solid #0B3A65;
}

/*ラジオボタンを全て消す*/
.tabs input[name="tabItem"] {
    display: none;
}

/*タブ切り替えの中身のスタイル*/
.tabs .tabContent {
    position: relative;
    display: none;
    padding: 32px 0 0 0;
    clear: both;
    overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#tabsA:checked~#tabsAContent,
#tabsB:checked~#tabsBContent,
#tabsC:checked~#tabsCContent,
#tabsD:checked~#tabsDContent,
#tabsE:checked~#tabsEContent,
#tabsF:checked~#tabsFContent {
    display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked+.tabItem .tabInner {
    background-color: #fff;
    border: 1px solid #0B3A65;
    color: #0B3A65;
    pointer-events: none;
}

@media screen and (max-width: 1023px) {

    .pageNews .tabs .tabItem,
    .pageCase .tabs .tabItem {
        width: calc(100% / 2);
    }

    .tabs .tabItem.sp {
        display: block;
        height: 75px;
        border-radius: 0 0 10px 0;
    }

    .pageNews .tabs .tabItem1 {
        padding-left: 10px;
        padding-top: 18px;
        border-radius: 10px 0 0 0;
    }

    .pageCase .tabs .tabItem1 {
        padding-left: 0;
        padding-top: 0;
    }

    .pageNews .tabs .tabItem2 {
        padding-right: 10px;
        padding-top: 18px;
        border-radius: 0 10px 0 0;
    }

    .pageCase .tabs .tabItem2 {
        padding-right: 0;
        padding-top: 0;
    }

    .pageNews .tabs .tabItem3 {
        padding-left: 10px;
    }

    .pageCase .tabs .tabItem3 {
        padding-left: 0;
    }

    .pageNews .tabs .tabItem4 {
        padding-right: 10px;
    }

    .pageCase .tabs .tabItem4 {
        padding-right: 0;
    }

    .pageNews .tabs .tabItem5 {
        padding-bottom: 18px;
        padding-left: 10px;
        padding-right: 0;
        border-radius: 0 0 0 10px;
    }

    .pageCase .tabs .tabItem5 {
        padding-bottom: 9;
        padding-left: 9;
        padding-right: 0;
    }

    .pageCase .tabs .tabItem6 {
        padding-bottom: 9;
        padding-left: 9;
        padding-right: 0;
    }

    .tabs .tabInner {
        margin: 4px 6px;
    }

    .pageCase .tabs .tabInner {
        margin: 5px 6.5px;
    }

    .pageCase .tabs .tabItem1 .tabInner,
    .pageCase .tabs .tabItem2 .tabInner {
        margin-top: 0;
    }

    .pageCase .tabs .tabItem5 .tabInner,
    .pageCase .tabs .tabItem6 .tabInner {
        margin-bottom: 0;
    }

    .pageCase .tabs .tabItem1 .tabInner,
    .pageCase .tabs .tabItem3 .tabInner,
    .pageCase .tabs .tabItem5 .tabInner {
        margin-left: 0;
    }

    .pageCase .tabs .tabItem2 .tabInner,
    .pageCase .tabs .tabItem4 .tabInner,
    .pageCase .tabs .tabItem6 .tabInner {
        margin-left: 0;
    }

    /*タブ切り替えの中身のスタイル*/
    .tabs .tabContent {
        padding: 32px 0 0 0;
    }

}

/*Detail*/
.pageNewsDetail .content h2,
.pageCaseDetail .content h2 {
    margin-top: 16px;
}

.newsContent .imgBox {
    max-width: 948px;
    margin: 48px auto 0 auto;
    column-gap: 48px;
    row-gap: 16px;
    justify-content: space-between;
}

.newsContent .imgBox img {
    width: calc(50% - 24px);
}

.pageNewsDetail .modBtn1 {
    margin: 72px auto 0 auto;
}

.pageCaseDetail .mainImg {
    max-height: 398px;
    height: 28.42857142857143vw;
    margin-bottom: 48px;
}

.pageCaseDetail .mainImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

@media screen and (max-width: 1023px) {

    .pageNewsDetail .content h2,
    .pageCaseDetail .content h2 {
        margin-top: 12px;
    }

    .newsContent .imgBox {
        margin: 32px auto 0 auto;
    }

    .newsContent .imgBox img {
        width: 100%;
    }

    .pageNewsDetail .modBtn1 {
        margin: 40px auto 0 auto;
    }

    .pageCaseDetail .mainImg {
        max-height: 100%;
        height: 37.6vw;
        min-height: 141px;
        margin-bottom: 24px;
    }

    .pageCaseDetail .mainImg img {
        border-radius: 10px;
    }

}

/*flexBox*/
.flexBox {
    justify-content: space-between;
    column-gap: 37px;
    row-gap: 24px;
}

.flexBox .box {
    width: calc(100% / 3 - 26.5px);
}

.flexBox img {
    max-height: 243px;
    height: 20vw;
    object-fit: cover;
    border-radius: 10px;
}

.flexBox p {
    margin-top: 14px;
}

@media screen and (max-width: 1023px) {

    .flexBox .box {
        width: 100%;
    }

    .flexBox img {
        width: 100%;
        min-height: 177px;
        max-height: 100%;
        height: 47.199999999999996vw;
    }

    .flexBox p {
        margin-top: 10px;
    }

}

/*productsLinks*/
.productsLinks {
    position: relative;
    column-gap: 15px;
    row-gap: 12px;
    justify-content: space-between;
    margin-bottom: 72px;
}

.productsLinks::after {
    content: "";
    display: block;
    width: calc(100% / 4 - 11.5px);
}

.productsLinks .box {
    position: relative;
    width: calc(100% / 4 - 11.5px);
    background-color: #0E3B73;
    border: 1px solid #0E3B73;
    height: 112px;
    transition: .2s;
    overflow: hidden;
}

.productsLinks .box:hover {
    background-color: #004EA2;
    border: 1px solid #004EA2;
}

.productsLinks .box::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 14.62px;
    height: 14.62px;
    background-image: linear-gradient(-45deg, #0E3B73 10px, transparent 0);
    z-index: 1;
}

.productsLinks .box:hover::before {
    background-image: linear-gradient(-45deg, #7ECEF4 10px, transparent 0);
}

.productsLinks .box .text {
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin: auto 0;
    width: calc(100% - 115px);
    line-height: 1.5;
}

.productsLinks .box .img {
    width: 115px;
    overflow: hidden;
}

.productsLinks .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s;
}

.productsLinks .box:hover .img img {
    transform: scale(1.1);
}

@media screen and (max-width: 1023px) {

    .productsLinks {
        margin-bottom: 50px;
    }

    .productsLinks::after {
        width: 100%;
    }

    .productsLinks .box {
        width: 100%;
        height: 83px;
    }

    .productsLinks .box .text {
        text-align: left;
        padding-left: 20px;
        width: calc(100% - 85px);
    }

    .productsLinks .box .img {
        width: 85px;
    }

}

/*pageProducts*/
.bgGrayRight .content h3:first-child {
    margin-top: 0;
}

/*productsBox*/
.productsBox {
    row-gap: 15px;
    background-color: #fff;
    border-radius: 10px;
    padding: 27px 30px;
    margin-bottom: 20px;
}

.productsBoxList {
    padding: 39px 50px;
    border: 1px solid rgba(14, 59, 115, .2);
    margin-top: 47px;
    margin-bottom: 70px;
}

.productsBox .img {
    width: 280px;
    height: 190px;
    margin-right: 25px;
    border: 1px solid #B9B9B9;
    border-radius: 5px;
}

.productsBox .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.productsBox .text {
    width: calc(100% - 305px);
}

.productsBox .text h5 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.productsBox .text h5:first-child {
    margin-top: 0;
}

.productsBoxList h4 {
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #D6D6D6;
}

@media screen and (max-width: 1023px) {

    .productsBox {
        padding: 30px 20px;
    }

    .productsBoxList {
        padding: 30px 20px;
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .productsBox .img {
        margin: 0 auto;
        max-width: 280px;
        width: calc(100% - 20px);
    }

    .productsBox .text {
        width: 100%;
    }

    .productsBox .text h5 {
        font-size: 16px;
    }

    .productsBoxList h4 {
        padding-bottom: 10px;
    }

}

/*bannerLink*/
.bannerLink {
    position: relative;
    margin-top: 50px;
    margin-bottom: 80px;
    border-radius: 10px;
}

.bannerLink::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    background-color: #0E3B73;
    border-radius: 10px;
    z-index: 1;
}

.bannerLink .img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.bannerLink .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: .2s;
}

.bannerLink:hover .img img {
    transform: scale(1.1);
}

.bannerLink .text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: auto;
    width: 100%;
    font-size: 26px;
    font-weight: bold;
    padding-bottom: 15px;
    padding-left: 74px;
    color: #fff;
    z-index: 2;
    background: url(../img/common/icon-right-white.svg) no-repeat center right 70px;
    background-size: 34.58px;
}

.bannerLink:hover .text {
    background: url(../img/common/icon-right-hover.svg) no-repeat center right 70px;
}

.bannerLink .text::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 74px;
    width: 107px;
    height: 2px;
    background-color: #fff;
}

@media screen and (max-width: 1023px) {

    .bannerLink {
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .bannerLink .img {
        height: 180px;
    }

    .bannerLink .text {
        font-size: 22px;
        line-height: 1.36;
        padding-bottom: 10px;
        padding-left: 20px;
        background: url(../img/common/icon-right-white.svg) no-repeat center right 20px;
    }

    .bannerLink:hover .text {
        background: url(../img/common/icon-right-hover.svg) no-repeat center right 20px;
    }

    .bannerLink .text::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 20px;
        width: 107px;
        height: 2px;
        background-color: #fff;
    }

}

/*pageProductsDetail*/
.pageProductsDetail .modBtn1 {
    margin: 20px 0 55px auto;
}

.pageProductsDetail #category4 {
    margin-top: 80px;
}

@media screen and (max-width: 1023px) {

    .pageProductsDetail .modBtn1 {
        margin: 20px auto 50px auto;
    }

    .pageProductsDetail .flexBox4 .modBtn1 {
        margin: 20px auto 0 auto;
    }

    .pageProductsDetail #category4 {
        margin-top: 50px;
    }

}

/*pageService*/
.pageService .bgGrayRight,
.pageServiceDetail .bgGrayRight,
.pagePurpose .bgGrayRight {
    margin-bottom: 100px;
}

@media screen and (max-width: 1023px) {

    .pageService .bgGrayRight,
    .pageServiceDetail .bgGrayRight,
    .pagePurpose .bgGrayRight {
        margin-bottom: 60px;
    }

    .pageService .flexBox1 .img {
        order: 1;
    }

    .pageService .flexBox1 .text {
        order: 2;
    }

}

/*pageServiceDetail*/
.pageServiceDetail .bgGrayRight .content h3 {
    margin-top: 70px;
}

.serviceBox {
    position: relative;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 30px;
}

.serviceBox .box {
    width: calc(50% - 15px);
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
}

.serviceBox .box .img {
    width: 145px;
    padding-right: 25px;
}

.serviceBox .box .img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.serviceBox .box .text {
    width: calc(100% - 145px);
}

.serviceBox .box .text h5 {
    font-size: 18px;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.serviceBox .box .text h5::before {
    top: 13px;
}

.serviceBox .box .text p {
    font-size: 15px;
    line-height: 1.6;
}

@media screen and (max-width: 1023px) {

    .pageServiceDetail .bgGrayRight .content h3 {
        margin-top: 45px;
    }

    .serviceBox {
        row-gap: 15px;
    }

    .serviceBox .box {
        width: 100%;
        padding: 40px 20px;
    }

    .serviceBox .box .img {
        width: 100%;
        padding-right: 0;
    }

    .serviceBox .box .img img {
        width: 100px;
        height: 100px;
        margin: 0 auto 20px auto;
    }

    .serviceBox .box .text {
        width: 100%;
    }

    .serviceBox .box .text h5 {
        font-size: 16px;
    }

    .serviceBox .box .text h5::before {
        top: 11px;
    }

}

.toggleSection {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #B9B9B9;
    padding: 0 20px;
    margin-top: 25px;
}

.toggleSection .child {
    display: none;
    background-color: #F3F5F9;
    border-radius: 16px;
    padding: 20px 50px 50px 50px;
    margin: 20px 0 30px 0;
}

.toggleSection .child h4 {
    margin-top: 30px;
}

.pageServiceDetail #item1 {
    margin-top: 70px;
}

.pageServiceDetail .bgGrayRight .content .toggleSection h3 {
    font-size: 23px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 17px 20px;
    border-bottom: none;
    color: inherit;
    cursor: pointer;
}

.pageServiceDetail .bgGrayRight .content .toggleSection h3::before {
    width: 4px;
    height: 48px;
    top: 0;
    left: -5px;
}

.pageServiceDetail .bgGrayRight .content .toggleSection .toggleBtn .icon {
    display: block;
    position: absolute;
    top: 14px;
    cursor: pointer;
    width: 39px;
    height: 39px;
    border-radius: 39px;
    right: 0;
    background-color: #F3F5F9;
}

.pageServiceDetail .bgGrayRight .content .toggleSection .toggleBtn .icon::before {
    /* アイコン横棒 */
    content: '';
    height: 2px;
    width: 17px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    background: #0E3B73;
}

.pageServiceDetail .bgGrayRight .content .toggleSection .toggleBtn .icon:after {
    /* アイコン縦棒（閉じてるとき） */
    content: '';
    height: 17px;
    width: 2px;
    display: block;
    background: #0E3B73;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.pageServiceDetail .bgGrayRight .content .toggleSection .toggleBtn.is-active .icon:after {
    /* アイコン縦棒なし（開いてるとき） */
    height: 0;
    width: 0;
}

@media screen and (max-width: 1023px) {

    .toggleSection {
        border-radius: 5px;
    }

    .toggleSection .child {
        padding: 15px 15px 20px 15px;
        margin: 18px 0 40px 0;
    }

    .toggleSection .child h4 {
        margin-top: 25px;
    }

    .pageServiceDetail #item1 {
        margin-top: 45px;
    }

    .pageServiceDetail .bgGrayRight .content .toggleSection h3 {
        font-size: 20px;
        padding: 20px 40px 20px 20px;
    }

    .pageServiceDetail .bgGrayRight .content .toggleSection .toggleBtn .icon {
        top: 50%;
        transform: translateY(-50%);
    }

}

/*pagePurpose*/
.pagePurpose .pageSection {
    margin-bottom: 0;
}

.pagePurpose .topSection {
    position: relative;
    background: url(../img/common/bg-wave.png) no-repeat center bottom;
    background-size: 100% auto;
    padding-bottom: 165px;
}

.pagePurpose .topSection .flexBox .img:last-child {
    margin: 28px 0 0 0;
}

.pagePurpose .topSection .topText {
    max-width: 654px;
    margin: 0 auto;
}

.pagePurpose .bg {
    position: relative;
    background-color: #F3F5F9;
    padding-top: 90px;
    z-index: 1;
    padding-bottom: 120px;
}

.pagePurpose .bgGrayLeft::before,
.pagePurpose .bgGrayRight::before {
    background-color: #fff;
}

.pagePurpose .content h3 {
    margin-top: 70px;
    margin-bottom: 30px;
}

.pagePurpose .flexBox {
    row-gap: 17px;
}

.pagePurpose .flexBox5 {
    margin-top: 35px;
    margin-bottom: 30px;
    row-gap: 30px;
}

.pagePurpose .bannerLink {
    margin: 0;
}

.pagePurpose .ilust {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
}

.pagePurpose .ilust img {
    margin: 0 0 0 auto;
}

.pagePurpose .ilust1 img {
    width: 174px;
}

.pagePurpose .ilust2 img {
    width: 172px;
}

@media screen and (max-width: 1023px) {

    .pagePurpose .topSection {
        padding-bottom: 65px;
    }

    .pagePurpose .topSection .flexBox .img:first-child {
        margin: 0 60px 0 0;
    }

    .pagePurpose .topSection .flexBox .img:last-child {
        margin: 0 0 0 60px;
    }

    .pagePurpose .bg {
        padding-top: 50px;
        padding-bottom: 72px;
    }

    .pagePurpose .content h3 {
        margin-top: 40px;
        margin-bottom: 25px;
    }

    .pagePurpose .flexBox5 {
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .pagePurpose .ilust {
        top: -70px;
    }

    .pagePurpose .ilust1 img,
    .pagePurpose .ilust2 img {
        width: 131px;
    }

}

/*pageFeature*/
.pageFeature .flex1 {
    align-items: center;
    row-gap: 20px;
}

.pageFeature .flex1 .left {
    width: 48.4%;
    padding-right: min(79px, 5.928571428571429vw);
}

.pageFeature .flex1 .left .point {
    font-family: "Montserrat", serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    background-color: #F5911E;
    color: #fff;
    text-align: center;
    margin-right: 21px;
    display: inline-block;
    vertical-align: middle;
    width: 98px;
    height: 98px;
    border-radius: 10px;
    padding-top: 15px;
}

.pageFeature .flex1 .left .point .num {
    font-size: 58px;
    font-weight: 700;
    display: block;
}

.pageFeature .flex1 .left .title {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.6;
    color: #0B3A65;
    display: inline-block;
    vertical-align: middle;
    margin: 20px 0;
}

.pageFeature .textBox {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.866666666;
    color: #F5711E;
    padding: 20px 23px;
    background-color: #FDF6E0;
    border-radius: 10px;
    margin-top: 20px;
}

.pageFeature .flex1 .right {
    position: relative;
    width: 51.6%;
}

.pageFeature .flex1 .right::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(#FFF895, #FD9250);
}

.pageFeature .flex1 .right img {
    position: relative;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.pageFeature .section1 .img {
    border-radius: 10px;
    margin: 24px 0 14px 0;
}

.pageFeature .section1 .img img {
    border-radius: 10px;
}

.pageFeature .section3 .flexBox {
    margin-top: 72px;
}

.pageFeature .flexBox img {
    max-height: 220px;
    height: 18vw;
}

@media screen and (max-width: 1023px) {

    .pageFeature .flex1 .left {
        width: 100%;
        padding-right: 0;
    }

    .pageFeature .flex1 .left .point {
        font-size: 12px;
        margin-right: 14px;
        width: 68px;
        height: 68px;
        border-radius: 6px;
        padding-top: 11px;
    }

    .pageFeature .flex1 .left .point .num {
        font-size: 40px;
    }

    .pageFeature .flex1 .left .title {
        font-size: 20px;
        line-height: 1.55;
        margin: 0;
        white-space: nowrap;
        width: calc(100% - 86px);
    }

    .pageFeature .flex1 .left .bold {
        margin-top: 16px;
        font-weight: 500;
    }

    .pageFeature .textBox {
        line-height: 1.8;
        padding: 13px 19px;
        margin-top: 0;
        width: 100%;
    }

    .pageFeature .flex1 .right {
        width: 100%;
    }

    .pageFeature .flex1 .right::before {
        top: -5px;
        left: -5px;
    }

    .pageFeature .flex1 .right img {
        height: 47.199999999999996vw;
        min-height: 177px;
    }

    .pageFeature .section1 .img {
        margin: 20px 0 10px 0;
    }

    .pageFeature .section1 .img img {
        height: 100%;
        width: 100%;
    }

    .pageFeature .section1 h4 {
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .pageFeature .flexBox {
        padding: 0 21px;
    }

    .pageFeature .flexBox img {
        min-height: 158px;
        max-height: 100%;
        height: 42.13333333333333vw;
    }

    .pageFeature .section3 .flexBox {
        margin-top: 25px;
    }

}

/*pageService*/
.serviceList {
    justify-content: center;
    column-gap: 37px;
    row-gap: 36px;
    margin-bottom: 100px;
}

.serviceList .box {
    width: calc(100% / 3 - 25.5px);
    border-radius: 20px;
    background-color: #FDF6E0;
}

.serviceList .box .img {
    border-radius: 20px 20px 0 0;
    max-height: 259px;
    height: 18.5vw;
    overflow: hidden;
}

.serviceList .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.serviceList .box:hover .img img {
    transform: scale(1.1);
}

.serviceList .box .textBox {
    position: relative;
    padding: 22px 26px 32px 26px;
}

.serviceList .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.409090909;
    padding-bottom: 12px;
    margin-bottom: 12px;
    color: #0B3A65;
    border-bottom: 1px solid #F9AE3B;
}

.serviceList .text {
    margin-bottom: 24px;
}

@media screen and (max-width: 1023px) {

    .serviceList {
        row-gap: 20px;
        margin-bottom: 48px;
    }

    .serviceList .box {
        width: 100%;
        border-radius: 10px;
    }

    .serviceList .box .img {
        border-radius: 10px 10px 0 0;
        min-height: 190px;
        max-height: 100%;
        height: 50.66666666666667vw;
    }

    .serviceList .box .textBox {
        padding: 14px 19px 30px 19px;
    }

    .serviceList .title {
        font-size: 19px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .serviceList .text {
        margin-bottom: 29px;
    }

}

/*pageServiceDetail*/
/*section1*/
.pageServiceDetail .section1 {
    row-gap: 20px;
    align-items: center;
    margin-bottom: 72px;
}

.pageServiceDetail .section1 .right {
    width: 345px;
    height: 345px;
}

.pageServiceDetail .section1 .left {
    width: calc(100% - 345px);
    padding-right: 6.071428571428571vw;
}

.pageServiceDetail .section1 .right img {
    width: 100%;
    height: 100%;
    border-radius: 345px;
    object-fit: cover;
}

/*section2*/
.pageServiceDetail .section2 {
    margin-bottom: 96px;
}

/*section3*/
.pageServiceDetail .section3 {
    margin-bottom: 72px;
}

.pageServiceDetail .section3 h3 {
    margin-bottom: 48px;
}

.pageServiceDetail .section3 .flexBox {
    justify-content: center;
    text-align: center;
    row-gap: 32px;
}

.pageServiceDetail .section3 .flexBox1 {
    max-width: 912px;
    margin: 0 auto;
    column-gap: 96px;
}

.pageServiceDetail .section3 .flexBox2 {
    column-gap: 47px;
}

.pageServiceDetail .section3 .flexBox1 .box {
    width: calc(100% / 3 - 64px);
}

.pageServiceDetail .section3 .flexBox2 .box {
    width: calc(100% / 4 - 35.5px);
}

.pageServiceDetail .section3 .flexBox img {
    max-height: 100%;
    height: 100%;
    margin: 0 auto;
}

/*section4*/
.pageServiceDetail .section4 .flex1 {
    position: relative;
    row-gap: 12px;
}

.pageServiceDetail .section4 .flex1 .left {
    width: 465px;
    margin-right: 39px;
}

.pageServiceDetail .section4 .flex1 .right {
    width: calc(100% - 504px);
}

.pageServiceDetail .section4 .flex1 img {
    border-radius: 10px;
}

.pageServiceDetail .section4 .flex1 .right ul {
    margin-right: 40px;
}

.pageServiceDetail .section4 .flex1 .right ul:last-child {
    margin-bottom: 14px;
}

.pageServiceDetail .section4 .flex1 .right li {
    margin-bottom: 14px;
}

.pageServiceDetail .section4 .flex1 .right li::before {
    content: "";
    top: 7px;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    background-color: #FFD28D;
}

.pageServiceDetail .section4 h4 {
    margin-bottom: 28px;
}

.pageServiceDetail .section4 .flex1 .modBtn5 {
    position: absolute;
    bottom: 0;
    right: 0;
    padding-right: 36px;
}

.pageServiceDetail .section4 .flexBox p {
    margin-top: 18px;
}

.pageServiceDetail .section4 .flexBox .title {
    font-size: 21px;
    font-weight: 700;
    padding-right: 15px;
    margin-right: 15px;
    line-height: 1.2;
    border-right: 1px solid #0B3A65;
    color: #0B3A65;
    vertical-align: middle;
    display: inline-block;
    margin-top: -4px;
}

/*section5*/
.section5 .topTitle {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.8633333;
    padding-top: 33px;
    background: url(../img/common/search.png) no-repeat center top;
    background-size: 33px;
    text-align: center;
    margin-bottom: 40px;
    color: #0B3A65;
}

@media screen and (max-width: 1023px) {

    /*section1*/
    .pageServiceDetail .section1 {
        margin-bottom: 56px;
    }

    .pageServiceDetail .section1 .right {
        min-width: 224px;
        width: 59.73333333333334vw;
        min-height: 224px;
        height: 59.73333333333334vw;
        margin: 0 auto;
    }

    .pageServiceDetail .section1 .left {
        width: 100%;
        padding-right: 0;
    }

    /*section2*/
    .pageServiceDetail .section2 {
        margin-bottom: 48px;
    }

    /*section3*/
    .pageServiceDetail .section3 {
        margin-bottom: 56px;
    }

    .pageServiceDetail .section3 h3 {
        margin-bottom: 24px;
    }

    .pageServiceDetail .section3 .flexBox {
        row-gap: 24px;
    }

    .pageServiceDetail .section3 .flexBox1,
    .pageServiceDetail .section3 .flexBox2 {
        max-width: 100%;
        column-gap: 6.857142857142858vw;
    }

    .pageServiceDetail .section3 .flexBox1 .box,
    .pageServiceDetail .section3 .flexBox2 .box {
        width: calc(100% / 2 - 3.5vw);
    }

    .pageServiceDetail .section3 .flexBox img {
        min-width: 146px;
        width: 38.93333333333333vw;
        min-height: 146px;
        height: 38.93333333333333vw;
        object-fit: cover;
    }

    /*section4*/
    .pageServiceDetail .section4 .flex1 {
        position: relative;
        row-gap: 12px;
    }

    .pageServiceDetail .section4 .flex1 .left {
        width: 100%;
        margin-right: 0;
    }

    .pageServiceDetail .section4 .flex1 .right {
        width: 100%;
    }

    .pageServiceDetail .section4 .flex1 img {
        width: 100%;
        object-fit: cover;
        min-height: 151px;
        height: 40.266666666666666vw;
    }

    .pageServiceDetail .section4 .flex1 .right ul:first-child {
        margin-right: 25px;
    }

    .pageServiceDetail .section4 .flex1 .right ul:last-child {
        margin-right: 0;
        margin-bottom: 0;
    }

    .pageServiceDetail .section4 .flex1 .right li {
        font-size: 16px;
        margin-bottom: 4px;
        padding-left: 20px;
    }

    .pageServiceDetail .section4 .flex1 .right li::before {
        top: 8px;
        width: 14px;
        height: 14px;
    }

    .pageServiceDetail .section4 h4 {
        margin-bottom: 28px;
    }

    .pageServiceDetail .section4 .flexBox p {
        margin-top: 10px;
    }

    .pageServiceDetail .section4 .flexBox .title {
        font-size: 18px;
        padding-right: 12px;
        margin-right: 12px;
    }

    /*section5*/
    .section5 .topTitle {
        font-size: 18px;
        line-height: 1.555555;
        background-size: 26px;
        margin-bottom: 24px;
    }

}

@media screen and (max-width: 599px) {

    .pageServiceDetail .section3 .flexBox1 .box,
    .pageServiceDetail .section3 .flexBox2 .box {
        width: 100%;
    }

    .pageServiceDetail .section4 .flex1 .modBtn5 {
        position: relative;
        bottom: auto;
        right: auto;
        padding-right: 29px;
        margin-left: auto;
        width: 100%;
    }

}

/*pageQuality*/
.pageQuality .list {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.pageQuality .list li {
    font-size: 18px;
    font-weight: 700;
    color: #0B3A65;
}

.pageQuality .img {
    margin: 56px auto;
}

@media screen and (max-width: 1023px) {

    .pageQuality .list li {
        font-size: 17px;
    }

    .pageQuality .img {
        margin: 40px auto;
    }

}

/*pagePolicy*/
.pagePolicy .textRight {
    text-align: right;
    margin-bottom: 24px;
}

.pagePolicy h4 {
    font-size: 18px;
    line-height: 1.4;
    background: none;
    padding-left: 17px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.pagePolicy h4::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #E35700;
}

@media screen and (max-width: 1023px) {

    .pagePolicy .textRight {
        margin-bottom: 16px;
    }

    .pagePolicy h4 {
        font-size: 16px;
        line-height: 1.8;
        margin-top: 24px;
    }

    .pagePolicy h4::before {
        top: 11px;
    }
}

/*確認用
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/pc.jpg) no-repeat top center;
    background-size: 100% auto;
    z-index: 10000;
    opacity: .8;
}*/