@charset "UTF-8";
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 {
  color: #333333;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: .05em;
}

/* 共通 */
.gf-noto-serif {
  font-family: 'Noto Serif JP', serif;
}
.gf-pf {
  font-family: 'Playfair Display', serif;
}
.flex {
  display: flex;
}
.u-sp {
  display: none !important;
}
.section {
  padding: 100px 0;
}
.container {
  max-width: 1200px;
  width: calc(100% - 45px);
  margin: 0 auto;
}
.text-blue {
  color: #4E6183;
}
@media only screen and (max-width: 768px) {
  .u-sp {
    display: inline-block !important;
  }
  .u-hidsp {
    display: none !important;
  }
  .section {
    padding: 10% 0;
  }
}

/* フェードイン */
.fadeup {
  opacity: 0;
  transform: translateY(10px);
  transition-duration: 1s;
}
.fadeup.on {
  opacity: 1;
  transform: translateY(0);
}

/* ヘッダー */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, .95);
  box-sizing: border-box;
  z-index: 10;
  padding: 0 15px;
  height: 65px;
}
.header .logo img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.head_menu ul li a {
  color: #333333;
}

/*　上に上がる動き　*/
.header.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-90px);
  }
}
/*　下に下がる動き　*/
.header.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-90px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スマホメニュー */
.sp_menu {
  cursor: pointer;
}
.sp_menu_in > span {
  display: block;
  height: 1px;
  background: #333;
  margin: 5px 0;
  transition-duration: .3s;
}
.sp_menu.active .sp_menu_in > span:nth-child(1) {
  transform: rotate(30deg) translate(2px, 6px);
}
.sp_menu.active .sp_menu_in > span:nth-child(2) {
  opacity: 0;
}
.sp_menu.active .sp_menu_in > span:nth-child(3) {
  transform: rotate(-30deg) translate(2px, -6px);
}
.sp_menu_in p {
  margin: 6px 0 0;
  letter-spacing: .13em;
  font-size: 10px;
}
.sp_menu_in p > span {
  display: block;
  text-align: center;
}
.sp_menu.active .sp_menu_in p > span.off, .sp_menu:not(.active) .sp_menu_in p > span.on {
  display: none;
}
/* LINEボタン */
.head_line a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #21C55B;
  letter-spacing: .1em;
}
.head_line a span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.head_line a span::before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background: url("../img/new/line_white.svg") center center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1201px) {
  body {
    padding-top: 90px;
  }
  
  /* スマホメニュー */
  .sp_menu {
    display: none;
  }
  /* ヘッダー */
  .header {
    padding: 0 20px;
    height: 90px;
  }
  .head_menu {
    align-items: center;
    display: flex !important;
    gap: 30px;
  }
  .head_menu ul {
    display: flex;
    gap: 15px;
    font-size: 13px;
  }
  .header .logo img {
    max-height: 40px;
  }
  .head_line a {
    width: 160px;
    height: 50px;
  }
  .head_line a span::before {
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 1700px) {
  /* スマホメニュー */
  .sp_menu {
    display: none;
  }
  /* ヘッダー */
  .header {
    padding: 0 40px;
    height: 90px;
  }
  .head_menu {
    align-items: center;
    display: flex !important;
    gap: 35px;
  }
  .head_menu ul {
    display: flex;
    gap: 35px;
    font-size: 15px;
  }
  .header .logo img {
    max-height: 65px;
  }
  .head_line a {
    width: 180px;
    height: 50px;
  }
}
@media screen and (max-width: 1200px) {
  body {
    padding-top: 65px;
  }
  
  /* ヘッダーロゴ */
  .header .logo {
    width: 73%;
  }
  .header .logo img {
    max-height: 40px;
  }
  
  /* ヘッダーメニュー */
  .head_menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, .95);
    height: calc(100vh - 65px);
    overflow: auto;
    padding: 30px 22px;
    box-sizing: border-box;
    display: none;
  }
  .head_menu li {
    font-size: 14px;
    padding: 15px 5px;
    border-bottom: 1px solid #C4C4C4;
  }
  /* LINEボタン */
  .head_line {
    margin-top: 30px;
    padding: 0 20px;
  }
  .head_line a {
    height: 60px;
  }
}

