@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond&family=EB+Garamond&family=Meie+Script&family=Roboto&family=Shippori+Mincho+B1:wght@500&display=swap");
/*------------------ common ------------------*/
html {
  width: 100%;
  font-size: 62.5%;
}

body {
  /*font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
*/
  font-family: zen-kaku-gothic-new", "Noto Sans JP", "游ゴシック","游ゴシック体","Yu Gothic",YuGothic,"ヒラギノ角ゴ ProN","ヒラギノ角ゴ Pro","Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",verdana,"メイリオ","Meiryo","Osaka",sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  color: #3E3F3D;
  letter-spacing: 0;
  width: 100%;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}
b, strong, .bold {
  font-family: "Lato","Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: bold;
}

.ja-serif {
  font-family: 'Shippori Mincho B1', serif !important;
}

.c-garamond {
  font-family: 'Cormorant Garamond', serif;
}

.eb-garamond {
  font-family: 'EB Garamond', serif;
}

.m-script {
  font-family: 'Meie Script', cursive;
}

.roboto {
  font-family: 'Roboto', sans-serif;
}

a {
  color: #3E3F3D;
  text-decoration: none;
  transition: opacity .3s;
}
a:hover, a:focus, a:visited {
  outline: none;
  color: #3E3F3D;
}
a:hover {
  opacity: .7;
  color: var(--color_black);
}
/*
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
*/
#wrapper > header.header img, 
#wrapper footer.footer img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.img {
  position: relative;
}

.cover {
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
  padding: 0;
  border: none;
  background: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contain {
  object-fit: contain;
  object-position: center;
  font-family: "object-fit: contain; object-position: center;";
  padding: 0;
  border: none;
  background: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}

* {
  box-sizing: border-box;
}

/*------------------ section ------------------*/
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.container.w-small {
  max-width: 960px;
}

.s-title {
  font-size: 7rem;
  margin-bottom: 6rem;
  text-align: center;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .s-title {
    font-size: 5rem;
    margin-bottom: 4rem;
  }
}
.iframe-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
}
.iframe-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sp {
  display: none;
}

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

  .sp {
    display: block;
  }

  br.sp {
    display: inline-block;
  }
}
/*------------------ header ------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: background .3s;
  background: transparent;
}
.header.bg, .header.bg-pc {
  background: rgba(255, 255, 255, 0.7);
}
.header.add-bg {
  background: rgba(255, 255, 255, 0.7);
}
.header .container {
  display: flex;
  align-items: center;
  position: relative;
  height: 120px;
}
.header__logo {
  flex-shrink: 0;
  width: 136px;
  margin-right: 5.5%;
}
.header__nav {
  display: flex;
  align-items: center;
}
.header__nav li {
  border-right: solid #707070 1px;
  padding-right: 3rem;
  margin-right: 3rem;
}
.header__nav li:last-child {
  border: none;
  padding: 0;
  margin: 0;
}
.header__nav li a {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
}
.header__nav li a span {
  display: block;
  font-size: 1.8rem;
  margin-bottom: .6rem;
}
.header__toggle {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
}
.header__toggle span {
  width: 23px;
  height: 2px;
  background: #3F403E;
  display: block;
  position: relative;
  transition: all .3s;
}
.header__toggle span:before, .header__toggle span:after {
  content: "";
  width: 23px;
  height: 2px;
  background: #3F403E;
  display: block;
  position: absolute;
  top: -7px;
  transition: all .3s;
}
.header__toggle span:after {
  top: auto;
  bottom: -7px;
}
.header__toggle.nav_close span {
  background: transparent;
}
.header__toggle.nav_close span:before, .header__toggle.nav_close span:after {
  top: 0;
  transform: rotate(45deg);
}
.header__toggle.nav_close span:after {
  top: 0;
  bottom: auto;
  transform: rotate(-45deg);
}

@media screen and (max-width: 1100px) {
  .header__nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header.bg-pc {
    background: none;
  }
  .header .container {
    height: 60px;
  }
  .header__logo {
    width: 75px;
  }
  .header__toggle {
    width: 30px;
    height: 30px;
    background: #fff;
  }
  .header__toggle span {
    width: 13px;
    height: 1px;
  }
  .header__toggle span:before, .header__toggle span:after {
    content: "";
    width: 13px;
    height: 1px;
    top: -4.5px;
  }
  .header__toggle span:after {
    top: auto;
    bottom: -5px;
  }
}
/*------------------ toggle menu ------------------*/
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: visible;
}
body.fixed .header.bg {
  background: none;
}
body.fixed .header__logo, body.fixed .header__btn, body.fixed .header__nav {
  display: none;
}

