 "UTF-8";
/* CSS Document */

.pc-display {
  display: block;
}

.sp-display {
  display: none;
}

.no-main-image .c-inner {
}

.no-main-image .c-sidebar::before {
  content: none;
}


.p-drawer-nav__item:nth-child(7) {
	margin-bottom: 20px;
}

.main__inner {
	    max-width: 1000px;
    margin: 0 auto;
	    padding: 0 40px;
}

.fv-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, #eeeeef 0%, #ffffff 100%);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.fv-logo__inner {
  width: 100%;
  text-align: center;
}

.fv-logo__img {
  width: 400px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.fv-logo__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fv-logo.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

#top {
  position: relative;
}


.story__hero {
  position: relative;
  height: 100vh;
  margin-top: -1px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax_content {
  width: 100%;
  height: 100vh;
  min-height: unset;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/top/top_mv.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.1s ease-out;
  opacity: 0;
  animation: heroZoomIn 3s ease-out forwards;
  position: relative;
  z-index: 1;
}

.parallax_content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  z-index: 1;
}

.story__hero-title {
  position: absolute;
	width: 270px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 4px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: titleFadeIn 2s ease-out 2.5s forwards;
  z-index: 2;
  font-family: 'EB Garamond', 'Zen Kaku Gothic New', serif;
  font-weight: bold;
  white-space: nowrap;
}

