@charset "UTF-8";
.sp_br {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp_br {
    display: inline-block;
  }
}

@media screen and (max-width: 960px) {
  .sp_none {
    display: none;
  }
}
@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}
/*--------------------
TXT STYLE
----------------------*/
#mv,
#summary,
#flow,
#catalog_download {
  font-family: "Noto Sans JP", sans-serif;
}

/*--------------------
Animation
----------------------*/
.fadein {
  animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.zoomin {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  display: inline-block;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.delay_s03 {
  animation-delay: 0.3s;
}

.delay_s05 {
  animation-delay: 0.5s;
}

.delay_s06 {
  animation-delay: 0.6s;
}

.delay_s09 {
  animation-delay: 0.9s;
}

.delay_s1 {
  animation-delay: 1s;
}

.delay_s12 {
  animation-delay: 1.2s;
}

.delay_s15 {
  animation-delay: 1.5s;
}

.delay_s18 {
  animation-delay: 1.8s;
}

.delay_s2 {
  animation-delay: 2s;
}

.delay_s21 {
  animation-delay: 2.1s;
}

.delay_s24 {
  animation-delay: 2.4s;
}

.delay_s25 {
  animation-delay: 2.5s;
}

.delay_s27 {
  animation-delay: 2.7s;
}

.delay_s3 {
  animation-delay: 3s;
}

.delay_s35 {
  animation-delay: 3.5s;
}

.delay_s4 {
  animation-delay: 4s;
}

.c_button {
  position: relative;
  transition: 0.2s;
  box-sizing: border-box;
  overflow: hidden;
}
.c_button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
  transition: 0.5s;
}
.c_button:hover {
  text-decoration: none;
}
.c_button:hover::after {
  top: 0;
  left: 100%;
}

/*--------------------
cv-nav
----------------------*/
@media screen and (max-width: 960px) {
  .has-cv-nav {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 960px) {
  #cvNav {
    display: none;
  }
}

.cv-nav {
  height: 72px;
}

.cv-nav__wrapper {
  max-width: 1110px;
}

.cv-nav--tel {
  vertical-align: middle;
}

.cv-nav--tel_call img {
	width: 240px;
}

.cv-nav--tel p {
  font-size: 0.75rem;
  margin: 0 0 0 16px;
  display: inline-block;
	vertical-align: text-bottom;
}

.cv-nav--mail__btn a {
  position: relative;
  display: block;
  width: auto;
  height: 52px;
  padding: 12px 70px 15px;
  background: #FF7C03;
  border-radius: 33px;
  color: #fff;
  font-size: 1.0625rem;
  line-height: 1.5625rem;
  font-weight: 700;
  text-decoration: none;
}

@media screen and (max-width: 1026px) {
  .cv-nav--mail__btn a {
    padding: 12px 20px 15px;
  }
}

.cv-nav--mail__btn a:hover {
  background: #e76000;
}

.topic-path {
  max-width: 1110px;
}

/*--------------------
content
----------------------*/
.header {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding: 25px 0 12px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .header {
    width: 92%;
    padding: 10px 4% 0;
  }
}
.header .header-logo {
  width: 100%;
  max-width: 347px;
}
.header .header-nav {
  width: 100%;
  max-width: 446px;
  margin-left: auto;
  padding-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .header .header-nav {
    display: none;
  }
}
.header .header-nav ul {
  width: 100%;
  display: flex;
}
.header .header-nav ul li {
  margin-right: 20px;
}
.header .header-nav ul li:last-child {
  margin-right: 0;
}
.header .header-nav ul li a {
  color: #282828;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
}
.header .header-contact {
  width: 100%;
  max-width: 190px;
  margin-left: 54px;
  padding-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .header .header-contact {
    display: none;
  }
}
.header .header-contact a {
  display: inline-block;
  width: 100%;
  padding: 12px 0 11px;
  text-align: center;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  background-color: #F06400;
  border-radius: 24px;
}
.header .header-contact a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

#mv .frame {
  width: 100%;
}
#mv .frame .mv_text {
  display: flex;
  align-items: baseline;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 25px;
}
@media screen and (max-width: 960px) {
  #mv .frame .mv_text {
    width: 90.4%;
    padding: 50px 4.8% 25px;
    flex-wrap: wrap;
  }
}
#mv .frame .mv_text h1 {
  width: 100%;
  max-width: 400px;
}
#mv .frame .mv_text p {
  width: 100%;
  margin: 0 0 0 20px;
  color: #282828;
  font-size: 1.25rem;
  line-height: 1.8125rem;
  font-weight: 600;
}
#mv .frame .mv_images {
  width: 100%;
  padding: 70px 0 108px;
  background-image: url(../img/mv_bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  #mv .frame .mv_images {
    width: 90.4%;
    padding: 53px 4.8% 10px;
  }
}
#mv .frame .mv_images-cont {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
}
#mv .frame .mv_images-cont h2 {
  opacity: 0;
  color: #ffffff;
  font-size: 2.1875rem;
  line-height: 3.125rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 90px;
}
#mv .frame .mv_images-cont h2.fv {
  opacity: 1;
}
@media screen and (max-width: 960px) {
  #mv .frame .mv_images-cont h2 {
    margin-bottom: 48px;
  }
}
#mv .frame .mv_images-info {
  position: relative;
  width: 100%;
  text-align: center;
}
#mv .frame .mv_images-info img {
  opacity: 0;
  max-width: 650px;
  padding-top: 5px;
}
#mv .frame .mv_images-info .comment01 {
  opacity: 0;
  position: absolute;
  top: 4.2px;
  left: 5.2%;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  #mv .frame .mv_images-info .comment01 {
    position: static;
  }
}
#mv .frame .mv_images-info .comment02 {
  opacity: 0;
  position: absolute;
  top: 114px;
  right: 3.2%;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  #mv .frame .mv_images-info .comment02 {
    position: static;
  }
}
#mv .frame .mv_images-info .comment03 {
  opacity: 0;
  position: absolute;
  top: 224px;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  #mv .frame .mv_images-info .comment03 {
    position: static;
  }
}
#mv .frame .mv_images-info .comment04 {
  opacity: 0;
  position: absolute;
  top: 389px;
  right: 3.2%;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  #mv .frame .mv_images-info .comment04 {
    position: static;
  }
}
#mv .frame .mv_images-info .comment05 {
  opacity: 0;
  position: absolute;
  top: 444px;
  left: 5.2%;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  #mv .frame .mv_images-info .comment05 {
    position: static;
  }
}
#mv .frame .mv_images-info .comment {
  background-color: #ffffff;
  border-radius: 10px;
}
#mv .frame .mv_images-info .comment a {
  display: inline-block;
  color: #7E7E7E;
  font-size: 1.25rem;
  line-height: 1.8125rem;
  font-weight: 700;
  padding: 23px 14px 10px 23px;
}
#mv .frame .mv_images-info .comment a:hover {
  color: #FF7C03;
  text-decoration: none;
}
#mv .frame .mv_images-info .comment a::after {
  display: block;
  content: "";
  width: 19px;
  height: 19px;
  background-image: url(../img/icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 2px 0 0 auto;
}
#mv .frame .mv_images-info .comment-right {
  position: relative;
  display: inline-block;
  margin-right: 32px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  #mv .frame .mv_images-info .comment-right {
    margin-right: 28%;
    margin-bottom: 20px;
    width: 72%;
  }
}
#mv .frame .mv_images-info .comment-right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -18px;
  border: 18px solid transparent;
  border-left: 32px solid #ffffff;
}
#mv .frame .mv_images-info .comment-left {
  position: relative;
  display: inline-block;
  margin-left: 32px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  #mv .frame .mv_images-info .comment-left {
    margin-left: 28%;
    margin-bottom: 14px;
    width: 72%;
  }
}
#mv .frame .mv_images-info .comment-left::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  margin-top: -18px;
  border: 18px solid transparent;
  border-right: 32px solid #ffffff;
}

