@charset "UTF-8";
/*----------------------------------------
*
* +00 module/component
* +01 service-page
* +02 about-page
* +03 single-page
* +04 archive-page
* +05 contact-page
* +06 page-page
*
----------------------------------------*/
.pc_non {
  display: none;
}
@media screen and (max-width: 960px) {
  .pc_non {
    display: block;
  }
}

@media screen and (max-width: 960px) {
  .sp_non {
    display: none;
  }
}

.t_center {
  text-align: center;
}

/*----------------------------------------------------
++00 module/component
----------------------------------------------------*/
#wrapper {
  padding-top: 90px;
  /* コンテンツが少なくてもフッターを画面下部へ */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media screen and (max-width: 1201px) {
  #wrapper {
    padding-top: 58px;
  }
}

main {
  flex: 1;
}

/* breadcrumb */
#breadcrumb {
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
}
@media screen and (max-width: 960px) {
  #breadcrumb {
    height: 40px;
    line-height: 40px;
    padding-left: 16px;
  }
}
#breadcrumb li {
  font-size: 1.4rem;
  display: inline-block;
  position: relative;
}
#breadcrumb li:first-child a {
  text-decoration: underline;
}
#breadcrumb li:first-child::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 15px;
  background: url(../images/under_breadcrumb_icon.png) no-repeat;
  margin-right: 4px;
  position: relative;
  top: 2px;
}
#breadcrumb li:not(:first-child) {
  padding-left: 20px;
}
#breadcrumb li:not(:first-child)::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  left: 6px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #031832;
  border-right: 1px solid #031832;
  transform: rotate(45deg);
}
#breadcrumb li a span {
  color: #031832;
}
#breadcrumb li span {
  color: #cccccc;
}

/* main visual */
.underPage-mv {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 520px;
  padding: 0 16px;
}
@media screen and (max-width: 960px) {
  .underPage-mv {
    height: 190px;
  }
}
.underPage-mv._about-mv {
  background: url(../images/about_mv.jpg) center no-repeat;
  background-size: cover;
}
.underPage-mv._service-mv {
  background: url(../images/service_mv.jpg) center no-repeat;
  background-size: cover;
}
.underPage-mv._single-mv {
  background: url(../images/service_mv.jpg) center no-repeat;
  background-size: cover;
}
.underPage-mv._contact-mv {
  background: url(../images/contct_mv.jpg) center no-repeat;
  background-size: cover;
}
.underPage-mv_ttl {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .underPage-mv_ttl {
    font-size: 2rem;
  }
}

/* h2 title */
.section-ttl {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 960px) {
  .section-ttl {
    font-size: 2.4rem;
    margin-bottom: 44px;
  }
}
.section-ttl._sdgs {
  margin-bottom: 36px;
}
.section-ttl._company-info {
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .section-ttl._company-info {
    margin-bottom: 26px;
  }
}
.section-ttl._sustainable {
  margin-bottom: 80px;
  padding: 0 16px;
}
@media screen and (max-width: 960px) {
  .section-ttl._sustainable {
    margin-bottom: 48px;
  }
}
.section-ttl._dqg {
  margin-bottom: 70px;
}
@media screen and (max-width: 960px) {
  .section-ttl._dqg {
    margin-bottom: 55px;
  }
}
.section-ttl._service {
  margin-bottom: 77px;
}
@media screen and (max-width: 960px) {
  .section-ttl._service {
    margin-bottom: 55px;
  }
}
.section-ttl._contact {
  margin-bottom: 72px;
}
@media screen and (max-width: 960px) {
  .section-ttl._contact {
    margin-bottom: 55px;
  }
}
.section-ttl::before, .section-ttl::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #D8DBFC;
  position: absolute;
}
.section-ttl::before {
  bottom: -14px;
  left: calc(50% - 75px);
}
@media screen and (max-width: 960px) {
  .section-ttl::before {
    width: 35px;
    bottom: -8px;
    left: calc(50% - 30px);
  }
}
.section-ttl::after {
  bottom: -20px;
  left: calc(50% - 38px);
}
@media screen and (max-width: 960px) {
  .section-ttl::after {
    width: 35px;
    bottom: -13px;
    left: calc(50% - 5px);
  }
}

