/** Shopify CDN: Minification failed

Line 1293:0 Unexpected "}"

**/
@charset "UTF-8";

/* 共通部分 */
a {
  color: #56585d;
  text-decoration: none !important;
}

a img.mouselink{
background:none!important;
}

a:hover{
  color: #ccc;
  text-decoration: none;
}

li {
  list-style: none;
}

ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}

.animate-link {
  text-decoration: none; /* デフォルトの下線を非表示にする */
  color: #56585d; /* 文字色 */
  background-image: linear-gradient(90deg, #56585d, #56585d); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom; /* 線の起点を左・下に設定 */
  background-size: 0 0.5px; /* 線の横幅を0、縦幅を1pxに */
  transition: background-size 0.6s; /* 線を伸ばすアニメーション実行時間を指定 */
}

.animate-link:hover {
  background-size: 100% 0.5px; /* 線の横幅を100%にする */
}

/* more */
.more {
  font-size: 18px;
  
  font-style: normal;
  letter-spacing: 3px;
  width: 15%;
  margin: 0 auto;
  text-align: center;
  color: #56585d;
  border: 1px solid #56585d;
  padding: 15px;
  box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all 1s;
    margin-top: 30px;
}

.more:hover {
  background-color: #56585d;
  color: #fff;
}

.more a {
  color: #56585d;
}

.more a:hover {
  background-color: #56585d;
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .more {
    width: 50%;
    font-size: 13px;
    padding: 8px;
    margin-top: 20px;
  }
}

/* look book */
.lb_area {
  margin: 0 auto; 
  width: 90%;
}
.lb_area a {
  text-decoration: none;
}

.lb_area .lb_box {
  width: 100%;
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  text-align: center;
}

.lb_area .lb_box li {
  position: relative;
  width: calc(25% - 15px);
  list-style: none;
  overflow: hidden;
}
.lb_area .lb_box li img {
  width:100%;
  height: 350px;
  object-fit: cover;
  filter:brightness(80%);
  transition: filter 0.3s ease;
}
.lb_area .lb_box li img:hover {
  filter:brightness(1);
}

.lb_area .lb_title {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 30px;
  color: #fff;
}

@media screen and (max-width: 430px) {
  .lb_area {
    width: 95%;
}
.lb_area .lb_box li {
  width: calc(50% - 3px);
  height: 150px;
  margin-bottom: 5px;
}
.lb_area .lb_box li img {
    height: 150px;
} 
.lb_area .lb_title {
    top: 38%;
    font-size: 20px;
}
}

/* item box */
.item_box {
  position: relative;
  margin: 0 auto; 
  width: 90%;
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  text-align: center;
}
.item_box li {
	width: calc(20% - 15px);
  position: relative;
  margin-top: 10px;
  list-style: none;  
}
.item_box li img {
  position: relative;
	max-width:100%;
	height: auto;
}

.item_box a {
  text-decoration: none;
}

.item_name {
    font-size: 16px;
    text-align: left;
    margin-top: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media screen and (max-width: 430px) {
.item_box li {
	width: calc(50% - 15px);
}
}

/* ranking */
.rank_box {
    margin: 0 auto;
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 450px;
    gap: 0.5em;
}

.rank_box .image {
  position: relative;
  width: 100%;
}

.rank_box .image:nth-child(1) { grid-area: 1 / 1 / 3 / 2; }
.rank_box .image:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.rank_box .image:nth-child(3) { grid-area: 1 / 3 / 2 / 4; }
.rank_box .image:nth-child(4) { grid-area: 2 / 2 / 3 / 3; }
.rank_box .image:nth-child(5) { grid-area: 2 / 3 / 3 / 4; }
.rank_box .image:nth-child(6) { display: none; }
.rank_box .image:nth-child(7) { display: none; }
.rank_box .image:nth-child(8) { display: none; }
.rank_box .image:nth-child(9) { display: none; }
.rank_box .image:nth-child(10) { display: none; }

.rank_box .image img {
  position: relative;
  width: 100%;
  height:100%;
  object-fit: cover;
}

.rank_box a {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
.rank_box {
    grid-auto-rows: 300px;
}
}
@media screen and (max-width: 430px) {
.rank_box {
    width: 95%;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(5, 1fr);
}
.rank_box .image:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
.rank_box .image:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.rank_box .image:nth-child(3) { grid-area: 2 / 1 / 3 / 2; }
.rank_box .image:nth-child(4) { grid-area: 2 / 2 / 3 / 3; }
.rank_box .image:nth-child(5) { grid-area: 3 / 1 / 4 / 2; }
.rank_box .image:nth-child(6) { display: block;
                                grid-area: 3 / 2 / 4 / 3; }
.rank_box .image:nth-child(7) { 
  display: block;
  grid-area: 4 / 1 / 5 / 2; }
.rank_box .image:nth-child(8) {
  display: block;
  grid-area: 4 / 2 / 5 / 3; }
.rank_box .image:nth-child(9) {
  display: block;
  grid-area: 5 / 1 / 6 / 2; }
.rank_box .image:nth-child(10) {
  display: block;
  grid-area: 5 / 2 / 6 / 3; }
}
  
.rank_box .image:nth-child(1)::before,
.rank_box .image:nth-child(2)::before,
.rank_box .image:nth-child(3)::before,
.rank_box .image:nth-child(4)::before,
.rank_box .image:nth-child(5)::before,
.rank_box .image:nth-child(6)::before,
.rank_box .image:nth-child(7)::before,
.rank_box .image:nth-child(8)::before,
.rank_box .image:nth-child(9)::before,
.rank_box .image:nth-child(10)::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 60px 60px 0 0;
    border-color: #444444 transparent transparent transparent;
    z-index: 1;
}
.rank_box .image:nth-child(1)::after,
.rank_box .image:nth-child(2)::after,
.rank_box .image:nth-child(3)::after,
.rank_box .image:nth-child(4)::after,
.rank_box .image:nth-child(5)::after,
.rank_box .image:nth-child(6)::after,
.rank_box .image:nth-child(7)::after,
.rank_box .image:nth-child(8)::after,
.rank_box .image:nth-child(9)::after,
.rank_box .image:nth-child(10)::after {
    position: absolute;
    display: block;
    font-size: 20px;
    white-space: pre;
    color: #fff;
    top: 7px;
    left: 11px;
    text-align: center;
    z-index: 2;
    line-height: 1.2;
}
.rank_box .image:nth-child(1)::after {
    content: "1";
}
.rank_box .image:nth-child(2)::after {
    content: "2";
}
.rank_box .image:nth-child(3)::after {
    content: "3";
}
.rank_box .image:nth-child(4)::after {
  content: "4";
}
.rank_box .image:nth-child(5)::after {
    content: "5";
}
.rank_box .image:nth-child(6)::after {
    content: "6";
}
.rank_box .image:nth-child(7)::after {
    content: "7";
}
.rank_box .image:nth-child(8)::after {
    content: "8";
}
.rank_box .image:nth-child(9)::after {
    content: "9";
}
.rank_box .image:nth-child(10)::after {
    content: "10";
}

/* coordinate */

#coordinate_slider.Slider__4column li {
	padding: 0 10px;
}

