/*--------------------------------------
base
--------------------------------------*/

html {
  font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP", serif, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
    position:relative;
    color:#000;
}
.noto-serif {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-style: normal;
  }

p {
    margin:0;
}
ul {
    margin:0;
    padding:0;
}
li {
    list-style: none;
}
a {
    opacity:1;
    transition:opacity .15s ease-in-out;
}
a:hover {
    text-decoration:none;
    opacity:.5;
}
img {
    max-width: 100%;
    height: auto;
}

/*--------------------------------------
bootstrap-hacks
--------------------------------------*/

/*-----gutter-----*/

.gutter-1 {
    margin-right: -1px;
    margin-left: -1px;
}
.gutter-1 > [class^='col-'] {
    padding-top: 1px;
    padding-right: 1px;
    padding-bottom: 1px;
    padding-left: 1px;
}
.gutter-5 {
    margin-right: -5px;
    margin-left: -5px;
}
.gutter-5 > [class^='col-'] {
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
}
.gutter-75 {
    margin-right: -7.5px;
    margin-left: -7.5px;
}
.gutter-75 > [class^='col-'] {
    padding-top: 7.5px;
    padding-right: 7.5px;
    padding-bottom: 7.5px;
    padding-left: 7.5px;
}
.gutter-10 {
    margin-right: -10px;
    margin-left: -10px;
}
.gutter-10 > [class^='col-'] {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}
.gutter-15 {
    margin-right: -15px;
    margin-left: -15px;
}
.gutter-15 > [class^='col-'] {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
}
.gutter-25 {
    margin-right: -25px;
    margin-left: -25px;
}
.gutter-25 > [class^='col-'] {
    padding-top: 15px;
    padding-right: 25px;
    padding-bottom: 15px;
    padding-left: 25px;
}
.container {
  max-width: 1300px;
}
@media (max-width: 1200px){
  .container {
    max-width: 960px;
  }
}
@media(max-width:991.98px) {
    .container {
        max-width:none;
    }
}
.inner-container {
    max-width: 950px;
    margin: 0 auto;
}

/*--------------------------------------
utils
--------------------------------------*/

/*-----icons-----*/


/*-----texts-----*/

.ff-gothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.ff-serif {
  font-family:Trebuchet MS、Lucida Grande、Lucida Sans Unicode、Lucida Sans、sans-serif;
}
.ff-mincho {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}


/*-----font-color-----*/

.color-corporate-red {
    color:#EB6464;
}
.color-corporate-blue {
    color:#36A6CE;
}


/*-----header-----*/

/*-----header-----*/

#global-header {
    position: fixed;   /* ← relative から変更 */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;     /* 画像やFVより前に出す */
    background: #fff;  /* 透け防止（重要） */
}
.header-top {
    display:flex;
}
.header-logo {
    margin-bottom:0;
    padding:15px 30px;
    margin-right:auto;
}
.header-logo img {
    width:150px;
}
.header-btns {
    display:inline-flex;
    align-items:center;
    justify-content:center;
}
.header-contact-btn {
    display: inline-flex;
    align-items:center;
    justify-content:center;
    font-size:1.6rem;
    padding:15px 30px;
    color:#222 !important;
    border: 1px solid #ddd;
    border-bottom: none;
}
.scout-btn {
    display: inline-flex;
    height: 50%;
    align-items:center;
    justify-content:center;
    font-size:1.9rem;
    padding:15px;
    color:#fff !important;
    background:#808080;
    border-radius: 30px;
    margin: 10px;
}
.line-btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#696969 !important;
    font-weight: bold;
    font-size:1.9rem;
    padding:23px;
    border-radius: 30px;
    margin: 10px;
    height: 50%;
    overflow: hidden;
    position: relative;
    transition: .1s;
    z-index: 5;
}
.line-btn::after {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #B09842, #D9CC98);
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
}
.line-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  width: 100px;
  height: 100px;
  background-color: #D9CC98;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  transition: .5s;
}
.line-btn:hover {
  opacity: 1;
}
.line-btn:hover::before {
    transform: translate(0, -50%) scale(20);
}
.line-btn span {
    margin-right:4px;
    padding:5px;
    border-radius:5px;
    font-size:1.4rem;
    background:#D5A600;
    z-index: 5;
}
.header-nav {
    display:flex;
}
.header-nav li {
    min-width: 20%;
}
.header-nav li > a {
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:5px;
    min-height:50px;
    border-bottom:1px solid #ddd;
    background:#fff;
    font-size:1.8rem;
    color:#222 !important;
    white-space: nowrap;
}
.header-nav li:hover > a {
    border-bottom: 2px solid #b8860b;
}
.sub-menu-wrapper {
    display: none;
    position: absolute;
    left: 0;
    width: 100vw;
    background:#fff;
    justify-content: center;
    border-bottom:1px solid #ddd;
}
.sub-menu {
    display: flex;
    width: 80%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}
.sub-menu > li {
    display: block;
    width: 33%;
}
.sub-menu li > a {
    font-size:1.7rem;
    border-top: 0px;
    border-bottom: 0px;
}
.expand-button {
    display: none;
}
.header-sp-btn {
    width:60px;
    height:60px;
    background:#21293F;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content: center;
    flex-direction: column;
}
.header-hamburger {
    position:relative;
    height:25px;
    width:35px;
}
.header-hamburger > span {
    position:absolute;
    display:block;
    height:3px;
    width:100%;
    border-radius:5px;
    background:#fff;
    transition:.2s;
}
.header-hamburger > span:nth-of-type(1) {
    top:0;
}
.header-hamburger > span:nth-of-type(2) {
    margin:auto;
    top:0;
    bottom:0;
}
.header-hamburger > span:nth-of-type(3) {
    bottom:0;
}
.header-sp-btn p {
    font-family: "Noto Serif JP", serif;
    font-size:1rem;
    color:#fff;
    margin-top:5px;
    text-align:center;
}
.open .header-hamburger > span:nth-of-type(1) {
    transform:translateY(11px) rotate(-45deg);
}
.open .header-hamburger > span:nth-of-type(2) {
    opacity:0;
}
.open .header-hamburger > span:nth-of-type(3) {
    transform:translateY(-11px) rotate(45deg);
}

.bottom-btn {
  display: none;
}
@media(max-width:1199.98px) {
    .header-nav li > p,
    .header-nav li > a,
    .header-nav-child li > a ,
    .sub-menu-wrapper li > a {
        font-size:1.6rem;
    }
}
@media(max-width:991.98px) {
    .header-logo {
        padding:5px 10px;
        width:140px;
    }
    .header-bottom {
        display:none;
        padding:30px;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        overflow:auto;
        background: #21293F;
    }
    .header-nav {
        flex-direction: column;
    }
    .header-nav-child {
        position:static;
    }
    .header-nav li > p,
    .header-nav li > a,
    .header-nav-child li > a ,
    .sub-menu-wrapper li > a {
        color:#fff !important;
        background:none;
        border-left:1px solid #CCC!important;
    }
    .sub-menu-wrapper {
        position: relative;
        width: 100%;
        background: #21293F;
    }
    .sub-menu {
        display: block;
        width: 100%;
    }
    .sub-menu > li {
        display: block;
        width: %;
    }
    .header-btns {
        margin-top:30px;
        flex-direction:column;
    }
    .header-btns a {
        margin-bottom:20px;
    }
    .scout-btn {
        border-radius: 0%;
        padding: 10px;
        width : 75vw;
    }
    .line-btn {
        border-radius: 0%;
        padding: 10px;
        width: 75vw;
    }
}
.main-wrap {
    padding-top: 120px;
}

