body {
  /*
  font-family: 'Lato','Noto Sans JP', sans-serif;
font-family: 'Lato','Sawarabi Gothic', sans-serif;
font-family: 'Lato','Zen Kaku Gothic Antique', sans-serif;
*/
  font-family: 'Roboto', 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', 'sans-serif';
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  font-weight: 300;
}

* {
  outline: none !important;
}

h2 {
  color: #485CC7;
}

.lato {
  font-family: 'Lato', sans-serif;
}

.blu {
  letter-spacing: 2px;
  font-family: 'Noto Sans JP', 'sans-serif';
}

#adminBox,
.acms-admin-box {
  margin-bottom: 0;
}

.acms-container_w {
  max-width: 1100px;
}

.sb {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mb50 {
  margin-bottom: 50px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb100 {
  margin-bottom: 100px;
}

.show-375{
    display: none
}

.menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  background-color: #485cc7;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

.menu-content ul {
    padding: 5px 0 30px;
    border-bottom: solid 1px #ffffff;
    list-style: none;
    line-height: 2;
}

.menu-content > ul:first-of-type{
  font-size: 26px;
  font-weight: bold;
  line-height: 2.5;
}

.menu-content ul:nth-of-type(2) {
  line-height: 2.5;
}

.menu-content ul:nth-of-type(3) {
    opacity: .8;
    font-size: 80%;
    padding-bottom: 20px;
    margin-bottom: 35px;
}

.menu-content ul a {
  color: #fff;
  text-decoration: none
}

.sb ul {
  border: none;
  display: flex;
  padding-left: 20px;
  position: relative;
}

.sb ul:before {
  content: url(/themes/blu@site2018/images/language_w.svg);
  position: absolute;
  left: 0;
  top: 0;
}

.sb li {
  font-size: 17px;
  line-height: 17px;
  padding: 0 10px;
  opacity: .8;
}

.sb ul li.active {
  opacity: 1;
}

.sb ul li + li {
  border-left: 1px solid #fff;
}

.sb i {
  margin-top: 15px;
  display: block;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #485cc7;
  transition: all 0.5s;
  padding: 0 5%;
  box-sizing: border-box;
  overflow-y: auto;
}

#menu-btn-check:checked ~ .menu-content {
  left: 0;
  /*メニューを画面内へ*/
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 15px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 15px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.pc-img { 
  display: block; 
}
.mp-img {
   display: none; 
}

.swiper-container {
  position: relative;
  overflow: hidden;
}

.swiper-slide-active .slide-img {
  -webkit-animation: zoomUp 6s linear 0s;
  animation: zoomUp 6s linear 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex
}

.slide-img {
  background-size: cover;
  background-position: center center;
  height: 100vh;
  min-height: 500px;
  width: 100%;
}

.slide-text {
  position: absolute;
  z-index: 10;
  font-size: 40px;
  color: #fff;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-weight: bold;
}

.swiper-pagination-horizontal.swiper-pagination-bullets {
  bottom: 20px;
  right: 11%;
  width: auto;
  left: auto;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-pagination-bullet {
  border-radius: 0;
  width: 75px;
  height: 3px
}

.swiper-pagination-bullet:first-child {
  border-radius: 5px 0 0 5px;
}

.swiper-pagination-bullet:last-child {
  border-radius: 0 5px 5px 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #485CC7;
  opacity: 1
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 999;
}

main {
  padding-bottom: 100px;
  position: relative;
  z-index: 0;
}

.logo {
  padding-top: 25px;
  padding-left: 50px;
}

.language input {
  display: none;
  cursor: pointer;
}

.language ul {
  display: none;
}

.language input:checked + ul {
  display: block;
}

.navi {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  font-size: 20px
}

.navi a {
  color: #333 !important;
  text-decoration: none !important;
  position: relative;
}

.navi ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.global_nav,
.language label {
  display: flex;
  margin-top: 30px
}

ul.global_nav {
  margin-right: 40px;
  border-right: 1px solid;
}

.global_nav li {
  padding: 5px 40px 5px 0;
}

.global_nav a:before {
  content: "";
  position: absolute;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: #485cc7;
  border-radius: 5px;
  opacity: 0;
  transition: .3s;
}

.global_nav li:hover a:before {
  opacity: 1;
}

.language {
  padding: 5px 25px;
  margin-right: 70px;
  font-size: 17px;
}

.language label {
  position: relative
}

.language label:hover {
  cursor: pointer;
}

.language label:before {
  content: url(/themes/blu@site2018/images/language.svg);
  position: absolute;
  left: -25px;
  top: 2px;
}

.language label:after {
  content: "";
  position: absolute;
  top: 5px;
  right: -25px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}

.language input + ul {
  margin-top: 15px;
  line-height: 1.8;
}

.cart a {
  width: 90px;
  height: 90px;
  background: #485CC7;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
}

.cart a:hover {
  opacity: .8
}

.cart a img {
  position: relative;
  left: 5px;
}

.top_ttl {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10%;
  margin: auto;
  z-index: 1;
  padding-top: 10%;
}

.introduction {
  padding: 80px 0;
}

.introduction h2 {
  font-size: 52px;
  font-weight: normal;
  color: #485CC7;
  letter-spacing: 4px;
  line-height: 1.5;
  margin-top: 15px;
  margin-bottom: 50px;
}

a.btn_w,
a.btn_md,
a.btn_pf {
  color: #485CC7;
  border: 1px solid #485CC7;
  border-radius: 50px;
  width: 230px;
  display: inline-block;
  text-align: center;
  padding: 15px 0;
  position: relative;
  text-decoration: none;
  transition: .3s;
}

a.btn_md {
    background: #fff;
    width: 250px;
    padding: 23px 0;
    font-size: 20px;
}

a.btn_pf {
  background: #fff;
  width: 100%;
  padding: 10px 0;
  color: #333;
  border: none;
}

.sales-list a.btn_pf {
  background: none;
  border: 1px solid;
}

a.btn_ar {
  color: #485CC7;
  position: relative;
  text-decoration: none;
  transition: .3s;
  padding-right: 25px;
}

a.btn_w:after,
a.btn_md:after,
a.btn_ar:after,
a.btn_pf:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #485CC7;
  border-right: 1px solid #485CC7;
  transform: rotate(315deg);
  transition: .3s;
}

a.btn_ar:after {
  right: 0;
}

a.btn_pf:after {
  border-color: #333;
  right: 15px;
}

a.btn_w:hover {
  background: #485CC7 !important;
  color: #fff;
}


a.btn_w:hover:after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

a.btn_md:hover,
a.btn_ar:hover,
a.btn_pf:hover {
  opacity: .7;
}

.introduction .acms-admin-col-lg-6:last-child {
  padding: 0;
}

.introduction p {
  line-height: 1.75;
  font-size: 18px;
  letter-spacing: 1px;
}


.loop_wrap {
  display: flex;
  width: 100%;
  overflow: hidden;
  margin-bottom: 100px;
}

.loop_img_back {
  width: 100%;
  padding-top: 72.5%;
  background-size: cover;
  background-position: center center;
}

.loop_wrap img {
  width: auto;
  height: 100%;
  margin: 0 5px;
}

.loop_wrap ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

.loop_wrap ul:first-child {
  animation: loop 150s -75s linear infinite;
}

.loop_wrap ul:last-child {
  animation: loop2 150s linear infinite;
}

.commitment {
  background: #EFEFEF;
  padding: 100px 0;
}

.ttl {
  text-align: center;
  margin: 0 0 80px;
  position: relative;
}

.ttl.ttl_sp {
  text-align: left;
  margin: 0;
}

.commitment .acms-admin-col-lg-6:last-child {
  padding: 30px 0 40px 30px;
}

.commitment h3 {
  font-weight: normal;
  margin-top: 20px;
  margin-bottom: 0;
}

.commitment h3 + p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 400px;
  margin-top: 10px;
}

.design {
  padding: 30px 0;
}

.design .tab-container-swiper-pagination,
.container-design-menu .tab-container-swiper-pagination {
  display: none;
  text-align: center;
}

.container-design-menu .tab-container-swiper-pagination {
  margin-bottom: 0.5em;
}

.design .swiper-pagination-bullet,
.container-design-menu .swiper-pagination-bullet{
  /*ドットの間隔を変更*/
  margin: 0 10px !important;
  width: 8px;
  height:8px;
  border-radius: 5px !important;
}

.tab-menu-container {
  position: relative;
  overflow: hidden;
  padding-top: 30px;
}

/*
.tab-menu .swiper-wrapper {
  display: flex;
  justify-content: space-between;
}
*/

.tab-menu .swiper-wrapper > div {
  display: block;
  padding-bottom: 10px;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 2px;
  letter-spacing: 2px;
  /*  width: calc(100%/3) !important;*/
  opacity: .3;
  text-align: center;
}

.tab-menu .swiper-wrapper > div:hover {
  cursor: pointer;
  opacity: .7;
}

.tab-menu .swiper-wrapper > div span span {
  margin:0 10px 0 5px;
  font-size: 18px;
  border-top: 1px solid #485CC7;
  border-bottom: 1px solid #485CC7;
  vertical-align: 1px;
}

.tab_icon {
  position: relative;
  padding: 8px;
}

.tab_icon:before {
  content: "";
  position: absolute;
  height: 24px;
  width: 24px;
  border: 1px solid;
  border-radius: 50%;
  left: -25px;
  bottom: -1px;
}

.tab-menu .swiper-wrapper > div,
.tab-menu .swiper-slide-thumb-active {
  color: #485CC7;
}

.tab-menu .swiper-wrapper > div.swiper-slide-thumb-active {
  opacity: 1;
}

.tab-menu .swiper-wrapper > div:hover .tab_icon:before,
.tab-menu .swiper-slide-thumb-active .tab_icon:before {
  content: url(/themes/blu@site2018/images/design_icon.svg);
  height: auto;
  width: auto;
  border: none;
}

.tab-content {
  margin-top: 40px;
}

.design-content {
  justify-content: space-between;
  align-items: flex-start;
}

.design-content div {
  width: 329px;
}

.design-content h3 {
  font-weight: normal
}

.design-content h3 span {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 60%;
  margin-left: 10px;
}

.design-content h3 + p {
  font-size: 17px;
}

.design-content a.btn_w {
  padding: 10px 0;
  width: 196px;
  font-size: 16px;
  margin-top: 30px;
}

.design_content2 .sb img {
  width: 265px;
}

.tab-arrow-wrapper {
  position: relative;
  top: 430px;
  margin: 0px -55px;
}

.swiper-button-next:before,
.swiper-button-next:after,
.swiper-button-prev:before,
.swiper-button-prev:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  transition: .3s;
}