@media (max-width: 767px) {
  #coordinate_slider {
    width: 90%;
    margin: 0 auto;
  }
	#coordinate_slider.Slider__4column li {
	    padding: 0 2px;
	}
	#coordinate_slider .slick-prev {
		left: -5%;
	}
	#coordinate_slider .slick-next {
		right: -5%;
	}
}
@media (max-width: 430px) {
  #coordinate_slider {
    width: 100%;
  }
}

.item-name {
  font-weight: bold;
  text-align: center;
}


/* original item */

#original_item .section__title__wrapper {
  margin: 60px 0 12px;
}
.slick-slider {
    height: auto;
}
.slick-slider a.slideitem {
	margin-bottom: 10px;
}

.contents_inner {
    margin: 0 auto;
    width: 90%;
}

.item_name {
    font-size: 12.5px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 1.2em;
}

#original_slider.Slider__4column li {
	padding: 0 10px;
}

.Slider__4column li a {
	width: 100%;
	margin: 0;
}

ul.slick-dots {
    right: 0;
}

.slick-dots {
	position: static;
	line-height: 1em;
}

.slick-dots li {
	padding: 0!important;
	width: auto;
	margin: 0 8px
}
.slick-dots li button {
	padding: 0;
	width: 6px;
	height: 6px;
}
.slick-dots li button:before {
	width: 6px;
	height: 6px;
}

.slick-prev, .slick-next {
	width: 30px;
    height: 64px;
  border: none;
    border-radius: 0;
}

.slick-prev:before,
.slick-next:before {
	width: 20px;
    height: 44px;
}

