@charset "utf-8";

/* ----------------------
		reset
---------------------- */
body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
pre,
form,
fieldset,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

table {
  line-height: 1.6;
  border: 0px;
  border-collapse: collapse;
  font-size: 1em;
}

table th {
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  line-height: 1.4;
  font-weight: normal;
}

input {
  vertical-align: middle;
  margin: 0;
  padding: 0;
  border-radius: 0;
}

p {
  line-height: 1.5;
}

em {
  font-style: normal;
}

img {
  border: none;
  vertical-align: bottom;
}

address {
  font-style: normal;
}

ul li {
  line-height: 1.4;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

main {
  display: block;
}

.fit {
  width: 100%;
  height: auto;
}

/* ----------------------
		common
---------------------- */

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1;
  color: #333;
  background-color: #fff;
  letter-spacing: 0.15rem;
  -webkit-text-size-adjust: none;
  -webkit-print-color-adjust: exact;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif;
}

a:link {
  border: none;
  color: #333;
  text-decoration: none;
}

a:visited {
  border: none;
  color: #333;
  text-decoration: none;
}

a:active {
  border: none;
  color: #333;
  text-decoration: none;
}

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

a[href^="tel:"] {
  color: #fff;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.alpha a:hover > img {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.alpha a > img {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.pc_br {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

.ft_min {
  font-family: "游明朝", YuMincho, "Noto Serif JP", serif;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  .pc_br {
    display: none;
  }
}

.menu {
  margin: 55px auto 0;
  width: 30px;
  height: 17px;
  position: relative;
}

.menu::before,
.menu::after,
.menu span::before {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 1px;
  background: #5d5551;
}

.menu::before {
  top: 0;
}

.menu::after {
  bottom: 0;
}

.menu span::before {
  top: 8px;
}

.btn_close {
  position: absolute;
  top: 14px;
  right: 23px;
  width: 35px;
  height: 35px;
}

.btn_close a {
  width: 35px;
  height: 35px;
  display: block;
}

.btn_close a:before,
.btn_close a:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 35px;
  height: 1px;
  background-color: #5d5551;
}

.btn_close a:before {
  transform: rotate(45deg);
}

.btn_close a:after {
  transform: rotate(-45deg);
}

.header_column {
  opacity: 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: opacity 0.3s ease 0s;
}

.header_column .logo {
  display: none;
}

.menu_open .header_column {
  opacity: 1;
  z-index: 10;
  transition: opacity 0.3s ease 0s;
}

.menu_open {
  height: 100%;
  overflow: hidden;
}