.toggle-menu {
  opacity: 0;
  transition: opacity .4s;
  position: fixed;
  overflow-y: scroll;
  top: 0;
  left: 0;
  background: #fff;
  text-align: center;
  z-index: 5;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  padding: 130px 0;
}
.toggle-menu.show {
  opacity: 1;
  pointer-events: all;
}
.toggle-menu .products-lineup {
  display: flex;
  margin-bottom: 3rem;
}
.toggle-menu .products-lineup li {
  width: 100%;
  border-right: 1px dotted #707070;
  padding: 0 1.5rem;
}
.toggle-menu .products-lineup li.uv-moist .link_wrap a.nav_syosai_link {
  background: #d6e9f3;
}
.toggle-menu .products-lineup li.uv-moist .link_wrap a.nav_kounyu_link {
  background: #EE6A6A;
}
.toggle-menu .products-lineup li.o2-moist .link_wrap a.nav_syosai_link {
  background: #c5d5f8;
}
.toggle-menu .products-lineup li.o2-moist .link_wrap a.nav_kounyu_link {
  background: #EE6A6A;
}
.toggle-menu .products-lineup li.uv-ring .link_wrap a.nav_syosai_link {
  background: #f8ede0;
}
.toggle-menu .products-lineup li.uv-ring .link_wrap a.nav_kounyu_link {
  background: #EE6A6A;
}
.toggle-menu .products-lineup li.uv-2week .link_wrap a.nav_syosai_link {
  background: #c8e8e3;
}
.toggle-menu .products-lineup li.uv-2week .link_wrap a.nav_kounyu_link {
  background: #EE6A6A;
}
.toggle-menu .products-lineup li.uv-2week .img img {
  width: 80%;
  margin: auto;
}
.toggle-menu .products-lineup li:last-child {
  border: none;
}
.toggle-menu .products-lineup li .name {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.toggle-menu .products-lineup li .name span {
  font-size: 1.8rem;
  margin-bottom: .5rem;
  display: block;
}
.toggle-menu .products-lineup li .img {
  max-width: 180px;
  margin: 0 auto 2rem;
  padding-top: 95%;
  position: relative;
}
.toggle-menu .products-lineup li .desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.toggle-menu .products-lineup li .desc br {
  display: none;
}
.toggle-menu .products-lineup li .link_wrap {
  width: 90%;
  max-width: 180px;
  margin: 0 auto 2rem;
  line-height: 1;
}
.toggle-menu .products-lineup li .link_wrap a {
  display: block;
  border-radius: 10em;
  position: relative;
  font-size: 1.3rem;
  padding: 1rem;
}
.toggle-menu .products-lineup li .link_wrap a:after {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 12px;
  top: 0;
  bottom: 0;
  right: 10%;
  margin: auto;
  background: url("../../images/2021/common/arrow-small.png") center/contain no-repeat;
}
.toggle-menu .products-lineup li .link_wrap a.nav_kounyu_link {
  color: #fff;
}
.toggle-menu .products-lineup li .link_wrap a.nav_kounyu_link:after {
  width: 3.5px;
  background: url("../../images/2021/common/arrow-order.png") center/contain no-repeat;
}
.toggle-menu .products-lineup li .link_wrap.order_wrap {
  margin-bottom: 0;
}
.toggle-menu .products-lineup.care {
  border-top: 1px dotted #707070;
  padding-top: 3rem;
}
.toggle-menu .products-lineup.care li {
  display: flex;
  align-items: center;
  width: 100%;
}
.toggle-menu .products-lineup.care li .img-box {
  flex-shrink: 0;
  width: 35%;
}
.toggle-menu .products-lineup.care li .img-box .img {
  width: 100%;
  padding-top: 100%;
  position: relative;
  max-width: 100%;
  margin: 0;
}
.toggle-menu .products-lineup.care li .text {
  width: 100%;
}
.toggle-menu .products-lineup.care li .text .name {
  margin-bottom: 2rem;
}
.toggle-menu .products-lineup.care li .link_wrap {
  margin-bottom: 0;
}
.toggle-menu .links {
  border-top: solid #707070 1px;
  border-bottom: solid #707070 1px;
  display: flex;
  padding: 1.5rem 0;
  margin-bottom: 3.5rem;
}
.toggle-menu .links li {
  border-right: solid #707070 1px;
  width: 100%;
  /*
  &:first-child {
    border-left: solid #707070 1px;
  }
  */
}
.toggle-menu .links li:last-child {
  border-right: none;
}
.toggle-menu .links li a {
  line-height: 1;
  padding: 2rem  0;
  display: block;
  font-size: 1.5rem;
  /*
  &:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 1rem;
    background: url("../../images/2021/common/arrow-small.png") center / contain no-repeat;
  }
  */
}
.toggle-menu .order {
  margin-bottom: 4rem;
}
.toggle-menu .order a {
  position: relative;
  display: inline-block;
  background-color: #EE6A6A;
  color: #fff;
  text-decoration: none;
  border-radius: 10em;
  padding: 2rem 10rem 2rem 11rem;
  font-size: 1.7rem;
}
.toggle-menu .order a:after {
  content: "";
  position: relative;
  display: inline-block;
  width: 6px;
  height: 10px;
  top: calc(50% - 5px);
  margin-left: 10px;
  background: url("../../images/2021/common/arrow-order.png") center/contain no-repeat;
}
.toggle-menu .logo {
  width: 160px;
  margin: auto;
}

/*
@media screen and (max-width: 940px) {
  .toggle-menu {
    .links {
      border-bottom: none;
      display: flex;
      padding: 0;
      margin-bottom: 3.5rem;
      flex-wrap: wrap;

      li {
        border-right: none;
        border-bottom: solid #707070 1px;
        width: 33.33%;
        padding: 1.5rem 0;

        &:first-child,
        &:nth-child(4) {
          border-left: none;
          
          a {
            border-left: solid #707070 1px;
          }
        }
        
        a {
          border-right: solid #707070 1px;
        }
      }
    }
  }
}
*/
@media screen and (max-width: 1025px) {
  .toggle-menu {
    padding: 70px 0 100px;
  }
  .toggle-menu .products-lineup {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  .toggle-menu .products-lineup li {
    width: 50%;
    border-right: none;
    margin-bottom: 2rem;
    padding: 0;
  }
  .toggle-menu .products-lineup li.uv-moist .img {
    height: 170px;
  }
  .toggle-menu .products-lineup li .name {
    margin-bottom: 2rem;
  }
  .toggle-menu .products-lineup li .name span {
    font-size: 1.6rem;
    margin-bottom: .5rem;
  }
  .toggle-menu .products-lineup li .name span .pc {
    display: none;
  }
  .toggle-menu .products-lineup li .img {
    width: 80%;
    max-width: 180px;
    margin: 0 auto 1.5rem;
    padding-top: 0;
    height: 130px;
  }
  .toggle-menu .products-lineup li .link_wrap {
    width: 80%;
    margin: 0 auto 1.5rem;
  }
  .toggle-menu .products-lineup li .link_wrap a {
    font-size: 1.2rem;
    padding: 1rem;
  }
  .toggle-menu .products-lineup li .link_wrap.order_wrap {
    margin-bottom: 1.5rem;
  }
  .toggle-menu .products-lineup.care {
    justify-content: space-around;
    flex-wrap: nowrap;
    border-top: none;
    padding-top: 0;
  }
  .toggle-menu .products-lineup.care li {
    max-width: 400px;
  }
  .toggle-menu .products-lineup.care li .img-box {
    width: 40%;
    max-width: 140px;
  }
  .toggle-menu .links {
    border-top: none;
    border-bottom: none;
    display: block;
    padding: 0;
    margin-bottom: 3rem;
  }
  .toggle-menu .links li {
    border: none;
    width: 100%;
    padding: 0;
    border-top: solid #707070 1px;
  }
  .toggle-menu .links li:first-child, .toggle-menu .links li:nth-child(4) {
    border-right: none;
    border-left: none;
  }
  .toggle-menu .links li:first-child a, .toggle-menu .links li:nth-child(4) a {
    border: none;
  }
  .toggle-menu .links li:last-child {
    border-bottom: solid #707070 1px;
  }
  .toggle-menu .links li a {
    line-height: 1;
    padding: 2.5rem 0;
    font-size: 1.2rem;
    border: none;
  }
  .toggle-menu .links li a:before {
    content: none;
  }
  .toggle-menu .order {
    margin-bottom: 3rem;
  }
  .toggle-menu .order a {
    display: block;
    padding: 1.1rem 0 1.2rem 1.5rem;
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .toggle-menu .logo {
    width: 120px;
  }
}
@media screen and (max-width: 600px) {
  .toggle-menu .products-lineup.care {
    display: block;
  }
  .toggle-menu .products-lineup.care li {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto 3rem;
  }
  .toggle-menu .products-lineup.care li .img-box {
    width: 140px;
  }
}
@media screen and (max-width: 480px) {
  .toggle-menu .products-lineup li.uv-moist .img {
    height: 130px;
  }
  .toggle-menu .products-lineup li .img {
    height: 100px;
  }
}
/*------------------ kv ------------------*/
.kv {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.kv .container {
  height: 100%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .kv {
    width: 100%;
    height: 80vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  .kv .container {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  .kv {
    height: 65vh;
  }
}
/*------------------ delivery ------------------*/
.delivery {
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 50%, #f9f9f9 100%);
  background: -webkit-linear-gradient(top, #ffffff 50%, #f9f9f9 100%);
  background: linear-gradient(to bottom, #ffffff 50%, #f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f9f9f9',GradientType=0 );
  padding: 6.5rem 0 7.8rem;
  margin-bottom: 10rem;
}
.delivery .container {
  display: flex;
  position: relative;
  align-items: center;
}
.delivery__tab {
  position: absolute;
  left: 0;
  top: -128px;
  width: 280px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background: #fff;
  font-size: 2rem;
  text-align: center;
  line-height: 1;
}
.delivery__tab a {
  display: block;
  padding: 22.5px 0;
}
.delivery__title {
  flex-shrink: 0;
  width: 220px;
}
.delivery__title .title {
  font-size: 2.3rem;
  line-height: 1.6;
  margin-bottom: 2.8rem;
}
.delivery__title p {
  font-size: 1.3rem;
}
.delivery__lineup {
  display: flex;
  justify-content: space-between;
  margin-left: 5%;
}
.delivery__lineup .item {
  flex-shrink: 0;
  width: 22%;
  text-align: center;
}
.delivery__lineup .item.uv-2week .img {
  padding: 6% 10%;
}
.delivery__lineup .item a {
  display: block;
}
.delivery__lineup .item .img {
  margin-bottom: 1rem;
}
.delivery__lineup .item .name {
  font-size: 1rem;
  margin-bottom: .8rem;
  line-height: 1;
}
.delivery__lineup .item .name span {
  font-size: 1.5rem;
  display: block;
  line-height: 1.4;
}
.delivery__lineup .item ul {
  margin-bottom: .9rem;
  line-height: 1.4;
}
.delivery__lineup .item ul li {
  line-height: 1;
  padding: .4rem 1rem .3rem;
  color: #508AB7;
  background: #EDF7FD;
  border-radius: 10em;
  display: inline-block;
  font-size: 1rem;
}
.delivery__lineup .item p {
  font-size: 1.1rem;
  line-height: 1.6;
}

@media screen and (max-width: 1100px) {
  .delivery .container {
    display: block;
  }
  .delivery__title {
    width: 100%;
    text-align: center;
    margin-bottom: 2.8rem;
  }
  .delivery__title br {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .delivery.slick-start {
    background: #ffffff;
    padding: 5rem 0 0;
    margin-bottom: 8rem;
  }
  .delivery.slick-start .container {
    display: block;
  }
  .delivery.slick-start .delivery__tab {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    border-radius: 0;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1;
    padding: 0 0 2.5rem;
    margin-bottom: 1.8rem;
  }
  .delivery.slick-start .delivery__tab:after {
    content: "";
    display: block;
    width: 90px;
    height: 1px;
    background: #707070;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .delivery.slick-start .delivery__tab a {
    pointer-events: none;
    padding: 0;
  }
  .delivery.slick-start .delivery__title {
    width: 100%;
  }
  .delivery.slick-start .delivery__title .title {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  .delivery.slick-start .delivery__title p {
    width: 90%;
    margin: auto;
    text-align: left;
  }
  .delivery.slick-start .delivery__lineup {
    display: block;
    margin: 0 auto;
    position: relative;
  }
  .delivery.slick-start .delivery__lineup .slick-list {
    max-width: 230px;
    margin: 0 auto;
  }
  .delivery.slick-start .delivery__lineup .item {
    width: 100%;
    text-align: center;
  }
  .delivery.slick-start .delivery__lineup .item .name span {
    margin-bottom: .5rem;
  }
  .delivery.slick-start .delivery__lineup .item p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .delivery.slick-start {
    padding: 0;
    margin-bottom: 5rem;
  }
}
/*------------------ kv-movie ------------------*/
.kv-movie {
  margin-bottom: 11rem;
}
.kv-movie__frame {
  margin-bottom: 2rem;
}
.kv-movie__caption {
  text-align: right;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .kv-movie {
    margin-bottom: 5rem;
  }
  .kv-movie__frame {
    margin-bottom: 1rem;
  }
  .kv-movie__caption {
    line-height: 1.3;
    font-size: 1rem;
  }
}
/*------------------ story ------------------*/
.story {
  margin-bottom: 15rem;
}
.story .container {
  max-width: 1400px;
}
.story__item {
  display: flex;
  align-items: center;
  margin-bottom: 11.5rem;
}
.story__item.img-r .img-box {
  order: 1;
  margin-left: auto;
  margin-right: 0;
}
.story__item.img-r .text {
  order: 0;
}
.story__item.item01 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.story__item.item01 .img-box {
  width: 47%;
}
.story__item.item01 .img-box .img {
  padding-top: 150%;
}
.story__item.item01 .img-box .img img {
  object-position: 52% center;
  font-family: "object-fit: cover; object-position: 52% center;";
}
.story__item.item02 {
  max-width: 1300px;
}
.story__item.item02 .img-box {
  width: 61.5%;
}
.story__item.item02 .img-box .img {
  padding-top: 66.6%;
}
.story__item.item02 .img-box .img img {
  width: 103%;
}
.story__item.item02 .text {
  margin-left: 2rem;
}
.story__item.item03 {
  max-width: 1180px;
  margin-left: auto;
}
.story__item.item03 .img-box {
  width: 54%;
}
.story__item.item03 .img-box .img {
  padding-top: 100%;
}
.story__item.item03 .img-box .img img {
  object-position: 38% center;
  font-family: "object-fit: cover; object-position: 38% center;";
}
.story__item .img-box {
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
}
.story__item .text .title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
}
.story__item .text .title span {
  display: block;
}
.story__item .text p {
  line-height: 2.2;
  font-size: 1.8rem;
}

@media screen and (max-width: 1100px) {
  .story__item .text .title {
    font-size: 2.2rem;
  }
  .story__item .text p {
    font-size: 1.3rem;
    letter-spacing: -.01em;
  }
}
@media screen and (max-width: 768px) {
  .story {
    margin-bottom: 5rem;
  }
  .story .container {
    width: 100%;
  }
  .story__item {
    display: block;
    margin-bottom: 6rem;
  }
  .story__item.img-r .img-box {
    margin-left: 0;
    margin-right: 0;
  }
  .story__item.item01 .img-box {
    width: 100%;
  }
  .story__item.item01 .img-box .img {
    padding-top: 100%;
  }
  .story__item.item01 .img-box .img img {
    object-position: 20% center;
    font-family: "object-fit: cover; object-position: 20% center;";
  }
  .story__item.item02 .img-box {
    width: 100%;
  }
  .story__item.item02 .img-box .img {
    padding-top: 100%;
  }
  .story__item.item02 .img-box .img img {
    object-position: 20% center;
    font-family: "object-fit: cover; object-position: 20% center;";
  }
  .story__item.item02 .text {
    margin-left: auto;
  }
  .story__item.item03 .img-box {
    width: 100%;
  }
  .story__item.item03 .img-box .img {
    padding-top: 100%;
  }
  .story__item.item03 .img-box .img img {
    object-position: 55% center;
    font-family: "object-fit: cover; object-position: 55% center;";
  }
  .story__item .img-box {
    margin-bottom: 4rem;
    border-radius: 0;
  }
  .story__item .text {
    width: 92%;
    margin: auto;
  }
  .story__item .text .title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  .story__item .text p {
    line-height: 2.2;
    font-size: 1.5rem;
  }
}
/*------------------ care ------------------*/
.care {
  margin-bottom: 12rem;
}
.care__list .item a {
  display: flex;
  width: 100%;
  border-radius: 10px;
  border: solid #ddd 1px;
  position: relative;
}
.care__list .item:first-child {
  margin-bottom: 8rem;
}
.care__list .item.img-r .img-box {
  order: 1;
}
.care__list .item.img-r .text {
  order: 0;
}
.care__list .item.img-r .more {
  left: auto;
  right: calc(0% - 40px);
}
.care__list .item .img-box {
  width: 100%;
  padding: 2rem 0;
}
.care__list .item .img-box .img {
  width: 100%;
  position: relative;
}
.care__list .item .text {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.care__list .item .text .text-inner {
  width: 60%;
}
.care__list .item .text .title {
  text-align: left;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.care__list .item .text p {
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.5;
}
.care__list .item .more {
  position: absolute;
  top: 50%;
  left: calc(0% - 40px);
  transform: translate(0, -50%);
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #EE6A6A;
  color: #fff;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.care__list .item .more span {
  line-height: 1.4;
  font-size: 1.2rem;
  display: block;
  text-align: center;
  padding-top: 18px;
  position: relative;
}
.care__list .item .more span:before {
  content: "";
  display: block;
  width: 35px;
  height: 7px;
  background: url("../../images/2021/common/arrow-w.png") center/contain no-repeat;
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .care {
    margin-bottom: 6rem;
  }
  .care__list .item a {
    display: block;
  }
  .care__list .item:first-child {
    margin-bottom: 3rem;
  }
  .care__list .item.img-r .more {
    left: 50%;
    right: auto;
  }
  .care__list .item .text {
    display: block;
    text-align: center;
    padding: 10rem 3rem 4rem;
  }
  .care__list .item .text .text-inner {
    width: 100%;
  }
  .care__list .item .text .title {
    font-size: 2.2rem;
    text-align: center;
  }
  .care__list .item .text p {
    max-width: 100%;
  }
  .care__list .item .more {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
/*------------------ voice ------------------*/
.voice {
  margin-bottom: 12rem;
}
.voice__list {
  display: flex;
}
.voice__list .article {
  width: 100%;
}
.voice__list .article:first-child {
  margin-right: 5%;
}
.voice__list .article a {
  display: block;
}
.voice__list .article .img {
  padding-top: 75%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2.4rem;
}
.voice__list .article .img .more {
  position: absolute;
  z-index: 1;
  background: rgba(80, 138, 183, 0.86);
  color: #fff;
  line-height: 30px;
  padding: 3px 7rem 0 3.7rem;
  bottom: 3.5rem;
  left: 0;
}
.voice__list .article .img .more:after {
  content: "";
  width: 28px;
  height: 6px;
  display: block;
  background: url("../../images/2021/common/arrow-w.png") center/contain no-repeat;
  position: absolute;
  right: 1.7rem;
  top: 39%;
}
.voice__list .article .text {
  padding: 0 2rem;
}
.voice__list .article .text .name-box {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 2rem;
}
.voice__list .article .text .name-box .name {
  font-size: 2rem;
  margin-right: 1.5rem;
}
.voice__list .article .text .name-box .name span {
  font-size: 1.4rem;
  vertical-align: bottom;
}
.voice__list .article .text .name-box .job {
  font-size: 1.2rem;
  padding-top: 2px;
}
.voice__list .article .text .desc {
  font-size: 1.6rem;
  line-height: 1.5;
  display: inline;
  background: linear-gradient(transparent 0%, rgba(80, 138, 183, 0.86) 0%);
  padding: 5px;
  color: #fff;
  letter-spacing: .05em;
}

@media screen and (max-width: 800px) {
  .voice.slick-start {
    margin-bottom: 8rem;
  }
  .voice.slick-start .voice__list {
    display: block;
    padding: 0 2.5rem;
  }
  .voice.slick-start .voice__list .slick-arrow {
    top: 30%;
  }
  .voice.slick-start .voice__list .article {
    padding: 0 .5rem;
  }
  .voice.slick-start .voice__list .article:first-child {
    margin-right: 0;
  }
  .voice.slick-start .voice__list .article .img {
    margin-bottom: 1.6rem;
  }
  .voice.slick-start .voice__list .article .img .more {
    line-height: 28px;
    padding: 3px 6rem 0 1rem;
    bottom: 2.8rem;
    font-size: 1.2rem;
  }
  .voice.slick-start .voice__list .article .img .more:after {
    width: 20px;
    height: 4px;
    right: 1rem;
    top: 42%;
  }
  .voice.slick-start .voice__list .article .text {
    padding: 0;
    letter-spacing: -.4em;
  }
  .voice.slick-start .voice__list .article .text .name-box {
    justify-content: space-between;
    margin-bottom: 1rem;
    letter-spacing: 0;
  }
  .voice.slick-start .voice__list .article .text .name-box .name {
    font-size: 1.8rem;
    margin-right: 0;
  }
  .voice.slick-start .voice__list .article .text .name-box .name span {
    font-size: 1.2rem;
  }
  .voice.slick-start .voice__list .article .text .name-box .job {
    font-size: 1.1rem;
    padding-top: 2px;
  }
  .voice.slick-start .voice__list .article .text .desc {
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .voice.slick-start .voice__list .article .text .desc br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .voice.slick-start {
    margin-bottom: 5rem;
  }
}
/*------------------ movie ------------------*/
.movie {
  margin-bottom: 10rem;
}
.movie__inner {
  display: flex;
}
.movie .movie-box {
  width: 100%;
}
.movie .movie-box:first-child {
  margin-right: 5%;
}
.movie .movie-box .title {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  text-align: center;
}
.movie .movie-box .iframe-box {
  display: none;
  margin-bottom: 3rem;
}
.movie .movie-box .iframe-box.show {
  display: block;
}
.movie .movie-box .btn-box {
  display: flex;
  justify-content: center;
}
.movie .movie-box .btn-box a {
  flex-shrink: 0;
  width: 140px;
  line-height: 1;
  border: solid #508AB7 1px;
  border-radius: 10em;
  color: #508AB7;
  padding: 1.4rem 1.6rem 1.2rem;
}
.movie .movie-box .btn-box a:first-child {
  margin-right: 1rem;
}
.movie .movie-box .btn-box a i {
  margin-right: 1.5rem;
}
.movie .movie-box .btn-box a.active {
  background: #508AB7;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .movie {
    margin-bottom: 4rem;
  }
  .movie__inner {
    display: block;
  }
  .movie .movie-box:first-child {
    margin: 0 0 4rem;
  }
  .movie .movie-box .title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .movie .movie-box .iframe-box {
    margin-bottom: 2rem;
  }
  .movie .movie-box .btn-box {
    display: flex;
    justify-content: center;
  }
  .movie .movie-box .btn-box a {
    font-size: 1.6rem;
  }
}
/*------------------ bottom-link ------------------*/
.bottom-link {
  margin-bottom: 15rem;
}
.bottom-link__box {
  border: solid #ddd 1px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.bottom-link__box a {
  display: flex;
  align-items: stretch;
}
.bottom-link__box .img-box {
  flex-shrink: 0;
  width: 25%;
}
.bottom-link__box .img-box .img {
  height: 100%;
}
.bottom-link__box .img-box .img img {
  object-position: right bottom;
}
.bottom-link__box .text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding: 2rem 0 3rem;
}
.bottom-link__box .text .text-inner {
  display: inline-block;
  text-align: center;
  margin-bottom: 2rem;
}
.bottom-link__box .text .text-inner .title {
  font-size: 3.4rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.bottom-link__box .text .links {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 95%;
}
.bottom-link__box .text .links .item {
  width: 100%;
  text-align: center;
  padding: 0 1rem;
}
.bottom-link__box .text .links .item.uv-2week .img {
  padding: 6% 10%;
}
.bottom-link__box .text .links .item a {
  display: block;
}
.bottom-link__box .text .links .item .img {
  width: 100%;
  margin: 0 auto .8rem;
  max-width: 150px;
}
.bottom-link__box .text .links .item .name {
  font-size: 1rem;
  margin-bottom: .6rem;
  line-height: 1;
}
.bottom-link__box .text .links .item .name span {
  font-size: 1.4rem;
  display: block;
  line-height: 1.4;
}
.bottom-link__box .text .links .item ul:not(.btn) {
  margin-bottom: .9rem;
  line-height: 1.4;
}
.bottom-link__box .text .links .item ul:not(.btn) li {
  line-height: 1;
  padding: .4rem 1rem .3rem;
  color: #508AB7;
  background: #EDF7FD;
  border-radius: 10em;
  display: inline-block;
  font-size: 1rem;
}
.bottom-link__box .text .links .item p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.bottom-link__box .text .links .item ul.btn {
  display: flex;
  justify-content: space-between;
}
.bottom-link__box .text .links .item ul.btn li {
  line-height: 1;
}
.bottom-link__box .text .links .item ul.btn li a {
  line-height: 1.4;
  padding: .6rem 1.5rem .5rem 1rem;
  background: #EE6A6A;
  border-radius: 10em;
  display: inline-block;
  font-size: 1rem;
  position: relative;
}
.bottom-link__box .text .links .item ul.btn li a.detail {
  background: rgba(214, 233, 243, 0.6);
}
.bottom-link__box .text .links .item ul.btn li a.buy {
  margin-bottom: 0;
  color: #fff;
}
.bottom-link__box .text .links .item ul.btn li a.buy:after {
  background: url("../../images/2021/common/arrow-order.png") center/contain no-repeat;
  width: 3.5px;
  height: 12px;
}
.bottom-link__box .text .links .item ul.btn li a:after {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 12px;
  top: 0;
  bottom: 0;
  right: 8%;
  margin: auto;
  background: url("../../images/2021/common/arrow-small.png") center/contain no-repeat;
}

@media screen and (max-width: 1310px) {
  .bottom-link__box .text .links {
    padding: 0 1.5rem;
  }
  .bottom-link__box .text .links .item:nth-child(n+3) ul:not(.btn) {
    min-height: 44.8px;
    padding-top: .5em;
  }
  .bottom-link__box .text .links .item:nth-child(n+3) p {
    min-height: 3em;
  }
  .bottom-link__box .text .links .item p br {
    display: none;
  }
  .bottom-link__box .text .links .item ul.btn {
    display: block;
    justify-content: space-between;
  }
  .bottom-link__box .text .links .item ul.btn li a {
    width: 100%;
  }
  .bottom-link__box .text .links .item ul.btn li a.detail {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 1281px) {
  .bottom-link__box .text .links .item:nth-child(n+3) ul:not(.btn) {
    min-height: auto;
    padding-top: 0;
  }
  .bottom-link__box .text .links .item:nth-child(n+3) p {
    min-height: 3em;
  }
  .bottom-link__box .text .links .item:nth-child(4) ul:not(.btn) {
    min-height: 44.8px;
    padding-top: .5em;
  }
}
@media screen and (max-width: 1050px) {
  .bottom-link {
    margin-bottom: 2.5rem;
  }
  .bottom-link__box {
    display: block;
  }
  .bottom-link__box a {
    display: block;
  }
  .bottom-link__box .img-box {
    width: 100%;
  }
  .bottom-link__box .img-box .img {
    padding-top: 72%;
  }
  .bottom-link__box .img-box .img .pc {
    display: none;
  }
  .bottom-link__box .img-box .img .sp {
    display: inline-block;
  }
  .bottom-link__box .img-box .img img {
    object-position: center bottom;
    width: 100%;
  }
  .bottom-link__box .text {
    display: block;
    text-align: center;
    padding: 3.2rem 0 4rem;
  }
  .bottom-link__box .text .text-inner {
    display: inline-block;
    margin-bottom: 3rem;
  }
  .bottom-link__box .text .text-inner .title {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
  .bottom-link__box .text .text-inner p {
    font-size: 1.5rem;
  }
  .bottom-link__box .text .links {
    padding: 0;
    flex-wrap: wrap;
  }
  .bottom-link__box .text .links .item {
    width: 50%;
    padding: 0 1rem;
    margin-bottom: 3rem;
  }
  .bottom-link__box .text .links .item:nth-child(4) ul:not(.btn) {
    min-height: auto;
    padding-top: 0;
  }
  .bottom-link__box .text .links .item.uv-2week .img {
    padding: 2% 4%;
  }
  .bottom-link__box .text .links .item .img {
    max-width: 160px;
    width: 80%;
  }
  .bottom-link__box .text .links .item .name {
    font-size: 1rem;
    margin-bottom: .6rem;
    line-height: 1;
  }
  .bottom-link__box .text .links .item .name span {
    font-size: 1.4rem;
    display: block;
    line-height: 1.4;
  }
  .bottom-link__box .text .links .item p br {
    display: inline-block;
  }
  .bottom-link__box .text .links .item ul.btn {
    display: flex;
    justify-content: center;
  }
  .bottom-link__box .text .links .item ul.btn li:first-child {
    margin-right: 1rem;
  }
  .bottom-link__box .text .links .item ul.btn li a.detail {
    margin: 00;
  }
}
@media screen and (max-width: 768px) {
  .bottom-link__box .text .links .item ul.btn {
    display: block;
  }
  .bottom-link__box .text .links .item ul.btn li:first-child {
    margin: 0 0 1rem;
  }
  .bottom-link__box .text .links .item ul.btn li a {
    width: 100%;
    max-width: 160px;
  }
}
@media screen and (max-width: 480px) {
  .bottom-link__box .text .links .item p br {
    display: none;
  }
}
@media screen and (max-width: 474px) {
  .bottom-link__box .text .links .item:nth-child(4) ul:not(.btn) {
    min-height: 42px;
    padding-top: .5em;
  }
}
/*------------------ footer ------------------*/
.footer {
  background: #ECF3F5;
  padding: 5.8rem 0 4rem;
}
.footer__logo {
  width: 136px;
  margin: 0 auto 7rem;
}
.footer__nav {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}
.footer__nav li {
  border-right: solid #707070 1px;
  padding-right: 3rem;
  margin-right: 3rem;
}
.footer__nav li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.footer__nav li a {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
}
.footer__nav li a span {
  display: block;
  font-size: 1.8rem;
  margin-bottom: .6rem;
}
.footer__links {
  letter-spacing: -.4em;
  text-align: center;
  margin-bottom: 8rem;
}
.footer__links li {
  display: inline-block;
  margin: 0 1.2rem;
  letter-spacing: 0;
}
.footer__links li a {
  font-size: 1.4rem;
}
.footer__links li a:before {
  content: "";
  width: 8.5px;
  height: 8.5px;
  display: inline-block;
  background: url("../../images/2021/common/arrow-small.png") center/contain no-repeat;
  margin: 0 .6rem 1px 0;
}
.footer__copyright {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 830px) {
  .footer {
    background: #ECF3F5;
    padding: 5.5rem 0 3rem;
    text-align: center;
  }
  .footer__logo {
    margin: 0 auto 5.5rem;
  }
  .footer__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
    border-top: solid #707070 1px;
  }
  .footer__nav li {
    border: none;
    margin: 0;
    width: 50%;
    border-bottom: solid #707070 1px;
    padding: 1.6rem 0;
  }
  .footer__nav li:nth-child(odd) a {
    border-right: solid #707070 1px;
  }
  .footer__nav li a {
    font-size: 1.2rem;
  }
  .footer__nav li a span {
    font-size: 1.6rem;
    margin-bottom: .7rem;
  }
  .footer__links {
    text-align: left;
    margin-bottom: 4.5rem;
    display: inline-block;
    line-height: 1.4;
    width: 80%;
    min-width: 270px;
  }
  .footer__links li {
    display: inline-block;
    margin: 0 1.2rem 1.6rem;
    letter-spacing: 0;
  }
  .footer__links li a {
    font-size: 1.4rem;
  }
  .footer__links li a:before {
    content: "";
    width: 8.5px;
    height: 8.5px;
    display: inline-block;
    background: url("../../images/2021/common/arrow-small.png") center/contain no-repeat;
    margin: 0 .6rem 1px 0;
  }
  .footer__copyright {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
  }
}
/*------------------ slick ------------------*/
.slick-arrow {
  position: absolute;
  top: 22%;
  border: solid #707070 1px;
  transform: rotate(45deg);
  width: 25px;
  height: 25px;
  display: block;
}
.slick-arrow.prev {
  left: 4px;
  border-right: none;
  border-top: none;
}
.slick-arrow.next {
  right: 4px;
  border-left: none;
  border-bottom: none;
}

.slick-dots {
  text-align: center;
  line-height: 1;
  padding-top: 2.4rem;
}
.slick-dots li {
  display: inline-block;
  margin: 0 .5rem;
}
.slick-dots li button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-size: 0;
  line-height: 1;
}
.slick-dots li button:before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background: #ECF3F5;
}
.slick-dots li.slick-active button:before {
  background: #508AB7;
}

/*------------------ animation ------------------*/
.js-slide,
.js {
  opacity: 0;
  transition: transform .7s, opacity 1s;
}
.js-slide__l-r,
.js__l-r {
  transform: translate(-60px, 0);
}
.js-slide__r-l,
.js__r-l {
  transform: translate(60px, 0);
}
.js-slide__lb-t,
.js__lb-t {
  transform: skewY(10deg) translateY(60px);
  transform-origin: top left;
}
.js-slide__rb-t,
.js__rb-t {
  transform: skewY(-10deg) translateY(60px);
  transform-origin: top right;
}

.cover {
  transition: object-position 1.3s, width 1.2s;
}

.delay0 {
  transition-delay: 0s;
}

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

.delay5 {
  transition-delay: 0.5s;
}

.delay6 {
  transition-delay: 0.6s;
}

.delay7 {
  transition-delay: 0.7s;
}

.delay8 {
  transition-delay: 0.8s;
}

.delay9 {
  transition-delay: 0.9s;
}

.delay10 {
  transition-delay: 1s;
}

.delay11 {
  transition-delay: 1.1s;
}

.delay12 {
  transition-delay: 1.2s;
}

.delay13 {
  transition-delay: 1.3s;
}

.delay14 {
  transition-delay: 1.4s;
}

.delay15 {
  transition-delay: 1.5s;
}

.delay16 {
  transition-delay: 1.6s;
}

.delay17 {
  transition-delay: 1.7s;
}

.delay18 {
  transition-delay: 1.8s;
}

.delay19 {
  transition-delay: 1.9s;
}

.delay20 {
  transition-delay: 2s;
}

@media screen and (max-width: 768px) {
  .js-slide__l-r,
  .js__l-r {
    transform: translate(0, 0);
  }
  .js-slide__r-l,
  .js__r-l {
    transform: translate(0, 0);
  }
  .js-slide__lb-t, .js-slide__rb-t,
  .js__lb-t,
  .js__rb-t {
    transform: skewY(10deg) translateY(30px);
    transform-origin: top left;
  }

  .delay0 {
    transition-delay: 0s;
  }

  .cover.delay0 {
    transition-delay: 0s;
  }

  .delay1 {
    transition-delay: 0.1s;
  }

  .cover.delay1 {
    transition-delay: 0s;
  }

  .delay2 {
    transition-delay: 0.2s;
  }

  .cover.delay2 {
    transition-delay: 0s;
  }

  .delay3 {
    transition-delay: 0.3s;
  }

  .cover.delay3 {
    transition-delay: 0s;
  }

  .delay4 {
    transition-delay: 0.4s;
  }

  .cover.delay4 {
    transition-delay: 0s;
  }

  .delay5 {
    transition-delay: 0.5s;
  }

  .cover.delay5 {
    transition-delay: 0s;
  }

  .delay6 {
    transition-delay: 0.6s;
  }

  .cover.delay6 {
    transition-delay: 0s;
  }

  .delay7 {
    transition-delay: 0.7s;
  }

  .cover.delay7 {
    transition-delay: 0s;
  }

  .delay8 {
    transition-delay: 0.8s;
  }

  .cover.delay8 {
    transition-delay: 0s;
  }

  .delay9 {
    transition-delay: 0.9s;
  }

  .cover.delay9 {
    transition-delay: 0s;
  }

  .delay10 {
    transition-delay: 1s;
  }

  .cover.delay10 {
    transition-delay: 0s;
  }

  .delay11 {
    transition-delay: 1.1s;
  }

  .cover.delay11 {
    transition-delay: 0s;
  }

  .delay12 {
    transition-delay: 1.2s;
  }

  .cover.delay12 {
    transition-delay: 0s;
  }

  .delay13 {
    transition-delay: 1.3s;
  }

  .cover.delay13 {
    transition-delay: 0s;
  }

  .delay14 {
    transition-delay: 1.4s;
  }

  .cover.delay14 {
    transition-delay: 0s;
  }

  .delay15 {
    transition-delay: 1.5s;
  }

  .cover.delay15 {
    transition-delay: 0s;
  }

  .delay16 {
    transition-delay: 1.6s;
  }

  .cover.delay16 {
    transition-delay: 0s;
  }

  .delay17 {
    transition-delay: 1.7s;
  }

  .cover.delay17 {
    transition-delay: 0s;
  }

  .delay18 {
    transition-delay: 1.8s;
  }

  .cover.delay18 {
    transition-delay: 0s;
  }

  .delay19 {
    transition-delay: 1.9s;
  }

  .cover.delay19 {
    transition-delay: 0s;
  }

  .delay20 {
    transition-delay: 2s;
  }

  .cover.delay20 {
    transition-delay: 0s;
  }
}




/*------------------ レイアウト調整のため追加 ------------------*/
/* ヘッダー調整 */
#wrapper > header.header > .container {
  margin: 0 auto;
  padding: 0;
  width: 92%;
}
#wrapper > header.header > .container > .header__logo {
  margin: 0 5.5% 0 0;
  padding: 0;
}
/* メインイメージ表示位置調整 */
#hero > .image {
  top: 120px;
}

/* トグルメニュー内の調整 */
#wrapper .nav_syosai_link {
  color: #3E3F3D;
}
#wrapper .nav_syosai_link, 
#wrapper .nav_kounyu_link {
  margin-top: 0;
  letter-spacing: 0;
}
#wrapper .toggle-menu > .container {
  margin: 0 auto;
  padding: 0;
}
#wrapper .toggle-menu > .container > nav .logo img {
  width: 100%;
  height: auto;
}
#wrapper .toggle-menu .products-lineup {
  padding-left: 0;
}
#wrapper .toggle-menu .products-lineup > li > .link_wrap {
  margin: 0 auto 2rem;
}
#wrapper .toggle-menu .products-lineup li .link_wrap.order_wrap {
  margin-bottom: 0;
}
#wrapper .toggle-menu .products-lineup > li > a .name, 
#wrapper .toggle-menu .products-lineup > li > a .desc {
  margin: 0 0 2rem 0;
}
#wrapper .toggle-menu .products-lineup.care > li > .text > .name {
  margin-top: 0;
  margin-bottom: 2rem;
}
#wrapper .toggle-menu .products-lineup.care > li > .text > .link_wrap.order_wrap {
  margin: 0 auto;
}