/* コンバージョン */
.cv_area {
  background-image: url("../img/mens/cv_bg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 0 95px;
}
.cv_list.flex {
  flex-wrap: wrap;
  gap: 12px;
}
.cv_list li {
  width: calc(20% - 48px/5);
  text-align: center;
}
.cv_list li {
  background-color: #fff;
  padding: 13px 0 16px;
  display: block;
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}
.cv_list li span {
  color: #573A12;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
}
.cv_list li img {
  margin-right: 14px;
  display: inline-block;
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
.cv_title {
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.8;
  margin-top: 36px;
  margin-bottom: 38px;
  text-align: center;
}
.cv_title span.cv_title-p1 {
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.cv_title span.cv_title-p2 {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
a.cv_btn {
  border: 1px solid #fff;
  display: block;
  border-radius: 50px;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  padding: 31px 0 33px;
  width: 600px;
  max-width: 100%;
}
.cv_area .banner_image {
  margin-top: 50px;
}
@media only screen and (max-width: 1024px) {
  .cv_list.flex {
    gap: 8px;
  }
  .cv_list li {
    width: calc(20% - 32px / 5);
  }
  .cv_list li a {
    font-size: 15px;
  }
  .cv_list li img {
    margin-right: 10px;
    vertical-align: middle;
    width: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .cv_area {
    background-image: url("../img/mens/cv_bg_sp.jpg");
    background-attachment: initial;
    background-size: cover;
    background-position: center;
    padding: 40px 0;
  }
  .cv_list.flex {
    gap: 10px 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .cv_list li {
    width: calc(50% - 15px / 2);
  }
  .cv_list li a {
    padding: 5px 0;
  }
  .cv_title {
    font-size: 18px;
    margin-top: 26px;
    margin-bottom: 27px;
    margin-left: -15px;
    margin-right: -15px;
  }
  .cv_title span.cv_title-p1 {
    font-size: 26px;
  }
  .cv_title span.cv_title-p2 {
    font-size: 22px;
  }
  a.cv_btn {
    width: 308px;
    font-size: 14px;
    padding: 17px 0 18px;
  }
  .cv_area .banner_image {
    margin-top: 15px;
  }
}

/* フッター */
.footer {
  background: url("../img/new/bg_white.png");
  padding: 35px 0 42px;
}
footer {
  padding-bottom: 0;
}
.footer .logo {
  margin-bottom: 25px;
  text-align: center;
}
.footer .logo img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.footer .logo .name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 15px;
}
.footer .tel {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-align: center;
}
.footer .tel a {
  color: #333333;
  padding-left: 25px;
  position: relative;
}
.footer .tel a::before {
  content: "";
  background: url(../img/new/icon_tel.svg) center center no-repeat;
  background-size: 19px 19px;
  width: 19px;
  height: 19px;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
}
.footer .time {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer .time span {
  font-size: 12px;
  font-weight: 400;
}
.footer .insta_banner {
  max-width: 270px;
  margin: 0 auto 40px;
}
.footer .insta_banner img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.footer .ft_banner {
  max-width: 1104px;
  /*margin: 0 auto 62px;*/
  margin: 0 auto 40px;
  display: flex;
  gap: 8px;
}
.footer .ft_banner img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.footer .ft_banner .banner {
  width: calc(50% - 24px);
}
.footer .ft_bottom {
  margin-bottom: 15px;
}
.footer .ft_bottom ul {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.footer .ft_bottom li {
  padding: 0 2em;
  border-left: solid 1px #333;
}
.footer .ft_bottom li:last-child {
  border-right: solid 1px #333;
}
.footer .ft_bottom li a {
  font-size: 14px;
  color: #333;
  display: block;
}
.copyright {
  text-align: center;
  font-size: 12px;
}
.footer_menu {
  background: url("../img/new/bg_white.png");
  padding-top: 28px;
}
.footer_menu li {
  font-size: 13px;
  padding: 15px 30px;
  border-bottom: 1px solid #C4C4C4;
}
.footer_menu ul li a {
  color: #333333;
}
.apparel_nav_sp {
  background-color: #111111;
  padding: 17px 0;
}
.apparel_nav_sp ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 17px 0;
  width: 100%;
}
.apparel_nav_sp li {
  padding: 0 !important;
  border-right: 0;
  margin: 0;
  width: 50%;
}
.apparel_nav_sp li a, .apparel_nav_sp li span {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1;
  display: block;
  transition: .3s;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 50px 0 20px;
  }
  .footer .logo .name {
    font-size: 18px;
  }
  .footer .insta_banner {
    max-width: 100%;
    margin-bottom: 8px;
    text-align: center;
  }
  .footer .ft_banner {
    flex-wrap: wrap;
    gap: 8px 0;
    margin-bottom: 25px;
    text-align: center;
  }
  .footer .ft_banner .banner {
    width: 100%;
  }
  .footer .ft_bottom {
    margin-bottom: 10px;
  }
  .footer .ft_bottom ul {
    padding: 7px 0;
  }
  .footer .ft_bottom li a {
    font-size: 12px;
  }
  .footer_menu {
    display: block !important;
  }
  .apparel_nav_sp {
    display: block !important;
  }
}
.flow_area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  padding: 10px;
  background: #fff;
  box-sizing: border-box;
  z-index: 10;
  transition-duration: .3s;
}
.flow_area.is-hidden {
  opacity: 0;
}
.flow_area p {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
  width: 80px;
  height: 80px;
}
.flow_area p a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.flow_area p.line a {
  background: #21C55B;
}
.flow_area p.assessment a {
  background: #C4AB59;
}
.flow_area p.syame a {
  background: #49BAC9;
}
.flow_area p.syame a img {
  margin-bottom: 6px;
}
.flow_area p span {
  font-size: 13px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .flow_area {
    bottom: 10px;
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .flow_area {
    flex-direction: unset;
    gap: 8px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 8px;
  }
  .flow_area p {
    width: calc((100% - 8px) / 2);
    height: 50px;
  }
  .flow_area p a {
    flex-direction: unset;
    gap: 10px;
  }
  .flow_area p.syame a img {
    width: 25px;
    margin-bottom: 0;
  }
  .flow_area p span {
    font-size: 16px;
  }
}

/* メンズアパレル買取専門店 TOP */
.apparel_contents {
  background: url("../img/mens/bg_white.png");
}
.mainvs {
  background: url("../img/mens/mainvs_bg.jpg") no-repeat center top / cover;
  padding: 18px 0;
  overflow: hidden;
}
.mainvs h1, 
.mainvs h2, 
.mainvs p, 
.mainvs span {
  font-family: 'Noto Serif JP', serif !important;
  color: #fff;
}
.mainvs h1 {
  background: none;
  text-align: left;
  display: block;
}
.mainvs img {
  display: inline-block;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.mainvs_text {
  width: 46%;
}
.mainvs_text .mainvs_p1 {
  font-size: 33px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 2;
  text-shadow: 0 0 15px #000;
  margin-top: 21px;
}
.mainvs_title {
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1;
  text-shadow: 0 0 15px #000;
}
.mainvs_title span.is-f1 {
  font-size: 43px;
  letter-spacing: 0.05em;
}
.mainvs_title span.is-f2 {
  font-size: 33px;
}
.mainvs_title02 {
  text-shadow: 0 0 15px #000;
  letter-spacing: 0.05em;
  font-size: 44px;
  font-weight: bold;
  margin-top: 11px;
}
.mainvs_title02 span {
  font-size: 33px;
  letter-spacing: 0.05em;
}
.mainvs_text p {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 32px;
  text-shadow: 0 0 15px #000;
  margin: 13px 0 0;
}
.mainvs_text a {
  display: inline-block;
  background-color: #85B082;
  width: 300px;
  max-width: 100%;
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 21px 0 24px;
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 23px;
}
.mainvs_text a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 12px;
  background-color: #fff;
  right: 15px;
}
.mainvs_img {
  width: 54%;
  transform: translateX(54px);
}
@media only screen and (max-width: 1024px) {
  .mainvs .flex {
    flex-wrap: wrap;
  }
  .mainvs_text {
    margin-bottom: 30px;
  }
  .mainvs_text,
  .mainvs_img {
    width: 100%;
  }
  .mainvs_img {
    transform: none;
  }
}
@media only screen and (max-width: 768px) {
  .mainvs {
    background-image: url("../img/mens/mainvs_bg-sp.jpg");
    padding: 27px 0 15px;
  }
  .mainvs h1 {
    text-align: center;
  }
  .mainvs_text {
    margin-bottom: 13px;
    text-align: center;
  }
  .mainvs_text .mainvs_p1 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: -2px
  }
  .mainvs_title {
    font-size: 38px;
  }
  .mainvs_title span.is-f1 {
    font-size: 27px;
  }
  .mainvs_title span.is-f2 {
    font-size: 20px;
  }
  .mainvs_title02 span {
    font-size: 20px;
  }
  .mainvs_title02 {
    font-size: 26px;
    margin-top: 5px;
  }
  .mainvs_text p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 9px;
    margin-bottom: 10px;
  }
  .mainvs_text a {
    width: 285px;
    font-size: 15px;
    margin-top: 10px;
    padding: 16px 0 19px;
  }
  .mainvs_text a::after {
    width: 10px;
    right: 13px;
  }
  .mainvs_img {
    width: 83%;
    margin: 0 auto;
  }
}

/* アパレル・ブランド買取専門店 コンテンツ */
.apparel-head {
  text-align: center;
  margin-bottom: 38px;
}
.apparel-head_jp {
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.apparel-head_en {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.13em;
  margin-top: 13px;
}
.apparel_nav {
  background-color: #111111;
  padding: 21px 0;
}
.apparel_nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.apparel_nav ul {
  display: flex;
  justify-content: center;
  max-width: 1035px;
  margin: 0 auto;
}
.apparel_nav li a, 
.apparel_nav li span {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 2;
  display: block;
  transition: .3s;
  cursor: pointer;
}
.apparel_nav li span:hover {
  opacity: 0.7;
}
.apparel_nav li {
  padding: 4px 59px;
  border-right: 1px solid #CCA46A;
}
.apparel_nav li:first-child {
  padding-left: 0;
}
.apparel_nav li:last-child {
  padding-right: 0;
  border-right: 0;
}
@media only screen and (max-width: 1080px) {
  .apparel_nav li {
    padding: 4px 30px;
  }
  .apparel_nav li a, 
  .apparel_nav li span {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .apparel-head {
    margin-bottom: 20px;
  }
  .apparel-head_jp {
    font-size: 21px;
    line-height: 32px;
  }
  .apparel-head_en {
    font-size: 10px;
    margin-top: 10px;
  }
  .apparel_nav {
    padding: 17px 0;
  }
  .apparel_nav ul {
    flex-wrap: wrap;
    gap: 17px 0;
  }
  .apparel_nav li {
    padding: 0 !important;
    border-right: 0;
    margin: 0;
    width: 50%;
  }
  .apparel_nav li a, 
  .apparel_nav li span {
    font-size: 14px;
    line-height: 1;
  }
}

.apparel_top {
  padding: 40px 0 100px;
}
.merit_box {
  max-width: 830px;
  margin: 0 auto;
  gap: 40px;
}
.merit_item {
  width: calc(100%/3 - 80px/3);
  position: relative;
  padding-bottom: 30.1%;
  background: url("../img/mens/merit_it.png") no-repeat center/contain;
}
.merit_inn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  text-align: center;
}
.merit_inn p {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}
.merit_inn span {
  font-family: 'Noto Serif JP', serif;
}
.merit_item-01 .merit_inn p.text-blue {
  font-size: 101px;
  margin-top: -30px;
  margin-bottom: -25px;
}
.merit_item-01 .merit_inn p.text-blue span {
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-left: -3px;
}
.merit_item-02 .merit_inn p.text-blue {
  font-size: 43px;
  margin-top: -3px;
  margin-bottom: -4px;
}
.merit_item-03 .merit_inn p.text-blue {
  font-size: 38px;
  margin-bottom: -2px;
}
.merit_item-03 .merit_inn p.text-blue span {
  font-size: 32px;
  letter-spacing: 0.05em;
  color: #4E6183;
}
.store_text {
  text-align: center;
  margin-top: 33px;
}
.store_title {
  font-size: 35px;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.store_text p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 26px;
  margin-bottom: 0;
}
.banner_image {
  margin-top: 60px;
  gap: 40px;
  flex-wrap: wrap;
}
.banner_image .banner {
  width: calc(50% - 20px);
}
.banner_image img {
  display: inline-block;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.apparel_top .reason {
  margin-top: 150px;
}
.reason_title {
  text-align: center;
  margin-bottom: 34px;
}
.reason_title span {
  display: inline-block;
  font-size: 34px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 0 50px;
  position: relative;
}
.reason_title span::before, 
.reason_title span::after {
  content: "";
  display: inline-block;
  background: #85B082;
  width: 50px;
  height: 1px;
  position: absolute;
  top: 42px;
}
.reason_title span::before {
  left: 0;
  transform: rotate(60deg);
}
.reason_title span::after {
  right: 0;
  transform: rotate(-60deg);
}
.reason_title em {
  font-family: 'Noto Serif JP', serif;
  font-size: 48px;
  font-weight: bold;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #4E6183;
}
.reason_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.reason_item {
  background: #fff;
  border: 1px solid #4E6183;
  width: calc(100%/3 - 50px/3);
  position: relative;
  padding: 30px 0 26px;
}
.reason_item .num {
  background-color: #4E6183;
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  font-style: italic;
  position: absolute;
  top: 0;
  text-align: center;
  width: 60px;
  height: 60px;
  line-height: 45px;
}
.reason_item .reason_tl {
  font-size: 30px;
  letter-spacing: 0.05em;
  font-weight: bold;
  min-height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.reason_item:nth-child(3) .reason_tl {
  font-size: 26px;
  line-height: 36px;
}
.reason_item p {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2;
  font-weight: 500;
  text-align: center;
  margin-top: 19px;
  margin-bottom: 0;
}
.reason_lead {
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 2;
  margin-top: 27px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .merit_inn p {
    font-size: 17px;
  }
  .banner_image {
    margin-top: 50px;
    gap: 20px;
  }
  .banner_image .banner {
    width: calc(50% - 10px);
  }
  .reason_title span {
    font-size: 30px;
  }
  .reason_title em {
    font-size: 40px;
  }
  .reason_item .reason_tl {
    font-size: 25px;
  }
  .reason_item .num {
    font-size: 30px;
    width: 45px;
    height: 45px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 768px) {
  .apparel_top {
    padding: 30px 0 55px;
  }
  .apparel_top .container {
    width: calc(100% - 20px);
  }
  .merit_box {
    gap: 7.5px;
    padding: 0 5px;
  }
  .merit_item {
    width: calc(100% / 3 - 15px / 3);
    padding-bottom: 31.9%;
  }
  .merit_inn p {
    font-size: 11px;
  }
  .merit_item-01 .merit_inn p.text-blue {
    font-size: 41px;
    margin-top: -12px;
    margin-bottom: -16px;
  }
  .merit_item-02 .merit_inn p.text-blue {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 4px;
  }
  .merit_item-03 .merit_inn p.text-blue {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .merit_item-01 .merit_inn p.text-blue span {
    font-size: 17px;
    margin-left: 0px;
  }
  .merit_item-03 .merit_inn p.text-blue span {
    font-size: 15px;
  }
  .store_text {
    margin-top: 26px;
  }
  .store_title {
    font-size: 21px;
    line-height: 32px;
  }
  .store_text p {
    font-size: 13px;
    line-height: 21px;
    margin-top: 21px;
    padding: 0 22px;
  }
  .banner_image {
    margin-top: 30px;
    gap: 15px;
    padding: 0 13px;
  }
  .banner_image .banner {
    width: 100%;
  }
  .apparel_top .reason {
    margin-top: 60px;
  }
  .reason_title {
    margin-bottom: 21px;
  }
  .reason_title span {
    font-size: 17px;
    padding: 0 56px;
  }
  .reason_title span::before, 
  .reason_title span::after {
    width: 46px;
    top: auto;
    bottom: 22px;
  }
  .reason_title span::before {
    transform: rotate(65deg);
  }
  .reason_title span::after {
    transform: rotate(-65deg);
  }
  .reason_title em {
    font-size: 24px;
  }
  .reason_wrap {
    gap: 10px;
  }
  .reason_item {
    width: 100%;
    padding: 26px 0 32px;
  }
  .reason_item:nth-child(3) {
    padding: 14px 0 17px;
  }
  .reason_item .num {
    font-size: 27px;
    line-height: 33px;
  }
  .reason_item .reason_tl {
    font-size: 30px;
    min-height: auto;
  }
  .reason_item:nth-child(3) .reason_tl {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: -5px;
  }
  .reason_item p {
    font-size: 13px;
    line-height: 20px;
    margin-top: 15px;
  }
  .reason_lead {
    font-size: 13px;
    line-height: 22px;
    margin-top: 24px;
  }
}
@media only screen and (max-width: 640px) {
  .reason_title span {
    font-size: 16px;
    padding: 0 52px;
  }
  .reason_title em {
    font-size: 22px;
  }
}

.brand {
  background: url("../img/mens/bg_blue.png");
  padding: 120px 0 105px;
}
.brand_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 53px 20px;
}
.brand_item {
  width: calc(25% - 15px);
  text-align: center;
}
.brand_item h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
.brand_wrap img {
  display: inline-block;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.brand_lead {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 65px;
}
@media only screen and (max-width: 768px) {
  .brand {
    padding: 60px 0 50px;
  }
  .brand_wrap {
    gap: 25px 15px;
  }
  .brand_item {
    width: calc(50% - 15px / 2);
  }
  .brand_item h3 {
    font-size: 14px;
    margin-top: 7px;
    letter-spacing: 0;
  }
  .brand_lead {
    font-size: 13px;
    line-height: 22px;
    margin-top: 33px;
  }
}
.line_cont {
  padding: 120px 0;
}
.line_title {
  text-align: center;
  margin-bottom: 57px;
}
.line_title span {
  display: inline-block;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #21C55B;
  padding: 0 55px;
  position: relative;
}
.line_title span::before, 
.line_title span::after {
  content: "";
  display: inline-block;
  background: #21C55B;
  width: 40px;
  height: 1px;
  position: absolute;
  top: 27px;
}
.line_title span::before {
  left: 0;
  transform: rotate(60deg);
}
.line_title span::after {
  right: 0;
  transform: rotate(-60deg);
}
.line_list {
  display: flex;
  gap: 0 12px;
  margin-bottom: 75px;
}
.line_list .line_item {
  background: #fff;
  border: 1px solid #21C55B;
  width: calc(100% / 5 - 58px / 5);
  position: relative;
  padding: 56px 5px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.line_list .num {
  background: #21C55B;
  border-radius: 50%;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  line-height: 49px;
  text-align: center;
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  margin: auto;
}
.line_list .line_item p {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}
.line_list .line_item p .small {
  font-size: 17px;
}
.line_list .line_item p.moresmall {
  font-size: 12px;
}
.line_lead {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 2;
  text-align: center;
  margin-bottom: 30px;
}
.btn_line a {
  background: #21C55B;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: bold;
  margin: 0 auto;
  width: 740px;
  max-width: 100%;
  height: 80px;
  box-sizing: border-box;
}
.btn_line a img {
  display: inline-block;
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  width: 27px;
}
.line_acc {
  margin-top: 20px;
}
.line_acc > span {
  background: #fff;
  border: 1px solid #21C55B;
  color: #21C55B;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: bold;
  margin: 0 auto;
  width: 740px;
  max-width: 100%;
  height: 80px;
  position: relative;
  box-sizing: border-box;
}
.line_acc .open_icon {
  width: 21px;
  height: 1px;
  background: #21C55B;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: .3s;
}
.line_acc .open_icon::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 21px;
  background: #21C55B;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s;
}
.line_acc.active .open_icon::after {
  transform: translate(-50%, -50%) rotate(-90deg);
  opacity: 0;
}
.line_content {
  display: none;
}
.line_content .title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 75px;
  font-size: 35px !important;
  font-weight: bold;
  text-align: center;
}
.line_content .title .green_line {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 40px;
  height: 2px;
  margin: auto;
  background: #21C55B;
}
/*.line_content .title .green_line:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: #21C55B;
}*/
.line_content .sec01 {
  margin-top: 120px;
}
.line_content .sec01 * {
  font-size: 15px;
  line-height: 2;
  box-sizing: border-box;
}
.line_content .sec01 ol {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  list-style: none;
}
.line_content .sec01 ol li:nth-child(odd) {
  position: relative;
  width: 260px;
}
.line_content .sec01 ol li:nth-child(even) {
  width: 27px;
}
.line_content .sec01 ol li:nth-child(even) img {
  width: auto;
  height: 100%;
}
.line_content .sec01 ol li .number {
  position: absolute;
  top: -25px;
  left: -15px;
  width: 70px;
}
.line_content .sec01 ol li figure + p {
  margin-top: 25px;
}
.line_content .sec01 ol li figure + p .red {
  color: #D00;
}
.line_content .sec01 ol li img {
  display: inline-block;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.line_content .sec02 {
  margin-top: 140px;
}
.line_content .sec02 * {
  font-size: 15px;
  line-height: 2;
  box-sizing: border-box;
}
.line_content .sec02 ol {
  display: flex;
  flex-direction: column;
  gap: 90px;
  list-style: none;
}
.line_content .sec02 ol li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.line_content .sec02 ol li figure {
  max-width: 590px;
  width: 50%;
}
.line_content .sec02 ol li:nth-child(odd) figure {
  order: 2;
}
.line_content .sec02 ol li .txt_area {
  max-width: 540px;
  width: 48%;
}
.line_content .sec02 ol li:nth-child(odd) .txt_area {
  order: 1;
}
.line_content .sec02 ol li .txt_area a {
  color: #21C55B;
  text-decoration: underline;
}
.line_content .sec02 ol li .txt_area a:hover {
  text-decoration: none;
}
.line_content .sec02 ol li .txt_area .number {
  margin-bottom: 15px;
  font-size: 80px;
  color: #21C55B;
  font-style: italic;
  line-height: 1;
}
.line_content .sec02 ol li .txt_area .title03 {
  margin-bottom: 16px;
  font-size: 25px;
  font-weight: bold;
}
.line_content .sec02 ol li .txt_area .green_box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  padding: 0 2em;
  margin: 30px 0 13px;
  color: #fff;
  font-weight: bold;
  background: #21C55B;
  border-radius: 18px;
}
.line_content .sec02 ol li .txt_area .green li {
  margin-left: 10px;
  color: #21C55B;
}
.line_content .sec02 ol li .txt_area .green.dotte li {
  position: relative;
  padding-left: 18px;
}
.line_content .sec02 ol li .txt_area .green.dotte li:before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  display: block;
  width: 6px;
  height: 6px;
  background: #21C55B;
  border-radius: 50%;
}
.line_content .sec02 ol li img {
  display: inline-block;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.purchase_item {
  padding-top: 145px;
}
.item_cont h3 {
  background: #4E6183;
  font-size: 25px;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #fff;
  padding: 19px 5px;
  text-align: center;
}
.item_cont .item_inn {
  border: 1px solid #4E6183;
  padding: 40px 35px;
}
.item_cont .item_inn + h3 {
  margin-top: 40px;
}
.item_cont ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border-top: none;
}
.item_cont ul li {
  font-size: 15px;
  letter-spacing: 0.01em;
  position: relative;
  padding-left: 14px;
  width: calc(100% / 4 - 45px / 4);
  box-sizing: border-box;
}
.item_cont ul li::before {
  content: "";
  background: #85B082;
  border-radius: 50%;
  height: 6px;
  width: 6px;
  position: absolute;
  left: 0;
  top: 10px;
}
.item_cont h4 {
  border-top: 1px solid #85B082;
  border-bottom: 1px solid #85B082;
  color: #85B082;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 22px;
  padding: 9px 10px;
  text-align: center;
}
.item_cont p {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: 40px;
}
.item_cont ul + h4 {
  margin-top: 52px;
}
.apparel_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  margin-top: 20px;
}
.apparel_list img {
  display: inline-block;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.apparel_list .apparel_item {
  width: calc(16.6667% - 17px);
  text-align: center;
}
.apparel_item p {
  border-top: 1px solid #4E6183;
  border-bottom: 1px solid #4E6183;
  color: #4E6183;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 20px;
  padding: 6px 8px;
}
@media only screen and (max-width: 1024px) {
  .line_list .line_item p {
    font-size: 16px;
  }
  .line_list .line_item p .small {
    font-size: 12px;
  }
  .line_list .line_item p.moresmall {
    font-size: 10px;
  }
  .item_cont ul {
    gap: 14px 12px;
  }
  .item_cont ul li {
    padding-left: 14px;
    width: calc(100% / 3 - 24px / 3);
  }
  .item_cont ul li::before {
    top: 9px;
  }
  .apparel_item p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .line_cont {
    padding: 60px 0;
  }
  .line_title {
    margin-bottom: 40px;
  }
  .line_title span {
    font-size: 19px;
    padding: 0 56px;
  }
  .line_title span::before, 
  .line_title span::after {
    width: 46px;
    top: auto;
    bottom: 22px;
  }
  .line_title span::before {
    transform: rotate(65deg);
  }
  .line_title span::after {
    transform: rotate(-65deg);
  }
  .line_list {
    flex-wrap: wrap;
    gap: 28px 0;
    margin-bottom: 27px;
  }
  .line_list .line_item {
    display: block;
    width: 100%;
    padding: 30px 5%;
  }
  .line_list .num {
    top: -15px;
    left: -5px;
    right: auto;
  }
  .line_list .line_item p {
    font-size: 20px;
  }
  .line_list .line_item p .small{
    font-size: 15px;
  }
  .line_list .line_item p.moresmall{
    font-size: 15px;
  }
  .line_lead {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
  }
  .btn_line a {
    gap: 10px;
    width: 100%;
    height: 55px;
    font-size: 15px;
  }
  .btn_line a img {
    width: 23px;
  }
  .line_acc > span {
    gap: 10px;
    width: 100%;
    height: 55px;
    font-size: 15px;
  }
  .line_acc .open_icon {
    width: 15px;
    right: 14px;
  }
  .line_acc .open_icon::after {
    height: 15px;
  }
  .line_content .title {
    padding-bottom: 19px;
    margin-bottom: 35px;
    font-size: 21px !important;
  }
  .line_content .title .green_line {
    width: 30px;
    height: 1px;
  }
  .line_content .title .green_line:after {
    width: 15px;
    height: 1px;
  }
  .line_content .sec01 {
    margin-top: 60px;
  }
  .line_content .sec01 * {
    font-size: 13px;
    line-height: 1.74;
  }
  .line_content .sec01 ol {
    flex-direction: column;
    gap: 20px;
  }
  .line_content .sec01 ol li:nth-child(odd) {
    width: 100%;
  }
  .line_content .sec01 ol li:nth-child(odd) figure {
    position: relative;
    max-width: 275px;
    margin: auto;
  }
  .line_content .sec01 ol li:nth-child(even) {
    width: 8px;
    height: 36px;
    margin: 0 auto;
  }
  .line_content .sec01 ol li:nth-child(odd) figure .u-sp {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 75px;
  }
  .line_content .sec01 ol li figure + p {
    margin-top: 20px;
  }
  .line_content .sec02 {
    margin-top: 70px;
  }
  .line_content .sec02 * {
    font-size: 13px;
    line-height: 1.48;
  }
  .line_content .sec02 ol {
    gap: 45px;
  }
  .line_content .sec02 ol li {
    display: block;
  }
  .line_content .sec02 ol li figure {
    max-width: none;
    width: 100%;
  }
  .line_content .sec02 ol li .txt_area {
    max-width: none;
    width: 100%;
  }
  .line_content .sec02 ol li .txt_area .number {
    margin-bottom: 6px;
    font-size: 55px;
  }
  .line_content .sec02 ol li .txt_area .title03 {
    margin-bottom: 13px;
    font-size: 17px;
  }
  .line_content .sec02 ol li .txt_area .green_box {
    height: 30px;
    margin: 17px 0 10px;
    border-radius: 17px;
  }
  .line_content .sec02 ol li .txt_area .green li {
    margin-left: 0;
  }
  .line_content .sec02 ol li .txt_area .green.dotte li {
    padding-left: 12px;
  }
  .line_content .sec02 ol li .txt_area .green.dotte li:before {
    top: 0.8em;
    width: 4px;
    height: 4px;
  }
  .purchase_item {
    padding-top: 45px;
  }
  .item_cont h3 {
    font-size: 17px;
    padding: 15px 5px;
  }
  .item_cont .item_inn {
    padding: 15px;
  }
  .item_cont .item_inn + h3 {
    margin-top: 30px;
  }
  .item_cont ul {
    gap: 14px 10px;
  }
  .item_cont ul li {
    font-size: 13px;
    padding-left: 12px;
    width: calc(100% / 2 - 10px / 2);
  }
  .item_cont ul li::before {
    height: 5px;
    width: 5px;
    top: 7px;
  }
  .item_cont h4 {
    font-size: 14px;
    margin-bottom: 17px;
    padding: 6px 8px;
  }
  .item_cont p {
    font-size: 13px;
    margin-top: 20px;
  }
  .item_cont ul + h4 {
    margin-top: 30px;
  }
  .apparel_list {
    gap: 25px 15px;
  }
  .apparel_list .apparel_item {
    width: calc(50% - 7.5px);
  }
  .apparel_item p {
    font-size: 14px;
    margin-top: 20px;
    padding: 6px 8px;
  }
}
@media only screen and (max-width: 640px) {
  .item_cont h3 {
    font-size: 16px;
  }
}

.excluded_item {
  background: url(../img/mens/bg_moreblue.png);
  padding: 120px 0;
}
.excluded_box {
  background: #fff;
  padding: 80px 15px 52px;
  text-align: center;
  position: relative;
}
.excluded_box + .excluded_box {
  margin-top: 38px;
}
.excluded_box .ng {
  background: #4E6183;
  border-radius: 50%;
  color: #fff;
  width: 80px;
  height: 80px;
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  line-height: 75px;
  text-align: center;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
}
.excluded_box h3 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}
.excluded_box ul {
  max-width: 680px;
  margin: 0 auto;
}
.excluded_box ul li {
  font-size: 18px;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  padding-left: 33px;
  position: relative;
  text-align: left;
}
.excluded_box ul li::before {
  content: "";
  background: url(../img/new/icon_check.svg) center center no-repeat;
  background-size: 18px 18px;
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
}
.excluded_box ul li:last-child {
  margin-bottom: 0;
}
.excluded_box p {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: 28px;
}
@media only screen and (max-width: 768px) {
  .excluded_item {
    padding: 60px 0 55px;
  }
  .excluded_item .apparel-head {
    margin-bottom: 30px;
  }
  .excluded_box {
    padding: 50px 15px 30px;
  }
  .excluded_box + .excluded_box {
    margin-top: 22px;
  }
  .excluded_box .ng {
    width: 56px;
    height: 56px;
    font-size: 18px;
    line-height: 52px;
    top: -16px;
  }
  .excluded_box h3 {
    font-size: 16px;
    margin-bottom: 18px;
  }
  .excluded_box ul {
    max-width: 100%;
    margin: 0 auto;
  }
  .excluded_box ul li {
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 22px;
  }
  .excluded_box ul li::before {
    background-size: 15px 15px;
    width: 15px;
    height: 15px;
    top: 5px;
  }
  .excluded_box p {
    font-size: 12px;
    margin-top: 18px;
  }
}

/* NEW トップページ
--------------------------------------*/
/* 共通 */
.main_contents {
  background: url("../img/new/bg_white.png");
}
.bg_green {
  background: url("../img/new/bg_green.png");
}
.new-head {
  text-align: center;
  margin-bottom: 38px;
}
.new-head_jp {
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.new-head_en {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.13em;
  margin-top: 13px;
}
.page_nav {
  background-color: #B48D56;
  padding: 28.5px 0;
}
.page_nav ul {
  display: flex;
  justify-content: center;
  max-width: 1035px;
  margin: 0 auto;
}
.page_nav li a, 
.page_nav li span {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 2;
  display: block;
  transition: .3s;
  cursor: pointer;
}
.page_nav li span:hover {
  opacity: 0.7;
}
.page_nav li {
  padding: 4px 50px;
  border-right: 1px solid #CCA46A;
}
.page_nav li:first-child {
  padding-left: 0;
}
.page_nav li:last-child {
  padding-right: 0;
  border-right: 0;
}
@media only screen and (max-width: 1080px) {
  .page_nav li {
    padding: 4px 30px;
  }
  .page_nav li a, 
  .page_nav li span {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .new-head {
    margin-bottom: 20px;
  }
  .new-head_jp {
    font-size: 21px;
    line-height: 32px;
  }
  .new-head_en {
    font-size: 10px;
    margin-top: 10px;
  }
  .page_nav {
    padding: 17px 0;
  }
  .page_nav ul {
    flex-wrap: wrap;
    gap: 17px 0;
  }
  .page_nav li {
    padding: 0 !important;
    border-right: 0;
    margin: 0;
    width: 50%;
  }
  .page_nav li a, 
  .page_nav li span {
    font-size: 14px;
    line-height: 1;
  }
}
/* TOPページコンテンツ */
.top_banner {
  padding: 80px 0 120px;
}
.top_banner img {
  display: inline-block;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.banner_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 968px;
  margin: 0 auto;
  gap: 20px 4.1322%;
}
.banner_list .banner_img {
  width: 47.9339%;
}
@media screen and (max-width: 768px) {
  .top_banner {
    padding: 40px 0 60px;
  }
  .banner_list {
    gap: 15px 0;
  }
  .banner_list .banner_img {
    width: 100%;
  }
}
#news.new-news {
  padding-bottom: 130px;
}
#news.new-news .news-wrap {
  width: 100%;
  padding: 0;
}
#news.new-news .news-wrap .title {
  margin-right: 55px;
}
#news.new-news .news-wrap .main span {
  font-size: 35px;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.13em;
}
#news.new-news .txtbox li .photo {
  margin-right: 17px;
}
#news.new-news .txtbox li .photo img {
  border: 1px solid #E1E1E1;
}
#news.new-news .news-wrap .txtbox {
  flex-grow: 1;
}
#news.new-news .txtbox .data {
  font-size: 14px;
  margin-bottom: 1em;
  width: auto;
}
#news.new-news .txtbox .txt {
  width: auto;
}
#news.new-news .txtbox .txt a {
  display: block;
  color: #333333;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 896px) {
  #news.new-news .news-wrap .title {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #news.new-news {
    padding-bottom: 65px;
  }
  #news.new-news .news-wrap .title {
    margin-bottom: 20px;
  }
  #news.new-news .news-wrap .main span {
    font-size: 20px;
  }
  #news.new-news .txtbox li .photo {
    width: auto;
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
  }
  #news.new-news .txtbox .data {
    font-size: 13px;
  }
  #news.new-news .txtbox .txt a {
    font-size: 16px;
  }
  #news.new-news .txtbox li {
    border-bottom: dotted 1px #e6e6e6;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  #news.new-news .txtbox li:last-child {
    border-bottom: none;
  }
}
.collection_service {
  padding-bottom: 140px;
}
.service_title {
  text-align: center;
  margin-bottom: 57px;
}
.service_title span {
  display: inline-block;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 0 50px;
  position: relative;
}
.service_title span::before, 
.service_title span::after {
  content: "";
  display: inline-block;
  background: #85B082;
  width: 42px;
  height: 1px;
  position: absolute;
  top: 18px;
}
.service_title span::before {
  left: 0;
  transform: rotate(60deg);
}
.service_title span::after {
  right: 0;
  transform: rotate(-60deg);
}
.link_banner img {
  display: inline-block;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.link_banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 1.333334%;
  margin-top: 100px;
}
.link_banner .banner_img {
  width: 49.333333%;
}
.service_list img {
  display: inline-block;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.service_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 1.5000008%;
  margin-top: 55px;
}
.service_list .service_item {
  border: 1px solid #85B082;
  border-radius: 5px;
  width: 15.416666%;
  box-sizing: border-box;
}
.service_list .service_item .text {
  background: #85B082;
  border: 0 0 5px 5px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  margin-top: 10px;
  padding: 10px 5px;
  text-align: center;
}
@media only screen and (max-width: 1200px) {
  .service_list {
    gap: 40px 2%;
  }
  .service_list .service_item {
    width: 32%;
  }
  .service_list .service_item .text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1024px) {
  .service_title span {
    font-size: 18px;
  }
  .service_title span::before, 
  .service_title span::after {
    width: 30px;
    top: 13px;
  }
}
@media screen and (max-width: 768px) {
  .collection_service {
    padding-bottom: 70px;
  }
  .service_title {
    margin-bottom: 40px;
  }
  .service_title span {
    font-size: 15px;
    padding: 0 70px;
  }
  .service_title span::before, 
  .service_title span::after {
    width: 53px;
    top: 47px;
  }
  .service_title span::before {
    transform: rotate(65deg);
  }
  .service_title span::after {
    transform: rotate(-65deg);
  }
  .link_banner {
    gap: 15px 0;
    margin-top: 50px;
  }
  .link_banner .banner_img {
    width: 100%;
  }
  .service_list {
    gap: 20px 3%;
    margin-top: 28px;
  }
  .service_list .service_item {
    width: 48.5%;
  }
  .service_list .service_item .text {
    font-size: 13px;
  }
}