/* アニメーションキーフレーム */
@keyframes heroZoomIn {
  0% {
    transform: scale(1.0);
    opacity: 0;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

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


/* Section 2: カフェシーン */
.story__cafe {
  padding: 90px 0 130px;
}

.story__cafe-main {
  display: flex;
  justify-content: center;
}


.story__cafe-left {
  width: 50%;
}

.story__cafe-right {
  width: 50%;
}

.story__cafe-img {
  width: 100%;
  height: auto;
  transition: all 0.6s ease;
}

.story__cafe-img img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

/* アニメーションが適用されるクラス */
.story__cafe-img.is-animated img {
  opacity: 1;
  animation-fill-mode: forwards;
}

.story__cafe-img--large {
  position: relative;
  max-width: 632px;
  width: 90%;
  height: auto;
  object-fit: cover;
  margin: 0 auto 46px 0;
}

.story__cafe-img--small {
  max-width: 450px;
  width: 70%;
  height: auto;
  margin: 0 auto;
  object-fit: cover;
  flex-shrink: 0;
}

.story__cafe-img--medium {
  width: 100%;
  max-width: 960px;
  height: auto;
  object-fit: cover;
  margin: 160px 0 0 auto;
}

.story__cafe-subs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story__cafe-subs.sp-display {
	display: none;
}

@keyframes flipInY {
  0% { transform: perspective(800px) rotateY(90deg); opacity: 0; }
  100% { transform: perspective(800px) rotateY(0deg); opacity: 1; }
}

.story__cafe-img.animate-1 img {
  animation: flipInY 1.2s ease-out;
}

/* 画像2: 軽くフリップ（X軸回転）しながらフェードイン */
@keyframes flipInX {
  0% { transform: perspective(800px) rotateX(90deg); opacity: 0; }
  100% { transform: perspective(800px) rotateX(0deg); opacity: 1; }
}

.story__cafe-img.animate-2 img {
  animation: flipInX 1.2s ease-out;
}

/* 画像3: 小さくスケールアップしてフェードイン */
@keyframes fadeInScale {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.story__cafe-img.animate-3 img {
  animation: fadeInScale 1s ease-out;
}

/* 画像4: 少し上からスライドしてフェードイン */
@keyframes slideInFromTop {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.story__cafe-img.animate-4 img {
  animation: slideInFromTop 1s ease-out;
}

.story__cafe-img.animate-5 img {
  animation: flipInX 1.5s ease-out;
}

.story__cafe-img.delay-0 { animation-delay: 0s; }
.story__cafe-img.delay-1 { animation-delay: 0.1s; }
.story__cafe-img.delay-2 { animation-delay: 0.2s; }
.story__cafe-img.delay-3 { animation-delay: 0.3s; }
.story__cafe-img.delay-4 { animation-delay: 0.4s; }




/* Section 3: 本屋シーン */
.story__bookstore {
}

.books__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.story__bookstore-img.swiper-slide {
  width: calc(100% / 2) !important;
  height: auto;
}

.story__bookstore-img.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


.story__bookstore-subs {
  display: flex;
  justify-content: space-between;
  margin-top: 7cap;
}


.story__bookstore-sub img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.story__bookstore-sub img.animate {
  opacity: 1;
  transform: scale(1);
}

.story__bookstore-single {
  width: 44.79%;
  max-width: 860px;
  height: auto;
  margin-top: 240px;
  aspect-ratio: 860 / 574;
}

.story__bookstore-separate .bookstore__img:first-child {
  max-width: 430px;
  height: auto;
  margin-bottom: 80px;
  margin-left: -40%;
  aspect-ratio: 450 / 300;
}

.bookstore__img--second {
  width: 436px;
}

.story__bookstore-separate .bookstore__img:nth-child(2) {
  max-width: 600px;
  height: auto;
  margin: 0 10% 0 auto;
  aspect-ratio: 600 / 400;
}

.story__bookstore-separate .bookstore__img:nth-child(3) {
  max-width: 312px;
  height: auto;
  margin-top: -12px;
  margin-left: -78%;
  aspect-ratio: 450 / 300;
}


.fadein-up {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  filter: brightness(1.4);
  transition: opacity 2s cubic-bezier(0.25, 0.1, 0.25, 1),
  transform 2s cubic-bezier(0.25, 0.1, 0.25, 1),
  filter 2s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-delay: 1.2s;
  will-change: opacity, transform, filter;
  overflow: hidden;
}

.fadein-up::before {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 4s ease 1.2s;
  pointer-events: none;
  z-index: 1;
}

.fadein-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: brightness(1);
}

.fadein-up.is-visible::before {
  opacity: 0;
}



/* Section 4: 通学シーン */
.story__school {
  padding: 90px 0 100px;
}

.story__school-main {
  width: 58%;
  height: auto;
  aspect-ratio: 1285 / 1900;
  margin: 0 0 86px 100px;
}

.school-fade-main {
  overflow: hidden;
  position: relative;
}


.school-fade-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  pointer-events: none;
  z-index: 1;
  transform: translateX(0);
  transition: transform 4s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 1.5s;
}

.school-fade-main.-visible::before {
  transform: translateX(100%);
}

.school-fade {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.school-fade::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateY(0);
  z-index: 1;
  pointer-events: none;
  transition: transform 3s cubic-bezier(0.19, 1, 0.22, 1);
}

.school-fade.-visible::before {
  transform: translateY(-100%);
}



.story__school-subs {
  display: flex;
}

.story__school-sub--01 {
  max-width: 666px;
  width: 30%;
  height: auto;
  aspect-ratio: 666 / 1000;
}

.story__school-sub--02 {
  max-width: 700px;
  width: 40%;
  height: auto;
  margin: 40px 150px 0 auto;
  aspect-ratio: 700 / 1050;
}

/* Section 5: クロージング */
.story__closing {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story__closing-img {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.story__closing-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateY(0);
  z-index: 1;
  pointer-events: none;
  transition: transform 4s cubic-bezier(0.19, 1, 0.22, 1);
}

.story__closing-img.-visible::before {
  transform: translateY(-100%); /* 上に抜ける */
}



.story__closing-logo {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  padding: 15px 30px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  transition: all 1s ease 0.5s;
}

.story__closing-logo.animate {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* License Page */
.license-page {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.license-page-ttl {
	width: 200px !important;
	margin-bottom: 10px;
}

.license-page-ttl::before {
	content: none !important;
}

.license-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.license-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #333;
}

.license-content {
  text-align: center;
  margin-bottom: 60px;
}

.license-content__right {
	width: 100%;
}

.license-content p {
  max-width: 840px;
  font-size: 15px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 1.6px;
  color: #595757;
  font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', serif;
text-align: justify;
}

.license-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.license-item {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.license-item:hover {
  transform: translateY(-5px);
}

.license-item-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.license-item-description {
  color: #666;
}

.license-item-description p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.license-item-description ul {
  list-style: none;
  padding: 0;
}

.license-item-description li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.license-item-description li:last-child {
  border-bottom: none;
}

.shoplist__main{
	max-width: 1180px;
	padding: 130px 40px 0;
	margin: 0 auto;
}

.shop {
	max-width: 1920px;
	margin: 0 auto;
	padding: 60px 40px;
	background-color: #fff;
}

.shop__title {
	font-size: 50px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 20px;
	color: #595757;
	letter-spacing: 2px;
	font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', serif;
}

.shop__subtitle {
	font-size: 15px;
	text-align: center;
	margin-bottom: 90px;
	color: #595757;
}

.shop__brand {
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
}

.shop__brand-logo {
	height: 50px;
}

.shop__tabs {
	display: flex;
	justify-content: center;
	width: 1000px;
	margin: 0 auto 40px;
	gap: 40px;
	border-bottom: 1px solid #dbdcdc;
}

.shop__tab {
	max-width: 840px;
	width: 100%;
	height: 70px;
	border: none;
	font-size: 16px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	cursor: pointer;
	background: #dbdcdc;
	border: 1px solid #dbdcdc;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
}


.shop__tab--active {
	border: 1px solid #dbdcdc;
	border-bottom: none;
	font-weight: 500;
}

.shop__tab--active img {
    width: auto;
    height: 45px;
}

.shop__tab[data-tab="green"] img {
	    width: auto;
    height: 56px;
}

.shop__tab--active[data-tab="green"] img {
	    width: auto;
    height: 26px;
}

.shop__tab:hover {
	color: #333;
}

.shop__content {
	display: none;
}

.shop__content--active {
	display: block;
}

.shop__section {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.shop__section-title {
	position: relative;
	font-size: 30px;
	font-weight: 500;
	text-align: center;
	padding: 80px 0 30px;
	color: #000a4b;
}

.shop__border img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.shop__section-title::before {
	position: absolute;
	content: '';
	bottom: 10%;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
	height: 1px;
	background: #000a4b;
	margin-top: 14px;
}

.shop__list {
	width: 100%;
	margin: 0 auto;
	padding-top: 20px;
}

.shop__item {
	display: flex;
	align-items: flex-start;
	gap: 25px;
  margin-bottom: 50px;
}


.shop__item:last-child {
	border-bottom: none;
  margin-bottom: 0;
}

.shop__item-left {
	flex: 1;
	/* padding-right: 40px; */
}

.shop__item-right {
	flex: 1;
  display: flex;
  justify-content: space-between;
}

.shop__item-name {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 8px;
	color: #595757;
}

.shop__item-address {
	font-size: 13px;
	color: #595757;
	line-height: 1.5;
}

.shop__item-info {
	font-size: 13px;
	color: #595757;
	font-weight: 300;
	line-height: 1.8;
}

.shop__item-info a {
	display: block;
	font-size: 13px;
	color: #595757;
	font-weight: 300;
	line-height: 1.8;
	    font-family: "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
}

.shop__item-link {
  position: relative;
	height: 30px;
	font-size: 10px;
	color: #595757;
	text-decoration: none;
  display: inline-block;
  padding-right: 20px;
}

.shop__item-link::before {
  content: '';
  position: absolute;
  right: 0;
  top: 9%;
  width: 10px;
  height: 10px;
  background-image: url(../images/page/shop_vector.png);
  background-size: 100% 100%;

}

.shop__area-title {
	font-size: 16px;
	font-weight: 500;
	margin: 40px 0 20px;
	color: #333;
}

.top-news {
	padding-bottom:80px;
}

.top-news__inner {
	display: flex;
    justify-content: left;
    flex-direction: row-reverse;
    align-items: baseline;
    max-width: 780px;
    gap: 80px;
    margin: 0 auto;
	padding: 0 20px;
}

.c-sidebar__ttl--news {
	padding-top: 0 !important;
}

.top-news__item {
	width: 100%;
    border-bottom: 1px solid #d9dada;
}

.top-news__item:first-child {
	border-top: 1px solid #d9dada;
}

.top-news__link {
	    padding: 8px 4px;
	    display: flex;
    align-items: center;
    gap: 20px;
}

.top-news__date {
	    font-size: 12px;
}

.top-news__tag {
	    width: 80px;
	     padding: 0px 6px;
    background: #efefef;
    font-size: 10px;
    color: #000;
	    text-align: center;
}

.top-news__tag.is-greennout {
	padding: 0;
}

.top-news__tag.is-greennout img {
	    width: 100%;
    height: 26px;
}

.top-news__ttl {
	font-size: 13px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.c-sidebar__ttl--news span {
	    display: block;
    margin: 6px auto 0;
    color: #595757;
    font-size: 12px;
    text-align: left;
	font-weight: 400;
}



/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .license-page {
    padding: 40px 0;
  }

  .license-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .license-list {
    grid-template-columns: 1fr;
  }

  .license-item {
    padding: 20px;
  }
}

/* Page Title Section */
.page-title {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.page-title__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('<?php echo get_template_directory_uri(); ?>/images/license-hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-title__inner {
  position: relative;
  z-index: 1;
}

.page-title__main {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Noto Serif JP', serif;
}

.page-title__sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

/* License Business Section */
.license-business {
  padding: 80px 0;
}

.license-business__inner {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
}

.c-licenseArea {
	    max-width: 1100px;
  width: 100%;
  display: flex;
  padding: 40px;
	    margin: 0 auto;
  border-bottom: 1px solid #c8c9ca;
}

.license .c-licenseArea {
	  padding: 40px 0;
}

.c-licenseArea:last-child {
  padding: 60px 0 120px;
  border-bottom: none;
}

.c-licenseArea--recruit:last-child {
  padding-bottom: 0;
}

.c-license__ttl {
  position: relative;
  width: 50%;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 400;
  color: #595757;
  letter-spacing: 6px;
  flex-shrink: 0;
  text-align: left;
  font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', serif;
}

.c-license__ttl::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--dark-text);
}

.license__sidebar-title {
	width: 280px;
    margin: 0 auto 10px;
}

/* Collaboration Section */
.collaboration {
  background-color: var(--white);
  padding: 80px 0;
}

.colla__ttl {
	width: 200px;
    display: block;
    margin: 0 auto 10px 0;
}

.collaboration__inner {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: flex-start;
}

.collaboration__content {
  width: 50%;
  padding-right: 40px;
  text-align: right;
}



.collaboration__subtitle {
  display: block;
  font-size: 14px;
  color: #595757;
  text-align: left;
	letter-spacing: 1.2px;
}


/* Contact Info Section */
.contact-info {
  background-color: var(--light-gray-bg);
  padding: 60px 0;
  text-align: center;
}

.contact-info__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

.contact-info__title {
  font-size: 18px;
  font-weight: 400;
  color: #595757;
  margin-bottom: 0;
  text-align: center;
}

.contact-info__block {
  padding: 10px 0;
  background: #eeeeef;
  border-bottom: 1px solid #fff;
}

.contact-info__items {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 20px 0;
  background: #eeeeef;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-info__text--mail {
  padding-bottom: 4px;
  border-bottom: 1px solid #595757;
}

.contact-info__icon img {
  width: 30px;
  height: auto;
}

.contact-info__text--mail img {
  width: 24px;
  height: auto;
}

.contact-info__label {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 5px;
}

.contact-info__value {
	position: relative;
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  color: #5A5A5A;
  text-decoration: none;
  transition: .2s ease-in;
}

.contact-info__value::before {
	position: absolute;
	content: "";
    width: 20px;
    height: 20px;
    left: -30px;
    top: 25%;
	background-image: url(../images/page/icon-tel.png);
	background-size: 100% 100%; 
}

.greennote__bottom .contact-info__value::before,
.contact-info__value--green::before {
	content: none;
}

.contact-info__value:hover {
  color: #c0bdbd;
  transition: .2s ease-in;
}

.contact-info__value span {
	    padding-left: 10px;
  font-size: 12px;
  font-weight: 400;
  color: #5A5A5A;
}

.contact-info__value--mail {
  padding-right: 40px;
}

.contact-info__value--tel {
	display: flex;
    align-items: center;
  font-family: "A-OTF 中ゴシックBBB Pro Medium","Noto Sans CJK JP Medium", "Source Han Sans Medium","Mplus 1p Medium","Hiragino Kaku Gothic ProN","Yu Gothic", "Meiryo", sans-serif;
}


.contact-info__item--mail {
	display: none;
}

/* Licensee List Section */
.licensee-list {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 0 100px;
  border-top: 1px solid #c8c9ca;
}

.license-img-ttl {
	    width: 400px;
}

.licensee-list__inner {
    max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.licensee-list__header {
  max-width: 416px;
  flex-shrink: 0;
}

.licensee-list__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 5px;
}

.licensee-list__subtitle {
  font-size: 14px;
  color: var(--gray-text);
}

.licensee-list__grid {
  width: 74%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 4%;
  /* grid-template-columns: repeat(auto-fit, minmax(600px, 2fr)); */
}

.licensee-item {
  border-bottom: 1px solid #c8c9ca;
  padding: 8px 0;
}

.licensee-item:first-child,
.licensee-item:nth-child(2) {
  border-top: 1px solid #c8c9ca;
}

.licensee-item__name {
  font-size: 14px;
  font-weight: 400;
  color: #595757;
  margin-bottom: 5px;
}

.licensee-item__description {
  font-size: 11px;
  color: #595757;
  margin-bottom: 0px;
  line-height: 1;
}

.licensee-item__link {
  font-size: 12px;
  color: #595757;
  text-decoration: none;
}

.licensee-item__link:hover {
  text-decoration: underline;
}


.page-title__image img {
  object-fit: cover;
}


/* Costume Cooperation Intro Section */
.costume-cooperation-intro {
  background-color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.costume-cooperation-intro__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.costume-intro__text {
  display: block;
  max-width: 780px;
  margin: 0 auto;
  padding: 70px 0;
  font-size: 16px;
  line-height: 2;
  color: #595757;
  letter-spacing: 1.8px;
  font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', serif;
}

.contact-info--costume-cooperation {
  padding: 0 0 100px;
}

.contact-info__subtitle {
  font-size: 15px;
  color: #595757;
  margin-bottom: 0;
  text-align: center;
}

/* Recruit Intro Section */
.recruit-intro {
  background-color: var(--light-gray-bg);
  padding: 80px 0;
  text-align: center;
}

.recruit-intro__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.recruit-intro__main-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 40px;
}

.recruit-intro__sub-text {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 60px;
}

.recruit-intro__detail-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.recruit-intro__detail-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Recruit Categories Section */
.recruit-categories {
  padding: 40px 0;
}

.recruit-categories__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.recruit-categories__list {
  list-style: none;
  padding: 55px 0 0;
  display: flex;
  gap: 22px;
}

.recruit-categories__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% / 3);
  padding-bottom: 5px;
  border-bottom: 1px solid #595757;
}

.recruit-categories__item img {
  width: 16px;
  height: auto;
}

.recruit-categories__link {
  position: relative;
	width: 100%;
  font-size: 12px;
  color: #595757;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: left;
  /* font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', serif; */
  transition: color 0.2s ease;
}

.recruit-categories__link:hover {
  color: var(--eastboy-blue);
}


.recruit-categories__link:hover .recruit-categories__circle {
  background-color: var(--eastboy-blue);
}


/* Recruit Gallery Section */
.recruit-gallery {
  padding-bottom: 80px;
  padding-top: 88px;
}

.recruit-gallery__inner {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.recruit-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 6px;
}

.recruit-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
}

.about {
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

.about__inner {
  max-width: 1065px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 33px 80px;
}

.about__sidebar {
  position: relative;
  width: 25%;
  margin: 0 auto;
}

.c-sidebar__ttl {
  padding-top: 60px;
  font-size: 34px;
  color: #595757;
  margin-bottom: 6px;
  letter-spacing: 1.8px;
  text-align: center;
  font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', serif;
}

.about__sidebar-title {
	    width: 200px;
    display: block;
    margin: 0 auto 10px;
}

.c-sidebar__txt {
  font-size: 14px;
  color: #595757;
  margin-bottom: 30px;
  margin-bottom: 10px;
  text-align: center;
  font-family: "Noto Sans JP", "M PLUS 1p", "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 400;

}

.c-sidebar::before {
  position: absolute;
  content: '';
  display: block;
  width: 10px;
  height: 70px;
  top: -27%;
  left: 50%;
  background-color: #000a4b;
  margin: 0 auto 20px auto;
}

.about__content {
	max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 80px;
	margin: 0 auto;
}

.about__messa {
  position: relative;
  max-width: 890px;
  width: 100%;
}

.about__messa::before {
  position: absolute;
  content: "";
	    top: 5%;
    left: -205px;
    width: 194px;
  height: 1px;
  background: #595757;
}

.about__title {
  width: 82%;
  max-width: 520px;
  font-size: 24px;
  color: #595757;
  letter-spacing: 1.6px;
  font-weight: 400;
  letter-spacing: 4px;
  flex-shrink: 0;
  font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', serif;
}

.about__description {
  font-size: 14px;
  color: #595757;
  line-height: 2;
  margin-bottom: 40px;
  font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', serif;
}


.p-about {
  background-color: #f9f9f9;
  padding: 100px 0;
  font-family: 'Noto Sans JP', YuGothic, '游ゴシック', sans-serif;
  color: #333;
  overflow: hidden;
}

.p-about .c-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
}

.p-about__sidebar {
  flex-shrink: 0;
  width: 250px;
  text-align: center;
  padding-top: 20px;
  position: relative;
}

.p-about__sidebar-decoration {
  width: 2px;
  height: 60px;
  background-color: #555c8c;
  margin: 0 auto 20px auto;
}

.p-about__sidebar-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.5em;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

.p-about__sidebar-text {
  font-size: 0.85em;
  color: #777;
  letter-spacing: 0.05em;
}

.p-about__content {
  flex-grow: 1;
  max-width: 700px;
  text-align: left;
}

.p-about__title {
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
}

.p-about__title::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background-color: #bbb;
  position: absolute;
  bottom: -15px;
  left: 0;
}

.p-about__description {
  font-size: 0.95em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.p-about__description:last-child {
  margin-bottom: 0;
}

.p-company,
.p-history {
  padding: 100px 0 0;
  font-family: "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ",
    "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  text-align: justify;
  color: #333;
}

.p-company {
	  padding: 40px 0 0;
	  font-family: "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ",
    "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  text-align: justify;
  color: #333;
}

.p-company__wrapper,
.p-history__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 120px;
}

.p-company__left,
.p-history__left {
  flex-shrink: 0;
  width: 210px;
  text-align: center;
}

.p-company__left-title,
.p-history__left-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 500;
  color: #595757;
  margin-bottom: 5px;
  text-align: left;
}