/*-----fv-----*/

.fv-section {
}
.fv-top {
    position:relative;
    display:flex;
    padding:160px 0 80px;
    justify-content:center;
    align-items:flex-end;
    flex-direction: column;
    background: linear-gradient(rgba(0,0,0,0.25),rgba(0,0,0,0.25)), url(./images/mv.webp) center 57% / cover no-repeat;
}
.fv-inner {
    max-width:800px;
}
.fv-inner-text {
    display:inline-block;
    background:#222222;
    color:#fff;
    padding:10px 20px;
    line-height:1;
    font-size:2rem;
}
.fv-main-text {
    margin:10px 0 10px;
    font-size:3.6rem;
    line-height:1.5;
    color:#fff;
    font-family: "Noto Serif JP", serif;
}
.fv-sub-text {
    max-width:700px;
    margin-top:20px;
    margin-bottom:20px;
    margin-left:-20%;
}
.fv-bottom {
    overflow:hidden;
    padding:20px;
    background:#fff;
}
.job-number-text {
    margin-bottom:20px;
    text-align:center;
    font-size:2rem;
    font-weight:normal;
}
.job-number-text span {
    font-size:3.2rem;
    font-weight:bold;
    color:#D5A600;
    margin:0 5px;
    letter-spacing:3px;
}
.fv-sub-slider {
    margin:10px 0;
}
.fv-bottom-panel {
    padding:10px;
}
@media (max-width: 1199.98px) {
}
@media (max-width: 991.98px) {
    .fv-top {
        padding:70px 0;
        align-items:center;
    }
    .fv-inner-text {
        font-size:1.6rem;
    }
    .fv-main-text {
        font-size:2.3rem;
    }
    .fv-sub-text {
        margin-left:0;
    }
}
@media (max-width: 767.98px) {
    .fv-top {
        padding: 80px 10px 30px;
    }
    .job-number-text {
        font-size:1.8rem;
    }
    .job-number-text span {
        font-size:2.8rem;
    }
}