.enhancement_item {
  padding: 110px 0 120px;
}
.enhancement_item img {
  display: inline-block;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.item_area + .item_area {
  margin-top: 95px;
}
.itemlist_box .item_inn_box {
  background: #fff;
  padding: 30px;
  margin-top: 10px;
}
.itemlist_box .item_inn_box:first-child {
  margin-top: 0;
}
.itemlist_box .item_inn_title {
  display: flex;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}
.itemlist_box .item_inn_title .txt {
  font-size: 22px;
  font-weight: bold;
  position: relative;
  padding-left: 25px;
}
.itemlist_box .item_inn_title .txt:before {
  background: #85B082;
  border-radius: 50%;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 11px;
}
.itemlist_box .item_inn_title .btn_acc {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.itemlist_box .item_inn_title.active .btn_acc {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.itemlist_box .item_inn_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 1.3333%;
  margin: 40px 0 10px 10px;
  border-top: none;
}
.itemlist_box .item_inn_list li {
  width: 24%;
  font-size: 15px;
  line-height: 2;
}
.itemlist_box .item_inn_list li a, 
.itemlist_box .item_inn_list li span {
  padding-left: 13px;
  position: relative;
}
.itemlist_box .item_inn_list li a:before, 
.itemlist_box .item_inn_list li span:before {
  background: #85B082;
  border-radius: 50%;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 8px;
}
.itemlist_box .item_txt {
  font-size: 15px;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .enhancement_item {
    padding: 55px 0 60px;
  }
  .item_area + .item_area {
    margin-top: 45px;
  }
  .itemlist_box .item_inn_box {
    padding: 15px;
  }
  .itemlist_box .item_inn_title .txt {
    font-size: 16px;
    padding-left: 18px;
  }
  .itemlist_box .item_inn_title .txt:before {
    width: 8px;
    height: 8px;
    top: 9px;
  }
  .itemlist_box .item_inn_title .btn_acc {
    width: 25px;
  }
  .itemlist_box .item_inn_list {
    gap: 10px 2%;
    margin: 20px 0 0;
  }
  .itemlist_box .item_inn_list li {
    width: 49%;
    font-size: 13px;
    line-height: 1.8;
  }
  .itemlist_box .item_inn_list li a, 
  .itemlist_box .item_inn_list li span {
    padding-left: 10px;
  }
  .itemlist_box .item_inn_list li a:before, 
  .itemlist_box .item_inn_list li span:before {
    width: 5px;
    height: 5px;
    top: 8px;
  }
  .itemlist_box .item_txt {
    font-size: 13px;
    margin-top: 15px;
  }
}
.purchase_about {
  padding: 120px 0 110px ;
}
.purchase_box {
  background: #fff;
  margin-bottom: 20px;
  padding: 80px 15px 50px;
  text-align: center;
  position: relative;
}
.purchase_box.ok_list {
  border: 1px solid #85B082;
}
.purchase_box.ng_list {
  border: 1px solid #CCA46A;
}
.purchase_box .icon {
  border-radius: 50%;
  color: #fff;
  width: 80px;
  height: 80px;
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  line-height: 75px;
  text-align: center;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
}
.purchase_box.ok_list .icon {
  background: #85B082;
}
.purchase_box.ng_list .icon {
  background: #CCA46A;
}
.purchase_box h3 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}
.purchase_box ul {
  max-width: 480px;
  margin: 0 auto;
}
.purchase_box ul li {
  font-size: 18px;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  position: relative;
  text-align: left;
}
.purchase_box.ok_list ul li {
  padding-left: 35px;
}
.purchase_box.ng_list ul li {
  padding-left: 30px;
}
.purchase_box ul li::before {
  content: "";
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: 0;
}
.purchase_box.ok_list ul li::before {
  background-image: url("../img/new/icon_ok.svg");
  background-size: 23px 23px;
  width: 23px;
  height: 23px;
  top: 3px;
}
.purchase_box.ng_list ul li::before {
  background-image: url("../img/new/icon_ng.svg");
  background-size: 18px 18px;
  width: 18px;
  height: 18px;
  top: 6px;
}
.purchase_box ul li:last-child {
  margin-bottom: 0;
}
.purchase_wrap + .purchase_wrap {
  margin-top: 100px;
}
.purchase_wrap p {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .purchase_about {
    padding: 60px 0 55px;
  }
  .purchase_box {
    padding: 50px 15px 30px;
  }
  .purchase_box .icon {
    width: 56px;
    height: 56px;
    font-size: 18px;
    line-height: 52px;
    top: -16px;
  }
  .purchase_box h3 {
    font-size: 16px;
    margin-bottom: 18px;
  }
  .purchase_box ul {
    max-width: 100%;
    margin: 0 auto;
  }
  .purchase_box ul li {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .purchase_box.ok_list ul li {
    padding-left: 26px;
  }
  .purchase_box.ng_list ul li {
    padding-left: 21px;
  }
  .purchase_box.ok_list ul li::before {
    background-image: url("../img/new/icon_ok.svg");
    background-size: 15px 15px;
    width: 15px;
    height: 15px;
    top: 3px;
  }
  .purchase_box.ng_list ul li::before {
    background-image: url("../img/new/icon_ng.svg");
    background-size: 13px 13px;
    width: 13px;
    height: 13px;
    top: 5px;
  }
  .purchase_wrap + .purchase_wrap {
    margin-top: 50px;
  }
  .purchase_wrap p {
    font-size: 12px;
  }
}
#expert {
  padding: 100px 0;
  min-height: auto;
}
#expert .box .inn {
  padding: 75px 40px 55px 40px;
}
.about_area {
  padding-bottom: 120px;
}
.achievement_no01 {
  padding: 100px 0 45px;
}
.achievement_no01 * {
  box-sizing: border-box;
}
.achievement_no01 img {
  display: inline-block;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.achievement_no01 p {
  font-size: 15px;
  line-height: 2;
}
.achievement_no01 .container {
  position: relative;
}
.achievement_no01 .flex {
  justify-content: space-between;
}
.achievement_no01 figure {
  max-width: 398px;
  width: 33%;
}
.achievement_no01 .txt_area {
  max-width: 730px;
  width: 60%;
}
.achievement_no01 .txt_area .title02 {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.achievement_no01 .txt_area .title02 .text-green {
  margin: 0 0 0 0.2em;
  font-size: 40px;
  color: #99BA63;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.achievement_no01 .txt_area .fwb {
  margin-bottom: 35px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.75;
}
.achievement_no01 .txt_area li {
  line-height: 2;
  position: relative;
  padding-left: 27px;
}
.achievement_no01 .txt_area li img {
  position: absolute;
  top: 0.5em;
  left: 0;
}
.achievement_no01 .txt_area li + li {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .about_area {
    padding-bottom: 60px;
  }
  .achievement_no01 {
    padding: 50px 0 35px;
  }
  .achievement_no01 p {
    font-size: 13px;
    line-height: 1.5;
  }
  .achievement_no01 .flex {
    display: block;
  }
  .achievement_no01 figure {
    max-width: 280px;
    width: 90%;
    margin: 0 auto 40px;
  }
  .achievement_no01 .txt_area {
    max-width: none;
    width: 100%;
  }
  .achievement_no01 .txt_area .title02 {
    margin-bottom: 14px;
    font-size: 20px;
  }
  .achievement_no01 .txt_area .title02 .text-green {
    font-size: 30px;
  }
  .achievement_no01 .txt_area .fwb {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.6;
  }
  .achievement_no01 .txt_area li {
    padding-left: 25px;
  }
  .achievement_no01 .txt_area li img {
    width: 15px;
  }
  .achievement_no01 .txt_area li + li {
    margin-top: 10px;
  }
}
.first_how img {
  display: inline-block;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.first_how p {
  font-size: 15px;
  line-height: 2;
}
.first_how .title02 {
  margin-bottom: 66px;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  line-height: 1.72;
}
.first_title {
  text-align: center;
  margin-bottom: 33px;
}
.first_title span {
  display: inline-block;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.05em;
  padding: 0 65px;
  position: relative;
}
.first_title span::before, 
.first_title span::after {
  content: "";
  display: inline-block;
  background: #85B082;
  width: 75px;
  height: 1px;
  position: absolute;
  top: 45px;
}
.first_title span::before {
  left: 0;
  transform: rotate(60deg);
}
.first_title span::after {
  right: 0;
  transform: rotate(-60deg);
}
.first_how .flex {
  justify-content: center;
  gap: 30px;
}
.first_how .in {
  width: 380px;
  background: #F5F6F3;
  border-radius: 5px;
  overflow: hidden;
}
.first_how .in .title03 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  background: #85B082;
}
.first_how .in .title03:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -15px;
  display: block;
  background: #85B082;
  width: 35px;
  height: calc(tan(50deg) * 35px / 2);
  margin: auto;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition-duration: .3s;
}
.first_how .in .txt_area {
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .first_title span {
    font-size: 20px;
    padding: 0 50px;
  }
  .first_title span::before, 
  .first_title span::after {
    width: 70px;
    top: 35px;
  }
}
@media screen and (max-width: 768px) {
  .first_how p {
    font-size: 13px;
    line-height: 1.5;
  }
  .first_how .title02 {
    margin-bottom: 32px;
    font-size: 17px;
    line-height: 1.65;
  }
  .first_title {
    margin-bottom: 21px;
  }
  .first_title span {
    font-size: 17px;
    padding: 0 56px;
  }
  .first_title span::before, 
  .first_title span::after {
    width: 55px;
    top: 46px;
  }
  .first_title span::before {
    transform: rotate(65deg);
  }
  .first_title span::after {
    transform: rotate(-65deg);
  }
  .first_how .flex {
    flex-wrap: wrap;
    gap: 20px;
  }
  .first_how .in {
    width: 100%;
  }
  .first_how .in .title03 {
    height: 65px;
    font-size: 16px;
    line-height: 1.36;
  }
  .first_how .in .title03:after {
    bottom: -12.5px;
    width: 30px;
    height: calc(tan(50deg) * 30px / 2);
  }
  .first_how .in .txt_area {
    padding: 25px;
  }
}
@media only screen and (max-width: 640px) {
  .first_title span {
    font-size: 15px;
    padding: 0 50px;
  }
  .first_title span::before, 
  .first_title span::after {
    width: 52px;
    top: 42px;
  }
}
.point_area {
  padding: 120px 0;
  background: #F5F6F3;
}
.point_area * {
  box-sizing: border-box;
}
.point_area img {
  display: inline-block;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.point_area p {
  font-size: 15px;
  line-height: 2;
}
.point_area .lead_txt {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 28px;
  text-align: center;
}
.point_area .title02 {
  margin-bottom: 55px;
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  line-height: 1.43;
}
.point_area .white_box {
  display: flex;
  justify-content: space-between;
  padding: 60px;
  background: #fff;
}
.point_area .white_box + .white_box {
  margin-top: 20px;
}
.point_area .white_box figure {
  max-width: 475px;
  width: 45%;
}
.point_area .white_box:nth-child(odd) figure {
  order: 2;
}
.point_area .white_box .txt_area {
  max-width: 550px;
  width: 50%;
}
.point_area .white_box:nth-child(odd) .txt_area {
  order: 1;
}
.point_area .white_box .txt_area .point {
  margin-bottom: 28px;
  font-size: 60px;
  color: #85B082;
  font-style: italic;
  letter-spacing: 0.1em;
  line-height: 1;
}
.point_area .white_box .txt_area .point span {
  color: #85B082;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  letter-spacing: 0.1em;
  position: relative;
  margin-right: 14px;
}
.point_area .white_box .txt_area .point span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #85B082;
}
.point_area .white_box .txt_area .title03 {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .point_area {
    padding: 55px 0;
  }
  .point_area p {
    font-size: 13px;
    line-height: 1.48;
  }
  .point_area .lead_txt {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .point_area .title02 {
    margin-bottom: 26px;
    font-size: 18px;
    line-height: 1.2;
  }
  .point_area .white_box {
    display: block;
    padding: 25px;
  }
  .point_area .white_box + .white_box {
    margin-top: 12px;
  }
  .point_area .white_box figure {
    max-width: none;
    width: 100%;
  }
  .point_area .white_box .txt_area {
    max-width: none;
    width: 100%;
  }
  .point_area .white_box .txt_area .point {
    margin-bottom: 20px;
    font-size: 40px;
  }
  .point_area .white_box .txt_area .point span {
    font-size: 16px;
    margin-right: 10px;
  }
  .point_area .white_box .txt_area .point span {
    margin-right: 8px;
    font-size: 15px;
  }
  .point_area .white_box .txt_area .title03 {
    margin-bottom: 13px;
    font-size: 17px;
    line-height: 1.42;
  }
}
.commit_area {
  background: #85B082;
  padding: 120px 0;
}
.commit_box {
  background: #fff;
  padding: 10px;
}
.commit_box .commit_box-in {
  border: 1px solid #85B082;
  padding: 45px 80px 55px;
}
.commit_box dl {
  border-bottom: 1px dashed #85B082;
  padding: 25px 0;
}
.commit_box dl dt {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 17px;
  padding-left: 30px;
  position: relative;
}
.commit_box dl dt span {
  color: #85B082;
  font-weight: bold;
  line-height: 1.5;
}
.commit_box dl dt::after {
  background: url("../img/new/commit_icon.svg") no-repeat;
  background-size: 20px 15px;
  content: "";
  display: inline-block;
  width: 20px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 8px;
}
.commit_box dl dd {
  font-size: 15px;
  line-height: 2;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .commit_area {
    padding: 60px 0;
  }
  .commit_box {
    padding: 8px;
  }
  .commit_box .commit_box-in {
    padding: 25px 4.5%;
  }
  .commit_box dl {
    padding: 20px 0;
  }
  .commit_box dl dt {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 26px;
  }
  .commit_box dl dt::after {
    background-size: 18px 13px;
    width: 18px;
    height: 13px;
    top: 7px;
  }
  .commit_box dl dd {
    font-size: 14px;
    padding-left: 26px;
  }
}
#column.new-column {
  background: url(../img/new/bg_green.png);
  padding: 110px 0 100px;
}
#column.new-column .column-wrap {
  max-width: 100%;
}
#column.new-column .item_post .post_blog_item .inner {
  background: none;
  padding: 0;
  max-width: 100%;
}
#column.new-column .item_post .post_blog_item .image a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#column.new-column .item_post .post_blog_item .data {
  color: #85B082;
  margin: 15px 0;
  font-size: 15px;
}
#column.new-column .item_post .post_blog_item .item_info p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
#column.new-column .item_post .post_blog_item .item_info p a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#column.new-column .item_post .post_blog_item .item_info p a {
  color: #333333;
}
#column .link {
  margin-top: 45px;
}
#column .link a {
  color: #85B082;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 20px;
  margin-left: auto;
}
#column .link a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#column .link span {
  color: #85B082;
  font-size: 17px;
  font-weight: bold;
}
.line-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.news-cate {
  margin-bottom: 40px;
  text-align: center;
}
.news-cate ul {
  display: flex;
}
.news-cate ul li {
  width: 50%;
}
.news-cate ul li a {
  background: #fff;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding: 28px 10px;
}
.news-cate ul li a.act {
  background: #85B082;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #column.new-column .item_post .post_blog_item {
    width: 23.75%;
    margin: 0 1.666667% 0 0;
    display: block;
  }
  #column.new-column .item_post .post_blog_item:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #column.new-column {
    padding: 55px 0 50px;
  }
  #column.new-column .item_post .post_blog_item {
    width: 48.5%;
    margin: 0 3% 4% 0;
  }
  #column.new-column .item_post .post_blog_item:nth-child(2n) {
    margin-right: 0;
  }
  #column.new-column .item_post .post_blog_item .data {
    margin: 12px 0;
    font-size: 14px;
  }
  #column.new-column .item_post .post_blog_item .item_info p {
    font-size: 14px;
  }
  #column .link {
    margin-top: 20px;
  }
  #column .link a {
    gap: 0 16px;
  }
  #column .link span {
    font-size: 16px;
  }
  .news-cate {
    margin-bottom: 20px;
  }
  .news-cate ul li a {
    font-size: 13px;
    padding: 15px 8px;
  }
}
.step_area {
  padding: 110px 0 120px;
}
.step_area * {
  box-sizing: border-box;
}
.step_area img {
  display: inline-block;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.step_area .box {
  justify-content: space-between;
  padding: 50px;
  background: #F5F6F3;
}
.step_area .box > .flex {
  justify-content: space-between;
  margin-bottom: 42px;
}
.step_area .box > figure, .step_area .box .flex > figure {
  max-width: 500px;
  width: 45%;
}
.step_area .box .in {
  width: 52%;
}
.step_area .box .in .step {
  margin-bottom: 28px;
  font-size: 60px;
  color: #85B082;
  font-style: italic;
  letter-spacing: 0.1em;
  line-height: 1;
}
.step_area .box .in .step span {
  color: #85B082;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  letter-spacing: 0.1em;
  position: relative;
  margin-right: 14px;
}
.step_area .box .in .step span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #85B082;
}
.step_area .box .in .title03 {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.step_area .box .in .title04 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 1em;
  margin-bottom: 16px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  background: #85B082;
  border-radius: 20px;
}
.step_area .box .in p + .title04 {
  margin-top: 30px;
}
.step_area .box .in p {
  font-size: 15px;
  line-height: 2;
}
.step_area .box .in .mt1em {
  margin-top: 2em;
}
.step_area .box .in .white_box {
  border: 1px solid #85B082;
  max-width: 500px;
  padding: 16px 25px;
  margin: 20px 0;
}
.step_area .box .in .white_box p {
  font-weight: bold;
}
.step_area .btn_line a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 300px;
  height: 70px;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}
