/* A Modern CSS Reset */
*,*::before,*::after{box-sizing:border-box}ul[class],ol[class]{padding:0}body,h1,h2,h3,h4,p,ul[class],ol[class],figure,blockquote,dl,dd{margin:0}html{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}ul[class],ol[class]{list-style:none}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}article>*+*{margin-top:1em}button,textarea,select{font:inherit}img:not([alt]){filter:blur(10px)}@media(prefers-reduced-motion:reduce){*{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}
/* A Modern CSS Reset */

body {
  color: #231815;
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img{
  -webkit-backface-visibility: hidden;
}

a {
  text-decoration: none;
}

#wrapper {
  overflow: hidden;
}

/*============
HEADER
=============*/
#header {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 1s;
  animation: fadeIn 1s;
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  transition: 1s;
  z-index: 10;
}

@keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

.header-container {
  display: flex;
  -webkit-flex-flow: nowrap;
  -ms-flex-flow: nowrap;
  flex-flow: nowrap;
  align-items: center;
  padding-left: 5vw;
}

.site-logo {
  width: 100px;
  height: 30px;
}

.site-logo img {
  width: 100px;
  height: 30px;
}

.header-container h2 {
  color: #26386B;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 35px;
  white-space: nowrap;
  align-self: flex-end;
  font-family: serif;
  margin: 0 0 0 15px;
}

/*============
NAV
=============*/
nav {
  width: 70%;
  position: relative;
  top: 0;
  color: #4d4d4d;
  margin: 0 auto;
  font-size: 13px;
  z-index: 1000;
}

nav .nav {
  margin: 0 auto;
  padding: 0;
  display: flex;
}

.nav li {
  width: 100%;
  position: relative;
  list-style: none;
  font-size: 13px;
  letter-spacing: 1px;
}

.nav li a,
.nav li span {
  display: block;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #4d4d4d;
  cursor: pointer;
  text-decoration: none;
  padding-left: 1px;
}
.nav > li:hover > a,
.nav > li:hover > span {/*layer-1*/
  color: #343261;
  background: #c3deff;
  transition: .5s;
}
.nav li.nav-entry a {
  color: #fff;
  background-color: #12334C;
}
.nav > li li:hover > a {/*layer-2*/
  color: #343261;
  background: #c3deff;
  transition: .5s;
}
.nav li ul {
  background: none;
  transition: .5s;
}
.nav li:hover > ul {
  background: #fff;
  transition: .5s;
}
.nav li ul li {
  overflow: hidden;
  height: 0;
  width: auto;
  opacity: 0;
  transition: .5s;
  border: 0;
}
.nav li ul li a {
  border: 0;
}
.nav li:hover > ul > li {
  overflow: visible;
  height: 50px;
  opacity: 1;
  transition: .5s;
}
.fixed {
  position: fixed;
  top: 0;
}

/*============
HERO
=============*/
#section-hero {
  padding-top: 50px;
  position: relative;
  margin-bottom: 50px;
  animation: fadeIn 1s;
}

.slick-slide:focus {
  outline: 0;
}

.hero .slick-track div[aria-hidden="true"] {
  /* visibility: hidden */
}

.hero {
  position: relative;
}

.hero img {
  height: 90vh;
  width: 100%;
  object-fit: cover;
  min-width: 750px;
  margin: 0 auto;
}

.voice-1 img, .voice-2 img {
  object-position: top;
}

.commitment-1,
.commitment-2,
.commitment-3,
.about-1 {
  margin-bottom: 100px;
}

.commitment-1 img,
.commitment-2 img,
.commitment-3 img,
.about-1 img,
.about-3 img,
.about-4 img,
.about-5 img,
.recruitment-1 img,
.recruitment-2 img,
.entry-form img,
.privacy-policy img,
.site-map img {
  height: 50vh;
}

.about-5 img {
  height: 40vh;
  object-position: top;
}

.hero::after {
  content: url(../images/hero-text.svg);
  width: 30vw;
  height: auto;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  animation: fadeIn 5s;
}

.commitment-1::after {
  content: url(../images/hero-commitment-text-1.svg);
  width: 180px;
  height: auto;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  animation: fadeIn 5s;
}

.commitment-2::after {
  content: url(../images/hero-commitment-text-2.svg);
  width: 180px;
  height: auto;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  animation: fadeIn 5s;
}

.commitment-3::after {
  content: url(../images/hero-commitment-text-3.svg);
  width: 180px;
  height: auto;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  animation: fadeIn 5s;
}

.about-1::after {
  content: '会社概要';
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.6em;
  text-align: center;
  padding-left: 0.6em;
  width: 100%;
  height: auto;
  position: absolute;
  top: 52%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  animation: fadeIn 5s;
}

.about-2::after {
  content: none;
}

.about-3::after {
  content: '倉敷について';
  color: #fff;
  font-size: 35px;
  letter-spacing: 0.6em;
  text-align: center;
  padding-left: 0.6em;
  width: 100%;
  height: auto;
  position: absolute;
  top: 52%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  animation: fadeIn 5s;
}

.about-4::after {
  content: 'デニムと倉敷';
  color: #fff;
  font-size: 35px;
  letter-spacing: 0.6em;
  text-align: center;
  padding-left: 0.6em;
  width: 100%;
  height: auto;
  position: absolute;
  top: 52%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  animation: fadeIn 5s;
}

.about-5::after {
  content: 'エントリーする';
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
  border: 2px solid #fff;
  background: rgba(255,255,255,0.1);
  padding: 5px 0 5px 2px;
  width: 210px;
  height: auto;
  cursor: pointer;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  animation: fadeIn 5s;
}

.voice-1::after {
  content: url(../images/hero-voice-text-1.svg);
  width: 30vw;
  max-width: 300px;
  height: auto;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  animation: fadeIn 5s;
}

.voice-2::after {
  content: url(../images/hero-voice-text-2.svg);
  width: 30vw;
  max-width: 300px;
  height: auto;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  animation: fadeIn 5s;
}

.recruitment-1::after,
.recruitment-2::after {
  content: '募集要項';
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.6em;
  text-align: center;
  padding-left: 0.6em;
  width: 100%;
  height: auto;
  position: absolute;
  top: 52%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  animation: fadeIn 5s;
}

.entry-form::after {
  content: 'ENTRY';
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.6em;
  text-align: center;
  padding-left: 0.6em;
  width: 100%;
  height: auto;
  position: absolute;
  top: 52%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  animation: fadeIn 5s;
}

.privacy-policy::after {
  content: 'プライバシーポリシー';
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.6em;
  text-align: center;
  padding-left: 0.6em;
  width: 100%;
  height: auto;
  position: absolute;
  top: 52%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  animation: fadeIn 5s;
}