.swiper-button-next:before,
.swiper-button-prev:before {
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  border: 1px solid #485CC7;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  left: 3px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #485CC7;
  border-right: 1px solid #485CC7;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.swiper-button-prev:after {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  left: 9px;
}



.middle_navi {
  background: #485CC7;
  padding: 60px 0;
}

.middle_navi ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.news {
  padding: 120px 0 60px;
}

.news dt {
    position: absolute;
    font-size: 13px;
}

.news dt span {
    font-size: 15px;
    line-height: 25px;
    margin-left: 6px;
    letter-spacing: 1px;
}

.news dd {
    margin: 0;
    padding-left: 125px;
    padding-top: 2px;
    padding-bottom: 20px;
    border-bottom: 1px solid #aaa;
    margin-bottom: 20px;
    transition: .3s;
    position: relative;
    font-size: 17px;
    line-height: 20px;
}

.news dd:hover {
  color: #485CC7
}

.news a.bl-bigger {
  color: inherit;
  text-decoration: none;
}

.insta-arrow-wrapper {
    position: relative;
    top: 95px;
    margin: 0px -15px;
}

.insta i {
  margin-right: 10px;
  position: relative;
  top: 5px;
}

.insta_container img {
  width: 100%;
}

.insta-content-prev:before,
.insta-content-next:before {
  background: #fff;
  border: none;
  opacity: .8;
  box-shadow: 1px 1px 0px 0px rgb(0 0 0 / 0%);  
  transition: none
}

