@charset "UTF-8";

/*** The new CSS reset - version 1.11.3 (last updated 25.8.2024) ***/

*:where(:not(html,iframe,canvas,img,svg,video,audio):not(svg *,symbol *)){all:unset;display:revert}*,*::before,*::after{box-sizing:border-box}html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}a,button{cursor:revert}ol,ul,menu,summary{list-style:none}ol{counter-reset:revert}img{max-inline-size:100%;max-block-size:100%}table{border-collapse:collapse}input,textarea{-webkit-user-select:auto}textarea{white-space:revert}meter{-webkit-appearance:revert;appearance:revert}:where(pre){all:revert;box-sizing:border-box}::placeholder{color:unset}:where([hidden]){display:none}:where([contenteditable]:not([contenteditable="false"])){-moz-user-modify:read-write;-webkit-user-modify:read-write;overflow-wrap:break-word;-webkit-line-break:after-white-space;-webkit-user-select:auto}:where([draggable="true"]){-webkit-user-drag:element}:where(dialog:modal){all:revert;box-sizing:border-box}::-webkit-details-marker{display:none}

@media (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/*----------------------------------
共通スタイル
-----------------------------------*/
:root{
    --color-black: #111;
    --color-white: #fff;
    --color-orange: #E6731E;
    --color-blue: #006EE6;
    --color-red: #D80000;
    --color-pink: #FF5F99;
    --color-gray: #ccc;
    --color-dark-gray: #797979;
    --color-dark-gray02: #A0A0A0;/*指示職だけど色未確認する*/
    --color-light-orange: #faf0e8;
    --base-font: "Noto Sans JP", sans-serif;
    --font-en: "Montserrat", sans-serif;
}

body {
    color: var(--color-black);
    font-family: var(--base-font);
}

.main{
    margin-top: 74px;
    margin-bottom: 115px;
}

.main.--backoffice-department-list{
    margin-bottom: 0;
}

a,a:hover{
    transition: 0.3s;
}

.text-orange{
    color: var(--color-orange);
}

.text-blue{
    color: var(--color-blue);
}

.text-white{
    color: var(--color-white);
}

.is-sp{
    display: none;
}

.is-tab{
    display: none;
}

.inbl {
	display: inline-block;
}

.bold{
    font-weight: bold;
}

.--en{
    font-family: var(--font-en);
}

.inner{
    max-width: calc(1000px + 60px);
    margin-inline: auto;
    padding-inline: 30px;
}

.inner--wide{
    max-width: calc(1100px + 60px);
}

.link-button{
    border: 1px solid;
    border-radius: 50rem;
    position: relative;
}

.link-button::before{
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    right: 2px;
    top: 40%;
    transform: rotate(-135deg) translateY(-50%);
    transform-origin: left;
}

.link-button-black{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white) !important;
    font-weight: bold;
    width: 100%;
    max-width: 300px;
    height: 48px;
}

.link-button-black::before {
    right: 10px;
}

.link-button-black:hover{
    /* border-color: var(--color-orange);
    background-color: var(--color-orange); */
    opacity: 0.75;
}

.section,.page-wrap{
    /* max-width: 1200px; */
    margin-inline: auto;
    position: relative;
    z-index: 0;
}

.section-title-en{
    color: #ccc;
    font-family: var(--font-en);
    font-size: 64px;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    top: -0.5em;
    /* text-indent: 60px; */
    z-index: 1;
}

.section-title{
    font-size: 36px;
    font-weight: 900;
    line-height: 1.5;
}

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