.p-company__left-subtitle,
.p-history__left-subtitle {
  font-size: 0.85em;
  color: #595757;
  letter-spacing: 0.05em;
}

.p-company__right,
.p-history__right {
  flex-grow: 1;
  max-width: 920px;
}

/* Table styles */
.p-company__table {
  border-collapse: collapse;
  /*margin-bottom: 120px;*/
	  margin-bottom: 30px;
  width: 100%;
}
.p-company__table:last-child {
  margin-bottom: 0;
}

.p-company__table th,
.p-company__table td {
  padding: 14px 0;
  font-size: 14px;
  line-height: 1.5;
}

.p-company__table tr {
  border-bottom: 1px solid #c8c9ca;
}

.p-company__table tr:first-child {
  border-top: 1px solid #c8c9ca;
}

.p-company__table th {
  width: 120px;
  text-align: left;
  font-weight: 300;
  color: #595757;
  white-space: nowrap;
}

.p-company__table td {
	    display: flex;
    justify-content: space-between;
  padding-left: 20px;
  color: #595757;
	  font-weight: 300;
}

.p-company__table--executive {
  margin-top: 50px;
}

.p-company__map-link {
	position: relative;
  padding-right: 16px;
  font-size: 12px;
  color: #595757;
}

.p-company__map-link::before {
	content: '';
    position: absolute;
    right: 0;
    top: 25%;
    width: 10px;
    height: 10px;
    background-image: url(../images/page/shop_vector.png);
    background-size: 100% 100%;
}