.insta-content-prev:after,
.insta-content-next:after {
  border-color: gray;
}

.insta-content-prev:hover:before,
.insta-content-next:hover:before {
  opacity: 1;
  box-shadow: 1px 1px 0px 0px rgb(0 0 0 / 10%);
}

footer {
  background: #485CC7;
  padding: 60px 0 40px;
  color: #fff;
  position: relative;
}

footer .acms-container {
  display: grid;
  grid-template-rows: 130px 50px;
  grid-template-columns: 16% 53% 31%;
  grid-auto-flow: dense;
}

.footer_logo {
  width: 65px;
}

footer p {
  margin: 5px 0 0;
  font-size: 14px;
}

footer i {
  margin-right: 5px;
  position: relative;
  top: 4px;
}

footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer nav ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: column;
}

footer nav li {
  padding-left: 10px;
  border-left: 1px solid;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
}

footer nav li:nth-child(2n-1) {
  padding-bottom: 23px;
}

footer nav li:last-child {
  grid-column: 4;
  grid-row: 1/3;
  height: auto;
}

footer a {
  color: #fff !important;
  text-decoration: none !important;
  transition: .3s;
}

footer a:hover {
  opacity: .7;
}

.footer_link {
  grid-column: 1 / 3;
  display: flex;
  opacity: .8;
}

.footer_link ul {
  display: flex;
  font-size: 12px;
  margin-right: 20px;
}