@media(max-width:1280px) {
    .is-tab{
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .main{
        margin-top: 88px;
    }

    .section-title-en {
        font-size: 6.25vw;
        /* text-indent: 2.93vw; */
    }

    .section-title {
        font-size: 3.52vw;
    }
}

@media(max-width:767px) {
    .main{
        margin-top: 75px;
        margin-bottom: 70px;
    }

    .inner{
        padding-inline: 4vw;
    }

    .is-pc{
        display: none;
    }

    .is-sp{
        display: block;
    }

    .section-title-en {
        font-size: min(10.25vw, 48px) !important;
        /* text-indent: min(7.7vw, 30px); */
        text-indent: 10px;
    }

    .section-title {
        font-size: min(6.15vw, 34px);
        line-height: 1.6;
    }

    .link-button::before {
        right: 4px;
    }
}

@media(max-width:359px) {
    p.text{
        font-size: 12px !important;
    }

    .link-button {
        font-size: 14px;
    }
}

/*----------------------------------
header
-----------------------------------*/
.header{
    background: rgb(255 255 255 / 80%);
    height: 74px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header__inner{
    /* max-width: calc(1470px + 50px);
    padding-inline: 25px; */
    padding-inline: 15px;
    margin-inline: auto;
    height: inherit;
}

.header__contents{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    height: inherit;
}

.header__logo{
    position: relative;
    z-index: 100;
}

.header__logo a{
    /* display: block; */
    display: flex;
    align-items: center;
    width: 220px;
    height: 60px;
}

.header__logo img{
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.header__nav-area{
    flex: 1;
    position: relative;
}

.header__menu{
    display: flex;
    justify-content: space-between;
    transition: none;
}

.header__menu-link{
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.header__menu-link:hover{
    opacity: 1;
}

.header__menu-main-list{
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
}

.header__menu-contact{
    display: flex;
    gap: 10px;
}

.header__menu-tel{
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
    line-height: 1;
    margin-right: 6px;
    gap: 4px;
}

.header__menu-tel-link a{
    font-size: 24px;
}

.header__menu-tel-text{
    font-size: 12px;
    font-weight: 500;
}

.header__menu-contact-link a{
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 1px solid var(--color-blue);
    border-radius: 50rem;
    height: 44px;
    width: 160px;
    position: relative;
}

.header__menu-contact-link .--contact{
    background-color: var(--color-white);
    color: var(--color-blue);
}

.header__menu-contact-link .--contact:hover{
    background-color: #eff7ff;
}

.header__menu-contact-link .--download{
    background-color: var(--color-blue);
    color: var(--color-white);
}

.header__menu-contact-link .--download:hover{
    background-color: #0063ce;
}

.header__menu-contact-link a::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    right: 2px;
    top: 42%;
    transform: rotate(-135deg) translateY(-50%);
    transform-origin: left;
}

.header__menu-contact-link .--contact::before {
    border-color: var(--color-blue);
}

.header__menu-contact-link .--download::before {
    border-color: var(--color-white);
}

.header__nav-brn{
    display: none;
}

.sp-fixed{
    display: none;
}

/* =========================
   ヘッダー アコーディオンメニュー
   ========================= */

/* 親メニュー（企業情報 / お知らせ・セミナー）共通 */
.header__menu-main-item.has-sub {
  position: static; /* SP 基本はそのまま縦に開く */
}

.header__menu-link.js-accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 親メニュー右側のアイコン（SP 用） */
.header__menu-icon::before {
  content: '＋';
  font-size: 12px;
  margin-left: 8px;
}

.header__menu-main-item.is-open .header__menu-icon::before {
  content: '－';
}

/* ▼ PC のときは親メニューのアイコンは非表示にする */
@media (min-width: 768px) {
  .header__menu-icon {
    display: none;
  }
}

/* サブメニュー本体（ベース：SP 寄り） */
.header__submenu {
  display: none;
  padding: 4px 0 0;
  position: static;        /* SP では親の下にそのまま展開 */
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  min-width: auto;
}

.header__menu-main-item.is-open .header__submenu {
  display: block;
}

.header__submenu li {
  margin-bottom: 0;
}

/* サブメニューのリンク */
.header__submenu-link {
  position: relative;
  font-size: 14px;
  display: block;
  padding: 6px 0 6px 18px; /* 左に矢印分の余白 */
}

.header__submenu-link::before {
  content: '›'; /* お好みで '>' などに変更可 */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.header__submenu-link:hover {
  text-decoration: underline;
}

/* ▼ PC のときだけドロップダウン風の白いボックスにする */
@media (min-width: 768px) {
  .header__menu-main-item.has-sub {
    position: relative; /* サブメニューの基準にする */
  }

  .header__submenu {
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 20px 16px;
    border-radius: 16px; /* 角丸はお好みで調整 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-width: 170px;
    font-size: 14px;
    z-index: 1000;
  }

  .header__submenu li + li {
    margin-top: 8px;
  }

  .header__submenu a{
    position: relative;
    padding-left: 30px;
  }
  .header__submenu a::before{
    content: "";
    display: inline-block;
    border-color: var(--color-white);
    width: 8px;
    height: 8px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    left: 20px;
    top: 40%;
    transform: rotate(-135deg) translateY(-50%);
    transform-origin: left;
  }
   .header__submenu a:hover{
    color: var(--color-orange);
    opacity: 1;
   }
   .header__menu-main-item.is-open .header__menu-link:not(.header__menu-contact-link a)::before{
    width: 100%;
    transition: 0.3s;
   }

  /* 親テキストがサブメニューより手前にくるように */
  .header__menu-main-item.has-sub > .header__menu-link {
    position: relative;
    z-index: 1001;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
@media (min-width: 1025px) and (max-width: 1194px) {
 .header__submenu {
    font-size: 13px;
 }
}
@media (max-width: 1023px) {
    .header__menu-main-item:first-of-type .header__submenu{
        left: 0;
        transform: translateX(0);
    }

}
@media (min-width: 768px) and (max-width: 1024px) {
    .header__submenu {
        font-size: min(1.5625vw, 14px);
    }
}

/* SP では .header__menu-icon を非表示にする */
@media (max-width: 767px) {
  .header__menu-icon {
    display: none;
  }
  .header__menu-icon::before {
    content: none;
  }
}

/* ===== SP（〜767px）専用レイアウト調整 ===== */
@media (max-width: 767px) {

  /* 親メニュー右側の + / - アイコンは隠す */
  .header__menu-icon {
    display: none;
  }
  .header__menu-icon::before {
    content: none;
  }

  /* 親「企業情報 / お知らせ・セミナー」が開いている時は、
     その行の下線は消しておく（下の子に任せる） */
  .header__menu-main-item.has-sub.is-open > .header__menu-link {
    border-bottom: none;
  }

  /* サブメニューを行レイアウトにする */
  .header__submenu {
    padding: 0;
    margin: 0;
  }

  /* サブメニューの各リンク（会社概要 / 代表メッセージ / アクセス） */
  .header__submenu .header__menu-link {
    display: block;
    position: relative;
    padding: 16px 40px 16px 16px; /* 左右の余白を親と似せる */
    font-size: 16px;              /* 親と同じくらいに */
    font-weight: 700;             /* 太さはお好みで調整OK */
    border-bottom: 1px solid #f3a35a; /* オレンジのライン（色はサイトに合わせて変更OK） */
  }

  /* サブメニュー右側に「＞」アイコン */
  .header__submenu .header__menu-link::after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-left: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
    position: absolute;
    right: 9px;
    top: 50%;
    transform: rotate(-135deg) translateY(-50%);
    transform-origin: left;
  }
  /* SPアコーディオン */
  .header__submenu li a{
    padding-block: 10px;
    padding-inline: 20px;
    font-size: 18px;
    font-weight: 700;
    display: block;
    position: relative;
  }
  .header__submenu li a::before{
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-left: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
    position: absolute;
    right: 9px;
    top: 50%;
    transform: rotate(-135deg) translateY(-50%);
    transform-origin: left;
  }
  .header__submenu{
    border-bottom: 1px solid var(--color-orange);
    padding-bottom: 10px;
  }
  .header__menu-main-item.has-sub .header__menu-link:not(.header__menu-link.has-sub):not(button.header__menu-link)::before{
    right: 13px;
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
    transition: 0.3s;
  }
  .header__menu-main-item.has-sub.is-open .header__menu-link:not(.header__menu-link.has-sub):not(button.header__menu-link)::before{
    transform: rotate(-225deg) translateY(-50%);
    top: 39%;
    transition: 0.3s;
  }
}





/* /アコーディオン*/




@media (min-width: 1025px) and (max-width: 1194px) {
    .header__logo a {
        width: 200px;
        height: 50px;
        margin-left: -10px;
    }

    .header__menu-main-list {
        gap: 12px;
    }

    .header__menu-link {
        font-size: 13px;
    }

    .header__menu-contact {
        gap: 8px;
    }

    .header__menu-tel {
        margin-right: 4px;
    }

    .header__menu-tel-link a {
        font-size: 22px;
    }

    .header__menu-contact-link a {
        width: 135px;
    }

    .header__menu-contact-link a::before {
        right: -2px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .header {
        height: 88px;
    }

    .header__inner {
        padding-inline: 15px;
    }

    .header__contents {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .header__nav-area {
        width: 100%;
    }

    .header__menu {
        align-items: flex-end;
        margin-top: -28px;
        margin-left: 15px;
    }

    .header__menu-contact {
        gap: min(1vw, 16px);
        position: relative;
        top: -18px;
    }

    .header__menu-link {
        font-size: min(1.5625vw, 14px);
    }

    .header__menu-main-list {
        gap: min(1.3vw, 30px);
    }

    .header__menu-tel {
        margin-right: 0;
    }

    .header__menu-tel-link a {
        font-size: min(2.34vw, 22px);
    }

    .header__menu-tel-text {
        font-size: min(1.3vw, 12px);
    }

    .header__menu-contact-link a {
        height: 40px;
        width: min(16.5vw, 160px);
        font-size: min(1.5vw, 14px);
    }

    .header__menu-contact-link a::before {
        width: 8px;
        height: 8px;
        border-width: 2px;
        top: 40%;
        right: -2px;
    }
}

@media (min-width: 768px) {
    .header__menu{
        display: flex !important;
        opacity: 1;
        pointer-events: auto;
        position: static;
        height: auto;
        background: transparent;
        transition: none;
    }

    .header__menu-link:not(.header__menu-contact-link a)::before{
        content: "";
        display: block;
        background-color: var(--color-orange);
        border-radius: 50rem;
        height: 4px;
        width: 0;
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        transition: 0.3s;
    }

    .header__menu-link:not(.header__menu-contact-link a):hover::before{
        width: 100%;
        transition: 0.3s;
    }
}

@media (max-width: 767px){
    html.is-fixed{
        overflow: hidden;
    }

    .header{
        height: 75px;
    }

    .header__inner {
        padding-inline: 18px;
    }

    .header__logo a {
        width: 210px;
        height: 52px;
        /* margin-top: 0; */
    }

    .header__menu{
        height: 100dvh;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--color-light-orange);
        transform: translateY(-100%);
        transition: transform 0.4s ease;
    }

    .header__menu.is-active{
        transform: translateY(0);
    }

    .header__menu-main{
        padding-top: 120px;
        width: 100%;
    }

    .header__menu-main-list {
        flex-direction: column;
        gap: 0;
        padding-inline: 5vw;
    }

    .header__menu-main-item{
        width: 100%;
    }

    .header__menu-link:not(.header__menu-contact a){
        display: block;
        border-bottom: 1px solid var(--color-orange);
        font-size: 18px;
        padding-block: 20px;
        padding-inline: 20px;
        width: 100%;
        position: relative;
    }

    .header__menu-link:not(.header__menu-link.has-sub):not(button.header__menu-link)::before{
        content: "";
        display: inline-block;
        width: 9px;
        height: 9px;
        border-left: 2px solid var(--color-black);
        border-bottom: 2px solid var(--color-black);
        position: absolute;
        right: 9px;
        top: 50%;
        transform: rotate(-135deg) translateY(-50%);
        transform-origin: left;
    }

    .header__menu-contact{
        display: none;
    }

    .sp-fixed{
        display: block;
        background-color: var(--color-black);
        padding: 8px;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 10;
    }

    .sp-fixed__inner{
        display: flex;
        gap: 10px;
    }

    .sp-fixed-tel{
        flex-basis: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fff;
        border-radius: 5px;
        padding: 9px;
    }

    .sp-fixed-tel img{
        width: 100%;
        height: 100%;
    }

    .sp-fixed__contact,.sp-fixed__download{
        flex-basis: calc((100% - (20px + 50px)) / 2);
    }

    .sp-fixed__contact a,.sp-fixed__download a{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-radius: 5px;
        font-weight: 600;
        height: 100%;
        position: relative;
    }

    .sp-fixed__contact a{
        background-color: var(--color-white);
        color: var(--color-orange);
    }

    .sp-fixed__contact a::before,.sp-fixed__download a::before{
        content: "";
        display: block;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        width: 23px;
        height: 29px;
    }

    .sp-fixed__contact a::before{
        background-image: url(../img/backofficeforce/icon-mail-orange.svg);
    }

    .sp-fixed__download a{
        background-color: var(--color-orange);
        color: var(--color-white);
    }

    .sp-fixed__download a::before{
        background-image: url(../img/backofficeforce/icon-download.svg);
    }

    /* ハンバーガーボタン */
    .header__nav-brn {
        display: block;
        position: relative;
        width: 40px;
        height: 40px;
        border: none;
        background: var(--color-white);
        border-radius: 6px;
        cursor: pointer;
        z-index: 1001;
        position: fixed;
        top: 18px;
        right: 16px;
    }

    .header__nav-brn:active, .header__nav-brn:focus-visible, .header__nav-brn.is-active{
        background: #faf0e8;
    }

    .header__nav-brn .--line,
    .header__nav-brn .--line::before,
    .header__nav-brn .--line::after {
        display: block;
        width: 28px;
        height: 4px;
        background-color: var(--color-orange);
        border-radius: 50rem;
        transition: all 0.3s ease;
        position: absolute;
        left: 50%;
        transform-origin: center;
    }

    .header__nav-brn .--line {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .header__nav-brn .--line::before {
        content: '';
        top: -8px;
        transform: translate(-50%, -50%);
    }

    .header__nav-brn .--line::after {
        content: '';
        bottom: -12px;
        transform: translate(-50%, -50%);
    }

    /* active時*/
    .header__nav-brn.is-active .--line {
        background-color: transparent;
    }

    .header__nav-brn.is-active .--line::before {
        top: 0;
        left: 0px;
        transform: rotate(45deg) translateY(0);
    }

    .header__nav-brn.is-active .--line::after {
        bottom: 0;
        left: 0px;
        transform: rotate(-45deg) translateY(0);
    }

}

@media (max-width: 499px){
    .sp-fixed {
        padding: 6px;
    }

    .sp-fixed-tel {
        flex-basis: 44px;
    }

    .sp-fixed__contact, .sp-fixed__download {
        flex-basis: calc((100% - (20px + 44px)) / 2);
    }

    .sp-fixed__contact a, .sp-fixed__download a {
        font-size: 14px;
        gap: 5px;
    }

    .sp-fixed__contact a::before, .sp-fixed__download a::before {
        width: 19px;
        height: 19px;
    }
}

@media (max-width: 389px){
    .sp-fixed__contact a, .sp-fixed__download a {
        font-size: 3.59vw;
        gap: 3px;
    }
}

/*----------------------------------
footer-contact
-----------------------------------*/
.footer-contact{
    background-color: var(--color-dark-gray);
    background-image: url(../img/backofficeforce/footer-contact-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    border-radius: 50px 50px 0 0;
    padding-top: 80px;
    padding-bottom: 105px;
    overflow: hidden;
    position: relative;
    /* max-width: 1500px; */
    margin-inline: auto;
    position: relative;
}

.webp .footer-contact{
    background-image: url(../img/backofficeforce/footer-contact-bg.jpg.webp);
}

/*.footer-contact.--educational_quality{
    border-radius: 0;
}*/

.footer-contact::before{
    content: "";
    display: block;
    background-color: rgb(0 0 0 / 50%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.footer-contact__title-en{
    font-size: 95px;
    text-indent: 0;
    position: relative;
    top: 0;
}

.footer-contact-area{
    background-color: var(--color-white);
    border-radius: 34px;
    margin-top: 20px;
    padding: 32px 40px 60px;
    position: relative;
    z-index: 0;
}

.footer-contact__title{
    font-size: 38px;
    font-weight: 900;
    text-align: center;
}

.footer-contact-main{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 38px;
}

.footer-contact-tel{
    padding-right: 26px;
    line-height: 1;
}

.footer-contact-tel a{
    color: #111;
    font-family: var(--font-en);
    font-size: 46px;
    font-weight: 800;
}

.footer-contact-tel-text{
    font-size: 16px;
    font-weight: 500;
    margin-top: 6px;
}

.footer-contact-link-wrap{
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-left: 26px;
    position: relative;
}

.footer-contact-link-wrap::before{
    content: "";
    display: block;
    height: 100%;
    width: 1px;
    background-color: #e1dddd;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50% );
}

.footer-contact-link{
    flex-basis: 240px;
}

.footer-contact p.footer-contact-link-text{/*別ページの打消し防止のため!important入れてる*/
    color: var(--color-blue);
    font-size: 12px !important;
    font-weight: 500;
    line-height: 1.5 !important;
    text-align: center;
    letter-spacing: 0 !important;
}

.link-button.--contact,.link-button.--download{
    display: flex;
    justify-content: center;
    align-items: center;
    border-color: var(--color-blue);
    font-weight: 600;
    width: 240px;
    height: 44px;
    margin-top: 10px;
}

.link-button.--download:hover{
    background-color: #0063ce;
    opacity: 1;
}

.link-button.--contact:hover{
    background-color: #eff7ff;
    opacity: 1;
}

.link-button.--contact{
    background-color: var(--color-white);
    color: var(--color-blue);
}

.link-button.--contact::before{
    border-color: var(--color-blue);
}

.link-button.--download::before{
    border-color: var(--color-white);
}

.link-button.--download{
    background-color: var(--color-blue);
    color: var(--color-white);
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer-contact {
        border-radius: 4.9vw 4.9vw 0 0;
        padding-top: 7.32vw;
        padding-bottom: 10.25vw;
    }

    .footer-contact__title-en {
        font-size: 9.765vw;
    }

    .footer-contact-area {
        border-radius: 34px;
        margin-top: 1.95vw;
        padding: 3.125vw 3vw 5.86vw;
    }

    .footer-contact__title {
        font-size: 3.71vw;
    }

    .footer-contact-main {
        margin-top: 3.7vw;
    }

    .footer-contact-tel {
        padding-right: 2.54vw;
    }

    .footer-contact-tel a {
        font-size: 4.5vw;
    }

    .footer-contact-tel-text {
        font-size: 1.5625vw;
        margin-top: 0.585vw;
    }

    .footer-contact-link-wrap {
        gap: 1.464vw;
        padding-left: 2.54vw;
    }

    .footer-contact-link {
        flex-basis: 23.43vw;
    }

    .footer-contact-link-text {
        font-size: max(10px, 1.172vw);
    }

    .link-button.--contact, .link-button.--download {
        font-size: 1.5625vw;
        width: 23.43vw;
        height: 4.3vw;
        margin-top: 0.97vw;
    }

    .footer-contact-link a::before {
        width: 0.88vw;
        height: 0.88vw;
        right: 0.2vw;
    }
}

@media (max-width: 767px){
    .footer-contact {
        background-image: url(../img/backofficeforce/footer-contact-bg.jpg);
        background-position: right;
        border-radius: 50px 50px 0 0;
        padding-top: 70px;
        padding-bottom: 80px;
    }

    .webp .footer-contact {
        background-image: url(../img/backofficeforce/footer-contact-bg_sp.jpg.webp);
    }

    .footer-contact__title-en {
        font-size: min(11.28vw, 70px);
    }

    .footer-contact-area {
        border-radius: 40px;
        margin-top: 12px;
        padding: 32px 4vw 56px;
    }

    .footer-contact__title {
        font-size: min(5.13vw, 32px);
    }

    .footer-contact-main {
        flex-direction: column;
        margin-top: 35px;
    }

    .footer-contact-tel {
        padding-right: 0;
    }

    .footer-contact-tel a {
        font-size: min(8.2vw, 50px);
    }

    .footer-contact-tel-text {
        font-size: min(3.07vw, 14px);
        text-align: center;
    }

    .footer-contact-link {
        flex-basis: auto;
        width: 100%;
        max-width: min(61.54vw, 240px);
    }

    .footer-contact-link-wrap {
        padding-left: 0;
        /* margin-top: 30px; */
        margin-top: 27px;
        padding-top: 25px;
        width: 100%;
    }

    .footer-contact-link-wrap::before{
        width: 100%;
        max-width: 500px;
        height: 1px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .link-button.--contact, .link-button.--download {
        /* font-size: 14px; */
        font-size: min(3.59vw, 16px);
        width: 100%;
    }

    /* .link-button::before {
        right: 4px;
    } */
}

@media (max-width: 499px){
    .footer-contact-link-wrap {
        flex-direction: column;
        align-items: center;
        gap: 19px;
    }
}


/*----------------------------------
footer
-----------------------------------*/
.footer{
    background-color: #222;
    color: var(--color-white);
    padding-top: 70px;
    /* max-width: 1500px; */
    margin-inline: auto;
}

.footer__nav{
    display: flex;
    gap: 50px;
    padding-bottom: 65px;
}

.footer__nav-title{
    border-bottom: 1px solid var(--color-white);
    color: var(--color-white);
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 10px;
}

.footer__nav-block{
    flex-basis: calc((100% - (100px + 300px)) / 2);
    margin-top: 4px;
}

.footer__nav-title:nth-of-type(2){
    margin-top: 34px;
}

.footer__nav-list{
    padding-top: 13px;
}

.footer__nav-item a{
    display: block;
    color: var(--color-white);
    font-size: 14px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 30px;
    position: relative;
}

.footer__nav-item a:hover{
    text-decoration: underline !important;
    text-underline-offset: 2px;
    opacity: 1;
}

.footer__nav-item.--contact a{
    color: var(--color-black);
    padding-left: 20px;
}

.footer__nav-item a::before {
    content: "";
    display: inline-block;
    border-color: var(--color-white);
    width: 8px;
    height: 8px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    left: 18px;
    top: 40%;
    transform: rotate(-135deg) translateY(-50%);
    transform-origin: left;
}

.footer__nav-item.--contact a::before{
    left: 5px;
}

.footer__nav-block-contact{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-white);
    border-radius: 30px;
    padding: 46px;
}

.footer__nav-block-logo{
    width: 78%;
    margin-inline: auto;
}

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

.footer__copy{
    background-color: var(--color-orange);
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer__copy p{
    color: var(--color-white);
    font-family: var(--font-en);
    font-size: 14px;
    text-align: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer__nav {
        gap: max(30px, 4.9vw);
    }

    .footer__nav-block {
        flex-basis: calc((100% - (9.8vw + 30vw)) / 2);
    }

    .footer__nav-block-contact {
        padding-inline: min(3.9vw, 46px);
    }
}

@media (min-width: 400px) and (max-width: 767px) {
    .footer__nav-list.--contact {
        display: flex;
        gap: min(7.5vw, 50px);
        justify-content: center;
        padding-top: 20px;
    }
}

@media (max-width: 767px){
    .footer {
        padding-top: 65px;
        padding-bottom: 67px;
    }

    .footer__nav {
        gap: 11.5vw;
        flex-wrap: wrap;
        max-width: none;
    }

    .footer__nav-block {
        flex-basis: calc((100% - 11.5vw) / 2);
    }

    .footer__nav-block-contact {
        padding-top: 50px;
        padding-bottom: 44px;
    }

    .footer__nav-list {
        padding-top: 14px;
    }

    .footer__nav-title {
        font-size: 16px;
        padding-bottom: 9px;
    }

    .footer__nav-title:nth-of-type(2) {
        margin-top: 33px;
    }

    .footer__nav-item a {
        font-size: 14px;
        padding-left: 30px;
    }

    .footer__nav-item.--policy a{
        margin-right: -20px;
    }

    .footer__nav-item a::before {
        width: 8px;
        height: 8px;
        left: 16px;
        top: 38%;
    }

    .footer__nav-block-logo {
        width: min(60%, 220px);
    }

    .footer__nav-list.--contact {
        padding-top: 13px;
    }
}

@media (max-width: 499px){
    .footer {
        padding-bottom: 57px;
    }
}

/*----------------------------------
リニューアル前のCSS打ち消し用
-----------------------------------*/
.section-title{
    letter-spacing: 0;
}

.header {
    min-height: auto;
    display: block;
}

.header:before{
    content: none;
}

.footer{
    height: auto;
}

.main.--top,
.main.--message,
.footer-contact,
.footer{
    letter-spacing: 0;
}

.main.--service,
.main.--educational_quality{
    margin-bottom: 0;
}

.main.--top .inner,
.main.--message .inner,
.footer-contact .inner,
.footer .inner{
    max-width: calc(1000px + 60px);
    width: 100%;
    margin-top: 0;
}

/*フォーム修正*/
  .wpcf7 input[type="checkbox"],
  .wpcf7 input[type="radio"] {
      width: 16px !important;
      height: 16px !important;
      display: inline-block !important;
      appearance: auto !important;
      -webkit-appearance: auto !important;
      margin: 0 6px 0 0 !important;
  }
.contact__form_style .top-contact__form-item dd textarea {
	border: 1px solid #f0ada8;
    border-radius: 3px;
}