/*-----about-----*/
.common-section {
    padding:50px 0 140px;
}
.about-section {
    background:#f6f6f7;
}
.section-title-area {
    margin-bottom:50px;
    text-align:center;
}
.section-title-text {
    color:#D5A600;
    font-family: "Noto Serif JP", serif;
    font-size:1.8rem;
}
.section-title {
    margin-top:20px;
    font-size:3rem;
    font-family: "Noto Serif JP", serif;
}
.page-title-area.selections .section-title {
  text-align: left;
}
.section-lead-box {
    margin:0 auto 50px;
    padding:20px;
    max-width:750px;
    background:#fff;
    border:2px solid #21293F;
}
.section-lead-box p {
    text-align:center;
    font-size:1.8rem;
    line-height:1.8;
    font-family: "Noto Serif JP", serif;
}
.about-panels {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}
.about-number {
    font-family: "Allura", cursive;
    position:relative;
    font-size:3rem;
    color:#D5A600;
}
.about-number::after {
    content:'';
    position:absolute;
    left:40px;
    top:0;
    bottom:0;
    margin:auto;
    display:block;
    width:1px;
    height:35px;
    background:#D5A600;
    transform:rotate(30deg);
}
.about-title {
    margin-bottom:20px;
    font-family: "Noto Serif JP", serif;
    font-size:1.6rem;
    color:#21293F;
}
.about-img {
    margin-bottom:20px;
}
.about-img img {
  aspect-ratio: 3 /2;
  object-fit: cover;
    width:100%;
}
.about-text {
    font-size:1.4rem;
    color:#21293F;
}
.section-btn-area {
    margin-top:60px;
}
.main-btn {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin:auto;
    padding:15px 25px;
    background:#21293F;
    max-width:300px;
    width: 100%;
    overflow: hidden;
    position: relative;
    transition: .3s;
}
.main-btn.line {
  background: linear-gradient(90deg, #B09842, #D9CC98);
}
.main-btn::before {
  content: '';
    position: absolute;
    top: 50%;
    right: 0;
    margin: auto;
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(0, -50%) scale(0);
    z-index: 0;
    transition: 1s;
}
.main-btn:hover {
  opacity: 1;
}
.main-btn:hover::before {
  transform: translate(0, -50%) scale(10);
}
.main-btn.main-btn-reverse::before {
  background-color: #c9b97e;
}
.main-btn p {
    font-size:1.6rem;
    color:#fff;
    z-index: 5;
    transition: 1s;
}
.main-btn:hover p {
  color: #000;
}
.btn-arrow {
    display:flex;
    align-items:center;
    justify-content:center;
    width:45px;
    height:45px;
    background:#fff;
    border-radius:5px;
    z-index: 5;
}
.btn-arrow::before {
    content:'';
    width:20px;
    height:20px;
    background:url(./img/icon/icon-right-arrow.svg) no-repeat center / cover;
}
.main-btn-reverse {
    background:#fff;
}
.main-btn-reverse p {
    color:#222;
}
.main-btn-reverse .btn-arrow {
    background:#c9b97e;
}
.main-btn-reverse .btn-arrow::before {
    background:url(./img/icon/icon-right-arrow-white.svg) no-repeat center / cover;
}
.main-btn

@media (max-width: 1199.98px) {
}
@media (max-width: 991.98px) {
  .about-panels > div:nth-child(n + 4){
    display: none;
  }
  .about-panels {
      grid-template-columns: 1fr 1fr;
      grid-gap: 15px;
  }
}
@media (max-width: 767.98px) {
  .section-title {
      font-size:2.4rem;
  }
  .about-panels {
    grid-template-columns: 1fr;
  }

}


/*-----advisor-section-----*/
.home .advisor-section {
    background:#21293F;
}
.home .advisor-panel p {
     color:#fff;
}
.home .advisor-section .section-title  {
     color:#fff;
}
.advisor-img img {
    width:100%;
}
.advisor-title {
    font-family: "Noto Serif JP", serif;
    color:#fff;
    font-size:2.2rem;
    line-height:1;
    margin:20px 0 20px;
}
.advisor-normal-text {
    position:relative;
    color:#fff;
    font-size:1.6rem;
    height:14rem;
    overflow:hidden;
}
.advisor-text {
    position:relative;
    color:#fff;
    font-size:1.6rem;
    height:14rem;
    overflow:hidden;
}
.open .advisor-text {
    height:auto;
}
.viewmore {
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    display:flex;
    align-items:center;
    padding:10px;
    background:#21293F;
}
.viewmore::before {
    content:'';
    height:1px;
    background:#fff;
    flex:1 1 auto;
    margin-right:5px;
}
.open .advisor-text .viewmore {
    display:none;
}



/*-----job-section-----*/
.job-lead {
    margin-bottom:30px;
    font-size:1.6rem;
    text-align:center;
}
.job-lead span {
    font-weight:bold;
    text-decoration-color: #F0D986;
    text-decoration-line: underline;
    text-decoration-thickness: 10px;
    text-underline-offset: -5px;
}
.job-logos {
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:30px;
}
.job-logos a {
    padding:15px 5px;
    width:14.2857142857%;
    display:block;
    text-align:center;
}

@media (max-width: 991.98px) {
    .job-logos a {
        width:20%;
    }
}
@media (max-width: 767.98px) {
    .job-logos a {
        width:33.333333%;
    }
}

/*-----case-----*/
.case-section {
    background:#f6f6f7;
}

.case-panel {
    border:2px solid #21293F;
    background:#fff;
    transition: .5s;
}
.case-panel:hover {
  transform: translate(0, -10px);

}
.case-panel-title {
    background:#21293F;
    text-align: center;
    font-size:1.6rem;
    color:#fff;
    padding:10px 5px;
}
.case-panel-inner {
    padding:20px 25px;
}
.case-panel-inner > p {
    margin-bottom:20px;
    text-align:center;
    font-size:1.3rem;
    color:#21293F;
}
.before-line {
    display:flex;
    width:100%;
    border:2px solid #CCC;
}
.before-line > div {
    display:flex;
    align-items:center;
    justify-content:center;
    width:50%;
    min-height:65px;
    text-align:center;
}
.before-line > div:nth-of-type(1) {
    background:#ccc;
    color:#21293F;
    font-size:1.3rem;
}
.before-line > div:nth-of-type(2) {
    background:#fff;
    color:#21293F;
    font-size:1.8rem;
}
.before-line > div:nth-of-type(2) span {
    font-size:1.4rem;
    margin-top:5px;
    margin-left:3px;
}
.story-panel .before-line > div:nth-of-type(1) {
  font-size:1.8rem;
}
.story-panels > div:nth-of-type(n + 7) {
  display:none;
}
.after-line {
    display:flex;
    width:100%;
    border:2px solid #21293F;
}
.after-line > div {
    display:flex;
    align-items:center;
    justify-content:center;
    width:50%;
    min-height:65px;
    text-align:center;
}
.after-line > div:nth-of-type(1) {
    background:#21293F;
    color:#fff;
    font-size:1.3rem;
}
.after-line > div:nth-of-type(2) {
    background:#fff;
    color:#21293F;
    font-size:1.8rem;
}
.after-line > div:nth-of-type(2) span {
    font-size:1.4rem;
    margin-top:5px;
    margin-left:3px;
}
.story-panel .after-line > div:nth-of-type(1) {
  font-size:1.8rem;
}
.case-panel-flow {
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    width:100%;
}
.case-panel-flow > span {
    display:block;
    margin:5px 0 12px;
    width:15px;
    height:15px;
    border-left:4px solid #21293F;
    border-bottom:4px solid #21293F;
    transform:rotate(-45deg);
}
.box-link {
    display:flex;
    align-items:center;
    justify-content:flex-end;
    margin-top:20px;
}
.box-link p {
    font-size:1.3rem;
    color:#21293F;
    margin-right:20px;
    transition: .3s;
}
.box-link:hover {
  opacity: 1;
}
.box-link:hover p {
  transform: translate(10px, 0);
}
.box-link > .btn-arrow {
    background:#21293F;
}
.box-link > .btn-arrow::before {
    background:url(./img/icon/icon-right-arrow-white.svg) no-repeat center / cover;
}

@media(max-width:1199.98px) {
    .case-panel-inner {
        padding:15px;
    }
}

@media(max-width:575.98px) {
  .before-line ,
  .after-line {
    flex-direction: column;
  }
  .before-line > div,
  .after-line > div {
    width:100%;
  }
  .story-panels > div:nth-of-type(n + 4) {
    display:none;
  }
}

/*-----stories-----*/
.story-panel {
    display:grid;
    border:2px solid #B09842;
    padding:30px 20px;
    background: #fff;
    grid-template-columns: minmax(100px, 180px) 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
.story-panel.myStory {
  padding: 30px 100px;
  margin-bottom: 40px;
}
.story-panel + .story-panel {
    margin-top:40px;
}
.story-left {
    max-width: 180px;
}
.story-img {
    text-align:center;
    margin-bottom:15px;
    width: 100%;
}
.story-img-text {
    text-align:center;
    font-size:1.4rem;
}
.story-right {
    width:100%;
}
.story-before {
    position: relative;
}

.story-flow > span {
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 15px;
    height: 15px;
    border-left: 4px solid #21293F;
    border-bottom: 4px solid #21293F;
    transform: translateX(-50%) translateX(30px) rotate(-45deg);
}
.story-title {
    margin-bottom:20px;
    font-family: "Noto Serif JP", serif;
    font-size:2rem;
}
.story-before,
.story-after {
    display:flex;
    align-items:center;
    width:100%;
}
.story-before p,
.story-after p {
    min-width:60px;
    color:#21293F;
    font-size:1.5rem;
    margin-right:10px;
}
.story-inner {
  padding: 50px 100px;
  background: #F6F6F7;
}

@media (max-width: 991.98px) {
  .story-inner {
    padding: 25px 50px;
  }
}

@media (max-width: 767.98px) {
    .story-panel {
        grid-template-columns: 1fr;
    }
    .story-panel.myStory {
      padding: 20px 50px;
      margin-bottom: 40px;
    }
    .story-left {
      margin:auto;
    }
    .story-flow {
        flex-direction:column;
    }
    .story-before, .story-after {
        flex-direction:column;
        align-items:start;
    }
    .story-inner {
      padding: 20px;
    }
}

/*-----service-----*/
.service-section {
    background:#21293F;
}
.service-section .section-title {
    color:#fff;
}
.service-flow-box {
    padding:50px 60px 80px;
    background:#fff;
}
.service-line {
    display:flex;
}
.service-line-imgs {
    flex:0 0 auto;
    margin-right:30px;
    position:relative;
}
.service-line-number {
    font-family: "Allura", cursive;
    font-weight:100;
    position:absolute;
    top:-30px;
    right:100%;
    font-size:4rem;
    color:#D5A600;
    z-index:1;
}
.service-line-number::after {
    content:'';
    position:absolute;
    left:calc(100% + 5px);
    top:0;
    bottom:0;
    margin:auto;
    display:block;
    width:1px;
    height:60px;
    background:#D5A600;
    transform:rotate(45deg);
}
.service-line-img {
  width:240px;
  flex: 0 0 auto;
}
.service-line-texts {
    flex:1 1 auto;
}
.service-line-title {
    display:inline-block;
    margin-bottom:10px;
    min-width:200px;
    line-height:1;
    padding:10px;
    font-size:1.7rem;
    color:#fff;
    background:#21293F;
    text-align:center;
}
.service-line-text {
    font-size:1.6rem;
    line-height:1.6;
    color:#21293F;
}
.service-flow-box > span {
    display:block;
    margin:20px auto 30px;
    width:15px;
    height:15px;
    border-left:4px solid #21293F;
    border-bottom:4px solid #21293F;
    transform:rotate(-45deg);
}
.service-line-last {
    margin:50px auto 0;
    position:relative;
    border:3px solid #D5A600;
    text-align:center;
    max-width:320px;
    padding:30px 15px;
    line-height:1;
    font-weight:bold;
    font-size:2.2rem;
    background:#F6F6F7;
    color:#000;
}

@media (max-width: 767.98px) {
    .service-line {
        flex-direction:column;
        align-items:center;
    }
    .service-line-imgs {
        margin-right:0;
        margin-bottom:20px;
    }
    .service-line-texts {
        text-align:center;
    }
    .service-line-text {
        text-align:left;
     }
     .service-line-number {
        top:-40px;
        right:auto;
        left:-30px;
     }
}

/*-----bv-----*/
.bv-bottom {
    background:#fff;
}
.bv-section .fv-top {
    padding:160px 0 190px;
}
.bv-panels {
    background: #fff;
    margin-top:-17%;
    padding:30px;
    display:flex;
    position:relative;
    z-index:1;
}
.bv-panel {
    width:100%;
    padding:20px;
    display:flex;
    flex-direction:column;
}
.bv-panels > span {
    content:'';
    display:block;
    width:2px;
    background:#000;
    flex:0 0 auto;
}
.bv-icon {
    text-align:center;
}
.bv-title {
    margin:10px 0;
    font-size:1.8rem;
    font-weight:bold;
    text-align:center;
}
.bv-text {
    font-size:1.5rem;
    text-align:left;
}
.bv-btn-area {
    padding:60px 0;
    background:#F6F6F7;
    text-align:center;
}

/*-----contact-----*/
.contact-area {
    background:#23274F;
    padding:40px 0;
}
.contact-box {
    max-width: 600px;
    margin:0 auto;
    padding: 40px 80px;
    background:#fff;
}
.contact-title {
    color:#23274F;
    font-size:2.2rem;
    text-align:center;
    margin-bottom:10px;
}
.btn-main {
    background:#23274F;
    padding:5px;
    display:flex;
}
.btn-sub {
    background:#4F4623;
    padding:5px;
    display:flex;
}
.btn-main span ,
.btn-sub span {
    display:flex;
    align-items: center;
    justify-content: center;
    padding:15px 5px;
    width:100%;
    color:#fff !important;
    border:1px solid #fff;
    font-size:1.8rem;
    text-align:center;
}


/*-----page-----*/

@media (max-width: 767.98px) {
    .recruit-lead {
        font-size:1.6rem;
    }
    .recruit-box {
        padding:20px 15px;
    }
    .recruit-box-title {
        font-size:2rem;
        margin-bottom:20px;
    }
    .recruit-box-text {
        font-size:1.4rem;
    }
    .recruit-box-text p + p {
        margin-top:15px;
    }
}

/*-----footer-----*/

#global-footer {
    margin-top:40px;
}
.footer-top {
    color:#fff;
    padding:40px 0 100px;
    background:#21293F;
}
.footer-nav {
    display:flex;
}
.footer-nav > div ,
.footer-nav > li {
    width:100%;
}
.footer-nav p {
    font-weight:bold;
    color:#fff;
    font-size:1.6rem;
    line-height:2.5;
}
.footer-nav a {
    color:#fff;
    font-size:1.4rem;
    line-height:2.5;
}
.footer-nav a:not([href]):not([tabindex]) {
	text-decoration:underline;
	opacity:1 !important;
}
.footer-bottom {
    padding:40px 0;
    background:#fff;
    text-align:center;
}
.footer-bottom img {
    width:150px;
    margin-bottom:30px;
}
.footer-bottom p {
    font-size:1.4rem;
    color:#21293F
}
@media (max-width: 991.98px) {
    .bv-section .fv-top {
        padding:70px 0;
        align-items:center;
    }
    .bv-panels {
        flex-direction:column;
        margin-top:-60px;
    }
    .bv-panels > span {
        width:100%;
        height:1px;
    }
}
@media (max-width: 767.98px) {
    .bv-section .fv-top {
        padding: 99px 10px 50px;
    }
    .footer-nav {
        flex-direction: column;
    }
    .footer-nav > div ,
    .footer-nav > li {
        text-align:left;
    }
    .footer-nav > div + div ,
    .footer-nav > li + li {
        margin-top:20px;
    }
}

/*-----page-----*/
.page-title-bg {
    height:230px;
    background:url(./images/common_mv.webp) no-repeat center / cover;
}
.page-title-area {
    margin-top: -100px;
    background: #fff;
    text-align: center;
    min-height: 120px;
    padding: 30px 0 40px;
}
.page-title-area.selections {
  padding: 40px 0 0 30px;
}
.anchor-boxes {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}
.anchor-boxes a {
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-direction:column;
    width:calc(50% - 15px);
    height:110px;
    padding:5px;
    border:1px solid #CCCCCC;
}
.anchor-lead {
    color: #D5A600;
    font-family: "Noto Serif JP", serif;
    font-size: 1.6rem;
}
.anchor-text {
    color:#222;
    font-size: 2.2rem;
    font-family: "Noto Serif JP", serif;
}
.anchor-boxes a span {
    display: block;
    margin: 5px 0 5px;
    width: 15px;
    height: 15px;
    border-left: 4px solid #21293F;
    border-bottom: 4px solid #21293F;
    transform: rotate(-45deg);
}
.page-lead {
  margin-bottom: 120px;
  text-align: center;
}
.page-lead p {
  font-size: 2.1rem;
}
.page-selections-lead {
  display: flex;
  justify-content: space-between;
}
.page-selections-text {
  font-size: 1.8rem;
  color: #B09842;
}
.page-selections-labels {}

@media (max-width: 991.98px) {
  .page-selections-lead {
    flex-direction: column;
  }
  .page-selections-text {
    margin-bottom: 40px;
  }
  .anchor-text {
      font-size: 1.6rem;
  }
  .page-lead {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .page-title-area.selections {
    padding: 40px 10px 0;
  }
}

/*-----strengths-----*/
.strengths-section {
    background:#21293F;
}
.strengths-section .section-title {
    color:#fff;
}
.strengths-box {
    padding:30px;
    background: #fff;
}
.strengths-item {
    display:flex;
}
.strengths-item + .strengths-item {
    margin-top:80px;
}
.strengths-img {
    flex:0 0 auto;
    margin-right:40px;
    position:relative;
}
.strengths-item:not(:first-child) .strengths-img img {
  max-width: 400px;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.strengths-img > div {
    font-family: "Allura", cursive;
    font-weight: 100;
    position: absolute;
    top: 30px;
    left:-5px;
    font-size: 4rem;
    color: #D5A600;
    font-weight:100;
    transform:rotate(-20deg);
    z-index: 1;
}
.strengths-points {

}
.strengths-points-title-wrap{
  margin: 30px 0 0 -100px;
}
.strengths-points-title {
    display:inline-block;
    padding: 15px;
    background: #fff;
    border: 2px solid #21293F;
    text-align: center;
    font-size: 2rem;
    line-height: 1;
    font-family: "Noto Serif JP", serif;
    position: relative;
    z-index:1;
}
.strengths-point {
    padding:30px 0 20px;
}
.strengths-point + .strengths-point {
    border-top:2px solid #ccc;
}
.strengths-point-title {
    margin-bottom:10px;
    font-size: 2rem;
    font-family: "Noto Serif JP", serif;
    color: #D5A600;
}
.strengths-point-text {
    font-size: 1.4rem;
}
.strengths-tag-box {
    display:flex;
    align-items:center;
    margin-top:10px;
}
.strengths-tag-title {
    display:flex;
    align-items:center;
    justify-content:center;
    width:60px;
    height:60px;
    margin-right:10px;
    color:#fff;
    text-align:center;
    font-size:1.3rem;
    flex:0 0 auto;
}
.blue .strengths-tag-title {
    background:#21293F;
}
.yellow .strengths-tag-title {
    background:#B09842;
}
.strengths-tags {
    display:flex;
    align-items:center;
    flex-wrap:wrap;
}
.strengths-tag {
    display: inline-block;
    color: #21293F;
    font-size: 1.3rem;
    min-width:50px;
    margin:2px;
    padding: 3px 10px;
    border-radius: 20px;
    text-align: center;
}
.strengths-tag-last {
    margin-left:10px;
    font-size:1.4rem;
}
.blue .strengths-tag {
    border:1px solid #21293F;
}
.yellow .strengths-tag {
    border:1px solid #B09842;
}
.strengths-logo-box {
    display:flex;
    align-items:center;
    flex-wrap:wrap;
	margin: 2rem 0;
}
.strengths-logo-box > span {
    width:20%;
	margin: .5rem 0;
}
.single-btn-belt {
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#F6F6F7;
    min-height:200px;
}
.single-btn-belt > p{
    position:absolute;
    top:20px;
    left:0;
    width:100%;
    font-size:1.7rem;
    text-align:center;
}
@media (max-width: 991.98px) {
  .strengths-item {
      display:block;
  }
  .strengths-img {
    text-align: center;
    margin: 0;
    width: max-content;
    margin: auto;
    width: 100%;
  }
  .strengths-points-title-wrap{
    margin: 0;
    margin-top: 5px;
    text-align: center;
  }
}

/*-----reasons-----*/
.reasons-section {
    background:#d1d3d9;
    margin-bottom: 65px;
}
.reasons-box {
    background:#fff;
    padding:30px;
}

.reasons-item {
  display: grid;
  grid-template-columns:  340px 1fr;
  grid-column-gap: 5px;
  margin-bottom: 90px;
}

.reasons-points-title {
  font-size: 3rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  position: relative;
  margin-top: 85px;
  margin-bottom: 20px;
}

.reasons-points-title > div {
  font-family: "Allura", cursive;
  font-weight: 100;
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 4rem;
  color: #D5A600;
  font-weight: 100;
  transform: rotate(-20deg);
  z-index: 1;
}

.reasons-point-wrap {
  border: 1px solid #000;
  padding: 20px 25px;
  margin-left: calc(50% + -65%);
  background: #fff;
}


.reasons-point:not(:last-child){
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #CCCCCC;
}
.reasons-point-title {
  font-size: 2.4rem;
  color: #B09842;
  font-family: 'Noto Serif JP';
}
.reasons-point-text {
  font-size: 1.7rem;
}

.reasons-item:nth-child(2n) {
  grid-template-columns: 1fr 340px;
}
.reasons-item:nth-child(2n) .reasons-img {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}
.reasons-item:nth-child(2n) .reasons-points {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}
.reasons-item:nth-child(2n) .reasons-point-wrap {
  margin-left: 0;
  margin-right: calc(50% + -65%);
}

@media (max-width: 991.98px) {
  .reasons-points-title {
    font-size: 2.8rem;
    margin-top: 0;
  }
  .reasons-img {
    text-align: center;
    margin-bottom: 40px;
  }
  .reasons-item {
    grid-template-columns: 1fr!important;
  }
  .reasons-img {
    grid-row: 1 / 2!important;
    grid-column: 1 / 2!important;
  }
  .reasons-points {
    grid-row: 2 / 3!important;
    grid-column: 1 / 2!important;
  }
  .reasons-point-wrap {
    margin: 0!important;
  }
  .reasons-points-title > div {
    top: -60px;
  }
}
/*-----line-btn-belt-----*/

.line-btn-belt {
  background: #F6F6F7;
  padding: 25px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.line-btn-belt p {
  font-size: 2.1rem;
  margin-bottom: 20px;
  padding: 0 20px;
  position: relative;
  display: inline-block;
  line-height: 1;
}
.line-btn-belt p::after,
.line-btn-belt p::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 80%;
  background: #000;
  position: absolute;
  top: 50%;
}
.line-btn-belt p::after {
    transform: translate(0, -50%) rotate(-20deg);
    left: 0px;
}
.line-btn-belt p::before {
    transform: translate(0, -50%) rotate(20deg);
    right: 0px;
}

/*-----recommend-----*/

.section-recommend {
  background-image: url(./images/28786312_s.webp);
  background-size: cover;
  position:relative;
}
.section-recommend::before {
  content:'';
  position: absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  background:#fff;
  z-index:1;
  opacity:.6;
}
.section-recommend .container{
  position:relative;
  z-index:2;
}
.recommend-inner {
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-column-gap: 65px;
  grid-row-gap: 40px;
  text-align: center;
  padding: 160px 0;
  align-items: flex-end;
}
.recommend-box {
  margin-bottom: 50px;
}
.recommend-top {
  background: #21293F;
  padding: 25px;
  font-size: 1.8rem;
  color: #fff;
}
.recommend-top span {
  font-size: 2.4rem;
  color: #D5A600;
}
.recommend-bottom {
  padding: 25px;
  border: 1px solid #21293F;
  font-size: 1.8rem;
  background: #fff;
}
.recommend-bottom span {
  background: linear-gradient(transparent 70%, #F0DEA2 0%);
  display: inline;
}
.recommend-img {
  width: 100%;
  max-width: 400px;
  margin: auto;
}

@media (max-width: 1199px) {
  .recommend-inner {
    grid-template-columns: 1fr;
    padding: 90px 0;
  }
  .recommend-box {
    grid-row: 2 / 3;
  }
}
/*-----btns-belt-----*/

.btns-belt {
  padding: 85px 10px;
  background: #F6F6F7;
  margin: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 20px;
}
.btns-belt .main-btn:nth-child(1){
  margin: 0;
  margin-left: auto;
}
.btns-belt .main-btn:nth-child(2){
  margin: 0;
  margin-right: auto;
}

@media (max-width: 991.98px) {
  .btns-belt {
    grid-template-columns: 1fr;
  }
  .btns-belt .main-btn {
    margin: auto!important;
  }
}

/*-----label-----*/

.label-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 30px;
  margin-bottom: 35px;
}
.label {
  padding: 10px 20px;
  background: #fff;
  box-shadow: 6px 7px 8px 0px #0000001f;
  font-size: 2.1rem;
  position: relative;
  display: flex;
  align-items: center;
}
.label:before {
  content: '';
  width: 10px;
  height: 100%;
  background: #D5A600;
  position: absolute;
  top: 0;
  left: 0;
}
.label .block {
  white-space: nowrap;
}
.label .red {
  color: #B50909;
}

@media (max-width: 991.98px) {
  .label {
    font-size: 1.1rem;
    padding: 5px 10px;
  }
  .label:before {
    width: 5px;
  }
}

@media (max-width: 576.98px) {
  .labels {
    grid-template-columns: 1fr;
  }
}

.label-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  font-weight: bold;
  padding: 20px;
  background: #F6F6F7;
  position: relative;
  margin-bottom: 20px;
}
.label-heading::before {
  content: '';
  width: 5px;
  height: 100%;
  background: #21293F;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 991.98px) {
  .label-heading {
    font-size: 1.8rem;
    padding: 10px;
  }
}

/*-----table-----*/

.table-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.1rem;
  font-weight: bold;
}
.table {
  margin-bottom: 20px;
}
.table tr {
  display: grid;
  grid-template-columns: 100px 1fr 150px 1fr 100px;
  gap:20px;
  margin-bottom:15px;
}
.table th {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  align-items: center;
  border-bottom: 1px solid #aaa;
  border-top:none;
  font-family: "Noto Serif JP", serif;
  padding: 10px;
}
.table td {
  font-size: 1.6rem;
  align-items: center;
  border: 1px solid #aaa;
  font-family: "Noto Serif JP", serif;
  padding: 10px;
}
.table td:nth-child(2n+1){
  display: flex;
  justify-content: center;
  align-items: center;
}
.table td:nth-child(2){
  display: flex;
  align-items: center;
}
.table th:nth-child(3) {
  margin-right:50px;
  position: relative;
}
.table td:nth-child(3) {
  margin-right:50px;
  position: relative;
}
.table td:nth-child(3)::after {
  content: '▶';
  font-size: 2rem;
  color: #D5A600;
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translate(50%, -50%);
}

@media (max-width: 991.98px) {
  .table-title {
    font-size: 1.8rem;
  }
  .table tr {
    grid-template-columns: 40px 1fr 80px 1fr 50px;
    gap:5px;
    margin-bottom:10px;
  }
  .table th {
    padding:5px;
    font-size: 1.4rem;
  }
  .table td {
    padding:5px;
    font-size: 1rem;
  }
  .table td:nth-child(3)::after {
    font-size: 1rem;
  }
  .table th:nth-child(3) {
    margin-right:30px;
    position: relative;
  }
  .table td:nth-child(3) {
    margin-right:30px;
    position: relative;
  }
  .table td:nth-child(3)::after {
    right: -20px;
  }
}

/*-----scout-----*/

.scout-section {
  background-image: url(./images/scout_mv.webp);
  background-size: cover;
  background-position: center bottom 15%;
  padding: 150px 0 165px;
}
.scout-inner {}
.scout-inner h2 {
  font-family: "Noto Serif JP", serif;
  padding: 25px 30px;
  font-size: 2.4rem;
  background: #fff;
  border: 2px solid #21293F;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1.8;
  font-weight: 100;
}
.scout-inner p {
  font-size: 1.8rem;
}

@media (max-width: 991.98px) {
  .scout-section {
    padding: 70px 0;
  }
  .scout-inner h2 {
    padding: 20px;
    font-size: 1.6rem;
  }
  .scout-inner p {
    font-size: 1.2rem;
  }
}

/*-----profind-----*/

.profind-section {
  padding: 100px 0;
}
.profind-inner {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-column-gap: 70px;
  grid-row-gap: 30px;
  align-items: center;
}
.profind-img img {
  width: 165px;
}
.profind-text p {
  font-size: 1.6rem;
}
@media (max-width: 991.98px) {
  .profind-section {
    padding: 60px 0;
  }
  .profind-inner {
    grid-template-columns:1fr;
  }
}

/*-----voice-----*/

.voice-section {
  background-image: url(./img/voice-bg.png);
  background-size: cover;
  padding: 85px 0 90px;
}
.voice-inner {
}
.voice-emphasis {
  font-size: 2.6rem;
  padding: 30px;
  background: #fff;
  margin-bottom: 35px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.voice-text {
  font-size: 2.1rem;
  color: #fff;
  text-align: center;
}

@media (max-width: 991.98px) {
  .voice-section {
    padding: 45px 0;
  }
  .voice-emphasis {
    font-size: 1.6rem;
    padding: 15px;
    margin-bottom: 15px;
  }
  .voice-text {
    font-size: 1.4rem;
  }
}

/*-----trial-----*/
.trial-section {
  position: relative;
}
.trial-top-inner {
  background-image: url(./img/bg-recommend.png);
  background-size: cover;
  padding: 80px 0 110px;
}
.trial-bottom-inner {
  padding: 65px 0 90px;

}
.trial-box {
  background: #fff;
  padding: 90px;
  max-width: 750px;
  position: relative;
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 100;
  line-height: 2;
}
.trial-box span {
  position: relative;
  padding-right: 60px;
}
.trial-box span::after {
  content: '';
  width: 50px;
  height: 1px;
  background: #21293F;
  position: absolute;
  bottom: 14px;
  right: 0;
}
.trial-box::before,
.trial-box::after {
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  border-width: 1px;
  border-color: #21293F;
}
.trial-box::before {
  border-top-style: solid;
  border-left-style: solid;
  top: 15px;
  left: 15px;
}
.trial-box::after {
  border-bottom-style: solid;
  border-right-style: solid;
  bottom: 15px;
  right: 15px;
}
.tiral-label {
  font-size: 2.2rem;
  color: #fff;
  background: #21293F;
  padding: 20px 25px;
  padding-right: 50px;
  margin-bottom: 45px;
  display: inline-block;
}
.trial-text {
  font-size: 1.8rem;
}
.trial-bottom-inner .container {
  position: relative;
}
.trial-img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 25%;
}
@media (max-width: 991.98px) {
  .trial-box {
    padding: 80px 40px;
  }
  .trial-img {
    display: none;
  }
  .trial-top-inner {
    padding: 70px 0;
  }
  .trial-bottom-inner {
    padding: 40px 0;
  }
}

/*-----confidence-----*/
.confidence-section {
  padding: 150px 0 0;
  position: relative;
}
.confidence-bg {
  position: absolute;
  top: 59%;
  left: 50%;
  height: 75%;
  width: 100%;
  object-fit: cover;
  transform: translate(-50%,-50%);
  z-index: -1;
}
.confidence-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-column-gap: 45px;
  grid-row-gap: 35px;
}
.confidence-img {
  max-width: 400px;
}
.president-title {
	font-family: "Noto Serif JP", serif;
    color: #000;
    font-size: 2.2rem;
    line-height: 1;
	letter-spacing: 2px;
    margin: 20px 0 20px;
	width: 100%;
    text-align: center;
}
.confidence-cnt {
  padding-top: 100px;
}
.confidence-text {
  font-size: 1.6rem;
  margin-bottom: 40px;
  line-height: 1.6;
}
.confidence-emphasis {
  font-size: 1.6rem;
  font-weight:bold;
  line-height: 1.6;
  text-decoration-color: #F0D986;
  text-decoration-line: underline;
  text-decoration-thickness: 10px;
  text-underline-offset: -5px;
}
.confidence-btn-area {
  padding: 90px 20px 0;
  background: #fff;
  text-align: center;
  grid-column: 1/3;
}