.footer_link li {
  margin-right: 30px;
}

footer .acms-text-right img {
  width: 270px;
}

.page-top-btn {
  position: absolute;
  top: -60px;
  right: 40px;
}

.page-top-btn:after {
  content: "";
  position: absolute;
  top: -20px;
  margin: auto;
  left: 0;
  right: 0;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #485CC7;
  border-right: 1px solid #485CC7;
  transform: rotate(225deg);
  transition: .3s;
}

.page-top-btn:hover:after {
  top: -30px;
}

.hero_image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center center;
}

.entry_ttl {
  color: #485CC7;
  font-size: 40px;
  text-align: center;
  margin-top: 90px;
  font-weight: normal;
}

.entry_ttl span {
  display: block;
  position: relative;
  font-size: 70%;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.entry_ttl span:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background: #485CC7;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}

.w1024 {
  max-width: 1024px;
  padding: 0 10px;
  margin: 0 auto;
}

.w760 {
  max-width: 760px;
  padding: 10px;
  margin: 0 auto;
}

.w760 p {
  line-height: 2;
  margin-top: 64px;
  margin-bottom: 100px;
}

.about_description {
  width: 1080px;
  height: 320px;
  border-radius: 200px;
  border: 1px solid #485CC7;
  display: flex;
  align-content: flex-start;
  margin: 110px auto 50px;
  padding: 50px 150px;
  box-sizing: border-box;
}

.about_description img {
  width: 325px;
  /* height: 150px; */
  margin-right: 70px;
}

.about_description h2 {
  font-size: 18px;
}

.about .acms-text-center img {
  max-width: 100%
}

.under_line {
  color: #333;
  padding-bottom: 10px;
  border-bottom: 1px solid #485CC7;
  font-weight: normal;
}

.back_gray {
  background: #F6F6F6;
}

.detailed section {
  padding: 60px 0;
}

.detailed p {
  font-size: 16px;
}

.detailed img {
  margin: 0 auto;
}

.store-container {
  position: relative;
  padding-top: 150px;
}

.store-container h1 {
  color: #485CC7;
  letter-spacing: 3px;
  margin-bottom: 110px;
}

.store {
  background: #ECF0F9;
  padding: 60px 0 100px;
}

.pref-list,
.sales-list {
  display: grid;
  grid-template-columns: 18% 18% 18% 18% 18%;
  grid-gap: 2%;
  font-size: 16px;
  margin-bottom: 25px;
}

.pref-list li,
.sales-list li {
  margin-bottom: 25px;
}

.sales-list {
  margin-bottom: 50px;
}

.back_W {
  background: #fff;
  border-radius: 50px;
  padding: 20px 60px 40px;
  box-sizing: border-box;
}

.store h2,
.contact h2 {
  color: #000;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-top: 40px;
}

.store-list {
  font-size: 16px;
  margin-bottom: 80px;
}

.store-list:last-of-type {
  margin-bottom: 0;
}

.store-list li {
  display: grid;
  grid-template-columns: 20% 33% 32% 15%;
  align-items: baseline;
  border-bottom: 1px solid #dedede;
  margin-top: 20px;
  padding-bottom: 20px;
}

.store-list li:last-child {
  border-bottom: none;
}

.store-list h3 {
  margin: 0;
  font-weight: normal;
  color: #485CC7;
}

.store-list div,
.store-list span {
  padding-right: 20px;
}

.store-list span[class=""] {
  position: relative
}

.store-list span[class=""]:before {
  position: absolute;
  width: 100%;
  height: 20px;
  background: #ffffff;
  content: "";
  top: -30px;
  left: 0;
}

.store-list p {
  margin: 0;
  word-break: break-all;
}

.store-list th {
  color: #485CC7;
  font-weight: normal;
  width: 80px;
  position: relative;
  vertical-align: baseline;
}

.store-list th:after {
  content: ":";
  position: absolute;
  right: 0;
}

.store-list td {
  padding-left: 10px;
}

a.black-link {
  color: #333;
  text-decoration: none;
  transition: .3s;
}

a.black-link:hover {
  color: #485CC7;
}

a.map_btn {
  width: 100%;
  border: 1px solid;
  text-align: center;
  font-size: 16px;
  border-radius: 30px;
  padding: 1px 0 2px;
}

.qa h2 {
  color: #000;
  font-size: 24px
}

.toggle_contents {
  margin: 0 0 65px;
}

.toggle_title {
  position: relative;
  padding: 20px 60px 20px 30px;
  cursor: pointer;
  font-size: 19px;
  line-height: 1.4;
  background: #ECF0F9;
  border-radius: 10px;
  margin-top: 20px;
}

.toggle_btn {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}

.toggle_btn:before,
.toggle_btn:after {
  display: block;
  content: '';
  background-color: #aaa;
  position: absolute;
  width: 20px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.toggle_btn:before {
  width: 2px;
  height: 20px;
}

.toggle_title.selected .toggle_btn:before {
  content: normal;
}

.toggle_contents dd {
  display: none;
  margin: 0;
  padding: 0 30px;
  font-size: 18px;
}

.toggle_contents dd p {
  margin: 25px 0 50px;
}

.entry.acms-container {
  max-width: 800px;
}

.entryInfo {
  margin: 20px 0 0;
  color: #6c6c6c;
  font-size: 16px;
}

.entry .entryInfo {
  margin: 30px 0 10px;
}

.entryInfo + p {
  font-size: 18px;
}

.entry p {
  margin-bottom: 60px;
}

.entry-title {
  margin: 0 0 20px;
  font-weight: normal;
  line-height: 1;
}

.entry-pager {
  display: flex;
  justify-content: center;
  margin: 30px auto 50px;
  width: 300px;
  position: relative;
  font-size: 16px;
}

.summary-custom li {
  padding: 0px 30px !important;
}

.photo {
  width: 100%;
  overflow: hidden;
}

.photo img {
  transition: .3s all;
}

.summary-custom li:hover img {
  transform: scale(1.1, 1.1);
}

.summary-custom li:hover a {
  color: #485CC7;
}

.design-tab .swiper-wrapper {
  display: flex;
}

.design-tab .swiper-slide {
  width: calc(100%/3);
}

.design_content1 {
  margin-bottom: 195px;
}

.design_content1 h1 {
  position: relative;
  margin: 0;
}

.design_content1 img {
  max-width: 550px;
  width: 100%
}

.design_content1 > *:last-child {
  position: relative;
  bottom: -130px;
}

.design_content2 p {
  padding: 0 60px 0 30px;
}

.design_content2 div:first-child {
  margin-top: -70px;
  width: calc(100% - 550px);
}

.design_content2 div:last-child {
  width: 550px;
}

.design_content3 {
  align-items: center;
  padding: 120px 10px 100px;
  flex-direction: row-reverse;
}

.design_content3 div {
  width: 350px;
}

.design_content3 p + img {
  margin-top: 115px
}

.under-line {
  position: relative;
  margin-top: 100px;
  margin-bottom: 40px;
  letter-spacing: 3px;
}

.under-line:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: #333;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: auto;
}

.design h4 {
  letter-spacing: 2px;
  margin-bottom: 0;
  font-size: 24px;
}

.ruby span {
  display: block;
  font-size: 50%
}

.design_content4 {
  overflow: hidden
}

.design_content4 img {
  width: 100%
}

.design_content5 p {
  font-size: 95%;
  margin: 5px 0 10px;
}

.design_content5 img {
  margin: 0 auto;
}

.price span {
  font-size: 110%;
  font-weight: bold
}

.other_link {
  padding: 50px 0 60px;
}

.other_link div {
  max-width: 460px;
}

.other_link div:last-child {
  padding-top: 50px;
}

.other_link span,
.other_link img {
  position: relative;
}

.other_link span {
  width: 100%;
  height: 572px;
  display: inline-block;
}

.other_link span:before {
  content: "";
  width: 80%;
  height: 80%;
  background: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: .3s;
}

.other_link div:hover span:before {
  bottom: -5px;
  right: -5px;
  background: #485CC7;
}

.other_link a {
  color: #333;
  font-weight: bold;
  position: relative;
  text-decoration: none;
  transition: .3s;
}

.other_link a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  transition: .3s;
  transform: rotate(135deg);
}

