@font-face {
  font-family: "KUZO";
  src: url('assets/fonts/小塚ゴシック Pro R.ttf') format('TrueType');
}
html,
body {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
}
img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: flex;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
li {
  list-style-type: none;
}
a {
  color: black;
  text-decoration: none;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.background_img {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
}
.upper {
  text-transform: uppercase;
}
.login {
  display: none;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: white;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  z-index: 100;
}
.login input {
  width: 250px;
  height: 40px;
  border: 0.5px solid #0074C6;
  outline: none;
  border-radius: 5px;
  background-color: #fff;
  padding: 0 30px;
}
.login button {
  width: 250px;
  height: 40px;
  background-color: #0074C6;
  color: white;
  border-radius: 5px;
  border: none;
}
header {
  padding: 20px 0;
  background-color: white;
}
header.fixed {
  animation: header 0.5s ease-out;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  z-index: 100;
}
header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .wrapper .header_logo a img {
  max-width: 200px;
}
header .wrapper .header__menu .icon-close {
  display: none;
}
header .wrapper .header__menu ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40px;
	font-size: 0.8rem;
    font-weight: 400;
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 1px;
}
header .wrapper .header__menu ul li a {
  color: #999;
}
header .wrapper .burger {
  display: none;
}
@media screen and (max-width: 755px) {
  header {
    padding: 20px 0;
    background-color: white;
  }
  header .wrapper {
    padding: 0 14px;
  }
  header .wrapper .header_logo a img {
    max-width: 150px;
  }
  header .wrapper .header__menu {
    display: none;
    transition: 0.5s linear;
    transform: translateY(-120%);
  }
  header .wrapper .header__menu .icon-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  header .wrapper .header__menu .icon-close img {
    width: 20px;
  }
  header .wrapper .header__menu.show {
    position: fixed;
    animation: moveMenu 0.5s linear;
    transform: translateY(0%);
    transition: 0.5s linear;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 70px;
  }
  header .wrapper .header__menu ul {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    gap: 40px;
  }
  header .wrapper .header__menu ul li a {
    font-weight: bold;
  }
  header .wrapper .burger {
    display: block;
  }
}
section.offer {
  background-color: white;
}
section.offer .splide__slide img {
  vertical-align: bottom;
  height: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 755px) {
  section.offer .splide__slide img {
    height: auto;
    margin: 0 auto;
  }
}
.splide__arrow--prev {
  left: 0em;
}
.splide__arrow--next {
  right: 0em;
}
.splide__arrow {
  width: 50px;
  height: 50px;
  border-radius: 0px;
  background-color: #000;
}
.splide__arrow svg {
  fill: #fff;
  height: 2.2em;
  width: 2.2em;
}
.block-1__top {
  background: #f5d55f;
  background: linear-gradient(180deg, #f5d55f 9%, #fbe288 30%, #ffffff 70%, #ffffff 81%, #f5d55f 100%);
  box-shadow: inset 0 0 0 2px #f5d55f;
  text-align: center;
  padding: 15px 60px;
  margin-bottom: 50px;
}
.block-1__top.upper {
  text-transform: uppercase;
}
.block-1__top p {
  margin-bottom: 0px !important;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 755px) {
  .block-1__top {
    padding: 10px 10px;
  }
  .block-1__top p {
    font-size: 18px;
  }
  .splide__arrow {
    width: 36px;
    height: 36px;
  }
  .splide__arrow svg {
    height: 1.2em;
    width: 1.2em;
  }
}
section.second {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  /*background-image: url(assets/img/bg01.jpg);*/
  padding: 50px;
}
section.second .wrapper .section__top {
  background: #f5d55f;
  background: linear-gradient(180deg, #f5d55f 9%, #fbe288 30%, #ffffff 70%, #ffffff 81%, #f5d55f 100%);
  box-shadow: inset 0 0 0 2px #f5d55f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  border-radius: 30px;
}
section.second .wrapper .section__top .top__block {
  display: flex;
  align-items: center;
  justify-content: start;
}
section.second .wrapper .section__top .top__date {
  padding-left: 30px;
  padding-right: 80px;
  border-right: 2px solid white;
}
section.second .wrapper .section__top .top__date span {
  font-weight: bold;
}
section.second .wrapper .section__top .top__text {
  margin-left: 20px;
  font-weight: 600;
}
section.second .wrapper .section__top .top__icon {
  justify-self: end;
}
section.second .wrapper .section__top .top__icon .icon img {
  width: 30px;
  height: 30px;
}
section.second .wrapper .second__block-1 {
  max-width: 90%;
  margin: 0 auto;
  margin-top: 180px;
}
section.second .wrapper .second__block-1 .block-1__items {
  display: grid;
  grid-gap: 40px;
}
section.second .wrapper .second__block-1 .block-1__items .item {
  display: grid;
  grid-template-columns: 40% 60%;
}
section.second .wrapper .second__block-1 .block-1__items .item .item__text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
@media screen and (max-width: 755px) {
  section.second {
    padding: 30px 10px;
  }
  section.second .wrapper .section__top {
    padding: 10px 5px;
    border-radius: 30px;
  }
  section.second .wrapper .section__top .top__date {
    padding-left: 8px;
    padding-right: 0px;
    border-right: 0px solid white;
  }
  section.second .wrapper .section__top .top__date span {
    font-size: 18px;
  }
  section.second .wrapper .section__top .top__text {
    margin-left: 15px;
    font-size: 16px;
  }
  section.second .wrapper .section__top .top__icon {
    margin-right: 10px;
  }
  section.second .wrapper .section__top .top__icon .icon img {
    width: 20px;
    height: 20px;
  }
  section.second .wrapper .second__block-1 {
    max-width: 100%;
    margin: 0 auto;
    margin-top: 50px;
  }
  section.second .wrapper .second__block-1 .block-1__items {
    
    grid-gap: 40px;
  }
  section.second .wrapper .second__block-1 .block-1__items .item {
    display: grid;
    
    gap: 20px;
  }
}
section.show-room {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  /*background-image: url(assets/img/bg02.jpg);*/
	background: #FBFAF5;
  padding: 60px 50px;
  background-size: cover;
}
section.show-room .wrapper .block-1__top {
  max-width: 90%;
  margin: 0 auto;
}
section.show-room .wrapper picture {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 10px;
}
section.show-room .wrapper img {
  max-width: 295px;
}
section.show-room .wrapper .block-img {
  margin: 50px 0 20px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
section.show-room .wrapper p {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 80px;
  text-align: center;
}
section.show-room .wrapper .two-img {
  max-width: 90%;
  display: grid;
  
  margin: 20px auto 60px auto;
}
section.show-room .wrapper .two-img img {
  max-width: 70%;
}
section.show-room .wrapper .three-img {
  max-width: 90%;
  display: grid;
  
  margin: 20px auto 60px auto;
}
section.show-room .wrapper .three-img img {
  max-width: 80%;
  margin: auto;
}
section.show-room .wrapper .club-j {
  margin-top: 20px;
}
@media screen and (max-width: 755px) {
  section.show-room {
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
    background-image: url(assets/img/bg02.jpg);
    padding: 60px 0px;
    background-size: cover;
  }
  section.show-room .wrapper {
    padding: 0 10px;
  }
  section.show-room .wrapper p {
    margin-bottom: 0px;
  }
  section.show-room .wrapper .block-1__top {
    max-width: 100%;
  }
  section.show-room .wrapper .two-img {
    max-width: 100%;
    
  }
  section.show-room .wrapper .two-img img {
    max-width: 70%;
  }
  section.show-room .wrapper .three-img {
    max-width: 100%;
    
    margin: 20px auto 20px auto;
  }
  section.show-room .wrapper .three-img img {
    max-width: 80%;
    margin: auto;
  }
}
.mb-0 {
  margin-bottom: 0px !important;
}
section.consulting {
  background: #FBFAF5;
}
section.consulting .consulting__block {
  position: relative;
}
section.consulting .consulting__block::after {
  content: "";
  width: 100%;
  height: 500px;
  display: block;
  top: 180px;
  left: -11%;
  position: absolute;
  background-image: url(assets/img/consult_img02.png);
  background-repeat: no-repeat;
}
section.consulting .wrapper {
  text-align: center;
}
section.consulting .wrapper h4 {
  font-size: 25px;
}
section.consulting .wrapper p.sub_title {
  font-size: 16px;
  font-weight: bold;
}
section.consulting .wrapper .cons_img {
  margin: 40px auto;
  max-width: 500px;
}
section.consulting .wrapper .cons_img-2 {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 20px;
}
section.consulting .wrapper .cons_img-3 {
  max-width: 600px;
  margin: 40px auto;
}
section.consulting .wrapper .block__images {
  margin-bottom: 100px;
}
section.consulting .wrapper .block__images img {
  max-width: 800px;
  margin: 0 auto;
}
section.consulting .wrapper .consulting__block-2 p {
  font-weight: bold;
  font-size: 20px;
}
section.consulting .wrapper .consulting__block-2 p strong {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  background-color: black;
  color: white;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
section.consulting .wrapper .consulting__block-2 .block-2__full_block {
  background-color: white;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
section.consulting .wrapper .consulting__block-2 .block-2__full_block img {
  max-width: 370px;
}
section.consulting .wrapper .consulting__block-2 .block-2__three-block {
  margin-top: 40px;
  display: grid;
  
  grid-gap: 30px;
}
section.consulting .wrapper .consulting__block-2 .block-2__three-block .item {
  padding: 20px;
  background-color: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  gap: 20px;
}
section.consulting .wrapper .consulting__block-2 .block-2__three-block .item img {
  width: 210px;
}
section.consulting .wrapper .consulting__block-2 .block-2__three-block .item .item-p {
  font-size: 14px;
}
section.consulting .wrapper .consulting__block-2 .block-2__full_block_list {
  display: grid;
  background-color: white;
  margin-top: 40px;
  padding: 30px;
  
  gap: 40px;
}
section.consulting .wrapper .consulting__block-2 .block-2__full_block_list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
section.consulting .wrapper .consulting__block-2 .block-2__full_block_list .item p {
  text-align: left;
}
section.consulting .wrapper .consulting__block-2 .block-2__full_block_list .item ul {
  width: 100%;
  height: 40px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
section.consulting .wrapper .consulting__block-2 .block-2__full_block_list .item ul li {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 10px 0;
  background-color: #ECECEC;
  font-weight: bold;
}
section.consulting .wrapper .consulting__block-2 .block-2__full_block_list img {
  width: 200px;
}
@media screen and (max-width: 755px) {

  section.consulting .consulting__block {
    position: relative;
  }
  section.consulting .consulting__block::after {
    content: none;
  }
  section.consulting .wrapper .cons_img {
    margin: 40px auto;
    max-width: 74%;
  }
  section.consulting .wrapper .cons_img-2 {
    max-width: 74%;
  }
  section.consulting .wrapper .cons_img-3 {
    max-width: 74%;
  }
  section.consulting .wrapper .block__images {
    margin-bottom: 50px;
  }
  section.consulting .wrapper .block__images img {
    max-width: 100%;
  }
  section.consulting .wrapper .consulting__block-2 {
    padding: 0 10px;
  }
  section.consulting .wrapper .consulting__block-2 .block-2__three-block {
    
  }
  section.consulting .wrapper .consulting__block-2 .block-2__three-block .item {
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    gap: 20px;
  }
  section.consulting .wrapper .consulting__block-2 .block-2__three-block .item img {
    width: 74%;
  }
  section.consulting .wrapper .consulting__block-2 .block-2__three-block .item .item-p {
    font-size: 16px;
  }
  section.consulting .wrapper .consulting__block-2 .block-2__full_block_list {
    padding: 0px;
    
    gap: 40px;
  }
  section.consulting .wrapper .consulting__block-2 .block-2__full_block_list .item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }
  section.consulting .wrapper .consulting__block-2 .block-2__full_block_list .item:first-child {
    margin-bottom: 100px;
  }
  section.consulting .wrapper .consulting__block-2 .block-2__full_block_list .item p {
    text-align: left;
  }
  section.consulting .wrapper .consulting__block-2 .block-2__full_block_list .item ul {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
  }
  section.consulting .wrapper .consulting__block-2 .block-2__full_block_list .item ul li {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 10px 0;
    background-color: #ECECEC;
    font-weight: bold;
  }
  section.consulting .wrapper .consulting__block-2 .block-2__full_block_list img {
    width: 74%;
  }
}
section.products {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  background-size: cover;
}
section.products .wrapper .block_title {
  text-align: center;
}
section.products .wrapper .block_title h4 {
  font-size: 26px;
}
section.products .wrapper .block_title p {
  font-size: 16px;
  text-transform: uppercase;
}
section.products .wrapper .products__three-items {
  display: grid;
  
  gap: 30px;
  margin-top: 40px;
}
section.products .wrapper .products__three-items .item {
  text-align: center;
}
section.products .wrapper .products__three-items .item img {
  margin-bottom: 20px;
}
section.products .wrapper .products__three-items .item p {
  font-weight: bold;
  font-size: 18px;
}
section.products .wrapper .products__three-items .item h4 {
  margin: 10px 0 20px 0;
  color: #736F00;
  font-size: 36px;
  text-align: center;
}
section.products .wrapper .products__three-items .item a {
  width: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 25px;
  background: #f5d55f;
  background: linear-gradient(180deg, #f5d55f 9%, #fbe288 30%, #ffffff 70%, #ffffff 81%, #f5d55f 100%);
  border: none;
  box-shadow: 0 0 0 2px #f5d55f;
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
}
@media screen and (max-width: 755px) {
  section.products {
    padding: 50px 0;
  }
  section.products .wrapper .block_title {
    text-align: center;
  }
  section.products .wrapper .block_title h4 {
    font-size: 26px;
  }
  section.products .wrapper .block_title p {
    font-size: 16px;
    text-transform: uppercase;
  }
  section.products .wrapper .products__three-items {
    display: grid;
    
    gap: 30px;
    margin-top: 40px;
  }
  section.products .wrapper .products__three-items .item {
    text-align: center;
  }
  section.products .wrapper .products__three-items .item img {
    margin-bottom: 20px;
  }
  section.products .wrapper .products__three-items .item p {
    font-weight: bold;
    font-size: 18px;
  }
  section.products .wrapper .products__three-items .item h4 {
    margin: 10px 0 20px 0;
    color: #736F00;
    font-size: 36px;
    text-align: center;
  }
  section.products .wrapper .products__three-items .item button {
    width: 200px;
    height: 50px;
    border-radius: 25px;
    background: #f5d55f;
    background: linear-gradient(180deg, #f5d55f 9%, #fbe288 30%, #ffffff 70%, #ffffff 81%, #f5d55f 100%);
    border: none;
    box-shadow: 0 0 0 2px #f5d55f;
    font-size: 22px;
    font-weight: bold;
    margin-top: 20px;
  }
}
section.outline {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  background-size: cover;
  position: relative;
}
section.outline::after {
  content: none;
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-image: url(assets/img/banner_presia.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  width: 300px;
  height: 200px;
  background-size: cover;
}
section.outline .wrapper {
  padding: 0 10px;
}
section.outline .wrapper .block_title {
  text-align: center;
  padding-bottom: 70px;
  border-bottom: 1px solid #B7B7B7;
}
section.outline .wrapper .block_title h4 {
  font-size: 26px;
}
section.outline .wrapper .block_title p {
  font-size: 16px;
  text-transform: uppercase;
}
section.outline .wrapper .outline__contacts {
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #b7b7b7;
}
section.outline .wrapper .outline__contacts .contact {
  display: grid;
  grid-template-columns: 15% 70%;
  margin-bottom: 30px;
  gap: 30px;
}
section.outline .wrapper .outline__contacts .contact .left {
  text-align: center;
}
section.outline .wrapper .outline__contacts .contact p {
  font-weight: bold;
}
footer {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  background-size: cover;
  padding: 0;
}
footer .footer_block {
  padding: 30px 50px;
  border-radius: 10px;
  background-color: white;
  text-align: center;
}
footer .footer_block .block__top {
  padding-bottom: 20px;
  display: block;
}
footer .footer_block .block__top h4 {
  font-size: 24px;
}
footer .footer_block .two_block {
  display: grid;
  
  margin-top: 30px;
}
footer .footer_block .two_block .block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
footer .footer_block .two_block .block:last-child {
  border-left: 2px solid #909090;
}
footer .footer_block .two_block .block img {
  width: 50px;
}
footer .footer_block .two_block .block p {
  margin: 16px 0;
  font-weight: bold;
}
footer .footer_block .two_block .block a {
  font-size: 34px;
  font-weight: bold;
}
@media screen and (max-width: 755px) {
  
  footer .footer_block {
    padding: 30px 20px;
  }
  footer .footer_block .two_block {
    margin-top: 30px;
    gap: 30px;
  }
  footer .footer_block .two_block .block a {
    font-size: 30px;
  }
  footer .footer_block .two_block .block:last-child {
    border-left: none;
  }
}
.copyright {
  padding: 30px 0;
  text-align: center;
  color: white;
  font-size: 20px;
  background-color: #72582A;
}
@keyframes header {
  0% {
    margin-top: -10px;
    opacity: 0.5;
  }
  100% {
    margin-top: 0px;
    opacity: 1;
  }
}
.top__heading {
  	text-align: center;
	margin: 0 auto 30px;
	width: fit-content;
	 
}

.top__heading p:first-child{
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.6rem;
	letter-spacing: 3px;
	border-bottom: 1px solid #eee;
	margin-bottom: 10px;
}

.top__heading p:last-child{
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 0.7rem;
}

.services{
	
}

.services .inner,.advantage .inner,.brands .inner,.consulting .inner,.products .inner,.outline .inner,.contacts .inner,.news .inner{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 0;
}

.services .inner ul,.advantage .inner ul,.consulting .inner ul,.products .inner ul,.contacts .inner ul,.news .inner dl{
	display: flex;
	flex-wrap: wrap;
}

.news .inner dl{
	max-width: 800px;
	border-bottom: 1px solid #eee;
	margin: 20px auto;
	padding: 1%;
	box-sizing: border-box;
	font-size: 0.8rem;
}

.news .inner dl dt{
	margin-right: 15px;
}

.contacts{
	background: #FBFAF5;
}

.contacts .inner ul{
	max-width: 800px;
	width: 100%;
	margin: 20px auto;
    justify-content: space-evenly;
}

.contacts .inner ul li{
	box-sizing: border-box;
	background: #FFF;
    border: 1px solid #eee;
    border-radius: 15px;
	width: 45%;
}

.contacts .inner ul li a{
	width: 100%;
    display:flex;
    height: 100%;
    padding: 15%;
	text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.1rem;
	color: #908077;
}

.contacts .inner h3 + p{
	text-align: center;
	margin: 50px auto;
}

.contacts .inner ul li img{
	width: 100px;
	margin: 0 auto 20px;
}

.services .inner ul li,.advantage .inner ul li{
	width: 25%;
	padding: 1%;
}

.consulting .inner ul li{
	width: 50%;
	padding: 1%;
}

.outline{
	background: #eee;
}

.outline .inner table{
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	border-collapse:collapse;
	max-width: 800px;
	margin: 0 auto;
}

.outline .inner table th,.outline .inner table td{
	padding: 2%;
	border-bottom: 1px solid #ccc;
	font-weight: 400;
	font-size: 0.9rem;
    letter-spacing: 2px;
    width: 50%;
}

.outline .inner table th{
	text-align: right;
	width: 40%;
}

.outline .inner table td{
	width: 60%;
}


.products .inner ul {
	justify-content: space-evenly;
}

.products .inner ul li{
	width: 25%;
	padding: 0 5%;
}

.products .inner ul li p{
	font-size: 0.7rem;
	font-family: "Noto Sans JP", sans-serif;
	text-align: center;
	line-height: 2;
	margin-top: 15px;
}

.products .inner ul li h4{
	font-size: 1.2rem;
	font-weight: 400;
	text-align: center;
}

.products .inner ul li a{
	font-size: 0.8rem;
	font-weight: 400;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
	text-decoration: underline;
	margin-top: 15px auto;
	display: block;
}

.consulting .inner ul li p{
	letter-spacing: 1px;
	line-height: 2;
}

.advantage{
	background: #FBFAF5;
}

.advantage .inner ul li >p{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.6rem;
}

.services .inner ul li h4,.advantage .inner ul li h4{
	font-weight: 400;
	font-family: "Noto Sans JP", sans-serif;
	padding: 15px 0;
	text-align: center;
	font-size: 0.8rem;
	letter-spacing: 1px;
}

.advantage .inner > div h4{
	font-weight: 400;
	font-family: "Noto Sans JP", sans-serif;
	padding: 15px 0;
	text-align: center;
	font-size: 0.8rem;
	letter-spacing: 1px;
}

.advantage .inner > div{
	text-align: center;
	margin-bottom: 40px;
}

.advantage .inner > div img{
	display: inline;
}

.advantage .inner > div.item {
	margin-top: 30px;
}

.advantage .inner > div.item ul{
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.advantage .inner > div.item li{
	padding: 0;
    font-size: 0.8rem;
    font-family: "Noto Sans JP", sans-serif;
	width: fit-content;
	text-align: center;
    padding: 1% 2%;
    background: #FFF;
    margin-bottom: 20px;
}

.brands .inner > ul{
	display: flex;
	margin-bottom: 60px;
}

.brands .inner > ul > li{
	width: 50%;
	padding: 1%;
	box-sizing: border-box;
}

.brands .inner > ul > li > h4{
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.2rem;
	letter-spacing: 3px;
	border-bottom: 1px solid #eee;
	margin-bottom: 10px;
	text-align: center;
}

.brands .inner > ul > li > h4 span{
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 0.6rem;
	letter-spacing: 3px;
	color: #ccc;
	margin-left: 10px;
}

.brands .inner > ul > li > ul{
	display: flex;
	justify-content: center;
}

.brands .inner > ul > li > ul > li{
	width: 50%;
	padding: 5%;
	box-sizing: border-box;
	text-align: center;
}

.brands .inner > ul > li > ul > li > p{
	margin: 10px auto;
}

.brands .inner > ul > li h5{
	font-size: 0.8rem;
    font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}
.sp__show{
		display: none;
	}

@media screen and (max-width: 755px) {
	.sp__show{
		display: block;
	}
.top__heading {
  	text-align: center;
	margin: 0 auto 30px;
	width: fit-content;
	 
}

.top__heading p:first-child{
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.6rem;
	letter-spacing: 3px;
	border-bottom: 1px solid #eee;
	margin-bottom: 10px;
}

.top__heading p:last-child{
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 0.7rem;
}

.services{
	
}

.services .inner,.advantage .inner,.consulting .inner,.products .inner,.outline .inner,.contacts .inner,.news .inner{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 1% 60px;
}
	
.brands .inner{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 1% 0;		
}	

.services .inner ul,.advantage .inner ul,.consulting .inner ul,.products .inner ul,.contacts .inner ul,.news .inner dl{
	display: flex;
	flex-wrap: wrap;
}

.news .inner dl{
	max-width: 800px;
	border-bottom: 1px solid #eee;
	margin: 20px auto;
	padding: 1%;
	box-sizing: border-box;
	font-size: 0.8rem;
}

.news .inner dl dt{
	margin-right: 15px;
}

.contacts{
	background: #FBFAF5;
}

.contacts .inner ul{
	max-width: 800px;
	width: 100%;
	margin: 20px auto;
	flex-direction: column;
}

.contacts .inner ul li{
	box-sizing: border-box;
	background: #FFF;
    border: 1px solid #eee;
    border-radius: 15px;
	width: 80%;
	margin: 15px auto;
}

.contacts .inner ul li a{
	width: 100%;
    display:flex;
    height: 100%;
    padding: 5%;
	text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 5vw;
	color: #908077;
}

.contacts .inner h3 + p{
	text-align: center;
	margin: 50px auto;
}

.contacts .inner ul li img{
	width: 50px;
	margin: 0 auto 20px;
}

.services .inner ul li,.advantage .inner ul li{
	width: 50%;
	padding: 1%;
}

.consulting .inner ul{
	flex-direction: column;
}	
	
.consulting .inner ul li{
	width: 100%;
	padding: 1%;
}

.outline{
	background: #eee;
}

.outline .inner table{
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	border-collapse:collapse;
	max-width: 800px;
	margin: 0 auto;
}

.outline .inner table th,.outline .inner table td{
	padding: 2%;
	border-bottom: 1px solid #ccc;
	font-weight: 400;
	font-size: 3.6vw;
    letter-spacing: 2px;
    width: 50%;
}

.outline .inner table th{
	text-align: left;
	width: 25%;
}

.outline .inner table td{
	width: 75%;
}


.products .inner ul {
	justify-content: space-evenly;
}

.products .inner ul li{
	width: 50%;
	padding: 0 8%;
}

.products .inner ul li p{
	font-size: 0.7rem;
	font-family: "Noto Sans JP", sans-serif;
	text-align: center;
	line-height: 2;
	margin-top: 15px;
}

.products .inner ul li h4{
	font-size: 1.2rem;
	font-weight: 400;
	text-align: center;
}

.products .inner ul li a{
	font-size: 0.8rem;
	font-weight: 400;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
	text-decoration: underline;
	margin-top: 15px auto;
	display: block;
}

.consulting .inner ul li p{
	letter-spacing: 1px;
	line-height: 2;
	font-size: 4.5vw;
}

.advantage{
	background: #FBFAF5;
}

.advantage .inner ul li >p{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.6rem;
}

.services .inner ul li h4,.advantage .inner ul li h4{
	font-weight: 400;
	font-family: "Noto Sans JP", sans-serif;
	padding: 15px 0;
	text-align: center;
	font-size: 3.6vw;
	letter-spacing: 1px;
}

.advantage .inner > div h4{
	font-weight: 400;
	font-family: "Noto Sans JP", sans-serif;
	padding: 15px 0;
	text-align: center;
	font-size: 3.6vw;
	letter-spacing: 1px;
}

.advantage .inner > div{
	text-align: center;
	margin-bottom: 40px;
}

.advantage .inner > div img{
	display: inline;
}

.advantage .inner > div.item {
	margin-top: 30px;
}

.advantage .inner > div.item ul{
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.advantage .inner > div.item li{
	padding: 0;
    font-size: 3.6vw;
    font-family: "Noto Sans JP", sans-serif;
	width: fit-content;
	text-align: center;
    padding: 1% 2%;
    background: #FFF;
    margin-bottom: 20px;
	margin-right: 10px;
}

.brands .inner > ul{
	display: flex;
	margin-bottom: 0px;
	flex-direction: column;
}

.brands .inner > ul > li{
	width: 100%;
	padding: 1%;
	box-sizing: border-box;
}

.brands .inner > ul > li > h4{
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 5vw;
	letter-spacing: 3px;
	border-bottom: 1px solid #eee;
	margin-bottom: 10px;
	text-align: center;
	display: flex;
    flex-direction: column;
}

.brands .inner > ul > li > h4 span{
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 0.6rem;
	letter-spacing: 3px;
	color: #ccc;
	margin-left: 0px;
	margin-bottom: 10px;
}

.brands .inner > ul > li > ul{
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
	flex-wrap: wrap;
}

.brands .inner > ul > li > ul > li{
	width: 50%;
	padding: 5%;
	box-sizing: border-box;
	text-align: center;
}

.brands .inner > ul > li > ul > li > p{
	margin: 10px auto;
}

.brands .inner > ul > li h5{
	font-size: 0.8rem;
    font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}	
	
	
	
	
}
