@charset "UTF-8";
/*==========================================================================
# reset 
========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

blockquote,
q {
  quotes: none;
}

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

/*==========================================================================
#	color
========================================================================== */
/*==========================================================================
#	font
========================================================================== */
/*==========================================================================
#	レイアウト幅
========================================================================== */
/*==========================================================================
#	ブレークポイント
========================================================================== */
/*==========================================================================
#	メディアクエリ
========================================================================== */
/*==========================================================================
#	共通
========================================================================== */
body {
  color: #1a1a1a;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Droid Sans", sans-serif;
  overflow-wrap: break-word;
  font-weight: 500;
  line-height: 1.72;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #1a1a1a;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .section-inner {
    padding: 0 20px;
  }
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #023e78;
}
.section-ttlEn {
  font-size: 100px;
  font-family: "Fira Sans", sans-serif;
  line-height: 1;
}
@media (min-width: 768px) and (max-width: 1179px) {
  .section-ttlEn {
    font-size: 8vw;
  }
}
@media (max-width: 767px) {
  .section-ttlEn {
    font-size: 52px;
  }
}
.section-ttlJa {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .section-ttlJa {
    font-size: 16px;
  }
}
.section-link a {
  position: relative;
  display: block;
  padding-right: 130px;
  font-size: 32px;
  font-family: "Fira Sans", sans-serif;
  color: #fff;
}
.section-link a::before {
  content: "";
  display: block;
  position: absolute;
  top: 22px;
  left: 155px;
  width: 92px;
  height: 8px;
  border: none;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: skew(65deg);
  transition: 0.3s;
}
.section-link a:hover::before {
  width: 141px;
}
.section-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: solid 3px #fff400;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .section-link {
    display: none;
  }
}
.section-linkSp {
  margin-top: 45px;
}
.section-linkSp a {
  position: relative;
  display: block;
  padding-right: 100px;
  font-size: 20px;
  font-family: "Fira Sans", sans-serif;
  color: #fff;
  text-align: right;
}
.section-linkSp a::before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 255px;
  width: 70px;
  height: 8px;
  border: none;
  border-right: 2px solid #fff;
  border-bottom: 1px solid #fff;
  transform: skew(65deg);
  transition: 0.3s;
}
@media (max-width: 767px) {
  .section-linkSp a::before {
    top: 10px;
  }
}
.section-linkSp a:hover::before {
  width: 95px;
}
.section-linkSp a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: solid 2px #fff400;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .section-linkSp {
    display: none;
  }
}

.l-skew {
  transform: skewY(10deg);
}

.l-skew__retun {
  transform: skewY(-10deg);
}

.br-sp {
  display: none;
}
@media (max-width: 767px) {
  .br-sp {
    display: inline;
  }
}

.br-pc {
  display: inline;
}
@media (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

.l-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/*==========================================================================
#	front-page
========================================================================== */
/*==========================================================================
#	header
========================================================================== */
.header {
  background-color: #fff;
  /*==========================================================================
  #	buger
  ========================================================================== */
}
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
}
.header-inner {
  position: relative;
  height: 100px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1179px) {
  .header-inner {
    height: 60px;
  }
}
@media (max-width: 767px) {
  .header-inner {
    height: 60px;
  }
}
.header-logo {
  display: block;
}
.header-ttl {
  max-width: 282px;
}
@media (max-width: 767px) {
  .header-ttl {
    max-width: 198px;
  }
}
.header-nav {
  display: flex;
  height: 100%;
  align-items: center;
}
.header-navList {
  display: none;
}
@media (min-width: 1180px) {
  .header-navList {
    display: flex;
  }
}
.header li {
  position: relative;
  font-size: 14px;
}
.header li a {
  color: #1a1a1a;
}
@media (min-width: 1180px) {
  .header li:not(:first-child) {
    margin-left: 46px;
  }
  .header li:not(:first-child)::before {
    content: "";
    display: block;
    height: 1em;
    border-left: 1px solid #999;
    position: absolute;
    top: 5px;
    bottom: 0;
    left: -30px;
    transform: rotate(45deg);
  }
}
.header-btns {
  display: none;
}
@media (min-width: 1180px) {
  .header-btns {
    display: block;
    margin-left: 36px;
  }
}
.header-btnDownlord {
  padding: 24px 34px;
  color: #023e78;
  border: solid 1px #023e78;
}
.header-btnContact {
  margin-left: 10px;
  padding: 24px 34px;
  color: #fff;
  background-color: #023e78;
}
.header .buger-btn {
  position: absolute;
  width: 27px;
  height: 15px;
  top: 23px;
  right: 20px;
  display: block;
}
@media (min-width: 1180px) {
  .header .buger-btn {
    display: none;
  }
}
.header .buger-line {
  width: 27px;
  height: 2px;
  background: #023e78;
  position: absolute;
  border-radius: 4px;
  transition: 0.5s;
}
.header .buger-line:nth-child(1) {
  top: 0;
}
.header .buger-line:nth-child(2) {
  top: 6px;
}
.header .buger-line:nth-child(3) {
  bottom: 0;
}
.header .buger-line.is-active:nth-child(1) {
  top: 10px;
  transform: rotate(-45deg);
}
.header .buger-line.is-active:nth-child(2) {
  opacity: 0;
}
.header .buger-line.is-active:nth-child(3) {
  top: 10px;
  transform: rotate(45deg);
}
@media (min-width: 1180px) {
  .header .buger {
    display: none;
  }
}
.header .buger-contents {
  display: none;
  position: fixed;
  height: calc(100vh - 60px);
  width: 100%;
  top: 0px;
  left: 0;
  background: #023e78;
  transform: translateY(60px);
  text-align: center;
  padding: 0 40px;
  transition: all 0.4s ease-out;
}
.header .buger-contents.is-active {
  display: block;
  z-index: 100;
}
.header .buger-nav {
  margin-top: 60px;
}
.header .buger li:not(:first-child) {
  margin-top: 40px;
}
.header .buger li a {
  color: #fff;
  font-size: 16px;
}
.header .buger-btns {
  margin-top: 40px;
}
@media (min-width: 1180px) {
  .header .buger-btns {
    display: none;
  }
}
.header .buger-btnDownlord {
  display: block;
  padding: 24px 34px;
  color: #fff;
  border: solid 1px #fff;
}
.header .buger-btnContact {
  display: block;
  margin-top: 30px;
  padding: 24px 34px;
  color: #023e78;
  background-color: #fff;
}