.other_link div:first-child a {
  float: left;
  padding-left: 20px
}

.other_link div:first-child a:after {
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
  left: 0;
}

.other_link div:last-child a {
  float: right;
  padding-right: 20px;
}

.other_link div:last-child a:after {
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  right: 0;
}

.other_link div:hover a {
  color: #485CC7;
}

.other_link div:hover a:after {
  border-color: #485CC7;
}

.btn-attention-block-large {
  width: 100%;
  background: #485CC7;
  color: #fff;
  line-height: 1.2;
  border: 0;
  display: inline-block;
  padding: 25px 20px;
  text-align: center;
  border-radius: 50px;
  font-size: 20px;
  box-sizing: border-box;
  transition: .3s;
  position: relative;
  text-decoration: none
}

.form-btn-box span {
  position: relative;
}

.btn-attention-block-large:after,
.form-btn-box span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(315deg);
  transition: .3s;
}

.btn-attention-block-large:hover,
.btn-attention-block-large:visited {
  color: #fff;
  text-decoration: none
}

.btn-attention-block-large:active,
.btn-attention-block-large:focus {
  color: #fff;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5)
}

.btn-attention-block-large:active,
.btn-attention-block-large:focus,
.btn-attention-block-large:hover {
  opacity: .8
}

.btn-large {
  background: #777;
  color: #fff;
  line-height: 1.2;
  border: 0;
  display: inline-block;
  padding: 25px 20px;
  text-align: center;
  border-radius: 50px;
  font-size: 20px;
  box-sizing: border-box;
  transition: .3s;
}