/* button */
.btn_contact {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background-color: #F59B33;
  padding: 14px 10px;
  min-width: 297px;
  max-width: 100%;
  border-radius: 5px;
  position: relative;
}
.page-template-page-contact .btn_contact{
  font-size: larger;
}
@media screen and (max-width: 960px) {
  .btn_contact {
    min-width: initial;
    width: 343px;
    max-width: 100%;
  }
}
.btn_contact._form_confirm {
  border: none;
  padding: 20px 10px;
}
.btn_contact._form_back {
  border: none;
  padding: 20px 10px;
  background-color: #202d56;
}
@media screen and (max-width: 960px) {
  .btn_contact._form_back {
    margin-top: 20px;
  }
}
.btn_contact::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 10px;
  top: 45%;
}

.btn-wrap {
  text-align: center;
}
@media screen and (max-width: 960px) {
  .btn-wrap {
    margin-bottom: 100px;
  }
}

.btn-more {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background-color: #202d56;
  padding: 10px;
  min-width: 172px;
  max-width: 100%;
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .btn-more {
    min-width: initial;
    width: 343px;
    max-width: 100%;
  }
}
.btn-more._archive-page {
  width: 172px;
}
.btn-more::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 10px;
  top: 45%;
}

/* page-nation */
.page-nation {
  margin-top: 50px;
}
@media screen and (max-width: 960px) {
  .page-nation {
    margin: 56px 0 100px;
  }
}
.page-nation .page-numbers {
  display: flex;
  justify-content: center;
}
.page-nation .page-numbers li {
  width: 45px;
  height: 45px;
  margin: 0 5px;
}
.page-nation .page-numbers li a {
  color: #202d56;
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-nation .page-numbers li a:not(.next, .prev) {
  background-color: #F5F5F5;
}
.page-nation .page-numbers li a.next, .page-nation .page-numbers li a.prev {
  position: relative;
}
.page-nation .page-numbers li a.next::before, .page-nation .page-numbers li a.prev::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #1C1F3F;
  border-right: 2px solid #1C1F3F;
  transform: rotate(45deg);
  position: absolute;
  right: calc(50% - 4px);
  top: 45%;
}
.page-nation .page-numbers li a.prev::before {
  transform: rotate(225deg);
}
.page-nation .page-numbers li span {
  color: #202d56;
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-nation .page-numbers li span.current {
  color: #fff;
  background-color: #202d56;
}

/*----------------------------------------------------
++01 service-page
----------------------------------------------------*/
.service-page .lead {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 45px 16px;
}
@media screen and (max-width: 960px) {
  .service-page .lead {
    font-size: 1.6rem;
    padding: 18px 16px 20px;
    line-height: 1.8;
  }
}
.service-page .col-3 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .service-page .col-3 {
    flex-direction: column;
    text-align: center;
  }
}
.service-page .col-3 .col-3-item {
  width: 31%;
}
@media screen and (max-width: 960px) {
  .service-page .col-3 .col-3-item {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .service-page .col-3 .col-3-item:not(:last-child) {
    margin-bottom: 30px;
  }
  .service-page .col-3 .col-3-item.col-3-style02 {
    margin-bottom: 0;
  }
}
.service-page .service-item {
  display: flex;
  flex-direction: column;
}
.service-page .service-item_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .service-page .service-item_img {
    margin: 0 auto 28px;
  }
}
.service-page .service-item_img._bg {
  min-height: 231px;
  background-color: #F4F4F7;
}
.service-page .service-item_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .service-page .service-item_ttl {
    font-size: 2rem;
  }
}
.service-page .service-item_txt {
  margin-bottom: 28px;
}
.service-page .service-item_btn {
  margin-top: auto;
}
.service-page .service01 {
  margin-bottom: 105px;
}
.service-page .service01_inner {
  width: 954px;
  max-width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
.service-page .service02 {
  margin-bottom: 26px;
}
@media screen and (max-width: 960px) {
  .service-page .service02 {
    margin-bottom: 48px;
  }
}
.service-page .service02_inner {
  width: 1250px;
  max-width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

/*----------------------------------------------------
++02 about-page
----------------------------------------------------*/
.about-page .sdgs {
  padding: 60px 0 100px;
}
@media screen and (max-width: 960px) {
  .about-page .sdgs {
    padding: 20px 0 80px;
  }
}
.about-page .sdgs_inner {
  width: 1061px;
  max-width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
.about-page .sdgs_txt {
  font-size: 2rem;
  width: 706px;
  max-width: 100%;
  margin: 58px auto 0;
}
@media screen and (max-width: 960px) {
  .about-page .sdgs_txt {
    font-size: 1.6rem;
    margin-top: 20px;
  }
}
.about-page .sdgs_txt p {
  margin-bottom: 14px;
}
@media screen and (max-width: 960px) {
  .about-page .sdgs_txt p {
    margin-bottom: 5px;
  }
}
.about-page .sdgs_member-list {
  position: relative;
  margin-top: 70px;
}
.about-page .sdgs_member-list .member-item {
  padding-top: 60px;
  padding-top: 55px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .about-page .sdgs_member-list .member-item {
    padding-top: 0;
  }
}
.about-page .sdgs_member-list .member-item:not(:last-child) {
  margin-bottom: 65px;
}
@media screen and (max-width: 960px) {
  .about-page .sdgs_member-list .member-item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.about-page .sdgs_member-list .member-item_pic {
  width: 283px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  .about-page .sdgs_member-list .member-item_pic {
    position: relative;
    width: 100%;
  }
}
.about-page .sdgs_member-list .member-item_pic img {
  width: 100%;
}
.about-page .sdgs_member-list .member-item_pic .name-position {
  color: #fff;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #202d56af;
  padding: 18px 16px;
}
.about-page .sdgs_member-list .member-item_pic .name {
  display: block;
  font-size: 20px;
  font-weight: 700;
}
.about-page .sdgs_member-list .member-item_pic .position {
  line-height: 1.5;
  display: inline-block;
}
.about-page .sdgs_member-list .member-item_txt {
  width: calc(100% - 212px);
  max-width: 100%;
  background-color: #F4F4F7;
  padding: 54px 35px 56px 103px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 960px) {
  .about-page .sdgs_member-list .member-item_txt {
    width: 100%;
    padding: 32px 10px;
  }
}
.about-page .company-info {
  color: #fff;
  background-color: #202d56;
  padding: 56px 0 26px;
}
@media screen and (max-width: 960px) {
  .about-page .company-info {
    padding: 46px 0 28px;
  }
}
.about-page .company-info_inner {
  width: 848px;
  max-width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
.about-page .company-info_table {
  width: 100%;
  border-collapse: collapse;
}
.about-page .company-info_table tbody tr:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.about-page .company-info_table tbody th, .about-page .company-info_table tbody td {
  padding: 22px 0;
}
@media screen and (max-width: 960px) {
  .about-page .company-info_table tbody th, .about-page .company-info_table tbody td {
    display: block;
  }
}
.about-page .company-info_table tbody th {
  font-weight: 700;
  text-align: left;
  width: 39%;
}
@media screen and (max-width: 960px) {
  .about-page .company-info_table tbody th {
    padding: 20px 0 0 0;
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .about-page .company-info_table tbody td {
    padding: 10px 0;
  }
}
.about-page .sustainable {
  padding: 128px 0 110px;
}
@media screen and (max-width: 960px) {
  .about-page .sustainable {
    padding: 82px 0;
  }
}
.about-page .sustainable_inner {
  width: 1032px;
  max-width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
.about-page .sustainable_txt {
  width: 750px;
  max-width: 100%;
  margin: 0 auto;
}
.about-page .sustainable_subttl {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .about-page .sustainable_subttl {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 15px;
  }
}
.about-page .sustainable_note {
  display: block;
  font-size: 1.2rem;
}
.about-page .dqg_bg {
  padding: 64px 0 64px;
  background-color: #F4F4F7;
}
@media screen and (max-width: 960px) {
  .about-page .dqg_bg {
    padding: 40px 0;
  }
}
.about-page .dqg_inner {
  width: 933px;
  max-width: 100%;
  padding: 0 28px;
  margin: 0 auto;
}
.about-page .dqg_inner02 {
  width: 1270px;
  max-width: 100%;
  padding: 97px 16px 56px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .about-page .dqg_inner02 {
    padding: 103px 16px 93px;
  }
}
.about-page .afiCompany-item {
  display: flex;
}
@media screen and (max-width: 960px) {
  .about-page .afiCompany-item {
    flex-direction: column;
  }
}
.about-page .afiCompany-item:not(:last-child) {
  margin-bottom: 56px;
}
.about-page .afiCompany-item.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 960px) {
  .about-page .afiCompany-item.reverse {
    flex-direction: column;
  }
}
.about-page .afiCompany-item_icon {
  width: 604px;
  max-width: 49%;
}
@media screen and (max-width: 960px) {
  .about-page .afiCompany-item_icon {
    max-width: 100%;
    margin-top: 40px;
  }
}
.about-page .afiCompany-item_txt {
  flex: 1;
}
.about-page .afiCompany-item_ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 3px solid #D8DBFC;
  margin-bottom: 32px;
}
@media screen and (max-width: 960px) {
  .about-page .afiCompany-item_ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
.about-page .afiCompany-item_companyName {
  font-weight: 700;
  margin-bottom: 12px;
}
.about-page .afiCompany-item_btn {
  font-weight: 700;
  text-align: center;
  display: inline-block;
  border: 1px solid #1C1F3F;
  border-radius: 5px;
  margin-top: 28px;
  padding: 8px;
  min-width: 205px;
  position: relative;
}
.about-page .afiCompany-item_btn::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  position: absolute;
  right: 10px;
  top: 45%;
}

/*----------------------------------------------------
++03 single-page
----------------------------------------------------*/
.single-page {
  padding: 78px 0 0 0;
}
@media screen and (max-width: 960px) {
  .single-page {
    padding: 42px 0 86px;
  }
}
.single-page_inner {
  width: 845px;
  max-width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
.single-page h1 {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .single-page h1 {
    font-size: 3.2rem;
    margin-bottom: 55px;
  }
}
.single-page h1::before, .single-page h1::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #D8DBFC;
  position: absolute;
}
.single-page h1::before {
  bottom: -14px;
  left: calc(50% - 50px);
}
@media screen and (max-width: 960px) {
  .single-page h1::before {
    width: 35px;
    bottom: -8px;
    left: calc(50% - 30px);
  }
}
.single-page h1::after {
  bottom: -20px;
  left: calc(50% - 10px);
}
@media screen and (max-width: 960px) {
  .single-page h1::after {
    width: 35px;
    bottom: -13px;
    left: calc(50% - 5px);
  }
}
.single-page h2 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
  border-left: 3px solid #5460EA;
  background-color: #F4F4F7;
  padding-left: 12px;
  margin: 1em 0;
}
@media screen and (max-width: 960px) {
  .single-page h2 {
    font-size: 2.4rem;
  }
}
.single-page h3 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #5460EA;
  margin: 1em 0;
}
@media screen and (max-width: 960px) {
  .single-page h3 {
    font-size: 2rem;
  }
}
.single-page h4 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 1em 0;
  display: inline-block;
  border-bottom: 3px solid #5460EA;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  .single-page h4 {
    font-size: 1.8rem;
  }
}
.single-page h5 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 1em 0;
}
@media screen and (max-width: 960px) {
  .single-page h5 {
    font-size: 1.4rem;
  }
}
.single-page h6 {
  font-size: 1.8rem;
  margin: 1em 0;
}
@media screen and (max-width: 960px) {
  .single-page h6 {
    font-size: 1.5rem;
  }
}
.single-page p {
  margin-bottom: 1em;
}