/*==========================================================================
#	mv
========================================================================== */
.swiper {
  margin-left: 90px;
}
@media (max-width: 767px) {
  .swiper {
    margin-left: 55px;
  }
}

.swiper-slide {
  /* Center slide text vertically */
  display: flex;
  justify-content: right;
  align-items: center;
  width: 1189px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv {
  position: relative;
}
.mv-contents {
  position: absolute;
  bottom: 55px;
  left: 50px;
  z-index: 10;
}
@media (max-width: 767px) {
  .mv-contents {
    left: 38px;
  }
}
.mv-ttlWrap {
  max-width: 700px;
}
@media (min-width: 768px) and (max-width: 1179px) {
  .mv-ttlWrap {
    max-width: 305px;
  }
}
@media (max-width: 767px) {
  .mv-ttlWrap {
    max-width: 210px;
  }
}
@media (min-width: 768px) {
  .mv-ttlTop {
    background: #fff;
    margin-bottom: 16px;
  }
}
.mv-ttl {
  display: inline-block;
  font-size: 80px;
  font-family: "Fira Sans", sans-serif;
  color: #023e78;
  background: #fff;
  padding: 7px 0;
  line-height: 1;
}
@media (min-width: 768px) and (max-width: 1179px) {
  .mv-ttl {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .mv-ttl {
    font-size: 40px;
    margin-top: 8px;
  }
}
.mv-txt {
  display: inline-block;
  margin-top: 16px;
  font-size: 20px;
  font-family: "Fira Sans", sans-serif;
  color: #fff;
  background: #023e78;
  padding: 7px 0;
  line-height: 1;
}
@media (min-width: 768px) and (max-width: 1179px) {
  .mv-txt {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .mv-txt {
    font-size: 16px;
  }
}

/*==========================================================================
#	about
========================================================================== */
.about {
  padding: 150px 0;
}
@media (min-width: 768px) {
  .about {
    background: linear-gradient(transparent 40.5%, #edf3f8 40.5%);
  }
}
@media (max-width: 767px) {
  .about {
    padding-top: 60px;
    background: linear-gradient(transparent 19%, #edf3f8 19%);
  }
}
.about-content {
  position: relative;
}
@media (min-width: 768px) {
  .about-content {
    padding-top: 100px;
  }
}
@media (min-width: 768px) {
  .about-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .about-items {
    margin-top: 60px;
  }
}
.about-txt {
  font-size: 14px;
  line-height: 1.71;
  width: calc(35% - 20px);
}
@media (max-width: 767px) {
  .about-txt {
    width: 100%;
  }
}
.about-img {
  width: calc(65% - 20px);
}
@media (max-width: 767px) {
  .about-img {
    width: 100%;
    margin-top: 70px;
  }
}
.about .img-bg {
  display: block;
  width: 40%;
  height: 70.3125vw;
  max-height: 800px;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/bg-company.jpg) center/cover;
}
@media (max-width: 767px) {
  .about .img-bg {
    width: 75%;
    height: 100vw;
    top: 440px;
  }
}

/*==========================================================================
#service	
========================================================================== */
.service {
  background: linear-gradient(transparent 53%, #edf3f8 53%);
  padding: 125px 0;
}
@media (min-width: 768px) {
  .service {
    margin: 100px 0 0;
  }
}
@media (max-width: 767px) {
  .service {
    background: linear-gradient(transparent 50%, #edf3f8 50%);
  }
}
@media (max-width: 767px) {
  .service .section-link {
    display: none;
  }
}
.service .section-link a {
  position: relative;
  display: block;
  padding-right: 130px;
  font-size: 32px;
  font-family: "Fira Sans", sans-serif;
  color: #1a1a1a;
}
.service .section-link a::before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 155px;
  width: 92px;
  height: 8px;
  border: none;
  border-right: 2px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  transform: skew(65deg);
  transition: 0.3s;
}
.service .section-link a:hover::before {
  width: 141px;
}
.service .section-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff400;
  border-radius: 50%;
  z-index: -1;
}
.service .section-linkSp a {
  color: #023e78;
}
.service .section-linkSp a::before {
  content: "";
  border-right: 2px solid #023e78;
  border-bottom: 1px solid #023e78;
  z-index: 3;
}
.service .section-linkSp a::after {
  background: #fff400;
}
@media (min-width: 768px) {
  .service-items {
    display: flex;
    justify-content: space-between;
    margin-top: 85px;
  }
}
@media (max-width: 767px) {
  .service-items {
    margin-top: 60px;
  }
}
.service-item {
  width: calc(33.3% - 46.6666666667px);
}
.service-item:nth-child(2) {
  margin-top: 55px;
}
@media (max-width: 767px) {
  .service-item:nth-child(2) {
    margin-top: 70px;
  }
}
.service-item:nth-child(3) {
  margin-top: 110px;
}
@media (max-width: 767px) {
  .service-item:nth-child(3) {
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .service-item {
    width: 100%;
  }
}
.service-itemImg {
  position: relative;
}
.service-itemNumber {
  position: absolute;
  top: -55px;
  right: 0;
  width: 100px;
}
.service-itemNumber img {
  max-width: 100%;
}
.service-itemTtl {
  position: absolute;
  bottom: 33px;
  left: -30px;
}
@media (max-width: 767px) {
  .service-itemTtl {
    left: -15px;
  }
}
.service-itemTtl span {
  display: inline-block;
  font-size: 28px;
  color: #023e78;
  line-height: 1;
  background: #fff;
  padding: 5px 0;
}
@media (min-width: 768px) and (max-width: 1179px) {
  .service-itemTtl span {
    font-size: 2.5vw;
  }
}
.service-itemTtl span:not(:first-child) {
  margin-top: 10px;
}
.service-itemTxt {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.71;
  color: #1a1a1a;
  margin-top: 16px;
  text-align: justify;
}

.case {
  background: url(../img/bg-case.jpg) no-repeat center/cover;
  padding: 100px 0;
  position: relative;
}
@media (max-width: 767px) {
  .case {
    margin-top: 90px;
    padding: 60px 0;
  }
}
.case .section-inner {
  max-width: 1100px;
}
.case .section-headItems {
  color: #fff;
}
.case-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 80px;
}
.case-item {
  display: block;
  width: calc(33.3% - 46.6666666667px);
}
.case-item:nth-child(n+4) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .case-item {
    width: 100%;
  }
  .case-item:not(:first-child) {
    margin-top: 50px;
  }
}
.case-company {
  color: #fff;
  margin-top: 15px;
}
.case-wrapCat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.case-cat {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  padding: 8px 16px;
  border: solid 1px #fff;
}
.case-arrow > svg {
  width: 33px;
  height: 33px;
  margin-right: 10px;
  transition: all 0.3s ease-out;
  fill: #fff;
}
.case-arrow > svg:hover {
  margin-right: 0;
  fill: #fff400;
}

.news {
  background: linear-gradient(transparent 53%, #edf3f8 53%);
  padding: 100px 0;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .news {
    background: linear-gradient(transparent 27%, #edf3f8 27%);
    padding: 60px 0;
  }
}
.news .section-link a {
  position: relative;
  display: block;
  padding-right: 130px;
  font-size: 32px;
  font-family: "Fira Sans", sans-serif;
  color: #1a1a1a;
}
.news .section-link a::before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 155px;
  width: 92px;
  height: 8px;
  border: none;
  border-right: 2px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  transform: skew(65deg);
  transition: 0.3s;
}
.news .section-link a:hover::before {
  width: 141px;
}
.news .section-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff400;
  border-radius: 50%;
  z-index: -1;
}
.news .section-linkSp a {
  color: #023e78;
}
.news .section-linkSp a::before {
  content: "";
  border-right: 2px solid #023e78;
  border-bottom: 1px solid #023e78;
  z-index: 3;
}
.news .section-linkSp a::after {
  background: #fff400;
}
.news-items {
  margin: 80px auto 0;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  padding: 60px 40px;
  max-width: 768px;
}
@media (max-width: 767px) {
  .news-items {
    padding: 40px 20px;
  }
}
.news-item {
  display: block;
}
.news-item:not(:first-child) {
  margin-top: 12px;
}
.news-wrapCat {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-cat {
  color: #e61264;
  border: solid 1px #e61264;
  font-size: 14px;
  padding: 8px 24px;
}
@media (max-width: 767px) {
  .news-cat {
    font-size: 12px;
    padding: 6px 20px;
  }
}
.news-date {
  color: #888888;
  font-size: 14px;
}
.news-ttl {
  color: #1a1a1a;
  font-weight: bold;
  padding: 16px 0 30px;
  border-bottom: solid 1px #dddddd;
}
@media (max-width: 767px) {
  .news-ttl {
    font-size: 14px;
  }
}

.link {
  width: 100%;
}
@media (min-width: 768px) {
  .link {
    display: flex;
    margin-top: 160px;
  }
}
@media (max-width: 767px) {
  .link {
    margin-top: 100px;
  }
}
.link-itemDownload {
  background: url(../img/img-download.jpg) no-repeat center/cover;
  flex: 0 0 50%;
  text-align: center;
  padding: 56px 0;
}
@media (max-width: 767px) {
  .link-itemDownload {
    width: 100%;
    padding: 45px 0 26px;
  }
}
.link-itemContact {
  background: url(../img/img-contact.jpg) no-repeat center/cover;
  flex: 0 0 50%;
  text-align: center;
  padding: 56px 0;
}
@media (max-width: 767px) {
  .link-itemContact {
    width: 100%;
    padding: 45px 0 26px;
  }
}
.link-ttlEn {
  color: #fff;
  font-size: 60px;
  font-family: "Fira Sans", sans-serif;
}
@media (max-width: 767px) {
  .link-ttlEn {
    font-size: 40px;
  }
}
.link-ttlJa {
  color: #fff;
  font-weight: bold;
  margin-top: 15px;
}
.link-btn {
  display: block;
  color: #fff400;
  font-family: "Fira Sans", sans-serif;
  font-size: 24px;
  max-width: 315px;
  padding: 35px 100px;
  margin: 40px auto 0;
  border: solid 1px #fff400;
  position: relative;
  transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
  .link-btn {
    font-size: 16px;
    padding: 20px 100px;
    max-width: 290px;
  }
}
.link-btn::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/icon-arrow-right01.svg);
  width: 20px;
  height: 13px;
  top: 50%;
  right: 31px;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}
.link-btn:hover {
  color: #1a1a1a;
  background: #fff400;
  border: none;
}
.link-btn:hover::after {
  right: 25px;
  background: url(../img/icon-arrow-rightBL.svg);
}

.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 114px 0 16px;
  position: relative;
}
@media (max-width: 767px) {
  .footer {
    padding: 65px 0 16px;
  }
}
.footer-inner {
  text-align: center;
}
.footer-logo {
  max-width: 368px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer-logo {
    max-width: 282px;
  }
}
.footer-infoTxt {
  display: inline-block;
  text-align: left;
  margin-top: 23px;
  font-size: 14px;
  line-height: 1.7;
}
.footer-copyligft {
  display: block;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .footer-copyligft {
    font-size: 12px;
    margin-top: 40px;
  }
}

.to-top {
  display: block;
  position: absolute;
  background: url(../img/icon-top.png) no-repeat center/cover;
  width: 40px;
  height: 40px;
  right: 40px;
  bottom: 40px;
  opacity: 0.8;
  z-index: 100;
}
@media (max-width: 767px) {
  .to-top {
    right: 10px;
    bottom: 20px;
  }
}

/*==========================================================================
#	固定ページ 共通
========================================================================== */
.lower-mv {
  width: 100%;
  height: 250px;
  position: relative;
}
.lower-mv::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lower-mv::after {
  content: "";
  position: absolute;
  background: url(../img/lower-mv-decoration_pc.png) no-repeat center/cover;
  top: 0;
  left: 0;
  width: 365px;
  height: 100%;
}
@media (max-width: 767px) {
  .lower-mv::after {
    background: url(../img/lower-mv-decoration_sp.png) no-repeat center/cover;
    width: 165px;
  }
}
.lower-mvHead {
  position: absolute;
  color: #023e78;
  max-width: 331px;
  top: 71px;
  left: 233px;
  z-index: 1;
}
@media (max-width: 767px) {
  .lower-mvHead {
    left: 20px;
  }
}
.lower-mvJa {
  margin-top: 8px;
  padding: 5px 0;
  font-size: 60px;
  line-height: 1;
  font-family: "Fira Sans", sans-serif;
  background: #fff;
  display: inline-block;
}
@media (max-width: 767px) {
  .lower-mvJa {
    font-size: 32px;
    padding: 3px 0;
  }
}
.lower-mvEn {
  padding: 5px 0;
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  background: #fff;
  margin-top: 8px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .lower-mvEn {
    font-size: 16px;
    padding: 3px 0;
  }
}

.breadcrumbs {
  max-width: 1200px;
  margin: 13px auto 0;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .breadcrumbs {
    padding: 0 20px;
  }
}
.breadcrumbs .pankuzu-arrow {
  margin: 0 6px;
  display: inline-block;
  left: 3px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #1a1a1a;
  border-right: 1px solid #1a1a1a;
  transform: rotate(45deg);
}
.breadcrumbs a,
.breadcrumbs .current-item {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 12px;
}

.breadcrumbs .home {
  color: #868686;
}

/*==========================================================================
  #	page-about
  ========================================================================== */
.mv-img-about {
  background: url(../img/mv-company_pc.jpg) no-repeat center/cover;
}

.page-about-content {
  margin-top: 100px;
}
@media (min-width: 768px) and (max-width: 1179px) {
  .page-about-content {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .page-about-content {
    margin-top: 60px;
  }
}
.page-about-content-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.page-about-content-bg01 {
  background: url(../img/img-company01_pc.jpg) no-repeat center/cover;
  height: 352px;
  padding: 0 20px;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .page-about-content-bg01 {
    background: url(../img/img-company01_sp.jpg) no-repeat center/cover;
    height: 280px;
  }
}
.page-about-content-bgEn {
  color: #fff;
  font-size: 100px;
}
@media (max-width: 767px) {
  .page-about-content-bgEn {
    font-size: 52px;
  }
}
.page-about-content-bgJp {
  color: #fff;
  font-size: 24px;
}
@media (max-width: 767px) {
  .page-about-content-bgJp {
    font-size: 16px;
  }
}
.page-about-content-box {
  max-width: 688px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  margin: -60px auto 0;
  padding: 32px 40px;
}
@media (max-width: 767px) {
  .page-about-content-box {
    max-width: 365px;
    padding: 20px;
  }
}
.page-about-content-boxTtl {
  color: #023e78;
  font-size: 24px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-about-content-boxTtl {
    font-size: 20px;
  }
}
.page-about-content-boxTxt {
  font-size: 14px;
  margin-top: 34px;
}
@media (max-width: 767px) {
  .page-about-content-boxTxt {
    margin-top: 20px;
  }
}
.page-about-content-bg02 {
  background: url(../img/img-company02_pc.jpg) no-repeat center/cover;
  height: 352px;
  padding: 20px;
  margin-top: 120px;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .page-about-content-bg02 {
    background: url(../img/img-company02_sp.jpg) no-repeat center/cover;
    height: 280px;
    margin-top: 60px;
  }
}

.page-about-company {
  background: url(../img/bg-case.jpg) no-repeat center/cover;
  margin-top: 120px;
  padding: 80px;
}
@media (max-width: 767px) {
  .page-about-company {
    padding: 60px 20px;
    margin-top: 60px;
  }
}
.page-about-company-inner {
  max-width: 768px;
  margin: 0 auto;
}
.page-about-company-content {
  background: #fff;
  padding: 60px 40px;
}
@media (max-width: 767px) {
  .page-about-company-content {
    padding: 40px 20px;
  }
}
.page-about-company-ttl {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
.page-about-company-dl {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
}
.page-about-company-dt {
  width: 29%;
  line-height: 1.5;
  padding: 24px 32px;
  border-top: solid 1px #023e78;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .page-about-company-dt {
    font-size: 14px;
    padding: 16px 0;
    line-height: 1;
  }
}
.page-about-company-dt:last-of-type {
  border-bottom: solid 1px #023e78;
}
.page-about-company-dd {
  width: 71%;
  padding: 24px 32px;
  line-height: 1.5;
  border-top: solid 1px #e8eaec;
}
@media (max-width: 767px) {
  .page-about-company-dd {
    font-size: 14px;
    padding: 16px 26px;
  }
}
.page-about-company-dd:last-of-type {
  border-bottom: solid 1px #e8eaec;
}

.page-about-menber {
  margin-top: 120px;
}
.page-about-menber .skew-bg::before {
  top: 765px;
  bottom: -115px;
  transform: skewY(8deg);
}
@media (max-width: 767px) {
  .page-about-menber .skew-bg::before {
    top: 960px;
    bottom: -140px;
  }
}
.page-about-menber-inner {
  max-width: 688px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page-about-menber-inner {
    padding: 0 20px;
  }
}
.page-about-menber-ttl {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.page-about-menber-item {
  margin-top: 60px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .page-about-menber-item {
    display: block;
  }
}
.page-about-menber-img {
  width: 34.795%;
  margin: 0;
}
@media (max-width: 767px) {
  .page-about-menber-img {
    width: 240px;
    height: 320px;
    margin: 0 auto;
  }
}
.page-about-menber-img img {
  height: auto;
}
.page-about-menber-profile {
  width: 59.295%;
  margin: 0;
}
@media (max-width: 767px) {
  .page-about-menber-profile {
    width: 100%;
  }
}
.page-about-menber-top {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .page-about-menber-top {
    margin-top: 20px;
  }
}
.page-about-menber-job {
  font-size: 14px;
  font-weight: bold;
}
.page-about-menber-name {
  font-size: 20px;
  font-weight: bold;
  margin-left: 20px;
}
.page-about-menber-history {
  font-size: 14px;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .page-about-menber-history {
    margin-top: 20px;
  }
}
.page-about-menber-snsIcons {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .page-about-menber-snsIcons {
    margin-top: 20px;
  }
}
.page-about-menber-snsIcon {
  display: inline-block;
  width: 32px;
  height: 32px;
}

/*==========================================================================
#	page-service
========================================================================== */
.mv-img-service {
  background: url(../img/mv-service_pc.jpg) no-repeat center/cover;
}

.page-service-inner {
  margin: 60px auto 0;
}
@media (min-width: 1180px) {
  .page-service-inner {
    margin: 80px auto 0;
    max-width: 1180px;
  }
}
.page-service-hedding {
  font-size: 28px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-service-hedding {
    font-size: 20px;
  }
}
.page-service-items {
  margin-top: 130px;
}
.page-service-items:not(:first-of-type) {
  margin-top: 200px;
}
.page-service-items:nth-of-type(odd) .page-service-item {
  flex-direction: row-reverse;
}
.page-service-items:nth-of-type(2) .page-service-number {
  right: 44px;
}
@media (max-width: 767px) {
  .page-service-items:nth-of-type(2) .page-service-number {
    right: 15px;
  }
}
@media (min-width: 1180px) {
  .page-service-items:nth-of-type(odd) .page-service-main {
    left: 80px;
  }
  .page-service-items:nth-of-type(2) .page-service-main {
    right: 80px;
  }
}
@media (max-width: 767px) {
  .page-service-items {
    margin-top: 60px;
  }
  .page-service-items:nth-of-type(odd) .page-service-img {
    margin-left: auto;
  }
}
@media (min-width: 1180px) {
  .page-service-item {
    display: flex;
    align-items: flex-start;
  }
}
.page-service-img {
  max-width: 560px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .page-service-img {
    max-width: 188px;
    max-height: 304px;
  }
}
.page-service-main {
  max-width: 590px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  padding: 80px 40px 60px;
  position: relative;
}
@media (max-width: 767px) {
  .page-service-main {
    padding: 60px 20px 40px;
    margin: -123px 20px;
  }
}
.page-service-number {
  font-size: 100px;
  font-family: "Fira Sans", sans-serif;
  color: #023e78;
  position: absolute;
  top: -80px;
}
@media (max-width: 767px) {
  .page-service-number {
    font-size: 70px;
    top: -60px;
  }
}
.page-service-jp {
  font-size: 40px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .page-service-jp {
    font-size: 28px;
  }
}
.page-service-en {
  font-family: "Fira Sans", sans-serif;
  color: #023e78;
}
.page-service-txt {
  font-size: 14px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .page-service-txt {
    margin-top: 30px;
  }
}
.page-service-dl {
  margin-top: 60px;
}
.page-service-row {
  display: flex;
  padding: 31px 0;
  border-top: 1px solid #cccccc;
}
.page-service-row:last-of-type {
  border-bottom: 1px solid #cccccc;
}
@media (max-width: 767px) {
  .page-service-row {
    padding: 20px 0;
  }
}
.page-service-dt {
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.page-service-dd {
  font-size: 14px;
  margin-left: 50px;
}
.page-service-btn {
  display: block;
  max-width: 304px;
  width: 100%;
  margin: 60px auto 0;
  color: #023e78;
  border: 1px solid #023e78;
  padding: 24px 20px 24px 80px;
  position: relative;
  transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
  .page-service-btn {
    padding: 24px 55px;
  }
}
.page-service-btn::after {
  content: "";
  background: url(../img/icon-arrow-right04blue.svg);
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}
.page-service-btn:hover {
  color: #fff;
  background: #023e78;
}
.page-service-btn:hover::after {
  background: url(../img/icon-arrow-right04hover.svg);
  right: 10px;
}
.page-service .skew-bg::before {
  top: -60px;
  bottom: -40px;
  transform: skewY(9deg);
}
@media (max-width: 767px) {
  .page-service .skew-bg::before {
    top: 0;
    bottom: 25px;
  }
}

.page-service-flow {
  margin-top: 160px;
  padding: 80px 0 160px;
  background: url(../img/bg-service-flow.jpg) no-repeat center/cover;
}
@media (max-width: 767px) {
  .page-service-flow {
    padding: 60px 20px;
  }
}
.page-service-flow-ttl {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.page-service-flow-items {
  margin-top: 60px;
}
@media (min-width: 1180px) {
  .page-service-flow-items {
    display: flex;
  }
}
@media (max-width: 767px) {
  .page-service-flow-items {
    margin-top: 40px;
  }
}
.page-service-flow-item {
  position: relative;
}
@media (min-width: 1180px) {
  .page-service-flow-item {
    padding: 40px 43px 18px;
    width: 25%;
  }
  .page-service-flow-item:nth-of-type(1) {
    background: #edf3f8;
  }
  .page-service-flow-item:nth-of-type(2) {
    background: #dde8f0;
  }
  .page-service-flow-item:nth-of-type(3) {
    background: #c7dbe9;
  }
  .page-service-flow-item:nth-of-type(4) {
    background: #b0d0e5;
  }
}
@media (max-width: 767px) {
  .page-service-flow-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.page-service-flow-item:nth-of-type(1) .page-service-flow-main {
  background: #edf3f8;
  color: #edf3f8;
}
.page-service-flow-item:nth-of-type(2) .page-service-flow-main {
  background: #dde8f0;
  color: #dde8f0;
}
.page-service-flow-item:nth-of-type(3) .page-service-flow-main {
  background: #c7dbe9;
  color: #c7dbe9;
}
.page-service-flow-item:nth-of-type(4) .page-service-flow-main {
  background: #b0d0e5;
  color: #b0d0e5;
}
.page-service-flow .arrow01::after,
.page-service-flow .arrow02::after,
.page-service-flow .arrow03::after {
  content: "";
  position: absolute;
  right: -35px;
  border-style: solid;
  z-index: 1;
}
@media (min-width: 1180px) {
  .page-service-flow .arrow01::after,
.page-service-flow .arrow02::after,
.page-service-flow .arrow03::after {
    top: 50%;
    transform: translateY(-50%);
    border-width: 105px 18px;
    border-color: transparent transparent transparent currentColor;
  }
}
@media (max-width: 767px) {
  .page-service-flow .arrow01::after,
.page-service-flow .arrow02::after,
.page-service-flow .arrow03::after {
    border-width: 19px 138px;
    border-color: currentColor transparent transparent transparent;
    left: auto;
    right: 0;
    bottom: -38px;
  }
}
.page-service-flow-numbers {
  color: #fff400;
  font-family: "Fira Sans", sans-serif;
  line-height: 1;
}
@media (min-width: 1180px) {
  .page-service-flow-numbers {
    position: absolute;
    top: -40px;
    left: 0;
    display: flex;
    align-items: baseline;
  }
}
.page-service-flow-step {
  font-size: 20px;
}
.page-service-flow-number {
  font-size: 40px;
}
@media (max-width: 767px) {
  .page-service-flow-main {
    max-width: 275px;
    padding: 30px 20px;
  }
}
.page-service-flow-itemTtl {
  color: #023e78;
  font-size: 20px;
}
@media (max-width: 767px) {
  .page-service-flow-itemTtl {
    text-align: center;
  }
}
.page-service-flow-txt {
  font-size: 14px;
  margin-top: 20px;
  color: #1a1a1a;
}
.page-service-flow-txt span {
  color: #e61264;
}

.page-service-faq {
  padding: 160px 20px 100px;
}
@media (max-width: 767px) {
  .page-service-faq {
    padding: 60px 20px 100px;
  }
}
.page-service-faq-ttl {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
.page-service-faq-list {
  margin: 60px auto 0;
  max-width: 688px;
}
.page-service-faq-item {
  border-bottom: 1px solid #dddddd;
}
.page-service-faq dt {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding: 32px 0;
}
@media (max-width: 767px) {
  .page-service-faq dt {
    font-size: 16px;
    padding-right: 80px;
  }
}
.page-service-faq dt .icon::before, .page-service-faq dt .icon::after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 2px;
  background: #1a1a1a;
  position: absolute;
  top: 50%;
  right: 0;
  transition: all 0.4s;
}
.page-service-faq dt .icon::after {
  transform: rotate(90deg);
}
.page-service-faq dt .icon-active::before {
  transform: rotate(50deg);
  background: #e61264;
  transition: all 0.4s;
}
.page-service-faq dt .icon-active::after {
  transform: rotate(-50deg);
  background: #e61264;
  transition: all 0.4s;
}
.page-service-faq .faqQ-active {
  color: #e61264;
}
.page-service-faq dd {
  display: none;
  padding: 0 60px 32px 40px;
}
@media (max-width: 767px) {
  .page-service-faq dd {
    font-size: 14px;
    padding: 0;
    padding-bottom: 17px;
  }
}

/*==========================================================================
#	page-news
========================================================================== */
.mv-img-news {
  background: url(../img/mv-news_pc@2x.jpg) no-repeat center/cover;
}

@media (min-width: 1180px) {
  .l-contents-inner {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
  }
}

@media (max-width: 767px) {
  .page-news {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1180px) {
  .page-news .l-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.page-news-main {
  width: calc(70.91% - 20px);
}
@media (max-width: 767px) {
  .page-news-main {
    width: 100%;
  }
}
.page-news-main-ttl {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .page-news-main-ttl {
    font-size: 20px;
  }
}
.page-news-main-items {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .page-news-main-items {
    margin-top: 20px;
  }
}
.page-news-main-thumbnail {
  width: calc(34.21% - 10px);
}
@media (max-width: 767px) {
  .page-news-main-thumbnail img {
    height: 90px;
  }
}
.page-news-main-body {
  margin-top: 12px;
  width: calc(65.79% - 10px);
}
@media (max-width: 767px) {
  .page-news-main-body {
    margin-top: 0;
  }
}
.page-news-main-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-news-main-cat {
  color: #e61264;
  font-size: 14px;
  border: 1px solid #e61264;
  padding: 8px 24px;
}
@media (max-width: 767px) {
  .page-news-main-cat {
    font-size: 12px;
    padding: 4px 12px;
  }
}
.page-news-main-new {
  color: #e61264;
  margin-left: 12px;
}
@media (max-width: 767px) {
  .page-news-main-new {
    font-size: 14px;
    margin-left: 8px;
  }
}
.page-news-main-time {
  color: #888888;
  font-size: 14px;
}
.page-news-main-info {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: bold;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .page-news-main-info {
    font-size: 14px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .pagination {
    margin-top: 40px;
  }
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50px;
  height: 50px;
  background: #f8f8f8;
  color: #888888;
  transition: all 0.15s linear;
}
@media (max-width: 767px) {
  .page-numbers {
    width: 40px;
    height: 40px;
  }
}
.page-numbers:hover {
  background: #023e78;
  color: #fff;
}

.page-numbers.current {
  background: #023e78;
  color: #fff;
}

.pagination > * + * {
  margin-left: 12px;
}
@media (max-width: 767px) {
  .pagination > * + * {
    margin-left: 6px;
  }
}

/*==========================================================================
#	sidebar
========================================================================== */
aside {
  width: calc(29.09% - 20px);
}
@media (max-width: 767px) {
  aside {
    width: 100%;
    margin-top: 100px;
  }
}

.sidebar-ttl {
  font-size: 20px;
}

.sidebar-new-items {
  display: flex;
  justify-content: space-between;
}
.sidebar-new-items:not(:first-child) {
  margin-top: 16px;
}
.sidebar-new-thumbnail {
  width: calc(35% - 5px);
}
@media (max-width: 767px) {
  .sidebar-new-thumbnail {
    width: calc(34.21% - 10px);
  }
}
.sidebar-new-thumbnail img {
  height: 7.8125vw;
  max-height: 100px;
}
@media (max-width: 767px) {
  .sidebar-new-thumbnail img {
    height: 90px;
  }
}
.sidebar-new-body {
  width: calc(65% - 5px);
}
@media (max-width: 767px) {
  .sidebar-new-body {
    width: calc(65.79% - 10px);
  }
}
.sidebar-new-cat {
  color: #e61264;
  font-size: 12px;
  border: 1px solid #e61264;
  padding: 4px 12px;
}
.sidebar-new-time {
  color: #888888;
  font-size: 14px;
}
.sidebar-new-info {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
  line-height: 1.42;
}

.sidebar-cats {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .sidebar-cats {
    padding-bottom: 100px;
  }
}
.sidebar-cats-list {
  border-top: 1px solid #dddddd;
  padding: 16px 35px;
  position: relative;
}
.sidebar-cats-list::before {
  content: "";
  background: url(../img/icon-chevron-right02.svg) no-repeat center/cover;
  width: 9px;
  height: 16px;
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar-cats-list:last-child {
  border-bottom: 1px solid #ddd;
}
.sidebar-cats-link {
  font-weight: bold;
  color: #1a1a1a;
}

/*==========================================================================
#	page-single
========================================================================== */
@media (min-width: 768px) {
  .l-single-inner {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
  }
}

.page-single-main-info {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .page-single-main-info {
    font-size: 20px;
    line-height: 1.4;
  }
}
.page-single-main-thumbnail {
  margin-top: 40px;
}
.page-single-main-contents {
  margin-top: 40px;
}
.page-single-main-contents h2 {
  font-size: 20px;
  color: #023e78;
  font-weight: bold;
  background: #f8f8f8;
  padding: 7px 26px;
  border-left: solid 6px #023e78;
}
.page-single-main-contents h3 {
  font-size: 18px;
  color: #023e78;
  font-weight: bold;
  margin-top: 40px;
  padding-bottom: 7px;
  border-bottom: solid 1px #023e78;
}
.page-single-main-contents h4 {
  font-size: 16px;
  font-weight: bold;
  color: #023e78;
  margin-top: 40px;
}
.page-single-main-contents p {
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
}
.page-single-main-contents ul {
  margin: 40px 0 0 40px;
}
.page-single-main-contents li {
  font-size: 14px;
  font-weight: 500;
  list-style: inside;
}
.page-single-main-contents li:not(:first-child) {
  margin-top: 16px;
}
.page-single-main-contents blockquote {
  margin-top: 40px;
  background: #f8f8f8;
  padding: 35px;
  border-left: solid 4px #023e78;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .page-single-main-contents blockquote {
    margin: 40px 0;
  }
}
.page-single-main-contents blockquote::before {
  background: url(../img/quote.png);
  content: "";
  height: 52px;
  left: 25px;
  position: absolute;
  top: 40px;
  width: 70px;
}
.page-single-main-contents blockquote cite {
  position: relative;
}
.page-single-main-txt {
  font-size: 14px;
  margin-top: 20px;
}

.p-single-link {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.p-single-link-item {
  border: solid 1px #023e78;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  color: #023e78;
}

/*==========================================================================
#	page-case
========================================================================== */
.page-case-nav {
  margin: 60px 15px;
}
@media (min-width: 768px) {
  .page-case-nav-list {
    display: flex;
  }
}
@media (max-width: 767px) {
  .page-case-nav-list {
    text-align: center;
  }
}
.page-case-nav-item:not(:first-child) {
  margin-left: 16px;
}
@media (max-width: 767px) {
  .page-case-nav-item:not(:first-child) {
    margin-top: 20px;
    margin-left: 0;
  }
}
.page-case-nav-item a {
  display: block;
  background: #eeeeee;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 12px 20px;
}
@media (min-width: 1180px) {
  .page-case-nav-item a {
    width: 208px;
  }
}
.page-case-nav-item a:hover {
  background: #dddddd;
}

.page-case {
  margin-top: 80px;
}
.page-case-inner {
  padding: 0 40px;
}
@media (max-width: 767px) {
  .page-case-inner {
    padding: 0 20px;
  }
}
.page-case-ttl {
  font-weight: bold;
  border-left: solid 8px #023e78;
  padding-left: 10px;
  font-size: 24px;
}
@media (min-width: 1180px) {
  .page-case-ttl {
    font-size: 28px;
    display: flex;
    align-items: center;
  }
}
.page-case-ttl span {
  color: #023e78;
  font-size: 16px;
  margin-left: 20px;
  display: block;
}
@media (max-width: 767px) {
  .page-case-ttl span {
    margin-left: 0;
    font-size: 14px;
  }
}
@media (min-width: 1180px) {
  .page-case-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.page-case-item {
  width: calc(50% - 40px);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  margin-top: 66px;
}
@media (min-width: 768px) and (max-width: 1179px) {
  .page-case-item {
    width: 100%;
    margin-top: 40px;
  }
  .page-case-item:not(:first-child) {
    margin-top: 54px;
  }
}
@media (max-width: 767px) {
  .page-case-item {
    width: 100%;
    margin-top: 25px;
  }
  .page-case-item:not(:first-child) {
    margin-top: 54px;
  }
}
.page-case-item-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  border-radius: 12px 12px 0 0;
  background: #023e78;
  position: relative;
  padding: 24px 40px 19px;
}
@media (max-width: 767px) {
  .page-case-item-head {
    padding: 18px 20px;
  }
}
.page-case-item-heading {
  color: #fff;
  font-weight: bold;
}
.page-case-item-survice {
  font-size: 14px;
}
@media (max-width: 767px) {
  .page-case-item-survice {
    font-size: 12px;
  }
}
.page-case-item-name {
  font-size: 24px;
}
@media (max-width: 767px) {
  .page-case-item-name {
    font-size: 16px;
  }
}
.page-case-item-name span {
  font-size: 16px;
  margin-left: 16px;
}
.page-case-item-img {
  width: 160px;
  height: 120px;
  background: #fff;
  position: absolute;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  overflow: hidden;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .page-case-item-img {
    width: 90px;
    height: 68px;
  }
}
.page-case-item-img img {
  border: none;
  vertical-align: top;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .page-case-item-img img {
    max-width: 52px;
  }
}
.page-case-item-body {
  padding: 40px;
}
@media (max-width: 767px) {
  .page-case-item-body {
    padding: 20px;
  }
}
.page-case-item-ttl {
  font-weight: bold;
  border-bottom: solid 1px #dddddd;
  padding-bottom: 10px;
}
.page-case-item-listTtl {
  position: relative;
  padding-left: 35px;
  margin-top: 30px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .page-case-item-listTtl {
    font-size: 16px;
  }
}
.page-case-item-listTtl::before {
  content: "";
  background: url(../img/icon-check.svg);
  height: 20px;
  width: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.page-case-item-listTxt {
  font-size: 14px;
}
.page-case-btn-wrapper {
  text-align: center;
}
.page-case-btn {
  display: inline-block;
  margin-top: 60px;
  color: #023e78;
  border: solid 1px #023e78;
  padding: 24px 80px;
  position: relative;
  transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
  .page-case-btn {
    font-size: 14px;
    padding: 26px 70px;
  }
}
.page-case-btn::after {
  content: "";
  background: url(../img/icon-arrow-right04blue.svg);
  height: 13px;
  width: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}
.page-case-btn:hover {
  color: #fff;
  background: #023e78;
}
.page-case-btn:hover::after {
  background: url(../img/icon-arrow-right04hover.svg);
  right: 10px;
}

/*==========================================================================
#	page-download
========================================================================== */
.page-case-inner {
  max-width: 1100px;
}

.mv-img-download {
  background: url(../img/mv-download_pc.jpg) no-repeat center/cover;
}

.page-download {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .page-download-items {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
  }
}
.page-download-contents {
  width: calc(50% - 40px);
}
@media (max-width: 767px) {
  .page-download-contents {
    width: 100%;
  }
}
.page-download-contents_ttl {
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .page-download-contents_ttl {
    font-size: 20px;
  }
}
.page-download-contents_img {
  max-width: 275px;
  margin: 30px auto;
}
.page-download-contents_txt {
  font-size: 14px;
  font-weight: 400;
}
.page-download-form {
  background: #edf3f8;
  border-radius: 12px;
  padding: 40px;
  width: 50%;
}
@media (max-width: 767px) {
  .page-download-form {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 100px;
    padding: 40px 20px 0;
  }
}
.page-download-form_item {
  margin-top: 40px;
}
.page-download-form_item:not(:first-child) {
  margin-top: 31px;
}
@media (max-width: 767px) {
  .page-download-form_item:not(:first-child) {
    margin-top: 20px;
  }
}
.page-download-form_ttl {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .page-download-form_ttl {
    font-size: 24px;
  }
}
.page-download-form_itemTtl {
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .page-download-form_itemTtl {
    font-size: 14px;
  }
}
.page-download-form_itemTtl span {
  font-size: 12px;
  color: #fff;
  background: #e61264;
  padding: 3px 8px;
  margin-left: 10px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .page-download-form_itemTtl span {
    font-size: 10px;
  }
}
.page-download-form_itemInput {
  margin-top: 13px;
}
@media (max-width: 767px) {
  .page-download-form_itemInput {
    margin-top: 8px;
  }
}
.page-download-form_itemInput input[type=text], .page-download-form_itemInput input[type=email] {
  border: solid 1px #ccc;
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.03em;
  padding: 10px 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .page-download-form_itemInput input[type=text], .page-download-form_itemInput input[type=email] {
    font-size: 14px;
  }
}
.page-download-form_footer {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-download-form_footer {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .page-download-form_txt {
    font-size: 14px;
  }
}
.page-download-form_txt a {
  font-weight: bold;
  text-decoration: underline;
  margin: 0 10px;
}
@media (max-width: 767px) {
  .page-download-form_txt a {
    margin: 0 4px;
  }
}
.page-download-form_privacy {
  position: relative;
}
.page-download-form_privacy input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.page-download-form_privacy input:checked + span {
  width: 10px;
  border-top: 0;
  border-left: 0;
  background: transparent;
  transform: rotate(45deg);
  position: absolute;
  top: -7px;
  left: -15px;
}
.page-download-form_privacy span {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: solid 1px #3e3e3e;
  background: #fff;
  position: absolute;
  top: -3px;
  left: -35px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .page-download-form_privacy span {
    width: 28px;
    height: 28px;
  }
}
.page-download-form_btn {
  display: block;
  margin: 40px auto 0;
  color: #023e78;
  border: solid 1px #023e78;
  padding: 24px 80px;
  background: #fff;
  cursor: pointer;
}
.page-download-form_btn:hover {
  color: #fff;
  background: #023e78;
}
@media (max-width: 767px) {
  .page-download-form_btn {
    font-size: 14px;
    padding: 26px 120px;
    margin: 40px auto 0;
  }
}
.page-download-form_items {
  margin-top: 40px;
}
.page-download-form_thankTxt {
  font-size: 14px;
  font-weight: 500;
}
.page-download-form_thankTxt:nth-of-type(2) {
  margin-top: 40px;
}
.page-download-form_link {
  display: inline-block;
  font-size: 14px;
  color: #023e78;
  text-decoration: underline;
  margin-top: 14px;
}

/*==========================================================================
#	page-contact
========================================================================== */
.l-m.inner {
  max-width: 690px;
  margin: 0 auto;
}

.mv-img-contact {
  background: url(../img/mv-contact_pc.jpg) no-repeat center center/cover;
}

.page-contact {
  margin-top: 80px;
}
.page-contact-contents_txt {
  font-size: 14px;
  font-weight: 500;
}
.page-contact-form {
  margin-top: 80px;
}
.page-contact-form_ttl {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
.page-contact-form_list {
  margin-top: 60px;
}
.page-contact-form_item:not(:first-child) {
  margin-top: 30px;
}
.page-contact-form_itemTtl {
  font-size: 18px;
  font-weight: bold;
}
.page-contact-form_itemTtl span {
  font-size: 12px;
  color: #fff;
  background: #e61264;
  padding: 3px 8px;
  margin-left: 10px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .page-contact-form_itemTtl span {
    font-size: 10px;
  }
}
.page-contact-form_itemInput, .page-contact-form_itemSelect {
  margin-top: 13px;
}
.page-contact-form input[type=text], .page-contact-form input[type=email], .page-contact-form input[type=tel] {
  border: solid 1px #ccc;
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.03em;
  padding: 10px 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .page-contact-form input[type=text], .page-contact-form input[type=email], .page-contact-form input[type=tel] {
    font-size: 14px;
  }
}
.page-contact-form select {
  border: solid 1px #ccc;
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.03em;
  padding: 10px 16px;
  width: 100%;
  cursor: pointer;
}
.page-contact-form textarea {
  border: solid 1px #ccc;
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.03em;
  padding: 10px 16px;
  width: 100%;
  height: 240px;
}
/*# sourceMappingURL=style.css.map */