.modaal-container {
  font-family: "Noto Sans JP", sans-serif;
  max-width: 636px;
  background-color: transparent;
  border-radius: 26px;
}
.modaal-container .modaal-content-container {
  padding: 0;
  border: 5px solid #02B1DB;
  background-color: #00B1DB;
  border-radius: 26px;
}
.modaal-container .modaal-content-container h3 {
  text-align: center;
  color: #ffffff;
  font-size: 1.375rem;
  line-height: 2rem;
  font-weight: 700;
  padding: 25px 0;
}
.modaal-container .modaal-content-container .modaal-info {
  width: 100%;
  padding: 28px 30px 25px;
  background-color: #ffffff;
  border-radius: 0 0 26px 26px;
}
.modaal-container .modaal-content-container .modaal-info .solve {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 960px) {
  .modaal-container .modaal-content-container .modaal-info .solve {
    align-items: center;
  }
}
.modaal-container .modaal-content-container .modaal-info .solve h4 {
  position: relative;
  display: inline-block;
  margin-right: 27px;
  padding: 8px 31px 11px;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 700;
  background-color: #F06400;
  border-radius: 10px;
}
@media screen and (max-width: 960px) {
  .modaal-container .modaal-content-container .modaal-info .solve h4 {
    width: 30%;
    height: 50px;
    padding: 8px 20px 11px;
  }
}
.modaal-container .modaal-content-container .modaal-info .solve h4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -9px;
  border: 9px solid transparent;
  border-left: 11px solid #F06400;
}
.modaal-container .modaal-content-container .modaal-info .solve p {
  color: #282828;
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .modaal-container .modaal-content-container .modaal-info .solve p {
    width: 70%;
  }
}
.modaal-container .modaal-content-container .modaal-info .solve_img {
  text-align: center;
  margin: 13px 0 21px;
}
.modaal-container .modaal-content-container .modaal-info .solve_img .solve_img01 {
  max-width: 250px;
}
.modaal-container .modaal-content-container .modaal-info .solve_img .solve_img02 {
  max-width: 473px;
}
.modaal-container .modaal-content-container .modaal-info .solve_img .solve_img03 {
  max-width: 228px;
}
.modaal-container .modaal-content-container .modaal-info .solve_img .solve_img04 {
  max-width: 250px;
}
.modaal-container .modaal-content-container .modaal-info .solve_img .solve_img05 {
  max-width: 250px;
}
.modaal-container .modaal-content-container .modaal-info h5 {
  width: 100%;
  color: #585858;
  font-size: 0.9375rem;
  line-height: 1.3125rem;
  font-weight: 600;
  padding: 4px 0 5px 15px;
  background-color: #C7ECF6;
}
.modaal-container .modaal-content-container .modaal-info ul {
  width: 100%;
  margin: 8px 0 21px;
  display: flex;
  flex-wrap: wrap;
}
.modaal-container .modaal-content-container .modaal-info ul li {
  color: #585858;
  font-size: 0.9375rem;
  line-height: 1.3125rem;
  font-weight: 600;
  margin-right: 2em;
}
@media screen and (max-width: 960px) {
  .modaal-container .modaal-content-container .modaal-info ul li {
    margin-right: 0;
    text-indent: -1em;
    padding-left: 1em;
  }
}
.modaal-container .modaal-content-container .modaal-info ul li:last-child {
  margin-right: 0;
}
.modaal-container .modaal-content-container .modaal-info ul li::before {
  content: "●";
  color: #00B1DB;
  font-size: 0.9375rem;
  line-height: 1.3125rem;
  margin-right: 0.5em;
}
.modaal-container .modaal-content-container .modaal-info .modaal-link {
  width: 100%;
  max-width: 276px;
  margin: 0 auto;
}
.modaal-container .modaal-content-container .modaal-info a {
  display: inline-block;
  width: 100%;
  padding: 11px 0 10px;
  text-align: center;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 700;
  background-color: #FF7C03;
  border-radius: 12px;
}