.site-map::after {
  content: 'Site Map';
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.6em;
  text-align: center;
  padding-left: 0.6em;
  width: 100%;
  height: auto;
  position: absolute;
  top: 52%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  animation: fadeIn 5s;
}

.hero-arrow {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.hero-arrow h1 {
  text-align: center;
  color: #fff;
  font-size: 10px;
  font-weight: normal;
  margin-bottom: 8px;
}

.hero-arrow img {
  display: inline;
  height: 40px;
  width: auto;
}

/*============
Main Contents
=============*/
#section-main {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 10px 0;
}

.main-top {
  padding-bottom: 50px;
  border-bottom: 2px solid #ddd;
}

.main-top img {
  width: 65px;
  height: auto;
  margin: 0 auto 50px;
}

.main-top-text {
  margin: 0 auto;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.main-top-text h1 {
  color: #12334C;
  font-size: 25px;
  font-weight: normal;
  letter-spacing: 5px;
  margin-left: 35px;
}

.main-top-text p {
  font-size: 15px;
  letter-spacing: 3px;
  margin-top: 4px;
  margin-left: 30px;
  line-height: 2.3em;
}

.main-top-text p:last-child {
  margin-left: 0;
}

/*============
Section Commitment
=============*/
#section-commitment {
}

.commitment-title {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  padding: 0 10px 0;
}

.commitment-title h1 {
  font-size: 50px;
  font-weight: normal;
  letter-spacing: 0.15em;
  margin: 80px 0 20px;
}

.commitment-title p {
  font-size: 13px;
  letter-spacing: 1.5px;
  line-height: 1.8em;
}

.commitment-content {
  padding: 40px 0;
  background: linear-gradient(180deg,#ffffff 0%,#ffffff 40%,#12334C 40%,#12334C 100%);
}

.commitment-menu {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 10px;
}

.commitment-menu a {
  width: 30%;
}

.commitment-menu a:nth-child(odd) {
  margin-bottom: 50px;
  animation: fadeIn 1s;
}

.commitment-menu a:nth-child(even) {
  margin-top: 50px;
  animation: fadeIn 1s;
}

.commitment-menu a img {
  width: 100%;
  height: auto;
  transition: .5s;
}

.commitment-menu a img:hover {
  transform: translateY(-10px);
  transition: .5s;
}

/*============
Section Special
=============*/
#section-special {
  width: 100%;
  padding: 60px 0;
}

#section-special h1 {
  text-align: center;
  letter-spacing: 3px;
  margin-right: -3px;
  margin-bottom: 60px;
  font-size: 30px;
  font-weight: normal;
}

.special-wrap {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.special-container-1,
.special-container-2 {
  display: flex;
  align-items: center;
  margin: 0 auto 80px;
  width: 100%;
}

.special-container-2 {
  flex-flow: row-reverse;
}

.special-container-1 img,
.special-container-2 img {
  width: 85%;
  height: auto;
}

.special-content {
  background: #fff;
  width: 240px;
  padding: 15px 18px;
  box-shadow: 0px 0px 8px 3px rgb(100 100 100 / 0.2);
  position: relative;
}

.special-container-1 .special-content {
  margin-left: -150px;
  transition: .5s;
}
.special-container-1 .special-content:hover {
  transform: translateX(-10px);
  transition: .5s;
}

.special-container-2 .special-content {
  margin-right: -150px;
  transition: .5s;
}
.special-container-2 .special-content:hover {
  transform: translateX(10px);
  transition: .5s;
}

.special-content h2 {
  display: inline-block;
  width: 100%;
  position: relative;
  color: #231815;
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 3px;
  padding-bottom: 12px;
}

.special-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid #231815;
}

.special-content h3 {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 2px;
  padding-top: 13px;
  line-height: 1.8em;
  color: #666;
  margin-bottom: 10px;
}

.special-content h4 {
  display: block;
  width: 60%;
  margin: 0 auto 5px;
  position: relative;
  color: #fff;
  background: #12334C;
  text-align: center;
  font-size: 11px;
  font-weight: normal;
  letter-spacing: 2px;
  padding: 5px 10px;
}

/*============
Section Interview
=============*/
#section-interview {
  width: 100%;
  background: linear-gradient(-90deg,#ffffff 0%,#ffffff 50%,#E2E9F0 50%,#E2E9F0 100%);
}