@media (max-width: 767px) {
  #original_slider {
    width: 90%;
    margin: 0 auto;
  }
	#original_slider.Slider__4column li {
	    padding: 0 2px;
	}
	#original_slider .slick-prev {
		left: -5%;
	}
	#original_slider .slick-next {
		right: -5%;
	}
}
@media (max-width: 430px) {
  .contents_inner {
    margin: 0 auto;
    width: 95%;
}
  #original_slider {
    width: 100%;
  }
#coordinate_slider .slick-prev,#coordinate_slider .slick-next {
    top: 45%;
}
    #coordinate_slider .slick-next {
        right: 0%;
    }
.slick-list.draggable {
    padding-bottom: 1.2em;
}
}

/* banner collection */
.banner_area {
  margin: 0 auto;
  width: 90%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.banner_area .image {
  position: relative;
  width: 100%;
  padding: 10px;
}

.banner_area .image:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
.banner_area .image:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.banner_area .image:nth-child(3) { grid-area: 2 / 1 / 3 / 3; }

.banner_area .our_img img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 500px;
    min-height: 350px;
    object-fit: cover;
}

.banner_area .ttl {
  
  font-size: 40px;
  letter-spacing: 2px;
}
.banner_area .txtarea .more {
  font-size: 15px;
  
  font-style: normal;
  letter-spacing: 3px;
  width: 20%;
  margin: 0;
  text-align: center;
  background-color: #56585d;
  color: #fff;
  border: 1px solid #56585d;
  padding: 12px;
  box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all 1s;
}

.banner_area .txtarea .more:hover {
  background-color: #fff;
  color: #56585d;
}

.banner_area .txtarea .more a {
  color: #fff;
}

.banner_area .txtarea .more a:hover {
  background-color: #fff;
  color: #56585d;
  text-decoration: none;
}


.banner_area .txtarea {
  width: 100%;
}
.banner_area .txtarea .txt1,
.banner_area .txtarea .txt2,
.banner_area .txtarea .txt3 {
  position: absolute;
  width: 100%;
}
.banner_area .txtarea .txt1 {
    top: 45%;
    left: 8%;
}
.banner_area .txtarea .txt2 {
    top: 45%;
    left: 8%;
}
.banner_area .txtarea .txt3 {
  top: 30%;
  left: 5%;
}

@media screen and (max-width: 430px) {
.banner_area {
  margin: 0 auto;
  width: 90%;
  display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 8px;
}
  .banner_area .image:nth-child(1) {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
  }
  .banner_area .image:nth-child(2) {
    grid-row: span 2 / span 2;
    grid-row-start: 3;
  }
  .banner_area .image:nth-child(3) {
    grid-row: span 2 / span 2;
    grid-row-start: 3;
  }
}

/* Campaign */
.cmp_area {
  margin: 0 auto;
  width: 90%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.cmp_area .image {
  position: relative;
  width: 100%;
}

.cmp_area .image:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
}
.cmp_area .image:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}
.cmp_area .image:nth-child(3) {
  grid-area: 2 / 2 / 3 / 3;
}

.cmp_area .our_img img {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 400px;
  min-height: 0;
  object-fit: cover;
}
.cmp_area .our_img .img1 img {
    height: 400px;
  padding-right: 0.5em;
}
.cmp_area .our_img .img2 img {
    height: 200px;
  padding-bottom: 0.25em;
}
.cmp_area .our_img .img3 img {
    height: 200px;
  padding-top: 0.25em;
}

.cmp_area .ttl {
  font-size: 35px;
  letter-spacing: 2px;
}
.cmp_area .txtarea .more {
  font-size: 13px;
  font-style: normal;
  letter-spacing: 3px;
  width: 28%;
  margin: 0;
  text-align: center;
  background-color: #56585d;
  color: #fff;
  border: 1px solid #56585d;
  padding: 7px;
  box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all 1s;
}

.cmp_area .txtarea .more:hover {
  background-color: #fff;
  color: #56585d;
}

.cmp_area .txtarea .more a {
  color: #fff;
}

.cmp_area .txtarea .more a:hover {
  background-color: #fff;
  color: #56585d;
  text-decoration: none;
}


.cmp_area .txtarea {
  width: 100%;
}
.cmp_area .txtarea .txt1,
.cmp_area .txtarea .txt2,
.cmp_area .txtarea .txt3 {
  position: absolute;
  width: 100%;
}
.cmp_area .txtarea .txt1 {
    top: 5%;
    left: 8%;
}
.cmp_area .txtarea .txt2 {
    top: 0%;
    left: 8%;
}
.cmp_area .txtarea .txt3 {
  top: 0%;
  left: 8%;
}