.modaal-overlay {
  background: rgb(199, 236, 246) !important;
  opacity: 0.75 !important;
}

.modaal-container {
  box-shadow: none;
}

#summary .frame {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 78px 0 85px;
}
@media screen and (max-width: 960px) {
  #summary .frame {
    width: 90.4%;
    margin: 0 auto;
    padding: 78px 4.8% 85px;
  }
}
#summary .frame h2 {
  opacity: 0;
  max-width: 300px;
  margin: 0 auto 39.5px;
  display: flex;
  flex-direction: column;
  color: #282828;
  text-align: center;
  font-size: 1.875rem;
  line-height: 2.75rem;
  font-weight: 700;
}
#summary .frame h2::after {
  content: "";
  display: inline-block;
  width: 300px;
  height: 33.54px;
  background-image: url(../img/subtitle_under01.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
#summary .frame h3 {
  color: #282828;
  text-align: center;
  font-size: 1.5625rem;
  line-height: 2.1875rem;
  font-weight: 700;
  margin-bottom: 42px;
}
@media screen and (max-width: 960px) {
  #summary .frame h3 {
    font-size: 1.25rem;
  }
}
#summary .frame h3 span {
  color: #00B1DB;
}
#summary .frame .summary_text {
  color: #282828;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-weight: normal;
  margin-bottom: 42px;
}
#summary .frame .summary_text strong {
font-size: 1.425rem;
  font-weight: 800;
}
#summary .frame .summary_text span.tc-blue {
  font-weight: 800;
  color: #00B1DB;
}

