@charset "UTF-8";



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



/* ----------------------------
	Fonts
---------------------------- */
@font-face {
	font-family: "Noto Sans Japanese";
	font-style: normal;
	font-weight: 400;
	src: url("../font/NotoSans/NotoSans-Regular.woff2") format("woff2"),
       url("../font/NotoSans/NotoSans-Regular.woff") format("woff"),
       url("../font/NotoSans/NotoSans-Regular.otf") format("truetype");
}
@font-face {
	font-family: "Noto Sans Japanese";
	font-style: normal;
	font-weight: 600;
  src: url("../font/NotoSans/NotoSans-Bold.woff2") format("woff2"),
       url("../font/NotoSans/NotoSans-Bold.woff") format("woff"),
       url("../font/NotoSans/NotoSans-Bold.otf") format("truetype");
}
@font-face {
	font-family: "Marion";
	font-style: normal;
	font-weight: 400;
  src: url("../font/Marion/Marion Regular.woff2") format("woff2"),
       url("../font/Marion/Marion Regular.woff") format("woff"),
       url("../font/Marion/Marion Regular.ttf") format("truetype");
}



/* ----------------------------
  Base
---------------------------- */
body {
  line-height: 1.642857143;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.025em;
  font-size: 14px;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #3b3b3c;
  position: relative;
}
/*
下記は下層ページ本文部分を基準
1. line-height
2. letter-spacing
3. font-size
*/

@media screen and (max-width: 812px) {
  body {
    line-height: 1.538461538;
    font-size: 13px;
  }
}


/* Anchor
---------------------------- */
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  outline: none;
}


/* Image
---------------------------- */
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}


/* Button
---------------------------- */
button {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  background: none;
  border: 0;
  box-sizing: border-box;
  letter-spacing: inherit;
  cursor: pointer;
  outline: none;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
  font: inherit;
}



/* ----------------------------
  Utilities
---------------------------- */

/* Break Line
---------------------------- */
.pc { display: block !important; }
span.pc { display: inline !important; }
.sp { display: none !important; }
span.sp { display: none !important; }
.xsp { display: none !important; }

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

@media screen and (max-width: 320px) {
  .xsp { display: block !important; }
}



/* ----------------------------
  Menu Trigger
---------------------------- */
.menu-trigger {
  padding-top: 26px;
  width: 35px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  font-family: "Marion", serif;
  font-size: 9px;
  color: #535454;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10000;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.menu-trigger:hover {
  opacity: 0.6;
}
.menu-trigger span {
  display: block;
}

@media screen and (max-width: 812px) {
  .menu-trigger {
    padding-top: 22px;
    width: 30px;
    top: 15px;
    left: 15px;
  }
  .menu-trigger img {
    width: 27px;
  }
}

/* Lines */
.menu-trigger:before,
.menu-trigger span:before,
.menu-trigger span:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #64666a;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.menu-trigger:before { top: 0; }
.menu-trigger span:before { top: 9px; }
.menu-trigger span:after { top: 18px; }

@media screen and (max-width: 812px) {
  .menu-trigger:before { top: 0; }
  .menu-trigger span:before { top: 7px; }
  .menu-trigger span:after { top: 14px; }
}



/* ----------------------------
  Base
---------------------------- */
/* body {
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
body.loaded {
  opacity: 1;
} */


