@charset "utf-8";
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* * Basic information:
* * - CSS guideline : FLOCSS
* *
* * Order of discription:
* * - Foundation [ reset / base ]
* * - Layout [ header / main / side / footer ]
* * - Object [ component / project / utility ]
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /

/****************************
  base
*****************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  background-color: #fff;
  font-size: 16px;
  font-family: 'Noto Serif JP',"游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  color: #333333;
  min-width: 1200px;
  position: relative;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

select {
  font-size: 14px;
  background-color: #fff;
  height: 26px;
  box-sizing: border-box;
}

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

a img:hover {
  opacity: .75;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

a:hover, a:active, a:focus {
  text-decoration: inherit;
}

a:hover {
  opacity: 1.0;
}

a[href]:hover {
  opacity: .8;
}

a {
  text-decoration: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

.shippori {
  font-family: 'Shippori Mincho B1', serif;
}

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

/* ==========================================================================
Layout [ header / main / side / footer... ]
========================================================================== */

/* Header
---------------------------------------------------------------*/
#header {
  position: relative;
  z-index: 20;
  padding: 30px;
  background: url(../images2024/bg-header.png) no-repeat 10% 0%;
}

.l-header-logo {
  width: 190px;
  height: auto;
  margin: 0 auto;
}

/*sns*/
.l-header-sns {
  position: absolute;
  right: 200px;
  top: 80px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.l-header-sns span {
  display: inline-block;
  color: #000;
  font-size: 13px;
  margin-right: 16px;
}

.l-header-sns ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.l-header-sns ul li {
  width: 26px;
  height: 26px;
}

.l-header-sns ul li a {
  display: block;
  width: 26px;
  height: 26px;
  background: url(../images2024/ico-instagram.svg) no-repeat 0px 0px;
  background-size: 26px auto;
}

/*hamburger menu*/
.c-navigation-main__hamburger-wrap {
  display: block;
  position: fixed;
  width: 52px;
  z-index: 130;
  height: 50px;
  top: 70px;
  right: 80px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.c-navigation-main__hamburger-wrap.active {
  top: 20px;
  right: 20px;
}
.c-navigation-main__hamburger-wrap span {
  position: absolute;
  left: 0px;
  width: 52px;
  height: 1px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: #000000;
}
.c-navigation-main__hamburger-wrap span:nth-of-type(1) {
  top: 0px;
}
.c-navigation-main__hamburger-wrap span:nth-of-type(2) {
  top: 9px;
}
.c-navigation-main__hamburger-wrap span:nth-of-type(3) {
  top: 18px;
}
.c-navigation-main__hamburger-wrap.active span:nth-of-type(1) {
  -webkit-transform: translateY(13px) rotate(-45deg);
  transform: translateY(0px) rotate(-22deg);
  top: 12px;
}
.c-navigation-main__hamburger-wrap.active span:nth-of-type(2) {
  opacity: 0;
}
.c-navigation-main__hamburger-wrap.active span:nth-of-type(3) {
  -webkit-transform: translateY(-21px) rotate(45deg);
  transform: translateY(0px) rotate(22deg);
  width: 52px;
  top: 12px;
}
.c-navigation-main__hamburger-wrap.is-show span {
  background-color: #001489;
}
.c-navigation-main__hamburger-wrap p {
  position: absolute;
  left: 0;
  bottom: 0;
}

/*NAV*/
.l-header-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  color: #222;
  text-align: center;
  transform: translateX(100%);
  transition: all .6s;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10;
}

.l-header-nav.active {
  transform: translateX(0%);
}

.l-header-nav__item {
  background: #e3e3e3;
  margin: 0;
  padding: 70px 0 0;
  float: right;
  width: 400px;
}

.l-header-nav__items {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.sp-story-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}

.sp-story-list li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 25px;
}

.sp-story-list li:nth-child(2n) {
  margin-right: 0;
}

.sp-story-list .thum {
  margin-bottom: 10px;
}

.sp-story-list .logo {
  text-align: center;
  margin-bottom: 10px;
}