@media (max-width: 768px) {
  .confidence-inner {
    grid-template-columns: 1fr;
    grid-row-gap: 35px;
  }
  .confidence-btn-area {
    grid-column: 1/2;

  }
  .confidence-cnt {
    padding-top: 0px;
  }
  .confidence-img {
    margin: auto;
  }
}
/*-----privacy-----*/

.privacy-section {
  padding-bottom:60px;
}
.privacy-text {
  font-size: 1.6rem;
  margin-bottom: 40px;
}
.privacy-text.center {
  text-align: center;
}
.privacy-heading {
  font-size: 1.8rem;
  font-weight: bold;
}
.privacy-list {
  padding: 0;
  margin: 0;
  margin-bottom: 40px;
}
.privacy-list li {
  margin-bottom: 5px;
  font-size: 1.6rem;
}
.privacy-table {
  margin-bottom: 20px;
}
.privacy-table tr {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  border-bottom: 1px solid #CCCCCC;
}
.privacy-table tr:nth-child(1){
  border-top: 1px solid #CCCCCC;
}
.privacy-table th {
  padding: 20px;
  padding-left: 0;
  font-size: 1.6rem;
  font-weight: bold;
}
.privacy-table td {
  padding: 20px 0;
  font-size: 1.6rem;
}
.privacy-label {
  font-size: 1.6rem;
  padding: 10px 20px;
  background: #D0C28F;
  margin-bottom: 20px;
  display: inline-block;
}