.interview-wrap {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 30px 0 70px;
  background: linear-gradient(-90deg,#ffffff 0%,#ffffff 15%,#E2E9F0 15%,#E2E9F0 100%);
}

.interview-wrap h1 {
  color: #231815;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 0 10px;
  font-size: 50px;
  font-weight: normal;
  letter-spacing: 0.2em;
}

.interview-wrap h2 {
  color: #666;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.8em;
  letter-spacing: 1px;
}

.interview-container {
  display: flex;
}

.interview-content {
  width: calc(100%/3);
  display: flex;
  flex-flow: column;
  align-items: center;
}

.interview-content img {
  width: 100%;
  height: auto;
}

.interview-content a {
  color: #4d4d4d;
  transition: .5s;
}

.interview-content a:hover {
  transform: translateY(-10px);
  transition: .5s;
}

.interview-card {
  background: #fff;
  width: 280px;
  padding: 20px;
  box-shadow: 0px 0px 8px 3px rgb(100 100 100 / 20%);
  position: relative;
  margin-top: -66px;
}

.card-1.interview-card::before {
  content: "";
  border-color: #fff #12334C #12334C #fff;
  border-style: solid;
  border-width: 0px 0 20px 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.card-2.interview-card::before {
  content: "";
  border-color: #fff #DB5358 #DB5358 #fff;
  border-style: solid;
  border-width: 0px 0 20px 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.card-3.interview-card::before {
  content: "";
  border-color: #fff #007A82 #007A82 #fff;
  border-style: solid;
  border-width: 0px 0 20px 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.interview-card::after {
  content: '';
  border: 1px solid #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -10px;
  left: 10px;
}

.interview-card h3 {
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 2px;
  color: #666;
}

.interview-card h4 {
  font-size: 25px;
  font-weight: normal;
  letter-spacing: 6px;
  margin: 10px 0;
  line-height: 1;
  padding: 0;
}

.interview-card h5 {
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 3px;
  margin: 0;
}

.card-1.interview-card h5 { color: #12334C; }
.card-2.interview-card h5 { color: #a7191e; }

.interview-card h6 {
  color: #007A82;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 3px;
  line-height: 1;
  margin: 0 0 10px;
  text-align: center;
}

.interview-card p {
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
}

@media screen and (min-width:768px) and ( max-width:1024px) {
  .interview-card {
    width: 230px;
  }
  .interview-card p {
    font-size: 12px;
    letter-spacing: 1px;
    text-align: center;
  }
}

/*============
Section Recruit
=============*/
#section-recruit {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 10px 150px;
}

.recruit-wrap h1 {
  color: #231815;
  font-size: 50px;
  font-weight: normal;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  padding: 0 10px;
}

.recruit-wrap h2 {
  color: #666;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.8em;
  letter-spacing: 1px;
  margin-bottom: 40px;
  padding: 0 10px;
}

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

.recruit-content .recruit-1,
.recruit-content .recruit-2 {
  width: 48%;
  height: 250px;
  background-size: cover;
  position: relative;
}

.recruit-content h3 {
  color: #231815;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 5px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  position: absolute;
  padding: 8px 25px;
  top: 52%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}

.recruit-content h4 {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  font-size: 10px;
  font-weight: normal;
  font-family: Roboto,-apple-system,BlinkMacSystemFont,'Helvetica Neue',Helvetica,Arial,Verdana,'Noto Sans Japanese','游ゴシック','Yu Gothic','游ゴシック体',YuGothic,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Meiryo UI','メイリオ',Meiryo,sans-serif;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}

.recruit-content .recruit-1 {
  background-image: url(../images/recruit-1.jpg);
}

.recruit-content .recruit-2 {
  background-image: url(../images/recruit-2.jpg);
}

/*============
COMMITMENT PAGE
=============*/
#commitment-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 10px 100px;
}

#commitment-wrap .commitment-left {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 80px;
}

.commitment-left div,
.commitment-right div {
  width: 45%;
}

.commitment-left h1,
.commitment-right h1 {
  color: #12334C;
  font-size: 25px;
  font-weight: normal;
  letter-spacing: 5px;
  line-height: 2.5em;
  position: relative;
}

.commitment-left:nth-child(1) h1:after {
  content: '01';
  color: #E6E6E6;
  position: absolute;
  top: -10px;
  right: 0px;
  font-size: 85px;
  z-index: -1;
}

.commitment-right:nth-child(2) h1:after {
  content: '02';
  color: #E6E6E6;
  position: absolute;
  top: -10px;
  right: 0px;
  font-size: 85px;
  z-index: -1;
}

.commitment-left:nth-child(3) h1:after {
  content: '03';
  color: #E6E6E6;
  position: absolute;
  top: -10px;
  right: 0px;
  font-size: 85px;
  z-index: -1;
}

.commitment-left h2,
.commitment-right h2 {
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.15em;
  line-height: 1.8em;
}

.commitment-img {
  padding-top: 25px;
}

#commitment-2 #commitment-wrap .commitment-left:nth-child(1) .commitment-img {
  width: 260px;
  margin: 0 auto;
}

.commitment-img img {
  width: 100%;
  height: auto;
  align-self: baseline;
}

#commitment-wrap .commitment-right {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 80px;
}

#commitment-wrap .commitment-right img {
  width: 100%;
  height: auto;
}

.commitment-right div img:first-child {
  margin-bottom: 20px;
}

.commitment-banner h1 {
  text-align: center;
  font-size: 35px;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  margin-bottom: 50px;
}

.banner-wrap {
  width: 100%;
  max-width: 900px;
  display: flex;
}

.banner-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 10px;
}

.banner-wrap a {
  width: 43%;
  animation: fadeIn 1s;
}

.banner-wrap a:after {
  content: '詳しく見る';
  color: #fff;
  background: #12334C;
  padding: 5px 18px 5px 20px;
  margin: 30px auto;
  display: block;
  width: 110px;
  font-size: 11px;
  font-family: sans-serif;
  text-align: center;
  letter-spacing: 2px;
}

.banner-wrap a img {
  width: 100%;
  height: auto;
  transition: .5s;
}

.banner-wrap a img:hover {
  transform: translateY(-10px);
  transition: .5s;
}

/*============
ABOUT PAGE
=============*/
#section-profile {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 10px;
}

#section-profile h1 {
  text-align: center;
  font-size: 35px;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  line-height: 1.5em;
}

#section-profile h2 {
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.8em;
  margin-right: -0.8em;
  margin-bottom: 50px;
}

.profile-content {
  display: flex;
  padding: 20px;
  border-top: 1px solid #999999;
}

.profile-content:last-child {
  border-bottom: 1px solid #999999;
  margin-bottom: 60px;
}

.profile-content h3 {
  width: 150px;
  color: #666;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.8em;
  white-space: nowrap;
  overflow: hidden;
}

.profile-content h4 {
  color: #231815;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.8em;
}

.profile-content h4 a {
  color: #0d80a0;
}

.text-2 {
  letter-spacing: 5em;
}
.text-3 {
  letter-spacing: 2em;
}
.text-4 {
  letter-spacing: 1em;
}
.text-5 {
  letter-spacing: 0.5em;
}
.text-6 {
  letter-spacing: 0.2em;
}

#section-map {
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
}

#section-map h1 {
  text-align: center;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 1em;
  margin-right: -1em;
  margin-bottom: 20px;
  line-height: 1.5em;
}

#section-map h2 {
  text-align: center;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  margin-bottom: 20px;
  line-height: 1.5em;
}

#section-map img {
  filter: blur(3px);
  margin-bottom: 50px;
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.googlemap-img-1,
.googlemap-img-2 {
  position: relative;
}

p.map-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 200px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  letter-spacing: 5px;
  display: inline-block;
  color: #666;
  border: 2px solid #999;
  border-radius: 5px;
  background: rgba(200,200,200,0.4);
  cursor: pointer;
}

p.map-btn:hover {
  color: #fff;
  border: 2px solid #666;
  background: rgba(70,70,70,0.4);
  transition: .5s;
}

p.map-btn span {
  margin-right: -5px;
}

#section-map iframe {
  margin-bottom: 50px;
}

#section-access {
  width: 100%;
  max-width: 750px;
  margin: 0 auto 50px;
}

#section-access h1 {
  text-align: center;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  margin-bottom: 20px;
  line-height: 1.5em;
}

.access-content {
  padding: 20px;
  border-top: 1px solid #999999;
}

.access-content:last-child {
  border-bottom: 1px solid #999999;
}

.access-content h2 {
  font-size: 17px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
}

.access-content h3 {
  color: #666666;
  font-size: 15px;
  font-weight: normal;
  text-align: center;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
}

.access-content h4 {
  color: #666666;
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  margin-top: 20px;
}

#section-history {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 10px 100px;
}

#section-history h1 {
  text-align: center;
  font-size: 35px;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  line-height: 1.5em;
}

#section-history h2 {
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.8em;
  margin-right: -0.8em;
  margin-bottom: 50px;
}

.timeline-content {
  border-left: 1px #231815 solid;
  padding-left: 10px;
  padding-bottom: 20px;
  margin-left: 20px;
}
.timeline-content h3 {
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 20px;
}
.timeline-content h4 {
  font-size: 15px;
  margin: -10px 0 10px 0;
}
.timeline-content p {
  padding-bottom: 20px;
  font-size: 13px;
}

