@charset "UTF-8";
@import url("ress.min-2.css");
/* ================
*     base
================*/
html {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 62.5%;
  color: #323232;
  -webkit-text-size-adjust: 100%;
  overflow: visible;
  font-feature-settings: "palt";
}

body {
  font-size: 1.2rem;
  min-width: 1030px;
}

@media (max-width: 768px) {
  body {
    min-width: 0;
  }
}

p,
div {
  font-size: inherit;
}

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

img {
  max-width: 100%;
}

a {
  text-decoration: underline;
  color: #323232;
  cursor: pointer;
  transition: 0.3s;
}

a img {
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

a:focus {
  outline: none;
}

a {
  text-decoration: none;
}

/* ================
*     common
================*/
@media (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}

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

/* header */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 30;
}

.header-inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
  max-width: 1030px;
  padding: 37px 15px 0;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .header-inner {
    padding: 20px;
  }
}

.header-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 30px;
}

.header-logo {
  display: block;
  width: 70px;
}

.header-logo img {
  display: block;
}

.header-logo-txt {
  width: 123px;
  margin-left: 17px;
}

@media (max-width: 1025px) {
  .header-logo-txt {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .header-logo-txt {
    display: none;
  }
}

.header-right {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
  align-items: center;
}

.header-right-inner {
  display: flex;
  width: 100%;
  align-items: center;
}

@media (max-width: 768px) {
  .header-right-inner {
    transition: all 0.3s;
    position: fixed;
    background-color: rgba(0, 78, 145, 0.9);
    top: 0;
    left: -100%;
    height: 100%;
    width: 295px;
    display: block;
    color: #fff;
    padding: 70px 0 0 40px;
  }
}

.header nav {
  width: 100%;
}

.header-hamburger {
  display: none;
  width: 17px;
  position: relative;
  height: 18px;
}

.header-hamburger > span {
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #004e91;
  transition: all 0.3s;
}

.header-hamburger > span:nth-child(1) {
  top: 0;
}

.header-hamburger > span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header-hamburger > span:nth-child(3) {
  bottom: 0;
}

@media (max-width: 768px) {
  .header-hamburger {
    display: block;
  }
}

.header-nav {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: 466px;
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 768px) {
  .header-nav {
    display: block;
  }
}

.header-nav:before {
  height: 2px;
  width: 100%;
  background-color: #ebebeb;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 768px) {
  .header-nav:before {
    display: none;
  }
}

.header-nav li + li {
  margin-left: 10px;
}

@media (max-width: 768px) {
  .header-nav li + li {
    margin-left: 0;
    margin-top: 20px;
  }
}

.header-nav a {
  color: #323232;
  display: block;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.24em;
  padding-bottom: 10px;
  position: relative;
}

@media (max-width: 768px) {
  .header-nav a {
    font-size: 1.4rem;
    color: #fff;
  }
  .header-nav a:after {
    content: ">";
    margin-left: 5px;
  }
}

.header-nav a:before {
  height: 2px;
  width: 0;
  background-color: #004e91;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}

.header-nav a:hover {
  opacity: 1;
}

.header-nav a:hover:before {
  width: 100%;
}

@media (max-width: 1025px) {
  .header-nav a {
    font-size: 1.4rem;
  }
}

.header-nav a.is-current:before {
  width: 100%;
}

.header-contact {
  width: 187px;
  margin-left: 47px;
  flex-shrink: 0;
}

@media (max-width: 1025px) {
  .header-contact {
    width: 150px;
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .header-contact {
    margin-left: 0;
    margin-top: 25px;
    width: 160px;
  }
}

/* footer */
.footer {
  border-top: 1px solid #323232;
  margin-top: 235px;
}

@media (max-width: 768px) {
  .footer {
    margin-top: 179px;
  }
}

.footer-inner {
  max-width: 1030px;
  display: flex;
  margin: 0 auto;
  padding: 135px 15px 120px;
}

@media (max-width: 768px) {
  .footer-inner {
    display: block;
    padding: 40px 28px;
    max-width: 556px;
  }
}

.footer-contact {
  width: 75px;
  margin-right: 159px;
}

@media (max-width: 768px) {
  .footer-contact {
    width: 100%;
    margin-right: 0;
    margin-bottom: 48px;
  }
}

.footer-contact-icon {
  width: 40px;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .footer-contact-icon {
    position: static;
    margin: 0 auto 22px;
  }
}

.footer-way {
  flex-grow: 1;
  max-width: 490px;
}
@media (min-width: 769px) {
  .footer-way {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.footer-way-ctt {
  position: relative;
  padding-left: 70px;
  margin-bottom: 72px;
}

@media (max-width: 768px) {
  .footer-way-ctt {
    padding-left: 0;
  }
}

.footer-way-ctt:last-of-type {
  margin-bottom: 0;
}

.footer-way-ctt .btn {
  margin-bottom: 20px;
  font-size: 1.6rem;
  border-radius: 23px;
  width: 100%;
}

.footer-way-ctt.call .footer-contact-icon {
  top: 20px;
}

.footer-mail-txt {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2;
}

@media (max-width: 768px) {
  .footer-mail-txt {
    font-size: 1rem;
    text-align: center;
  }
}

.footer-call-txt {
  font-size: 1.6rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .footer-call-txt {
    font-size: 1rem;
    text-align: center;
  }
}

.footer-call-num {
  color: #004e91;
  border-bottom: 1px solid #323232;
  padding-bottom: 10px;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .footer-call-num {
    text-align: center;
  }
}

.footer-call-num strong {
  font-size: 2.8rem;
}

@media (max-width: 768px) {
  .footer-call-num strong {
    font-size: 2.4rem;
  }
}

.footer-call-num span {
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .footer-call-num span {
    font-size: 1.1rem;
  }
}

.footer-call-time {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .footer-call-time {
    font-size: 1rem;
    text-align: center;
  }
}

.footer-copy {
  background-color: #323232;
  padding: 40px 10px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.06em;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .footer-copy {
    padding: 30px 10px 95px;
  }
}

.footer-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
}

@media (max-width: 768px) {
  .footer-fixed {
    width: 100%;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
  }
}

.footer-contact-btn.btn-contact {
  display: none;
}

@media (max-width: 768px) {
  .footer-contact-btn.btn-contact {
    display: block;
    font-size: 1.5rem;
    padding: 5px 44px 5px 65px;
  }
}

.footer-att {
  color: #ff365d;
  font-size: 1rem;
  margin-top: 5px;
}

.pagetop {
  width: 96px;
  display: block;
}

@media (max-width: 768px) {
  .pagetop {
    width: 46px;
  }
}

.main-wrap {
  padding-top: 150px;
}

@media (max-width: 768px) {
  .main-wrap {
    padding-top: 107px;
  }
}

.main-inner {
  max-width: 1030px;
  padding: 0 15px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .main-inner {
    padding: 0 28px;
  }
}

.main-inner + .main-inner {
  border-top: 1px solid #323232;
}

/* btn */
.btn {
  display: block;
  letter-spacing: 0.1em;
}

.btn-next {
  background: #004e91 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 16.5'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23fff;stroke-miterlimit:10;%7D%3C/style%3E%3C/defs%3E%3Cg id='レイヤー_2' data-name='レイヤー 2'%3E%3Cg id='design'%3E%3Cpolyline class='cls-1' points='0.31 0.39 10.31 8.25 0.31 16.11'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center right 12px/8px auto;
  border-radius: 19px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  padding: 10px 26px;
  border: 1px solid #004e91;
}

.btn-next:hover {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 16.5'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23004e91;stroke-miterlimit:10;%7D%3C/style%3E%3C/defs%3E%3Cg id='レイヤー_2' data-name='レイヤー 2'%3E%3Cg id='design'%3E%3Cpolyline class='cls-1' points='0.31 0.39 10.31 8.25 0.31 16.11'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: #004e91;
  opacity: 1;
}

.btn.white {
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 16.5'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23004e91;stroke-miterlimit:10;%7D%3C/style%3E%3C/defs%3E%3Cg id='レイヤー_2' data-name='レイヤー 2'%3E%3Cg id='design'%3E%3Cpolyline class='cls-1' points='0.31 0.39 10.31 8.25 0.31 16.11'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center right 12px/8px auto;
  color: #004e91;
}

.btn.white:hover {
  background-color: #004e91;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 16.5'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23fff;stroke-miterlimit:10;%7D%3C/style%3E%3C/defs%3E%3Cg id='レイヤー_2' data-name='レイヤー 2'%3E%3Cg id='design'%3E%3Cpolyline class='cls-1' points='0.31 0.39 10.31 8.25 0.31 16.11'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: #fff;
  border-color: #fff;
}

.btn-contact {
  background-color: #ffeb00;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 16.5'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23323232;stroke-miterlimit:10;%7D%3C/style%3E%3C/defs%3E%3Cg id='レイヤー_2' data-name='レイヤー 2'%3E%3Cg id='design'%3E%3Cpolyline class='cls-1' points='0.31 0.39 10.31 8.25 0.31 16.11'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 14.38'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bisolation:isolate;%7D.cls-2%7Bmix-blend-mode:multiply;%7D.cls-3%7Bfill:%23323232;%7D%3C/style%3E%3C/defs%3E%3Cg class='cls-1'%3E%3Cg id='レイヤー_2' data-name='レイヤー 2'%3E%3Cg id='design'%3E%3Cg class='cls-2'%3E%3Cpath class='cls-3' d='M21.93,13.35a1.62,1.62,0,0,0,.07-.44V1.48a1.39,1.39,0,0,0,0-.3l-6.11,6.1Z'/%3E%3Cpath class='cls-3' d='M0,1.18a1.39,1.39,0,0,0,0,.3V12.91a1.62,1.62,0,0,0,.07.44L6.14,7.28Z'/%3E%3Cpath class='cls-3' d='M14.51,8.64l-1,1a3.57,3.57,0,0,1-5.06,0l-1-1L1.75,14.38h18.5Z'/%3E%3Cpath class='cls-3' d='M12.18,8.25,20.43,0H1.57L9.82,8.25A1.71,1.71,0,0,0,12.18,8.25Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: #323232;
  background-repeat: no-repeat;
  background-position: right 12px center, left 22px center;
  background-size: 8px auto, 22px;
  border-radius: 17.5px;
  border: 1px solid #ffeb00;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 5px 26px 5px 55px;
}

@media (max-width: 768px) {
  .btn-contact {
    font-size: 1.2rem;
    background-size: 8px auto, 18px;
    padding: 5px 24px 5px 45px;
  }
}

.btn-contact:hover {
  background-color: #323232;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 16.5'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23ffeb00;stroke-miterlimit:10;%7D%3C/style%3E%3C/defs%3E%3Cg id='レイヤー_2' data-name='レイヤー 2'%3E%3Cg id='design'%3E%3Cpolyline class='cls-1' points='0.31 0.39 10.31 8.25 0.31 16.11'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 14.38'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bisolation:isolate;%7D.cls-2%7Bmix-blend-mode:multiply;%7D.cls-3%7Bfill:%23ffeb00;%7D%3C/style%3E%3C/defs%3E%3Cg class='cls-1'%3E%3Cg id='レイヤー_2' data-name='レイヤー 2'%3E%3Cg id='design'%3E%3Cg class='cls-2'%3E%3Cpath class='cls-3' d='M21.93,13.35a1.62,1.62,0,0,0,.07-.44V1.48a1.39,1.39,0,0,0,0-.3l-6.11,6.1Z'/%3E%3Cpath class='cls-3' d='M0,1.18a1.39,1.39,0,0,0,0,.3V12.91a1.62,1.62,0,0,0,.07.44L6.14,7.28Z'/%3E%3Cpath class='cls-3' d='M14.51,8.64l-1,1a3.57,3.57,0,0,1-5.06,0l-1-1L1.75,14.38h18.5Z'/%3E%3Cpath class='cls-3' d='M12.18,8.25,20.43,0H1.57L9.82,8.25A1.71,1.71,0,0,0,12.18,8.25Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: #ffeb00;
  opacity: 1;
}

/* =======================
* top.scss
======================= */
.btm-arrow {
  position: relative;
  color: #323232;
  padding: 5px 0;
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: bold;
}

.btm-arrow:before {
  content: "";
  display: block;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #323232;
  position: absolute;
  transition: all 0.2s;
}

.btm-arrow:after {
  content: "";
  display: block;
  top: 100%;
  right: 0;
  width: 10px;
  height: 1px;
  background-color: #323232;
  transform: rotate(45deg);
  transform-origin: right bottom;
  position: absolute;
  transition: all 0.2s;
}

.btm-arrow:hover {
  opacity: 1;
}

.btm-arrow:hover:before {
  width: calc(100% + 10px);
}

.btm-arrow:hover:after {
  right: -10px;
}

.l-top {
  display: flex;
}

@media (max-width: 768px) {
  .l-top {
    display: block;
  }
}

.l-top-menu {
  width: 300px;
  padding-right: 100px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .l-top-menu {
    width: 100%;
    padding-right: 0;
  }
}

.l-top-content {
  width: 100%;
  max-width: 100%;
  flex-grow: 1;
}

.l-top-section {
  display: flex;
}

@media (max-width: 768px) {
  .l-top-section {
    display: block;
  }
}

.l-top-section-ttl {
  flex-shrink: 0;
  width: 75px;
}

@media (max-width: 768px) {
  .l-top-section-ttl {
    width: 100%;
    margin-bottom: 33px;
  }
}

.l-top-section-ctt {
  flex-grow: 1;
  width: calc(100% - 75px);
}

@media (max-width: 768px) {
  .l-top-section-ctt {
    width: 100%;
  }
}

.top {
  /* STRENGTH */
  /* VOICE */
  /* SPECIAL CONTENTS */
}

.top-ttl {
  margin-bottom: 78px;
}

@media (max-width: 768px) {
  .top-ttl {
    text-align: center;
  }
  .top-ttl img {
    max-width: 159px;
    width: 100%;
  }
}

.top-main {
  position: relative;
}

@media (max-width: 768px) {
  .top-main {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .top-main-inner {
    padding: 0 35px;
  }
}

.top-main .pr {
  position: absolute;
  display: block;
}

@media (max-width: 768px) {
  .top-main .pr {
    position: relative;
    width: calc(50% - 18px);
    margin: 9px;
  }
  .top-main .pr.horizontal {
    width: 100%;
  }
}

.top-main .pr-txt {
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0.14em;
  transition: all 0.2s;
}

@media (max-width: 768px) {
  .top-main .pr-base {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .top-main .pr-base {
    opacity: 0.2;
  }
  .top-main .pr-txt {
    opacity: 0;
  }
  .top-main .pr:hover {
    opacity: 1;
  }
  .top-main .pr:hover .pr-txt {
    opacity: 1;
  }
  .top-main .pr1 {
    width: 100%;
    top: 0;
  }
  .top-main .pr2 {
    width: 567px;
    top: 250px;
    left: 0;
  }
  .top-main .pr3 {
    width: 117px;
    top: 250px;
    right: 0;
  }
  .top-main .pr4 {
    width: 154px;
    top: 458px;
    left: 0;
  }
  .top-main .pr5 {
    width: 154px;
    top: 458px;
    left: 172px;
  }
  .top-main .pr6 {
    width: 223px;
    left: 343px;
    top: 458px;
  }
  .top-main .pr7 {
    width: 117px;
    top: 617px;
    right: 0;
  }
  .top-main .pr8 {
    width: 326px;
    top: 837px;
    left: 0;
  }
  .top-main .pr9 {
    width: 326px;
    top: 1004px;
    left: 0;
  }
  .top-main .pr10 {
    width: 117px;
    top: 1141px;
    left: 0;
  }
  .top-main .pr11 {
    width: 567px;
    top: 1141px;
    left: 133px;
  }
  .top-main .pr12 {
    width: 220px;
    left: 133px;
    top: 1347px;
  }
  .top-main .pr13 {
    width: 330px;
    right: 0;
    top: 1347px;
  }
  .top-main .pr14 {
    width: 117px;
    left: 0;
    top: 1526px;
  }
  .top-main .pr15 {
    width: 360px;
    left: 133px;
    top: 1526px;
  }
  .top-main .pr16 {
    width: 187px;
    right: 0;
    top: 1526px;
  }
}

@media (max-width: 768px) {
  .top-nav {
    justify-content: center;
    display: flex;
  }
}

.top-nav .btm-arrow {
  width: 85px;
}

@media (max-width: 768px) {
  .top-nav .btm-arrow {
    font-size: 1.1rem;
    width: 97.5px;
  }
}

.top-nav-blc {
  margin-bottom: 30px;
}

.top-nav-blc > .btm-arrow {
  margin-top: 0;
}

.top-nav-blc > .btm-arrow:before, .top-nav-blc > .btm-arrow:after {
  display: none;
}

@media (max-width: 768px) {
  .top-nav-blc {
    margin-right: 55px;
  }
}

.top-nav-child {
  padding-left: 1em;
}

.top-nav-child .btm-arrow {
  width: 100%;
}

.top-nav-subblc {
  padding-top: 27px;
}

.top-btn-wrap {
  margin-top: 73px;
  width: 320px;
}

.top-btn-wrap .btn {
  font-size: 1.6rem;
  border-radius: 22px;
}

.top-strength {
  margin-top: 290px;
}

.top-strength-ctt {
  padding-left: 100px;
  padding-top: 50px;
  max-width: 800px;
}

@media (max-width: 768px) {
  .top-strength-ctt {
    max-width: 550px;
    margin: 0 auto;
    padding-left: 0;
    padding-top: 0;
  }
}

.top-strength-wrap {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .top-strength-wrap {
    display: block;
  }
}

.top-strength-lead {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 62px;
}

.top-strength-card {
  width: calc((100% - 100px) / 3);
}

@media (max-width: 768px) {
  .top-strength-card {
    width: 100%;
    margin-bottom: 50px;
  }
}

.top-strength-ttl {
  align-items: center;
  display: flex;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  margin-top: 20px;
  margin-bottom: 18px;
  min-height: 54px;
  text-align: center;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}

.top-strength-ttl p {
  width: 100%;
}

@media (max-width: 768px) {
  .top-strength-ttl {
    justify-content: center;
  }
  .top-strength-ttl p {
    display: inline-block;
    width: auto;
  }
}

.top-strength-num {
  margin-right: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.top-strength-num img {
  display: block;
  width: auto;
  height: 34px;
}

@media (max-width: 768px) {
  .top-strength-num {
    position: static;
    transform: translateY(0);
    margin-right: 20px;
  }
  .top-strength-num img {
    height: 31px;
  }
}

.top-strength-txt {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.top-strength-btn-wrap {
  max-width: 400px;
  margin: 35px auto 0;
}

.top-strength-btn-wrap .btn {
  font-size: 1.6rem;
  border-radius: 22px;
}

.top-voice {
  margin-top: 240px;
  margin-bottom: 240px;
}

@media (max-width: 768px) {
  .top-voice-ctt {
    width: calc(100% + 70px);
    left: -35px;
    position: relative;
  }
}

.top-voice-slider {
  width: calc(100% + 220px);
  position: relative;
  padding-left: 95px;
}

@media (max-width: 768px) {
  .top-voice-slider {
    padding-left: 0;
    width: 100%;
  }
}

.top-voice-slider .slick-slide {
  opacity: 0.15;
  transition: all 0.2s;
}

.top-voice-slider .slick-current {
  opacity: 1;
}

.top-voice-slider .slick-arrow {
  position: absolute;
  top: calc(50% + 20px);
  width: 60px;
  cursor: pointer;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .top-voice-slider .slick-arrow {
    width: 20px;
  }
}

.top-voice-slider .next-arrow {
  transform: translateY(-50%);
  left: 820px;
}

@media (max-width: 768px) {
  .top-voice-slider .next-arrow {
    left: auto;
    right: 5px;
  }
}

.top-voice-slider .prev-arrow {
  transform: translateY(-50%) scale(-1, 1);
  left: 20px;
}

@media (max-width: 768px) {
  .top-voice-slider .prev-arrow {
    left: 5px;
  }
}

.top-voice-card-inner {
  padding: 80px 60px 35px;
  width: 700px;
  margin-right: 110px;
  background-color: #004e91;
  color: #fff;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .top-voice-card-inner {
    width: auto;
    padding: 30px;
    margin: 0 35px;
  }
}

.top-voice-card-ttl {
  font-size: 2rem;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.5em;
  line-height: 1;
  padding: 0 5px 16px;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
}

.top-voice-card-ttl .ttl-num {
  width: 61px;
  flex-shrink: 0;
}

.top-voice-card-ttl .ttl-txt {
  padding-left: 1em;
  margin-left: 1em;
  border-left: 2px solid #fff;
}

.top-voice-card-parag {
  flex-grow: 1;
  margin-bottom: 32px;
}

.top-voice-card-parag img {
  margin: 0 auto;
}

.top-voice-card-img {
  margin-bottom: 47px;
}

.top-voice-card-img img {
  margin: 0 auto;
}

.top-voice-card-name {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.714;
}

.top-voice-card-btn {
  width: 300px;
  margin: 30px auto 0;
}

@media (max-width: 768px) {
  .top-voice-card-btn {
    width: 100%;
  }
}

.top-voice-card .btn {
  font-size: 1.6rem;
  border-radius: 23px;
}

@media (max-width: 768px) {
  .top-voice-card .btn {
    max-width: 186px;
    font-size: 1rem;
    margin: 0 auto;
  }
}

.top-special {
  padding-top: 80px;
  max-width: 570px;
  margin: 0 auto;
}

.top-special-ttl {
  width: 195px;
  margin: 0 auto 56px;
}

.top-special-bnr {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}

.top-special-bnr img {
  display: block;
}

.top-special .target-link {
  margin-bottom: 10px;
  display: block;
}

.top-special-txt {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.target-link {
  font-weight: bold;
  font-size: 1.6rem;
}

.target-link:after {
  display: inline-block;
  height: 1.5em;
  width: 1.5em;
  bottom: -0.25em;
  background: url("../png/target_blank.png") no-repeat right top/contain;
  content: "";
  position: relative;
  margin-left: 0.5em;
}

/* =======================
* single.scss
======================= */
.single-ttl {
  letter-spacing: 0.24em;
  margin-bottom: 54px;
}

@media (max-width: 768px) {
  .single-ttl {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
}

.single-lead {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-bottom: 56px;
}

@media (max-width: 768px) {
  .single-lead {
    font-size: 1rem;
  }
}

.single-img {
  width: 100%;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .single-img {
    margin-bottom: 45px;
  }
}

.single-parag {
  font-size: 1.2rem;
  line-height: 2;
  width: 550px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .single-parag {
    width: 100%;
    font-size: 1rem;
  }
}

.single-situation {
  background-color: #ebebeb;
  color: #004e91;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  padding: 11px 10px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .single-situation {
    font-size: 1.1rem;
  }
}

.lineup {
  margin-top: 152px;
}

@media (max-width: 768px) {
  .lineup {
    margin-top: 100px;
  }
}

.lineup-ttl {
  margin-bottom: 25px;
  width: 53px;
  width: 40px;
}

@media (max-width: 768px) {
  .lineup-list {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 20px;
  }
}

.lineup-list li {
  padding-top: 44px;
  border-top: 1px solid #ebebeb;
}

@media (max-width: 768px) {
  .lineup-list li {
    padding-top: 45px;
  }
}

.lineup-list li + li {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .lineup-list li + li {
    margin-top: 20px;
  }
}

.lineup-inner {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .lineup-inner {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
}

.lineup-info {
  flex-shrink: 0;
  width: 180px;
  margin-right: 70px;
}

@media (max-width: 768px) {
  .lineup-info {
    width: 100%;
    margin-right: 0;
    display: flex;
    margin-top: 80px;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .lineup-info-parag {
    flex-grow: 1;
  }
}

.lineup-info-btn {
  margin-top: 22px;
}

@media (max-width: 768px) {
  .lineup-info-btn {
    margin-top: 0;
    width: 138px;
    flex-shrink: 0;
  }
  .lineup-info-btn .btn {
    font-size: 1.2rem;
  }
}

.lineup-img {
  flex-grow: 1;
}

.lineup-name {
  font-size: 1.2rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .lineup-name {
    font-size: 1rem;
  }
}

.lineup-kind {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .lineup-kind {
    font-size: 1rem;
  }
}

.lineup-num {
  margin-top: 5px;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .lineup-num {
    font-size: 1rem;
    font-weight: bold;
  }
}

/* =======================
* product_list.scss
======================= */
.l-product-content.lineup-content {
  width: 100%;
}

.l-product-content.lineup-content .product-content-inner + .product-content-inner {
  margin-top: 195px;
}

@media (max-width: 768px) {
  .l-product-content.lineup-content .single-lead {
    font-size: 1rem;
  }
}

.lineup-intro-ttl {
  font-size: 2.0rem;
  letter-spacing: 0.24em;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .lineup-intro-ttl {
    font-size: 1.4rem;
  }
}

.lineup-intro-lead {
  margin-bottom: 110px;
  font-weight: normal;
}

@media (max-width: 768px) {
  .lineup-intro-lead {
    margin-bottom: 60px;
    font-size: 1rem;
  }
}

.lineup.col3 {
  margin-top: 60px;
}

.lineup.col3 .lineup-list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 50px;
}

.lineup.col3 .lineup-list li {
  margin-right: 54px;
  width: calc((100% - 108px) /3);
  border-top: none;
  display: flex;
}

@media (max-width: 768px) {
  .lineup.col3 .lineup-list li {
    margin-right: 46px;
    width: calc((100% - 46px) /2);
  }
}

.lineup.col3 .lineup-list li:nth-of-type(3n) {
  margin-right: 0;
}

@media (max-width: 768px) {
  .lineup.col3 .lineup-list li:nth-of-type(3n) {
    padding-top: 40px;
    margin-top: 40px;
    margin-right: 46px;
    border-top: 1px solid #ebebeb;
  }
}

.lineup.col3 .lineup-list li:nth-of-type(n+4) {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #ebebeb;
}

@media (max-width: 768px) {
  .lineup.col3 .lineup-list li:nth-of-type(even) {
    margin-right: 0;
  }
}

.lineup.col3 .lineup-list li + li {
  margin-top: 0;
}

.lineup.col3 .lineup-inner {
  display: block;
  width: 100%;
}

.lineup.col3 .lineup-info {
  margin-top: 24px;
  margin-right: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .lineup.col3 .lineup-info {
    display: block;
  }
}

.lineup.col3 .lineup-info .btn-next {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .lineup.col3 .lineup-name {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .lineup.col3 .lineup-kind {
    font-size: 1rem;
  }
}

.lineup.col3 .lineup-num {
  font-size: 1.2rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .lineup.col3 .lineup-num {
    font-size: 1rem;
  }
}

.lineup-kind-ttl {
  font-size: 1.6rem;
  letter-spacing: 0.24em;
  line-height: 1.3;
  margin-bottom: 35px;
}

@media (max-width: 768px) {
  .lineup-kind-ttl {
    font-size: 1.1rem;
    margin-bottom: 13px;
  }
}

.lineup-show-btn {
  width: 300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .lineup-show-btn {
    width: 100%;
  }
}

.product-blc {
  border-bottom: 1px solid #ebebeb;
}

.product-blc + .product-blc {
  margin-top: 90px;
}

@media (max-width: 768px) {
  .product-blc + .product-blc {
    margin-top: 50px;
  }
}

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

@media (max-width: 768px) {
  .product-wrap {
    display: block;
  }
}

.product-card {
  width: calc((100% - 35px) / 2);
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .product-card {
    width: 100%;
    margin-bottom: 40px;
  }
}

.product-card:nth-of-type(n+3) {
  border-top: 1px solid #ebebeb;
  padding-top: 30px;
}

@media (max-width: 768px) {
  .product-card:nth-of-type(n+3) {
    border-top: none;
    padding-top: 0;
  }
}

.product-card:nth-of-type(even) {
  margin-left: 35px;
}

@media (max-width: 768px) {
  .product-card:nth-of-type(even) {
    margin-left: 0;
  }
}

.product-card-ttl {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .product-card-ttl {
    font-size: 1.1rem;
  }
}

.product-card-txt {
  letter-spacing: 0.02em;
  margin-bottom: 21px;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .product-card-txt {
    font-size: 1rem;
  }
}

.product-card-info {
  font-weight: bold;
  line-height: 1.75;
  color: #004e91;
  padding: 3px 30px;
  margin-bottom: 37px;
  position: relative;
}

@media (max-width: 768px) {
  .product-card-info {
    font-size: 1rem;
  }
}

.product-card-info:before, .product-card-info:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 10px;
  min-height: 35px;
  border-top: 2px solid #004e91;
  border-bottom: 2px solid #004e91;
}

.product-card-info:before {
  top: 0;
  left: 0;
  border-left: 2px solid #004e91;
}

.product-card-info:after {
  top: 0;
  right: 0;
  border-right: 2px solid #004e91;
}

@media (max-width: 768px) {
  .product-card + .product-card {
    border-top: 1px solid #ebebeb;
    padding-top: 40px;
  }
}

.product-link-sp {
  display: none;
}

@media (max-width: 768px) {
  .product-link-sp {
    display: block;
  }
}

@media (max-width: 768px) {
  .product-link-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .product-link-list li {
    width: calc((100% - 6px) / 3);
    padding: 8px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-link-list li:nth-of-type(3n) {
    margin-right: 0;
  }
  .product-link-list li:nth-of-type(n+4) {
    margin-top: 3px;
  }
  .product-link-list li a {
    display: block;
    color: #323232;
    font-weight: bold;
  }
}

.product-ttl-img {
  width: 193px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .product-ttl-img {
    max-width: 500px;
    width: 100%;
  }
}

/* common product */
.l-product {
  display: flex;
}

@media (max-width: 768px) {
  .l-product {
    flex-direction: column-reverse;
  }
}

.l-product-menu {
  width: 250px;
  flex-shrink: 0;
  padding-right: 40px;
  position: relative;
}

@media (max-width: 768px) {
  .l-product-menu {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .l-product-menu.product-list {
    display: none;
  }
}

.l-product-content {
  width: 100%;
  max-width: 100%;
  flex-grow: 1;
}

.l-product-single {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .l-product-single {
    display: block;
  }
  .l-product-single .l-product-menu {
    max-width: 276px;
    margin: 70px auto 0;
    padding-left: 32px;
    padding-right: 0;
    font-size: 1rem;
  }
  .l-product-single .product-list-btn {
    display: none;
  }
  .l-product-single .acd-ctt {
    position: absolute;
    left: 93px;
    top: 0;
    width: calc(100%  - 93px);
  }
}

/* menu */
.product-menu {
  position: sticky;
  top: 150px;
  left: 0;
}

.product-menu-ctn {
  font-weight: bold;
  line-height: 2;
  margin-top: 5px;
}

.product-menu-ctn:first-of-type {
  margin-top: 0;
}

.product-menu-ctn a {
  color: #323232;
}

.product-menu-ctn .is-current {
  text-decoration: underline;
}

.product-menu-list {
  padding-left: 1em;
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  .product-menu-list {
    background-color: #fff;
  }
}

.product-menu-list > li {
  margin-top: 5px;
}

.product-menu-list > li:first-child {
  margin-top: 0;
}

.product-menu-btn {
  max-width: 172px;
  margin: 35px auto 0;
}

/* =======================
* voice.scss
======================= */
.voice-blc {
  border-bottom: 1px solid #ebebeb;
  max-width: 695px;
  margin: 0 auto;
}

.voice-blc + .voice-blc {
  padding-top: 104px;
}

.voice-ttl-img {
  width: 272px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .voice-ttl-img {
    width: 100%;
    max-width: 500px;
  }
}

.voice-lead {
  margin-bottom: 135px;
  font-weight: normal;
}

@media (max-width: 768px) {
  .voice-lead {
    font-size: 1rem;
  }
}

.voice-content-ttl {
  font-size: 2.4rem;
  letter-spacing: 0.4em;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 50px;
}

.voice-content-ttl:after {
  content: "";
  position: absolute;
  width: 100%;
  border-bottom: 1px solid #323232;
  bottom: 0;
  left: 0;
}

.voice-content-ttl img {
  width: 70px;
}

.voice-content-ttl span {
  display: inline-block;
}

.voice-content-ttl-txt {
  padding-left: 32px;
  position: relative;
}

.voice-content-ttl-txt:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 74%;
  background: #cfcfcf;
  top: 4px;
  left: 8px;
}

.voice-content-wrap {
  text-align: center;
  padding-bottom: 70px;
}

.voice-main-txt {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.75;
}

.voice-main-txt-wrap {
  padding: 20px;
  position: relative;
  margin-bottom: 38px;
}

.voice-main-txt-wrap:before, .voice-main-txt-wrap:after {
  content: "";
  position: absolute;
  width: 58px;
  height: 30px;
}

.voice-main-txt-wrap:before {
  border-left: 1px solid #323232;
  border-top: 1px solid #323232;
  top: 0;
  left: 0;
}

.voice-main-txt-wrap:after {
  border-right: 1px solid #323232;
  border-bottom: 1px solid #323232;
  bottom: 0;
  right: 0;
}

.voice-main-img {
  max-width: 546px;
  margin: 0 auto;
}

.voice-problem-wrap {
  margin-top: 60px;
  background: #ebebeb;
  padding: 30px 30px 34px;
  color: #004e91;
  position: relative;
}

@media (max-width: 768px) {
  .voice-problem-wrap {
    padding: 15px;
  }
}

.voice-problem-wrap:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #ebebeb transparent transparent transparent;
  border-width: 30px 22px 0 22px;
}

.voice-solve-wrap {
  background: #004e91;
  padding: 58px 30px 52px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .voice-solve-wrap {
    padding: 38px 15px 15px;
  }
}

.voice-solve-img {
  margin: 26px auto 0;
  display: flex;
  justify-content: center;
  max-width: 471px;
}

@media (max-width: 768px) {
  .voice-solve-img {
    display: block;
  }
}

.voice-solve-img-inner + .voice-solve-img-inner {
  margin-left: 20px;
}

@media (max-width: 768px) {
  .voice-solve-img-inner + .voice-solve-img-inner {
    margin-left: 0;
    margin-top: 10px;
  }
}

.problem-solve-ttl, .problem-solve-txt {
  font-size: 1.4rem;
  font-weight: bold;
}

.problem-solve-ttl {
  line-height: 1.5;
  letter-spacing: 0.12em;
  padding-bottom: 6px;
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

.problem-solve-ttl:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
}

.problem-solve-ttl.white:after {
  background: #004e91;
}

.problem-solve-ttl.blue:after {
  background: #ffffff;
}

.problem-solve-txt {
  line-height: 2;
  letter-spacing: 0.08em;
}

.btn-wrap-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 45px;
}

.btn-wrap-center .btn {
  width: calc((100% - 20px) / 2);
  max-width: 239px;
}

@media (max-width: 768px) {
  .btn-wrap-center .btn {
    max-width: 100%;
    width: 100%;
  }
}

.btn-wrap-center .btn:nth-of-type(even) {
  margin-left: 20px;
}

@media (max-width: 768px) {
  .btn-wrap-center .btn:nth-of-type(even) {
    margin-left: 0;
    margin-top: 15px;
  }
}

.btn-wrap-center .btn:nth-of-type(n + 3) {
  margin-top: 15px;
}

.txt-gray {
  color: #bebebe;
}

/* =======================
* strength
======================= */
.contents-ttl {
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .contents-ttl {
    margin-bottom: 38px;
  }
}

.strength-list-blc {
  margin-bottom: 166px;
}

@media (max-width: 768px) {
  .strength-list-blc {
    margin-bottom: 75px;
  }
}

.strength-list-img {
  width: 100%;
  margin-bottom: 44px;
}

@media (max-width: 768px) {
  .strength-list-img {
    max-width: 550px;
    margin: 0 auto 30px;
  }
}

.strength-list-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  margin-bottom: 22px;
  text-align: center;
}

.strength-list-ttl > span {
  display: inline-block;
  padding-left: 40px;
  position: relative;
}

.strength-list-ttl > span .strength-list-num {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.strength-list-txt {
  text-align: center;
  letter-spacing: 0.02em;
  font-size: 1.4rem;
  line-height: 2.14;
}

@media (max-width: 768px) {
  .strength-list-txt {
    text-align: left;
  }
}

.header.is-menu-open .header-hamburger span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.header.is-menu-open .header-hamburger span:nth-child(2) {
  right: -40px;
}

.header.is-menu-open .header-hamburger span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .header.is-menu-open .header-right-inner {
    left: 0;
  }
}
/*# sourceMappingURL=style.css.map */