@charset "UTF-8";

/*------------------------------------------------
------------------------------------------------
Reset Css
------------------------------------------------
------------------------------------------------*/
/* Box sizing rules */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class], ol[class] {
  padding: 0;
}

/* Remove default margin */
body, h1, h2, h3, h4,
p, ul[class], ol[class], figure,
blockquote, dl, dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class], ol[class] ,li {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration: none;
}
a:hover, a:hover img , a:hover svg {
  transition: .3s ease-in-out;
  opacity: .6;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}



/*------------------------------------------------
------------------------------------------------
Common Css
------------------------------------------------
------------------------------------------------*/
/* base */
body {
  font-family : 'ＭＳ 明朝','MS Mincho',serif;
  background-color: #fff;
}
article{
  position: relative;
}
section {
  padding-top: 100px;
  text-align: center;
  position: relative;
}
@media screen and (max-width:768px){
  section {
    padding-top: 0px;
  }
}

.contents {
  position: relative;
  z-index: 0;
  /* background-image: url(../img/bg_pc.jpg); */
  background-color: #fff;
  background-size: 100%;
  background-position: bottom 20%;
}
@media screen and (max-width:768px){
  .contents {
    /* background-image: url(../img/bg_sp.jpg); */
  }
}

p.read {
  font-size: 18px;
}
@media screen and (max-width:768px){
  p.read {
    font-size: 1rem!important;
  font-family : 'ＭＳ 明朝','MS Mincho',serif;
  }
}

.link a {
  margin: 20px;
}
@media screen and (max-width:767px){
  .link a {
    width: 240px;
  }
}

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

.title img {
  margin: 0 auto 50px;
}
@media screen and (max-width:768px){
  .title img {
    width: 100%;
    margin: 0 auto 30px;
    padding: 45px 15px 15px;
  }
}

.subtitle {
  margin: 100px auto 50px;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}
.subtitle span {
  margin: 0 30px;
}
@media screen and (max-width:768px){
  .subtitle {
    margin: 50px auto 30px;
    font-size: 1.3rem;
  }
  .subtitle span {
    margin: 0px 10px;
    width: 80px;
  }
}

/*---- header ----*/
/* header wap */
/* header {
  width: 100%;
  height: 100px;
  padding: 0 40px;
  background-color: rgba(999,999,999,.8);
  position: fixed;
  z-index: 999;
} */
@media screen and (max-width:1160px){
  header {
    padding: 0 20px;
  }
}
@media screen and (max-width:768px){
  /* header {
    height: 50px;
    padding: 0;
  } */
}
@media screen and (max-width:768px){
  /* header:before{
    content: '';
    height: 50px;
  } */
}

/* header inr */
/* header nav.header {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
} */
@media screen and (max-width:768px){
  header nav.header {
    width: 100%;
    height: auto;
    justify-content: space-between;
    align-items: center;
    position: relative;
    display: block;
  }
}

/* header logo */
header nav.header .nav__pc .header__logo {
  position: fixed;
  width: 280px;
  top: 10px;
  right: 44%;
  transform: translate(50%, 0);
}
header nav.header .nav__pc.open .header__logo {
  width: 280px;
  position: absolute;
  z-index: 10;
  width: 280px;
  top: 10px;
  right: 50%;
  transform: translate(50%, 0);
}
@media screen and (max-width:1160px){
  header nav.header .header__logo {
    width: 250px;
  }
  header nav.header .nav__pc.open .header__logo {
    width: 60%;
  }
}
@media screen and (min-width:1000px) and (max-width:1319px){
  header nav.header .nav__pc.open .header__logo {
    width: 80%;
  }
}
@media screen and (max-width:768px){
  header nav.header .header__logo {
    width: 200px;
    margin: auto;
    position: absolute;
    top: 10px;
    right: 50%;
    transform: translate(50%, 0);
  }
}

/* header menu */
header nav.header .header__menu {
  /* display: flex;
  justify-content: end;
  align-items: center;
  position: relative; */
  z-index: 10;
}
@media screen and (max-width:768px){
  header nav.header .header__menu {
    width: 100%;
    height: calc(100vh - 0px);
    background-color: rgba(999,999,999,.8);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    transition: .3s ease-in-out;
  }
  header nav.header.js-openmenu .header__menu {
    display: block;
  }
}

