@charset "UTF-8";
/* _mixin.scss */
/*----------
media query
----------*/
/*** ----------------------------------------------------------------------------- 

reset

-----------------------------------------------------------------------------  ***/
.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
}

.clearfix {
  display: inline-table;
  zoom: 1;
}

/*Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0px;
  padding: 0px;
}

　 table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

ul {
  list-style: none;
}

ol li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, textarea, select {
  *font-size: 100%;
}

legend {
  color: #000000;
}

img {
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

table caption {
  font-weight: bold;
  margin: 0 0 5px;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

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

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

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

HTML5

-----------------------------------------------------------------------------  ***/
#header, footer, nav, section, article, figure, aside {
  display: block;
}

* {
  box-sizing: border-box;
}

i {
  margin: 0 5px 0 0;
}

img {
  max-width: 100%;
}

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

common

-----------------------------------------------------------------------------  ***/
html {
  font-size: 62.5%;
  overflow-x: hidden;
  height: 100%;
}

body {
  overflow-x: hidden;
  color: #333;
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", MS PGothic, "ＭＳ Ｐゴシック", Osaka, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
.l-inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

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

リンク

-----------------------------------------------------------------------------  ***/
/* 基本 */
a {
  color: var(--color_black);
  outline: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: none;
}

a img {
  transition: 0.3s;
}

input[type=text],
textarea {
  -webkit-appearance: none;
}

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

header

-----------------------------------------------------------------------------  ***/
.l-header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 60px;
  }
}
.l-header__logo {
  display: flex;
  width: 400px;
  margin: 0 0 0 30px;
}
@media (max-width: 870px) {
  .l-header__logo img {
    width: 126px;
  }
}
@media (max-width: 450px) {
  .l-header__logo img {
    width: 106px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    max-width: 300px;
    margin: 0 10px;
  }
}
.l-header__logo span {
  margin: 0 0 0 20px;
}
@media (max-width: 450px) {
  .l-header__logo span {
    margin: 0 0 0 10px;
  }
}
.l-header__logo span img {
  width: auto;
  height: 100%;
}
.l-header__btn {
  max-width: 412px;
  width: 100%;
  height: 90px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l-header__btn {
    max-width: 120px;
    height: 60px;
  }
}
.l-header__btn--orange {
  width: 100%;
  height: 100%;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.l-header__btn--orange a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  background: url("../img/icon-mail.svg") no-repeat left 40px center;
  padding: 0 0 0 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .l-header__btn--orange a {
    background: url("../img/icon-mail.svg") no-repeat center top 12px;
    padding: 35px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .l-header__btn--orange a span {
    font-size: 0.9rem;
    letter-spacing: 0;
  }
}
.l-header__btn--orange a::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(255, 181, 0) 0%, rgb(255, 150, 26) 100%);
  transition: 0.3s;
}
@media (min-width: 769px) {
  .l-header__btn--orange a:hover::before {
    opacity: 0;
  }
}
.l-header__btn--orange a::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  z-index: -2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(255, 150, 26) 0%, rgb(255, 181, 0) 100%);
}
.l-header__btn--blue {
  width: 50%;
  height: 100%;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.l-header__btn--blue a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  background: url("../img/icon-mail.svg") no-repeat left 40px center/26px auto;
  padding: 0 0 0 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .l-header__btn--blue a {
    background: url("../img/icon-mail.svg") no-repeat center top 16px/24px auto;
    padding: 35px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .l-header__btn--blue a span {
    font-size: 1.1rem;
  }
}
.l-header__btn--blue a::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0, 89, 197) 0%, rgb(0, 51, 113) 100%);
  transition: 0.3s;
}
@media (min-width: 769px) {
  .l-header__btn--blue a:hover::before {
    opacity: 0;
  }
}
.l-header__btn--blue a::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  z-index: -2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0, 51, 113) 0%, rgb(0, 89, 197) 100%);
}

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

footer

-----------------------------------------------------------------------------  ***/
.l-footer__copyright {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 45px 20px;
  text-align: center;
}

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

visual