#summary .frame .summary_info {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  #summary .frame .summary_info {
    display: none;
  }
}
#summary .frame .summary_info-cont {
  width: 100%;
  max-width: 340px;
  padding: 52px 0 44px;
  border-radius: 170px;
  text-align: center;
  color: #ffffff;
}
#summary .frame .summary_info-cont h4 {
  font-size: 1.875rem;
  line-height: 2.75rem;
  font-weight: 700;
}
#summary .frame .summary_info-cont p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: normal;
}
#summary .frame .summary_info-cont img {
  max-width: 173px;
}
#summary .frame .summary_info .corporate_dx {
  background-color: #00B1DB;
}
#summary .frame .summary_info .office_ict {
  background-color: #FF7C03;
}
#summary .frame .summary_info .security {
  background-color: #925ED2;
}

#flow {
  padding: 85px 5%;
  background-color: #FFF0C8;
}
#flow .frame {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding: 56px 45px 50px 45px;
  border-radius: 28px;
  background-color: #ffffff;
}
@media screen and (max-width: 1026px) {
  #flow .frame {
    width: 90%;
    padding: 85px 5%;
  }
}
@media screen and (max-width: 960px) {
  #flow .frame {
    width: 82%;
    padding: 85px 9%;
  }
}
#flow .frame h2 {
  opacity: 0;
  max-width: 300px;
  margin: 0 auto 29.5px;
  display: flex;
  flex-direction: column;
  color: #282828;
  text-align: center;
  font-size: 1.875rem;
  line-height: 2.75rem;
  font-weight: 700;
}
#flow .frame h2::after {
  content: "";
  display: inline-block;
  margin: 3px auto 0;
  width: 300px;
  height: 33.54px;
  background-image: url(../img/subtitle_under02.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
#flow .frame .flow_cont {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 960px) {
  #flow .frame .flow_cont {
    flex-wrap: wrap;
  }
}
#flow .frame .flow_cont .step {
  width: 100%;
  max-width: 266px;
}
@media screen and (max-width: 960px) {
  #flow .frame .flow_cont .step {
    max-width: inherit;
  }
}
#flow .frame .flow_cont .step h3 {
  width: 100%;
  max-width: 106px;
  border-radius: 53px;
  margin: 0 auto 15px;
  padding: 38px 0 41px;
  color: #ffffff;
  text-align: center;
  font-size: 1.1875rem;
  line-height: 1.6875rem;
  font-weight: 700;
}
#flow .frame .flow_cont .step h3.step01 {
  background-color: #FFD14E;
	background-color: #FF7C03;
}
#flow .frame .flow_cont .step h3.step02 {
  background-color: #FFC200;
	background-color: #FF7C03;
}
#flow .frame .flow_cont .step h3.step03 {
  background-color: #F5B400;
	background-color: #FF7C03;
}
#flow .frame .flow_cont .step h4 {
  color: #585858;
  font-size: 1.5625rem;
  line-height: 2.1875rem;
  font-weight: 700;
  margin-bottom: 15px;
	text-align: center;
}
#flow .frame .flow_cont .step p {
  color: #7E7E7E;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
}
#flow .frame .flow_cont .step a {
  color: #FF7C03;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  text-decoration: underline;
  margin-top: 3px;
}
#flow .frame .flow_cont .flow_arrow {
  margin: auto;
}
@media screen and (max-width: 960px) {
  #flow .frame .flow_cont .flow_arrow {
    margin: 37px auto;
  }
}
#flow .frame .flow_cont .flow_arrow::after {
  display: inline-block;
  content: "";
  border-style: solid;
  border-width: 37px 0 37px 36px;
  border-color: transparent transparent transparent #7E7E7E;
}
@media screen and (max-width: 960px) {
  #flow .frame .flow_cont .flow_arrow::after {
    transform: rotate(0.25turn);
  }
}