/* header menu list */
header nav.header .header__menu .header__menu--list {
  /* display: flex;
  justify-content: end;
  align-items: center;
  font-size: 24px; */
}
header nav.header .nav__pc .nav__pc--list {
  font-size: 2.6vw;
}
header nav.header .header__menu .header__menu--list li {
  margin-right: 22px;
}
header nav.header .header__menu .header__menu--list li a,header nav.header .nav__pc .nav__pc--list li a{
  color: #000000;
}
@media screen and (max-width:1160px){
  header nav.header .header__menu .header__menu--list {
    font-size: 20px;
  }
  header nav.header .header__menu .header__menu--list li {
    margin-right: 20px;
  }
}
@media screen and (max-width:768px){
  header nav.header .header__menu{
  }
  header nav.header.js-openmenu .header__menu{
  }
  header nav.header .header__menu .header__menu--list {
    /* margin-top: 28%; */
    margin-top: 25%;
    display: block;
    font-size: 2rem;
    text-align: center;
  }
  header nav.header .header__menu .header__menu--list li {
    margin-right: 0;
    /* margin-bottom: 20%; */
    margin-bottom: 4%;
  }
}

/* header menu sns */
header nav.header .header__menu .header__menu--sns {
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
}
header nav.header .nav__pc .header__menu--sns {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 40px;
}
header nav.header .nav__pc .header__menu--sns li:nth-last-child(2)  {
  margin: 0 30px 0 15px;
}
header nav.header .nav__pc .header__menu--sns li:nth-last-child(3)  {
  margin: 0 15px 0 30px;
}
header nav.header .nav__pc .header__menu--sns li img{
  width: 50px;
}

@media screen and (max-width:1160px){
  header nav.header .header__menu .header__menu--sns li:nth-last-child(2)  {
    margin: 0 20px 0 10px;
  }
  header nav.header .header__menu .header__menu--sns li:nth-last-child(3)  {
    margin: 0 10px 0 20px;
  }
}
@media screen and (max-width:768px){
  header nav.header .header__menu .header__menu--sns {
    justify-content: center;
  }
  header nav.header .header__menu .header__menu--sns li:last-child  {
    width: 40px;
  }
}