.sp-story-list .logo img {
  height: 60px;
  width: auto;
}

.sp-story-list p {
  font-size: 13px;
}

.nav-title {
  text-align: center;
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 25px;
  font-size: 16px;
}

.nav-title:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70px;
  height: 1px;
  margin-left: -35px;
  background: #555;
}

.others {
  background: #555;
  padding: 20px 0 0;
}

.others .nav-title {
  color: #fff;
}

.others .nav-title:before {
  background: #fff;
}

.others ul li {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px dashed rgba(250,250,250,.4);
}

.others ul li a {
  display: inline-block;
  width: 100%;
  color: #fff;
  font-size: 14px;
  position: relative;
  padding: 10px;
}

.others ul li a:before {
  content: '';
  position: absolute;
  top: 48%;
  right: 10px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.online-shop {
  background-color: #fff;
  padding: 20px 20px 40px;
  margin-top: 20px;
}

.online-shop-inner {
  width: 100%;
}

.online-shop-inner p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.online-shop-inner span {
  font-size: 14px;
  display: block;
  color: #a02223;
  font-weight: 700;
}

.sp-line-add {
  width: 100%;
  margin-bottom: 40px;
}

.sp-line-add img {
  height: 36px;
}

.sp-line-add a {
  font-size: 13px;
}

/* Main
---------------------------------------------------------------*/
.l-wrapper {
  overflow: hidden;
  width: 100%;
}


/* Footer
---------------------------------------------------------------*/
#footer {
  background-color: #000000;
  position: relative;
}

.l-footer-top {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 80px;
  width: 64px;
  height: 64px;
}

.l-footer-inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 86px 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}

.l-footer-logo {
  width: 50%;
  text-align: center;
  order: 2;
}

.l-footer-logo img {
  width: 247px;
}