@media (max-width: 991.98px) {
  .privacy-table tr {
    grid-template-columns: 1fr;
  }
}
/*-----faq-----*/
.faq-inner {
  padding: 0 30px;
}
.faq-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 55px;
}
.faq-tab {
  background: #fff;
  border: 0.5px solid #CCCCCC;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #CCCCCC;
  border-radius: 0;
  font-size: 2.1rem;
}
.faq-tab:focus {
  outline: none;
}
.faq-tab:hover {
  outline: 5px auto #D9CC98;
}
.faq-tab.active {
  color: #000;
  border-bottom: none;
}
.faq-text {
  font-size: 2rem;
  margin-bottom: 50px;
  margin-top: 20px;
  line-height: 1.6;
}
.faq-tabs-cnt:not(:first-child){
  display: none;
}
@media (max-width: 991.98px) {
  .faq-inner {
    padding: 0;
  }
  .faq-tab {
    font-size: 1.6rem;
  }
  .faq-text {
    font-size: 1.6rem;
  }
}
/*-----company-----*/

.company-inner {
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-column-gap: 35px;
}
.company-img {
  max-width: 450px;
}
.company-img img {
  height: 100%;
  object-fit: cover;
}
.company-profile {
}
.company-table {
  padding: 0;
  margin: 0;
  width: 100%;
}
.company-table tr {
  border-bottom: 2px solid #CCCCCC;
}
.company-table td,
.company-table th {
  font-size: 1.6rem;
  padding: 20px 0;
}
.company-table th {
    width: 45%;
}
.company-table td {
  width: 55%;
}