/* for Desktop */
@media ( min-width : 767px ){
  .timeline > li {
    overflow: hidden;
    margin: 0;
    position: relative;
  }
  .timeline-date {
    width: 85px;
    float: left;
    font-size: 20px;
    line-height: 60px;
  }
  .timeline-content {
    width: 88%;
    float: left;
    border-left: 1px #231815 solid;
    padding-left: 30px;
    padding-bottom: 0;
    margin-left: 0;
  }
  .timeline li:first-child .timeline-content {
    border-left: 1px #231815 solid;
    border-image: linear-gradient(to bottom, #fff 18%, #231815 18%);
    border-image-slice: 1;
  }
  .timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #C69C6D;
    position: absolute;
    left: 79px;
    top: 24px;
    border-radius: 100%;
  }
  .timeline-content h3 {
    line-height: 60px;
    font-weight: normal;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 20px;
  }
  .timeline-content h4 {
    font-size: 20px;
    font-weight: normal;
  }
  .timeline-content p {
    font-size: 15px;
    padding-bottom: 20px;
    color: #666666;
  }
}

#b-league {
  padding: 50px 0 100px;
}

.b-league-container {
  width: 100%;
  text-align: center;
  background: center center no-repeat url(../images/b-league-1.jpg);
  background-size: cover;
  padding: 50px 0 30px;
  margin-bottom: 50px;
}

.b-league-container img {
  width: 40vw;
  min-width: 500px;
  height: auto;
  margin: 0 auto 30px;
  animation: fadeIn 3s;
}

.b-league-container h1 {
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.3em;
  margin-right: -0.3em;
  line-height: 2em;
  animation: fadeIn 3s;
}

.b-league-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.b-league-content h1 {
  color: #12334C;
  line-height: 2em;
  font-size: 25px;
  font-weight: normal;
  letter-spacing: 0.3em;
  margin-right: -0.3em;
  margin-bottom: 50px;
}

.b-league-content h2 {
  color: #12334C;
  line-height: 1.2em;
  font-size: 70px;
  font-weight: normal;
  letter-spacing: 0.3em;
  margin-right: -0.3em;
  margin-bottom: 50px;
}

.b-league-content p {
  font-size: 15px;
  line-height: 2.2em;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  margin-bottom: 30px;
}

.b-league-content p:last-child {
  margin-bottom: 0;
}

.b-league-content img {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}

/*============
GREETINGS PAGE
=============*/
#section-greetings {
  padding-top: 50px;
  position: relative;
  animation: fadeIn 1s;
}

.about-2 {
  height: auto;
  width: 100%;
  background: #e7e6d2;
  overflow: hidden;
}

.about-2 img {
  width: 100%;
  height: auto;
  max-height: calc(100vh * 0.95);
  object-fit: contain;
  object-position: top;
}

.about-2 picture:nth-child(1) {
  position: relative;
}

.about-2 picture:nth-child(2) {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: fadeIn 4s;
}

#section-greetings-profile {
  width: 100%;
  padding: 50px 10px;
  background: center center no-repeat url(../images/greetings-1.jpg);
  background-size: cover;
}

.greetings-container {
  text-align: center;
}

.greetings-container h1 {
  font-size: 35px;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  margin-bottom: 20px;
}

.greetings-container h2 {
  font-size: 25px;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
}

.greetings-container h3 {
  font-size: 17px;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  margin-bottom: 20px;
}

.greetings-container h4 {
  font-size: 15px;
  font-weight: normal;
  line-height: 2.2em;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
}

.vision-container-1 {
  background: linear-gradient(90deg,#ffffff 0%,#ffffff 20%,#E2E9F0 20%,#E2E9F0 100%);
}

.vision-container-2 {
  background: linear-gradient(270deg,#ffffff 0%,#ffffff 20%,#E2E9F0 20%,#E2E9F0 100%);
}

.vision-content-1,
.vision-content-2 {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto 70px;
  padding: 80px 10px;
  display: flex;
  justify-content: space-between;
}

.vision-content-1 div:first-child,
.vision-content-2 div:last-child {
  width: 35%;
}

.vision-content-1 div:last-child,
.vision-content-2 div:first-child {
  width: 60%;
}

.vision-content-1 img {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 35vw;
  max-width: 360px;
  height: auto;
}

.vision-content-2 img {
  position: absolute;
  top: -30px;
  right: 0;
  width: 35vw;
  max-width: 360px;
  height: auto;
}

.vision-content-1 h1,
.vision-content-2 h1 {
  padding-left: 50px;
  font-size: 60px;
  font-weight: normal;
  letter-spacing: 0.2em;
  margin-bottom: 50px;
}

.vision-content-1 p,
.vision-content-2 p {
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 2.2em;
}

.vision-content-1 p {
  padding-right: 50px;
}

.vision-content-2 p {
  padding-left: 50px;
}

#greetings-entry {
  padding-bottom: 100px;
}

#greetings-entry h1 {
  font-size: 25px;
  font-weight: normal;
  text-align: center;
  line-height: 2em;
  letter-spacing: 0.2em;
  margin-right: -0.2em;
  margin-bottom: 40px;
}

/*============
KURASHIKI PAGE
=============*/
#section-kurashiki {
  padding: 50px 10px 70px;
}

.kurashiki-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.kurashiki-content {
  width: 45%;
}

.kurashiki-content img {
  width: 100%;
  height: auto;
}

.kurashiki-content h1 {
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 0.2em;
  padding-bottom: 10px;
  border-bottom: 1px solid #999;
}

.kurashiki-list {
  display: flex;
  border-bottom: 1px solid #999;
  padding: 10px 5px;
}

.kurashiki-list p {
  font-size: 20px;
  letter-spacing: 0.2em;
}

.kurashiki-list p:first-child {
  width: 100px;
}

#section-aesthetic {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 10px 50px;
  text-align: center;
}

#section-aesthetic h1 {
  font-size: 40px;
  font-weight: normal;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}

#section-aesthetic h2 {
  font-size: 17px;
  font-weight: normal;
  line-height: 2.5em;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}