/* ----------------------------
  Menu
---------------------------- */
.menu {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-pack: center; /* Less than android 4.3 */
  -webkit-justify-content: center; /* Less than iOS8 */
  justify-content: center;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  background: #7ed8d0;
  letter-spacing: 0.05em;
  font-family: "Marion", serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.menu-open .menu {
  opacity: 1;
  visibility: visible;
}
.menu-inner {
  padding-top: 70px;
  padding-bottom: 70px;
  width: 790px;
}

@media screen and (min-width: 813px) and (max-height: 735px) {
  .menu {
    display: block;
    overflow: hidden;
    overflow-y: auto;
  }
  .menu-inner {
    margin: 0 auto;
  }
}

@media screen and (max-width: 812px) {
  .menu {
    display: block;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .menu-inner {
    padding: 28px 10% 60px;
    width: 100%;
    box-sizing: border-box;
  }
}


/* Menu Head
---------------------------- */
.menu-head {
  margin-bottom: 18px;
  text-align: center;
}

@media screen and (max-width: 812px) {
  .menu-head {
    margin-bottom: 20px;
  }
  .menu-head img {
    width: 266.5px;
  }
}


/* Menu Top
---------------------------- */
.menu-top {
  margin-bottom: 26px;
  text-align: center;
}
.menu-top a {
  display: inline-block;
  vertical-align: top;
  border-bottom: 1px solid #fbffff;
  line-height: 1.2;
  font-size: 21px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.menu-top a:hover {
  color: #727279;
}

@media screen and (max-width: 812px) {
  .menu-top {
    margin-bottom: 30px;
  }
}


/* Menu List
---------------------------- */
.menu-list {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-width: 33.3333333%;
  -moz-column-width: 33.3333333%;
  column-width: 33.3333333%;
  -webkit-column-gap: 0;
  -moz-column-gap: 0;
  column-gap: 0;
  margin-bottom: 23px;
}
.menu-list li {
  margin-bottom: 13px;
}
.menu-list a,
.menu-list li > div {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.menu-list a:hover {
  color: #727279;
}

@media screen and (max-width: 812px) {
  .menu-list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-width: 100%;
    -moz-column-width: 100%;
    column-width: 100%;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    margin-bottom: 24px;
  }
  .menu-list li {
    margin-bottom: 11px;
  }
}

/* Image */
.menu-list-image {
  margin-right: 16px;
  width: 80px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.menu-list a:hover .menu-list-image {
  opacity: 0.6;
}

@media screen and (max-width: 812px) {
  .menu-list-image {
    margin-right: 35px;
    width: 71px;
  }
}

/* Body */
.menu-list-body {
  line-height: 1.25;
}
.menu-list-body em {
  display: block;
  font-size: 17px;
}
.menu-list-body span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}

@media screen and (max-width: 812px) {
  .menu-list-body em {
    font-size: 20px;
  }
  .menu-list-body span {
    margin-top: 4px;
    font-size: 13px;
  }
}


/* Menu Button
---------------------------- */
.menu-button {
  margin: 0 auto 28px;
  max-width: 350px;
  width: 100%;
}
.menu-button a {
  display: block;
  padding: 10px;
  border: 1px solid #3b3c3c;
  text-align: center;
  font-size: 18px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.menu-button a:hover {
  background: #3b3c3c;
  border: 1px solid #3b3c3c;
  color: #7ed8d0;
}

@media screen and (max-width: 812px) {
  .menu-button {
    margin-bottom: 35px;
    max-width: 300px;
  }
  .menu-button a {
    font-size: 14px;
  }
}


/* Menu SNS
---------------------------- */
.menu-sns {
  line-height: 1;
  text-align: center;
}
.menu-sns li {
  display: inline-block;
  margin: 0 22px;
  vertical-align: top;
}
.menu-sns a {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.menu-sns a:hover {
  opacity: 0.6;
}
.menu-sns svg {
  display: block;
  fill: #1B1B1B;
}
.menu .menu-sns-line {
  display: none;
}
.menu-sns-line path:last-child {
  fill: #7ed8d0;
}

@media screen and (max-width: 812px) {
  .menu .menu-sns-line {
    display: inline-block;
  }
}


/* Menu Close
---------------------------- */
.menu-close {
  padding-top: 36px;
  width: 36px;
  height: 0;
  overflow: hidden;
  position: fixed;
  top: 20px;
  left: 20px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.menu-close:hover {
  opacity: 0.6;
}
.menu-close:before,
.menu-close:after {
  content: "";
  display: block;
  width: 141.421356237%;
  height: 1px;
  background: #535353;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -70.710678118%;
}
.menu-close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width: 812px) {
  .menu-close {
    padding-top: 52px;
    width: 52px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .menu-close:before,
  .menu-close:after {
    width: 34px;
    margin-left: -17px;
  }
}



/* ----------------------------
  Footer - Foot
---------------------------- */
.footer {
  padding-top: 38px;
  padding-bottom: 24px;
}

@media screen and (max-width: 812px) {
  .footer {
    padding-bottom: 18px;
    padding: 45px 5.3333333% 18px;
  }
}


/* Foot Icons
---------------------------- */
.footer-icons {
  margin: 0 auto;
  max-width: 308px;
  width: 100%;
  line-height: 1;
}
.footer-icons ul {
  display: -webkit-box; /* Less than android 4.3 */
  display: -ms-flexbox; /* IE10 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-pack: justify; /* Less than android 4.3 */
  -webkit-justify-content: space-between; /* Less than iOS8 */
  justify-content: space-between;
}
.footer-icons li:first-child {
  padding-right: 32px;
  border-right: 1px solid #7d7d7d;
}
.footer-icons a {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.footer-icons a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 812px) {
  .footer-icons {
    max-width: 330px;
  }
  .footer-icons li:first-child {
    padding-right: 20px;
  }
  .footer-icons img {
    width: auto;
    height: 26px;
  }
  .footer-icons svg {
    width: 28px;
    height: 26px;
  }
}


/* Foot Follow
---------------------------- */
.footer-follow {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
}
.footer-follow a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 812px) {
  .footer-follow {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
  }
  .footer-follow a:hover {
    text-decoration: underline;
  }
}


/* Foot Copy
---------------------------- */
.footer-copy {
  margin-top: 10px;
  line-height: 1.3;
  text-align: center;
  font-family: "Chronicle Display Roman", serif;
  font-size: 10px;
}

@media screen and (max-width: 812px) {
  .footer-copy {
    margin-top: 16px;
  }
}



/* ----------------------------
  WWD Logo
---------------------------- */
.logo-wwd {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10000;
}
.logo-wwd a {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.logo-wwd a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 812px) {
  .logo-wwd {
    width: 46px;
    top: 15px;
    right: 15px;
  }
}



/* ----------------------------
  Slick
---------------------------- */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}



/* ----------------------------
  Loader
---------------------------- */
.loader {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-pack: center; /* Less than android 4.3 */
  -webkit-justify-content: center; /* Less than iOS8 */
  justify-content: center;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  background: #7ed8d0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20000;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.loaded .loader {
  opacity: 0;
  visibility: hidden;
}
.loader-inner {
  width: 81px;
  height: 98px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.loaded .loader-inner {
  opacity: 0;
}
.loader-inner img {
  position: absolute;
}
.loader-inner img:first-child {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-animation: footblink 1.2s infinite;
  animation: footblink 1.2s infinite;
}
.loader-inner img:last-child {
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-animation: footblink 1.2s 0.6s infinite;
  animation: footblink 1.2s 0.6s infinite;
}

@media screen and (max-width: 812px) {
  .loader-inner {
    width: 63px;
    height: 80px;
  }
  .loader-inner img:first-child {
    width: 27px;
  }
  .loader-inner img:last-child {
    width: 19.5px;
  }
}

@-webkit-keyframes footblink {
  0% { opacity: 0; }
  27% { opacity: 0; }
  28% { opacity: 1; }
  100% { opacity: 1; }
}
@keyframes footblink {
  0% { opacity: 0; }
  27% { opacity: 0; }
  28% { opacity: 1; }
  100% { opacity: 1; }
}