/* header menu burger */
header nav.header .header__menu--burger {
  display: none;
}
@media screen and (max-width:768px){
  header nav.header .header__menu--burger {
    display: block;
    width: 30px;
    height: 22px;
    position: fixed;
    top: 14px;
    right: 10px;
    z-index: 10;
  }
  header nav.header .header__menu--burger span {
    position: absolute;
    background-color: #313131;
    width: 30px;
    height: 2px;
    border-radius: 10px;
    transition: .3s ease-in-out;
  }
  header nav.header .header__menu--burger span:nth-last-child(1) {
    top: 0;
    left: 0;
  }
  header nav.header .header__menu--burger span:nth-last-child(2) {
    top: 10px;
    left: 0;
  }
  header nav.header .header__menu--burger span:nth-last-child(3) {
    bottom: 0;
    left: 0;
  }

  header nav.header.js-openmenu .header__menu--burger span:nth-last-child(1) {
    top: 10px;
    left: 0;
    transform: rotate(225deg);
  }
  header nav.header.js-openmenu .header__menu--burger span:nth-last-child(2) {
    transform: scale(0)
  }
  header nav.header.js-openmenu .header__menu--burger span:nth-last-child(3) {
    bottom: 10px;
    left: 0;
    transform: rotate(-225deg);
  }
}
.menu-trigger {
  display: inline-block;
  width: 36px;
  height: 28px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 100;
  /* transform: translateX(0);
  transition: transform .5s; */
 }
 .menu-trigger.active {
  width: 53px;
  transform: translateX(-250px);
  right: -225px;
}
 .menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
}
.menu-trigger.active span {
  background-color: #000;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 12px;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

.nav__pc {
  width: 250px;
  height: 100%;
  padding-top: 100px;
  background-color: rgb(256, 256, 256, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(250px);
  transition: all .5s;
}
.nav__pc.open {
  transform: translateZ(0);
  width: 28%;
}
.nav__pc li {
  color: #fff;
  text-align: center;
  padding: 7px 0;
}
@media screen and (min-width: 1000px){
  .menu-trigger.active {
    width: 23px;
    transform: translateX(-250px);
    top: 2px;
    right: -243px;
 }
}
@media screen and (min-width: 1319px){
  .menu-trigger.active {
    width: 53px;
    transform: translateX(-250px);
    top: 30px;
    right: -225px;
 }
}
/* footer */
footer{
  position: relative;
  z-index: 0;
  /* background-image: url(../img/bg_pc.jpg); */
  background-color: #fff;
  background-size: 100%;
  background-position: bottom 20%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 50px;
}
footer img{
  margin: 50px auto 15px;
}
footer p.f__p1{
  padding-bottom: 40px;
}
footer .copyright{
  padding-bottom: 70px;
}

main{
  overflow: hidden;
}
/*------------------------------------------------
------------------------------------------------
Contents Css
------------------------------------------------
------------------------------------------------*/

/*---- kv ----*/
/* kv wap */
/* .kv {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
} */

/* kv logo */
/* .kv .kv__logo {
  width: 425px;
  position: absolute;
  bottom: 134px;
  right: 147px;
  z-index: 10;
}
.contents .kv__logo{
  width: 584px;
  position: absolute;
  top: -338px;
  right: 188px;
  z-index: 10;
}
@media screen and (max-width:768px){
  .kv .kv__logo {
    width: 280px;
    position: absolute;
    bottom: 50%;
    right: 50%;
    z-index: 10;
    transform: translate(50%, 50%);
  }
} */

/* kv frame */
/* .kv .kv__frame {
  width: 100%;
  height: calc(100vh - 100px);
  border: 12px double #fff;
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 10;
}
.kv .kv__frame img {
  position: absolute;
  z-index: 10;
}
.kv .kv__frame img:nth-child(1) {
  top: 0;
  left: 2px;
}
.kv .kv__frame img:nth-child(2) {
  bottom: 0;
  left: 2px;
}
.kv .kv__frame img:nth-child(3) {
  top: 0;
  right: 2px;
}
.kv .kv__frame img:nth-child(4) {
  bottom: 0px;
  right: 2px;
}
@media screen and (max-width:768px){
  .kv .kv__frame {
    height: calc(100vh - 50px);
    top: 50px;
  }
  .kv .kv__frame img {
    width: 130px;
  }
  .contents .kv__logo {
    width: 40vh;
    position: absolute;
    top: -238px;
    right: 50%;
    transform: translate(50%, 0);
    z-index: 10;
}
} */

/* kv slide */
/* .kv .kv__slide li {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.kv .kv__slide li:nth-child(1) {
  background-image: url(../img/kv_img_pc01.png);
}
.kv .kv__slide li:nth-child(2) {
  background-image: url(../img/kv_img_pc02.png);
}
.kv .kv__slide li:nth-child(3) {
  background-image: url(../img/kv_img_pc03.png);
}
.kv .kv__slide li:nth-child(4) {
  background-image: url(../img/kv_img_pc04.png);
}
@media screen and (max-width:768px){
  .kv .kv__slide li:nth-child(1) {
    background-image: url(../img/kv_img_sp01.png);
  }
  .kv .kv__slide li:nth-child(2) {
    background-image: url(../img/kv_img_sp02.png);
  }
  .kv .kv__slide li:nth-child(3) {
    background-image: url(../img/kv_img_sp03.png);
  }
  .kv .kv__slide li:nth-child(4) {
    background-image: url(../img/kv_img_sp04.png);
  }
} */
/*---- kv ----*/
/* kv wap */
.kv {
  width: 100%;
  height: auto;
  position: relative;
  top: 0;
  left: 0;
  z-index: 0;
}

/* kv logo */
.kv .kv__logo {
  position: absolute;
  width: 400px;
  bottom: 50%;
  right: 50%;
  transform: translate(50%,45%);
  z-index: 10;
}
/* @media screen and (min-width:980px) and ( max-width:1199px){
    .kv .kv__logo {
      width: 31%;
      bottom: 10%;
      right: 23%;
  }
}
@media screen and (min-width:769px) and ( max-width:979px){
  .kv .kv__logo {
      width: 31%;
      position: absolute;
      bottom: 10%;
      right: 50%;
      transform: translateX(50%);
  }
} */
@media screen and (max-width:768px){
  .kv .kv__logo {
    width: 262px;
    position: absolute;
    bottom: 50%;
    right: 50%;
    transform: translate(50%,28%);
  }
}

/* kv frame */
.kv .kv__frame {
  width: 100%;
  height: 100%;
  border: 12px double #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(000,000,000,.1);
}
.kv .kv__frame img {
  position: absolute;
  z-index: 10;
}
.kv .kv__frame img:nth-child(1) {
  top: 0;
  left: 2px;
}
.kv .kv__frame img:nth-child(2) {
  bottom: 0;
  left: 2px;
}
.kv .kv__frame img:nth-child(3) {
  top: 0;
  right: 2px;
}
.kv .kv__frame img:nth-child(4) {
  bottom: 0px;
  right: 2px;
}
@media screen and (max-width:768px){
  .kv .kv__frame {
    height: 100%;
  }
  .kv .kv__frame img {
    width: 130px;
  }
}

/* kv slide */
.kv .kv__slide li {
  width: 100%;
  height: auto;
}


/*---- flowershop ----*/

/* flowershop slider */
ul.flowershop__slider {
  text-align: center;
  max-width: 930px;
  margin: 0 auto;
}
.flowershop__slider li {
  width: 273px;
}
.flowershop__slider li img {
  box-shadow: 1px 1px 1px .8 rgba(000, 000, 000, .6);
  margin: 0 auto;
}
/* .flowershop__slider li  div {
  width: 63px;
  height: 2px;
  margin: 25px auto;
  background-color: #FF6565;
  border-radius: 10px;
} */
.flowershop__slider li  p {
  font-size: 19px;
}
.flowershop__slider li p span {
  font-size: 14px;
}

.flowershop__slider .slick-slide.slick-current.slick-active.slick-center img {
  transform: scale(1.2);
  transition: .3s ease-in-out;
}

.flowershop__link {
  margin: 50px auto 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 30px;
  position: relative;
  z-index: 0;
}
.flowershop__link p {
  width: 100%;
  font-size: 14px;
}
@media screen and (max-width:768px){
  .flowershop__link {
    margin: 50px auto 30px;
    font-size: 1.3rem;
  }
  .flowershop__link span {
    margin: 0px 10px;
    width: 80px;
    position: absolute;
    top: 22px;
    z-index: -1;
  }
  .flowershop__link span:nth-child(1) {
    left: 0;
  }
  .flowershop__link span:nth-child(3) {
    right: 0;
  }
  .flowershop__link p {
    font-size: .9rem;
  }
}
/*---- about ----*/
.about h2.subtitle.sub__other{
  font-size: 18px;
  margin: 70px auto 50px;
}
section.about__sabcontents{
  padding-top: 50px;
  margin-top: 0;
}
.about__sabcontents h2{
  margin-top: 50px;
  margin-bottom:  -30px;
}
.about__active img{
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .about h2.subtitle.sub__other{
    margin: 50px auto 30px;
  }
  .about__sabcontents h2{
    margin-bottom:  -10px;
  }
  section.about__sabcontents p.read{

  }
  .about__active img{
    padding: 0 20px;
  }
}

/* about slider */
ul.about__slider {
  text-align: center;
  max-width: 561px;
  margin: 0 auto;
}
.about__slider li img {
  box-shadow: 1px 1px 1px .8 rgba(000, 000, 000, .6);
  margin: 0 auto;
}
.about__slider .slick-slide.slick-current.slick-active.slick-center img {
  transform: scale(1.1);
  transition: .8s ease-in-out;
}
@media screen and (max-width:768px) {
ul.about__slider img{
width: 300px;
}
}

/*---- profile ----*/
.profile__box{
  max-width: 675px;
  margin: 0 auto;
}
.profile__box figure{
  float: left;
  margin-right: 18px;
}
.profile__box p.read{
  font-size: 18px;
  text-align: left;
}
.profile__box p.read span{
  font-family: "ヒラギノ丸ゴ ProN";
  font-weight: normal;
}
p.read span.irony__font{
  font-family: "ヒラギノ丸ゴ ProN";
  font-weight: normal;
}
p.read span.chamichamiflower__font{
  font-family: "ヒラギノ丸ゴ ProN";
  font-weight: normal;
}
@media screen and (max-width:768px) {
  .profile__box figure{
    float: none;
    margin: 0 auto 20px;
    width: fit-content;
  }
  .profile__box p.read{
    font-size: 18px;
    text-align: center;
  }
}
/*---- lesson ----*/
.lesson__sabcontents{
  max-width: 788px;
  padding-top: 0;
  margin: 0 auto;
}
.lesson__subtitle{
  margin-top: 0;
  margin-bottom: 10%;
}
.lesson__text{
  max-width: 648px;
  margin: 0 auto;
}
.lesson__text p{
  font-size: 18px;
}
.lesson__text p:nth-child(n+2){
  margin-top: 35px;
}
.lesson__text p:last-child{
  margin-bottom: 50px;
}
.lesson__subtitle {
  margin: 50px auto 50px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 30px;
  position: relative;
  z-index: 0;
}
.irony .lesson__subtitle{
  margin-top: 129px;
}
.lesson__subtitle h2{
  font-size: 30px;
  margin: 0;
  line-height: 1.3;
}
.lesson__sabcontents span,.other__sabcontents span {
  margin: -8px -12px 0 -3px;
  top: 22px;
  z-index: -1;
  letter-spacing: 1.5px;
}
.lesson__sabcontents.irony span{
  margin: -29px -8px 0 -14px;
}
.lesson__sabcontents.irony span.irony__font{
  margin: 0;
  font-family: "ヒラギノ丸ゴ ProN";
}
.lesson__sabcontents.irony .irony__link span{
  margin: -8px -12px 0 -3px;
}
.irony__link {
  margin: 0 auto;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 30px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width:768px){
  .lesson__subtitle h2{
    font-size:1.3rem;
    margin: 0 auto;
  }
  .lesson__sabcontents span{
    margin: -22px -12px 0 -3px;
    width: 90px;
    position: absolute;
    top: 22px;
    z-index: -1;
  }
.lesson__sabcontents.irony span {
    margin: -22px -12px 0 -3px;
    width: 90px;
    position: absolute;
    top: 22px;
    z-index: -1;
  }
  .lesson__sabcontents span:nth-child(1) {
    left: 0;
  }
  .lesson__sabcontents span:nth-child(3) {
    right: 0;
  }
  .lesson__sabcontents p {
    font-size: 1rem;
  }
.lesson__sabcontents.irony span.irony__font{
  margin: 0;
  width: auto;
  position: relative;
  top: 0;
  z-index: 0;
}
.irony__link {
  /* margin: 50px auto 30px; */
  font-size: 1.3rem;
}
.irony__link span {
  margin: 0px 10px;
  width: 80px;
  position: absolute;
  top: 22px;
  z-index: -1;
}
.irony__link span:nth-child(1) {
  left: 0;
}
.irony__link span:nth-child(3) {
  right: 0;
}
}
/* origin slider */
ul.origin__slider {
  text-align: center;
  max-width: 783px;
  margin: 0 auto;
}
ul.other__slider{
  text-align: center;
  max-width: 561px;
  margin: 0 auto;
}

@media screen and (max-width:768px){
  ul.origin__slider {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
  }
}

.origin__slider li img {
  box-shadow: 1px 1px 1px .8 rgba(000, 000, 000, .6);
  margin: 0 auto;
}
.origin__slider .slick-slide.slick-current.slick-active.slick-center img {
  transform: scale(1.1);
  transition: .8s ease-in-out;
}

ul.irony__slider.irony_sl {
  text-align: center;
  max-width: 783px;
  margin: 0 auto;
}
.irony__slider li img {
  box-shadow: 1px 1px 1px .8 rgba(000, 000, 000, .6);
  margin: 0 auto;
}
.irony__slider .slick-slide.slick-current.slick-active.slick-center img {
  transform: scale(1.1);
  transition: .8s ease-in-out;
}

ul.gd__slider.gd_sl {
  text-align: center;
  max-width: 869px;
  margin: 0 auto;
}
.gd__slider li img {
  box-shadow: 1px 1px 1px .8 rgba(000, 000, 000, .6);
  margin: 0 auto;
}
.gd__slider .slick-slide.slick-current.slick-active.slick-center img {
  transform: scale(1.1);
  transition: .8s ease-in-out;
}

ul.other__slider {
  text-align: center;
  max-width: 654px;
  margin: 0 auto;
}
.other__slider li img {
  box-shadow: 1px 1px 1px .8 rgba(000, 000, 000, .6);
  margin: 0 auto;
}
.other__slider .slick-slide.slick-current.slick-active.slick-center img {
  transform: scale(1.1);
  transition: .8s ease-in-out;
}
@media screen and (max-width:768px){
  ul.origin__slider img{
    width: 300px;
  }
  ul.irony__slider.irony_sl {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
  }
  ul.irony__slider.irony_sl img{
    width: 300px;
  }
  ul.gd__slider.gd_sl {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
  }
  ul.gd__slider.gd_sl img{
    width: 280px;
  }
  ul.other__slider img{
    width: 290px;
  }
  section .slick-slider .slick-track{
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/*---- other ----*/
.other__sabcontents{
  max-width: 800px;
  padding-top: 0;
  margin: 0 auto;
}
.other__sabcontents.gd{
  max-width: 800px;
}
.other__sabcontents.othersub{
  max-width: 800px;
}
.other__sabcontents.kimono{
  max-width: 800px;
}
.other__subtitle{
  margin-top: 0;
  margin-bottom: 10%;
}
.other__text p{
  font-size: 18px;
}
.other__text p:last-child{
  margin-bottom: 30px;
}
.other__text{
  max-width: 630px;
  margin: 0 auto;
}
.other__subtitle {
  margin: 79px auto 50px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 30px;
  position: relative;
  z-index: 0;
}
.othersub .other__subtitle,.kimono .other__subtitle{
  margin-top: 129px;
}
.other__subtitle h2{
  font-size: 30px;
  margin: 0;
}
.other__sabcontents span{
  margin: 0px 10px;
  top: 22px;
  z-index: -1;
}
.other__sabcontents.gd span{
  margin: -29px -8px 0 -14px;
  top: 22px;
  z-index: -1;
}
.other__sabcontents.othersub span{
  margin: -29px -8px 0 -14px;
  top: 22px;
  z-index: -1;
}
.other__sabcontents.kimono span{
  margin: -29px -8px 0 -14px;
  top: 22px;
  z-index: -1;
}
.other__sabcontents .kimono__box{
  width: 653px;
  margin: 0 auto;
}
@media screen and (max-width:768px){
  .other__subtitle{
    margin: 0 auto;
  }
  .other__sabcontents h2{
    font-size:1.3rem;
    margin: 0 auto 20px;
  }
  .other__sabcontents span {
    margin: -15px -8px 0 -14px;
    width: 110px;
    position: absolute;
    top: 22px;
    z-index: -1;
  }
  .other__sabcontents.gd span{
    margin: -15px -8px 0 -14px;
  }
  .other__sabcontents.othersub span{
    margin: -15px -8px 0 -14px;
  }
  .other__sabcontents.kimono span{
    width: 100px;
    margin: -33px -8px 0 -14px;
  }
  .other__sabcontents span:nth-child(1) {
    left: 0;
  }
  .other__sabcontents span:nth-child(3) {
    right: 0;
  }
  .other__sabcontents p {
    font-size: 1rem;
  }
}
.other__sabcontents .kimono__box figure{
  float: left;
  margin-top: 4px;
  margin-right: 16px;
  max-width: 133px;
}
.other__sabcontents .kimono__box figure img{

}
.other__sabcontents .kimono__box .other__text{
overflow: hidden;
}
.other__sabcontents .kimono__box .other__text p.read{
text-align: left;
}
.other__sabcontents .kimono__box .other__text p.read.t_right{
text-align: left;
float: right;
padding-top: 27px;
}
.other__text p.read:first-child{
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  .other__sabcontents .kimono__box{
    width: auto;
    margin: 0 auto;
    padding: 0 13px;
  }
  .other__sabcontents .kimono__box figure{
    float: left;
    margin-top: 4px;
    margin-right: 16px;
    max-width: 133px;
  }
  .other__sabcontents .kimono__box .other__text{
  overflow:visible;
  }
  .other__sabcontents .kimono__box .other__text p.read{
  text-align: left;
  }
  .other__sabcontents .kimono__box .other__text p.read.t_right{
  text-align: left;
  float: right;
  padding-top: 27px;
  }

}

/*---- sns ----*/
.sns__box{
width: 500px;
margin: 50px auto 0;
display: flex;
justify-content: center;
}
.sns__box ul{
  margin: 0 0 0;
}
.sns__box ul li{
margin-bottom: 20px;
}
.sns__box ul li:last-child{
margin-bottom: 0;
}
@media screen and (max-width:768px) {
.sns section{
  margin-top: 140px;
}
.sns__box {
    width: 100%;
    margin: 50px auto 0;
    display: inline-block;
}
.sns__box figure{
margin: 0 auto 15px;
width: fit-content;
}
.sns__box ul{
  margin: 0 auto;
  padding: 0;
  width: fit-content;
}

}
/*---- gallery ----*/
.gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery a{
  width: 16%;
  margin-right: 0.6%;
}
.gallery a:nth-child(6n){
  margin-right: 0;
}
.gallery a img{
  width: 311px;
}

@media screen and (max-width:768px) {
  .gallery a{
    width: 50%;
    margin: 0;
  }
}
/*---- contact ----*/
article.contact{
  background-color: #FAF9F2;
  padding-bottom: 100px;
}
ul.contact__sns{
  width: 477px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
}
.shop__link{
  width: 276px;
  margin: 20px auto 0;
  padding-bottom: 20px;
}
.contact p.read{
 margin-bottom: 50px
}
@media screen and (max-width:768px) {
ul.contact__sns{
  width: auto;
  display: inline-block;
}
ul.contact__sns .sns__link{
  margin-bottom: 15px;
}
}
/*---- back__image ----*/
.back__image{
  margin: 0;
}
.back__image .back__items{
  position: absolute;
  z-index: -10;
}
.back__image .back__items img{

}
.back__image .back__items.back__item01{
  top: 378px;
  right: auto;
  left: 92px;
  bottom: auto;
}
.back__image .back__items.back__item02{
  top: 401px;
  right: 75px;
  left: auto;
  bottom: auto;
}
.back__image .back__items.back__item03{
  top: 383px;
  right: auto;
  left: 127px;
  bottom: auto;
}
.back__image .back__items.back__item04{
  top: 344px;
  right: 8px;
  left: auto;
  bottom: auto;
}
.back__image .back__items.back__item05{
  top: 1163px;
  right: 195px;
  left: auto;
  bottom: auto;
}
.back__image .back__items.back__item06{
  top: 1354px;
  right: auto;
  left: 154px;
  bottom: auto;
}
.back__image .back__items.back__item07{
  top: 83px;
  right: 0px;
  left: auto;
  bottom: auto;
}
.back__image .back__items.back__item08{
  top: 323px;
  right: auto;
  left: 113px;
  bottom: auto;
}
.back__image .back__items.back__item09{
  top: -220px;
      right: -380px;
      left: auto;
      bottom: auto;
}
.back__image .back__items.back__item10{
  top: 263px;
  right: auto;
  left: -311px;
  bottom: auto;
}
/* コロナの影響にて一時的に非表示 */
/* .back__image .back__items.back__item11{
  top: 710px;
  right: -412px;
  left: auto;
  bottom: auto;
} */
/* コロナの影響にて一時的に非表示 */
.back__image .back__items.back__item11{
  top: 510px;
  right: -412px;
  left: auto;
  bottom: auto;
}
/* コロナの影響にて一時的に非表示 */
/* .back__image .back__items.back__item12{
  top: 1003px;
  right: auto;
  left: -361px;
  bottom: auto;
} */
/* コロナの影響にて一時的に非表示 */
.back__image .back__items.back__item12{
  top: 803px;
  right: auto;
  left: -361px;
  bottom: auto;
}
.back__image .back__items.back__item13{
  top: 93px;
  right: -352px;
  left: auto;
  bottom: auto;
}
.back__image .back__items.back__item14{
  top: 503px;
  right: auto;
  left: -361px;
  bottom: auto;
}
.back__image .back__items.back__item15{
  top: 943px;
  right: -372px;
  left: auto;
  bottom: auto;
}
.back__image .back__items.back__item16{
  top: 1083px;
  right: auto;
  left: -291px;
  bottom: auto;
}
.back__image .back__items.back__item17{
  top: 0px;
  right: auto;
  left: -133px;
  bottom: auto;
}
.back__image .back__items.back__item18{
  top: 103px;
  right: -280px;
  left: auto;
  bottom: auto;
}
.back__image .back__items.back__item19{
  top: 495px;
  right: auto;
  left: -409px;
  bottom: auto;
}
.back__image .back__items.back__item20{
  top: 43px;
  right: -119px;
  left: auto;
  bottom: auto;
}
.back__image .back__items.back__item21{
  top: 383px;
  right: -455px;
  left: auto;
  bottom: auto;
}
.back__image .back__items.back__item22{
  top: 333px;
  right: auto;
  left: -279px;
  bottom: auto;
}
.back__image .back__items.back__item23{
  top: 243px;
  right: 178px;
  left: auto;
  bottom: auto;
}

/* sp */
@media screen and (max-width:768px){
.back__image{
    margin: 0;
  }
.back__image .back__items{
  opacity: 0.3;
  z-index: -1;
}
.back__image .back__items.back__item01{
  top: -5px;
  right: auto;
  left: -100px;
  bottom: auto;
}
.back__image .back__items.back__item02{
  top: -17px;
  right: -107px;
  left: auto;
  bottom: auto;
  transform: rotate(-27deg);
}
.back__image .back__items.back__item03{
  top: 40px;
  right: auto;
  left: -103px;
  bottom: auto;
  transform: rotate(-5deg);
}
.back__image .back__items.back__item04{
  top: -50px;
  right: -126px;
  left: auto;
  bottom: auto;
}
.back__image .back__items.back__item05{
  top: 803px;
      right: -5px;
      left: auto;
      bottom: auto;
}
.back__image .back__items.back__item06{
  top: 608px;
      right: auto;
      left: -112px;
      bottom: auto;
}
.back__image .back__items.back__item07{
  top: -777px;
      right: -130px;
      left: auto;
      bottom: auto;
}
.back__image .back__items.back__item08{
  top: -820px;
      right: auto;
      left: -112px;
      bottom: auto;
}
.back__image .back__items.back__item09{
  top: -220px;
      right: -380px;
      left: auto;
      bottom: auto;
}
.back__image .back__items.back__item10{
  top: -1583px;
  right: auto;
  left: -130px;
  bottom: auto;
}
.back__image .back__items.back__item11{
  top: 180px;
  right: -95px;
  left: auto;
  bottom: auto;
  transform: rotate(25deg);
}
.back__image .back__items.back__item12{
  top: -833px;
  right: auto;
  left: -84px;
  bottom: auto;
}
.back__image .back__items.back__item13{
  top: -980px;
  right: -120px;
  left: auto;
  bottom: auto;
  transform: scale(-1,1);
}
.back__image .back__items.back__item13 img{
  transform: rotate(-30deg);
}
.back__image .back__items.back__item14{
  top: 423px;
      right: auto;
      left: -241px;
      bottom: auto;
      display: none;
}
.back__image .back__items.back__item15{
  top: -1103px;
  right: auto;
  left: -110px;
  bottom: auto;
  transform: scale(-1, 1);
}
.back__image .back__items.back__item15 img{
    transform: rotate(25deg);
}
.back__image .back__items.back__item16{
  top: -1453px;
  right: auto;
  left: -110px;
  bottom: auto;
}
.back__image .back__items.back__item17{
  top: 33px;
  right: auto;
  left: 0;
  bottom: auto;
  display: none;
}
.back__image .back__items.back__item18{
  top: 563px;
  right: auto;
  left: -100px;
  bottom: auto;
  transform: scale(-1,1);
}
.back__image .back__items.back__item19{
  top: -7px;
  right: auto;
  left: -180px;
  bottom: auto;
}
.back__image .back__items.back__item20{
  top: 43px;
  right: 0;
  left: auto;
  bottom: auto;
  display: none;
}
.back__image .back__items.back__item21{
  top: 383px;
  right: 0;
  left: auto;
  bottom: auto;
  display: none;
}
.back__image .back__items.back__item22{
  top: -2402px;
      right: -130px;
      left: auto;
      bottom: auto;
      transform: scale(-1,1);
}
.back__image .back__items.back__item23{
  top: 243px;
  right: 178px;
  left: auto;
  bottom: auto;
  display: none;
}
.back__image .back__items.back__item05sp{
  top: -157px;
  right: auto;
  left: -80px;
  bottom: auto;
  transform: rotate(-45deg);
}
.back__image .back__items.back__item19sp{
  top: -207px;
  right: -175px;
  left: auto;
  bottom: auto;
  transform: scale(-1,1);
}
.back__image .back__items.back__item16sp{
  top: 393px;
      right: auto;
      left: -132px;
      bottom: auto;
      transform: rotate(25deg);
}
.back__image .back__items.back__item13sp{
  top: 1023px;
  right: auto;
  left: -120px;
  bottom: auto;
  transform: rotate(-45deg);
}
}
/* sp slick */

ul .slick-dots li button:before{
  font-size: 23px;
}
@media screen and (max-width:768px){
  ul .slick-dots li button:before{
    font-size:18px;
}
}

/* フェードイン */
.fadein {
 opacity: 0;
 transform : translate(0, 50px);
 transition : all 1500ms;
}

.fadein.scrollin{
 opacity: 1;
 transform: translate(0, 0);
}
/* フェードイン */

/* iphone */
.iPhone ul .slick-dots li button:before{
  font-size: 53px;
}