.aesthetic-wrap {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

.aesthetic-wrap div {
  width: 47%;
  margin-bottom: 40px;
}

.aesthetic-wrap div img {
  width: 100%;
  height: auto;
}

.aesthetic-wrap div p {
  text-align: left;
  font-size: 15px;
  margin-top: 10px;
}

.denim-container {
  background: #12334C;
  color: #fff;
  position: relative;
  padding: 60px 0 0;
}

.denim-container::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 30px solid #12334C;
  position: absolute;
  bottom: -30px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.denim-content {
  display: flex;
  justify-content: space-between;
  padding: 0 10px 90px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.denim-content div:first-child {
  width: 59%;
}

.denim-content div:last-child {
  width: 38%;
}

.denim-content h1 {
  font-size: 35px;
  font-weight: normal;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}

.denim-content h2 {
  font-size: 16px;
  font-weight: normal;
  line-height: 2.5em;
}

.denim-content img {
  width: 100%;
  height: auto;
}

.denim-secondary {
  margin: 70px 0 40px;
}

.denim-secondary h1 {
  font-size: 35px;
  font-weight: normal;
  text-align: center;
  line-height: 1.8em;
  letter-spacing: 0.2em;
  margin-right: -0.2em;
  margin-bottom: 30px;
}

.denim-secondary h2 {
  font-size: 20px;
  font-weight: normal;
  text-align: center;
  line-height: 2em;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
}

.denim-commitment {
  width: 100%;
  max-width: 900px;
  padding: 80px 10px 100px;
  margin: 0 auto;
}

.denim-commitment h1 {
  font-size: 35px;
  font-weight: normal;
  letter-spacing: 0.2em;
  margin-right: -0.2em;
  text-align: center;
  margin-bottom: 60px;
}

.denim-commitment .commitment-menu a:nth-child(odd),
.denim-commitment .commitment-menu a:nth-child(even) {
  margin: 0;
}

/*============
VOICE PAGE
=============*/
#section-voice-1 {
  padding: 80px 0 100px;
}

.voice-container {
  text-align: center;
  margin-bottom: 70px;
}

.voice-container h1 {
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 0.4em;
  margin-right: -0.4em;
  margin-bottom: 10px;
}

.voice-container h2 {
  color: #C69C6D;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0.4em;
  margin-right: -0.4em;
  margin-bottom: 20px;
}

.voice-container div {
  margin-right: -0.4em;
}

.voice-container p {
  font-size: 25px;
  font-weight: normal;
  line-height: 2em;
  display: block;
  width: 210px;
  white-space: nowrap;
  border-bottom: 1px solid #999;
  letter-spacing: 0.4em;
  padding-left: 0.4em;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
}

.voice-content {
  margin-bottom: 100px;
}

.voice-content:last-child {
  margin-bottom: 0;
}

.voice-q {
  background: linear-gradient(180deg,#ffffff 0%,#ffffff 55%,#E2E9F0 55%,#E2E9F0 100%);
}

.voice-q h1 {
  width: 100%;
  max-width: 900px;
  padding: 0 10px;
  margin: 0 auto 35px;
  letter-spacing: 0.2em;
  font-size: 25px;
  font-weight: normal;
  line-height: 1.3em;
}

.voice-a {
    background: linear-gradient(180deg,#ffffff 0%,#ffffff 55%,#EAEDAC 55%,#EAEDAC 100%);
}

.voice-a h2 {
  width: 100%;
  max-width: 900px;
  padding: 0 10px;
  margin: 0 auto 50px;
  letter-spacing: 0.2em;
  text-align: right;
  font-size: 25px;
  font-weight: normal;
  line-height: 1.3em;
}

.voice-content img {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto 40px;
}

.voice-content h3 {
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  line-height: 2.3em;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
}

#voice-bottom {
  margin-bottom: 100px;
}

#voice-bottom h1 {
  font-size: 35px;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  margin-bottom: 50px;
}

#voice-bottom .banner-wrap a {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.voice-dialogue #voice-bottom .banner-wrap a {
  width: 43%;
}

#coming-soon {
  padding: 35vh 0;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.2em;
}

#coming-soon h1 {
  font-size: 30px;
  font-weight: normal;
  margin-right: -0.2em;
}

@media screen and (min-width:768px) and ( max-width:1024px) {
  .voice-content h3 {
    font-size: 12px;
  }
}

/*============
Recruitment PAGE
=============*/
#section-recruitment {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 10px;
}

#section-recruitment h1 {
  text-align: center;
  font-size: 35px;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  line-height: 1.5em;
}

#section-recruitment h2 {
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.8em;
  margin-right: -0.8em;
  margin-bottom: 50px;
}

.recruitment-content {
  display: flex;
  padding: 20px;
  border-top: 1px solid #999999;
}

.recruitment-content:last-child {
  border-bottom: 1px solid #999999;
  margin-bottom: 60px;
}

.recruitment-content h3 {
  width: 150px;
  color: #666;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.8em;
  white-space: nowrap;
  overflow: hidden;
}

.recruitment-content h4 {
  color: #231815;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.8em;
}

@media screen and ( min-width: 768px ) {
  .recruitment-content h4 {
    max-width: 540px;
  }
}

.recruitment-content h4 a {
  color: #21B8E2;
}

#recruitment-entry {
  padding-bottom: 100px;
}

#recruitment-entry h1 {
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 2px;
  text-align: center;
  background: #12334C;
  margin: 0 auto;
  padding: 5px 0 5px 2px;
  width: 210px;
  height: auto;
  cursor: pointer;
  animation: fadeIn 3s;
  transition: .5s;
}

#recruitment-entry h1:hover {
  background: #6d97c1;
  transform: translateY(-10px);
  transition: .5s;
}

#recruitment-entry h1 a {
  color: #fff;
  display: block;
}

/*============
SITEMAP PAGE
=============*/
#section-sitemap {
  padding: 0 20px;
}

#section-sitemap h1 {
  text-align: center;
  font-size: 35px;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  line-height: 1.5em;
}

#section-sitemap h2 {
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.8em;
  margin-right: -0.8em;
  margin-bottom: 50px;
}

.sitemap-wrap {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 70px;
}

.sitemap-container {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

.sitemap-contents {
  border: 2px solid #ccc;
  border-radius: 5px;
  padding: 10px 20px;
  margin-bottom: 30px;
  box-shadow: 3px 3px 5px 0px #ccc;
  background: #fff;
  line-height: 1.5em;
  width: 32%;
}

.sitemap-contents h3 {
  font-size: 15px;
}

.sitemap-contents a {
  color: #21B8E2;
}

.sitemap-contents ul {
  margin-top: 5px;
}

.sitemap-contents ul li {
  font-size: 13px;
}

/*============
PRIVACY POLICY
=============*/
#section-policy {
  text-align: center;
  padding: 30px 0 100px;
}

#section-policy h1 {
  text-align: center;
  font-size: 35px;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  line-height: 1.5em;
}

#section-policy h2 {
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.8em;
  margin-right: -0.8em;
  margin-bottom: 50px;
}

#section-policy h3 {
  margin: 0 auto 50px;
  width: 100px;
}

#section-policy h3 img {
  width: 100%;
  height: auto;
}

.policy-container {
  max-width: 900px;
  width: 95%;
  margin: 0 auto;
  text-align: left;
  letter-spacing: 2px;
  line-height: 1.8em;
}