.gnavi {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.gnavi ul {
  text-align: center;
}

.gnavi li {
  margin: 45px 0;
  font-size: 1.6rem;
}

.gnavi li a {
  color: #5d5551;
  letter-spacing: 0.3em;
}

.gnavi li.icon_insta {
  margin: 0 auto;
  width: 30px;
}

.gnavi li.menu_logo {
  width: 140px;
  margin-left: auto;
  margin-right: auto;
}

.gnavi li.menu_link a {
  letter-spacing: 0.1em;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .header h1 img {
    width: 100%;
  }

  .header_column {
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 1;
    z-index: inherit;
    width: auto;
    height: auto;
    position: relative;
    min-width: 960px;
  }

  .header_fixed .header_column {
    padding: 40px 50px 10px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 10;
  }

  .header_fixed .header_column .logo {
    opacity: 1;
  }

  .header_column .logo {
    opacity: 0;
    display: block;
    width: 200px;
    flex-shrink: 0;
    transition: opacity 0.3s ease 0s;
  }

  .gnavi {
    display: block;
    min-width: 870px;
  }

  .gnavi ul {
    margin: 15px 0 0;
    display: flex;
    align-items: center;
    text-align: left;
  }

  .gnavi li {
    margin: 0 0 0 45px;
    font-size: 1.8rem;
  }

  .gnavi li.icon_insta {
    margin: 0 0 0 45px;
    width: 30px;
    flex-shrink: 0;
  }

  .gnavi li a {
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    transition: all 0.5s ease 0s;
    white-space: nowrap;
  }

  .gnavi li a:hover {
    color: #48a9c5;
    border-bottom: 1px solid #48a9c5;
  }

  .gnavi li.icon_insta a {
    padding: 0;
    border-bottom: none;
    transition: all 0.5s ease 0s;
  }

  .gnavi li.icon_insta a:hover {
    border-bottom: none;
    opacity: 0.7;
  }

  .menu,
  .btn_close,
  .gnavi li.menu_logo,
  .gnavi li.menu_link {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1260px) {
  .header_fixed .header_column {
    padding-left: 2%;
    padding-right: 2%;
    min-width: auto;
  }

  .gnavi {
    min-width: auto;
  }

  .gnavi li,
  .gnavi li.icon_insta {
    margin-left: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1060px) {
  .header_column .logo {
    width: 150px;
  }

  .gnavi li {
    font-size: 1.5rem;
  }
}

.sec_lead {
  padding: 55px 0;
  background: url(../images/lead_back_sp.png) no-repeat center top;
  text-align: center;
  background-size: 100% auto;
}

.sec_lead h2 {
  margin: 0 auto 35px;
  position: relative;
  width: 325px;
  height: 100px;
}

.sec_lead h2 span {
  position: absolute;
  opacity: 0;
}

.sec_lead h2 .ra {
  top: 21px;
  left: 0;
  width: 37px;
}

.sec_lead h2 .si {
  top: 23px;
  left: 49px;
  width: 11.2px;
}

.sec_lead h2 .sa {
  top: 17px;
  left: 67px;
  width: 24.7px;
}

.sec_lead h2 .kagaya {
  top: 10px;
  left: 73px;
  width: 82px;
}

.sec_lead h2 .ku {
  top: 18px;
  left: 148px;
  width: 11.7px;
}

.sec_lead h2 .kami {
  top: 3px;
  left: 164px;
  width: 46px;
}

.sec_lead h2 .iro {
  top: 0;
  left: 207px;
  width: 55px;
}

.sec_lead h2 .ki {
  top: 60px;
  left: 127px;
  width: 38.7px;
}

.sec_lead h2 .re {
  top: 71px;
  left: 180px;
  width: 11.7px;
}

.sec_lead h2 .i {
  top: 60px;
  left: 197px;
  width: 21.6px;
}

.sec_lead h2 .tsu {
  top: 60px;
  left: 225px;
  width: 41.8px;
}

.sec_lead h2 .du {
  top: 58px;
  left: 274px;
  width: 23px;
}

.sec_lead h2 .kumaru {
  top: 50px;
  left: 301px;
  width: 24.3px;
}

.sec_lead h2 .ra.is-show {
  animation: show-lead 1.7s linear 0.5s forwards;
}

.sec_lead h2 .si.is-show {
  animation: show-lead 1.7s linear 0.75s forwards;
}

.sec_lead h2 .sa.is-show {
  animation: show-lead 1.7s linear 1s forwards;
}

.sec_lead h2 .kagaya.is-show {
  animation: show-lead 1.7s linear 1.25s forwards;
}

.sec_lead h2 .ku.is-show {
  animation: show-lead 1.7s linear 1.5s forwards;
}

.sec_lead h2 .kami.is-show {
  animation: show-lead 1.7s linear 1.75s forwards;
}

.sec_lead h2 .iro.is-show {
  animation: show-lead 1.7s linear 2s forwards;
}

.sec_lead h2 .ki.is-show {
  animation: show-lead 1.7s linear 2.5s forwards;
}

.sec_lead h2 .re.is-show {
  animation: show-lead 1.7s linear 2.75s forwards;
}

.sec_lead h2 .i.is-show {
  animation: show-lead 1.7s linear 3s forwards;
}

.sec_lead h2 .tsu.is-show {
  animation: show-lead 1.7s linear 3.25s forwards;
}

.sec_lead h2 .du.is-show {
  animation: show-lead 1.7s linear 3.5s forwards;
}

.sec_lead h2 .kumaru.is-show {
  animation: show-lead 1.7s linear 3.75s forwards;
}

.sec_lead h2 span.is-show {
  transform: translateY(10px);
}

@keyframes show-lead {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.sec_lead .lead_text p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 2.8;
  color: #5d5551;
}

.sec_lead .lead_text .inview:not(.is-show) {
  opacity: 0;
  transform: translateY(20px);
}

.sec_lead .lead_text .inview.is-show {
  transition: opacity 2s, transform 2s cubic-bezier(0.3, 1, 0.7, 1);
}

@media screen and (min-width: 768px) {
  .sec_lead {
    padding: 200px 0 220px;
    background: url(../images/lead_back_pc.png) no-repeat center top;
    text-align: center;
  }

  .sec_lead h2 {
    margin: 0 auto;
    width: 735px;
    height: 230px;
  }

  .sec_lead h2 .ra {
    top: 48px;
    left: 0;
    width: auto;
  }

  .sec_lead h2 .si {
    top: 50px;
    left: 112px;
    width: auto;
  }

  .sec_lead h2 .sa {
    top: 38px;
    left: 153px;
    width: auto;
  }

  .sec_lead h2 .kagaya {
    top: 20px;
    left: 166px;
    width: auto;
  }

  .sec_lead h2 .ku {
    top: 42px;
    left: 336px;
    width: auto;
  }

  .sec_lead h2 .kami {
    top: 0;
    left: 371px;
    width: auto;
  }

  .sec_lead h2 .iro {
    top: 0;
    left: 469px;
    width: auto;
  }

  .sec_lead h2 .ki {
    top: 136px;
    left: 289px;
    width: auto;
  }

  .sec_lead h2 .re {
    top: 160px;
    left: 407px;
    width: auto;
  }

  .sec_lead h2 .i {
    top: 138px;
    left: 445px;
    width: auto;
  }

  .sec_lead h2 .tsu {
    top: 136px;
    left: 509px;
    width: auto;
  }

  .sec_lead h2 .du {
    top: 133px;
    left: 620px;
    width: auto;
  }

  .sec_lead h2 .kumaru {
    top: 112px;
    left: 681px;
    width: auto;
  }

  .sec_lead .lead_text {
    margin: 70px 0 0;
    width: auto;
  }

  .sec_lead .lead_text p {
    margin: 0 0 30px;
    font-size: 1.6rem;
    line-height: 1.6;
    width: auto;
  }
}

.sec_movie {
  margin: 0 20px 75px;
  text-align: center;
}

.sec_movie h2 {
  margin: 0 auto 25px;
  width: 152px;
}

.movie_box a {
  position: relative;
  display: inline-block;
}

.movie_box a::after {
  position: absolute;
  content: "";
  background: url(../images/btn_movie.png) no-repeat;
  background-size: 110px auto;
  width: 110px;
  height: 110px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .sec_movie {
    margin: 0;
    padding-bottom: 265px;
  }

  .sec_movie h2 {
    margin: 0 0 75px;
    width: auto;
  }

  .movie_box a::after {
    background: url(../images/btn_movie.png) no-repeat;
    background-size: 350px auto;
    width: 350px;
    height: 350px;
  }
}
/*
.sec_style .style_navi {
	margin: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.sec_style .style_navi li {
	margin: 0 20px 25px;
	font-size: 1.4rem;
	width: 45px;
	position: relative;
	overflow: initial;
}

.sec_style .style_navi li a {
	padding-bottom: 13px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sec_style .style_navi li a span {
	padding-left: 4px;
}

.sec_style .style_navi li a::after {
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	bottom: -2px;
	margin: auto;
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	width: 8px;
	height: 8px;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(-25%) rotate(135deg);
}
*/
.navi_ecru a,
.navi_ecru a::after {
  color: #8d7b67;
}

.navi_innocent a,
.navi_innocent a::after {
  color: #636457;
}

.navi_sheer a,
.navi_sheer a::after {
  color: #003f64;
}

.navi_foggy a,
.navi_foggy a::after {
  color: #005787;
}

.sec_style .style_navi .navi_foggy a::after {
  bottom: 0px;
}

.navi_chiffon a,
.navi_chiffon a::after {
  color: #678964;
}

.navi_mellow a,
.navi_mellow a::after {
  color: #c45729;
}

.navi_dusty a,
.navi_dusty a::after {
  color: #a4023e;
}

.navi_airy a,
.navi_airy a::after {
  color: #7c5e89;
}

/*
@media screen and (min-width: 768px) {

	.sec_style .style_navi {
		display: none;
	}

}
*/

.sec_style {
  margin: 0 0 75px;
  text-align: center;
}

.sec_style h2 {
  margin: 0 auto 25px;
  width: 223px;
}

.sec_style h3 {
  margin-bottom: 40px;
  text-align: center;
  color: #5d5551;
  font-size: 1.8rem;
  letter-spacing: 0.3em;
  font-family: "游明朝", YuMincho, "Noto Serif JP", serif;
}

.sec_style li {
  margin: 0 0 0;
  position: relative;
}

.sec_style li .btn {
  /*  width: 135px;
  height: 135px; */
  z-index: 2;
  background: none;
  position: absolute;
}

.sec_style li .btn a {
  /*  width: 350px;
  height: auto; */
  /* padding: 35px 15px 0;
  color: #fff;
  width: 135px;
  height: 135px; */
  display: block;
  width: fit-content;
}

.sec_style li .btn h4 {
  text-align: center;
  width: fit-content;
}

.sec_style li .btn h4 span {
  margin: 10px 0 0;
  display: block;
  text-align: right;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.sec_style li .btn h4 div {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-align: right;
  line-height: 1.8;
  font-family: "游明朝", YuMincho, "Noto Serif JP", serif;
}

.sec_style li figure {
  overflow: hidden;
}

/* 
.sec_style li.style_ecru figure img {
  transform: scale(1.1);
}



.sec_style li.style_innocent figure img {
  transform: scale(1.1);
}

.sec_style li.style_innocent figure.is-show-img img {
  transform: translateY(-5%) scale(1.1);
  transition: transform 7.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sec_style li.style_sheer figure img {
  transform: scale(1.15);
}

.sec_style li.style_sheer figure.is-show-img img {
  transform: translateY(20px) scale(1.15);
  transition: all 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sec_style li.style_foggy figure img {
  transform: scale(1.1);
}

.sec_style li.style_foggy figure.is-show-img img {
  transform: translateY(-20px) scale(1.1);
  transition: all 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sec_style li.style_chiffon figure img {
  transform: scale(1.15);
}

.sec_style li.style_chiffon figure.is-show-img img {
  transform: translateY(-20px) scale(1.15);
  transition: all 7.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sec_style li.style_mellow figure img {
  transform: scale(1.1);
}

.sec_style li.style_mellow figure.is-show-img img {
  transform: translateY(20px) scale(1.1);
  transition: all 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sec_style li.style_dusty figure img {
  transform: scale(1.1);
}

.sec_style li.style_dusty figure.is-show-img img {
  transform: translateY(20px) scale(1.1);
  transition: all 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sec_style li.style_airy figure img {
  transform: scale(1.1);
}

.sec_style li.style_airy figure.is-show-img img {
  transform: translateY(-20px) scale(1.1);
  transition: all 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sec_style li.style_glow figure img {
  transform: scale(1.1);
}

.sec_style li.style_glow figure.is-show-img img {
  transform: translateY(-20px) scale(1.1);
  transition: all 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sec_style li.style_brilliant figure img {
  transform: scale(1.1);
}

.sec_style li.style_brilliant figure.is-show-img img {
  transform: translateY(-20px) scale(1.1);
  transition: all 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sec_style li.style_rich figure img {
  transform: scale(1.1);
}

.sec_style li.style_rich figure.is-show-img img {
  transform: translateY(20px) scale(1.1);
  transition: all 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
} */

@media screen and (min-width: 768px) {
  .sec_style {
    margin: 0 0 250px;
  }

  .sec_style h2 {
    margin: 0 0 60px;
    width: auto;
  }

  .sec_style h3 {
    margin-bottom: 60px;
    font-size: 4rem;
  }

  .sec_style ul {
    position: relative;
  }

  .sec_style li {
    margin: 0;
    position: absolute;
  }
  .sec_style li .style_item {
    position: relative;
  }
  .sec_style li .inner {
    /*  position: relative; */
  }
  /*  .sec_style li:nth-of-type(odd) {
    float: left;
  }
  .sec_style li:nth-of-type(even) {
    float: right;
  } */

  .sec_style li .btn a {
    /* padding: 55px 25px;
    width: 200px;
    height: 200px; */
    /* transition: opacity 0.5s ease 0s; */
  }

  /* .sec_style li .btn a:hover {
    opacity: 0.7;
  } */

  .sec_style li .btn h4 span {
    margin: 15px 0 0;
    font-size: 1.4rem;
  }

  .sec_style li .btn h4 div {
    font-size: 1.6rem;
  }

  .sec_style li figure {
    overflow: hidden;
  }
  /* 
  .sec_style li.style_ecru figure.is-show-img img {
    transform: translateY(40px) scale(1.1);
  }

  .sec_style li.style_innocent figure.is-show-img img {
    transform: translateY(-45px) scale(1.15);
  }

  .sec_style li.style_sheer figure.is-show-img img {
    transform: translateY(40px) scale(1.15);
  }

  .sec_style li.style_foggy figure.is-show-img img {
    transform: translateY(-40px) scale(1.1);
  }

  .sec_style li.style_chiffon figure.is-show-img img {
    transform: translateY(-40px) scale(1.15);
  }

  .sec_style li.style_mellow figure.is-show-img img {
    transform: translateY(40px) scale(1.1);
  }

  .sec_style li.style_dusty figure.is-show-img img {
    transform: translateY(40px) scale(1.1);
  }

  .sec_style li.style_airy figure.is-show-img img {
    transform: translateY(-40px) scale(1.1);
  }

  .sec_style li.style_glow figure.is-show-img img {
    transform: translateY(-40px) scale(1.1);
  }

  .sec_style li.style_brilliant figure.is-show-img img {
    transform: translateY(-40px) scale(1.1);
  }

  .sec_style li.style_rich figure.is-show-img img {
    transform: translateY(40px) scale(1.1);
  } */
}
.sec_style li figure.anime_down img {
  transform-origin: bottom;
}
.sec_style li figure.anime_down.is-show-img img {
  transform: translateY(0%) scale(1);

  transition: all 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sec_style li figure.anime_up img {
  transform: translateY(0%) scale(1.05);
  transform-origin: top;
  transition: all 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sec_style li.style_ecru figure img {
  transform: translateY(-8%) scale(1.05);
}
.sec_style li.style_innocent figure.is-show-img img {
  transform: translateY(-5.03%) scale(1);
}

.sec_style li.style_sheer figure img {
  transform: translateY(-7.46%) scale(1.05);
}
.sec_style li.style_foggy figure.is-show-img img {
  transform: translateY(-7.74%) scale(1);
}
.sec_style li.style_chiffon figure.is-show-img img {
  transform: translateY(-6.67%) scale(1);
}
.sec_style li.style_dusty figure img {
  transform: translateY(-5.17%) scale(1.05);
}

.sec_style li.style_mellow figure img {
  transform: translateY(-5.01%) scale(1.05);
}
.sec_style li.style_airy figure.is-show-img img {
  transform: translateY(-7.91%) scale(1);
}

.sec_style li.style_glow figure img {
  transform: translateY(-5%) scale(1.05);
}
.sec_style li.style_brilliant figure.is-show-img img {
  transform: translateY(-6.15%) scale(1);
}
.sec_style li.style_lucid figure.is-show-img img {
  transform: translateY(-6.15%) scale(1);
}
.sec_style li.style_twinkle figure img {
  transform: translateY(-6.76%) scale(1.05);
}
.sec_style li.style_rich figure img {
  transform: translateY(-6.25%) scale(1.05);
}

.sec_style li .btn a h4::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.sec_style li .btn a:hover h4::after {
  opacity: 1;
}
.sec_style .btn a img {
  transition: opacity 0.7s ease;
}
.sec_style .btn a:hover img {
  opacity: 0;
}
.sec_style .style_ecru .btn a h4::after {
  background-image: url(../images/btn_ecru_over.png);
}
.sec_style .style_innocent .btn a h4::after {
  background-image: url(../images/btn_innocent_over.png);
}
.sec_style .style_sheer .btn a h4::after {
  background-image: url(../images/btn_sheer_over.png);
}
.sec_style .style_foggy .btn a h4::after {
  background-image: url(../images/btn_foggy_over.png);
}
.sec_style .style_chiffon .btn a h4::after {
  background-image: url(../images/btn_chiffon_over.png);
}
.sec_style .style_mellow .btn a h4::after {
  background-image: url(../images/btn_mellow_over.png);
}
.sec_style .style_dusty .btn a h4::after {
  background-image: url(../images/btn_dusty_over.png);
}
.sec_style .style_airy .btn a h4::after {
  background-image: url(../images/btn_airy_over.png);
}
.sec_style .style_glow .btn a h4::after {
  background-image: url(../images/btn_glow_over.png);
}
.sec_style .style_brilliant .btn a h4::after {
  background-image: url(../images/btn_brilliant_over.png);
}
.sec_style .style_lucid .btn a h4::after {
  background-image: url(../images/btn_lucid_over.png);
}
.sec_style .style_twinkle .btn a h4::after {
  background-image: url(../images/btn_twinkle_over.png);
}
.sec_style .style_rich .btn a h4::after {
  background-image: url(../images/btn_rich_over.png);
}
.style_column1 {
  margin: 10px 0 0;
  /* overflow: hidden; */
}
@media screen and (max-width: 768px) {
  .sec_style .style_ecru {
    margin-bottom: 14.32vw;
  }
  .style_ecru .btn {
    width: 40vw;
    right: 0vw;
    bottom: -3.9vw;
  }

  .style_ecru figure {
    width: 81.77vw;
    height: 51.6vw;
  }

  .sec_style .style_innocent {
    margin-bottom: 16.1vw;
  }

  .sec_style .style_innocent .btn {
    left: 0.65vw;
    bottom: 0vw;
    width: 45.57vw;
    height: 46.35vw;
  }

  .style_innocent figure {
    margin-left: auto;
    margin-right: 5.2vw;
    width: 57.3%;
    height: 84.6vw;
  }
  .sec_style .style_sheer {
    margin-bottom: 10.4vw;
  }

  .style_sheer figure {
    width: 84.89%;
    height: 55.5vw;
  }

  .sec_style .style_sheer .btn {
    left: 53.91vw;
    top: -5.51vw;
    width: 46.09vw;
    height: 45.57vw;
  }

  .sec_style .style_foggy {
    margin-bottom: 25.1vw;
  }

  .style_foggy figure {
    margin-left: auto;
    width: 75.78%;
    height: 53.39vw;
  }

  .style_foggy .btn {
    left: 1.3vw;
    top: 19.53vw;
    width: 49.48vw;
    height: 47.79vw;
  }
  .style_chiffon figure {
    margin-right: auto;
    width: 94.4vw;
    height: 62.5vw;
  }
  .sec_style .style_chiffon {
    margin-bottom: 11.2vw;
  }

  .sec_style .style_chiffon .btn {
    left: 54.17vw;
    top: 1.3vw;
    width: 45.83vw;
    height: 43.62vw;
  }

  .style_mellow figure {
    margin-left: auto;
    width: 62.5%;
    height: 88.5vw;
  }

  .sec_style .style_mellow {
    margin-bottom: 10.8vw;
  }

  .sec_style .style_mellow .btn {
    left: 3.52vw;
    top: 10.16vw;
    width: 44.79vw;
    height: 43.88vw;
  }
  .sec_style .style_dusty {
    margin-bottom: 10.9vw;
  }

  .style_dusty figure {
    margin-right: auto;
    margin-left: 5vw;
    width: 62.5%;
    height: 82vw;
  }

  .style_dusty .btn {
    left: 51.3vw;
    top: 24.09vw;
    width: 47.27vw;
    height: 47.53vw;
  }

  .sec_style .style_airy {
    margin-bottom: 29.9vw;
  }
  .style_airy figure {
    margin-left: auto;
    width: 78.1%;
    height: 52.1vw;
  }

  .sec_style .style_airy .btn {
    left: 0.78vw;
    top: 20.83vw;
    width: 51.04vw;
    height: 42.84vw;
  }
  /* 
*/
  /* .sec_style .style_mellow .btn {
    top: 25vw;
    right: -4vw;
    left: auto;
  } */
  .sec_style .style_glow {
    margin-bottom: 33.1vw;
  }

  .style_glow figure {
    margin-right: auto;
    width: 57.3%;
    height: 82vw;
  }

  .sec_style .style_glow .btn {
    left: 47.4vw;
    top: 0vw;
    width: 44.53vw;
    height: 85.03vw;
  }
  .sec_style .style_brilliant {
    margin-bottom: 36.5vw;
  }

  .style_brilliant figure {
    margin-left: auto;
    width: 89.8vw;
    height: 66.1vw;
  }

  .sec_style .style_brilliant .btn {
    left: 0vw;
    top: -22.14vw;
    width: 80.99vw;
    height: 48.57vw;
  }

  .sec_style .style_lucid {
    margin-bottom: 10.4vw;
  }

  .style_lucid figure {
    width: 94.8vw;
    height: 66.4vw;
  }

  .sec_style .style_lucid .btn {
    left: 14.06vw;
    top: -23.44vw;
    width: 78.12vw;
    height: 39.97vw;
  }
  .sec_style .style_twinkle {
    margin-bottom: 33.9vw;
  }

  .style_twinkle figure {
    margin-left: auto;
    width: 88.54vw;
    height: 59.59vw;
  }

  .sec_style .style_twinkle .btn {
    left: 17.32vw;
    top: 43.23vw;
    width: 77.34vw;
    height: 39.97vw;
  }
  .sec_style .style_rich {
    margin-bottom: 13.3vw;
  }

  .style_rich figure {
    width: 65.1vw;
    height: 65.1vw;
  }

  .sec_style .style_rich .btn {
    left: 55.99vw;
    bottom: 0vw;
    width: 38.8vw;
    height: 42.19vw;
  }
}
/* ==PC== */

@media screen and (min-width: 768px) {
  .sec_style li figure {
    position: relative;
  }
  .sec_style li .btn {
    width: inherit;
    height: inherit;
  }
  .style_column1 {
    margin: 0;
    height: 44.4vw;
  }

  .style_ecru {
    top: 0;
    left: 0;
  }

  .style_ecru figure {
    width: 38.02vw;
    height: 23.96vw;
  }
  .style_ecru .btn {
    bottom: 0%;
    right: -10.4vw;
  }
  .style_ecru .btn img {
    width: 18.23vw;
  }

  .style_innocent {
    bottom: 0;
    left: auto;
    right: 3.1vw;
  }

  .style_innocent figure {
    width: 26.67vw;
    height: 39.38vw;
  }

  .style_innocent .btn {
    bottom: 0vw;
    left: -17.7vw;
  }
  .style_innocent .btn img {
    width: 20.68vw;
  }

  .style_column2 {
    height: 46.9vw;
    margin-top: -2.6vw;
  }

  .style_sheer {
    margin-bottom: 0;
    left: 3.1vw;
    top: 0;
  }

  .style_sheer figure {
    width: 39.58vw;
    height: 25.83vw;
  }

  .sec_style .style_sheer .btn {
    top: 9.79vw;
    right: -7.5vw;
  }
  .sec_style .style_sheer .btn img {
    width: 20.99vw;
  }

  .style_foggy {
    bottom: 0;
    right: 0;
  }

  .style_foggy figure {
    margin-left: auto;
    width: 35.42vw;
    height: 24.84vw;
  }

  .style_foggy .btn {
    left: -10.62vw;
    top: 6.35vw;
  }
  .style_foggy .btn img {
    width: 22.45vw;
  }

  .style_column3 {
    height: 53.1vw;
  }

  .style_chiffon {
    margin-bottom: 0;
    top: 0;
    left: 0;
  }

  .style_chiffon figure {
    width: 44.01vw;
    height: 29.17vw;
  }

  .style_chiffon .btn {
    right: -2.29vw;
    top: -4.53vw;
  }
  .style_chiffon .btn img {
    width: 20.78vw;
  }
  .style_mellow {
    margin-bottom: 0;
    right: 9.43vw;
    top: 13.5vw;
  }

  .style_mellow figure {
    margin-left: auto;
    width: 29.17vw;
    height: 39.53vw;
  }
  .style_mellow .btn {
    left: -11.82vw;
    top: 25.57vw;
  }
  .style_mellow .btn img {
    width: 20.31vw;
  }
  .style_column4 {
    height: 67vw;
    margin-top: -13vw;
  }
  .style_dusty {
    left: 6.2vw;
  }

  .style_dusty figure {
    width: 29.17vw;
    height: 38.23vw;
  }

  .style_dusty .btn {
    top: 21vw;
    right: -9.64vw;
  }
  .style_dusty .btn img {
    width: 21.46vw;
  }

  .style_airy {
    right: 0vw;
    top: 28.4vw;
  }

  .style_airy figure {
    width: 36.46vw;
    height: 24.27vw;
  }

  .style_airy .btn {
    left: -12.08vw;
    top: 10.89vw;
  }
  .style_airy .btn img {
    width: 23.23vw;
  }

  .style_column5 {
    height: 48.2vw;
  }

  .sec_style .style_glow {
    margin-bottom: 0;
    left: 2.6vw;
    top: 0vw;
  }

  .style_glow figure {
    width: 27.6vw;
    height: 39.58vw;
  }

  .style_glow .btn {
    top: 0vw;
    left: auto;
    right: -16.09vw;
  }
  .style_glow .btn img {
    width: 20.26vw;
  }
  .sec_style .style_brilliant {
    top: 16.7vw;
    left: auto;
    right: 0;
  }

  .style_brilliant figure {
    width: 43.23vw;
    height: 31.77vw;
  }
  .style_brilliant .btn {
    left: -3.65vw;
    top: -10.62vw;
  }
  .style_brilliant .btn img {
    width: 36.77vw;
  }
  .style_column6 {
    height: 35.4vw;
    margin-top: 8.6vw;
  }

  .sec_style .style_lucid {
    top: 0;
    left: 0;
  }
  .style_lucid .btn {
    right: 1.35vw;
    top: -10.42vw;
  }
  .style_lucid .btn img {
    width: 35.47vw;
  }

  .style_lucid figure {
    width: 43.23vw;
    height: 31.77vw;
  }
  .sec_style .style_twinkle {
    right: 6.5vw;
    top: 7vw;
  }

  .style_twinkle figure {
    width: 42.71vw;
    height: 28.75vw;
  }

  .style_twinkle .btn {
    right: 2.71vw;
    top: 21.15vw;
  }
  .style_twinkle .btn img {
    width: 35.1vw;
  }
  .style_column7 {
    height: 40.6vw;
    margin-top: 6vw;
  }
  .sec_style .style_rich {
    left: 14.6vw;
  }

  .style_rich figure {
    width: 31.25vw;
    height: 31.25vw;
  }

  .sec_style .style_rich .btn {
    left: auto;
    right: -19.6vw;
    bottom: 0vw;
  }

  .style_rich .btn img {
    width: 17.66vw;
  }
}
@media screen and (min-width: 1720px) {
  .sec_style li .btn {
    width: fit-content;
  }
  .sec_style li .btn img {
    width: 100% !important;
    max-width: 100%;
    height: auto;
  }
  .sec_style .style_ecru .btn {
    right: -200px;
  }
  .sec_style .style_sheer .btn {
    right: -147px;
  }
  .sec_style .style_innocent .btn {
    left: -333px;
  }
  .sec_style .style_foggy .btn {
    left: -204px;
  }
  .sec_style .style_chiffon .btn {
    right: -44px;
  }
  .sec_style .style_mellow .btn {
    left: -227px;
  }
  .sec_style .style_dusty .btn {
    right: -185px;
  }
  .sec_style .style_airy .btn {
    left: -232px;
  }
  .sec_style .style_glow .btn {
    right: -309px;
  }
  .sec_style .style_brilliant .btn {
    left: -70px;
  }
  .sec_style .style_lucid .btn {
    right: 26px;
    top: -200px;
  }
  .sec_style .style_twinkle .btn {
    right: 52px;
    bottom: -204px;
    top: auto;
  }
  .sec_style .style_rich .btn {
    right: -372px;
    bottom: 0;
  }
}
.btn_blue {
  margin: 0 20px;
}

.btn_blue a {
  padding: 15px 0;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 40px;
  background: #48a9c5 url(../images/arrow.png) no-repeat right 20px top 17px;
  background-size: 20px auto;
  display: block;
}

@media screen and (min-width: 768px) {
  .btn_blue {
    margin: 0 auto;
    width: 675px;
  }

  .btn_blue a {
    padding: 25px 0;
    font-size: 3rem;
    background: #48a9c5 url(../images/arrow.png) no-repeat right 50px top 29px;
    background-size: auto auto;
    transition: opacity 0.3s ease 0s;
  }

  .btn_blue a:hover {
    opacity: 0.7;
  }
}

.sec_slide {
  margin: 0 auto;
}

.sec_slide h2 {
  margin: 0 auto 30px;
  width: 140px;
  text-align: center;
}

.sec_slide > p {
  margin: 0 0 20px;
  color: #48a9c5;
  font-size: 2rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .sec_slide {
    margin: 0 auto;
    width: 1360px;
  }

  .sec_slide h2 {
    margin: 0 0 60px;
    width: auto;
  }

  .sec_slide > p {
    margin: 0 0 60px;
    font-size: 4.2rem;
  }
}

.slide_column {
  margin: 0 0 50px;
}

.slide_wrapper {
  margin: 0 0 25px;
}

.slide_wrapper li {
  margin: 0 8px;
  padding: 20px 20px 30px;
  background: #e6f1f4;
  font-family: "游明朝", YuMincho, "Noto Serif JP", serif;
}

.slide_wrapper .slide_video {
  width: 100%;
}

.slide_wrapper h3 {
  margin: 15px 0 25px;
  color: #333;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .slide_column {
    margin: 0 0 120px;
  }

  .slide_wrapper {
    margin: 0 0 50px;
  }

  .slide_wrapper li {
    margin: 0 50px 0 0;
    padding: 30px 30px 50px;
    width: 420px;
    height: 900px;
  }

  .slide_wrapper h3 {
    margin: 15px 0 25px;
    font-size: 1.6rem;
  }
}

.slide_box {
  display: flex;
  align-items: center;
}

.slide_box figure {
  margin: 0 10px 0 0;
  width: 35%;
  flex-shrink: 0;
}

.slide_box h4 {
  color: #333;
  font-size: 1.2rem;
  line-height: 1.8;
}

.slide_box h4 div {
  font-size: 1.4rem;
  line-height: 1.6;
}

.slide_box h4 div span {
  font-size: 1.6rem;
  display: block;
}

.slide_box .link_insta {
  font-size: 1.2rem;
  white-space: nowrap;
}

.slide_box .link_insta a {
  padding: 5px 0;
  color: #046a88;
  line-height: 2;
  padding-left: 22px;
  background: url(../images/icon_insta.png) no-repeat 0 center;
  background-size: 18px auto;
}

@media screen and (min-width: 768px) {
  .slide_box figure {
    margin: 0 10px 0 0;
    width: 140px;
  }

  .slide_box h4 {
    font-size: 1.3rem;
  }

  .slide_box h4 div {
    font-size: 1.6rem;
  }

  .slide_box h4 div span {
    font-size: 2rem;
  }

  .slide_box .link_insta {
    font-size: 1.4rem;
  }

  .slide_box .link_insta a {
    padding-left: 24px;
    background: url(../images/icon_insta.png) no-repeat 0 center;
    background-size: 20px auto;
  }
}

.slide_navi {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide_navi .slide_dot ul {
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide_navi .slide_dot li {
  margin: 0 5px;
  text-indent: -9999px;
  width: 10px;
  height: 10px;
  background: #fff;
  border: 1px solid #c2e6f1;
  border-radius: 10px;
  cursor: pointer;
}

.slide_navi .slide_dot li.slick-active {
  border: 1px solid #48a9c5;
  background: #48a9c5;
}

.slide_navi .slick-prev {
  text-indent: -9999px;
  width: 7px;
  height: 10px;
  background: url(../images/btn_left.png) no-repeat 0 center;
  background-size: 7px auto;
  cursor: pointer;
}

.slide_navi .slick-next {
  text-indent: -9999px;
  width: 7px;
  height: 10px;
  background: url(../images/btn_right.png) no-repeat 0 center;
  background-size: 7px auto;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .slide_navi .slide_dot ul {
    margin: 0 20px;
  }

  .slide_navi .slide_dot li {
    margin: 0 10px;
    width: 20px;
    height: 20px;
  }

  .slide_navi .slick-prev {
    width: 14px;
    height: 22px;
    background: url(../images/btn_left.png) no-repeat 0 center;
    background-size: 14px auto;
  }

  .slide_navi .slick-next {
    width: 14px;
    height: 22px;
    background: url(../images/btn_right.png) no-repeat 0 center;
    background-size: 14px auto;
  }
}

.sec_insta {
  margin: 0 0 75px;
}

.sec_insta h2 {
  margin: 0 auto 25px;
  width: 40px;
}

.insta_list {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.insta_list li {
  width: 33.3333%;
  position: relative;
  overflow: hidden;
}

.insta_list li::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.insta_list li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.insta_list li:nth-child(10) {
  display: none;
}

@media screen and (min-width: 768px) {
  .sec_insta {
    margin: 0 0 210px;
  }

  .sec_insta h2 {
    margin: 0 auto 60px;
    width: 80px;
  }

  .insta_list {
    width: 1360px;
  }

  .insta_list li {
    width: 20%;
  }

  .insta_list li:nth-child(10) {
    display: block;
  }
}

.sec_voice {
  padding: 0 0 40px;
  background: url(../images/voice_back_sp.png) no-repeat center center;
  background-size: cover;
  text-align: center;
}

.voice_header {
  margin: 0 20px 30px;
  padding: 45px 0 0;
}

.sec_voice h2 {
  margin: 0 auto;
  width: 125px;
}

.sec_voice p.note {
  margin: 5px 0;
  font-size: 0.8rem;
  float: right;
}

.sec_voice h3 {
  padding: 25px 0 15px;
  border-top: 1px solid #48a9c5;
  border-bottom: 1px solid #48a9c5;
  clear: both;
}

.sec_voice h3 img {
  margin: 0 auto;
  width: 230px;
}

@media screen and (min-width: 768px) {
  .sec_voice {
    padding: 0 0 60px;
    background: url(../images/voice_back_pc.png) no-repeat center center;
    background-size: cover;
    text-align: center;
  }

  .voice_header {
    margin: 160px auto 50px;
    padding: 0;
    max-width: 1360px;
    display: inline-block;
    position: relative;
  }

  .sec_voice h2 {
    margin: 0 0 70px;
    width: auto;
  }

  .sec_voice p.note {
    position: absolute;
    top: 140px;
    right: 0;
    margin: 0;
    float: none;
    font-size: 1.2rem;
  }

  .sec_voice h3 {
    padding: 60px 0 50px;
  }

  .sec_voice h3 img {
    width: auto;
  }
}

.voice_slide_column .slick-list {
  padding: 0;
}

.voice_slide_column .slick-slide {
  padding: 0;
}

.voice_slide_column .slick-slide img {
  margin: 0 auto;
  width: 90%;
}

.sec_voice .slick-dots {
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
}

.sec_voice .slick-dots li {
  margin: 0 5px;
}

.sec_voice .slick-dots li button {
  text-indent: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
}

.sec_voice .slick-dots li.slick-active button {
  background: #fff;
}

@media screen and (min-width: 768px) {
  .voice_slide_column .slick-slide > div {
    padding-left: 30px;
    padding-right: 30px;
  }

  .voice_slide_column .slick-list {
    margin: 0 auto;
    width: 1435px;
  }

  .voice_slide_column .slick-slide {
    display: flex !important;
    justify-content: center;
  }

  .voice_slide_column .slick-slide img {
    width: auto;
  }

  .sec_voice .slick-dots {
    margin: 50px 0 20px;
  }

  .sec_voice .slick-dots li {
    margin: 0 10px;
  }

  .sec_voice .slick-dots li button {
    width: 20px;
    height: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1599px) {
  .voice_slide_column .slick-list {
    width: 100%;
  }
}

.sec_product {
  padding: 0 0 65px;
  text-align: center;
  background: url(../images/product_back_sp.png) no-repeat;
  background-size: 100% auto;
}

.sec_product h2 {
  margin: 75px auto 25px;
  width: 150px;
}

.product_column {
  margin: 0 auto;
  padding: 0 0 35px;
}

.product_column figure {
  margin: 0 35px;
}

.product_column figcaption {
  margin: 10px 0 0 auto;
  padding: 2px 4px;
  border: 1px solid #5d5551;
  font-size: 1.2rem;
  display: table;
}

.product_column p {
  margin: 0 0 30px;
  color: #5d5551;
  line-height: 1.8;
  font-size: 1.3rem;
  text-align: center;
}

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

.product_note h3 {
  margin: 0 0 5px 0;
  font-size: 1.4rem;
}

.product_note li {
  display: inline;
  line-height: 1.8;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .sec_product {
    padding: 0 0 220px;
    background: none;
  }

  .sec_product h2 {
    margin: 250px 0 40px;
    width: auto;
  }

  .product_column {
    margin: 0 auto 85px;
    padding: 130px 0 60px;
    display: flex;
    max-width: 1230px;
    justify-content: center;
    background: url(../images/product_back_pc.png) no-repeat right top;
  }

  .product_column figure {
    margin: 0 100px 0 0;
    order: 1;
  }

  .product_column figcaption {
    margin: 20px 0 0 auto;
    font-size: 1.4rem;
  }

  .product_column p {
    margin: 40px 120px 0 0;
    font-size: 1.6rem;
    order: 2;
    text-align: left;
  }

  .product_note {
    margin: 0 auto;
    padding: 45px 0 0;
    display: flex;
    max-width: 1370px;
  }

  .product_note h3 {
    margin: 0 30px 0 0;
    white-space: nowrap;
    line-height: 2;
    font-size: 1.6rem;
  }

  .product_note li {
    padding: 0 10px 0 0;
    display: inline;
    line-height: 2;
    font-size: 1.6rem;
  }
}

.btn_2column div {
  margin: 0 20px 10px;
}

@media screen and (min-width: 768px) {
  .btn_2column {
    display: flex;
    justify-content: center;
  }

  .btn_2column div {
    margin: 0 10px;
  }
}

.sec_support {
  margin: 0 0 50px;
  text-align: center;
}

.sec_support h2 {
  margin: 0 auto 15px;
  width: 212px;
}

.support_column {
  margin: 0 20px 40px;
}

.support_column figure {
  margin: 0 15px 30px;
}

.support_column > div {
  text-align: left;
}

.support_column h3 {
  margin: 0 0 20px;
  color: #48a9c5;
  font-size: 2.2rem;
  text-align: center;
}

.support_column p {
  line-height: 1.8;
  font-size: 1.4rem;
}

.sec_support ul {
  margin: 0 40px 20px;
}

.sec_support li {
  margin: 0 0 30px;
  position: relative;
}

.sec_support li .inner {
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  background: #e4f2f6;
}

.sec_support li h3 {
  position: absolute;
  left: -25px;
  top: 0;
  transform: scale(0.65);
}

.sec_support li .inner > div {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-content: center;
  align-items: center;
}

.sec_support li h4 {
  margin: 0 0 20px;
  color: #48a9c5;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.sec_support li p {
  margin: 0 40px;
  line-height: 2;
  text-align: left;
  font-size: 1.4rem;
  letter-spacing: 0;
}

.sec_support .movie_box {
  margin: 0 20px;
}

@media screen and (min-width: 768px) {
  .sec_support {
    margin: 0;
  }

  .sec_support h2 {
    margin: 0;
    width: auto;
  }

  .support_column {
    margin: 20px auto 60px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    max-width: 1330px;
  }

  .support_column figure {
    margin: 0 70px 0 0;
    flex-shrink: 0;
  }

  .support_column > div {
    margin: 0 20px 0 0;
    text-align: left;
  }

  .support_column h3 {
    margin: 0 0 25px;
    font-size: 4rem;
    text-align: left;
  }

  .support_column p {
    margin: 0 0 40px;
    line-height: 2;
    font-size: 1.6rem;
  }

  .sec_support ul {
    margin: 0 auto 70px;
    display: flex;
    justify-content: space-between;
    max-width: 1480px;
  }

  .sec_support li {
    margin: 0 0 0 0;
    max-width: 460px;
    width: calc(33.3333% - 34px);
    position: relative;
    min-height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../images/point_back.png) no-repeat center center;
    background-size: 100% auto;
  }

  .sec_support li:last-child {
    margin-right: 0;
  }

  .sec_support li .inner {
    padding: 0;
    background: none;
    border-radius: inherit;
    position: initial;
  }

  .sec_support li h3 {
    left: 0;
    top: 25px;
    transform: none;
  }

  .sec_support li .inner > div {
    position: relative;
    display: block;
  }

  .sec_support li h4 {
    font-size: 3rem;
  }

  .sec_support li p {
    margin: 0 auto;
    width: 300px;
    letter-spacing: 0.3em;
    font-size: 1.6rem;
  }

  .sec_support .movie_box {
    margin: 0;
  }
}

.support_info {
  margin: 50px 0 75px;
}

.support_info h3 {
  margin: 0 20px 25px;
  padding: 8px 0;
  color: #5d5551;
  font-size: 2rem;
  letter-spacing: 0.3em;
  text-align: center;
  background: #e4f2f6;
}

.support_info p {
  margin: 0 20px 10px;
  color: #5d5551;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.2em;
  text-align: left;
}

.support_info p em {
  color: #ff0000;
}

.support_info .btn_blue {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .support_info {
    margin: 100px auto 250px;
    max-width: 1360px;
    text-align: center;
  }

  .support_info h3 {
    margin: 0 0 40px;
    padding: 12px 0;
    font-size: 3.2rem;
  }

  .support_info p {
    margin: 0 0 10px;
    font-size: 1.6rem;
    text-align: center;
  }

  .support_info .btn_blue {
    margin-top: 50px;
  }
}

.sec_simu {
  padding: 0 20px 100px;
  text-align: center;
}

.sec_simu h2 {
  margin: 0 0 30px;
}

.sec_simu p {
  margin: 0 0 2px;
  color: #5d5551;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.8;
}

.sec_simu h3 {
  margin: 100px 0 10px;
  color: #b47c00;
  font-size: 4.2vw;
  font-weight: bold;
}

.sec_simu .btn_brand a {
  padding: 20px 0px;
  border-radius: 10px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  display: block;
  background: #b47c00 url(../images/arrow.png) no-repeat right 20px top 22px;
  background-size: 20px auto;
}

@media screen and (min-width: 768px) {
  .sec_simu {
    padding: 0 0 150px;
  }

  .sec_simu h2 {
    margin: 0 0 50px;
  }

  .sec_simu p {
    margin: 0 0 10px;
    letter-spacing: 0.2em;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .sec_simu h3 {
    margin: 150px 0 20px;
    font-size: 2.2rem;
  }

  .sec_simu .btn_brand a {
    padding: 40px 120px;
    border-radius: 20px;
    font-size: 3rem;
    display: inline-block;
    background: #b47c00 url(../images/arrow.png) no-repeat right 45px top 47px;
    background-size: 25px auto;
    transition: opacity 0.3s ease 0s;
  }

  .sec_simu .btn_brand a:hover {
    opacity: 0.7;
  }
}

.footer_top {
  margin: 0 auto;
  padding: 0 0 25px;
  text-align: center;
  width: 50px;
}

.footer_bottom {
  padding: 10px 0;
  background: #5d5551;
}

.footer_bottom ul {
  margin: 0 0 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.footer_bottom li {
  margin: 5px 0;
  font-size: 1.2rem;
  padding: 0 0 0 25px;
  background: url(../images/link.png) no-repeat 0 center;
  background-size: 18px auto;
}

.footer_bottom li:first-child {
  margin-right: 20px;
}

.footer_bottom li a {
  color: #fff;
}

.footer_bottom .copyright {
  color: #fff;
  text-align: center;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .footer_top {
    padding: 0 0 50px;
    width: auto;
  }

  .footer_bottom {
    padding: 10px 140px;
    display: flex;
    justify-content: space-between;
  }

  .footer_bottom ul {
    margin: 0;
  }

  .footer_bottom li {
    margin: 0 20px 0 0;
    font-size: 1.6rem;
    padding: 0 0 0 38px;
    background: url(../images/link.png) no-repeat 0 center;
  }

  .footer_bottom li br {
    display: none;
  }

  .footer_bottom .copyright {
    font-size: 1.4rem;
    white-space: nowrap;
  }
}

@media screen and (min-width: 768px) and (max-width: 1420px) {
  .footer_bottom {
    padding: 10px 20px;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .footer_bottom ul {
    margin: 10px 0;
  }

  .footer_bottom {
    display: block;
  }
}

.top_page_header .sp_header_column {
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease 0s;
}

.top_page_header.header_fixed .sp_header_column {
  opacity: 1;
  z-index: 10;
  transition: opacity 0.3s ease 0s;
}

.top_page_header .sp_header_column .menu {
  margin: 0;
  display: block;
}

/*--------------------
	download
---------------------*/

.sp_header_column {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  background: #fff;
}

.sp_header_column .logo {
  width: 120px;
}

.page_header .sp_header_column .menu {
  margin: 0;
  display: block;
}

.sp_header_column .menu::before,
.sp_header_column .menu::after,
.sp_header_column .menu span::before {
  height: 2px;
}

.page_header .menu {
  display: none;
}

.sec_download {
  padding: 90px 20px 30px;
  text-align: center;
}

.sec_download h1 {
  margin: 0 auto 40px;
  width: 200px;
}

.sec_download > p {
  margin: 0 0 30px;
  color: #5d5551;
  line-height: 1.9;
  font-size: 1.2rem;
  text-align: left;
}

.sec_download h2 {
  margin: 50px -20px;
  color: #5d5551;
  font-size: 1.4rem;
  font-family: serif;
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 0.3em;
}

.sec_download h2::before,
.sec_download h2::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  display: block;
  background: #5d5551;
}

.sec_download h2::before {
  margin-right: 20px;
}

.sec_download h2::after {
  margin-left: 20px;
}

@media screen and (min-width: 768px) {
  .sp_header_column {
    display: none;
  }

  .page_header .header_column .logo {
    opacity: 1;
  }

  .page_header .header_column {
    padding: 40px 50px 10px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    height: 110px;
    z-index: 10;
  }

  .sec_download {
    padding: 240px 0 80px;
  }

  .sec_download h1 {
    margin: 0 auto 85px;
    width: auto;
  }

  .sec_download > p {
    margin: 0 0 60px;
    line-height: 2;
    font-size: 1.6rem;
    text-align: center;
  }

  .sec_download h2 {
    margin: 150px 0;
    font-size: 3rem;
  }

  .sec_download h2.title_glitter {
    margin-top: 220px;
  }

  .sec_download h2::before {
    margin-right: 50px;
  }

  .sec_download h2::after {
    margin-left: 50px;
  }
}

.download_column {
  margin: 0 auto 50px;
}

.download_column h3 {
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
}

.download_column h3 img {
  margin: 0 auto;
}

.download_column.ecru h3 img {
  width: 180px;
}

.download_column.innocent h3 img {
  width: 195px;
}

.download_column.sheer h3 img {
  width: 190px;
}

.download_column.foggy h3 img {
  width: 185px;
}

.download_column.chiffon h3 img {
  width: 223px;
}

.download_column.mellow h3 img {
  width: 223px;
}

.download_column.dusty h3 img {
  width: 162px;
}

.download_column.airy h3 img {
  width: 176px;
}

.download_column.glow h3 img {
  width: 190px;
}

.download_column.brilliant h3 img {
  width: 204px;
}

.download_column.rich h3 img {
  width: 165px;
}

.download_column.lucid h3 img {
  width: 180px;
}

.download_column.twinkle h3 img {
  width: 178px;
}

.download_column ul {
  margin: 30px 0 0;
  display: flex;
  justify-content: center;
}

.download_column li {
  margin: 0 5px;
}

.download_column li img {
  zoom: 0.2;
}

.package {
  margin-bottom: 30px;
}

.package h2 {
  color: #5d5551;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  font-family: serif;
}

.package h3 {
  margin: 40px auto 40px;
  max-width: 283px;
}

.product_tube {
  margin: 0 auto 35px;
  max-width: 160px;
}

.product_kobako {
  margin: 0 auto 25px;
  max-width: 175px;
}

.product_set {
  margin: 0 auto;
  max-width: 200px;
  position: relative;
  right: -10px;
}

@media screen and (min-width: 768px) {
  .download_column {
    margin: 0 auto 140px;
    max-width: 1640px;
  }

  .download_column h3 img {
    width: auto !important;
  }

  .download_column ul {
    margin: 70px 0 0;
  }

  .download_column li {
    margin: 0 10px;
  }

  .download_column li img {
    zoom: inherit;
  }

  .package {
    margin-bottom: 50px;
  }

  .package h2 {
    font-size: 3.2rem;
  }

  .package h3 {
    margin: 130px auto 40px;
    max-width: 710px;
  }

  .product_img {
    margin: 0 70px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product_tube {
    margin: 63px 140px 0 0;
    max-width: 380px;
  }

  .product_kobako {
    margin: 60px 140px 0 0;
    max-width: 390px;
  }

  .product_set {
    max-width: 495px;
  }
}

.kiyaku_link {
  margin: 0 auto 40px;
  text-align: left;
}

.kiyaku_link a {
  text-decoration: underline;
  color: #48a9c5;
  font-size: 1.2rem;
}

#download_kiyaku {
  margin: 60px auto 30px;
  padding: 20px 20px 10px;
  border: 1px solid #333;
  text-align: left;
}

#download_kiyaku h3 {
  margin: 0 0 15px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}

#download_kiyaku p {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .kiyaku_link {
    margin: 0 auto 80px;
    max-width: 790px;
  }

  .kiyaku_link a {
    font-size: 1.6rem;
  }

  .kiyaku_link a:hover {
    text-decoration: none;
  }

  #download_kiyaku {
    margin: 120px auto 80px;
    padding: 40px 40px 20px;
    max-width: 980px;
  }

  #download_kiyaku h3 {
    margin: 0 0 30px;
    font-size: 2rem;
  }

  #download_kiyaku p {
    margin: 0 0 20px;
    font-size: 1.6rem;
  }
}

/*-----------------------------
	規約
------------------------------*/

.kiyaku {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease 0s;
  margin: auto;
}

.open.kiyaku {
  opacity: 1;
  z-index: 20;
}

.kiyaku .inner {
  margin: 0 20px;
  color: #fff;
}

.kiyaku h2 {
  margin: 0 0 20px;
  font-size: 2.2rem;
  text-align: center;
}

.kiyaku p {
  margin: 0 0 20px;
  font-size: 1.2rem;
  line-height: 1.7;
}

.kiyaku .btn_blue {
  margin: 30px auto 0;
}

.kiyaku .btn_blue a {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .kiyaku {
    transition: opacity 0.2s ease 0s;
  }

  .kiyaku .inner {
    margin: auto;
    width: 810px;
    text-align: center;
  }

  .kiyaku h2 {
    margin: 0 0 60px;
    font-size: 3.4rem;
  }

  .kiyaku p {
    margin: 0 0 40px;
    font-size: 1.8rem;
    line-height: 1.8;
  }

  .kiyaku .btn_blue {
    margin: 80px auto 0;
  }

  .kiyaku .btn_blue a {
    font-size: 3.6rem;
  }
}

/*-----------------------------
	モーダル
------------------------------*/

.modal_style {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease 0s;
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.open.modal_style {
  opacity: 1;
  z-index: 20;
}

.modal_style .inner {
  margin: auto;
  width: 92%;
  text-align: center;
}

.modal_style .slick-slider {
  padding: 0 5%;
}

.modal_style .slick-track {
  display: table;
}

.modal_style .slick-slide {
  margin: auto;
}

.modal_style .slick-slide {
  display: table-cell !important;
  vertical-align: middle;
  text-align: center;
  float: none;
}

.modal_img {
  margin: auto;
  width: 90%;
}

.modal_text {
  margin: 10px 5% 0;
  color: #fff;
  font-size: 1.2rem;
  text-align: left;
}

.slide_prev,
.slide_next {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 16px;
  height: 30px;
  cursor: pointer;
}

.slide_prev {
  left: 0;
  background: url(../images/slide_prev.png) no-repeat;
}

.slide_next {
  right: 0;
  background: url(../images/slide_next.png) no-repeat;
}

@media screen and (min-width: 768px) {
  .modal_style .inner {
    max-width: 1150px;
    width: 60%;
    min-width: 960px;
  }

  .modal_style .slick-slider {
    padding: 0 20px;
  }

  .modal_style .slick-list {
    margin: 0 40px;
  }

  .modal_img {
    max-height: 800px;
    max-width: 800px;
    height: 100%;
    width: auto;
  }

  .modal_text {
    margin: 15px 0 0;
    font-size: 1.8rem;
    text-align: center;
  }
}