/* History List styles */
.p-history__list {
  position: relative;
  padding: 40px 0;
  border-top: 1px solid #c8c9ca;
  border-bottom: 1px solid #c8c9ca;
}

/* 縦の点線 */
.p-history__list::before {
  content: '';
  display: block;
  position: absolute;
  left: 104px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #c8c9ca;
}

.p-history__item {
  display: flex;
  align-items: flex-start;
  padding-bottom: 20px;
  position: relative;
}

.p-history__item:last-child {
  padding-bottom: 0;
}

/* 各項目の丸点 */
.p-history__item::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #595757;
  position: absolute;
  left: 100px;
  top: 8px;
  z-index: 1;
}

.p-history__year {
  flex-shrink: 0;
  width: 110px;
  font-weight: 300;
  font-size: 14px;
  color: #595757;
  text-align: left;
}

.p-history__description {
  padding-left: 40px;
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.6;
  color: #595757;
	  font-weight: 300;
}

.company-page__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 110px 40px;
}

.license-content {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.contact-info--costume-license {
	    max-width: 1000px;
    margin: 0 auto;
  padding: 0 0 70px;
}

.c-license__ttl--recruit {
	position: relative;
  width: 50%;
}

.c-license__ttl--recruit::before {
	position: absolute;
	content: "";
    width: 76px;
    height: 1px;
    top: 20px;
    left: 91%;
  transform: translateY(-50%) translateX(-50%); 
	background: #595757;
}

.c-license__ttl--license {
	position: relative;
	margin-bottom: 10px;
}

.c-license__ttl--license::before {
	position: absolute;
	content: "";
    width: 330px;
    height: 1px;
    top: 18px;
    left: 65%;
  transform: translateY(-50%) translateX(-50%); 
	background: #595757;
}


.greennote__ttl {
	position: relative;	
	    letter-spacing: 4px;
}

.greennote__ttl::before {
	position: absolute;
	content: "";
width: 200px;
    height: 1px;
    top: 18px;
    left: 78%;
  transform: translateY(-50%) translateX(-50%); 
	background: #595757;
}

.c-mv--ebquality{
  position: relative;
}

.c-mv__ttl {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.c-mv__ttl p {
  font-size: 50px;
  color: #fff;
  font-weight: 400;
  /*letter-spacing: 4px;*/
  font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', serif;
}

.ebquality__ttl {
  width: 42%;
  line-height: 1.8;
}

.ebqualityArea {
  justify-content: center;
}

.blazer__container {
  display: flex;
}

.blazer__left {
  width: 52%;
  flex-shrink: 0;
  padding: 0;
  display: flex;
  /*align-items: center;*/
  justify-content: center;
}

.blazer__left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blazer--five .blazer__left img {
	height: auto;
}

.blazer__img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.blazer__flex {
  padding: 0 20px;
}

.blazer__num {
  display: inline-block;
  font-size: 18px;
  color: #595757;
  margin-bottom: 8px;
  font-weight: 400;
  font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', serif;
  border-bottom: 1px solid #000a4b;
}

.blazer__flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blazer__title {
	    margin: 10px auto;
  font-size: 40px;
  color: #595757;
  font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', serif;
  font-weight: 400;
  white-space: nowrap;
}

.blazer__title img {
	    display: block;
    width: auto;
    height: 100%;
}

.blazer__subtitle {
  font-size: 12px;
  color: #595757;
  font-weight: 400;
}

.blazer__desc {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.blazer__desc-title {
  font-size: 20px;
  color: #595757;
  margin-bottom: 0;
  font-weight: 400;
	letter-spacing: 1.2px;
  font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', serif;
}

.blazer__txtArea {
  position: relative;
  padding: 40px 0;
}

.blazer__txtArea::before,
.blazer__txtArea::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 8px;
  left: 0;
  background-image: url(../images/page/header-border.gif);
  background-size: 100% 100%;
}

.blazer__txtArea::before {
  top: 0;
}

.blazer__txtArea::after {
  bottom: 0;
}

.blazer__desc-sub {
  font-size: 12px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.blazer__shop-title {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.blazer__shop-desc {
  font-size: 12px;
  color: #595757;
  line-height: 1.6;
text-align: justify;
}

.blazer__shop-details {
  font-size: 11px;
  color: #888;
  line-height: 1.6;
}

.blazer--two {
  display: flex;
  justify-content: center;
  gap: 70px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 150px 0 0;
}

.blazer__container--column {
  flex-direction: column;
  width: 50%;
}

.blazer__left--two {
  width: 100%;
  margin-bottom: 30px;
}

.blazer__flex--two {
  padding: 0;
}

.blazer__right--two {
  margin-bottom: 40px;
}

.blazer__left--four {
  width: 58%;
}

.blazer--four {
  padding-top: 150px;
}

.blazer__img--txt {
  margin-top: 5px;
  font-size: 9px;
  color: #595757;
  line-height: 1.2;
}

.blazer__container--five {
  flex-direction: row-reverse;
}

.blazer__container--five .blazer__left {
      width: 60%;
}

.blazer__container--one .blazer__flex,
.blazer__container--six .blazer__flex,
.blazer--seven .blazer__flex {
	padding: 0 0 0 40px;
}

.blazer--eight .blazer__flex,
.blazer__container--five .blazer__flex {
		padding: 0 40px 0 0;
}

.blazer__container--one .blazer__title img,
.blazer--five .blazer__title img,
.blazer__container--seven .blazer__title img {
	height: 30px;
}

.blazer__container--column .blazer__title img {
	height: 40px;
}

.blazer__container--four .blazer__title img,
.blazer--eight .blazer__title img {
	height: 30px;
}

.blazer__container--six .blazer__title img {
	height: 40px;
}

.blazer--five {
  padding-top: 90px;
}

.blazer__img--five {
  width: 40%;
}

.blazer__img--five img {
  width: 100%;
}

.blazer--six {
  width: 100%;
  margin: 0 auto;
}

.blazer__desc--six {
  margin-bottom: 30px;
}

.blazer--six {
  padding-top: 150px;
}

.blazer__left--seven {
  width: 64%;
}

.blazer__desc--seven {
  margin-bottom: 30px;
}

.blazer--seven {
  padding-top: 150px;
}

.blazer--eight {
  width: 100%;
  margin: 0 0 0 auto;
  padding: 150px 0 100px;
}

.greennote__ttl {
  width: 53%;
}

.c-licenseArea.greennoutArea {
  max-width: 1000px;
  padding-top: 100px;
  justify-content: center;
  margin: 0 auto;
	padding: 100px 20px 120px;
}

.greennout__lists {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.greennout__lists li {
  /* width: calc(100% / 4); */
  width: auto;
  height: 430px;
}

.greennout__lists li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.greennout__info {
  max-width: 836px;
  width: 100%;
  margin: 100px auto 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.contact-info__text {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.contact-info__items--greennout {
  background: none;
  padding: 0;
}

.contact-info__items--greennout.pc-display {
	display: block;
} 

.contact-info__items--greennout.sp-display {
	display: none;
} 


.brand_logo {
  max-width: 546px;
  width: 100%;
  margin: 0 auto 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.brand_logo li {
  border: 1px solid #000;
}

.sns__area p {
  margin-bottom: 12px;
  text-align: center;
  color: #595757;
  font-size: 13px;
}

.sns__area__items {
  max-width: 100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.sns__area__items li.x img {
	display: block;
	width: 34px;
	height: auto;
}

.greennote__bottom {
  padding-bottom: 80px;
}

.news__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 110px 40px 100px;
}

.news-ttl,
.contact-ttl {
  padding-bottom: 40px;
  color: #595757;
  font-size: 50px;
  font-weight: 400;
  text-align: center;
  font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', serif;
  border-bottom: 2px solid #c8c9ca;
}

.news-ttl {
border-bottom: none;
}

.contact-ttl {
  border: none;
}

.news-ttl span {
  display: block;
	margin: 20px auto 0;
  color: #595757;
  font-size: 15px;
	  text-align: center;
}

.news-list {
  list-style: none;
  padding: 0;
}
.news-item {
  padding-top: 20px;
  border-bottom: 1px solid #ddd;
}
.news-cat {
  width: 130px;
  display: inline-block;
  padding: 5px 10px 6px;
  font-size: 12px;
  color: #595757;
  background: #eeeeef;
  text-align: center;
	letter-spacing: 1.2px;
}

.news-item.is-greennout .news-cat {
	padding: 0;
}

.news-title {
  position: relative;
  width: 100%;
  display: block;
  padding-bottom: 20px;
  font-size: 22px;
  color: #000a4b;
  font-weight: 500;
}

.news-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 8px;
  bottom: 0;
  left: 0;
  background-image: url(../images/page/header-border.gif);
  background-size: 100% 100%;
}

.news-title.cat-greennout::before {
	background-image: url(../images/page/green_border-1.png);
}

.news-title.cat-greennout {
	color:#554741;
}

.news-date {
  display: block;
  margin: 15px 0;
  font-size: 12px;
  color: #595757;
}

.news-content {
  padding: 48px 0;
}

.news-content p,
.news-content a{
  color: #595757;
  font-size: 15px;
  font-weight: 400;
}

.news-content a {
	text-decoration: underline;
}

.contact__container {
  padding: 60px 0;
}



.wpcf7-form-control {
  height: 40px;
  width: 100%;
  padding: 5px 10px 2px;
}

.Form-Item-Label-Required {
  color: #D32929;
  display: block;
  font-size: 12px;
  margin-top: 2px;
	color: #D32929;
}

.Form-Item {
  display: flex;
  align-items: center;
  width: 74%;
  margin: 0 auto 30px;
}

.Form-Item:last-child {
	margin-bottom: 0;
}

.Form-Item p {
  width: 100%;
}

.Form-Item-Label {
  width: 40% !important;
  color: #595757;
  font-size: 15px;
  margin-bottom: 16px;
  font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1;
}

input::placeholder,
textarea::placeholder {
	color: #B3B3B3 !important;
	font-size: 16px;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.wpcf7-textarea {
	height: 136px;
	padding: 10px;
}

.privacy__area {
	background: #054576;
	padding: 55px 0 54px;
	margin-bottom: 42px;
	text-align: center;
}

.wpcf7-acceptance {
	border: none;
}

.button-wrap {
  display: block;
  margin: 0 auto;
  width: 300px;
}

.wpcf7 .wpcf7-submit:disabled {
  position: relative;
	width: 300px;
	margin: 0 auto;
	background: #ddd;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
  text-align: left;
}

.wpcf7 .wpcf7-submit {
  position: relative;
  width: 300px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 500;
  color: #595757;
  letter-spacing: 2px;
  font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
  border: none;
  text-align: left;
  border-bottom: 1px solid #595757;
  cursor: pointer;
  transition: .2s ease;
}

.wpcf7 .wpcf7-submit:hover {
  color: #c0bdbd;
  transition: .2s ease;
}

.button-wrap p {
  position: relative;
}

.button-wrap p::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 32%;
  right: 10px;
  transform: translateY(-50%);
  background-image: url(../images/page/icon-vector.png);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.Form {
  max-width: 1720px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
  background: #eeeeef;
	display: none;
}

.contact-txt {
  color: #595757;
  font-weight: 400;
  text-align: center;
  font-size: 15px;
}

.contact__info {
  padding: 90px 0 0;
}

.contact__info-online {
  margin: 0 auto 54px;
  padding: 0 40px;
}

.contact__info-online ul {
  display: flex;
  align-items: anchor-center;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.contact__info-online ul:first-child {
display: none;	
}

.contact__info-online ul:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact__info__head {
  flex-shrink: 0;
  width: 38%;
}

.contact__info__head p {
  position: relative;
  font-size: 28px;
  font-weight: 400;
  color: #595757;
  line-height: 1.2;
  font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', serif;
}

.contact__info__head span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #595757;
  margin-top: 10px;
}

.contact__info__second {
  display: flex;
  align-items: center;
  gap: 100px;
  padding-bottom: 20px;
  border-bottom: 1px solid #c8c9ca;
}

.contact__info-online ul li:last-child {
  flex-grow: 1;
}

.contact-info__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*width: 300px;*/
  padding: 6px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-info__text--eastboy,
.contact-info__text--greennout {
  border-bottom: 1px solid #595757;
}

.contact-info__text--online {
  width: 100%;
  border: none;
}

.online__txt {
  margin-top: 10px;
  color: #595757;
  font-size: 13px;
  font-weight: 400;
}

.contact__info-shop {
position: relative;
	    padding-bottom: 5px;
  font-size: 1.1em;
  color: #595757;
  flex-grow: 1;
  transition: .2s ease-in;
}

.contact__info-shop::before {
	    position: absolute;
    content: "";
    width: 400px;
    height: 1px;
    background: #595757;
    bottom: -4px;
    left: 0;
}

.contact__info-shop:hover {
  color: #8c8a8a;
  transition: .2s ease-in;
}

.contact-info__text img {
  width: 20px;
  height: 20px;
  margin-left: 10px;
	margin-bottom: 7px;
}

.contact__info-online ul:last-of-type li:last-child div {
  display: block;
  padding: 15px 0;
}

.contact__info-other {
  margin: 0 auto;
  padding-top: 40px;
  padding: 0 40px;
  box-sizing: border-box;
}

.other__ttl {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  padding: 10px 15px;
  background-color: #eeeeef;
  color: #595757;
	letter-spacing: 1.2px;
}

.contact__info-other ul {
  display: flex;
  align-items: flex-start;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.contact__info-other ul:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
	display: none;
}

.contact__info-other .contact__info__head {
  width: 36%;
}

.contact__info-other .contact__info__head p {
  font-size: 34px;
  color: #595757;
  font-weight: 400;
}

.contact__info-other ul li:last-child {
  flex-grow: 1;
	    margin: 0 auto;
}

.info-other__tel {
  padding: 10px 0;
}

.info-other__link {
  font-size: 25px;
  font-weight: 400;
  color: #595757;
  display: inline-block;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.info-other__link span {
  font-size: 15px;
  font-weight: normal;
  vertical-align: middle;
  margin-left: 0;
  color: #595757;
}

.info-other__tel p {
  font-size: 13px;
  line-height: 1.6;
  color: #595757;
  letter-spacing: 1px;
}

.info-other__tel p span {
  color: #d7092f;
  font-weight: 400;
}

.contact__inner {
	max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 150px 0 0;
}

.contact__inner .contact-ttl {
  padding-bottom: 0;
}

.contact__inner .contact-ttl img {
	    display: block;
    width: auto;
    height: auto;
    margin: 0 auto 20px;
}

.c-onlineLink {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 90px;
}

.c-onlineLink p {
  display: inline;
  color: #595757;
  font-size: 14px;
}

.c-onlineLink a {
  color: #595757;
  font-size: 14px;
  text-decoration: underline;
}

.defaultArea-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  margin: 80px auto 0;
}

.defaultArea-link li a {
  position: relative;
  color: #595757;
  font-size: 14px;
}

.defaultArea-link li a::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 1px #595757;
  border-right: solid 1px #595757;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: -15px;
  bottom: 0;
  margin: auto;
}

.blazer__right {
  margin-bottom: 20px;
}

.online-shop__ttl {
	display: block;
    width: 546px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 18px;
	color:#595757;
    border-bottom: 1px solid #595757;
}

.bag__txt {
	padding: 0 40px;
    font-size: 14px;
}

.bag__link {
	    color: #595757;
}

.nav__item--logo {
	margin-bottom: 20px;
}

.nav__item--logo img {
	    width: 120px;
}

.blazer__container--four .blazer__flex {
	padding: 0 0 0 36px;
}

.costume__sidebar-title {
	padding-top: 70px;
}


/* レスポンシブ対応 */
@media (max-width: 1920px) {

  .page-title__inner,
  .license-business__inner,
  .collaboration__inner,
  .licensee-list__inner {
    width: 100%;
  }
}

@media (max-width: 1024px) {

  /*.c-inner {
    padding: 0 40px;
  }*/
	.c-licenseArea.greennoutArea {
		    padding: 60px 0 30px;
	}
	
	.online_ttl {
		    width: 200px;
	}
	
	.contact__info__head span {
		    font-size: 11px;
	}
	
	.contact__info-shop {
		font-size: 1em;
	}
	
	.online__txt {
		font-size: 10px;
		        line-height: 1.6;
	}
	
	.p-company__wrapper, .p-history__wrapper {
		gap: 0;
	}
	
	.about__messa::before {
		    top: 12px;
    left: -156px;
    width: 148px;
	}

  .license-business__inner,
  .collaboration__inner {
    flex-direction: column;
    gap: 40px;
  }
	
	.c-license__ttl--recruit::before {
		        width: 76px;
        height: 1px;
        top: 12px;
        left: 87% !important;
        transform: translateY(-50%) translateX(-50%);
	}

	.c-license__ttl--license::before {
		    top: 12px;
    left: 70% !important;
		transform: translateY(-50%) translateX(-50%);
	}

  .c-licenseArea:last-child {
    padding: 60px 0 12px;
  }

  .c-license__ttl::before {
    left: 0;
  }

  .contact-info__items {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
  }

  .licensee-list__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .recruit-categories__list {
	  display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
  }

  .ebquality__ttl {
    font-size: 20px;
  }

  .license-content p {
    font-size: 11px;
  }

  .blazer__left {
    width: 50%;
  }

  .blazer__desc-title {
    font-size: 15px;
  }

  .blazer__shop-desc {
    font-size: 12px;
  }

  .blazer__right {
    margin-bottom: 20px;
  }

  .blazer__title {
    font-size: 26px;
  }


  .blazer__left--two {
    margin-bottom: 15px;
  }

  .blazer__shop-desc{
    font-size: 12px;
  }

  .blazer__right--two {
    margin-bottom: 30px;
  }

  .blazer--two {
	  padding: 150px 0 0;
    gap: 10px;
  }

  .blazer__left {
    width: 370px;
  }

  .blazer__left {
    width: 52%;
  }

  .blazer__left--seven {
    width: 60%;
  }

  .c-license__ttl {
    font-size: 15px;
  }

  .contact-info__items {
    padding: 10px 40px;
  }

  .greennout__lists li {
	  width: 100%;
    height: auto;
  }

  .greennote__ttl {
    width: 53%;
  }

  .blazer__flex {
    /*padding: 0 20px;*/
	 padding: 0 0 0 40px;
  }

  .about__description {
    font-size: 12px;
  }

  .about__title {
    width: 50%;
    font-size: 20px;
  }

  .c-shopTtl {
    padding: 40px 0 5px;
    font-size: 16px;
  }

  .shop__list {
    padding-top: 20px;
  }

  .shop__item-name {
    font-size: 14px;
  }

  .shop__item-address {
    font-size: 12px;
  }

  .shop__item-info {
    font-size: 11px;
  }

  .costume-intro__text {
    font-size: 13px;
  }

  .recruit-categories__link {
    font-size: 11px;
  }
	
	.c-mv__ttl p {
		line-height: 54px;
		    text-align: center;
		    font-size: 38px;
	}
	
	.greennote__ttl::before {
		top: 12px;
    left: 75% !important;
    transform: translateY(-50%) translateX(-50%);
	}


}

@media (max-width: 768px) {
  .pc-display {
    display: none;
  }

  .sp-display {
    display: block;
  }

  .page-title {
    height: 400px;
  }

  .page-title__main {
    font-size: 40px;
  }

  .page-title__sub {
    font-size: 16px;
  }

  .license-business {
    padding: 60px 0;
  }

  .c-license__ttl {
    width: 100%;
    font-size: 20px;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
  }

  .collaboration {
    padding: 60px 0;
  }

  .contact-info {
    padding: 40px 0;
  }

  .contact-info__title {
    font-size: 16px;
  }

  .contact-info__value {
	          flex-direction: column;
        align-items: center;
    font-size: 18px;
  }

  .licensee-list {
    padding: 60px 0;
  }

  .licensee-list__title {
    font-size: 28px;
  }

  .licensee-item {
    padding: 15px 0;
  }

  .costume-cooperation-intro {
    padding: 60px 0;
  }

  .costume-intro__text {
    padding: 40px 0;
    font-size: 13px;
  }

  .contact-info__subtitle {
    font-size: 11px;
    margin-bottom: 0px;
  }

  .recruit-intro {
    padding: 60px 0;
  }

  .recruit-intro__main-text {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .recruit-intro__sub-text {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .recruit-intro__detail-title {
    font-size: 16px;
  }

  .recruit-intro__detail-text {
    font-size: 15px;
    margin-bottom: 20px;
  }


  .recruit-categories {
    padding: 30px 0;
  }

  .recruit-categories__link {
    font-size: 14px;
  }

  .recruit-categories__circle {
    width: 6px;
    height: 6px;
    margin-right: 8px;
  }

  .recruit-gallery {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .recruit-gallery__grid {
    gap: 20px;
  }

  .story__hero-title {
	      width: 180px;
    font-size: 26px;
  }

  .story__cafe-img--large {
    width: 62%;
    margin: inherit;
  }

  .story__cafe-img--medium {
        width: 70%;
        margin: 20px 0 0 auto;
  }

  .story__cafe {
    padding: 50px 0;
  }

  .story__cafe-img--small {
    width: 80%;
  }

  .story__bookstore-subs {
    display: block;
    margin-top: 50px;
  }

  .story__bookstore-single {
    max-width: inherit;
    width: 67%;
    margin-top: 90px;
  }

  .story__bookstore-separate .bookstore__img:first-child {
    max-width: inherit;
    width: 40%;
    margin: 20px 8% 0 auto;
  }

  .story__bookstore-separate .bookstore__img:nth-child(3) {
    margin: 30px 0 0 auto;
    max-width: inherit;
    width: 42%;
  }

  .story__school {
    padding: 80px 0 50px;
  }

  .story__school-sub--01 {
    width: 70%;
  }

  .story__school-sub--02 {
    width: 74%;
    margin: 30px 0 0 auto;
  }

  /*.story__cafe-subs {
    gap: 14px;
    margin-top: 20px;
  }*/

  .parallax_content {
    background-position: 34% 100%;
  }

  .story__closing {
    width: 100%;
    padding-bottom: 40px;
  }

  .fv-logo {
    padding: 150px 0;
  }

  .fv-logo__img {
    width: 220px;
  }

  .about__inner {
    flex-direction: column;
    align-items: center;
    padding: 0 10px 80px;
  }

  .about__sidebar {
    width: 80%;
    padding-right: 0;
    margin-bottom: 50px;
  }

  .about__content {
    flex-direction: column;
    width: 90%;
    text-align: left;
    margin: 0 auto;
	  padding-top: 0;
  }

  .about__sidebar::before {
    width: 5px;
    height: 60px;
    top: -27%;
    margin-bottom: 15px;
  }

  .c-sidebar__ttl {
    padding-top: 50px;
    font-size: 28px;
    margin-bottom: 6px;
  }
	
	.costume__sidebar-title img {
		width: 300px;
	}

  .c-sidebar__txt {
    font-size: 12px;
    margin-bottom: 0;
  }

  .about__title {
    width: 98%;
    font-size: 20px;
    line-height: 1.4;
  }

  .about__description {
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 12px;
  }

  .about__description:last-child {
    margin-bottom: 0;
  }

  .about__messa::before {
    content: none;
  }


  .c-inner {
    padding: 0 15px;
  }

  .p-about {
    padding: 60px 0;
  }

  .p-about .c-inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .p-about__sidebar {
    width: 100%;
    max-width: 200px;
    padding-top: 0;
  }

  .p-about__sidebar-decoration {
    margin-bottom: 15px;
    height: 50px;
  }

  .p-about__sidebar-title {
    font-size: 2em;
  }

  .p-about__sidebar-text {
    font-size: 0.8em;
  }

  .p-about__content {
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .p-about__title {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .p-about__title::after {
    bottom: -10px;
  }

  .p-about__description {
    font-size: 0.85em;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .p-history {
    padding: 40px 0;
  }
	
	.p-company {
		padding: 15px 0 40px;
	}

  .p-company__wrapper,
  .p-history__wrapper {
    flex-direction: column;
    align-items: inherit;
    gap: 30px;
  }

  .p-company__left,
  .p-history__left {
    width: 100%;
    max-width: 200px;
    padding-top: 0;
  }


  .p-company__left-title,
  .p-history__left-title {
	width: 110px;
    font-size: 24px;
    margin-bottom: 0;
  }

  .p-company__left-subtitle,
  .p-history__left-subtitle {
    font-size: 10px;
  }

  .p-company__right,
  .p-history__right {
    max-width: 100%;
    box-sizing: border-box;
  }

  .p-company__table {
      margin-bottom: 30px;
  }

  .p-company__table th,
  .p-company__table td {
    padding: 10px 0;
    font-size: 12px;
	      font-weight: 300;
  }

  .p-company__table th {
    width: 28%;
    padding-left: 0;
  }

  .p-company__table td {
    padding-left: 15px;
  }

  .p-company__table--executive {
    margin-top: 40px;
  }

  .p-history__list::before {
    left: 62px;
  }

  .p-history__item::before {
    left: 59px;
    top: 7px;
  }

  .p-history__year {
    width: 70px;
    margin-right: 0;
    font-size: 14px;
    text-align: left;
  }

  .p-history__description {
    padding-left: 20px;
      font-size: 12px;
  }

  .company-page__inner {
    padding: 45px 0;
  }

  .contact-info__item {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .contact-info__icon img {
    width: 20px;
  }

  .contact-info__value span {
    display: block;
    font-size: 11px;
  }

  .contact-info__text--mail img {
    width: 20px;
	  height: auto;
  }

  .c-sidebar::before {
    width: 8px;
    height: 50px;
    top: -25%;
  }

  .license-content p {
    font-size: 13px;
  }

  .collaboration__subtitle {
    font-size: 12px;
  }

  .licensee-list__inner {
    flex-direction: column;
    padding: 0 20px;
  }

  .c-license__ttl--license{
    margin-bottom: 0;
  }

  .licensee-list__grid {
    width: 100%;
    padding-top: 30px;
  }

  .licensee-item:nth-child(2) {
    border-top: none;
  }

  .recruit-categories__item {
    width: 100%;
	 display: flex;
	  align-items: center;
	  justify-content: space-between;
	  padding: 6px 0;
	  cursor: pointer;
  }

	.shop {
		padding: 40px 20px;
	}

	.shop__title {
		margin-bottom: 6px;
		font-size: 24px;
	}
	
	.shop__title img {
		width: 160px;
	}

	.shop__item {
		flex-direction: column;
		padding: 20px 0;
    gap: 4px;
    margin-bottom: 15px;
	}

	.shop__item-left,
	.shop__item-right {
		flex: none;
		padding: 0;
	}

	.shop__item-right {
		margin-top: 15px;
	}

	.shop__tab {
    height: 40px;
		padding: 12px 20px;
		font-size: 14px;
	}

  .blazer__container {
    flex-direction: column;
  }

  .blazer__left {
    width: 100%;
    padding: 0;
  }

  .blazer__title {
    width: 100px;
    font-size: 24px;
    margin: 10px auto 10px 0;
  }

  .blazer__tab-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .blazer__flex {
    padding: 0;
  }

  .blazer__right {
    margin-bottom: 24px;
  }

  .blazer__desc-title {
    font-size: 16px;
    line-height: 1.8;
  }

  .blazer__shop-desc {
    font-size: 12px;
  }

  .blazer__txtArea {
    padding: 40px 0;
  }

  .blazer--two {
    gap: 30px;
    flex-direction: column;
    padding: 50px 20px 0;
  }

  .blazer__container--column {
    width: 100%;
  }

  .blazer__left--two {
    margin-bottom: 20px;
  }

  .blazer__left{
    margin-bottom: 20px;
  }

  .blazer__container--one,
  .blazer__container--four,
  .blazer__container--five,
  .blazer__container--six,
  .blazer__container--seven {
    padding: 0 20px;
  }

  .blazer--four,
  .blazer--five,
  .blazer--six,
  .blazer--seven,
  .blazer--eight {
    padding-top: 50px;
  }

  .blazer__img--txt {
    font-size: 10px;
  }

  .blazer__img--five {
    width: 45%;
    padding-left: 15px;
    flex-shrink: 0;
  }

  .blazer--six {
    width: 100%;
  }

  .blazer__desc--six,
  .blazer__desc--seven {
    margin-bottom: 20px;
  }

  .blazer--eight {
    width: 100%;
    margin: 0 auto;
  }

  .greennout__lists li {
    /*width: calc(100% / 3);*/
    width: 100%;
    height: auto;
  }

  .greennout__info {
    max-width: inherit;
	  flex-direction: column;
    width: 93%;
    margin: 40px auto;
    gap: 20px;
  }

  .contact-info__items {
    padding: 10px 20px;
  }

  .contact-info__value--green {
    padding-right: 0;
  }

  .brand_logo {
    max-width: inherit;
    width: 86%;
  }

  .greennote__bottom {
    padding: 45px 0;
  }

  .news__inner {
    padding: 50px 20px;
  }

  .news-ttl {
    padding-bottom: 30px;
    font-size: 32px;
  }

  .news-ttl span {
	margin: 10px auto 0;
    font-size: 12px;
  }

  .news-item {
    padding-top: 10px;
  }

  .news-cat {
    width: 90px;
    font-size: 10px;
	padding: 2px 10px;
  }

  .news-date {
    margin: 6px 0;
    font-size: 12px;
  }

  .news-title {
    padding-bottom: 20px;
    font-size: 16px;
  }

  .news-content {
    padding: 20px 0;
  }

  .news-content p {
    font-size: 12px;
  }

  .Form {
    padding: 40px 20px;
  }

  .Form-Item {
    width: 100%;
  }

  .Form-Item-Label {
    margin-bottom: 0;
    font-size: 13px;
  }

  .Form-Item-Label {
    width: 50% !important;
    line-height: 1.4;
  }

  .wpcf7-form-control {
    height: 40px;
  }

  .wpcf7-textarea {
    height: 90px;
  }

  .button-wrap {
    width: 54%;
  }

  .wpcf7 .wpcf7-submit {
    width: 100%;
    font-size: 16px;
  }

  .contact-ttl {
    padding-bottom: 25px;
    font-size: 32px;
  }

  .contact__inner .contact-ttl {
            display: block;
        width: 120px;
        margin: 0 auto 10px;
  }

  .contact-txt {
    font-size: 12px;
  }

  .contact__info {
    padding: 50px 0 0;
  }

  .contact__inner{
    padding: 70px 0 0;
  }

  .contact__info-online ul {
    flex-direction: column;
  }

  .contact__info-online {
    padding: 0 20px;
  }

  .contact__info__head{
    width: 100%;
  }

  .contact__info{
    padding: 40px 0 0;
  }

  .contact__info__head p {
    font-size: 22px;
    text-align: center;
    font-weight: bold;
  }

  .contact__info__head span {
    margin-top: 10px;
    font-size: 11px;
	          text-align: center;
  }

  .contact__info__second {
    flex-direction: column;
    gap: 20px;
    border: none;
    padding-top: 20px;
  }

  .contact-info__text--online {
    width: 100%;
  }

  .online__txt {
    margin-top: 14px;
    font-size: 10px;
  }

  .contact__info-online {
    margin: 0 auto 30px;
  }

  .contact__info-other {
    padding: 40px 20px 0;
  }

  .other__ttl {
    padding: 8px 10px;
    font-size: 16px;
  }

  .contact__info-other .contact__info__head {
    width: 100%;
  }

  .contact__info-other .contact__info__head p {
    font-size: 22px;
    font-weight: bold;
  }

  .contact__info-other ul {
    flex-direction: column;
  }

  .info-other__link {
    display: block;
    font-size: 18px;
    text-align: left;
    font-weight: 500;
  }

  .info-other__link span {
    font-size: 10px;
  }

  .info-other__tel p {
    font-size: 12px;
        letter-spacing: 0.1px;
  }

  .info-other__tel {
    padding: 0;
  }

  .contact__info-online ul {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .no-main-image .c-inner {
    padding: 0 0 50px;
  }

  .shoplist__main {
    max-width: 940px;
    padding: 70px 20px 0;
  }

  .shop__subtitle {
    margin-bottom: 40px;
    font-size: 10px;
  }

  .shop__tabs {
    width: 100%;
    margin: 0 auto 10px;
    gap: 10px;
  }

  .shop__tab {
    padding: 2px 12px;
    font-size: 14px;
  }
	
	.shop__tab img {
		    height: 36px;
	}

  .shop__tab--active img {
    width: auto;
    height: 24px;
  }

  .shop__tab:nth-child(2) img {
    height: 36px;
  }
	
	.shop__tab--active[data-tab="green"] img {
		    height: 20px;
	}

  .shop__section {
    width: 100%;
  }

  .shop__section-title {
    padding: 30px 0 15px;
    font-size: 22px;
  }

  .c-shopTtl {
    padding: 10px 0 5px;
    font-size: 16px;
  }

  .shop__list {
    padding-top: 0;
  }

  .shop__item {
    padding-top: 10px;
  }

  .shop__item-name {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .shop__item-address {
    font-size: 13px;
  }

  .shop__item-right {
    width: 100%;
    gap: 20px;
    margin-top: 0;
  }

  .shop__item-info {
    width: 58%;
    font-size: 11px;
  }

  .shop__item-link {
            display: block;
	         height: 18px;
        padding-right: 18px;
        margin-top: -35px;
  }

	.shop__item.mt .shop__item-link {
		        margin-top: -55px;
	}

  .c-onlineLink {
    padding: 40px 0 50px;
  }

  .c-onlineLink p {
    font-size: 12px;
  }

  .contact-info__inner {
    width: 90%;
    padding: 0;
  }

  .defaultArea-link {
    flex-wrap: wrap;
   gap: 6px 22px;
    margin: 30px auto;
	  padding-right: 12px;
  }
	.defaultArea-link li a {
		    font-size: 13px;
	}

  .story__school-main {
    width: 84%;
    margin: 0 0 60px 16px;
  }

  .story__bookstore-img.swiper-slide {
    width: calc(100% / 1.5) !important;
  }



  .fadein-up {
    transform: translateY(20px);
    filter: brightness(1.4);
    transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1),
    filter 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition-delay: 0.6s;
  }

  .fadein-up::before {
    transition: opacity 2s ease 0.6s;
  }

  .story__closing-img::before {
    transition: transform 6s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .story__bookstore-separate .bookstore__img:nth-child(2) {
    max-width: inherit;
    width: 56%;
    height: auto;
    margin: 20px auto 0 36px;
    aspect-ratio: 600 / 400;
  }

  .story__school-subs {
    display: block;
  }

	.story__cafe-main {
  display: block;
}

	.story__cafe-right {
  width: 100%;
}

	.story__cafe-left {
 width: 100%;
}

	.story__cafe-subs.sp-display {
        width: 30%;
        display: flex;
        gap: 14px;
        margin-top: -185px;
}

	.c-mv__ttl p {
		    font-size: 20px !important;
		    text-align: center !important;
		        line-height: 24px;
	}

	.blazer__num {
		font-size: 11px;
	}

	.shop__item-link::before {
		    top: 14%;
	}

  .c-licenseArea {
    width: 100%;
    padding: 40px 20px;
    text-align: left;
    flex-direction: column;
  }

  .recruit-categories__list {
	  display: flex;
        flex-direction: column;
        width: 90%;
        margin: 50px auto;
        gap: 20px;
	  	padding: 0;
  }
	
	.p-drawer-nav__item:nth-child(7) {
	margin-bottom: 10px;
	}
	
	.c-license__ttl--recruit::before,
	.c-license__ttl--license::before,
	.greennote__ttl::before {
		content:none;
	}
	
	.main__inner {
		padding: 0;
	}
	
	.blazer__container--five .blazer__left {
		width: 100%;
	}
	
	.blazer__title--cotton,
	.blazer__title--lamb{
		width: auto;
	}
	
	.blazer__title--shoes,
	.blazer__title--school{
		width: auto;
	}
	
	.blazer__title--skirts,
	.blazer__title--coat {
		width: auto;
	}
	
	.blazer__title--muffler {
		width: auto;
	}
	
	.p-company__map-link::before {
		    top: 10%;
	}
	
	.about__sidebar-title {
		    width: 140px;
	}
	
	.news-ttl img {
		width: 80px;
	}
	
	.shop__item-info a {
		white-space: nowrap;
		font-size: 12px;
	}
	
	.contact__container {
  padding: 20px 0;
}

	.contact__info-shop {
		font-size: 14px;
	}
	
	.info-other__tel p {
		font-size: 10px;
	}
	
	.contact__info__head img {
		width: 160px;
	}
	
	.contact__info__head img.tel_ttl {
		    width: 38px;
	}
	
	.contact__info-shop::before {
		width: 112%;
	}
	
	.license__sidebar-title {
		width: 232px;
	}
	
	.online-shop__ttl {
    width: 86%;
    margin: 0 auto 20px;
    font-size: 14px;
	}
	
	.top-news {
		padding-bottom: 50px;
	}
	
	.top-news__inner {
		    flex-direction: column-reverse;
		    max-width: 90%;
    width: 100%;
    gap: 20px;
		padding: 0;
	}
	
	.top-news__lists {
		width: 100%;
	}
	
	.top-news__date {
		    font-size: 9px;
	}
	
	.top-news__tag {
		    width: 70px;
		    font-size: 9px;
	}
	
	.top-news__ttl {
		font-size: 10px;
	}
	
	.top-news__link {
		    gap: 10px;
	}
	
	.c-sidebar__ttl--news img {
		    width: 70px;
	}
	
	.c-sidebar__ttl--news span {
		font-size: 10px;
	}
	
	.bag__txt {
		padding: 0 20px;
		font-size: 10px;
		        letter-spacing: 1px;
	}
	
	.c-license__ttl--license {
		margin-bottom: 20px;
	}
	
	.license-page-ttl {
		margin-bottom: 10px;
	}

	.colla__ttl {
		    width: 168px;
	}
	
	.c-licenseArea--recruit {
		padding: 0 20px !important;
	}
	
	.c-license__ttl--recruit {
		margin-top: 40px;
	}
	
	.c-licenseArea.greennoutArea {
		padding: 50px 20px 12px;
	}
	
	.contact-info__value--green {
		font-size: 16px;
	}
	
	.greennote__ttl {
		letter-spacing: 1.2px;
	}
	
	.bag__link {
		display: block;
    	letter-spacing: 1.2px;
	}
	
	.contact-info__text img {
	margin-bottom: 4px;
}
	
	.contact__info-online ul:last-of-type li:last-child div {
		padding: 0;
	}
	
	.top-news__tag.is-greennout img {
		height: 19px;
	}
	
	.ebqualityArea {
		padding: 50px 20px !important;
	}
	
	.blazer__container--one .blazer__flex, .blazer__container--six .blazer__flex, .blazer--seven .blazer__flex {
		padding: 0;
	}
	
	.blazer__container--four .blazer__flex {
		padding: 0;
	}
	
	.blazer--eight .blazer__flex,
	.blazer__container--five .blazer__flex {
		padding: 0;
	}
	
	.blazer__container--one .blazer__title img, .blazer--five .blazer__title img, .blazer__container--seven .blazer__title img {
		height: 24px;
	}
	.blazer__container--column .blazer__title img {
		height: 30px;
	}
	
	.blazer__flex--two .blazer__title--lamb img {
		height: 28px;
	}
	
	.blazer__container--four .blazer__title img, .blazer--eight .blazer__title img {
		height: 24px;
	}
	
	.blazer__container--six .blazer__title img {
		height: 30px;
	}
	
	.contact-info__value::before {
		display: block;
		width: 18px;
    	height: 18px;
    	left: 60px;
    	top: 8%;
	}
	
	.greennout__lists {
		flex-direction: column;
		gap: 20px;
	}

	
	.recruit__sidebar-title {
		width: 120px;
		margin: 0 auto 5px;
	}
	
	.licensee-item__link {
  		font-size: 11px;
	}
	
	.contact-info__items--greennout.pc-display {
	display: none;
	} 

	.contact-info__items--greennout.sp-display {
		display: block;
	} 
	
	.defaultArea-link li a::before {
		width: 4px;
    	height: 4px;
		right: -9px;
	}
	
	.blazer__desc {
  		margin-bottom: 20px;
	}
	
	.license-page-ttl__img {
		width: 164px;
	}
	
}