.policy-container h4 {
  font-size: 15px;
  font-weight: normal;
}

.policy-container h5 {
  font-size: 20px;
  font-weight: normal;
  border-top: 2px solid #3e3a39;
  margin: 0;
  padding: 30px 0;
  margin-top: 70px;
}

.policy-container p {
  font-size: 15px;
  margin-left: 30px;
}

.policy-container .policy-sub li {
  font-size: 15px;
  padding-left: 1em;
  text-indent: -1.1em;
  margin: 10px 0 0 0;
}

.policy-container .policy-sub li a {
  color: #21B8E2;
  letter-spacing: 0.1em;
}

.policy-container .policy-sub li a:hover {
  color: #3636d4;
}

.policy-container .policy-sub {
  margin: 20px 0 20px 50px;
}

.policy-container p a {
  color: #21B8E2;
}

.policy-container p a:hover {
  color: #3636d4;
}

/*============
Entry Page
=============*/
#sf-form-page h2 {
  text-align: center;
  font-size: 35px;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  line-height: 1.5em;
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

/*============
FOOTER
=============*/
footer {
  background: #12334C;
}

footer h1 {
  color: #fff;
}

footer h1 img {
  width: 150px;
  height: 80px;
}

.footer-container {
  display: flex;
  max-width: 900px;
  padding: 20px 10px 0;
  justify-content: space-between;
  margin: 0 auto;
}

.footer-content h3 a, .footer-content h4 a {
  color: #fff;
}

.footer-menu-list {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-end;
  color: #fff;
}

.footer-menu-list div {
  width: 15%;
  max-width: 120px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-left: 1.4vw;
  margin-bottom: 10px;
}

.footer-menu-list h2 {
  font-size: 13px;
  border-bottom: 1px solid #fff;
  line-height: 2.5em;
}

.footer-menu-list h2 a {
  color: #fff;
  line-height: 2.5em;
  display: block;
}

.footer-menu {
  flex: auto;
}

.footer-menu ul {
  margin: 5px 0;
}

.footer-menu ul li {
  font-size: 12px;
  line-height: 1.8em;
}

.footer-menu ul li a {
  letter-spacing: 2px;
  line-height: 1.8em;
  color: #fff;
  display: block;
}

.footer-menu-list h2 a:hover,
.footer-menu ul li a:hover,
.footer-menu-bottom a:hover,
.footer-bottom h1 a:hover,
.footer-bottom h2 a:hover {
  color: #6edef9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 0;
  padding: 20px 10px;
  align-items: flex-end;
}

.footer-bottom h1,
.footer-bottom h2 {
  color: #fff;
  font-size: 13px;
  font-weight: normal;
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  letter-spacing: 1px;
  margin-top: 5px;
}

.footer-bottom h2 {
  font-size: 15px;
  letter-spacing: 1.4px;
}

.footer-bottom h2 span {
  margin-left: 20px;
}

.footer-bottom h1 a,
.footer-bottom h2 a {
  color: #fff;
}

.footer-menu-bottom {
  text-align: left;
  padding-left: 10px;
  letter-spacing: 1px;
  font-size: 13px;
}

.footer-menu-bottom a {
  color: #fff;
  margin-right: 20px;
}

.footer-menu-bottom a:last-child {
  margin-right: 0;
}

#copyright {
  display: block;
  background: #4D4D4D;
  line-height: 2.5em;
  letter-spacing: 2px;
  font-size: 12px;
  margin-right: -2px;
  text-align: center;
  font-family: Roboto,-apple-system,BlinkMacSystemFont,'Helvetica Neue',Helvetica,Arial,Verdana,'Noto Sans Japanese','游ゴシック','Yu Gothic','游ゴシック体',YuGothic,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Meiryo UI','メイリオ',Meiryo,sans-serif;
}

#copyright a {
  color: #fff;
}

.entry-btn {
  display: none;
}

@media screen and ( min-width: 768px ) {
  footer .footer-bottom h1 span {
    margin-right: 10px;
  }
}

/*============
Responsive MIN
=============*/
@media screen and ( min-width: 768px ) {
  .hamburger-menu {
    display: none;
  }
  .sp-br {
    display: none;
  }
}