-----------------------------------------------------------------------------  ***/
.l-visual {
  height: 550px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-visual {
    height: auto;
    padding: 0;
  }
}
.l-visual::before {
  position: absolute;
  right: -25px;
  top: 0;
  content: "";
  width: 911px;
  height: 551px;
  background: url("../img/visual-img.png?ver=250521") no-repeat center center;
}
@media (max-width: 1300px) {
  .l-visual::before {
    right: -175px;
  }
}
@media (max-width: 940px) {
  .l-visual::before {
    right: -250px;
  }
}
@media (max-width: 860px) {
  .l-visual::before {
    right: -300px;
  }
}
@media screen and (max-width: 768px) {
  .l-visual::before {
    content: none;
  }
}
.l-visual::after {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 515px;
  background: url("../img/visual-bg.jpg") no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .l-visual::after {
    content: none;
  }
}
.l-visual-text {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.l-visual-text__title {
  font-size: 6.3rem;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  margin: 50px 0 40px;
  text-shadow: 2px 2px 6px #003B80;
}
@media (max-width: 1200px) {
  .l-visual-text__title {
    font-size: min(3.8rem, 4vw);
  }
}
.l-visual-text__title span {
  display: block;
  font-size: 3.5rem;
}
@media (max-width: 1200px) {
  .l-visual-text__title span {
    font-size: min(2.4rem, 7vw);
  }
}
.l-visual-text__img {
  max-width: 671px;
}
@media (max-width: 1100px) {
  .l-visual-text__img {
    max-width: 450px;
  }
}

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

section-support

-----------------------------------------------------------------------------  ***/
.section-support {
  padding: 70px 0 75px;
  background: url("../img/support-title.svg") no-repeat left top 40px;
}
@media screen and (max-width: 768px) {
  .section-support {
    padding: 50px 0;
    background: url("../img/support-title.svg") no-repeat center top 40px/350px auto;
  }
}
.section-support__title {
  text-align: center;
  font-size: 4.5rem;
  font-weight: bold;
  color: #00479D;
  line-height: 1.77;
  margin: 0 0 25px;
}
@media screen and (max-width: 768px) {
  .section-support__title {
    font-size: min(2.4rem, 6vw);
    line-height: 1.44;
  }
}
.section-support__text {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .section-support__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .section-support__text {
    font-size: min(1.4rem, 4vw);
  }
}

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

section-achrcivement

-----------------------------------------------------------------------------  ***/
.section-achrcivement {
  margin: 0 0 155px;
}
@media screen and (max-width: 768px) {
  .section-achrcivement {
    margin: 0 0 70px;
  }
}
.section-achrcivement-case {
  position: relative;
  padding: 50px 0 65px;
  background: url("../img/achrcivement-title.svg") no-repeat right top, linear-gradient(to bottom, rgb(0, 89, 197) 0%, rgb(0, 51, 113) 100%);
}
@media screen and (max-width: 768px) {
  .section-achrcivement-case {
    background: url("../img/achrcivement-title.svg") no-repeat center top/346px auto, linear-gradient(to bottom, rgb(0, 89, 197) 0%, rgb(0, 51, 113) 100%);
    padding: 30px 0;
  }
}
.section-achrcivement-case::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: "";
  transform: translate(-50%, 98%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 26px 21.5px 0 21.5px;
  border-color: #003473 transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  .section-achrcivement-case::after {
    border-width: 26px 30px 0 30px;
  }
}
.section-achrcivement-case-catch {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .section-achrcivement-case-catch {
    display: block;
  }
}
.section-achrcivement-case-catch__dt {
  width: 165px;
}
@media screen and (max-width: 768px) {
  .section-achrcivement-case-catch__dt {
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .section-achrcivement-case-catch__dt img {
    max-width: 100px;
  }
}
.section-achrcivement-case-catch__dd {
  width: calc(100% - 165px);
  font-size: 3.1rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.44;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .section-achrcivement-case-catch__dd {
    width: 100%;
    font-size: min(1.8rem, 4vw);
    text-align: center;
  }
}
.section-achrcivement-case-catch__dd span {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  .section-achrcivement-case-catch__dd span {
    font-size: min(2.8rem, 7vw);
  }
}
.section-achrcivement-case-dl {
  display: flex;
  align-items: center;
  margin: 25px 0 0;
  position: relative;
  z-index: 1;
}
.section-achrcivement-case-dl::before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  content: "";
  width: 150px;
  height: 100%;
  background: #3E86DE;
}
@media screen and (max-width: 768px) {
  .section-achrcivement-case-dl::before {
    width: 100px;
  }
}
.section-achrcivement-case-dl::after {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
}
.section-achrcivement-case-dl__dt {
  width: 150px;
  background: #3E86DE;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.27;
  color: #fff;
  padding: 20px 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .section-achrcivement-case-dl__dt {
    width: 100px;
    font-size: 1.6rem;
    padding: 10px;
  }
}
.section-achrcivement-case-dl__dd {
  width: calc(100% - 150px);
  padding: 0 20px 0 30px;
  box-sizing: border-box;
  font-size: min(2.1rem, 3vw);
  font-weight: bold;
  line-height: 1.45;
  color: #00479D;
}
@media screen and (max-width: 768px) {
  .section-achrcivement-case-dl__dd {
    width: calc(100% - 100px);
    padding: 15px 15px 15px 20px;
    box-sizing: border-box;
    font-size: min(1.6rem, 3.25vw);
  }
}
.section-achrcivement-map {
  padding: 50px 0 140px;
}
@media screen and (max-width: 768px) {
  .section-achrcivement-map {
    padding: 50px 0 70px;
  }
}
.section-achrcivement-map__title {
  text-align: center;
  font-size: 4.6rem;
  font-weight: bold;
  color: #00A4A8;
  margin: 65px 0 0;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .section-achrcivement-map__title {
    font-size: min(2.8rem, 5vw);
    margin: 35px 0 0;
  }
}
.section-achrcivement-map__title span {
  display: block;
  font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
  .section-achrcivement-map__title span {
    font-size: min(2.1rem, 4vw);
  }
}
.section-achrcivement-map-list {
  display: none;
}
@media screen and (max-width: 768px) {
  .section-achrcivement-map-list {
    display: block;
  }
  .section-achrcivement-map-list--hide {
    display: none;
  }
  .section-achrcivement-map-list--hide.is_active {
    display: block;
  }
  .section-achrcivement-map-list__item {
    padding: 15px 0;
    border-bottom: 1px solid #cccccc;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
  }
}
.section-achrcivement-map .more-btn {
  display: none;
  background: #00A4A8;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin: 35px auto 0;
  padding: 15px 10px;
  border-radius: 35px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .section-achrcivement-map .more-btn {
    display: block;
  }
}
.section-achrcivement-worries {
  background: #F4F4F4;
}
.section-achrcivement-worries .l-inner {
  position: relative;
  padding: 125px 20px 90px;
}
@media screen and (max-width: 768px) {
  .section-achrcivement-worries .l-inner {
    padding: 70px 20px 70px;
  }
}
.section-achrcivement-worries__title {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}
.section-achrcivement-worries__title span {
  font-size: 3.8rem;
  font-weight: bold;
  background: #00479D;
  padding: 22px 125px;
  color: #fff;
  border-radius: 60px;
  position: relative;
}
@media screen and (max-width: 920px) {
  .section-achrcivement-worries__title span {
    padding: 22px 45px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .section-achrcivement-worries__title span {
    padding: 15px 25px;
    font-size: min(2.4rem, 5vw);
  }
}
.section-achrcivement-worries__title span:after {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: "";
  transform: translate(-50%, 95%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 26px 21.5px 0 21.5px;
  border-color: #00479D transparent transparent transparent;
}
.section-achrcivement-worries .worries-list__item {
  padding: 0 0 0 60px;
  font-size: 3rem;
  font-weight: bold;
  background: url("../img/icon-check.svg") no-repeat left top 10px;
}
.section-achrcivement-worries .worries-list__item .sp01 {
  display: none;
}
@media screen and (max-width: 570px) {
  .section-achrcivement-worries .worries-list__item .sp01 {
    display: block;
  }
}
@media screen and (max-width: 1140px) {
  .section-achrcivement-worries .worries-list__item {
    font-size: 2.4rem;
    padding: 0 0 0 45px;
    background: url("../img/icon-check.svg") no-repeat left top 13px/30px auto;
  }
}
@media screen and (max-width: 768px) {
  .section-achrcivement-worries .worries-list__item {
    font-size: 1.6rem;
    padding: 0 0 0 35px;
    background: url("../img/icon-check.svg") no-repeat left top 6px/20px auto;
  }
}
.section-achrcivement-worries__img {
  position: absolute;
  right: -100px;
  bottom: 0;
}
@media screen and (max-width: 1140px) {
  .section-achrcivement-worries__img {
    max-width: 460px;
  }
}
@media screen and (max-width: 768px) {
  .section-achrcivement-worries__img {
    right: 0;
    max-width: 260px;
  }
}
@media screen and (max-width: 480px) {
  .section-achrcivement-worries__img {
    right: -20px;
    max-width: 200px;
  }
}

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

section-consulting

-----------------------------------------------------------------------------  ***/
.section-consulting-headline {
  background: linear-gradient(to bottom, rgb(0, 89, 197) 0%, rgb(0, 51, 113) 100%);
  position: relative;
}
.section-consulting-headline::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: "";
  transform: translate(-50%, 30px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 46px 54px 0 54px;
  border-color: #00A4A8 transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  .section-consulting-headline::after {
    transform: translate(-50%, 20px);
    border-width: 35px 35px 0 35px;
  }
}
.section-consulting-headline .l-inner {
  position: relative;
  padding: 35px 20px 50px;
}
@media screen and (max-width: 768px) {
  .section-consulting-headline .l-inner {
    padding: 65px 20px;
  }
}
@media screen and (max-width: 610px) {
  .section-consulting-headline .l-inner {
    padding: 35px 20px;
  }
}
.section-consulting-headline .l-inner::after {
  position: absolute;
  left: -50px;
  bottom: 0;
  content: "";
  width: 253px;
  height: 276px;
  background: url("../img/consulting-img00.png") no-repeat center center;
}
@media screen and (max-width: 768px) {
  .section-consulting-headline .l-inner::after {
    left: 10px;
    width: 244px;
    height: 338px;
    background: url("../img/consulting-img00sp.png") no-repeat center center/244px auto;
  }
}
@media screen and (max-width: 610px) {
  .section-consulting-headline .l-inner::after {
    width: 180px;
    height: 228px;
    background: url("../img/consulting-img00sp.png") no-repeat center center/160px auto;
  }
}
@media screen and (max-width: 480px) {
  .section-consulting-headline .l-inner::after {
    left: 5px;
    width: 128px;
    height: 180px;
    background: url("../img/consulting-img00sp.png") no-repeat center center/128px auto;
  }
}
.section-consulting-headline__en {
  max-width: 1100px;
  margin: 0 0 0 auto;
  text-align: center;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media (max-width: 1240px) {
  .section-consulting-headline__en {
    padding: 0 0 0 150px;
  }
}
@media screen and (max-width: 768px) {
  .section-consulting-headline__en {
    padding: 0 0 0 250px;
  }
}
@media screen and (max-width: 610px) {
  .section-consulting-headline__en {
    padding: 0 0 0 160px;
  }
}
@media screen and (max-width: 480px) {
  .section-consulting-headline__en {
    padding: 0 0 0 120px;
  }
}
.section-consulting-headline__en span {
  font-size: 3.1rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-consulting-headline__en span {
    font-size: min(2.1rem, 3.5vw);
  }
}
@media screen and (max-width: 768px) {
  .section-consulting-headline__en span {
    font-size: min(2.1rem, 3.25vw);
  }
}
.section-consulting-headline__en span::before {
  position: absolute;
  left: -40px;
  top: 0;
  content: "";
  width: 30px;
  height: 100%;
  background: url("../img/consulting-before.svg") no-repeat center center;
}
@media screen and (max-width: 768px) {
  .section-consulting-headline__en span::before {
    left: -20px;
    width: 15px;
    background: url("../img/consulting-before.svg") no-repeat center center/15px auto;
  }
}
.section-consulting-headline__en span::after {
  position: absolute;
  right: -40px;
  top: 0;
  content: "";
  width: 30px;
  height: 100%;
  background: url("../img/consulting-after.svg") no-repeat center center;
}
@media screen and (max-width: 768px) {
  .section-consulting-headline__en span::after {
    right: -20px;
    width: 15px;
    background: url("../img/consulting-after.svg") no-repeat center center/15px auto;
  }
}
.section-consulting-headline__title {
  max-width: 1100px;
  margin: 0 0 0 auto;
  font-size: 4.1rem;
  font-weight: bold;
  color: #fff;
  text-align: right;
  position: relative;
  z-index: 1;
}
@media (max-width: 1240px) {
  .section-consulting-headline__title {
    padding: 0 0 0 150px;
    text-align: center;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .section-consulting-headline__title {
    padding: 0 0 0 250px;
    font-size: min(2.8rem, 7.5vw);
  }
}
@media screen and (max-width: 610px) {
  .section-consulting-headline__title {
    padding: 0 0 0 160px;
    font-size: min(2.6rem, 4.5vw);
  }
}
@media screen and (max-width: 480px) {
  .section-consulting-headline__title {
    padding: 0 0 0 120px;
  }
}
@media screen and (max-width: 365px) {
  .section-consulting-headline__title {
    font-size: min(2.6rem, 4.25vw);
  }
}
.section-consulting-content {
  padding: 65px 0 70px;
  background: #EDF5FD;
}
.section-consulting-content__text {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.458;
  margin: 0 0 1.5em;
}
@media screen and (max-width: 768px) {
  .section-consulting-content__text {
    font-size: min(2rem, 5vw);
  }
}
.section-consulting-content-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 25px;
}
@media screen and (max-width: 840px) {
  .section-consulting-content-list {
    gap: 25px 20px;
  }
}
@media screen and (max-width: 480px) {
  .section-consulting-content-list {
    gap: 20px 15px;
  }
}
.section-consulting-content-list__item {
  width: calc(16.6666666667% - 21px);
}
@media screen and (max-width: 1250px) {
  .section-consulting-content-list__item {
    width: calc(20% - 21px);
  }
}
@media screen and (max-width: 1035px) {
  .section-consulting-content-list__item {
    width: calc(25% - 21px);
  }
}
@media screen and (max-width: 840px) {
  .section-consulting-content-list__item {
    width: calc(33.3333333333% - 17px);
  }
}
@media screen and (max-width: 480px) {
  .section-consulting-content-list__item {
    width: calc(33.3333333333% - 10px);
  }
}
.section-consulting-content-list__item-img img {
  width: 100%;
}
.section-consulting-content-list__item-title {
  margin: 1em 0 0;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-consulting-content-list__item-title {
    font-size: min(1.4rem, 4vw);
    letter-spacing: 0;
  }
}
@media screen and (max-width: 450px) {
  .section-consulting-content-list__item-title {
    font-size: min(1.4rem, 3.25vw);
  }
}

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

section-strength

-----------------------------------------------------------------------------  ***/
.section-strength {
  position: relative;
  padding: 145px 0 135px;
  background: url("../img/strength-title.svg") no-repeat left top 100px;
}
@media screen and (max-width: 768px) {
  .section-strength {
    padding: 70px 0 75px;
    background: url("../img/strength-title.svg") no-repeat center top 40px/233px auto;
  }
}
.section-strength__title {
  text-align: center;
  font-size: 4.8rem;
  font-weight: bold;
  color: #00479D;
  margin: 0 0 1.25em;
}
@media screen and (max-width: 768px) {
  .section-strength__title {
    font-size: min(2.4rem, 6vw);
    line-height: 1.5;
  }
}
.section-strength-list {
  display: flex;
  gap: 0 9.5%;
}
@media (max-width: 1100px) {
  .section-strength-list {
    gap: 0 5%;
  }
}
@media screen and (max-width: 768px) {
  .section-strength-list {
    display: block;
  }
}
.section-strength-list__item {
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .section-strength-list__item {
    width: 100%;
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .section-strength-list__item:last-child {
    margin: 0;
  }
}
.section-strength-list__item-img {
  max-width: 295px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-strength-list__item-img {
    max-width: 148px;
  }
}
.section-strength-list__item-en {
  margin: 25px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-strength-list__item-en {
    margin: 20px 0;
  }
}
.section-strength-list__item-en span {
  display: inline-block;
  padding: 7px 20px 5px;
  background: #00479D;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .section-strength-list__item-en span {
    padding: 5px 15px 3px;
    font-size: 1.3rem;
  }
}
.section-strength-list__item-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  color: #00A4A8;
  line-height: 1.384;
  margin: 0 0 25px;
}
@media screen and (max-width: 768px) {
  .section-strength-list__item-title {
    font-size: 2rem;
    margin: 0 0 20px;
  }
}
.section-strength-list__item-text {
  font-size: 1.8rem;
  font-weight: 500;
  list-style: 1.444;
}
@media screen and (max-width: 768px) {
  .section-strength-list__item-text {
    font-size: 1.4rem;
  }
}

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

section-voice

-----------------------------------------------------------------------------  ***/
.section-voice {
  background: url("../img/voice-title.svg") no-repeat right top 95px, linear-gradient(to bottom, rgb(0, 89, 197) 0%, rgb(0, 51, 113) 100%);
  padding: 145px 0 150px;
}
@media screen and (max-width: 768px) {
  .section-voice {
    background: url("../img/voice-title.svg") no-repeat center top 40px/425px auto, linear-gradient(to bottom, rgb(0, 89, 197) 0%, rgb(0, 51, 113) 100%);
    padding: 70px 0 75px;
  }
}
.section-voice__title {
  text-align: center;
  font-size: 4.8rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.666;
  margin: 0 0 1em;
}
@media screen and (max-width: 768px) {
  .section-voice__title {
    font-size: min(2.4rem, 6vw);
  }
}
.section-voice-fl-box {
  background: #fff;
  margin: 0 0 50px;
  padding: 54px 50px;
  display: flex;
}
.section-voice-fl-box:last-of-type {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .section-voice-fl-box {
    display: block;
    margin: 0 0 30px;
    padding: 30px 20px;
  }
}
.section-voice-fl-box__img {
  width: 30.95%;
}
@media screen and (max-width: 768px) {
  .section-voice-fl-box__img {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.section-voice-fl-box__text {
  width: 69.05%;
  padding: 0 0 0 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .section-voice-fl-box__text {
    width: 100%;
    padding: 0;
  }
}
.section-voice-fl-box__text-en {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #00A4A8;
}
@media screen and (max-width: 480px) {
  .section-voice-fl-box__text-en {
    font-size: 1.5rem;
  }
}
.section-voice-fl-box__text-en span {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 0 15px;
}
@media screen and (max-width: 480px) {
  .section-voice-fl-box__text-en span {
    font-size: 1.8rem;
    margin: 0 0 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .section-voice-fl-box__text-img {
    margin: 20px auto;
  }
}
.section-voice-fl-box__text-title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #00479D;
  line-height: 1.384;
  margin: 0.5em 0 0.75em;
}
@media screen and (max-width: 768px) {
  .section-voice-fl-box__text-title {
    font-size: 2rem;
  }
}
.section-voice-fl-box__text-text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.444;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .section-voice-fl-box__text-text {
    font-size: 1.4rem;
    line-height: 1.75;
  }
}
.section-voice-fl-box-reverse .section-voice-fl-box__img {
  order: 2;
}
.section-voice-fl-box-reverse .section-voice-fl-box__text {
  order: 1;
  padding: 0 5% 0 0;
}

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

section-faq

-----------------------------------------------------------------------------  ***/
.section-faq {
  padding: 150px 0 120px;
  background: url("../img/faq-title.svg") no-repeat center top 100px;
}
@media screen and (max-width: 768px) {
  .section-faq {
    background: url("../img/faq-title.svg") no-repeat center top 40px/85px auto;
    padding: 70px 0;
  }
}
.section-faq__title {
  text-align: center;
  font-size: 4.8rem;
  font-weight: bold;
  color: #00479D;
  margin: 0 0 1em;
}
@media screen and (max-width: 768px) {
  .section-faq__title {
    font-size: min(2.4rem, 6vw);
  }
}
.section-faq .qa-list {
  margin: 0 auto;
}
.section-faq .qa-list__item {
  background: #EDF5FD;
  margin: 0 0 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-faq .qa-list__item {
    margin: 0 0 20px;
  }
}
.section-faq .qa-list__item .ttl {
  padding: 25px 80px 25px 70px;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  background: #0059C5;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .section-faq .qa-list__item .ttl {
    padding: 15px 40px 15px 45px;
    font-size: 1.6rem;
    line-height: 1.44;
  }
}
.section-faq .qa-list__item .ttl:before {
  position: absolute;
  left: 35px;
  top: 20px;
  content: "Q.";
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .section-faq .qa-list__item .ttl:before {
    left: 20px;
    top: 10px;
  }
}
.section-faq .qa-list__item .ttl:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  margin: -5px 0 0 0;
  width: 23px;
  height: 12px;
  background: url("../img/faq-arrow.svg") no-repeat center center;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .section-faq .qa-list__item .ttl:after {
    right: 20px;
    width: 15px;
    background: url("../img/faq-arrow.svg") no-repeat center center/15px auto;
  }
}
.section-faq .qa-list__item .ttl.on:after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.section-faq .qa-list__item .text {
  padding: 25px 80px 25px 70px;
  font-size: 1.8rem;
  line-height: 1.875;
  position: relative;
  display: none;
}
@media screen and (max-width: 768px) {
  .section-faq .qa-list__item .text {
    padding: 15px 30px 15px 45px;
    font-size: 1.6rem;
  }
}
.section-faq .qa-list__item .text:before {
  position: absolute;
  left: 35px;
  top: 21px;
  content: "A.";
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #00479D;
}
@media screen and (max-width: 768px) {
  .section-faq .qa-list__item .text:before {
    left: 20px;
    top: 10px;
  }
}

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