.l-footer-nav {
  width: 50%;
  order: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.l-footer-btn {
  display: block;
  border: 1px solid #fff;
  width: 52px;
  height: 370px;
  z-index: 2;
  padding-top: 80px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.l-footer-btn li {
  font-size: 19px;
  position: relative;
  margin: 0 auto;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.l-footer-btn li:nth-child(1):before {
  content: '';
  position: absolute;
  left: 4px;
  bottom: -36px;
  width: 28px;
  height: 1px;
  background: #fff;
}

.l-footer-btn li + li {
  margin-top: 76px;
}

.l-footer-btn li a {
  color: #fff;
}

.l-footer-nav__items {
  margin-left: 80px;
}

.l-footer-nav__items li {
  margin-bottom: 5px;
}

.l-footer-nav__items li a {
  color: #fff;
  font-size: 22px;
}

.l-footer-nav__items p {
  color: #a02223;
  font-size: 16px;
  margin-bottom: 80px;
}

.l-copyright {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  position: relative;
  padding: 30px 40px 30px;
}

.l-copyright p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  margin-left: auto;
}

.l-copyright .l-footer-privacy {
  color: #fff;
  margin-right: auto;
  font-size: 16px;
}

.l-footer-sns {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
  padding-right: 40px;
}

.l-footer-sns span {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  margin-right: 16px;
}

.l-footer-sns ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.l-footer-sns ul li {
  width: 26px;
  height: 26px;
}

.l-footer-sns ul li a {
  display: block;
  width: 26px;
  height: 26px;
  background: url(../images2024/ico-instagram-white.svg) no-repeat 0px 0px;
  background-size: 26px auto;
}
/* ==========================================================================
Project [ articles / ranking / promo... ]
========================================================================== */
/*MV*/
.mv {
  background-color: #000000;
  position: relative;
}

.scroll {
  position: absolute;
  right: 90px;
  bottom: 150px;
}

.scroll span {
  color: #fff;
  font-size: 16px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.scroll:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom:0;
  left:9px;
  /*丸の形状*/
  width:11px;
  height:11px;
  border-radius: 50%;
  background:#fff;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}
.scroll:after {
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:-150px;
  left:14px;
    /*線の形状*/
  width:1px;
  height: 136px;
  background:#fff;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:-25px;}
     100%{bottom:-145px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
  100%{opacity:0;}
}

.mv-inner {
  width: 70%;
  position: relative;
}

.mv-slider {
  width: 100%;
}

.mv-catch01 {
  position: absolute;
  right: -140px;
  top: 35px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
}

.mv-catch01 span {
  background-color: #ffffff;
  padding: 27px 18px;
  display: inline-block;
  margin-left: 15px;
}

.mv-catch01 span img {
  width: 46px;
  height: auto;
}

.mv-catch02 {
  position: absolute;
  right: 90px;
  top: 60px;
  color: #fff;
  font-size: 18px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.16rem;
}



/*メインビジュアル*/
.news {
  padding: 67px 0 0;
}

.lead {
  text-align: center;
  margin-bottom: 35px;
}

.lead h2 {
  font-size: 32px;
}

.news-list li {
  border-top: 1px solid #999999;
  padding: 20px 0;
}

.news-list li:last-child {
  border-bottom: 1px solid #999999;

}

.news-list li .news-list-inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
}

.news-list li .news_time {
  font-size: 16px;
  width: 158px;
}

.news-list li .news_title {
  margin-left: auto;
  width: calc(100% - 158px);
}

/*CONTENT*/

.content-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  background-color: #dcdee2;
}

.content-list-thum {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 50%;
}

.content-list-thum img:nth-child(1) {
  width: 100%;
  margin-bottom: 20px;
}

.content-list-thum img:nth-child(2) ,
.content-list-thum img:nth-child(3) {
  width: calc(50% - 10px);
}

.content-list-info {
  width: 50%;
  padding: 8vw;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.content-list-info__inner {
  display: block;
}

.content-list-info h2 {
  margin-bottom: 3vw;
}

.content-list-info h2.content01-ttl01 img {
  width: 20vw;
  height: auto;
}

.content-list-info h2.content01-ttl02 img {
  width: 30.85vw;
  height: auto;
}

.content-list-info h2.content01-ttl03 img {
  width: 25.64vw;
  height: auto;
}

.content-list-info p {
  font-size: 18px;
  line-height: 2.2;
}

.content-list:nth-child(2) .content-list-thum {
  order: 2;
}

.content-list:nth-child(2) .content-list-info {
  order: 1;
}

/*gallary*/

.gallery-list {
  column-gap: 1em;
  -moz-column-count: 3;
  -webkit-column-count: 3;
  column-count: 3;
  padding-top: 40px;
}

.gallery-list li {
  display: inline-block;
  margin-bottom: 25px;
}

.gallary-insta {
  text-align: center;
  margin: 15px;
  width: 100%;
}

.gallary-insta a {
  font-size: 18px;
  padding-left: 46px;
  background: url(../images2024/ico-instagram.svg) no-repeat left center;
  background-size: 34px auto;
  padding-top: 2px;
  padding-bottom: 2px;
  display: inline-block;
}

/*GIFT*/
.gift {
  background-color: #353a43;
  padding: 50px 0 0;
}

.lead.type02 h2 {
  color: #fff;
}

.gift p.gift-head {
  color: #fff;
  margin-bottom: 25px;
  text-align: center;
}

.gift-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}

.gift-list li {
  width: 231px;
  height: 397px;
  padding-top: 160px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}

.gift-list li p {
  color: #fff;
  font-size: 20px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.16rem;
}

.gift-list li:nth-child(1) {
  background: url(../images2024/gift-thum01.png) no-repeat top center;
  background-size: 100%;
  background-color: #000000;
}

.gift-list li:nth-child(2) {
  background: url(../images2024/gift-thum02.png) no-repeat top center;
  background-size: 100%;
  background-color: #000000;
}

.gift-list li:nth-child(3) {
  background: url(../images2024/gift-thum03.png) no-repeat top center;
  background-size: 100%;
  background-color: #000000;
}

.gift-list li:nth-child(4) {
  background: url(../images2024/gift-thum04.png) no-repeat top center;
  background-size: 100%;
  background-color: #000000;
}

/*story*/

.story {
  padding-top: 100px;
}

.story .lead {
  border-bottom: 1px solid #b8b8b8;
  padding-bottom: 55px;
}

.story-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  column-gap: 28px;
}

.story-list li {
  width: 229px;
  margin-bottom: 50px;
}

.story-list li .thum {
  margin-bottom: 16px;
}

.story-list li .thum img {
  width: 100%;
}

.story-list li .logo {
  height: 91px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.story-list li p {
  font-size: 15px;
  letter-spacing: -0.01em;
  text-align: center;
}

.story-list li:nth-child(1) .logo img ,
.story-list li:nth-child(3) .logo img {
  width: 165px;
}

.story-list li:nth-child(2) .logo img {
  width: 195px;
}

.story-list li:nth-child(4) .logo img {
  width: 151px;
}

.story-list li:nth-child(5) .logo img {
  width: 216px;
}

.story-list li:nth-child(6) .logo img {
  width: 117px;
}

.story-list li:nth-child(7) .logo img {
  width: 88px;
}

.story-list li:nth-child(8) .logo img {
  width: 123px;
}

.story-list li:nth-child(9) .logo img {
  width: 108px;
}

/* ==========================================================================
Component [ button / form / grid... ]
========================================================================== */

.c-center {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 0 100px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.c-center02 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 70px 0 100px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* grid */
.grid {
  clear: both;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.flex-top {
  align-items: flex-start;
}

.flex-middle {
  align-items: center;
}

.flex-bottom {
  align-items: flex-end;
}

.flex-between {
  justify-content: space-between;
}

.flex-around {
  justify-content:space-around;
}

.flex-left {
  justify-content:flex-start;
}

.flex-center {
  justify-content:center;
}

.flex-right {
  justify-content:flex-end;
}


/* column */
.col-1 { width: 8.33333333%; }
.col-2 { width: 16.66666667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33333333%; }
.col-5 { width: 41.66666667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33333333%; }
.col-8 { width: 66.66666667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33333333%; }
.col-11 { width: 91.66666667%; }
.col-12 { width: 100%; }

.txt14 {
  font-size: 14px;
}

.txt16 {
  font-size: 16px;
}

.txt18 {
  font-size: 18px;
}

.txt20 {
  font-size: 20px;
}

strong {
  font-weight: bold;
}

/*BTN*/
.c-btn {
  display: block;
  margin: 40px auto;
  text-align: center;
}

.c-btn a {
  display: inline-block;
  width: 258px;
  height: 46px;
  border: 1px solid #999999;
  text-align: center;
  padding: 10px 10px;
  font-size: 16px;
  position: relative;
}

.c-btn.c-btn-type02 a {
  color: #ffffff;
}

.c-btn a:before {
  content: '';
  position: absolute;
  right: -49px;
  top: 15px;
  width: 66px;
  height: 8px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background: url(../images2024/btn-arw.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.c-btn a:hover:before {
  right: -29px;
}


/* animation - utility
--------------------------------------------------------- */
.sa {
  opacity: 0;
  transition: all .5s ease!important;
}
.sa.lv {
  opacity: 0;
}
.sa.show {
  opacity: 1;
  transform: none;
}
.sa--lr {
  transform: translate(-30px, 0);
}
.sa--rl {
  transform: translate(30px, 0);
}
.sa--up {
  transform: translate(0, 30px);
}
.sa--down {
  transform: translate(0, -50px);
}
.sa--scaleUp {
  transform: scale(.9);
}
.sa--scaleDown {
  transform: scale(1.2);
}
.sa--rotateL {
  transform: rotate(180deg);
}
.sa--rotateR {
  transform: rotate(-180deg);
}

@media screen and (max-width: 736px) {
  .sa--sp {
    opacity: 1!important;
    transform: none!important;
  }
}

/* ==========================================================================
Utility [ display / margin / padding / device... ]
========================================================================== */

/* device - utility
--------------------------------------------------------- */
.u-pc {
  display: block !important;
}
.u-sp {
  display: none !important;
}

/* vertical-align - utility
--------------------------------------------------------- */
.u-va-t{
  vertical-align: top !important;
}
.u-va-m{
  vertical-align: middle !important;
}
.u-va-b{
  vertical-align: bottom !important;
}

/* border - utility
--------------------------------------------------------- */
/* border-radius */
.u-br-4{
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -ms-border-radius: 4px;
}
.u-br-8{
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -ms-border-radius: 8px;
}
.u-br-12{
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -ms-border-radius: 12px;
}
.u-br-16{
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -ms-border-radius: 16px;
}

/* border-none */
.u-br-0{
  border: none;
}
.u-br-t-0{
  border-top: none;
}
.u-br-r-0{
  border-right: none;
}
.u-br-b-0{
  border-bottom: none;
}
.u-br-l-0{
  border-left: none;
}

/* clearfix - utility
--------------------------------------------------------- */
.u-cf{
  *zoom: 1;
}
.u-cf:after{
  display: table;
  clear: both;
  content: '';
}

/* display - utility
--------------------------------------------------------- */
.u-d-tb{
  display: table !important;
}
.u-d-tbc{
  display: table-cell !important;
}
.u-d-b{
  display: block !important;
}
.u-d-ib{
  display: inline-block !important;
}
.u-d-n{
  display: none !important;
}

/* float - utility
--------------------------------------------------------- */
.u-fl-l{
  float: left !important;
}
.u-fl-r{
  float: right !important;
}

/* font-size - utility
--------------------------------------------------------- */
.u-fz-10{
  font-size: 10px !important;
}
.u-fz-12{
  font-size: 12px !important;
}
.u-fz-14{
  font-size: 14px !important;
}
.u-fz-16{
  font-size: 16px !important;
}
.u-fz-18{
  font-size: 18px !important;
}
.u-fz-20{
  font-size: 20px !important;
}
.u-fz-22{
  font-size: 22px !important;
}
.u-fz-24{
  font-size: 24px !important;
}
.u-fz-26{
  font-size: 26px !important;
}
.u-mini {
  font-size: 80%;
}

/* line-clamp - utility
--------------------------------------------------------- */
.u-lc{
  display:         box;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* margin - utility
--------------------------------------------------------- */
/* auto margin */
.u-m-c{
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Top margin */
.u-mt-0{
  margin-top: 0 !important;
}
.u-mt-8{
  margin-top: 8px !important;
}
.u-mt-16{
  margin-top: 16px !important;
}
.u-mt-24{
  margin-top: 24px !important;
}
.u-mt-32{
  margin-top: 32px !important;
}
.u-mt-40{
  margin-top: 40px !important;
}
.u-mt-48{
  margin-top: 48px !important;
}
.u-mt-56{
  margin-top: 56px !important;
}
.u-mt-64{
  margin-top: 64px !important;
}

/* Right margin */
.u-mr-0{
  margin-right: 0 !important;
}
.u-mr-8{
  margin-right: 8px !important;
}
.u-mr-16{
  margin-right: 16px !important;
}
.u-mr-24{
  margin-right: 24px !important;
}
.u-mr-32{
  margin-right: 32px !important;
}
.u-mr-40{
  margin-right: 40px !important;
}
.u-mr-48{
  margin-right: 48px !important;
}
.u-mr-56{
  margin-right: 56px !important;
}
.u-mr-64{
  margin-right: 64px !important;
}

/* Bottom margin */
.u-mb-0{
  margin-bottom: 0 !important;
}
.u-mb-8{
  margin-bottom: 8px !important;
}
.u-mb-16{
  margin-bottom: 16px !important;
}
.u-mb-24{
  margin-bottom: 24px !important;
}
.u-mb-32{
  margin-bottom: 32px !important;
}
.u-mb-40{
  margin-bottom: 40px !important;
}
.u-mb-48{
  margin-bottom: 48px !important;
}
.u-mb-56{
  margin-bottom: 56px !important;
}
.u-mb-64{
  margin-bottom: 64px !important;
}

/* Left margin */
.u-ml-0{
  margin-left: 0 !important;
}
.u-ml-8{
  margin-left: 8px !important;
}
.u-ml-16{
  margin-left: 16px !important;
}
.u-ml-24{
  margin-left: 24px !important;
}
.u-ml-32{
  margin-left: 32px !important;
}
.u-ml-40{
  margin-left: 40px !important;
}
.u-ml-48{
  margin-left: 48px !important;
}
.u-ml-56{
  margin-left: 56px !important;
}
.u-ml-64{
  margin-left: 64px !important;
}

/* misc - utility
--------------------------------------------------------- */
.u-ws-nowrap{
  white-space: nowrap;
}
.u-mx-img{
  max-width: 100%;
}
.u-tx-inside{
  margin-left: 1em;
  text-indent: -1em;
}

/* padding - utility
--------------------------------------------------------- */
/* Top padding */
.u-pt-0{
  margin-top: 0 !important;
}
.u-pt-8{
  margin-top: 8px !important;
}
.u-pt-16{
  margin-top: 16px !important;
}
.u-pt-24{
  margin-top: 24px !important;
}
.u-pt-32{
  margin-top: 32px !important;
}
.u-pt-40{
  margin-top: 40px !important;
}
.u-pt-48{
  margin-top: 48px !important;
}
.u-pt-56{
  margin-top: 56px !important;
}
.u-pt-64{
  margin-top: 64px !important;
}

/* Right padding */
.u-pr-0{
  padding-right: 0 !important;
}
.u-pr-8{
  padding-right: 8px !important;
}
.u-pr-16{
  padding-right: 16px !important;
}
.u-pr-24{
  padding-right: 24px !important;
}
.u-pr-32{
  padding-right: 32px !important;
}
.u-pr-40{
  padding-right: 40px !important;
}
.u-pr-48{
  padding-right: 48px !important;
}
.u-pr-56{
  padding-right: 56px !important;
}
.u-pr-64{
  padding-right: 64px !important;
}

/* Bottom padding */
.u-pb-0{
  padding-bottom: 0 !important;
}
.u-pb-8{
  padding-bottom: 8px !important;
}
.u-pb-16{
  padding-bottom: 16px !important;
}
.u-pb-24{
  padding-bottom: 24px !important;
}
.u-pb-32{
  padding-bottom: 32px !important;
}
.u-pb-40{
  padding-bottom: 40px !important;
}
.u-pb-48{
  padding-bottom: 48px !important;
}
.u-pb-56{
  padding-bottom: 56px !important;
}
.u-pb-64{
  padding-bottom: 64px !important;
}

/* Left padding */
.u-pl-0{
  padding-left: 0 !important;
}
.u-pl-8{
  padding-left: 8px !important;
}
.u-pl-16{
  padding-left: 16px !important;
}
.u-pl-24{
  padding-left: 24px !important;
}
.u-pl-32{
  padding-left: 32px !important;
}
.u-pl-40{
  padding-left: 40px !important;
}
.u-pl-48{
  padding-left: 48px !important;
}
.u-pl-56{
  padding-left: 56px !important;
}
.u-pl-64{
  padding-left: 64px !important;
}

/* position - utility
--------------------------------------------------------- */
.u-pos-a{
  position: absolute !important;
}
.u-pos-r{
  position: relative !important;
}

/* text-align - utility
--------------------------------------------------------- */
.u-ta-l{
  text-align: left !important;
}
.u-ta-c{
  text-align: center !important;
}
.u-ta-r{
  text-align: right !important;
}

/* text-decoration - utility
--------------------------------------------------------- */
.u-fw-n{
  font-weight: 500 !important;
}
.u-fw-b{
  font-weight: bold !important;
}
.u-td-u{
  text-decoration: underline !important;
}

/* text-truncate - utility
--------------------------------------------------------- */
.u-tt{
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  /* for IE 8/9 */
}

/* width - utility
--------------------------------------------------------- */
.u-w-auto{
  width: auto !important;
}
.u-maw-full{
  max-width: 100% !important;
}
.u-maw-half{
  max-width: 50% !important;
}

/*可変幅*/
@media screen and (max-width: 1480px){

}