.btn-large:hover,
.btn-large:visited {
  color: #fff;
  text-decoration: none
}

.btn-large:active,
.btn-large:focus {
  color: #fff;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5)
}

.btn-large:active,
.btn-large:focus,
.btn-large:hover {
  opacity: .8
}

@media (min-width:768px) {

  .btn-attention-block-large,
  .btn-block-large {
    max-width: 360px
  }
}

.pager {
  display: flex;
  position: relative;
  justify-content: center;
  width: 270px;
  margin: 80px auto 0;
}

/*
.pager li {
	display: inline-block;
	margin: 0 5px;
}
*/
.pager li.cur {
  padding: 0px 30px;
  position: relative;
  color: #fff;
}

.pager li.cur:before {
  content: "";
  position: absolute;
  background: #485CC7;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  z-index: -1;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}

.pager-link {
  color: #333;
  text-decoration: none;
}

.pager-link:visited,
.pager-link:focus,
.pager-link:active {
  color: #333;
}

.pager-link:hover {
  color: #485CC7;
  text-decoration: underline
}

.design-tab-entry {
  position: relative
}

@media (min-width: 1024px) {
  .sp_header {
    display: none;
  }

  .pl60 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .swiper-slide-next .slide-img,
  .swiper-slide-next + div .slide-img.slide-img {
    -webkit-animation: zoomUp 6s linear 0s;
    animation: zoomUp 6s linear 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  .ttl:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 70px;
    background: #485CC7;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -80px;
  }

  h2.ttl.side {
    text-align: left;
    margin: 0;
    display: inline-block;
  }

  h2.ttl.side:after {
    width: 116px;
    height: 1px;
    top: 0;
    bottom: 0;
    right: -132px;
    left: auto;
  }

  h2.ttl.ttl_sp:after {
    content: inherit;
  }

  .insta .acms-admin-grid {
    display: flex;
    align-items: center;
  }

  .w1024 .acms-admin-col-lg-6:first-child {
    padding-right: 20px;
  }

  .w1024.w1080 {
    max-width: 1060px;
  }

  .w1024.w1080 .acms-admin-col-lg-6 {
    width: 470px;
    padding-left: 0;
    padding-right: 0;
  }

  .w1024.w1080 .acms-admin-col-lg-6:last-child {
    float: right
  }

  .point2 .w1024.w1080 .acms-admin-col-lg-6:last-child {
    width: 475px;
  }
  .tab-content-next:hover:before,
  .tab-content-prev:hover:before {
    background: #485CC7;
  }

.tab-content-next:hover:after,
.tab-content-prev:hover:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.tab-menu .swiper-wrapper > div {
  border-bottom: #dedede 1px solid;
}

.tab-menu .swiper-wrapper > div:nth-child(-n+3) {
  margin-top:0px !important;
}


.tab-menu .swiper-wrapper > div:nth-child(n+4) {
  margin-top:40px !important;
}

.container-design-menu .tab-menu .swiper-wrapper > div:nth-child(-n+3) {
  line-height: 200%;
  margin-top:0px !important;
}

.container-design-menu .tab-menu .swiper-wrapper > div:nth-child(n+4) {
  line-height: 200%;
  margin-top:40px !important;
}

.tab_icon {
  padding: 18px 8px;
  line-height: 24px;
  margin-left: 24px;
}

.tab_icon:before {
  bottom: 18px;
}
}

@media (max-width:1080px) {
  .middle_navi ul {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 75px;
    text-align: center;
  }

  footer .acms-container,
  .footer_link {
    display: block
  }

  footer nav ul {
    margin: 30px 0 40px;
  }

  footer .acms-text-right {
    text-align: center;
    margin-bottom: 30px;
  }

  footer .acms-text-right img {
    margin-bottom: 20px
  }

  .about_description {
    width: 90%;
    height: auto;
    display: block;
    padding: 50px 8% 30px;
    border-radius: 30px;
    margin: 50px auto 0;
  }

  .about_description img {
    width: 60%;
  }
}

@media (max-width:1023px) {

  .pc-img { 
  display: none; 
  }
  .mp-img {
    display: block; 
  }

  .is-locked {
    overflow: hidden;
  }

  .pc_header {
    display: none
  }

  .slide-img {
    background-position: bottom;
    height: 75vh;
    min-height: 360px;
  }

  .top_ttl {
    top: auto;
    width: 50vw;
    bottom: 0;
    left: 5%;
    position: relative;
    margin-top: -20vw;
    margin-bottom: 20px;
  }

  h2.ttl.ttl_sp {
    text-align: center;
    margin: 0 0 80px;
  }

  .introduction {
    padding: 0 5% 40px;
  }

  .introduction .acms-admin-col-12.acms-admin-col-lg-6 {
    max-width: 520px;
    margin: 0 auto;
  }

  .commitment .acms-admin-col-12.acms-admin-col-lg-6 {
    max-width: 400px;
    margin: 0 auto;
  }

  .introduction h2 {
    font-size: 35px;
  }

  .introduction p {
    padding: 0 10px;
  }

  .commitment .acms-admin-col-lg-6:last-child {
    padding: 20px 10px 0;
  }

  .tab-arrow-wrapper {
    top: 60px;
    margin: 0;
  }

  .design {
    padding: 20px 0 30px;
  }

  .design .ttl{
    margin: 0 0 30px;
  }

  .design .tab-container-swiper-pagination,
  .container-design-menu .tab-container-swiper-pagination {
    display: block;
  }
  .design-content {
    display: block;
  }

  .design-content img,
  .design-content div {
    width: 100%;
  }

  .design-content .acms-text-right {
    text-align: center;
  }

  .design_content2 .sb img {
    width: 100%;
  }

  .swiper-pagination-horizontal.swiper-pagination-bullets {
    right: 5%;
  }

  .swiper-pagination-bullet {
    width: 10px;
  }

  .hero_image {
    height: 300px;
  }

  .design-tab-entry .swiper-wrapper > div {
    display: none;
  }

  .design-tab-entry .swiper-wrapper > div.swiper-slide-thumb-active {
    display: block;
    width: 100%;
    font-size: 8vw;
  }

  .design-tab-entry .swiper-wrapper > div.swiper-slide-thumb-active .tab_icon:before {
    bottom: 2.2vw;
  }

  .design-tab-entry .swiper-wrapper > div span span {
    vertical-align: 1.2vw;
    font-size: 4vw;
  }

  .container-design-menu .design-tab-entry .swiper-wrapper > div.swiper-slide-thumb-active .tab_icon:before {
    bottom:.5vw;
  }

  .tab_icon {
    margin-left: 35px;
  }

  .tab-content {
    margin-top: 20px;
  }

  .tab-menu .swiper-wrapper > div:first-child {
    padding-left: 0;
  }

  .tab_icon:after {
    content: "";
    position: absolute;
    height: 1px;
    width: calc(100% + 60px);
    background: #333;
    bottom: -5px;
    left: -45px;
  }

  .tab-menu .swiper-wrapper > div:hover .tab_icon:after,
  .swiper-slide-thumb-active .tab_icon:after {
    background: #485CC7;
  }

  .design_content1,
  .design_content2,
  .design_content3 {
    display: block;
  }

  .design_content1 {
    margin-bottom: 80px;
  }

  .design_content1 img {
    margin: 0 auto;
  }

  .design_content1 > *:last-child {
    bottom: -40px;
  }

  .design_content2 div:first-child,
  .design_content2 div:last-child,
  .design_content3 div {
    width: 100%;
  }

  .design_content2 div:first-child {
    margin-top: 0;
  }

  .design_content2 div:last-child {
    padding: 0 50px;
    box-sizing: border-box;
  }

  .design_content2 div:last-child img {
    width: 48%;
  }

  .design_content2 p {
    padding: 0 50px;
  }

  .design_content3 {
    padding: 50px 60px;
  }

  .design_content3 div {
    margin-top: 50px
  }

  .design_content3 p + img {
    margin: 0 auto;
  }

  .other_link.sb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px
  }

  .w1024.back_W {
    width: 90%;
    border-radius: 30px;
  }

  .middle_navi {
    padding: 40px 0;
  }

  .news {
    padding: 60px 0;
  }

  .pref-list,
  .sales-list {
    grid-template-columns: 32% 32% 32%
  }

  .store-list span {
    display: none;
  }

  .store-list li {
    grid-template-columns: 52% 48%;
  }

  a.map_btn {
    max-width: 150px;
    margin-top: 10px;
  }

  .store-container {
    padding-top: 80px;
  }

  .commitment {
    padding: 60px 0;
  }

  .store-container h1 {
    font-size: 26px;
    margin-bottom: 60px;
  }

  .summary-custom li + li {
    margin-top: 40px;
  }

  h2.contact_h2 {
    margin-top: 0;
  }
  .tab-content-next:focus:before,
.tab-content-prev:focus:before {
  background: #485CC7;
}

.tab-content-next:focus:after,
.tab-content-prev:focus:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

}