@media (max-width: 991.98px) {
  .company-inner {
    padding: 0;
    max-width: 500px;
    margin: auto;
  }
  .company-inner {
    grid-template-columns: 1fr;
  }
  .company-img {
    max-width: 300px;
    margin: auto;
  }
}
/*-----contact-----*/

.contact-section {
  background: #F6F6F7;
  padding: 70px 0 130px;
}
.contact-inner {
  max-width: 720px;
  margin: auto;
}
.contact-text {
  font-size: 1.6rem;
  margin-bottom: 40px;
  text-align: center;
}
.contact-text a {
  color: #2B53B2;
}
.contact-form {
  width: 100%;
  background: #fff;
  padding: 45px 35px;
}
.contact-table {
  width: 100%;
  margin-bottom: 35px;
}
.contact-table tr {
  border-bottom: 1px solid #CCCCCC;
}
.contact-table td,
.contact-table th {
  width: 100%;
  display: block;
  font-size: 1.6rem;
}
.contact-table th {
  padding-top: 10px;
}
.contact-table td {}

.contact-table input ,
.contact-table textarea,
.contact-table select {
  width: 100%;
  background: none;
  border: none;
  border-radius: 0;
}
.contact-table input:focus ,
.contact-table textarea:focus,
.contact-table select:focus {
  outline: none;
}
.contact-table .required p {
  position: relative;
  display: inline-block;
}
.contact-table .required p::after {
  content: '*';
  font-size: 2rem;
  color: red;
  position: absolute;
  top: 50%;
  right: -10px;
  line-height: 1rem;
}
.contact-btn p {
  display: flex;
  align-items:center;
  flex-direction: column;
  position: relative;
}
.contact-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.contact-btn input {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background: #21293F;
  font-family: 'Noto Sans JP';
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  width: 100%;
  min-height: 60px;
}
.contact-btn input:hover {
  opacity: 0.8;
}
/*-----advisor-----*/
.advisor-section {
  background: #F6F6F7;
  padding: 80px 0 100px;
}
.advisor-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 90px;
}
.advisor-section p {
  color: #000;
}
.advisor-section .viewmore {
  background: #F6F6F7;
}
.advisor-section .viewmore::before {
  background: #000;
}
.home .advisor-section .viewmore {
    background:#21293F;
    color:#fff;
}
.home .advisor-section .viewmore::before {
    background:#fff;
}
@media (max-width: 991.98px) {
  .advisor-inner {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 40px;
  }
}