@media screen and (max-width: 768px) {
.cmp_area .ttl {
    font-size: 23px;
}
.cmp_area .txtarea .txt1 .more {
  width: 20%;
}
.cmp_area .txtarea .txt2 .more,
.cmp_area .txtarea .txt3 .more{
  width: 35%;
}
}
@media screen and (max-width: 430px) {
.cmp_area {
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0px;
}
  .cmp_area .image:nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
  }
  .cmp_area .image:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2; 
  }
  .cmp_area .image:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
  }
    .cmp_area .our_img img {
        max-height: 160px;
    }
.cmp_area .our_img .img1 img {
  height: 160px;
  padding-right: 0;
  padding-bottom: 0.3em;
}
.cmp_area .our_img .img2 img {
  height: 160px;
  padding-bottom: 0;
  padding-right: 0.15em;
}
.cmp_area .our_img .img3 img {
  height: 160px;
  padding-top: 0;
  padding-left: 0.15em;
}
.cmp_area .ttl {
    font-size: 20px;
}
.cmp_area .txtarea .more {
    font-size: 13px;
    width: 80px;
    padding: 5px;
}
.cmp_area .txtarea .txt1 {
    top: 20%;
}
.cmp_area .txtarea .txt2,
.cmp_area .txtarea .txt3{
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  text-align: center;
}
    .cmp_area .txtarea .txt1 .more {
        width: 28%;
    }
.cmp_area .txtarea .txt2 .more,
.cmp_area .txtarea .txt3 .more{
  margin: 0 auto;
  width: 50%;
}
}

/* category */
.category {
  margin-bottom: 80px;
}

.cate_area {
  margin: 0 auto;
  width: 90%;
  font-size: 13px;
  letter-spacing: 0.2em;
  line-height: 1.5em;
  margin-top: 30px;
  margin-bottom: 50px;
  text-align: center;
}

.cate_area a {
  color: #56585d;
}

.cate_area ul {
  display: flex;
	flex-wrap:wrap;
}

.cate_area li {
	width: calc(100%/3);
	padding:0 15px;
	box-sizing:border-box;
}
.cate_area li + li {
    border-left: 1px solid #56585d;
}


.cate_area .line {
  border-right: 1px solid #56585d;
}

.cate_area .line2 {
	padding-left: 40px;
  border-right: 1px solid #56585d;
}

.cate_inner {
  margin: 0 auto;
  width: 50%;
}

.cate_area .brand {
	padding-left: 30px;
  border-right: 1px solid #56585d;
}

.cate_area .brand_txt {
  margin-bottom: 10px;
}

.cate_area .info {
	padding-left: 30px;
}

.cate_area .title {
  font-size: 20px;
  margin-bottom: 30px;
  border: none;
}

.cate_area .title-2 {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .category {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 430px) {
    .category {
        margin-top: -1em;
    }
}

.category .ac-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  background: #f2f1f0;
  padding-top: 20px;
}

.category .ac-inner p{
  margin: 0;
  padding: 0;
}
.category .ac-inner li{
  list-style: none;
  text-align: center;
}

.category .Accordion {
  margin: 0 auto;
  width: 100%;
}

.category .ac-single {
  font-weight: 400;
  letter-spacing: 0.075em;
  font-size: 14px;
  text-align: left;
  position: relative;
  padding: 10px;
  border-bottom: 1px solid #cdcdcd;
}

.category .ac-single-2 {
  letter-spacing: 0.075em;
  font-size: 14px;
  text-align: left;
  position: relative;
  padding: 10px;
  border-bottom: 1px solid #cdcdcd;
}

.category .ac-item {
  letter-spacing: 0.075em;
  font-size: 14px;
  text-align: left;
  padding: 15px;
}

.category .ac-title {
  width: 100%;
  margin: 0 auto;
  left: -10px;
  padding: 0 0 0 10px;
  line-height: 45px;
  margin-left: 10px;
  border-bottom: 1px solid #cdcdcd;
}

.category .ac-title-2 {
  width: 100%;
  margin: 0 auto;
  left: -10px;
  padding: 0 0 0 10px;
  line-height: 45px;
  margin-left: 10px;
  border-bottom: 1px solid #cdcdcd;
}

.category .ac-item p {
  letter-spacing: 0.075em;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid #cdcdcd;
}