/* フッターレイアウト調整 */
#wrapper footer.footer > div.container {
  margin-top: 0;
  padding: 0;
}
#wrapper footer.footer > div.container > .footer__copyright {
  margin: 0;
}

/* リスト共通設定 */
ul, ol {
  list-style: none;
}

/* ログイン画面 会員登録ボタンのテキストカラー */
#login #shinki_box .shinki_btn {
  color: #fff;
}

/* 購入履歴画面 error画像サイズ調整 */
#member #wrapper .container #main #box-com #history #error .ico {
  width:55px;
}

/* カテゴリーページ box表示調整 */
#wrapper > #container > #container-inner > #main > .new_box > div  .kakaku {
  padding-right: 20px;
}

/* よくあるご質問 カラーコンタクトレンズについて 調整*/
@media only screen and (max-width: 768px) {
  /* ヘッダー調整 */
  #wrapper > header.header > .container {
    width: 92%;
    padding: 0;
  }
  #wrapper > header.header > .container > .header__logo {
    margin: 0 5.5% 0 0;
    padding: 0;
    line-height: 30px;
  }

  /* トグルメニュー調整 */
  #wrapper > .toggle-menu > .container {
    width: 92%;
    padding: 0;
  }
  #wrapper > .toggle-menu > .container > nav ul.products-lineup > li > a > .name, 
  #wrapper > .toggle-menu > .container > nav ul.products-lineup > li > a > .desc, 
  #wrapper > .toggle-menu > .container > nav ul.products-lineup > li > .text > .name {
    margin: 0 0 2rem 0;
  }
  #wrapper > .toggle-menu > .container > nav ul.products-lineup > li > .link_wrap, 
  #wrapper > .toggle-menu > .container > nav ul.products-lineup > li > .text > .link_wrap {
    margin: 0 auto 1.5rem;
  }
  #wrapper > .toggle-menu > .container .nav_syosai_link, 
  #wrapper > .toggle-menu > .container .nav_kounyu_link {
    letter-spacing: 0;
    margin: 0;
  }

  /* メインイメージ表示位置調整 */
  #hero > .image {
    top: 60px;
  }

  /* フッター調整 */
  #wrapper footer.footer > .container {
    width: 92%;
    padding: 0;
  }
  #wrapper footer.footer > .container > .footer__copyright {
    margin: 0;
  }

}