/*-----advisorDetail-----*/
.advisorDetail-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  grid-column-gap: 45px;
  grid-row-gap: 20px;
  padding: 0 30px;
}
.advisorDetail-img img {
  height: 100%;
  object-fit: cover;
}
.advisorDetail-item {
	font-family: "Noto Serif JP", serif;

}
.advisorDetail-label-center{
  display: flex;
  justify-content: flex-start;
}
.advisorDetail-label {
  font-size: 1.8rem;
  background: #21293F;
  margin-bottom: 25px;
  padding: 10px 20px;
  color: #fff;
  display: inline-block;
  text-align: left;
}
.advisorDetail-name {
  font-family: "Noto Serif JP", serif;
  font-size: 4.4rem;
  margin-bottom: 10px;
  text-align: left;
}
.advisorDetail-profile {
  border: none;
  padding: 20px 15px;
  text-align: left;
}
.advisorDetail-profile-title {
  font-size: 4.4rem;
  position: relative;
}
.advisorDetail-profile-title:before {
  content: '';
  width: 83%;
  height: 2px;
  background: #CCCCCC;
  position: absolute;
  top: 50%;
  right: 0;
}
.advisorDetail-profile-text {
  font-size: 1.6rem;
}
@media (max-width: 991.98px) {
  .advisorDetail-inner {
    grid-template-columns: 1fr;
  }
  .advisorDetail-profile-title:before {
    width: 40%;
  }
}
/*-----advisorStrength-----*/