.step_area .btn_line a img {
  width: 30px;
}
.step_area .btn_line + p {
  margin-top: 20px;
}
.step_area .acc_area {
  margin-bottom: 60px;
}
.step_area .btn_pdf a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 700px;
  width: 100%;
  margin: 60px auto 20px;
  font-size: 30px;
  color: #85B082;
  font-weight: bold;
  text-align: center;
  background: #fff;
  border: 1px solid #85B082;
  padding: 40px 0;
  position: relative;
}
.step_area .btn_pdf a .icon {
  width: 24px;
  height: 2px;
  background: #85B082;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: .3s;
}
.step_area .arrow {
  max-width: 40px;
  margin: 30px auto;
}
.step_area .white_box_s {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  max-width: 700px;
  width: 100%;
  padding: 20px;
  margin: 0 auto 20px;
  border: 1px solid #85B082;
}
.step_area .white_box_s img {
  width: 164px;
}
.step_area .white_box_s p {
  font-size: 14px;
  line-height: 1.85;
}
.step_area .white_box_s + p.small {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.step_area .white_box_l {
  padding: 26px 34px;
  margin-top: 60px;
  background: #fff;
}
.step_area .white_box_l .title03 {
  padding-bottom: 10px;
  margin-bottom: 26px;
  font-size: 25px;
  font-weight: bold;
  border-bottom: 1px solid #99BA63;
}
.step_area .white_box_l .fwb {
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.87;
}
@media screen and (max-width: 768px) {
  .step_area {
    padding: 50px 0 55px;
  }
  .step_area .title02 {
    margin-bottom: 30px;
    font-size: 18px;
  }
  .step_area .box {
    display: block;
    padding: 10px 4.5% 30px;
  }
  .step_area .box > .flex {
    display: block;
    margin-bottom: 26px;
  }
  .step_area .box figure {
    max-width: none;
    width: 100%;
    margin-bottom: 26px;
  }
  .step_area .box .in {
    width: 100%;
  }
  .step_area .box .in .step {
    margin-bottom: 20px;
    font-size: 40px;
  }
  .step_area .box .in .step span {
    font-size: 16px;
    margin-right: 10px;
  }
  .step_area .box .in .title03 {
    margin-bottom: 20px;
    font-size: 17px;
  }
  .step_area .box .in .title03 br {
    display: none;
  }
  .step_area .box .in .title04 {
    height: 33px;
    margin-bottom: 10px;
    font-size: 15px;
    border-radius: 33px;
  }
  .step_area .box .in p {
    font-size: 14px;
    line-height: 1.6;
  }
  .step_area .box .in p + .title04 {
    margin-top: 22px;
  }
  .step_area .box .in .white_box {
    padding: 16px 20px;
    margin: 16px 0;
  }
  .step_area .btn_line a {
    gap: 10px;
    width: 100%;
    height: 65px;
    font-size: 16px;
  }
  .step_area .btn_line a img {
    width: 20px;
  }
  .step_area .btn_line + p {
    margin-top: 10px;
  }
  .step_area .acc_area {
    margin-bottom: 20px;
  }
  .step_area .arrow {
    max-width: 40px;
    margin: 30px auto;
  }
  .step_area .btn_pdf a {
    gap: 10px;
    margin: 20px auto 10px;
    padding: 15px 0;
    font-size: 12px;
  }
  .step_area .btn_pdf img {
    width: 20px;
  }
  .step_area .btn_pdf a .icon {
    width: 15px;
    height: 1px;
    right: 10px;
  }
  .step_area .white_box_s {
    display: block;
    padding: 16px 20px;
    margin: 0 auto 15px;
  }
  .step_area .white_box_s img {
    display: block;
    width: 144px;
    margin: 0 auto 10px;
  }
  .step_area .white_box_s p {
    font-size: 11px;
    line-height: 1.56;
  }
  .step_area .white_box_s + p.small {
    margin: 0 auto;
    font-size: 11px;
    text-align: center;
  }
  .step_area .white_box_l {
    padding: 20px 18px;
    margin-top: 25px;
  }
  .step_area .white_box_l .title03 {
    padding-bottom: 7px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  .step_area .white_box_l .fwb {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.53;
  }
}
.faq_area {
  padding: 120px 0 100px;
}
.faq_cont dl + dl {
  margin-top: 25px;
}
.faq_cont dl dt {
  background: #F7F7F7;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.7;
  padding: 20px 75px;
  cursor: pointer;
  position: relative;
}
.faq_cont dl dt:before {
  content: "Q";
  font-size: 30px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
  color: #85B082;
  line-height: 1;
  position: absolute;
  top: 17px;
  left: 28px;
}
.faq_cont dl dt::after {
  background: url("../img/new/faq_acc.svg") no-repeat;
  background-size: 19px 11px;
  content: "";
  display: inline-block;
  width: 19px;
  height: 11px;
  margin-top: -5.5px;
  position: absolute;
  right: 30px;
  top: 50%;
}
.faq_cont dl dt.open::after {
  transform: rotate(-180deg);
}
.faq_cont dl dd {
  display: none;
  font-size: 15px;
  line-height: 2;
  padding: 24px 75px 0 75px;
  position: relative;
}
.faq_cont dl dd:before {
  content: "A";
  font-size: 30px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  top: 22px;
  left: 28px;
}
@media screen and (max-width: 768px) {
  .faq_area {
    padding: 60px 0 55px;
  }
 .faq_cont dl dt {
    font-size: 16px;
    padding: 18px 50px 18px 44px;
  }
  .faq_cont dl dt:before {
    font-size: 22px;
    top: 19px;
    left: 13px;
  }
  .faq_cont dl dt::after {
    background-size: 12px 7px;
    width: 12px;
    height: 7px;
    margin-top: -3.5px;
    right: 14px;
    top: 50%;
  }
  .faq_cont dl dd {
    font-size: 15px;
    padding: 20px 50px 22px 44px;
  }
  .faq_cont dl dd:before {
    font-size: 22px;
    top: 22px;
    left: 13px;
  }
}
.sdgs_area {
  padding: 90px 0 100px;
  background: #FCFAF4;
}
.sdgs_area img {
  max-width: 100%;
}
.sdgs_area .wrap {
  width: 90%;
  margin: auto;
}
.sdgs_area .sdgs_title {
  margin-bottom: 50px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.sdgs_area .logo {
  width: 80%;
  margin: 0 auto 50px;
  text-align: center;
}
.sdgs_area .mark_area {
  max-width: 80%;
  margin: 0 auto 40px;
}
.sdgs_area .mark_area p {
  font-size: 15px;
  text-align: center;
}
.sdgs_area .mark_area .mark {
  margin-top: 36px;
}
.sdgs_area .btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 362px;
  width: 90%;
  height: 3.75em;
  margin: auto;
  font-size: 16px;
  color: #85B082;
  text-decoration: none;
  border: 1px solid #85B082;
  background: #FFF;
}
.sdgs_area .btn a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  background: url("../img/sdgs_img/icon_blank_w.svg") no-repeat center center;
  background: url("../img/sdgs_img/icon_blank.svg") no-repeat center center;
  background-size: cover;
}
.sdgs_area .btn a:hover {
  color: #fff;
  background: #85B082;
}
.sdgs_area .btn a:hover:after {
  background: url("../img/sdgs_img/icon_blank_w.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .sdgs_area {
    padding: 10% 0;
  }
  .sdgs_area .sdgs_title {
    margin-bottom: 5%;
    font-size: 16px;
  }
  .sdgs_area .logo {
    margin: 0 auto 5%;
  }
  .sdgs_area .mark_area {
    margin-bottom: 5% !important;
  }
  .sdgs_area .mark_area p {
    font-size: 12px;
  }
  .sdgs_area .mark_area .mark {
    margin-top: 5%;
  }
  .sdgs_area .btn a {
    font-size: 14px;
  }
  .sdgs_area .btn a:after {
    width: 16px;
    height: 16px;
  }
}