@charset "UTF-8";
/*---------------------------------------
  リセット
/*---------------------------------------*/
*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

html {
  letter-spacing: 0.03em;
}

body {
  width: 100%;
  color: #010101;
  line-height: 1.6;
  font-family: YakuHanJP_Noto, "Noto Sans JP", sans-serif;
  font-weight: 400;
  /* safari hover対策 */
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}

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

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

ins {
  color: #000;
  text-decoration: none;
  background-color: #ff9;
}

mark {
  color: #000;
  font-weight: bold;
  font-style: italic;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

li {
  list-style: none;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

input, select {
  vertical-align: middle;
}

img {
  line-height: 1;
  vertical-align: bottom;
}

button {
  padding: 0;
  border: none;
  outline: none;
  line-height: 1;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  z-index: 1;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

/*---------------------------------------
  common
/*---------------------------------------*/
html {
  font-size: 10px;
  scroll-behavior: smooth;
}

@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }
}
body.no_scroll {
  overflow: hidden;
}

.wrap {
  overflow-x: hidden;
  min-width: 1000px;
  width: 100%;
  padding-top: 90px;
}
@media screen and (max-width: 768px) {
  .wrap {
    min-width: 100%;
    padding-top: 10.6666666667vw;
  }
}

/* コンテンツ幅 1500px */
.wide_inner {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .wide_inner {
    max-width: 89.3333333333vw;
    padding: 0;
  }
}

/* コンテンツ幅 1360px */
.inner {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 89.3333333333vw;
    padding: 0;
  }
}