.category .ac-item .ac-child {
  padding: 10px;
}

.category .ac-item:nth-child(odd) {
  position: relative;
  padding: -10px 0 -10px 10px;
  cursor: pointer;
}

.category .ac-item:nth-child(even) {
  padding: 0 0 0 15px;
  display: none;
  line-height: 2;
}

.category .ac-item-Icon {
  position: absolute;
  top: 55%;
  right: 16px;
  transform: translateY(-50%);
  width: 15px;
}

p.ac-line {
   border-bottom: 1px solid #cdcdcd;
}

.category .ac-info_area {
  margin: 0 auto;
  width: 100%;
}

.category .ac-info {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap:wrap;
  text-align: center;
}
.category .ac-info li {
  width: calc(100%/2);
  border-bottom: 1px solid #cdcdcd;
  box-sizing: border-box;
  padding: 15px;
}

.category .ac-info li + li {
  border-right: 1px solid #cdcdcd;
}

/* CONTENTS */
.contents {
}

.cont_banner-box {
  margin: 0 auto;
  width: 90%;
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
}

.cont_banner-box li {
	width: calc(25% - 10px);
  position: relative;
  padding: 0;
}

.cont_banner_area {
  position: relative;
}

.cont_banner {
  width: 100%;
  height: 250px;
  position: relative;
	overflow:hidden;
}
.cont_banner img {
	width: 100%;
  height: 300px;
  object-fit: cover;
  transition:5s all;
}
.cont_banner img:hover{
  transform:scale(1.2,1.2);
  transition:5s all;
}

.cont_txt-box {
  width: 100%;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0,0,0,0.25);
  padding: 30px 0;
}

.cont_txt-box p {
  text-align: center;
}

.con_title {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 25px;
  color: #fff;
}

.con_txt {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.1em;
}

.con_more {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  font-size: 15px;
  color: #56585d;
  background-color: #fff;
  letter-spacing: 0.1em;
  padding: 10px;
}

.con_more:hover{
  color: #fff;
}

.con_more::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #383838;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.con_more:hover::before {
  color: #fff;
  transform-origin: left top;
  transform: scale(1, 1);
}

@media screen and (max-width: 900px) {
  .cont_banner-box {
    width: 95%;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .cont_banner-box li {
  	width: calc(50% - 0px);
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 430px) {
  .cont_banner {
    height: 180px;
}
.cont_banner img {
    height: 180px;
}
  .cont_banner-box {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }
    .cont_banner-box li {
        width: calc(50% - 1px);
        margin-bottom: 1px;
    }
.cont_txt-box {
    height: 60px;
}
.con_txt {
    top: 18%;
}
.con_more {
    font-size: 12px;
    padding: 5px;
}
}

/* shopping guide */
.guide {
	text-align: center;
	letter-spacing: 0.2em;
}

.guide_bunner img{
	width: 100%;
	height: auto;
	margin-top: 70px;
	margin-bottom: 40px;
}

.guide_menu {
	margin: 0 auto;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
	padding: 0;
}

.guide_menu li{
	width: calc(33.33333% - 5px);
	height: 50px;
	border: 1px solid #ccc;
	margin-bottom: 10px;
}

.guide_menu li a:hover {
	opacity: 0.5;
}

.guide_menu a{
	line-height: 50px;
}

.guide_menu_area {
    margin: 0 auto;
    width: 100%;
    padding-top: 5em;
}

h5{
	width: 100%;
	background: #ccc;
	text-align: left;
	margin: 50px auto 20px auto;
	padding-left: 30px;
	line-height: 38px;
	font-size: 15px;
	font-weight: 900;
}

h6{
	width: 100%;
	text-align: left;
	font-size: 18px;
	font-weight: 900;
  padding: 0 0 0 20px;
	margin-bottom: 0px;
}

.sub_titel{
	width: 100%;
	background: #f2f2f2;
	text-align: left;
  padding: 0 0 0 20px;
	font-size: 12px;
	font-weight: 300;
}

.explanation p{
	text-align: left;
  padding: 0 0 0 20px;
	line-height: 22px;
}

.explanation span{
	color: #E7070B;
	font-weight: 900;
}

.explanation table{
	width: 100%;
	border: 1px solid #ccc;
}

.explanation th{
	border: 1px solid #ccc;
}

.explanation td{
	border: 1px solid #ccc;
}

.explanation li{
	list-style: disc;
	text-align: left;
	margin-bottom: 20px;
}

.address{
	width: 100%;
	height: auto;
	padding: 20px !important;
	border: solid 1px #ccc;
	text-align: left;
}

.question{
  padding: 0 0 0 20px;
	text-align: left;
}

	.guide_bunner img{
		width: 100%;
		margin-top: -98px;
	}
	.guide_menu {
		margin-top: -20px;
	}
	.guide_menu li{
		font-size: 10px;
	}
	.space_area {
		margin: 0 auto;
		width: 95%;
	}
	.explanation p{
	  padding: 0 20px;
	}
	.explanation table{
		width: 100%;
		margin-left: 0px;
		border: 1px solid #ccc;
	}
	.explanation li{
		margin-bottom: 20px;
		margin-right: 10px;
	}
	.address_area {
		margin: 0 auto;
		width: 95%;
	}
	.address{
		width: 100%;
		margin: 0 0 20px 0;
		padding: 20px !important;
	}
	#common_area iframe {
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	}
}