/*----------------------------------------------------
++04 archive-page
----------------------------------------------------*/
.archive-page {
    padding-top: 45px;
}
.archive-page_inner {
  width: 1060px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.archive-page .card {
  display: flex;
  padding: 32px 24px;
  background-color: #F4F4F7;
}
.underPage-mv._archive-mv {
  background: url(../images/news_mv.jpg) center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .underPage-mv._archive-mv {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .archive-page .card {
    flex-direction: column;
    padding: 16px 14px;
  }
}
.archive-page .card:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .archive-page .card:not(:last-child) {
    margin-bottom: 32px;
  }
}
.archive-page .card_content {
  flex: 1;
}
@media screen and (max-width: 960px) {
  .archive-page .card_content {
    order: 2;
  }
}
.archive-page .card_content .card_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 960px) {
  .archive-page .card_content .card_ttl {
    font-size: 2rem;
  }
}
.archive-page .card_content .card_txt {
  margin-bottom: 32px;
}
.archive-page .card_thumb {
  width: 207px;
  height: 207px;
  margin-left: 24px;
}
@media screen and (max-width: 960px) {
  .archive-page .card_thumb {
    order: 1;
    width: 100%;
    height: 315px;
    margin-left: 0;
    margin-bottom: 24px;
  }
}
.archive-page .card_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------------------------------------
++05 contact-page
----------------------------------------------------*/
.contact-page {
  padding: 50px 0 0;
}
@media screen and (max-width: 960px) {
  .contact-page {
    padding: 40px 0 100px;
  }
}
.contact-page_inner {
  width: 635px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.contact-page .form-area_row {
  position: relative;
}
.contact-page .form-area_row:not(:first-child) {
  margin-top: 36px;
}
@media screen and (max-width: 960px) {
  .contact-page .form-area_row:not(:first-child) {
    margin-top: 20px;
  }
}
.contact-page .form-area_row label, .contact-page .form-area_row input, .contact-page .form-area_row textarea {
  display: block;
  width: 100%;
  border: none;
}
.contact-page .form-area_row label {
  font-weight: bold;
}
.contact-page .form-area_row input, .contact-page .form-area_row textarea, .contact-page .form-area_row select, .contact-page .form-area_row option {
  background-color: #F4F4F7;
  border-radius: 4px;
  padding: 20px 13px;
  margin-top: 20px;
}
.contact-page .form-area_row input::-moz-placeholder, .contact-page .form-area_row textarea::-moz-placeholder, .contact-page .form-area_row select::-moz-placeholder, .contact-page .form-area_row option::-moz-placeholder {
  color: #C7C7CC;
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
}
.contact-page .form-area_row input:-ms-input-placeholder, .contact-page .form-area_row textarea:-ms-input-placeholder, .contact-page .form-area_row select:-ms-input-placeholder, .contact-page .form-area_row option:-ms-input-placeholder {
  color: #C7C7CC;
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
}
.contact-page .form-area_row input::placeholder, .contact-page .form-area_row textarea::placeholder, .contact-page .form-area_row select::placeholder, .contact-page .form-area_row option::placeholder {
  color: #C7C7CC;
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
}
.contact-page .form-area_row option {
  color: #C7C7CC;
  font-size: 1.6rem;
}
.contact-page .form-area_row select {
  display: block;
  background-color: #F4F4F7;
  width: 100%;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  position: relative;
}
.contact-page .form-area_row select.is-empty {
  color: #C7C7CC;
}
.contact-page .form-area_row textarea {
  height: 150px;
}
.contact-page .form-area_row .arrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  position: absolute;
  right: 10px;
  top: 65%;
  z-index: 1;
}
.contact-page .form-area input[type=submit] {
  cursor: pointer;
}
.contact-page .form-area input[type=submit]:hover, .contact-page .form-area input[type=submit]:focus {
  opacity: 0.7;
}
.contact-page .form-area .form_required {
  color: #EC4545;
  margin-left: 3px;
}
.contact-page .form-area_privacy {
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 20px;
}
@media screen and (max-width: 960px) {
  .contact-page .form-area_privacy {
    margin-top: 15px;
    line-height: 1.7;
  }
}
.contact-page .form-area_privacy a {
  text-decoration: underline;
}
.contact-page .form-area_btn {
  text-align: center;
  margin-top: 32px;
}
@media screen and (max-width: 960px) {
  .contact-page .form-area_btn {
    margin-top: 60px;
  }
}
.contact-page .contact_form_link {
  margin-top: 30px;
}
.contact-page .contact_form_link a {
  text-decoration: underline;
}

.page-id-988 .arrow {
  display: none;
}

/*----------------------------------------------------
++06 page-page
----------------------------------------------------*/
.page-page {
  padding: 78px 0 0 0;
}
@media screen and (max-width: 960px) {
  .page-page {
    padding: 42px 0 86px;
  }
}
.page-page_inner {
  width: 845px;
  max-width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
/*# sourceMappingURL=under-page.css.map */