img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  img {
    height: auto;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

.sp_inline {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_inline {
    display: inline;
  }
}

.pc_inline {
  display: inline;
}
@media screen and (max-width: 768px) {
  .pc_inline {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .imgalpha {
    cursor: pointer;
    transition: opacity 0.6s;
  }
  .imgalpha:hover {
    opacity: 0.6 !important;
  }
}
/*---------------------------------------
  パンくずリスト
/*---------------------------------------*/
.breadScrap {
  border-bottom: 1px solid #e8e8e8;
}
.breadScrap .breadScrap_list {
  display: flex;
  height: 52px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .breadScrap .breadScrap_list {
    height: 8.5333333333vw;
  }
}
.breadScrap .breadScrap_list li {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .breadScrap .breadScrap_list li {
    font-size: 2.4vw;
  }
}
.breadScrap .breadScrap_list li::after {
  display: inline-block;
  margin: 0 12px;
  content: "＞";
}
@media screen and (max-width: 768px) {
  .breadScrap .breadScrap_list li::after {
    margin: 0 2.1333333333vw;
  }
}
.breadScrap .breadScrap_list li:last-child::after {
  content: none;
}

/*---------------------------------------
  ボタンエリア（共通）
/*---------------------------------------*/
.pageBtn_listWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pageBtn_listWrap li {
  max-width: 370px;
  width: 24.667%;
  border: 1px solid #ccc;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .pageBtn_listWrap li {
    margin-right: 0.467%;
  }
  .pageBtn_listWrap li:nth-child(4n) {
    margin-right: 0;
  }
  .pageBtn_listWrap li:nth-child(4n-2) {
    margin-right: 0.4%;
  }
  .pageBtn_listWrap li:nth-child(n+5) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .pageBtn_listWrap li {
    max-width: 44vw;
    width: 44vw;
    margin-right: 1.3333333333vw;
    border: 0.1333333333vw solid #ccc;
  }
  .pageBtn_listWrap li:nth-child(even) {
    margin-right: 0;
  }
  .pageBtn_listWrap li:nth-child(n+3) {
    margin-top: 1.3333333333vw;
  }
}
.pageBtn_listWrap .thumb {
  overflow: hidden;
}
.pageBtn_listWrap .thumb img {
  transition: all 0.6s;
}
.pageBtn_listWrap .pageBtn_txt {
  padding: 13px 30px 15px;
  line-height: 1.667;
  font-size: 1.8rem;
  font-weight: 700;
  background-image: url(/apt/assets/images/common/arrow_right01.png);
  background-repeat: no-repeat;
  background-position: 94% 51%;
  background-size: 25px auto;
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  .pageBtn_listWrap .pageBtn_txt {
    display: flex;
    padding: 0 4vw;
    line-height: 1.46;
    font-size: 3.4666666667vw;
    background-position: 90% 51%;
    background-size: 4.5333333333vw auto;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .pageBtn_listWrap a:hover .thumb img {
    transform: scale(1.2);
  }
  .pageBtn_listWrap a:hover .pageBtn_txt {
    background-position: 97% 51%;
  }
}

/*---------------------------------------
  ボタンエリア（aboutBtn.html）
/*---------------------------------------*/
.aboutBtn_area {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .aboutBtn_area {
    padding-bottom: 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .aboutBtn_area .pageBtn_listWrap .pageBtn_txt {
    height: 14.6666666667vw;
  }
}

/*---------------------------------------
  ボタンエリア（outlineBtn.html）
/*---------------------------------------*/
.outlineBtn_area {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .outlineBtn_area {
    padding-bottom: 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .outlineBtn_area .pageBtn_listWrap .pageBtn_txt {
    height: 14.6666666667vw;
  }
}
@media screen and (max-width: 1400px) {
  .outlineBtn_area .pageBtn_listWrap .pageBtn_txt br.sp {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .outlineBtn_area .pageBtn_listWrap .pageBtn_txt {
    display: flex;
    height: 100px;
    align-items: center;
  }
}

/*---------------------------------------
  lowerLayer
/*---------------------------------------*/
.lowerLayer .mv img {
  height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 70% center;
     object-position: 70% center;
}
@media screen and (max-width: 768px) {
  .lowerLayer .mv img {
    height: 45.3333333333vw;
    -o-object-position: center;
       object-position: center;
  }
}
.lowerLayer .lowerLayer_ttl {
  position: relative;
  margin-bottom: 100px;
  padding-bottom: 54px;
  line-height: 1.52;
  font-size: 4.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 768px) {
  .lowerLayer .lowerLayer_ttl {
    margin-bottom: 13.3333333333vw;
    padding-bottom: 7.2vw;
    font-size: 6.1333333333vw;
  }
}
.lowerLayer .lowerLayer_ttl::before {
  display: block;
  width: 90px;
  height: 6px;
  position: absolute;
  bottom: 0;
  left: 50%;
  background-color: #b70615;
  transform: translateX(-50%);
  content: "";
}
@media screen and (max-width: 768px) {
  .lowerLayer .lowerLayer_ttl::before {
    width: 12vw;
    height: 0.8vw;
  }
}

/*---------------------------------------
  header
/*---------------------------------------*/
header {
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  header {
    height: 10.6666666667vw;
  }
}
header .header_logo {
  min-width: 310px;
  width: 598px;
}
@media screen and (max-width: 768px) {
  header .header_logo {
    min-width: initial;
    width: 66.6666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  header .header_logo {
    width: 40%;
  }
}
header .header_inner {
  display: flex;
  height: 100%;
  position: relative;
  padding-right: 112px;
  padding-left: 40px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  header .header_inner {
    padding-right: 2.6666666667vw;
    padding-left: 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 870px) {
  header .header_inner {
    padding-right: 100px;
    padding-left: 20px;
  }
}
header .menu-trigger {
  display: inline-block;
  width: 90px;
  height: 90px;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: none;
  background-color: #d6010e;
  cursor: pointer;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10000000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 768px) {
  header .menu-trigger {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
header .menu-trigger span {
  display: inline-block;
  width: 46px;
  height: 2px;
  position: absolute;
  left: 22px;
  background-color: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  header .menu-trigger span {
    width: 6.1333333333vw;
    height: 0.2666666667vw;
    left: 2.2666666667vw;
  }
}
header .menu-trigger span:nth-of-type(1) {
  top: 26px;
}
@media screen and (max-width: 768px) {
  header .menu-trigger span:nth-of-type(1) {
    top: 2.9333333333vw;
  }
}
header .menu-trigger span:nth-of-type(2) {
  top: 43px;
}
@media screen and (max-width: 768px) {
  header .menu-trigger span:nth-of-type(2) {
    top: 5.2vw;
  }
}
header .menu-trigger span:nth-of-type(3) {
  bottom: 26px;
}
@media screen and (max-width: 768px) {
  header .menu-trigger span:nth-of-type(3) {
    bottom: 2.9333333333vw;
  }
}
header .menu-trigger.active {
  background-color: rgba(246, 244, 233, 0.95);
}
header .menu-trigger.active span {
  background-color: #d6010e;
}
header .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(20px) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  header .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(2.2666666667vw) rotate(-45deg);
  }
}
header .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
  transform: translateX(100%);
}
header .menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-15px) rotate(45deg);
}
@media screen and (max-width: 768px) {
  header .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-2.2666666667vw) rotate(45deg);
  }
}

/*---------------------------------------
  header_pcNav
/*---------------------------------------*/
.header_pcNav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header_pcNav {
    display: none;
  }
}
.header_pcNav ul {
  display: flex;
  align-items: center;
}
.header_pcNav ul li a {
  display: block;
  padding: 0 20px;
  line-height: 1.5;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .header_pcNav ul li a {
    padding: 0 10px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 870px) {
  .header_pcNav ul li a {
    padding: 0 5px;
    font-size: 1.4rem;
  }
}

/*---------------------------------------
  navigation
/*---------------------------------------*/
.navigation {
  overflow: auto;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 64px 0;
  opacity: 0;
  background-color: rgba(246, 244, 233, 0.95);
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .navigation {
    height: 100%;
    padding: 8.5333333333vw 0 6.6666666667vw;
  }
}
.navigation.active {
  opacity: 1;
  pointer-events: all;
}
.navigation .navigation_inner {
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .navigation .navigation_inner {
    overflow: auto;
    max-width: 100vw;
    height: 100%;
    padding: 0 10.6666666667vw;
  }
}
.navigation .navigation_inner div[class^=navi_] ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .navigation .navigation_inner div[class^=navi_] ul {
    display: block;
  }
}
.navigation .navigation_inner div[class^=navi_] li {
  max-width: 290px;
  width: 24.16666667%;
}
@media only screen and (max-width: 937px) {
  .navigation .navigation_inner div[class^=navi_] li:first-child br {
    display: none;
  }
}
.navigation .navigation_inner div[class^=navi_] li:nth-child(6) br, .navigation .navigation_inner div[class^=navi_] li:nth-child(7) br {
  display: none;
}
@media only screen and (max-width: 980px) {
  .navigation .navigation_inner div[class^=navi_] li:nth-child(6) br, .navigation .navigation_inner div[class^=navi_] li:nth-child(7) br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .navigation .navigation_inner div[class^=navi_] li:nth-child(6) br, .navigation .navigation_inner div[class^=navi_] li:nth-child(7) br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .navigation .navigation_inner div[class^=navi_] li {
    margin-right: 1.08333333%;
  }
  .navigation .navigation_inner div[class^=navi_] li:nth-child(4n) {
    margin-right: 0;
  }
  .navigation .navigation_inner div[class^=navi_] li:nth-child(n+5) {
    margin-top: 10px;
  }
  .navigation .navigation_inner div[class^=navi_] li a:hover {
    background-position: 97% 51%;
  }
}
@media screen and (max-width: 768px) {
  .navigation .navigation_inner div[class^=navi_] li {
    max-width: 100%;
    width: 100%;
    margin-bottom: 1.3333333333vw;
  }
  .navigation .navigation_inner div[class^=navi_] li:last-child {
    margin-bottom: 0;
  }
}
.navigation .navigation_inner div[class^=navi_] li a {
  display: flex;
  width: 100%;
  min-height: 84px;
  height: 100%;
  padding: 18px 20px 16px 24px;
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #fff;
  background-image: url(/apt/assets/images/common/arrow_right01.png);
  background-repeat: no-repeat;
  background-position: 94% 50%;
  background-size: 25px auto;
  transition: all 0.6s;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .navigation .navigation_inner div[class^=navi_] li a {
    min-height: initial;
    padding: 4vw;
    font-size: 3.7333333333vw;
    background-position: 95% 50%;
    background-size: 4.5333333333vw auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .navigation .navigation_inner div[class^=navi_] li a {
    padding-right: 10px;
  }
}
.navigation .navigation_inner div[class^=navi_] li a .br_adjust {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .navigation .navigation_inner div[class^=navi_] li a .br_adjust {
    display: block;
  }
}
.navigation .navigation_inner div[class^=navi_] li a small {
  width: 100%;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .navigation .navigation_inner div[class^=navi_] li a small {
    font-size: 3.0666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .navigation .navigation_inner div[class^=navi_] li a small {
    font-size: 1.4rem;
  }
}
.navigation .navigation_inner .navi_topWrap {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .navigation .navigation_inner .navi_topWrap {
    margin-bottom: 9.0666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .navigation .navigation_inner .navi_topWrap li a {
    min-height: 100px;
  }
}
.navigation .navi_ttl {
  margin-bottom: 32px;
  color: #b70615;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .navigation .navi_ttl {
    margin-bottom: 2.6666666667vw;
    font-size: 4.5333333333vw;
  }
}

/*---------------------------------------
  footer
/*---------------------------------------*/
footer {
  padding: 40px 0;
  color: #fff;
  text-align: center;
  background-color: #9c9356;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 5.3333333333vw 0 2.6666666667vw;
  }
}
footer .footer_nav {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  footer .footer_nav {
    margin-bottom: 4vw;
  }
}
footer .footer_nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer_nav li {
  margin: 0 40px;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 768px) {
  footer .footer_nav li {
    margin: 0 6.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
footer .copyright {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    font-size: 2.6666666667vw;
  }
}

/*---------------------------------------
  top
/*---------------------------------------*/
.top {
  /*---------------------------------------
    mv
  /*---------------------------------------*/
  /*---------------------------------------
    intro
  /*---------------------------------------*/
  /*---------------------------------------
    sec_btnConts（共通スタイル）
  /*---------------------------------------*/
  /*---------------------------------------
    sec_aboutBtn
  /*---------------------------------------*/
  /*---------------------------------------
    sec_outlineBtn
  /*---------------------------------------*/
}
.top .mv {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top .mv {
    padding-top: 20.5333333333vw;
  }
}
.top .mv .wide_inner {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 140px 30px 0;
  transform: translateX(-50%);
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .top .mv .wide_inner {
    max-width: 100%;
    left: 0;
    padding: 4.2666666667vw 0 0;
    transform: translateX(0);
  }
}
.top .mv .mv_ttl {
  min-width: 420px;
  max-width: 530px;
  width: 35.334%;
  margin-bottom: 5.2%;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .top .mv .mv_ttl {
    min-width: auto;
    max-width: 60.5333333333vw;
    width: 60.5333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.top .mv .mv_txt {
  opacity: 0;
  color: #9b7f23;
  line-height: 1.6;
  font-size: 3rem;
  font-weight: 700;
  transform: translateY(50px);
}
@media screen and (max-width: 768px) {
  .top .mv .mv_txt {
    margin-left: 5.3333333333vw;
    line-height: 1.5625;
    font-size: 4.2666666667vw;
    transform: translateY(4vw);
  }
}
.top .mv .swiper {
  min-width: 1100px;
  max-width: 1340px;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .top .mv .swiper {
    min-width: auto;
    max-width: 85.3333333333vw;
    width: 85.3333333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1800px) {
  .top .mv .swiper {
    max-width: 74.44444444vw;
    margin-left: 32.22222222%;
  }
}
.top .mv .swiper-slide {
  overflow: hidden;
}
.top .mv .swiper-slide img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}
@media screen and (max-width: 768px) {
  .top .mv .swiper-slide-active {
    margin-left: 1px;
  }
}
.top .intro {
  margin-top: -106px;
  padding: 133px 0 80px;
  background-image: url(/apt/assets/images/top/bg_intro.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .top .intro {
    margin-top: -9.3333333333vw;
    padding: 12vw 0 2.2666666667vw;
  }
}
.top .intro .notice_bg {
  display: flex;
  min-height: 270px;
  margin-top: 70px;
  background-color: rgba(255, 255, 255, 0.6);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top .intro .notice_bg {
    display: block;
    min-height: 59.33333333vw;
    margin-top: 6.66666667vw;
    padding-bottom: 5.33333333vw;
  }
}
.top .intro .notice {
  display: flex;
  max-width: 1200px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top .intro .notice {
    display: block;
    max-width: 89.3333333333vw;
    width: 100%;
  }
}
.top .intro .notice .notice_ttl {
  min-width: 190px;
  margin-top: 25px;
  margin-right: 60px;
  color: #927e30;
  line-height: 1;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 768px) {
  .top .intro .notice .notice_ttl {
    margin: 0 auto;
    padding-top: 10.66666667vw;
    font-size: 5.33333333vw;
  }
}
.top .intro .notice .notice_box {
  max-width: 900px;
  width: 100%;
}
.top .intro .notice .notice_box .notice_List::after {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #c3c3c3;
  content: "";
}
.top .intro .notice .notice_box dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .top .intro .notice .notice_box dl {
    flex-wrap: nowrap;
  }
}
.top .intro .notice .notice_box dt {
  min-width: 140px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top .intro .notice .notice_box dt {
    min-width: initial;
    max-width: 23.06666667vw;
    margin-right: 3.06666667vw;
    padding-top: 4.66666667vw;
    font-size: 3.73333333vw;
    align-self: flex-start;
  }
}
.top .intro .notice .notice_box dd {
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .top .intro .notice .notice_box dd {
    padding-top: 4.66666667vw;
    padding-bottom: 4.66666667vw;
    line-height: 1.71428571;
    font-size: 3.73333333vw;
  }
}
.top .intro .notice .notice_box .icon {
  width: 25px;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .top .intro .notice .notice_box .icon {
    width: 4.26666667vw;
    margin-left: 0.66666667vw;
  }
}
.top .intro .notice .notice_List:last-child::after {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1800px) {
  .top .intro {
    margin-top: -50px;
  }
}
.top .intro_wrap {
  display: flex;
  max-width: 880px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top .intro_wrap {
    max-width: 100%;
  }
}
.top .intro_wrap .intro_img {
  max-width: 206px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top .intro_wrap .intro_img {
    max-width: 22.1333333333vw;
  }
}
.top .intro_wrap .intro_img svg {
  width: 100%;
}
.top .intro_wrap .intro_txt {
  margin-left: -37px;
  line-height: 2;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .top .intro_wrap .intro_txt {
    margin-left: 4.6666666667vw;
    line-height: 1.75;
    font-size: 3.2vw;
  }
}
.top .sec_btnConts {
  text-align: center;
}
.top .sec_btnConts .ttl_wrap {
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .top .sec_btnConts .ttl_wrap {
    background-position: right center;
  }
}
.top .sec_btnConts .ttl_wrap::before {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
}
.top .sec_btnConts .ttl_tag {
  display: inline-block;
  min-width: 112px;
  position: relative;
  margin-bottom: 30px;
  padding: 7px 18px 8px;
  border-radius: 17px;
  color: #fff;
  line-height: 1;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background-color: #b70615;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top .sec_btnConts .ttl_tag {
    min-width: 14.9333333333vw;
    margin-bottom: 2.6666666667vw;
    padding: 0.4vw 2.1333333333vw 0.8vw;
    border-radius: 2.2666666667vw;
    font-size: 2.9333333333vw;
  }
}
.top .sec_btnConts .btnArea_ttl {
  position: relative;
  color: #fff;
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top .sec_btnConts .btnArea_ttl {
    line-height: 1.59;
    font-size: 5.8666666667vw;
  }
}
.top .sec_btnConts .btnConts_wrap {
  background-color: #f5f2ef;
  background-image: url(/apt/assets/images/top/bg_dot.png);
  background-repeat: repeat-x;
  background-position: top 220px center;
}
@media screen and (max-width: 768px) {
  .top .sec_btnConts .btnConts_wrap {
    background-position: top 8vw center;
  }
}
.top .sec_btnConts .btnArea_listWrap {
  display: flex;
  margin-top: -220px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top .sec_btnConts .btnArea_listWrap {
    display: block;
    position: relative;
    margin-top: -8vw;
  }
}
.top .sec_btnConts .btnArea_listWrap li {
  max-width: 350px;
  width: 23.333333%;
  box-shadow: 0px 0px 51px 9px rgba(0, 0, 0, 0.06);
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .top .sec_btnConts .btnArea_listWrap li {
    margin-right: 2.2%;
  }
  .top .sec_btnConts .btnArea_listWrap li:nth-child(4n) {
    margin-right: 0;
  }
  .top .sec_btnConts .btnArea_listWrap li:nth-child(n+5) {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .top .sec_btnConts .btnArea_listWrap li {
    max-width: 100%;
    width: 100%;
    margin-bottom: 2.6666666667vw;
    box-shadow: 0 0 6.8vw 1.2vw rgba(0, 0, 0, 0.04);
  }
  .top .sec_btnConts .btnArea_listWrap li:last-child {
    margin-bottom: 0;
  }
}
.top .sec_btnConts .btnArea_listWrap .thumb {
  overflow: hidden;
}
.top .sec_btnConts .btnArea_listWrap .thumb img {
  transition: all 0.6s;
}
.top .sec_btnConts .btnArea_listWrap .btnArea_txt {
  padding: 20px 40px;
  line-height: 1.8;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: left;
  background-image: url(/apt/assets/images/common/arrow_right01.png);
  background-repeat: no-repeat;
  background-position: 94% 51%;
  background-size: 25px auto;
  transition: all 0.6s;
  height: 28%;
  min-height: 120px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1072px) {
  .top .sec_btnConts .btnArea_listWrap .btnArea_txt {
    font-size: 1.8rem;
    height: 34%;
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .top .sec_btnConts .btnArea_listWrap .btnArea_txt {
    padding: 5.0666666667vw 4vw 5.8666666667vw;
    font-size: 3.7333333333vw;
    background-position: 94% 51%;
    background-size: 4.5333333333vw auto;
  }
}
@media only screen and (max-width: 1262px) {
  .top .sec_btnConts .btnArea_listWrap .btnArea_txt .company_br {
    display: none;
  }
}
.top .sec_btnConts .btnArea_listWrap .btnArea_txt small {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .top .sec_btnConts .btnArea_listWrap .btnArea_txt small {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 768px) {
  .top .sec_btnConts .btnArea_listWrap a:hover .thumb img {
    transform: scale(1.2);
  }
  .top .sec_btnConts .btnArea_listWrap a:hover .btnArea_txt {
    background-position: 97% 51%;
  }
}
.top .sec_aboutBtn .ttl_wrap {
  padding: 167px 0 376px;
  background-image: url(/apt/assets/images/common/img_mv02_pc.jpg);
}
@media screen and (max-width: 768px) {
  .top .sec_aboutBtn .ttl_wrap {
    padding: 12vw 0 17.3333333333vw;
    background-image: url(/apt/assets/images/common/img_mv02_sp.jpg);
  }
}
.top .btnConts_wrap {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .top .btnConts_wrap {
    padding-bottom: 16vw;
  }
}
.top .sec_outlineBtn .ttl_wrap {
  padding: 154px 0 338px;
  background-image: url(/apt/assets/images/common/img_mv01_pc.jpg);
}
@media screen and (max-width: 768px) {
  .top .sec_outlineBtn .ttl_wrap {
    padding: 14.9333333333vw 0 23.4666666667vw;
    background-image: url(/apt/assets/images/common/img_mv01_sp.jpg);
  }
}
.top .sec_outlineBtn .btnConts_wrap {
  padding-bottom: 170px;
}
@media screen and (max-width: 768px) {
  .top .sec_outlineBtn .btnConts_wrap {
    padding-bottom: 20vw;
  }
}
.top .sec_outlineBtn .btnArea_listWrap .btnArea_txt {
  display: flex;
  min-height: 110px;
  padding: 30px 40px 28px;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .top .sec_outlineBtn .btnArea_listWrap .btnArea_txt {
    min-height: 16vw;
    padding: 2.6666666667vw 4vw 2.9333333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1060px) {
  .top .sec_outlineBtn .btnArea_listWrap .btnArea_txt {
    padding: 30px 20px 28px;
  }
}
.top .sec_outlineBtn .btnArea_listWrap.aboutFactory li {
  width: 31.33333333%;
}
@media screen and (max-width: 768px) {
  .top .sec_outlineBtn .btnArea_listWrap.aboutFactory li {
    max-width: 100%;
    width: 100%;
    margin-bottom: 2.6666666667vw;
    box-shadow: 0 0 6.8vw 1.2vw rgba(0, 0, 0, 0.04);
  }
  .top .sec_outlineBtn .btnArea_listWrap.aboutFactory li:last-child {
    margin-bottom: 0;
  }
}

/*---------------------------------------
  company
/*---------------------------------------*/
.page_company .sec_company {
  padding-top: 75px;
  padding-bottom: 103px;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company {
    padding-top: 11.3333333333vw;
    padding-bottom: 13.3333333333vw;
  }
  .page_company .sec_company .inner {
    max-width: 100vw;
  }
}
.page_company .sec_company h2 {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  margin-top: -13px;
  margin-bottom: 64px;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company h2 {
    font-size: 4.6666666667vw;
    margin-top: -1.7333333333vw;
    margin-bottom: 8.5333333333vw;
  }
}
.page_company .sec_company .details_wrap {
  position: relative;
}
.page_company .sec_company .details_img {
  position: absolute;
  top: 0;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .details_img {
    position: static;
    margin-bottom: 8vw;
  }
}
.page_company .sec_company .detail_box {
  max-width: 530px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .detail_box {
    max-width: 89.3333333333vw;
    margin: 0 auto;
  }
}
.page_company .sec_company .detail_box sup {
  vertical-align: top;
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
  .page_company .sec_company .detail_box {
    max-width: 490px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .page_company .sec_company .detail_box {
    max-width: 460px;
  }
}
.page_company .sec_company .detail_box dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.page_company .sec_company .detail_box dl:nth-child(odd) {
  background-color: #f7f5f0;
}
.page_company .sec_company .detail_box dt,
.page_company .sec_company .detail_box dd {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .detail_box dt,
  .page_company .sec_company .detail_box dd {
    padding-top: 1.7333333333vw;
    padding-bottom: 2.2666666667vw;
  }
}
.page_company .sec_company .detail_box dt {
  width: 24.53%;
  padding-left: 20px;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .detail_box dt {
    width: 25.3333333333vw;
    padding-left: 2.6666666667vw;
    font-size: 3.3333333333vw;
  }
}
.page_company .sec_company .detail_box dd {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .detail_box dd {
    line-height: 1.69;
    font-size: 3.4666666667vw;
  }
}
.page_company .sec_company .detail_01 {
  padding-bottom: 205px;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .detail_01 {
    padding-bottom: 8.6666666667vw;
  }
}
.page_company .sec_company .detail_01 .details_img {
  max-width: 980px;
  width: 72.05%;
  right: -220px;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .detail_01 .details_img {
    max-width: 100vw;
    width: 100vw;
  }
}
.page_company .sec_company .detail_02 {
  padding-bottom: 19px;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .detail_02 {
    padding-bottom: 15.3333333333vw;
  }
}
.page_company .sec_company .detail_02 .detail_box {
  padding-top: 123px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .detail_02 .detail_box {
    padding-top: 0.4vw;
    margin: 0 auto;
  }
}
.page_company .sec_company .detail_02 .detail_box dt {
  width: 37.736%;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .detail_02 .detail_box dt {
    width: 36.6666666667vw;
  }
}
.page_company .sec_company .detail_02 .details_img {
  max-width: 970px;
  width: 71.3235%;
  left: -220px;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .detail_02 .details_img {
    max-width: 100vw;
    width: 100vw;
  }
}
.page_company .sec_company .detail_02 .details_annotation {
  text-align: right;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .detail_02 .details_annotation {
    font-size: 2.9333333333vw;
    margin-right: 5.3333333333vw;
    margin-top: 1.3333333333vw;
  }
}
.page_company .sec_company .sec_business {
  padding: 76px 0 120px;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .sec_business {
    padding: 6.6666666667vw 0 9.8666666667vw;
  }
}
.page_company .sec_company .sec_business h2 {
  margin-bottom: 29px;
}
.page_company .sec_company .sec_business .intro_txt {
  margin-bottom: 55px;
  line-height: 2.223;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .sec_business .intro_txt {
    margin-bottom: 3.3333333333vw;
    line-height: 1.69;
    font-size: 3.4666666667vw;
  }
}
.page_company .sec_company .sec_business .product_list {
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .sec_business .product_list {
    max-width: 100%;
    flex-wrap: wrap;
  }
  .page_company .sec_company .sec_business .product_list li:nth-child(1) {
    width: 33.3333333333vw;
    order: 1;
  }
  .page_company .sec_company .sec_business .product_list li:nth-child(2) {
    width: 44.6666666667vw;
    order: 3;
  }
  .page_company .sec_company .sec_business .product_list li:nth-child(3) {
    width: 44.6666666667vw;
    order: 4;
  }
  .page_company .sec_company .sec_business .product_list li:nth-child(4) {
    width: 56vw;
    order: 2;
  }
}
.page_company .sec_company .gmap_wrap {
  background-color: #e7e6e0;
  background-image: url(/apt/assets/images/company/bg_dot.png);
  background-repeat: repeat-x;
  background-position: top;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .gmap_wrap {
    background-image: none;
  }
}
.page_company .sec_company .gmap_wrap .inner {
  min-height: 650px;
  position: relative;
  padding-top: 130px;
  padding-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .gmap_wrap .inner {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 5.0666666667vw;
  }
}
.page_company .sec_company .gmap_wrap .gmap {
  overflow: hidden;
  width: 80.423%;
  height: 0;
  position: absolute;
  top: 0;
  right: -220px;
  padding-bottom: 650px;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .gmap_wrap .gmap {
    width: 100%;
    position: relative;
    right: 0;
    margin-bottom: 10.6666666667vw;
    padding-bottom: 88vw;
  }
}
@media screen and (min-width: 1870px) {
  .page_company .sec_company .gmap_wrap .gmap {
    right: -250px;
  }
}
.page_company .sec_company .gmap_wrap .gmap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .gmap_wrap .adress_wrap {
    text-align: center;
  }
}
.page_company .sec_company .gmap_wrap .adress_wrap h2 {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .gmap_wrap .adress_wrap h2 {
    text-align: center;
    margin-bottom: 7.6vw;
  }
}
.page_company .sec_company .gmap_wrap .adress_wrap .name {
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .gmap_wrap .adress_wrap .name {
    margin-bottom: 2vw;
    font-size: 3.4666666667vw;
  }
}
.page_company .sec_company .gmap_wrap .adress_wrap .address_txt {
  line-height: 2;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .page_company .sec_company .gmap_wrap .adress_wrap .address_txt {
    line-height: 1.69;
    font-size: 3.4666666667vw;
  }
}

/*---------------------------------------
  page_message
/*---------------------------------------*/
.page_message .sec_message {
  padding: 75px 0 200px;
}
@media screen and (max-width: 768px) {
  .page_message .sec_message {
    padding: 11.4666666667vw 0 13.3333333333vw;
  }
}
.page_message .message_container {
  display: flex;
  flex-direction: row-reverse;
  margin: 0px auto;
  justify-content: center;
  gap: 5.95%;
}
@media screen and (max-width: 768px) {
  .page_message .message_container {
    display: block;
    margin: 0px auto;
  }
}
@media (max-width: 1400px) {
  .page_message .message_container {
    gap: 3.5%;
  }
}
.page_message .message_container_txt {
  max-width: 725px;
  line-height: 2.22;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .page_message .message_container_txt {
    max-width: 670px;
    margin-top: 6.53vw;
    line-height: 1.69;
    font-size: 3.46vw;
  }
}
.page_message .message_container_txt2 {
  max-width: 216px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page_message .message_container_txt2 {
    max-width: 39.4666666667vw;
    width: 39.4666666667vw;
    margin-top: 7.06vw;
  }
}
.page_message .message_container_img {
  min-width: 400px;
  max-width: 542px;
  margin: 11px 0 auto;
}
@media screen and (max-width: 768px) {
  .page_message .message_container_img {
    min-width: 0px;
    max-width: 89.3333333333vw;
    margin: 0 auto;
  }
}

/*---------------------------------------
  philosophy
/*---------------------------------------*/
.page_philosophy {
  /* cont_mission */
  /* cont_vision */
  /* cont_value */
  /* cont_quality */
}
.page_philosophy .sec_philosophy {
  padding-top: 76px;
}
@media screen and (max-width: 768px) {
  .page_philosophy .sec_philosophy {
    padding-top: 11.4666666667vw;
  }
  .page_philosophy .sec_philosophy .wide_inner {
    max-width: 100vw;
  }
}
.page_philosophy .conts_wrap {
  display: flex;
  position: relative;
  padding-bottom: 90px;
  background-color: #f6f4e9;
  background-image: url(/apt/assets/images/philosophy/bg_philosophy_pc.png);
  background-repeat: repeat-x;
  background-position: bottom;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .page_philosophy .conts_wrap {
    display: block;
    padding-bottom: 10.6666666667vw;
    background-image: url(/apt/assets/images/philosophy/bg_philosophy_sp.png);
  }
}
.page_philosophy .conts_wrap .conts_img {
  min-width: 860px;
  max-width: 980px;
}
@media screen and (max-width: 768px) {
  .page_philosophy .conts_wrap .conts_img {
    min-width: auto;
    max-width: 100%;
  }
}
.page_philosophy .conts_wrap .conts_box {
  max-width: 600px;
  width: 100%;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .page_philosophy .conts_wrap .conts_box {
    max-width: 89.3333333333vw;
  }
}
.page_philosophy .conts_wrap .box_txt {
  line-height: 1.778;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .page_philosophy .conts_wrap .box_txt {
    line-height: 1.69;
    font-size: 3.4666666667vw;
  }
}
.page_philosophy .box_ttl span {
  display: block;
  line-height: 1;
}
.page_philosophy .box_ttl .box_ttlEn {
  margin-bottom: 25px;
  color: #b70615;
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page_philosophy .box_ttl .box_ttlEn {
    margin-bottom: 3.3333333333vw;
    font-size: 2.9333333333vw;
  }
}
.page_philosophy .box_ttl .box_ttlJa {
  margin-bottom: 44px;
  font-size: 3.5rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .page_philosophy .box_ttl .box_ttlJa {
    margin-bottom: 5.3333333333vw;
    font-size: 4.6666666667vw;
  }
}
.page_philosophy .cont_mission {
  padding-top: 150px;
  padding-bottom: 250px;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_mission {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.page_philosophy .cont_mission .conts_wrap .conts_img {
  margin-top: -150px;
  margin-left: -150px;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_mission .conts_wrap .conts_img {
    margin: 0 auto;
  }
}
.page_philosophy .cont_mission .conts_wrap .conts_box {
  margin-top: -70px;
  margin-left: -80px;
  padding: 56px 40px 63px 50px;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_mission .conts_wrap .conts_box {
    margin: -10.6666666667vw auto 0;
    padding: 7.4666666667vw 5.3333333333vw 6.6666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1290px) {
  .page_philosophy .cont_mission .conts_wrap .conts_box {
    margin-left: -140px;
  }
}
.page_philosophy .cont_vision {
  padding-bottom: 76px;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_vision {
    padding-bottom: 12.8vw;
  }
}
.page_philosophy .cont_vision .conts_wrap {
  flex-direction: row-reverse;
}
.page_philosophy .cont_vision .conts_wrap .conts_img {
  margin-top: -150px;
  margin-right: -150px;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_vision .conts_wrap .conts_img {
    margin: 0 auto;
  }
}
.page_philosophy .cont_vision .conts_wrap .conts_box {
  margin-top: -70px;
  margin-right: -80px;
  padding: 56px 30px 64px 46px;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_vision .conts_wrap .conts_box {
    margin: -10.6666666667vw auto 0;
    padding: 7.2vw 5.3333333333vw 6.6666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1290px) {
  .page_philosophy .cont_vision .conts_wrap .conts_box {
    margin-right: -140px;
  }
}
.page_philosophy .cont_value {
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_value {
    padding-bottom: 26.6666666667vw;
  }
}
.page_philosophy .cont_value .box_ttl {
  text-align: center;
}
.page_philosophy .cont_value .box_ttl .box_ttlJa {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_value .box_ttl .box_ttlJa {
    margin-bottom: 10.6666666667vw;
  }
}
.page_philosophy .cont_value .value_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_value .value_list {
    display: block;
  }
}
.page_philosophy .cont_value .value_list li {
  max-width: 470px;
  width: 31.4%;
  padding: 50px 12px;
  border: 1px solid #9c9356;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_value .value_list li {
    max-width: 81.3333333333vw;
    width: 81.3333333333vw;
    margin: 0 auto 2.6666666667vw;
    padding: 6.6666666667vw 1.3333333333vw 4.8vw;
  }
  .page_philosophy .cont_value .value_list li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .page_philosophy .cont_value .value_list li:nth-child(-n+2) {
    margin: 0 1.467%;
  }
  .page_philosophy .cont_value .value_list li:nth-child(n+3) {
    margin-top: 40px;
    margin-right: 2.8%;
  }
  .page_philosophy .cont_value .value_list li:last-child {
    margin-right: 0;
  }
}
.page_philosophy .cont_value .value_list dt {
  margin-bottom: 22px;
  color: #9c9356;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_value .value_list dt {
    margin-bottom: 2vw;
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1290px) {
  .page_philosophy .cont_value .value_list dt {
    font-size: 2.4rem;
  }
}
.page_philosophy .cont_value .value_list dd {
  line-height: 1.778;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_value .value_list dd {
    line-height: 1.69;
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 375px) {
  .page_philosophy .cont_value .value_list dd {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1290px) {
  .page_philosophy .cont_value .value_list dd {
    font-size: 1.6rem;
  }
}
.page_philosophy .cont_value .value_list dd .adjust {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1290px) {
  .page_philosophy .cont_value .value_list dd .adjust {
    display: block;
  }
}
.page_philosophy .cont_quality {
  padding: 80px 0;
  background-image: url(/apt/assets/images/philosophy/bg_quality_pc.jpg);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_quality {
    padding: 12.8vw 0 13.3333333333vw;
    background-color: #f6f4e9;
    background-image: url(/apt/assets/images/philosophy/bg_quality_sp.jpg);
    background-position: top;
    background-size: 100%;
  }
}
.page_philosophy .cont_quality .box_ttl {
  text-align: center;
}
.page_philosophy .cont_quality .box_ttl .box_ttlJa {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_quality .box_ttl .box_ttlJa {
    margin-bottom: 10.6666666667vw;
  }
}
.page_philosophy .cont_quality .quality_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_quality .quality_list {
    display: block;
  }
}
.page_philosophy .cont_quality .quality_list li {
  display: flex;
  max-width: 470px;
  width: 100%;
  min-height: 224px;
  margin-right: 3.037%;
  padding: 10px;
  border: 1px solid #b70615;
  text-align: center;
  background-color: #fff;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_quality .quality_list li {
    max-width: 81.3333333333vw;
    min-height: auto;
    margin: 0 auto 2.6666666667vw;
    padding: 5.3333333333vw 2.6666666667vw;
  }
}
.page_philosophy .cont_quality .quality_list li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_quality .quality_list li:last-child {
    margin-right: auto;
    margin-bottom: 0;
  }
}
.page_philosophy .cont_quality .quality_list .quality_txt {
  line-height: 1.778;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .page_philosophy .cont_quality .quality_list .quality_txt {
    line-height: 1.69;
    font-size: 3.4666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1180px) {
  .page_philosophy .cont_quality .quality_list .quality_txt {
    font-size: 1.5rem;
  }
}

/*---------------------------------------
  history
/*---------------------------------------*/
.page_history {
  /* 画像位置調整 */
}
.page_history .aboutBtn_area {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .page_history .aboutBtn_area {
    padding-top: 13.3333333333vw;
  }
}
.page_history .sec_history {
  padding-top: 76px;
}
@media screen and (max-width: 768px) {
  .page_history .sec_history {
    padding-top: 11.4666666667vw;
  }
}
.page_history .intro_wrap {
  background-color: #ede8c4;
}
.page_history .intro_wrap .inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page_history .intro_wrap .inner {
    display: block;
    max-width: 100%;
  }
}
.page_history .intro_wrap .inner > div {
  padding-top: 66px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .page_history .intro_wrap .inner > div {
    padding: 6.1333333333vw 0 9.0666666667vw;
  }
}
.page_history .intro_img {
  max-width: 840px;
  width: 100%;
  margin-right: 5%;
  margin-left: -220px;
}
@media screen and (max-width: 768px) {
  .page_history .intro_img {
    max-width: 100%;
    margin: 0;
  }
}
.page_history .intro_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% center;
     object-position: 80% center;
}
@media screen and (max-width: 768px) {
  .page_history .intro_img img {
    height: 73.3333333333vw;
    -o-object-position: 80% center;
       object-position: 80% center;
  }
}
.page_history .intro_ttl {
  margin-bottom: 20px;
  color: #8a8039;
  line-height: 1.458;
  font-size: 4.8rem;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 768px) {
  .page_history .intro_ttl {
    margin-bottom: 4vw;
    line-height: 1.53;
    font-size: 6.9333333333vw;
    text-align: center;
  }
}
.page_history rt {
  position: relative;
  top: -0.5em;
  transform: translateY(-0.5em);
}
.page_history .intro_txt {
  line-height: 2.11;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .page_history .intro_txt {
    line-height: 1.92;
    font-size: 3.4666666667vw;
    text-align: center;
  }
}
.page_history .history_wrap {
  padding: 155px 0 65px;
  background-color: #f6f4e9;
}
@media screen and (max-width: 768px) {
  .page_history .history_wrap {
    padding: 8vw 0 14.6666666667vw;
  }
}
.page_history .history_list {
  max-width: 1300px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .page_history .history_list {
    margin-right: auto;
  }
}
.page_history .history_list li {
  display: flex;
  position: relative;
  padding-bottom: 100px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page_history .history_list li {
    padding-bottom: 9.3333333333vw;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .page_history .history_list li.fx_start-pc {
    align-items: flex-start;
  }
  .page_history .history_list li.fx_start-pc .history_item {
    padding-top: 8px;
  }
  .page_history .history_list li.fx_start-pc .history_item::before {
    top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .page_history .history_list li.fx_center-sp {
    align-items: center;
  }
}
.page_history .history_list li:last-child {
  padding-bottom: 0;
}
.page_history .history_list li .year {
  display: inline-block;
  margin-left: 280px;
  padding: 3px 24px 7px;
  color: #b70615;
  line-height: 1;
  font-size: 4rem;
  font-weight: 500;
  background-color: #f6f4e9;
}
@media screen and (max-width: 768px) {
  .page_history .history_list li .year {
    margin-left: 0;
    padding: 0 1.8666666667vw 1.0666666667vw 0;
    font-size: 6.1333333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .page_history .history_list li .year {
    margin-left: 250px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .page_history .history_list li .year {
    margin-left: 225px;
  }
}
@media screen and (max-width: 768px) {
  .page_history .history_list .flex_wrap {
    width: 74.1333333333vw;
    position: relative;
    padding-left: 12vw;
  }
  .page_history .history_list .flex_wrap::before {
    display: block;
    width: 11.7333333333vw;
    height: 0.2666666667vw;
    position: absolute;
    top: 3.7333333333vw;
    left: -0.5333333333vw;
    background-image: url(/apt/assets/images/history/bg_line.png);
    background-repeat: no-repeat;
    content: "";
  }
}
.page_history .history_list .history_item {
  display: flex;
  position: relative;
  padding-left: 90px;
}
@media screen and (max-width: 768px) {
  .page_history .history_list .history_item {
    display: block;
    width: 100%;
    padding-left: 0;
  }
  .page_history .history_list .history_item.sp_paddingT {
    padding-top: 8vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1190px) {
  .page_history .history_list .history_item {
    padding-left: 100px;
  }
}
.page_history .history_list .history_item::before {
  display: block;
  width: 90px;
  height: 2px;
  position: absolute;
  top: 15px;
  left: 0;
  background-image: url(/apt/assets/images/history/bg_line.png);
  background-size: 100%;
  content: "";
}
@media screen and (max-width: 768px) {
  .page_history .history_list .history_item::before {
    content: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1190px) {
  .page_history .history_list .history_item::before {
    width: 100px;
  }
}
.page_history .history_list .item_txt {
  margin-right: 24px;
  margin-left: 20px;
  line-height: 1.778;
  font-size: 1.8rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .page_history .history_list .item_txt {
    margin: 0;
    line-height: 1.538;
    font-size: 3.4666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .page_history .history_list .item_txt {
    font-size: 1.6rem;
  }
}
.page_history .history_list .item_img img {
  display: inline-block;
  width: auto;
}
@media screen and (max-width: 768px) {
  .page_history .history_list .item_img img {
    width: 100%;
  }
}
.page_history .history_list .item_img img.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .page_history .history_list .item_img img.sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .page_history .history_list .item_img img.pc {
    display: none;
  }
}
.page_history .history_list .history_plant {
  max-width: 280px;
  width: 22%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 9px 0 12px;
  line-height: 1.78;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .page_history .history_list .history_plant {
    max-width: 100%;
    width: 100%;
    position: static;
    padding: 1.0666666667vw 0 1.3333333333vw;
    line-height: 1.42;
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1180px) {
  .page_history .history_list .history_plant {
    font-size: 1.6rem;
  }
}
.page_history .history_list .history_plant span {
  display: inline-block;
  padding: 0 13px;
  background-color: #f6f4e9;
}
@media screen and (max-width: 768px) {
  .page_history .history_list .history_plant span {
    padding: 0;
  }
}
.page_history .history_list .history_plant::before {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 24px;
  left: 0;
  background-image: url(/apt/assets/images/history/bg_line.png);
  background-position: right center;
  background-size: 50%;
  z-index: -1;
  content: "";
}
@media screen and (max-width: 768px) {
  .page_history .history_list .history_plant::before {
    content: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1180px) {
  .page_history .history_list .history_plant::before {
    left: 30px;
  }
}
.page_history .history_list .border_line {
  width: 6px;
  height: 0;
  position: absolute;
  top: 0;
  left: 347px;
  background-color: rgba(156, 147, 86, 0.3);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .page_history .history_list .border_line {
    width: 0.8vw;
    left: 6.6666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .page_history .history_list .border_line {
    left: 313px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .page_history .history_list .border_line {
    left: 288px;
  }
}
.page_history .history_list li.year_1980 .item_img {
  margin-top: -92px;
}
@media screen and (max-width: 768px) {
  .page_history .history_list li.year_1980 .item_img {
    width: 9.0666666667vw;
    margin-top: 2.6666666667vw;
  }
}
.page_history .history_list li.year_1989 .item_img {
  margin-top: -84px;
}
@media screen and (max-width: 768px) {
  .page_history .history_list li.year_1989 .item_img {
    width: 23.2vw;
    margin-top: 1.0666666667vw;
  }
}
.page_history .history_list li.year_2004 .item_img {
  min-width: 250px;
  width: 44.722%;
  margin-top: -6.63%;
}
@media screen and (max-width: 768px) {
  .page_history .history_list li.year_2004 .item_img {
    min-width: 49.4666666667vw;
    width: 49.4666666667vw;
    margin-top: 2.1333333333vw;
  }
}
.page_history .history_list li.year_2004 .item_img img {
  width: 100%;
}
.page_history .history_list li.year_2005 .item_img {
  margin-top: -56px;
}
@media screen and (max-width: 768px) {
  .page_history .history_list li.year_2005 .item_img {
    width: 21.0666666667vw;
    margin-top: 1.7333333333vw;
  }
}
.page_history .history_list li.year_2012 {
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .page_history .history_list li.year_2012 {
    padding-bottom: 9.3333333333vw;
  }
}
.page_history .history_list li.year_2012 .item_img {
  margin-top: -98px;
}
@media screen and (max-width: 768px) {
  .page_history .history_list li.year_2012 .item_img {
    width: 8.9333333333vw;
    margin-top: 2vw;
  }
}
.page_history .history_list li.year_2016 .item_img {
  margin-top: -104px;
}
@media screen and (max-width: 768px) {
  .page_history .history_list li.year_2016 .item_img {
    width: 10.6666666667vw;
    margin-top: 2.2666666667vw;
  }
}
.page_history .history_list li.year_2020 .item_img {
  min-width: 250px;
  margin-top: -6%;
}
@media screen and (max-width: 768px) {
  .page_history .history_list li.year_2020 .item_img {
    min-width: 52.2666666667vw;
    width: 52.2666666667vw;
    margin-top: 2vw;
    margin-bottom: 0;
  }
}
.page_history .history_list li.year_2020 .item_img img {
  width: 100%;
}
@media screen and (max-width: 1250px) {
  .page_history .history_list li.year_2020 .item_txt .sp {
    display: block;
  }
}
.page_history .history_list li.year_2022 .item_img {
  margin-top: -46px;
}
@media screen and (max-width: 768px) {
  .page_history .history_list li.year_2022 .item_img {
    width: 36vw;
    margin-top: 4.2666666667vw;
  }
}
.page_history .history_list li.year_2023 {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .page_history .history_list li.year_2023 {
    padding-bottom: 11.0666666667vw;
  }
}
.page_history .history_list li.year_2023 .item_img {
  margin-top: -46px;
}
@media screen and (max-width: 768px) {
  .page_history .history_list li.year_2023 .item_img {
    width: 31.4666666667vw;
    margin-top: 3.2vw;
  }
}
.page_history .history_list li.year_2024 .item_img {
  margin-top: -72px;
}
@media screen and (max-width: 768px) {
  .page_history .history_list li.year_2024 .item_img {
    width: 31.7333333333vw;
    margin-top: 4.2666666667vw;
  }
}

/*---------------------------------------
  page_voice
/*---------------------------------------*/
.page_voice .sec_voice {
  padding: 78px 0 200px;
}
@media screen and (max-width: 768px) {
  .page_voice .sec_voice {
    padding: 11.2vw 0 13.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .page_voice .voice_memberNavWrap li a:hover .voice_memberNavListImg img {
    transform: scale(1.2);
  }
}
.page_voice .voice_memberNavWrap li a .voice_memberNavListImg {
  overflow: hidden;
}
.page_voice .voice_memberNavWrap li a .voice_memberNavListImg img {
  transition: all 0.6s;
}
.page_voice .voice_memberListWrap li[id^=anchor] {
  margin-top: -60px;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_memberListWrap li[id^=anchor] {
    margin-top: -9.3333333333vw;
    padding-top: 9.3333333333vw;
  }
}
.page_voice .voice_memberWrap {
  margin-bottom: 150px;
  padding: 100px 0;
  background-color: #f6f4e9;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_memberWrap {
    margin: 0 -5.3333333333vw 16.8vw;
    padding: 13.3333333333vw 0;
  }
}
.page_voice .voice_memberWrap .voice_memberWrapTtl {
  margin-bottom: 70px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_memberWrap .voice_memberWrapTtl {
    margin-bottom: 9.3333333333vw;
  }
}
.page_voice .voice_memberWrap .voice_memberWrapTtl .voice_memberWrapTtlEn {
  display: block;
  margin-bottom: 10px;
  color: #b70615;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_memberWrap .voice_memberWrapTtl .voice_memberWrapTtlEn {
    font-size: 2.9333333333vw;
  }
}
.page_voice .voice_memberWrap .voice_memberWrapTtl .voice_memberWrapTtlJa {
  display: block;
  font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_memberWrap .voice_memberWrapTtl .voice_memberWrapTtlJa {
    font-size: 4.6666666667vw;
  }
}
.page_voice .voice_memberNavWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_memberNavWrap {
    display: block;
  }
}
.page_voice .voice_memberNavWrap .voice_memberNavList {
  max-width: 470px;
  width: 33%;
}
@media screen and (min-width: 768px) {
  .page_voice .voice_memberNavWrap .voice_memberNavList:nth-child(odd) {
    margin-right: 4.412%;
  }
  .page_voice .voice_memberNavWrap .voice_memberNavList:nth-child(n+3) {
    margin-top: 40px;
  }
  .page_voice .voice_memberNavWrap .voice_memberNavList:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .page_voice .voice_memberNavWrap .voice_memberNavList {
    max-width: 89.3333333333vw;
    width: 89.3333333333vw;
    margin: 0 auto 5.3333333333vw;
  }
  .page_voice .voice_memberNavWrap .voice_memberNavList:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1430px) {
  .page_voice .voice_memberNavWrap .voice_memberNavList {
    width: 44%;
  }
}
.page_voice .voice_memberNavWrap .voice_memberNavList .voice_memberNavListCont {
  padding: 40px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_memberNavWrap .voice_memberNavList .voice_memberNavListCont {
    padding: 6vw 5.3333333333vw 6.6666666667vw;
  }
}
.page_voice .voice_memberNavWrap .voice_memberNavList .voice_memberNavListCont .voice_memberNavListTtl {
  margin-bottom: 10px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_memberNavWrap .voice_memberNavList .voice_memberNavListCont .voice_memberNavListTtl {
    margin-bottom: 1.7333333333vw;
    font-size: 3.7333333333vw;
  }
}
.page_voice .voice_memberNavWrap .voice_memberNavList .voice_memberNavListCont .voice_memberNavListTxt {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_memberNavWrap .voice_memberNavList .voice_memberNavListCont .voice_memberNavListTxt {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member {
    width: 100vw;
    margin-left: -5.3333333333vw;
  }
}
.page_voice .voice_member .wide_inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .wide_inner {
    max-width: 100vw;
  }
}
.page_voice .voice_member .voice_memberList {
  margin-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberList {
    margin-bottom: 16.8vw;
  }
}
.page_voice .voice_member .voice_memberList:last-child {
  margin-bottom: 0;
}
.page_voice .voice_member .voice_memberListTop {
  display: flex;
  height: 440px;
  padding-top: 60px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberListTop {
    width: 100vw;
    height: auto;
    padding-top: 5.3333333333vw;
  }
}
.page_voice .voice_member .voice_memberListTop .voice_memberListTopInner {
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberListTop .voice_memberListTopInner {
    width: 89.3333333333vw;
    margin: 0 auto;
  }
}
.page_voice .voice_member .voice_memberListTop .voice_memberListTopTtl {
  margin-bottom: 60px;
  padding-top: 40px;
  color: #fff;
  font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberListTop .voice_memberListTopTtl {
    margin-bottom: 6.6666666667vw;
    padding-top: 4vw;
    font-size: 5.0666666667vw;
  }
}
.page_voice .voice_member .voice_memberListTop .voice_memberListTopTtlTxt {
  margin-top: -37px;
  margin-bottom: 66px;
  color: #fff;
  line-height: 2;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberListTop .voice_memberListTopTtlTxt {
    margin-top: -4.5333333333vw;
    margin-bottom: 6.4vw;
    line-height: 1.6;
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 495px) {
  .page_voice .voice_member .voice_memberListTop .voice_memberListTopTtlTxt {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberListTop .voice_memberListTopTtlTxt .adjust {
    display: none;
  }
}
@media (min-width: 1368px) {
  .page_voice .voice_member .voice_memberListTop .voice_memberListTopTtlTxt .adjust {
    display: none;
  }
}
.page_voice .voice_member .voice_memberListTop .voice_memberListTopTxt {
  color: #fff;
  line-height: 1.875;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberListTop .voice_memberListTopTxt {
    line-height: 1.5;
    font-size: 3.4666666667vw;
  }
}
.page_voice .voice_member .voice_memberListTop .voice_memberListTopTxt .voice_memberListTopTxtPotision {
  font-weight: bold;
}
.page_voice .voice_member .voice_memberListTopBg {
  width: 100%;
  width: 87vw;
  height: 100%;
  position: absolute;
  top: 60px;
  right: 0;
  background-image: url(/apt/assets/images/voice/bg_memberList_pc.jpg);
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberListTopBg {
    width: 100vw !important;
    top: 8vw;
    background-image: url(/apt/assets/images/voice/bg_memberList_sp.jpg);
    background-size: cover;
  }
}
.page_voice .voice_member .voice_memberListImg {
  min-width: 520px;
  width: 52vw;
  position: absolute;
  top: 0px;
  left: 650px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberListImg {
    min-width: auto;
    width: 95.0666666667vw;
    position: relative;
    right: 0;
    left: auto;
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .page_voice .voice_member .voice_memberListImg {
    left: 48%;
  }
}
.page_voice .voice_member .voice_memberListImg img {
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberListImg img {
    height: auto;
  }
}
.page_voice .voice_member .voice_memberListMiddle {
  display: flex;
  margin-top: 160px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberListMiddle {
    display: block;
    width: 89.3333333333vw;
    margin-top: 18.6666666667vw;
    margin-right: auto;
    margin-left: auto;
  }
}
.page_voice .voice_member .voice_memberListMiddle .voice_memberListInterviewWrap {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberListMiddle .voice_memberListInterviewWrap {
    width: 100%;
  }
}
.page_voice .voice_member .voice_memberListMiddle .voice_memberListInterviewImg {
  max-width: 540px;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberListMiddle .voice_memberListInterviewImg {
    max-width: 100%;
    width: 100%;
  }
}
.page_voice .voice_member .voice_memberListMiddle .voice_memberListInterview {
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberListMiddle .voice_memberListInterview {
    margin-bottom: 8vw;
  }
}
.page_voice .voice_member .voice_memberListMiddle .voice_memberListInterviewTtl {
  margin-bottom: 15px;
  color: #b70615;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberListMiddle .voice_memberListInterviewTtl {
    margin-bottom: 2vw;
    font-size: 4vw;
  }
}
.page_voice .voice_member .voice_memberListMiddle .voice_memberListInterviewTtl::before {
  display: inline-block;
  width: 30px;
  height: 2px;
  margin-right: 8px;
  margin-bottom: 3px;
  vertical-align: middle;
  background-color: #b70615;
  content: "";
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberListMiddle .voice_memberListInterviewTtl::before {
    width: 4vw;
    height: 2px;
    margin-right: 1.0666666667vw;
  }
}
.page_voice .voice_member .voice_memberListMiddle .voice_memberListInterviewTxt {
  line-height: 1.875;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberListMiddle .voice_memberListInterviewTxt {
    line-height: 1.69;
    font-size: 3.4666666667vw;
  }
}
.page_voice .voice_member .voice_memberMylife {
  position: relative;
  margin-top: 20px;
  padding: 60px;
  background-color: #f6f4e9;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberMylife {
    width: 89.3333333333vw;
    margin: 9.3333333333vw auto 0;
    padding: 5.3333333333vw;
    padding-top: 2.6666666667vw;
    padding-bottom: 2.6666666667vw;
  }
}
.page_voice .voice_member .voice_memberMylife .voice_memberMylifeTtl {
  position: absolute;
  top: 0;
  left: 50%;
  color: #9c9356;
  font-size: 35px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberMylife .voice_memberMylifeTtl {
    font-size: 5.0666666667vw;
  }
}
.page_voice .voice_member .voice_memberMylife .voice_memberMylifeBoxWrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberMylife .voice_memberMylifeBoxWrap {
    display: block;
  }
}
.page_voice .voice_member .voice_memberMylife .voice_memberMylifeBox {
  width: 50%;
  padding: 0 15px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberMylife .voice_memberMylifeBox {
    width: 100%;
    padding: 5.3333333333vw 0vw;
  }
}
.page_voice .voice_member .voice_memberMylife .voice_memberMylifeBox:first-child {
  border-right: 1px solid #9c9356;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberMylife .voice_memberMylifeBox:first-child {
    border-right: none;
    border-bottom: 1px solid #9c9356;
  }
}
.page_voice .voice_member .voice_memberMylife .voice_memberMylifeBox .voice_memberMylifeBoxTtl {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberMylife .voice_memberMylifeBox .voice_memberMylifeBoxTtl {
    margin-bottom: 2.6666666667vw;
    font-size: 4vw;
  }
}
.page_voice .voice_member .voice_memberMylife .voice_memberMylifeBox .voice_memberMylifeBoxTxt {
  line-height: 1.875;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .voice_memberMylife .voice_memberMylifeBox .voice_memberMylifeBoxTxt {
    font-size: 3.4666666667vw;
  }
}
.page_voice .voice_member .list01 .voice_memberListImg img {
  -o-object-position: 87%;
     object-position: 87%;
}
.page_voice .voice_member .list02 .voice_memberListImg img,
.page_voice .voice_member .list04 .voice_memberListImg img {
  -o-object-position: 87%;
     object-position: 87%;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .page_voice .voice_member .list02 .voice_memberListImg img,
  .page_voice .voice_member .list04 .voice_memberListImg img {
    -o-object-position: 87%;
       object-position: 87%;
  }
}
@media screen and (min-width: 768px) {
  .page_voice .voice_member .list02 .voice_memberListImg,
  .page_voice .voice_member .list04 .voice_memberListImg {
    right: 650px;
    left: auto;
  }
}
@media screen and (max-width: 768px) {
  .page_voice .voice_member .list02 .voice_memberListImg,
  .page_voice .voice_member .list04 .voice_memberListImg {
    margin-right: auto;
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .page_voice .voice_member .list02 .voice_memberListImg,
  .page_voice .voice_member .list04 .voice_memberListImg {
    right: 51%;
  }
}
.page_voice .voice_member .list02 .voice_memberListTopBg,
.page_voice .voice_member .list04 .voice_memberListTopBg {
  right: auto;
  left: 0;
}
.page_voice .voice_member .list02 .voice_memberListTop,
.page_voice .voice_member .list04 .voice_memberListTop {
  margin-right: 0;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .page_voice .voice_member .list02 .voice_memberListTop .wide_inner,
  .page_voice .voice_member .list04 .voice_memberListTop .wide_inner {
    padding-left: 59%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .page_voice .voice_member .list02 .voice_memberListTop .wide_inner,
  .page_voice .voice_member .list04 .voice_memberListTop .wide_inner {
    padding-left: 51%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .page_voice .voice_member .list02 .voice_memberListImg img {
    -o-object-position: 40%;
       object-position: 40%;
  }
}
@media screen and (max-width: 1410px) {
  .page_voice .voice_member .list02 .voice_memberMylifeBoxTxt .sp {
    display: block;
  }
}

/*---------------------------------------
  page_benefits
/*---------------------------------------*/
.page_benefits .sec_benefits {
  padding-top: 75px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .page_benefits .sec_benefits {
    padding-top: 11.3333333333vw;
    padding-bottom: 18.2666666667vw;
  }
}
.page_benefits .container1_box1 {
  font-weight: bold;
  text-align: center;
}
.page_benefits .container1_box1 h2 {
  margin-bottom: 17px;
  font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
  .page_benefits .container1_box1 h2 {
    margin-bottom: 3.3333333333vw;
    font-size: 4.6666666667vw;
  }
}
.page_benefits .container1_box1 p {
  line-height: 1;
  font-size: 1.8rem;
  padding-top: 19px;
}
@media screen and (max-width: 768px) {
  .page_benefits .container1_box1 p {
    line-height: 1.69;
    font-size: 3.4666666667vw;
    padding-top: 0;
  }
}
.page_benefits .bg {
  padding: 80px 0 80px;
  background-color: #f6f4e9;
}
@media screen and (max-width: 768px) {
  .page_benefits .bg {
    padding: 12vw 0 13.3333333333vw;
  }
}
.page_benefits .container1_box2 {
  display: flex;
  margin-top: 33px;
  margin-bottom: 45px;
  text-align: center;
  gap: 16.91176471%;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page_benefits .container1_box2 {
    flex-direction: column;
    margin-top: initial;
    align-items: center;
    margin-bottom: 2.6666666667vw;
  }
}
@media (max-width: 1400px) {
  .page_benefits .container1_box2 {
    gap: 3.35294118%;
  }
}
@media (max-width: 1030px) {
  .page_benefits .container1_box2 {
    gap: 2.3%;
  }
}
.page_benefits .box2_l_img {
  flex: 1;
  max-width: 270px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page_benefits .box2_l_img {
    max-width: 40.5333333333vw;
    font-size: 3.4666666667vw;
    margin-bottom: 11.0666666667vw;
  }
}
.page_benefits .box2_r_img {
  max-width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page_benefits .box2_r_img {
    max-width: 60vw;
  }
}
.page_benefits .box2_l_ttl {
  margin-bottom: 36px;
  font-size: 3.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page_benefits .box2_l_ttl {
    margin-bottom: 4vw;
    font-size: 4.6666666667vw;
  }
}
.page_benefits .box2_l_txt {
  margin: -1.91176471% auto 5.73529412%;
  line-height: 2.22222222;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page_benefits .box2_l_txt {
    line-height: 1.69230769;
    font-size: 3.4666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.page_benefits .box2_l_txt .emphasis {
  color: #b70615;
  font-size: 2.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .page_benefits .box2_l_txt .emphasis {
    font-size: 4vw;
  }
}
.page_benefits .box2_l > div {
  display: flex;
  gap: 10px;
}
.page_benefits .box2_l,
.page_benefits .box2_r {
  max-width: 680px;
}
@media screen and (max-width: 768px) {
  .page_benefits .box2_l,
  .page_benefits .box2_r {
    max-width: 100%;
  }
}
.page_benefits .container1_bg {
  padding: 110px 0 0;
}
@media screen and (max-width: 768px) {
  .page_benefits .container1_bg {
    padding: 11.4666666667vw 0 0;
  }
}
.page_benefits h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #b70615;
  text-align: center;
  margin-top: 72px;
}
@media screen and (max-width: 768px) {
  .page_benefits h3 {
    font-size: 3.7333333333vw;
    margin-top: 8.2666666667vw;
  }
}
.page_benefits .container2_box {
  display: grid;
  margin-top: 12px;
  grid-template-columns: 49.26470588% 49.26470588%;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .page_benefits .container2_box {
    margin: 3.0666666667vw auto 0;
    grid-template-columns: 100%;
    gap: 2.6666666667vw;
  }
}
.page_benefits .container2_box._end {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .page_benefits .container2_box._end {
    margin-bottom: 13.3333333333vw;
  }
}
.page_benefits .system .container1_box1 {
  margin-top: 42px;
  margin-bottom: 41px;
}
@media screen and (max-width: 768px) {
  .page_benefits .system .container1_box1 {
    margin-top: 0;
    margin-bottom: 3.3333333333vw;
  }
}
.page_benefits .system ul {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page_benefits .system ul {
    max-width: 89.3333333333vw;
  }
}
.page_benefits .system ul dl {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  line-height: 1.46666667;
  max-height: 77px;
}
@media screen and (max-width: 768px) {
  .page_benefits .system ul dl {
    font-size: 3.4666666667vw;
    line-height: 1.53846154;
    max-height: 34.6666666667vw;
  }
}
.page_benefits .system ul dl:nth-child(odd) {
  background-color: #fff;
}
.page_benefits .system ul dl dt {
  width: 24.5%;
  font-weight: 700;
  padding: 34px 0 34px 22px;
}
@media screen and (max-width: 768px) {
  .page_benefits .system ul dl dt {
    width: 28vw;
    padding-left: 2.6666666667vw;
  }
}
.page_benefits .system ul dl dd {
  padding-left: 16px;
}
@media screen and (max-width: 768px) {
  .page_benefits .system ul dl dd {
    width: 61.3333333333vw;
    padding: 2.6666666667vw 4vw 2.6666666667vw 0;
  }
}
.page_benefits .system ul dl .events {
  display: flex;
}

.breadScrap {
  border-bottom: 1px solid #e8e8e8;
}
.breadScrap .breadScrap_list li {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .breadScrap .breadScrap_list li {
    font-size: 2.2666666667vw;
  }
}

/*---------------------------------------
  page_business
/*---------------------------------------*/
.page_business .sec_business {
  padding: 76px 0 70px;
}
@media screen and (max-width: 768px) {
  .page_business .sec_business {
    padding: 11.4666666667vw 0 8vw;
  }
}
.page_business .lowerLayer_ttl {
  margin-bottom: 85px;
}
@media screen and (max-width: 768px) {
  .page_business .lowerLayer_ttl {
    margin-bottom: 11.7333333333vw;
  }
}
.page_business .intro_txt {
  margin-bottom: 88px;
  line-height: 2.223;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page_business .intro_txt {
    margin-bottom: 3.3333333333vw;
    line-height: 1.69;
    font-size: 3.4666666667vw;
  }
}
.page_business .product_list {
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page_business .product_list {
    max-width: 100%;
    flex-wrap: wrap;
  }
  .page_business .product_list li:nth-child(1) {
    width: 33.3333333333vw;
    order: 1;
  }
  .page_business .product_list li:nth-child(2) {
    width: 44.6666666667vw;
    order: 3;
  }
  .page_business .product_list li:nth-child(3) {
    width: 44.6666666667vw;
    order: 4;
  }
  .page_business .product_list li:nth-child(4) {
    width: 56vw;
    order: 2;
  }
}
.page_business .note_txt {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-top: -10px;
  font-size: 1.6rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .page_business .note_txt {
    max-width: 100%;
    margin-top: -1.3333333333vw;
    font-size: 2.4vw;
  }
}

/*---------------------------------------
  page_process
/*---------------------------------------*/
.page_process .sec_process {
  padding: 76px 0 90px;
}
@media screen and (max-width: 768px) {
  .page_process .sec_process {
    padding: 11.4666666667vw 0 9.3333333333vw;
  }
}
.page_process .intro_wrap {
  margin-bottom: 88px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page_process .intro_wrap {
    margin-bottom: 12vw;
    text-align: left;
  }
}
.page_process .intro_wrap .intro_ttl {
  margin-bottom: 30px;
  line-height: 1.14;
  font-size: 3.5em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page_process .intro_wrap .intro_ttl {
    margin-bottom: 4vw;
    font-size: 4.6666666667vw;
  }
}
.page_process .intro_wrap .intro_txt {
  line-height: 2.22;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .page_process .intro_wrap .intro_txt {
    line-height: 1.69;
    font-size: 3.4666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .page_process .intro_wrap .intro_txt {
    font-size: 1.6rem;
  }
}
.page_process .list_ttl {
  margin-bottom: 50px;
  color: #b70615;
  line-height: 1;
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .page_process .list_ttl {
    margin-bottom: 9.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
.page_process .list_ttl.arrival_ttl {
  position: relative;
  margin: 0 9.559%;
  margin-bottom: 60px;
  padding: 30px 0;
  background-color: #f7f4e9;
}
@media screen and (max-width: 768px) {
  .page_process .list_ttl.arrival_ttl {
    margin: 0 0 8vw;
    padding: 3.2vw 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  .page_process .list_ttl.arrival_ttl {
    margin: 0 0 60px;
  }
}
.page_process .list_ttl.arrival_ttl::before {
  display: block;
  width: 175px;
  height: 33px;
  position: absolute;
  bottom: -27px;
  left: 50%;
  border-width: 33px 87.5px 0 87.5px;
  border-style: solid;
  border-color: #f7f4e9 transparent transparent transparent;
  transform: translateX(-50%);
  content: "";
}
@media screen and (max-width: 768px) {
  .page_process .list_ttl.arrival_ttl::before {
    width: 21.8666666667vw;
    height: 5.3333333333vw;
    bottom: -4.2666666667vw;
    border-width: 5.3333333333vw 10.9333333333vw 0 10.9333333333vw;
  }
}
.page_process .process_list {
  padding: 0 9.559%;
}
@media screen and (max-width: 768px) {
  .page_process .process_list {
    padding: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  .page_process .process_list {
    padding: 0;
  }
}
.page_process .process_list li {
  display: flex;
  position: relative;
  padding: 60px 40px;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .page_process .process_list li {
    display: block;
    padding: 10.6666666667vw 5.3333333333vw 9.6vw;
  }
}
.page_process .process_list li::before {
  display: block;
  width: 175px;
  height: 33px;
  position: absolute;
  top: -6px;
  left: 50%;
  margin-left: 8px;
  border-width: 33px 87.5px 0 87.5px;
  border-style: solid;
  transform: translateX(-50%);
  content: "";
}
@media screen and (max-width: 768px) {
  .page_process .process_list li::before {
    width: 21.8666666667vw;
    height: 5.3333333333vw;
    top: -0.9333333333vw;
    margin-left: 0;
    border-width: 5.3333333333vw 10.9333333333vw 0 10.9333333333vw;
  }
}
.page_process .process_list li:first-child::before {
  content: none;
}
.page_process .process_list li:nth-child(odd) {
  background-color: #f7f4e9;
}
.page_process .process_list li:nth-child(odd)::before {
  border-color: #fff transparent transparent transparent;
}
.page_process .process_list li:nth-child(odd) .list_head dl {
  background-color: #fff;
}
.page_process .process_list li:nth-child(even) {
  background-color: #fff;
}
.page_process .process_list li:nth-child(even)::before {
  border-color: #f7f4e9 transparent transparent transparent;
}
.page_process .process_list li:nth-child(even) .list_head dl {
  background-color: #f7f4e9;
}
.page_process .process_list li .list_head {
  max-width: 520px;
  width: 50.99%;
  margin-right: 5.883%;
}
@media screen and (max-width: 768px) {
  .page_process .process_list li .list_head {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-bottom: 5.0666666667vw;
  }
}
.page_process .process_list li .list_head dl {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page_process .process_list li .list_head dl {
    display: flex;
    align-items: center;
  }
}
.page_process .process_list li .list_head dt {
  max-width: 220px;
  width: 100%;
  color: #d6010e;
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .page_process .process_list li .list_head dt {
    max-width: 32vw;
    font-size: 4.2666666667vw;
    letter-spacing: 0.2em;
  }
}
.page_process .process_list li .list_head dt .icon {
  display: block;
  margin: 14px auto 0;
}
@media screen and (max-width: 768px) {
  .page_process .process_list li .list_head dt .icon {
    margin-top: 1.4666666667vw;
  }
}
.page_process .process_list li .list_head dd {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page_process .process_list li .list_head dd {
    max-width: 46.6666666667vw;
  }
}
.page_process .process_list li .list_head dd img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 70% center;
     object-position: 70% center;
}
@media screen and (max-width: 768px) {
  .page_process .process_list li .list_head dd img {
    height: 33.3333333333vw;
    -o-object-position: center;
       object-position: center;
  }
}
.page_process .process_list li .list_txtWrap dt {
  margin-bottom: 5px;
  color: #d6010e;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page_process .process_list li .list_txtWrap dt {
    margin-bottom: 1.3333333333vw;
    font-size: 4vw;
  }
}
.page_process .process_list li .list_txtWrap dd {
  line-height: 1.66;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .page_process .process_list li .list_txtWrap dd {
    font-size: 3.4666666667vw;
  }
}
.page_process .processList_arrival {
  margin-bottom: 125px;
}
@media screen and (max-width: 768px) {
  .page_process .processList_arrival {
    margin-bottom: 16.6666666667vw;
  }
}
.page_process .processList_arrival li.list01 .list_head dt .icon {
  width: 45px;
}
@media screen and (max-width: 768px) {
  .page_process .processList_arrival li.list01 .list_head dt .icon {
    width: 7.0666666667vw;
  }
}
.page_process .processList_arrival li.list02 .list_head dl:nth-child(1) {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .page_process .processList_arrival li.list02 .list_head dl:nth-child(1) {
    margin-bottom: 2.6666666667vw;
  }
}
.page_process .processList_arrival li.list02 .list_head dl:nth-child(1) dt .icon {
  width: 62px;
}
@media screen and (max-width: 768px) {
  .page_process .processList_arrival li.list02 .list_head dl:nth-child(1) dt .icon {
    width: 9.7333333333vw;
  }
}
.page_process .processList_arrival li.list02 .list_head dl:nth-child(2) dt .icon {
  width: 56px;
}
@media screen and (max-width: 768px) {
  .page_process .processList_arrival li.list02 .list_head dl:nth-child(2) dt .icon {
    width: 8.5333333333vw;
  }
}
.page_process .processList_arrival li.list03 .list_head dt .icon {
  width: 65px;
}
@media screen and (max-width: 768px) {
  .page_process .processList_arrival li.list03 .list_head dt .icon {
    width: 10.2666666667vw;
  }
}
.page_process .processList_arrival li.list04 .list_head dt .icon {
  width: 36px;
}
@media screen and (max-width: 768px) {
  .page_process .processList_arrival li.list04 .list_head dt .icon {
    width: 6.4vw;
  }
}
.page_process .processList_packing li.list01 {
  display: block;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .page_process .processList_packing li.list01 {
    padding-top: 5.3333333333vw;
  }
}
.page_process .processList_packing li.list01 .list_head {
  max-width: 100%;
  width: 100%;
  margin-right: 0;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page_process .processList_packing li.list01 .list_head {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .page_process .processList_packing li.list01 .list_head dl {
    flex-wrap: wrap;
  }
}
.page_process .processList_packing li.list01 .list_head dd.img02 {
  max-width: calc(100% - 520px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page_process .processList_packing li.list01 .list_head dd.img02 {
    max-width: 100%;
    padding-top: 2.6666666667vw;
    background-color: #f7f4e9;
  }
}
.page_process .processList_packing li.list01 .list_head.head01 dt .icon {
  width: 43px;
}
@media screen and (max-width: 768px) {
  .page_process .processList_packing li.list01 .list_head.head01 dt .icon {
    width: 6.8vw;
  }
}
.page_process .processList_packing li.list01 .list_head.head02 {
  margin-top: 53px;
}
@media screen and (max-width: 768px) {
  .page_process .processList_packing li.list01 .list_head.head02 {
    margin-top: 9.3333333333vw;
  }
}
.page_process .processList_packing li.list01 .list_head.head02 dt .icon {
  width: 70px;
}
@media screen and (max-width: 768px) {
  .page_process .processList_packing li.list01 .list_head.head02 dt .icon {
    width: 11.4666666667vw;
  }
}
.page_process .processList_packing li.list01 .list_txtWrap dd {
  letter-spacing: -0.04em;
}
.page_process .processList_packing li.list02 .list_head dt .icon {
  width: 63px;
}
@media screen and (max-width: 768px) {
  .page_process .processList_packing li.list02 .list_head dt .icon {
    width: 12vw;
  }
}

/*---------------------------------------
  detailed
/*---------------------------------------*/
.page_detailed .mv img {
  -o-object-position: 80% center;
     object-position: 80% center;
}
.page_detailed .sec_detailed {
  padding-top: 75px;
}
@media screen and (max-width: 768px) {
  .page_detailed .sec_detailed {
    padding-top: 11.3333333333vw;
  }
}
.page_detailed .sec_detailed .detailed_ttl {
  margin-bottom: 108px;
  line-height: 1.142;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page_detailed .sec_detailed .detailed_ttl {
    margin-bottom: 11.7333333333vw;
    line-height: 1.428;
    font-size: 4.6666666667vw;
    letter-spacing: -0.01em;
  }
}
.page_detailed .sec_detailed .detailed_boxWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .page_detailed .sec_detailed .detailed_boxWrap {
    display: block;
  }
}
.page_detailed .sec_detailed .detailed_box {
  max-width: 640px;
  width: 47.0589%;
}
@media screen and (max-width: 768px) {
  .page_detailed .sec_detailed .detailed_box {
    max-width: 100%;
    width: 100%;
  }
}
.page_detailed .sec_detailed .detailed_box.w_100 {
  max-width: 100%;
  width: 100%;
}
.page_detailed .sec_detailed .detailed_box .box_ttl {
  margin-bottom: 30px;
  color: #b70615;
  line-height: 1.428;
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page_detailed .sec_detailed .detailed_box .box_ttl {
    margin-bottom: 4vw;
    line-height: 1.334;
    font-size: 4vw;
  }
}
.page_detailed .sec_detailed .detailed_box .box_txt {
  line-height: 2.22;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .page_detailed .sec_detailed .detailed_box .box_txt {
    line-height: 1.69;
    font-size: 3.4666666667vw;
  }
}
.page_detailed .sec_detailed .detailed_box .box_img {
  margin-top: 38px;
}
@media screen and (max-width: 768px) {
  .page_detailed .sec_detailed .detailed_box .box_img {
    margin: 6.6666666667vw 2vw 0;
  }
}
.page_detailed .sec_detailed .cont_nature {
  padding: 100px 0 90px;
  background-color: #f6f4e9;
}
@media screen and (max-width: 768px) {
  .page_detailed .sec_detailed .cont_nature {
    padding: 12vw 0;
  }
}
@media screen and (min-width: 768px) {
  .page_detailed .sec_detailed .cont_nature .detailed_box:first-child {
    margin-right: 5%;
  }
  .page_detailed .sec_detailed .cont_nature .detailed_box:nth-child(3) {
    margin-top: 73px;
  }
}
@media screen and (max-width: 768px) {
  .page_detailed .sec_detailed .cont_nature .detailed_box {
    margin-bottom: 12.4vw;
  }
  .page_detailed .sec_detailed .cont_nature .detailed_box:last-child {
    margin-bottom: 0;
  }
}
.page_detailed .sec_detailed .cont_quality {
  padding: 125px 0 150px;
}
@media screen and (max-width: 768px) {
  .page_detailed .sec_detailed .cont_quality {
    padding: 12vw 0 24vw;
  }
}

/*---------------------------------------
  page_contact
/*---------------------------------------*/
.page_contact .sec_contact {
  padding: 79px 0 150px;
}
@media screen and (max-width: 768px) {
  .page_contact .sec_contact {
    min-height: calc(100vh - 86.66666667vw);
    max-height: -webkit-fill-available;
    padding: 11.4666666667vw 0 20vw;
  }
}
.page_contact .contact_txt {
  margin-bottom: 34px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page_contact .contact_txt {
    margin-bottom: 5.3333333333vw;
    font-size: 4vw;
  }
}
.page_contact .contact_box {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .page_contact .contact_box {
    max-width: 89.3333333333vw;
  }
}
.page_contact .contact_box dt, .page_contact .contact_box dd {
  padding: 23px 0 23px;
}
@media screen and (max-width: 768px) {
  .page_contact .contact_box dt, .page_contact .contact_box dd {
    padding: 2vw 0 2vw;
  }
}
.page_contact .contact_box dl:nth-of-type(even) {
  background-color: initial;
}
.page_contact .contact_box dl {
  display: flex;
  background-color: #f7f5f0;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .page_contact .contact_box dl {
    line-height: 1.69230769;
  }
}
.page_contact .contact_box dl dt {
  width: 132px;
  padding-left: 20px;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page_contact .contact_box dl dt {
    width: 25.3333333333vw;
    font-size: 3.3333333333vw;
  }
}
.page_contact .contact_box dl dd {
  width: calc(100% - 132px);
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page_contact .contact_box dl dd {
    width: calc(100% - 25.3333333333vw);
    font-size: 3.4666666667vw;
  }
}

/*---------------------------------------
  page_contact
/*---------------------------------------*/
.page_sitemap .sec_sitemap {
  padding: 78px 0 142px;
}
@media screen and (max-width: 768px) {
  .page_sitemap .sec_sitemap {
    padding: 11.4666666667vw 0 18.6666666667vw;
  }
}
.page_sitemap .sitemap_container {
  display: flex;
}
@media screen and (max-width: 768px) {
  .page_sitemap .sitemap_container {
    display: block;
  }
}
.page_sitemap .container, .page_sitemap .container_r {
  max-width: 453px;
  width: 33.30882353%;
  line-height: 3;
  font-size: 2rem;
}
.page_sitemap .container span, .page_sitemap .container_r span {
  line-height: 3.75;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page_sitemap .container span, .page_sitemap .container_r span {
    max-width: auto;
    line-height: 2.5;
    font-size: 4vw;
  }
}
.page_sitemap .container p, .page_sitemap .container_r p {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .page_sitemap .container p, .page_sitemap .container_r p {
    margin-bottom: 1.3333333333vw;
  }
}
.page_sitemap .container {
  min-width: 390px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .page_sitemap .container {
    min-width: initial;
    max-width: initial;
    width: initial;
    line-height: 1.69;
    font-size: 3.4666666667vw;
  }
  .page_sitemap .container p {
    margin-top: -25px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .page_sitemap .container p {
    margin-top: -3.3333333333vw;
  }
}
.page_sitemap .container ul li {
  margin-bottom: 23px;
}
@media screen and (max-width: 768px) {
  .page_sitemap .container ul li {
    margin-bottom: 3.7333333333vw;
  }
}
.page_sitemap .container ul li:last-child {
  margin-bottom: initial;
}
.page_sitemap .container .containerTxt {
  padding-left: 2em;
  text-indent: -2em;
}
@media screen and (max-width: 768px) {
  .page_sitemap .container .containerTxt {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .page_sitemap .container .containerTxt {
    padding-left: initial;
    text-indent: initial;
  }
}
.page_sitemap .container_r {
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .page_sitemap .container_r {
    min-width: initial;
    max-width: initial;
    width: initial;
    margin-top: 12vw;
    font-size: 3.4666666667vw;
  }
}
.page_sitemap .container_r ul li {
  margin-bottom: 23px;
}
@media screen and (max-width: 768px) {
  .page_sitemap .container_r ul li {
    margin-top: 3.7333333333vw;
  }
}
.page_sitemap .container_r ul li:last-child {
  margin-bottom: initial;
}
.page_sitemap .container_r .containerTxt {
  padding-left: 2em;
  text-indent: -2em;
}
@media (max-width: 1200px) {
  .page_sitemap .container_r .containerTxt {
    padding-left: initial;
    text-indent: initial;
  }
}
.page_sitemap .container_r:last-child {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .page_sitemap .container_r:last-child {
    margin-top: 13.3333333333vw;
    padding-top: initial;
  }
}
@media (max-width: 1200px) {
  .page_sitemap .container_r:last-child {
    min-width: initial;
  }
}
.page_sitemap .arrow {
  position: relative;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .page_sitemap .arrow {
    margin-left: 4vw;
    padding-left: 0.6666666667vw;
  }
}
.page_sitemap .arrow:hover::before {
  left: -14px;
}
.page_sitemap .arrow::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 12px;
  left: -21px;
  border-right: #b70615 solid 2px;
  border-bottom: #b70615 solid 2px;
  background: #fff;
  transition: all 0.6s;
  transform: rotateZ(-45deg);
  content: "";
}
@media screen and (max-width: 768px) {
  .page_sitemap .arrow::before {
    width: 1.6vw;
    height: 1.6vw;
    top: 2.1333333333vw;
    left: -2.8vw;
    border-right: #b70615 solid 0.2666666667vw;
    border-bottom: #b70615 solid 0.2666666667vw;
  }
}

/*---------------------------------------
  page_csr
/*---------------------------------------*/
.page_csr .sec_csr {
  padding-top: 75px;
}
@media screen and (max-width: 768px) {
  .page_csr .sec_csr {
    padding-top: 11.3333333333vw;
    padding-bottom: 18.2666666667vw;
  }
}
.page_csr .lowerLayer_ttl {
  margin-bottom: 83px;
}
@media screen and (max-width: 768px) {
  .page_csr .lowerLayer_ttl {
    margin-bottom: 12.8vw;
  }
}
.page_csr .introducton {
  margin-bottom: 93px;
  padding: 0 45px;
}
@media screen and (max-width: 768px) {
  .page_csr .introducton {
    margin-bottom: 12.6666666667vw;
    padding: 0;
  }
}
.page_csr .introducton h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .page_csr .introducton h2 {
    font-size: 4.6666666667vw;
    margin-bottom: 4vw;
  }
}
.page_csr .introducton_txt {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.22222222;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .page_csr .introducton_txt {
    font-size: 3.4666666667vw;
    line-height: 1.69230769;
    text-align: left;
    margin-bottom: 11.6vw;
  }
}
.page_csr .introducton_img {
  max-width: 1264px;
  width: 100%;
  margin: 0 auto 21px;
}
@media screen and (max-width: 768px) {
  .page_csr .introducton_img {
    width: 100vw;
    margin-bottom: 2vw;
    margin-left: calc(50% - 50vw);
  }
}
.page_csr .introducton_annotation {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .page_csr .introducton_annotation {
    font-size: 3.2vw;
    line-height: 1.83333333;
  }
}
.page_csr .introducton_annotation .window {
  display: inline-table;
  position: relative;
  padding-right: 1em;
}
.page_csr .introducton_annotation .window::before {
  content: "";
  background: url(/apt/assets/images/csr/icon_window.png) center top/contain no-repeat;
  position: absolute;
  width: 14px;
  height: 14px;
  top: 7px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .page_csr .introducton_annotation .window::before {
    width: 2.4vw;
    height: 2.4vw;
    top: 1.4666666667vw;
  }
}
.page_csr .introducton_annotation a {
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .page_csr .introducton_annotation a:hover {
    border-bottom: 1px solid transparent;
  }
}
.page_csr .bg_color {
  background-color: #f6f4e9;
}
.page_csr .csr_list {
  padding: 68px 60px 74px;
}
@media screen and (max-width: 768px) {
  .page_csr .csr_list {
    padding: 6.6666666667vw 5.3333333333vw 13.3333333333vw;
  }
}
.page_csr .csr_list:last-child {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .page_csr .csr_list:last-child {
    margin-bottom: 13.3333333333vw;
  }
}
.page_csr .csr_list .list_info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .page_csr .csr_list .list_info {
    flex-direction: column;
    gap: 0vw;
  }
}
.page_csr .csr_list .list_info .info_txt {
  max-width: 800px;
  width: 58.82352941%;
}
@media screen and (max-width: 768px) {
  .page_csr .csr_list .list_info .info_txt {
    order: 1;
    max-width: 89.3333333333vw;
    width: 89.3333333333vw;
  }
}
.page_csr .csr_list .list_info .info_txt h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 43px;
}
@media screen and (max-width: 768px) {
  .page_csr .csr_list .list_info .info_txt h2 {
    font-size: 4.6666666667vw;
    margin-bottom: 6.5333333333vw;
    text-align: center;
  }
}
.page_csr .csr_list .list_info .info_txt h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #b70615;
  line-height: 1.8;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page_csr .csr_list .list_info .info_txt h3 {
    font-size: 3.7333333333vw;
    line-height: 1.78571429;
    margin-bottom: 3.2vw;
  }
}
.page_csr .csr_list .list_info .info_txt ul {
  margin-bottom: 11px;
}
@media screen and (max-width: 768px) {
  .page_csr .csr_list .list_info .info_txt ul {
    margin-bottom: 0.4vw;
  }
}
.page_csr .csr_list .list_info .info_txt ul li {
  font-size: 1.8rem;
  line-height: 1.8888888889;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .page_csr .csr_list .list_info .info_txt ul li {
    font-size: 3.4666666667vw;
    line-height: 1.69230769;
  }
}
.page_csr .csr_list .list_info .info_txt p {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.26666667;
}
@media screen and (max-width: 768px) {
  .page_csr .csr_list .list_info .info_txt p {
    font-size: 3.2vw;
    line-height: 1.83333333;
  }
}
.page_csr .csr_list .list_info .info_txt p a {
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .page_csr .csr_list .list_info .info_txt p a:hover {
    border-bottom: 1px solid transparent;
  }
}
.page_csr .csr_list .info_img {
  max-width: 404px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page_csr .csr_list .info_img {
    order: 0;
    max-width: 53.8666666667vw;
    width: 53.8666666667vw;
    margin: 0 auto 10.6666666667vw;
  }
}
.page_csr .csr_list .two-items {
  max-width: 266px;
}
@media screen and (max-width: 768px) {
  .page_csr .csr_list .two-items {
    max-width: 35.4666666667vw;
  }
}
.page_csr .csr_list .list_img {
  width: 100%;
  margin: 42px auto 10px;
}
@media screen and (max-width: 768px) {
  .page_csr .csr_list .list_img {
    margin-top: 9.3333333333vw;
    margin-bottom: 0vw;
  }
}
.page_csr .csr_list .list_img._cooperation {
  max-width: 1070px;
}
@media screen and (max-width: 768px) {
  .page_csr .csr_list .list_img._cooperation {
    width: 89.3333333333vw;
  }
}
.page_csr .csr_list .list_img._activation {
  max-width: 820px;
}
@media screen and (max-width: 768px) {
  .page_csr .csr_list .list_img._activation {
    width: 92vw;
  }
}

/*---------------------------------------
  philosophy
/*---------------------------------------*/
.page_quality {
  /* cont_quality */
  /* cont_message */
  /* cont_gmp */
  /* cont_check */
  /* cont_value */
}
.page_quality .sec_quality {
  padding-top: 76px;
}
@media screen and (max-width: 768px) {
  .page_quality .sec_quality {
    padding-top: 11.4666666667vw;
  }
  .page_quality .sec_quality .wide_inner {
    max-width: 100vw;
  }
}
.page_quality .cont_quality {
  padding: 80px 0 100px;
  margin-bottom: 194px;
  background-image: url(/apt/assets/images/quality/bg_quality_pc.jpg);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .page_quality .cont_quality {
    padding: 12.8vw 0 13.3333333333vw;
    margin-bottom: 21.3333333333vw;
    background-color: #f6f4e9;
    background-image: url(/apt/assets/images/quality/bg_quality_sp.jpg);
    background-position: top;
    background-size: 100%;
  }
}
.page_quality .cont_quality .box_ttl {
  text-align: center;
}
.page_quality .cont_quality .box_ttl .box_ttlEn {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .page_quality .cont_quality .box_ttl .box_ttlEn {
    font-size: 2.9333333333vw;
  }
}
.page_quality .cont_quality .box_ttl .box_ttlJa {
  margin-bottom: 80px;
  font-size: 3.5rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .page_quality .cont_quality .box_ttl .box_ttlJa {
    margin-bottom: 12vw;
    font-size: 4.6666666667vw;
  }
}
.page_quality .cont_quality .quality_list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page_quality .cont_quality .quality_list {
    display: block;
  }
}
.page_quality .cont_quality .quality_list li {
  max-width: 470px;
  width: 100%;
  margin-right: 3%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page_quality .cont_quality .quality_list li {
    max-width: 86.6666666667vw;
    min-height: auto;
    margin: 0 auto 5.3333333333vw;
    padding: 0vw 2.6666666667vw;
  }
}
.page_quality .cont_quality .quality_list li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .page_quality .cont_quality .quality_list li:last-child {
    margin-right: auto;
    margin-bottom: 0;
  }
}
.page_quality .cont_quality .quality_list .quality_img {
  max-width: 470px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page_quality .cont_quality .quality_list .quality_img {
    max-width: 81.3333333333vw;
  }
}
.page_quality .cont_quality .quality_list .quality_txt {
  display: table;
  height: 12.38888889vw;
  max-height: 223px;
  min-height: 124px;
  width: 100%;
  line-height: 1.778;
  font-size: 1.8rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .page_quality .cont_quality .quality_list .quality_txt {
    height: auto;
    padding: 5.0666666667vw 1.3333333333vw;
    line-height: 1.69;
    font-size: 3.4666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1180px) {
  .page_quality .cont_quality .quality_list .quality_txt {
    font-size: 1.5rem;
  }
}
.page_quality .cont_quality .quality_list .quality_txt p {
  display: table-cell;
  vertical-align: middle;
}
.page_quality .cont_message {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .page_quality .cont_message {
    font-size: 4.6666666667vw;
    margin-bottom: 10.5333333333vw;
  }
}
.page_quality .conts_wrap {
  display: flex;
  position: relative;
  padding-bottom: 90px;
  background-color: #f6f4e9;
  background-image: url(/apt/assets/images/quality/bg_dot_pc.png);
  background-repeat: repeat-x;
  background-position: bottom;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .page_quality .conts_wrap {
    display: block;
    padding-bottom: 10.6666666667vw;
    background-image: url(/apt/assets/images/quality/bg_dot_sp.png);
  }
}
.page_quality .conts_wrap .conts_img {
  min-width: 860px;
  max-width: 980px;
}
@media screen and (max-width: 768px) {
  .page_quality .conts_wrap .conts_img {
    min-width: auto;
    max-width: 100%;
  }
}
.page_quality .conts_wrap .conts_box {
  max-width: 600px;
  width: 100%;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .page_quality .conts_wrap .conts_box {
    max-width: 89.3333333333vw;
  }
}
.page_quality .conts_wrap .box_txt {
  line-height: 1.778;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .page_quality .conts_wrap .box_txt {
    line-height: 1.69;
    font-size: 3.4666666667vw;
  }
}
.page_quality .box_ttl span {
  display: block;
  line-height: 1;
}
.page_quality .box_ttl .box_ttlEn {
  margin-bottom: 25px;
  color: #b70615;
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page_quality .box_ttl .box_ttlEn {
    margin-bottom: 3.3333333333vw;
    font-size: 2.9333333333vw;
  }
}
.page_quality .box_ttl .box_ttlJa {
  margin-bottom: 44px;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .page_quality .box_ttl .box_ttlJa {
    margin-bottom: 5.3333333333vw;
    font-size: 4.6666666667vw;
  }
}
.page_quality .cont_gmp {
  padding-top: 150px;
  padding-bottom: 250px;
}
@media screen and (max-width: 768px) {
  .page_quality .cont_gmp {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .page_quality .cont_gmp .conts_wrap {
    background-image: none;
  }
}
.page_quality .cont_gmp .conts_wrap .conts_img {
  margin-top: -150px;
  margin-left: -150px;
}
@media screen and (max-width: 768px) {
  .page_quality .cont_gmp .conts_wrap .conts_img {
    margin: 0 auto;
  }
}
.page_quality .cont_gmp .conts_wrap .conts_box {
  margin-top: -70px;
  margin-left: -80px;
  padding: 61px 60px 52px 50px;
}
@media screen and (max-width: 768px) {
  .page_quality .cont_gmp .conts_wrap .conts_box {
    margin: -10.6666666667vw auto 0;
    padding: 7.4666666667vw 5.3333333333vw 6.6666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1290px) {
  .page_quality .cont_gmp .conts_wrap .conts_box {
    margin-left: -140px;
  }
}
.page_quality .cont_gmp .conts_wrap .conts_box .box_ttl {
  text-indent: -1em;
}
.page_quality .cont_check {
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .page_quality .cont_check {
    padding-bottom: 13.3333333333vw;
  }
}
.page_quality .cont_check .conts_wrap {
  flex-direction: row-reverse;
}
.page_quality .cont_check .conts_wrap .conts_img {
  margin-top: -150px;
  margin-right: -150px;
}
@media screen and (max-width: 768px) {
  .page_quality .cont_check .conts_wrap .conts_img {
    margin: 0 auto;
  }
}
.page_quality .cont_check .conts_wrap .conts_box {
  margin-top: -70px;
  margin-right: -80px;
  padding: 58px 56px 82px 51px;
}
@media screen and (max-width: 768px) {
  .page_quality .cont_check .conts_wrap .conts_box {
    margin: -10.6666666667vw auto 0;
    padding: 7.2vw 5.3333333333vw 6.6666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1290px) {
  .page_quality .cont_check .conts_wrap .conts_box {
    margin-right: -140px;
  }
}

.sec_news {
  padding-top: 75px;
}
@media screen and (max-width: 768px) {
  .sec_news {
    padding-top: 11.3333333333vw;
  }
}
.sec_news .notice_box {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .sec_news .notice_box {
    margin-bottom: 13.3333333333vw;
  }
}
.sec_news .notice_box .notice_none {
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec_news .notice_box .notice_none {
    font-size: 3.73333333vw;
  }
}
.sec_news .notice_box .notice_List::after {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #c3c3c3;
  content: "";
}
.sec_news .notice_box dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .sec_news .notice_box dl {
    flex-wrap: nowrap;
  }
}
.sec_news .notice_box dt {
  min-width: 140px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec_news .notice_box dt {
    min-width: initial;
    max-width: 23.06666667vw;
    margin-right: 3.06666667vw;
    padding-top: 4.66666667vw;
    font-size: 3.73333333vw;
    align-self: flex-start;
  }
}
.sec_news .notice_box dd {
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .sec_news .notice_box dd {
    padding-top: 4.66666667vw;
    padding-bottom: 4.66666667vw;
    line-height: 1.71428571;
    font-size: 3.73333333vw;
  }
}
.sec_news .notice_box .icon {
  width: 25px;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .sec_news .notice_box .icon {
    width: 4.26666667vw;
    margin-left: 0.66666667vw;
  }
}
.sec_news .notice_List:last-child::after {
  display: none;
}