list-btn

-----------------------------------------------------------------------------  ***/
.list-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 80px;
  padding: 0 20px;
  box-sizing: border-box;
}
.list-btn__item {
  max-width: 240px;
  width: 100%;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
  margin: 0 15px 15px;
}
.list-btn__item--orange a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  background: url("../img/icon-file.svg") no-repeat left 50px top 24px;
  padding: 15px 10px 15px 40px;
  box-sizing: border-box;
}
.list-btn__item--orange a::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(255, 181, 0) 0%, rgb(255, 150, 26) 100%);
  transition: 0.3s;
}
@media (min-width: 769px) {
  .list-btn__item--orange a:hover::before {
    opacity: 0;
  }
}
.list-btn__item--orange a::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  z-index: -2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(255, 150, 26) 0%, rgb(255, 181, 0) 100%);
}
.list-btn__item--blue a {
  display: block;
  width: 100%;
  text-decoration: none;
  position: relative;
  background: url("../img/icon-mail.svg") no-repeat left 45px center/26px auto;
  padding: 15px 10px 15px 40px;
  box-sizing: border-box;
}
.list-btn__item--blue a::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0, 89, 197) 0%, rgb(0, 51, 113) 100%);
  transition: 0.3s;
}
@media (min-width: 769px) {
  .list-btn__item--blue a:hover::before {
    opacity: 0;
  }
}
.list-btn__item--blue a::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  z-index: -2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0, 51, 113) 0%, rgb(0, 89, 197) 100%);
}

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