.advisorStrength-inner {
	font-family: "Noto Serif JP", serif;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap:  50px;
  padding-left: 30px;
}
.advisorStrength-item {}
.advisorStrength-item h2 {
  font-size: 4.4rem;
  position: relative;
}
.advisorStrength-item h2 span {
  background: #fff;
}
.advisorStrength-item h2::before {
  content: '';
  width: 100%;
  height: 2px;
  background: #CCCCCC;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}
.advisorStrength-list {
  margin: 0;
  padding: 0;
  margin-bottom: 40px;
}
.advisorStrength-list li {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}
.advisorStrength-list li::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #9DADD4;
  border-radius: 50px;
  position: absolute;
  top: 10px;
  left: 0;
}
.advisorStrength-text {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.advisorStrength-text p {
  font-size: 1.6rem;
  margin-bottom: 20px;
  position: relative;
  padding-left: 0px;
}
.advisorStrength-btn-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 25px;
}
.advisorStrength-img {}

  @media (max-width: 991.98px) {
    .advisorStrength-inner {
      grid-template-columns: 1fr;
      grid-row-gap: 40px;
    }
    .advisorStrength-item h2::before {
      width:40%;
      left:auto;
      right:0;
    }
    .advisorStrength-btn-area {
      display:block;
    }
    .advisorStrength-btn-area > a + a {
      margin-top:15px;
    }
  }

  /*-----stories-----*/

  .stories-section{
    background: #F6F6F7;
  }
  .stories-inner {
    padding: 80px 30px 200px;
  }
  @media (max-width: 991.98px) {
    .stories-inner {
      padding: 40px 15px 100px;
    }
  }

    /*-----navigation-----*/

    .navigation {
      margin-top: 100px;
      display: flex;
      justify-content: center;
    }
    .nav-links {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .page-numbers {
      width: 45px;
      height: 45px;
      font-size: 1.8rem;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #21293F;
    }
    a[class=^'page-numbers']:hover {
      color: #B09842;
    }
    .page-numbers.current {
      background: #fff;
      border: 1px solid #21293F;
      border-radius: 5px;
    }
    .page-numbers.prev,
    .page-numbers.next {
      background: #21293F;
      border-radius: 5px;
      position: relative;
    }
    .page-numbers.prev::before {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      background: url(./img/icon/icon-right-arrow-white.svg) no-repeat center / cover;
      transform: scale(-1,1);
    }
    .page-numbers.next::before {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      background: url(./img/icon/icon-right-arrow-white.svg) no-repeat center / cover;
    }

    /*-----supports-----*/
.story-bottom {
  grid-column: 1/3;
}
    .support-box {
      width: 100%;
      border: 2px solid #21293F;
      background: #F6F6F7;
    }
    .support-heading {
      padding: 5px;
      background: #21293F;
      text-align: center;
      color: #fff;
      font-size: 2rem;
    }
    .support-body {
      padding: 25px 35px;
      display: grid;
      grid-template-columns: minmax(100px, 140px) 1fr;
      grid-gap: 15px;
      color: #000;
    }
    .support-body-img {
      border-radius: 50%;
      overflow: hidden;
      aspect-ratio: 1/1;
    }
    .support-body-img img {
      width: 100%;
    }
    .support-body-info {}
    .support-body-name {
      font-size: 2.1rem;
      margin-bottom: 5px;
    }
    .support-body-text {
      font-size: 1.6rem;
    }
    .support-body-text.more {
      position: relative;
      font-size: 1.6rem;
      height: 14rem;
      overflow: hidden;
    }
    .open .support-body-text {
        height:auto;
    }
    .story-bottom .viewmore {
      background: #F6F6F7;
    }
    .story-bottom .viewmore::before {
      background: #000;
    }

    .support-btn-area {
      display: grid;
      justify-content: center;
      grid-template-columns: 1fr 1fr;
      grid-column-gap: 25px;
      grid-row-gap: 25px;
      grid-column: 1/3;
      margin-top: 20px;
    }
    .support-btn-area a:nth-child(1) {
      margin-right: 0;
    }
    .support-btn-area a:nth-child(2) {
      margin-left: 0;
    }

    @media (max-width: 576px) {
      .story-bottom {
        grid-column: 1/2;
      }
      .support-btn-area {
        grid-column: 1/2;
        grid-template-columns: 1fr;
      }
      .support-body {
        grid-template-columns: 1fr;
      }
    }
    /*-----myStory-----*/
    .myStory-heading {
      font-family: "Noto Serif JP", serif;
      font-size: 3rem;
      color: #B09842;
      margin-bottom: 15px;
    }
    .myStory-heading02 {
      font-size: 2.2rem;
      padding-left: 65px;
      margin-bottom: 15px;
    }

@media (max-width: 576px) {
	.myStory-heading {
      font-size: 2.4rem;
      margin-bottom: 15px;
    }
    .myStory-heading02 {
      font-size: 2rem;
      padding-left: 0;
      margin-bottom: 15px;
    }
}
    .myStory-box {
      max-width: 860px;
      margin: auto;
      border: 2px solid #CCCCCC;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 30px;
      font-size: 1.8rem;
    }
    .myStory-box p {}

  /*-----selection-----*/

  .selection-section {
    background: #F6F6F7;
    padding: 90px 0 200px;
  }
  .selection-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 55px;
  }
  .selection-box {
    background: #fff;
    border: 4px solid #B09842;
    padding: 20px;
    margin: auto;
    height: 100%;
    width: 100%;
  }
  .selection-box-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-gap: 15px;
    margin-bottom: 15px;
  }
  .selection-box-photo {}
  .selection-labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    margin-bottom: 15px;
  }
  .selection-label {
    width: 100%;
    min-height: 35px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items:center;
    font-size: 1.6rem;
    border-radius: 5px;
    white-space: nowrap;
  }
  .selection-label.reception {
    background: #fff;
    border: 1px solid #B50909;
    color: #B50909;
  }
  .selection-label.selection {
    background: #21293F;
    color: #fff;
  }
  .selection-label.seminar {
    background: #B09842;
    color: #fff;
  }
  .selection-label.closed {
    background: #fff;
    border: 1px solid #21293F;
    color: #21293F;
  }
  .selection-box-img {
    display: flex;
    width:100%;
  }
  .selection-box-img img {
    width:200px;
    height:80px;
    object-fit: cover;
    margin: 0 auto;
    padding-bottom: 10px;
  }
  .selection-box-heading {}
  .selection-box-heading h2 {
    font-size: 1.6rem;
  }
  .selection-box-heading h1 {
    font-size: 1.6rem;
  }
  p.selection-box-sub-title {
    font-size: 1.4rem;
    color: #B09842;
  }
  .selection-box-bottom {}
  .selection-box-body {
    font-size: 1.6rem;
    font-family: 'Noto Sans JP';
    margin-bottom: 15px;
  }
  .selection-box-body {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }
  .selections-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 20px;
  }
  .selections-date {
    border: 1.5px solid #21293F;
    background: #fff;
    min-height: 35px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    justify-content: space-between;
    grid-gap: 10px;
    align-items: center;
    padding-right: 10px;
  }
  .selections-dates.nowrap .selections-date-body {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .selections-date-body {
    font-size: 1.2rem;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
   }
  .selections-date-label {
    font-size: 1.4rem;
    background: #21293F;
    color: #fff;
    font-size: 1.4rem;
    background: #21293F;
    height: 100%;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .selections-dates.big .selections-date-body {
    font-size: 1.8rem;
    min-height: 55px;
  }
  .selections-dates.big .selections-date-label {
    font-size: 1.8rem;
    line-height: 55px;
  }

  @media (max-width: 1200px){
    .selections-dates {
      grid-template-columns: 1fr;
    }
    .selections-date-label {
    }
  }

  @media (max-width: 991.98px) {
    .selection-box {
      max-width: 500px;
    }
    .selection-inner {
      grid-template-columns: 1fr;
    }
    .page-selections-labels .selection-labels {
      grid-template-columns: repeat(4, 1fr);
    }
    .selections-dates.big .selections-date-body {
      font-size: 1.4rem;
      min-height: 35px;
    }
    .selections-dates.big .selections-date-label {
      font-size: 1.4rem;
      line-height: 35px;
    }
  }
  @media (max-width: 768.98px) {
    .page-selections-labels .selection-labels {
      grid-template-columns: 1fr 1fr;
    }
    .selection-box-top {
      grid-template-columns: 1fr;
    }
  }

  /*-----selections-----*/
  .selections-section {

  }

  .selections-apply {
    border: 4px solid #B09842;
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-row-gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 45px;
  }
  .selections-apply-img {
    text-align: center;
  }
  .selections-apply-img img {
    width:200px;
    height:80px;
    object-fit: cover;
  }
  .selections-apply-btn-area {}
  .selections-heading {
    font-size: 3rem;
    color: #B09842;
    margin-bottom: 40px;
  }
  .selections-text-area {
    padding: 0 150px 100px;
  }
  .selections-text {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  .selections-heading02 {
    font-size: 2rem;
    border-bottom: 2px solid #21293F;
    margin-bottom: 20px;
  }

  .selections-seminar {
    max-width: 1100px;
    width: 100%;
  }
  .selections-seminar-title {
    background: #21293F;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 2rem;
  }
  .selections-seminar-body {
    padding: 40px 20px;
    background: #F6F6F7;
    text-align: center;
  }
  .selections-seminar-text {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  @media (max-width: 991.98px) {
    .selections-apply {
      grid-template-columns: 1fr;
    }
    .selections-text-area {
      padding: 0 40px 70px;
    }
  }
  @media (max-width: 576.98px) {
    .selections-text-area {
      padding: 0 20px 50px;
    }
  }

  .modal {
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 10px;
  }
  .modal-box {
    padding: 20px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
  }
  .modal-title {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .modal-text {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .modal-img img {
    width: 80px;
    margin-bottom: 20px;
  }