@media screen and ( max-width: 767px ) {
  /*============
  Header
  =============*/
  .header-container {
    padding: 10px 0 10px 20px;
    flex-flow: nowrap;
  }
  .header-container .header-logo {
    display: flex;
    justify-content: flex-start;
  }
  .site-logo {
    width: auto;
    height: 30px;
  }
  .site-logo img {
    margin: 0 10px 0 0;
  }
  .hero::after {
    width: 50vw;
    max-width: 320px;
  }
  .commitment-1::after,
  .commitment-2::after,
  .commitment-3::after {
    width: 150px;
  }
  .about-1::after,
  .about-3::after,
  .about-4::after,
  .recruitment-1::after,
  .recruitment-2::after {
    width: 100%;
    font-size: 30px;
  }
  .about-5::after {
    width: 100%;
  }
  .entry-form::after,
  .privacy-policy::after,
  .site-map::after {
    width: 100%;
  }
  .hero img {
    height: 50vh;
    min-width: unset;
    object-fit: cover;
  }
  .header-container h2 {
    font-size: 11px;
    letter-spacing: 2px;
    line-height: 1.2em;
    margin: 0;
  }
  .header-container h3 {
    font-size: 12px;
    letter-spacing: 0px;
  }
  .header-content {
    align-items: flex-end;
  }
  /*============
  nav
  =============*/
  nav {
    display: none;
  }
  #nav-toggle {
  position: fixed;
  top: 11px;
  right: 25px;
  height: 32px;
  cursor: pointer;
  }
  #nav-toggle > div {
    position: relative;
    width: 36px;
  }
  #nav-toggle span {
    width: 100%;
    height: 3px;
    border-radius: 3px;
    opacity: 1;
    display: block;
    background: #12334C;
    position: absolute;
    transition: transform 0.5s ease-in-out, top 0.5s ease, opacity 0.5s ease;
  }
  #nav-toggle span:nth-child(1) {
    top: 5px;
  }
  #nav-toggle span:nth-child(2) {
    top: 14px;
  }
  #nav-toggle span:nth-child(3) {
    top: 23px;
  }
  #nav-toggle:hover span:nth-child(1) {
    top: 5px;
  }
  #nav-toggle:hover span:nth-child(3) {
    top: 23px;
  }
  .open #nav-toggle span {
    background: #fff;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 14px;
    transform: rotate(225deg);
  }
  .open #nav-toggle span:nth-child(2) {
    top: 14px;
    opacity: 0;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 14px;
    transform: rotate(-225deg);
  }

  /* z-index */
  #nav-toggle {
    z-index: 1000;
  }

  #container {
    z-index: 900;
  }

  #gloval-nav {
    background: #05141f;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    text-align: center;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 29px;
    opacity: 0;
    overflow-y: scroll;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }

  #gloval-nav a,
  #gloval-nav span {
    margin-right: -10px;
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.6s ease;
  }
  #gloval-nav a:hover {
    color: #666;
  }
  #gloval-nav ul {
    list-style: none;
    letter-spacing: 5px;
    font-size: 13px;
  }
  #gloval-nav ul li {
    opacity: 0;
    transform: translateX(200px);
    transition: transform 0.6s ease, opacity 0.2s ease;
  }
  #gloval-nav .acc-wrap .acc-btn:nth-child(2) {
    transition-delay: 0.1s;
  }
  #gloval-nav .acc-wrap .acc-btn:nth-child(4) {
    transition-delay: 0.15s;
  }
  #gloval-nav .acc-wrap .acc-btn:nth-child(6) {
    transition-delay: 0.25s;
  }
  #gloval-nav .acc-wrap .acc-btn:nth-child(8) {
    transition-delay: 0.3s;
  }
  #gloval-nav .acc-wrap .acc-btn:nth-child(10) {
    transition-delay: 0.35s;
  }

  .acc-container {
    width:90%;
    margin:30px auto 0 auto;
    -webkit-border-radius:8px;
    -moz-border-radius:8px;
    -o-border-radius:8px;
    border-radius:8px;
  }

  .acc-btn {
    width:100%;
    margin:0 auto;
    cursor:pointer;
  }

  .acc-content {
    width: 100%;
    margin: 0 auto;
    display: none;
    background: linear-gradient(90deg,rgba(44,62,80,0) 0%,rgba(44,62,80,0.6) 50%,rgba(44,62,80,0) 100%);
    padding: 30px;
    height: auto;
  }

  /* open */
  .open {
    overflow: hidden;
  }
  .open #gloval-nav {
    visibility: visible;
    opacity: 1;
    transition: 0.6s;
  }
  .open #gloval-nav li {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease, opacity 0.9s ease;
    border-bottom: 1px solid rgba(44,62,80,0.4);
  }

  /*============
  Main Contents
  =============*/
  .main-top img {
    margin-bottom: 35px;
  }
  .main-top-text {
    writing-mode: unset;
    text-align: center;
  }
  .main-top-text h1 {
    margin: 0 0 15px;
  }
  .main-top-text p {
    font-size: 12px;
    letter-spacing: 0px;
    margin: 0 0 30px;
  }
  .commitment-title h1 {
    font-size: 8vw;
    letter-spacing: 0.1em;
    margin: 30px 0 15px;
  }
  .commitment-title p {
    font-size: 12px;
  }

  /*============
  Special Contents
  =============*/
  #section-special {
    padding-bottom: 20px;
  }
  #section-special h1 {
    margin-bottom: 30px;
    font-size: 25px;
  }
  .special-container-1, .special-container-2 {
    flex-flow: column;
    margin-bottom: 30px;
  }
  .special-container-1 img, .special-container-2 img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
    object-position: 58% center;
  }
  .special-container-2 img {
    object-position: 58% center;
  }
  .special-container-1 .special-content {
    margin-left: 0;
    margin-top: -30px;
    transition: .5s;
  }
  .special-container-2 .special-content {
    margin-right: 0;
    margin-top: -30px;
    transition: .5s;
  }
  .special-container-1 .special-content:hover {
    transform: translateY(-10px);
    transition: .5s;
  }
  .special-container-2 .special-content:hover {
    transform: translateY(-10px);
    transition: .5s;
  }
  /*============
  Interview
  =============*/
  #section-interview {
    background: #E2E9F0;
  }
  .interview-wrap {
    background: none;
    padding-bottom: 40px;
  }
  .interview-wrap h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .interview-container {
    flex-flow: column;
  }
  .interview-content {
    width: 100%;
    margin-bottom: 30px;
  }
  .interview-content img {
    width: 100%;
    height: auto;
    max-width: 425px;
  }
  .interview-card {
    margin-top: -40px;
  }

  /*============
  Recruit
  =============*/
  #section-recruit {
    padding: 30px 10px;
  }
  .recruit-wrap h1 {
    font-size: 30px;
  }
  .recruit-wrap h2 {
    font-size: 12px;
    margin-bottom: 25px;
  }
  .recruit-content h3 {
    font-size: 13px;
  }
  .recruit-content {
    flex-flow: column;
  }
  .recruit-content .recruit-1, .recruit-content .recruit-2 {
    width: 100%;
    height: 200px;
  }
  .recruit-content .recruit-1 {
    margin-bottom: 20px;
  }

  /*============
  Commitment Page
  =============*/
  #commitment-wrap .commitment-left,
  #commitment-wrap .commitment-right {
    flex-direction: column;
  }
  .commitment-left div,
  .commitment-right div {
    width: 100%;
  }
  .commitment-left h1,
  .commitment-right h1 {
    font-size: 23px;
  }
  .commitment-left h2,
  .commitment-right h2 {
    font-size: 13px;
  }
  .banner-wrap {
    padding: 0;
    flex-direction: column;
  }
  .banner-wrap a {
    width: 100%;
    margin-bottom: 40px;
  }
  .banner-wrap a:after {
    margin: 20px auto 0;
  }

  /*============
  Commitment Page
  =============*/
  .profile-content {
    flex-flow: column;
    padding: 20px 10px;
  }
  .profile-content h3 {
    margin-bottom: 20px;
  }
  .text-2,.text-3,.text-4,.text-5,.text-6 {
    letter-spacing: 0.5em;
  }

  /*============
  About Page
  =============*/
  .access-content h2 {
    font-size: 15px;
  }
  .access-content h3 {
    font-size: 13px;
  }
  .about-2 {
    background: #fff;
  }
  .about-2 img {
    width: 100%;
    height: auto;
    max-height: unset;
  }
  #section-history {
    padding-bottom: 0;
  }
  .b-league-container img {
    min-width: 410px;
  }
  .b-league-container h1 {
    font-size: 14px;
  }
  .b-league-content h1 {
    font-size: 17px;
  }
  .b-league-content h2 {
    font-size: 40px;
  }
  .b-league-content p {
    font-size: 13px;
    text-align: left;
    padding: 0 10px;
  }
  .greetings-container h4 {
    font-size: 11px;
  }
  .vision-container-1,
  .vision-container-2 {
    background: #E2E9F0;
  }
  .vision-content-1,
  .vision-content-2 {
    flex-flow: column;
    padding: 50px 10px;
    margin-bottom: 50px;
  }
  .vision-content-1 div:first-child,
  .vision-content-1 div:last-child,
  .vision-content-2 div:first-child,
  .vision-content-2 div:last-child {
    width: 100%;
  }
  .vision-content-1 img,
  .vision-content-2 img {
    position: static;
    width: 100%;
    max-width: none;
  }
  .vision-content-1 h1,
  .vision-content-2 h1 {
    margin-bottom: 20px;
  }
  .vision-content-1 h1,
  .vision-content-2 h1,
  .vision-content-1 p,
  .vision-content-2 p {
    padding: 0;
  }
  .vision-content-1 p,
  .vision-content-2 p {
    font-size: 13px;
  }
  .vision-content-1 img,
  .vision-content-2 p {
    margin-bottom: 20px;
  }
  #greetings-entry h1 {
    font-size: 15px;
  }
  #section-kurashiki {
    padding: 0 10px 90px;
  }
  .kurashiki-content {
    width: 100%;
  }
  .kurashiki-content img {
    width: 80%;
    height: auto;
    margin: 0 auto 20px;
  }
  .kurashiki-content h1 {
    font-size: 23px;
  }
  .kurashiki-list p {
    font-size: 15px;
  }
  #section-aesthetic h1 {
    font-size: 30px;
  }
  #section-aesthetic h2 {
    font-size: 13px;
    text-align: left;
  }
  .aesthetic-wrap div p {
    font-size: 13px;
  }
  .denim-content h1 {
    font-size: 24px;
  }
  .denim-content h2 {
    font-size: 13px;
    margin-bottom: 30px;
  }
  .denim-secondary h1 {
    font-size: 20px;
  }
  .denim-secondary h2 {
    font-size: 13px;
  }
  .about-5 img {
    height: 20vh;
    object-position: top;
  }
  .denim-commitment h1 {
    font-size: 19px;
  }

  /*============
  Voice Page
  =============*/
  .voice-content {
    margin-bottom: 50px;
  }
  .voice-1 img, .voice-2 img {
    height: 90vh;
    padding-top: 50px;
  }
  .voice-content h3 {
    text-align: left;
    padding: 0 10px;
    font-size: 15px;
  }
  .voice-q h1 {
    font-size: 3.2vw;
    margin-bottom: 20px;
  }
  .voice-a h2 {
    font-size: 3.2vw;
    margin-bottom: 30px;
  }
  .voice-content img {
    margin-bottom: 20px;
  }
  #voice-bottom .banner-wrap {
    flex-direction: row;
  }

  /*============
  Recruitment Page
  =============*/
  .recruitment-content {
    flex-flow: column;
    padding: 20px 10px;
  }
  .recruitment-content h3 {
    margin-bottom: 20px;
  }

  /*============
  Site Map
  =============*/
  .sitemap-contents {
    width: 100%;
  }

  /*============
  footer
  =============*/
  .footer-container {
    display: block;
    padding: 20px 0 0;
    max-width: none;
    margin: 0 auto;
  }
  footer h1 img {
    margin: 0 auto;
  }
  .footer-menu {
    display: none;
  }
  .footer-bottom {
    flex-flow: column;
    align-items: center;
    text-align: center;
    line-height: 1.5em;
  }
  .footer-bottom h1 {
    font-size: 14px;
    margin: 0 0 20px;
  }
  .footer-bottom h2 {
    font-size: 14px;
    letter-spacing: 1.4px;
    margin: 0;
  }
  .footer-bottom h2 span {
    margin-left: 0;
  }
  .footer-menu-bottom {
    font-size: 11px;
    position: static;
    text-align: center;
    margin: 20px 0 0;
  }
  .footer-menu-bottom a {
    margin-right: 14px;
  }
  .footer-menu-bottom a:before {
    margin-right: 3px;
  }
  /*============
  Entry button
  =============*/
  .entry-btn {
    display: block;
    position: fixed;
    width: 50px;
    height: 50px;
    right: 10px;
    bottom: 30px;
    z-index: 99;
    letter-spacing: 1px;
    background: #12334C;
    opacity: 0;
    transition: opacity 1s;
  }
  .entry-btn.is-fixed {
    opacity: 1;
    transition: opacity 1s;
  }
  .entry-btn p {
    color: #fff;
    font-size: 10px;
    text-align: center;
    line-height: 50px;
    margin-right: -1px;
  }
  .pc-br {
    display: none;
  }
}
/*========================
  Responsive - Sub
=========================*/
@media screen and ( max-width: 425px ) {
  .commitment-title h1 {
    font-size: 28px;
    letter-spacing: 0.1em;
    margin: 30px 0 15px;
  }
  .commitment-title p {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .commitment-content {
    background: none;
  }
  .commitment-content:last-child {
    padding: 0;
  }
  .commitment-menu {
    flex-flow: column;
  }
  .commitment-menu a {
    width: 100%;
  }
  .commitment-menu a:nth-child(odd), .commitment-menu a:nth-child(even) {
    margin: 0 0 20px 0;
  }
  .denim-commitment .commitment-menu a:nth-child(odd), .denim-commitment .commitment-menu a:nth-child(even) {
    margin: 0 0 20px 0;
  }
  .kurashiki-container {
    flex-flow: column;
  }
  .kurashiki-content:last-child {
    width: 80%;
    margin: 0 auto;
  }
  .aesthetic-wrap div {
    width: 100%;
  }
  .denim-content {
    flex-flow: column;
  }
  .denim-content div:first-child,
  .denim-content div:last-child {
    width: 100%;
  }
  .about-2 picture:nth-child(1),
  .about-2 picture:nth-child(2) {
    position: static;
  }
  .about-2 picture:last-child {
    width: 100%;
    max-width: 320px;
    margin: 20px auto;
  }
  .profile-content h4 {
    font-size: 13px;
  }
  .b-league-container img {
    min-width: 300px;
  }
  .b-league-container h1 {
    font-size: 10px;
  }
  #greetings-entry h1 {
    font-size: 13px;
  }
  .voice-container p {
    font-size: 20px;
    width: 160px;
  }
  .voice-q h1 {
    font-size: 3.2vw;
    margin-bottom: 10px;
  }
  .voice-a h2 {
    font-size: 3.2vw;
    margin-bottom: 20px;
  }
  .voice-content h3 {
    font-size: 3.4vw;
  }
  #voice-bottom .banner-wrap a {
    width: 43%;
  }
  .b-league-content h1 {
    font-size: 14px;
    letter-spacing: 0.2em;
    margin-right: -0.2em;
  }
  .recruitment-content h4 {
    font-size: 13px;
  }
}
@media screen and (min-width:426px) and ( max-width:768px) {
  .recruit-content {
    flex-flow: row;
  }
  .recruit-content .recruit-1 {
    margin: 0 20px 0 0;
  }
}
/*========================
  lazyload
=========================*/
.lazyload { opacity: 0; -webkit-transition: opacity 3s; transition: opacity 3s; }
.lazyloaded { opacity: 1; }