/* SP footer */
#sp_footer {
}

#sp_footer .ac-inner .ttl {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}

#sp_footer .ac-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  background: #f2f1f0;
  padding: 20px 10px;
}

#sp_footer .ac-inner p{
  margin: 0;
  padding: 0;
}
#sp_footer .ac-inner li{
  list-style: none;
}

#sp_footer .Accordion {
  margin: 0 auto;
  width: 100%;
}

#sp_footer .ac-single {
  font-weight: 400;
  letter-spacing: 0.075em;
  font-size: 14px;
  text-align: left;
  position: relative;
  padding: 10px;
  border-bottom: 1px solid #cdcdcd;
}

#sp_footer .ac-single-2 {
  font-weight: 400;
  letter-spacing: 0.075em;
  font-size: 14px;
  text-align: left;
  position: relative;
  padding: 10px;
  border-bottom: 1px solid #cdcdcd;
}

#sp_footer .ac-item {
  font-weight: 400;
  letter-spacing: 0.075em;
  font-size: 14px;
  text-align: left;
  padding: 15px;
}

#sp_footer .ac-title {
  width: 100%;
  margin: 0 auto;
  left: -10px;
  padding: 0 0 0 10px;
  line-height: 45px;
  margin-left: 10px;
  border-bottom: 1px solid #cdcdcd;
}

#sp_footer .ac-title-2 {
  width: 100%;
  margin: 0 auto;
  left: -10px;
  padding: 0 0 0 10px;
  line-height: 45px;
  margin-left: 10px;
  border-bottom: 1px solid #cdcdcd;
}

#sp_footer .ac-item p {
  font-weight: 400;
  letter-spacing: 0.075em;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid #cdcdcd;
}

#sp_footer .ac-item .ac-child {
  padding: 10px;
}

#sp_footer .ac-item:nth-child(odd) {
  position: relative;
  padding: -10px 0 -10px 10px;
  cursor: pointer;
}

#sp_footer .ac-item:nth-child(even) {
  padding: 0 0 0 15px;
  display: none;
  line-height: 2;
}

#sp_footer .ac-item-Icon {
  position: absolute;
  top: 55%;
  right: 16px;
  transform: translateY(-50%);
  width: 15px;
}

p.ac-line {
   border-bottom: 1px solid #cdcdcd;
}

#sp_footer .ac-info_area {
  margin: 0 auto;
  width: 100%;
  margin-top: 1em;
}

#sp_footer .ac-info {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap:wrap;
  text-align: center;
}
#sp_footer .ac-info li {
  width: calc(100%/2);
  border-bottom: 1px solid #cdcdcd;
  box-sizing: border-box;
  padding: 15px;
}

#sp_footer .ac-info li + li {
  border-right: 1px solid #cdcdcd;
}

#sp_footer .icon {
  position: relative;
  width: 20px;
  height: 20px;
  top: 4px;
  margin-right: 4px;
}

.copyright {
  width: 100%;
  color: #fff;
  font-size: 11px;
  text-align: center;
  background: #626360;
  padding: 5px;
}
.copyright p {
    margin: 0;
}


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

/*PCの場合*/
.sp	{ display:none!important; }
@media screen and (max-width: 768px) {
/*タブレット、スマホの場合*/
.sp { display:inline!important; }
}

/*PCの場合*/
.sp_header	{ display:none!important; }
@media screen and (max-width: 800px) {
/*タブレット、スマホの場合*/
.sp_header { display:inline!important; }
}