#catalog_download {
  background-color: #282828;
}
#catalog_download .frame {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding: 85px 0 72px;
}
#catalog_download .frame h2 {
  opacity: 0;
  max-width: 350px;
  margin: 0 auto 14.2px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  text-align: center;
  font-size: 2.1875rem;
  line-height: 3.125rem;
  font-weight: 700;
}
#catalog_download .frame h2::after {
  content: "";
  display: inline-block;
  margin: 5.2px auto 0;
  width: 300px;
  height: 33.54px;
  background-image: url(../img/subtitle_under01.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
#catalog_download .frame .catalog_info {
  width: 100%;
  max-width: 864px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  #catalog_download .frame .catalog_info {
    width: 90.4%;
    margin: 0 auto;
    padding: 0 4.8%;
    flex-wrap: wrap;
  }
}
#catalog_download .frame .catalog_info-img {
  width: 100%;
  max-width: 303px;
}
@media screen and (max-width: 960px) {
  #catalog_download .frame .catalog_info-img {
    margin: 0 auto;
  }
}
#catalog_download .frame .catalog_info-download {
  width: 100%;
  max-width: 458px;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  #catalog_download .frame .catalog_info-download {
    margin: 0 auto;
  }
}
#catalog_download .frame .catalog_info-download p {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 2.1875rem;
  font-weight: 700;
  margin-bottom: 30px;
}
#catalog_download .frame .catalog_info-download a {
  position: relative;
  display: flex;
  align-items: center;
  width: 85%;
  padding: 18px 34px 17px;
  background-color: #FF7C03;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.8125rem;
  font-weight: 700;
  transition: 0.2s;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  #catalog_download .frame .catalog_info-download a {
    padding: 18px 20px 17px;
  }
}
@media screen and (max-width: 841px) {
  #catalog_download .frame .catalog_info-download a {
    width: 100%;
  }
}
#catalog_download .frame .catalog_info-download a::before {
  content: "";
  display: inline-block;
  width: 38.13px;
  height: 41.95px;
  background-image: url(../img/icon_arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 24px;
}
#catalog_download .frame .catalog_info-download a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
  transition: 0.5s;
}
#catalog_download .frame .catalog_info-download a:hover {
  text-decoration: none;
}
#catalog_download .frame .catalog_info-download a:hover::after {
  top: 0;
  left: 100%;
}

#footer_nav .frame {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto 10px;
  padding: 14px 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  #footer_nav .frame {
    width: 90.4%;
    padding: 14px 4.8%;
    flex-wrap: wrap;
  }
}
#footer_nav .frame .nav {
  width: 100%;
  max-width: 328px;
}
@media screen and (max-width: 960px) {
  #footer_nav .frame .nav {
    max-width: inherit;
  }
}
#footer_nav .frame .nav ul {
  width: 100%;
  display: flex;
}
#footer_nav .frame .nav ul li {
  margin-right: 25px;
}
#footer_nav .frame .nav ul li:last-child {
  margin-right: 0;
}
#footer_nav .frame .nav ul li a {
  color: #585858;
  font-size: 0.6875rem;
  line-height: 1rem;
  font-weight: 500;
}
#footer_nav .frame p {
  color: #585858;
  font-size: 0.6875rem;
  line-height: 1rem;
  font-weight: 500;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  #footer_nav .frame p {
    margin-left: 0;
  }
}

#footer_info-sp {
  display: none;
}
@media screen and (max-width: 960px) {
  #footer_info-sp {
    display: inline-block;
    width: 100%;
    background-color: #D4D4D4;
  }
}
#footer_info-sp .frame {
  width: 90.4%;
  padding: 24px 4.8% 11px;
}
#footer_info-sp .frame .tel {
  width: 88%;
  margin: 0 auto 7px;
  text-align: center;
}
#footer_info-sp .frame p {
  color: #585858;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.0625rem;
  font-weight: 500;
  margin-bottom: 27px;
}
#footer_info-sp .frame .contact_btn {
  width: 80%;
  margin: 0 auto;
}
#footer_info-sp .frame .contact_btn a {
  position: relative;
  display: block;
  width: auto;
  padding: 12px 70px 15px;
  background: #FF7C03;
  border-radius: 33px;
  color: #fff;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.5625rem;
  font-weight: 700;
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  #footer_info-sp .frame .contact_btn a {
    padding: 12px 20px 15px;
  }
}/*# sourceMappingURL=synergypack.css.map */