@media (max-width:767px) {
  body {
    font-size: 15px;
  }

  .logo {
    padding-left: 25px;
  }

  .introduction p {
    font-size: 16px;
  }

  .middle_navi ul {
    grid-template-columns: 49% 49%;
  }

  .middle_navi a.btn_md {
    width: 100%;
    font-size: 14px;
  }

  a.btn_w,
  a.btn_md,
  a.btn_pf {
    padding: 10px 0;
    font-size: 14px;
  }

  footer nav ul {
    grid-template-columns: repeat(3, 1fr);
  }

  footer nav li:nth-child(2n-1) {
    padding-bottom: inherit;
  }

  footer nav li {
    padding-bottom: 20px;
  }

  footer nav li:nth-child(3n) {
    padding-bottom: 0;
  }

  footer nav li:last-child {
    grid-column: 3;
    grid-row: 1/4;
  }

  main {
    padding-bottom: 130px;
  }

  .acms-container,
  .w1024,
  main.about {
    padding-left: 5%;
    padding-right: 5%;
  }

  .commitment h3 + p,
  .design-content h3 + p {
    font-size: 13px;
  }

  .news dt {
    font-size: 11px;
  }
  
  .news dt span {
    font-size: 13px;
    line-height: 20px;
}

  .news dd {
    padding-left: 105px;
    padding-top: 0;
    line-height: 22px;
    font-size: 15px;
  }


  .ttl {
    margin-bottom: 50px;
  }

  .entry_ttl {
    font-size: 28px;
    padding: 0 5%;
    text-align: left;
    margin-top: 40px;
  }

  .entry_ttl span {
    text-align: center;
  }

  .design_content2 p {
    padding: unset;
  }

  .design_content2 div:last-child {
    padding: unset;
  }

  .other_link span {
    height: auto;
  }

  .other_link span:before {
    bottom: 7px;
  }

  .other_link div:hover span:before {
    bottom: 2px;
  }

  .design_content1 {
    padding-left: 10%;
    padding-right: 10%;
  }

  .store {
    padding: 30px 0 90px;
  }

  .store-list {
    margin-bottom: 40px;
  }

  .pref-list,
  .sales-list {
    grid-template-columns: 50% 50%
  }

  .pref-list li,
  .sales-list li {
    margin-bottom: 10px;
  }

  .store-list li {
    grid-template-columns: 100%;
  }

  .store-list th:after {
    position: relative;
    right: -3px;
  }

  .toggle_contents dd,
  .detailed p,
  footer nav li {
    font-size: 14px;
  }

  .point1 .acms-admin-col-12:last-child {
    margin-top: 40px;
  }

  .qa h2 {
    font-size: 22px;
  }

  .toggle_title {
    font-size: 16px;
  }

  .point3 .mb100 {
    margin-bottom: 0;
  }

  .w760 p {
    margin-top: 15px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .point2 .mb75 {
    margin-bottom: 45px
  }

  .loop_wrap ul:first-child {
    animation: loop 60s -30s linear infinite;
  }

  .loop_wrap ul:last-child {
    animation: loop2 60s linear infinite;
  }
  .insta_list img {
    width: 100%;
    height: auto;
}
  .design_content4 {
    padding: 0 10px;
}
  .insta-arrow-wrapper {
    top: 21.5vw;
}
}

@media (max-width:400px) {
  .commitment .acms-admin-col-12.acms-admin-col-lg-6 {
    padding-left: 5%;
    padding-right: 5%;
  }

}

@media (max-width:375px) {
  .middle_navi ul {
    display: block
  }

  .middle_navi a.btn_md {
    margin-bottom: 10px;
  }

  footer nav li {
    font-size: 14px
  }

  .footer_link ul {
    margin-right: 0;
  }

  .footer_link li {
    font-size: 12px;
    margin-right: 10px;
  }
  .show-375{
    display: block
  }
}