section-contact

-----------------------------------------------------------------------------  ***/
.section-contact {
  padding: 150px 0 0;
  background: url("../img/contact-title.svg") no-repeat center top 100px;
}
@media screen and (max-width: 768px) {
  .section-contact {
    padding: 75px 0 0;
    background: url("../img/contact-title.svg") no-repeat center top 40px/200px auto;
  }
}
.section-contact--request {
  padding: 150px 0;
  background: url("../img/request-title.svg") no-repeat center top 100px, #EDF5FD;
}
@media screen and (max-width: 768px) {
  .section-contact--request {
    padding: 75px 0;
    background: url("../img/request-title.svg") no-repeat center top 40px/200px auto, #EDF5FD;
  }
}
.section-contact iframe {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-contact iframe {
    width: calc(100% + 20px) !important;
    height: 1240px !important;
    margin: 0 -10px;
  }
}
@media screen and (max-width: 480px) {
  .section-contact iframe {
    height: 1300px !important;
  }
}
@media (max-width: 420px) {
  .section-contact iframe {
    height: 1375px !important;
  }
}
@media (max-width: 360px) {
  .section-contact iframe {
    height: 1450px !important;
  }
}
.section-contact__title {
  text-align: center;
  font-size: 4.8rem;
  font-weight: bold;
  color: #00479D;
  margin: 0 0 1em;
}
@media screen and (max-width: 768px) {
  .section-contact__title {
    font-size: min(2.4rem, 6vw);
  }
}
.section-contact-tel {
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #EDF5FD;
}
@media (max-width: 800px) {
  .section-contact-tel {
    display: block;
    padding: 20px 0;
    text-align: center;
  }
}
.section-contact-tel__text {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
}
.section-contact-tel__number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 0.8;
  margin: 0 12px;
  transform: translateY(5px);
}
@media (max-width: 800px) {
  .section-contact-tel__number {
    margin: 15px 0;
  }
}
.section-contact-tel__number a {
  text-decoration: none;
}
.section-contact-tel__number a span {
  font-size: 4rem;
}
.section-contact-tel__day {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}
.section-contact-table {
  width: 100%;
}
.section-contact-table__th {
  width: 300px;
  padding: 17px 20px 10px 0;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: bold;
  vertical-align: top;
}
.section-contact-table__th .require {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 15px 0 0;
  padding: 5px 15px 6px;
  line-height: 1;
  background: #00479D;
  color: #fff;
  border-radius: 15px;
  transform: translateY(-2px);
}
.section-contact-table__td {
  width: calc(100% - 300px);
  padding: 10px 0;
}
.section-contact-table__td input[type=text] {
  width: 100%;
  border: 1px solid #cccccc;
  font-size: 1.7rem;
  padding: 12px 15px;
  box-sizing: border-box;
}
.section-contact-table__td input[type=text].short {
  max-width: 293px;
}
.section-contact-table__td textarea {
  width: 100%;
  border: 1px solid #cccccc;
  font-size: 1.7rem;
  padding: 10px;
  box-sizing: border-box;
}
.section-contact-privacy {
  background: #F4F4F4;
  margin: 50px auto 0;
  padding: 50px;
}
.section-contact-privacy__title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 1em;
}
.section-contact-privacy .privacy-box {
  background: #fff;
  border: 1px solid #cccccc;
  padding: 22px 35px;
}
.section-contact-privacy .privacy-box__in {
  height: 190px;
  overflow-y: scroll;
  padding: 0 25px 0 0;
}
.section-contact-privacy__agree {
  text-align: center;
  margin: 30px auto 0;
  font-size: 1.8rem;
  font-weight: bold;
}
.section-contact-privacy__button {
  display: block;
  max-width: 230px;
  width: 100%;
  background: url("../img/icon-arrow-white.svg") no-repeat right 20px center, #00A4A8;
  border: 1px solid #00A4A8;
  border-radius: 35px;
  margin: 30px auto 0;
  padding: 15px 10px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .section-contact-privacy__button:hover {
    background: url("../img/icon-arrow-green.svg") no-repeat right 20px center, #fff;
    color: #00A4A8;
  }
}
.section-contact #zf_div_p4IDbK822ydEWQBo268j6toPBwjcNJJ4nqI7y1EV8w0 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-contact #zf_div_p4IDbK822ydEWQBo268j6toPBwjcNJJ4nqI7y1EV8w0 {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
}