/* 商品詳細ページ：商品を注文する */
.toggle-menu + .order {
  position: relative;
  z-index: 1;
}
.toggle-menu + .order a {
  position:fixed;
  background-color:var(--color_sub_light);
  text-decoration:none;
  border-radius:10px 0 0 10px;
  box-sizing:border-box;
  transition:all 0.4s ease
}
@media screen and (max-width: 768px) {
  .toggle-menu + .order a {
    width:38px;
    padding:25px 0 40px 17px;
    bottom:50px;
    right:0px
  }
}
@media screen and (min-width: 769px) {
  .toggle-menu + .order a {
    width:70px;
    padding:25px 0 40px 22px;
    top:340px;
    right:-20px
  }
}
.toggle-menu + .order a:before,
.toggle-menu + .order a:after {
  content:"";
  position:absolute;
  width:8px;
  height:2px;
  bottom:30px;
  background-color:#f6f4f0
}
@media screen and (max-width: 768px) {
  .toggle-menu + .order a:before,
  .toggle-menu + .order a:after {
    left:16px
  }
}
@media screen and (min-width: 769px) {
  .toggle-menu + .order a:before,
  .toggle-menu + .order a:after {
    left:22px
  }
}
.toggle-menu + .order a:before {
  transform:rotate(45deg) translateY(-3px)
}
.toggle-menu + .order a:after {
  transform:rotate(-45deg) translateY(3px)
}
.toggle-menu + .order a span {
  color:#fff;
  line-height:1em;
  letter-spacing:0.15em;
  font-weight:bold;
  -ms-writing-mode:tb-rl;
  writing-mode:vertical-rl
}
@media screen and (max-width: 768px) {
  .toggle-menu + .order a span {
    font-size:1.1rem
  }
}
@media screen and (min-width: 769px) {
  .toggle-menu + .order a span {
    font-size:1.3rem
  }
}
@media screen and (min-width: 769px) {
  .toggle-menu + .order a:hover {
    transform:translateX(-20px);
    opacity:1 !important;
    background-color:#dbc9ae
  }
}

/* 販売店舗ページ：店舗名 */
.shop_name {
  font-size: 90%;
}

/* カテゴリページ：container高さ調整 */
.category #container{
    padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .category #container{
    padding-top: 130px;
  }
}