/*
Theme Name: HOPEBEAR.inc Original Theme
Description: HOPEBEAR.inc オリジナルテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: HOPEBEAR.inc Original Theme
*/

@charset "utf-8";

/*********************************************
全体共通
*********************************************/

:root {
	--footer-h: 72px;
	--color-text: #333;
	--color-white: #ffffff;
  --color-black-10: rgba(29, 29, 29, 0.1);
	--font-sanserif: "Futura PT", "Zen Kaku Gothic New", sans-serif;
}
* {
	box-sizing: border-box;
}
html{
  font-size: 14px;
}
body {
  font-family: "Times New Roman", "Times", "Tinos", "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 1.522vh;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-align: justify;
  font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
	color: var(--color-text);
	height: 100%;
  background-color: var(--color-white);
  position: relative;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}
img {
  width: 100%;
  height: auto;
  line-height: 0;
}
a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.4s;
  opacity: 1;
}
.container {
	width: 100%;
}
main {
	width: 100%;
}
.h-main {
	height: calc(100vh - var(--footer-h));
}
.h-main img {
  object-fit: cover;
}
.sp-only {
  display: none!important;
}
.pc-only {
  display: block!important;
}
@media (max-width: 1024px) {
  .h-main {
    height: auto;
  }
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
  body { 
    font-size: 3.47vw;
  }
}

/*********************************************
アニメーション（共通）
*********************************************/
/* フェードイン */
.fadeIn {
  opacity: 0;
  transition: 1s;
}
.fadeIn.is-show {
  opacity: 1;
}
/* ズームしながらフェードイン */
.fadeIn_zoom {
  opacity: 0;
  transform: scale(0.9);
  transition: all 1s ease;
  filter: blur(20px);
}
.fadeIn_zoom.is-show {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
/* 右からフェードイン */
.fadeIn_right {
  opacity: 0;
  transform: translate(10px, 0);
  transition: 1s;
}
.fadeIn_right.is-show {
  opacity: 1;
  transform: translate(0, 0);
}



/* 下からフェードイン */
.fadeIn_up {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform .6s ease;
}
.fadeIn_up.is-show {
  opacity: 1;
  transform: translateY(0);
}
/* 左からフェードイン */
.fadeIn_left {
  opacity: 0;
  transform: translate(-10px, 0);
  transition: 1s;
}
.fadeIn_left.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

/*********************************************
ヘッダー（SP only）
*********************************************/
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	width: 100%;
}
.header-inner {
	position: relative;
}
.header-bar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6.67vw;
  padding-right: 5.07vw;
  z-index: 210
}
.header.is-open .header-bar {
	pointer-events: none;
}
.header.is-open .header-bar .header-logo {
	visibility: hidden;
}
.header-logo img {
	width: 13.33vw;
	height: auto;
}
.header-toggle {
	position: relative;
	z-index: 210;
	width: 6.67vw;
	height: 2.94vw;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}
.header-toggle::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 6vw 1.34vw rgba(255, 255, 255, 0.9);
	z-index: -1;
	border-radius: 50%;
}
.header.is-open .header-toggle::before {
	box-shadow: none;
}
.header.is-open .header-bar .header-toggle {
	pointer-events: auto;
}
.header-toggle-line {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1.5px;
	background: var(--color-text);
	transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.header-toggle-line:nth-child(1) {
	top: 0;
}
.header-toggle-line:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}
.header-toggle-line:nth-child(3) {
	bottom: 0;
}

/* 開いている間: ハンバーガー→バツに変形 */
.header.is-open .header-toggle-line:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	background: var(--color-white);
}
.header.is-open .header-toggle-line:nth-child(2) {
	opacity: 0;
}
.header.is-open .header-toggle-line:nth-child(3) {
	bottom: 50%;
	transform: translateY(50%) rotate(-45deg);
	background: var(--color-white);
}

/* 開閉メニュー本体 */
.header-nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 205;
	width: 100%;
	height: 100vh;
	background: var(--color-text);
	color: var(--color-white);
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header.is-open .header-nav {
	opacity: 1;
	visibility: visible;
}
.header-nav-inner {
	padding: 6.67vw 6.67vw 24vw;
}
.header-nav-logo {
	display: block;
	margin-bottom: 16vw;
}

.header-nav-logo img {
	width: 13.33vw;
	height: auto;
	filter: brightness(0) invert(1);
}
.header-nav-list {
  margin-bottom: 5.34vw;
}
.header-nav-item {
	border-bottom: 0.5px solid var(--color-black-10);
}
.header-nav-item a {
	display: flex;
	align-items: baseline;
	gap: 8vw;
  padding-bottom: 1.34vw;
}
.header-nav-en {
	font-size: 5.6vw;
}
.header-nav-ja {
	font-size: 2.67vw;
}
.header-contact {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 0.5px solid var(--color-white);
  padding-bottom: 10.67vw;
	margin-bottom: 8vw;
}

.header-contact-text {
	font-size: 4vw;
	font-weight: 600;
}

.header-contact-btn {
  display: flex;
  align-items: center;
  gap: 2.67vw;
  font-size: 4vw;
  font-family: var(--font-sanserif);
  height: 9.34vw;
  padding: 0 5.34vw;
  border-radius: 999px;
  color: var(--color-text);
  background: var(--color-white);
}
.header-contact-arrow {
	width: 5.34vw;
}
.header-gallery {
	border-bottom: 0.5px solid var(--color-white);
  padding-bottom: 8vw;
  margin-bottom: 8vw;
}
.header-gallery-label {
  font-size: 4vw;
  margin-bottom: 5.34vw;
}
.header-gallery-list li {
  font-family: var(--font-sanserif);
  font-size: 4vw;
  margin-bottom: 1.34vw;
}
.header-gallery-item-shop a {
	display: flex;
	align-items: center;
	gap: 2.67vw;
}
.header-gallery-icon {
  width: 3.2vw;
  height: auto;
}
.header-sub-list li {
  font-family: var(--font-sanserif);
  font-size: 4vw;
  margin-bottom: 1.34vw;
}
body.is-menu-open {
	overflow: hidden;
}


/*********************************************
フッター
*********************************************/
.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: var(--footer-h);
	background: var(--color-white);
}
.footer-inner {
	height: 100%;
	padding: 0 30px;
}
.footer-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}
.footer::after {
    content: "";
    width: calc(100% - 60px);
    height: 1px;
    background: var(--color-black-10);
    position: absolute;
    top: 0;
    right: 30px;
}
.footer-bar-left {
	display: flex;
	align-items: center;
	gap: 60px;
}
.footer-bar-label {
	margin: 0;
	font-size: 1.66vh;
	white-space: nowrap;
}
.footer-bar-list {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-bar-item {
	font-family: var(--font-sanserif);
	position: relative;
	margin-right: 20px;
	padding-right: 20px;
	white-space: nowrap;
}
.footer-bar-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 14px;
	background: var(--color-text);
}
.footer-bar-item a {
	display: flex;
	align-items: center;
}
.footer-bar-item a:hover {
  opacity: 0.5;
}
.footer-bar-icon {
	width: 16px;
	height: 16px;
	margin-right: 8px;
}
.footer-bar-contact {
	display: flex;
	align-items: center;
}
.footer-bar-contact-text {
	margin-right: 30px;
	font-size: 1.49vh;
  font-weight: 600;
	white-space: nowrap;
}
.footer-bar-contact-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 20px;
	height: 3.4vh;
	border: 1px solid var(--color-black-10);
	border-radius: 999px;
	font-family: var(--font-sanserif);
	color: var(--color-text);
	background: var(--color-white);
	transition: all 0.4s;
}

.footer-bar-contact-btn:hover {
	background: var(--color-text);
	color: var(--color-white);
}

.btn-arrow-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.74vh;
	height: 1.74vh;
}
.btn-arrow {
	width: 1.74vh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.4s;
}
.btn-arrow--bk {
	opacity: 1;
}
.btn-arrow--wh {
	opacity: 0;
}
.footer-bar-contact-btn:hover .btn-arrow--bk {
	opacity: 0;
}
.footer-bar-contact-btn:hover .btn-arrow--wh {
	opacity: 1;
}

@media (max-width: 1024px) {
  .btn-arrow {
    width: 5.34vw;
  }
}

/*********************************************
サイドバー
*********************************************/
.side-menu {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	height: calc(100vh - var(--footer-h));
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 60px 50px 20px;
}
.sidebar-inner {
  height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.side-menu-logo img {
	width: 120px;
	height: auto;
}
.side-menu-list {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

.side-menu-list::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 16.31vh 10.87vh rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	z-index: -1;
}
.side-menu-item {
	margin-bottom: 8px;
  white-space: nowrap;
  font-family: var(--font-sanserif);
}

.side-menu-nav a:hover {
  opacity: 0.5;
}

/*********************************************
トップページ
*********************************************/
.home-main {
	overflow-x: auto;
	overflow-y: hidden;
	display: flex;
}
.home-main > section {
	flex-shrink: 0;
}

@media (max-width: 1024px) {
	.home-main {
		overflow-x: hidden;
		overflow-y: auto;
		flex-direction: column;
	}
	.home-main > section {
		flex-shrink: 1;
		width: 100% !important;
	}
}
/******************************
セクションタイトル（共通）
******************************/
.sec-title-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
  color: var(--color-white);
}
.sec-title_en {
  font-size: 13.05vh;
  line-height: 1;
}
.sec-title_ja {
  font-size: 3.27vh;
}
@media (max-width: 1024px) {
  .sec-title-wrap {
    display: flex;
    left: 3.94vh !important;
  }
  .sec-title_en {
    font-size: 16vw;
  }
  .sec-title_ja {
    font-size: 4vw;
  }
}
/******************************
インデックス（共通）
******************************/
.index-wrap {
  position: absolute;
  display: flex;
  gap: 30px;
  font-family: var(--font-sanserif);
  opacity: 50%;
  padding: 20px 20px;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .index-wrap-sp-only {
    position: absolute;
    transform: translateX(-50%) rotate(90deg);
    right: 0;
    z-index: 1;
  }
  .index-wrap {
    font-size: 1.86vw;
    color: var(--color-white);
    gap: 4vw;
    padding: 2.66vw 4vw;
  }
  }
/******************************
fv
******************************/
.sec_fv {
  width: 100vw;
}
.fv-inner {
  position: relative;
  padding-left: 140px;
}
.fv-img-wrap {
  display: flex;
}

.fv-img {
	position: relative;
	overflow: hidden;
}

.fv-img--left {
	flex: 0 0 28%;
}

.fv-img--right {
	flex: 1 1 auto;
}

.fv-img-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 2s ease;
}

.fv-img-slide.is-active {
	opacity: 1;
}

.fv-catch {
	position: absolute;
	top: 46%;
	left: 23.5vw;
	transform: translateY(-50%);
	z-index: 2;
	color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.fv-title {
	font-size: 15.22vh;
}

.fv-lead {
  font-size: 3.7vh;
  white-space: nowrap;
  padding-left: 35.5%;
}

.fv-scroll {
	position: absolute;
	top: 50%;
	right: -10px;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-white);
	font-family: var(--font-sanserif);
	font-weight: 400;
	z-index: 1;
}

.fv-scroll-line {
	position: relative;
	display: block;
	width: 40px;
	height: 1px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0);
}

.fv-scroll-line::after {
	content: "";
	position: absolute;
	width: 60%;
	height: 100%;
	background: #fff;
	animation: scrollLineFlowX 1.8s ease-in-out infinite;
}

@keyframes scrollLineFlowX {
	0% {
		left: -60%;
	}
	100% {
		left: 100%;
	}
}

@media (max-width: 1024px) {
  .fv-inner {
    padding-left: 0;
  }
  .fv-img-wrap {
    display: flex;
    flex-direction: column;
    height: 100lvh;
  }
  .fv-img-wrap img {
    height: 100%;
  }
  .fv-img--left {
    flex: unset;
    height: 34.65vh;
  }
  .fv-img--right {
    flex: unset;
    height: calc(100vh - 34.65vh);
  }
  .fv-catch {
    top: 35.2vh;
    left: 3.94vh;
  }
  .fv-title {
    font-size: 18.67vw;
    line-height: 1.6;
  }
  .fv-lead {
    font-size: 4.54vw;
    padding-left: 0;
  }
  .fv-scroll {
    transform: translateX(-50%) rotate(90deg);
    top: unset;
    right: unset;
    left: 50%;
    bottom: 6.67vw;
    color: var(--color-text);
    font-size: 2.67vw;
  }
  .fv-scroll-line {
    width: 10.67vw;
  }
  .fv-scroll-line::after {
    background: var(--color-text);
  }
}
/******************************
メッセージ
******************************/
.sec_message {
  margin-right: 30px;
}
.message-inner {
  position: relative;
}
.message-img-wrap {
  display: flex;
}
.message-right {
  position: relative;
}
.message-img {
  position: absolute;
  width: 72.5%;
  top: 20%;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  filter: drop-shadow(80px 50px 150px rgba(0, 0, 0, 0.3)) blur(20px);
  opacity: 0;
  transition: all 1s ease;
}
.message-img.is-show {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  filter: drop-shadow(80px 50px 150px rgba(0, 0, 0, 0.3)) blur(0);
}
.message-copy {
  position: absolute;
  color: var(--color-white);
  font-size: 3.7vh;
  transform: translateX(-50%);
  top: 9%;
  left: 35%;
}
@media (max-width: 1024px) {
  .sec_message {
    margin-right: 0;
    margin-bottom: 4vw;
  }
  .message-img-wrap {
    display: flex;
    flex-direction: column;
  }
  .message-copy {
    font-size: 5.6vw;
    line-height: 1.4;
    top: 40vw;
    left: 37.5%;
  }
  .message-img {
    width: 81.34%;
    top: unset;
    bottom: 16.5vw;
  }
}
/******************************
Beriref
******************************/
.sec_belief {
  margin-right: 30px;
}
.belief-inner {
  position: relative;
}
.belief-bg-wrap {
  display: flex;
}
.belief-bg-right-wrap {
  position: relative;
}
.belief-txt-wrap {
  position: absolute; 
  display: flex;
  gap: 80px;
  left: 12.5%;
  top: 41.5%;
}
.belief-txt {
  font-size: 2.18vh;
  line-height: 2;
}
@media (max-width: 1024px) {
  .sec_belief {
    margin-right: 0;
    margin-bottom: 4vw;
  }
  .belief-txt-wrap {
    display: flex;
    flex-direction: column;
    gap: 12vw;
    top: 40.5%;
    left: 3.94vh;
  }
  .sec_belief .sec-title_en {
    transform: translateX(-41%) rotate(90deg);
    font-size: 18.67vw;
  }
  .belief-bg-wrap {
    display: flex;
    flex-direction: column;
  }
  .belief-txt {
    font-size: 3.47vw;
    line-height: 1.7;
  }
}
/******************************
approach
******************************/
.approach-inner {
  display: flex;
}
.approach-title-warp {
  position: relative;
}
.approach-title-warp .sec-title-wrap {
  left: 21.5%;
}
.approach-title-warp .sec-title_ja {
  margin-right: -13%;
}
.approach-content-wrap {
  position: relative;
  width: 163.05vh;
  clip-path: inset(0);
}
.approach-content-wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: calc(100vh - var(--footer-h));
  background-position: center;
  background-size: cover;
  background-image: url(./images/approach_003.png);
}
.approach-content {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
}
.approach-content-inner {
	display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 130.44vh;
}
.approach-content-left {
  white-space: nowrap;
}
.approach-content-title {
  font-size: 3.05vh;
  font-weight: 600;
  margin-bottom: 20px;
}

.approach-content-text {
  font-family: var(--font-sanserif);
}

.approach-content-list {
	list-style: none;
  width: fit-content;
}

.approach-content-item {
	display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 10px;
	border-bottom: 1px solid var(--color-black-10);
}

.approach-content-num {
	flex: 0 0 4.35vh;
	font-size: 3.27vh;
}

.approach-content-name {
	flex: 0 0 19.57vh;
	font-size: 2.83vh;
  line-height: 1.2;
}

.approach-content-desc {
	flex: 0 0 36.96vh;
	font-family: var(--font-sanserif);
}

.approach-bg-wrap {
  display: flex;
}
@media (max-width: 1024px) {
  .sec_approach .sec-title-wrap {
    top: 37.5%;
  }
  .approach-inner {
    display: flex;
    flex-direction: column;
  }
  .approach-bg-wrap {
    display: flex;
    flex-direction: column;
  }
  .approach-content-wrap {
    width: 100%;
  }
  .approach-content-wrap::before {
    position: fixed;
    height: 100vh;
    background-image: url(./images/approach_003_sp.png);
    background-position-y: bottom;
  }
  .approach-content-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .approach-content-left {
    white-space: normal;
    margin-bottom: 26.67vw;
  }
  .approach-content {
    transform: unset;
    top: unset;
    left: unset;
    margin: 6.67vw;
    margin-top: 13.34vw;
    margin-bottom: 40vw;
    width: calc(100% - (6.67vw * 2));
  }
  .approach-content-title {
    font-size: 5.34vw;
    line-height: 1.45;
    margin-bottom: 4vw;
  }
  .approach-content-text .flex {
    display: inline-flex;
  }
  .approach-content-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    margin-bottom: 8vw;
  }
  .approach-content-num {
    font-size: 3.74vw;
    flex: unset;
  }
  .approach-content-name {
    font-size: 6.67vw;
    flex: unset;
    margin-bottom: 2.67vw;
  }
  .approach-content-desc {
    flex: unset;
    margin-bottom: 8vw;
  }
}
/******************************
事業紹介タイトル（共通）
******************************/
.approach-title-wrap {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 20%;
  left: 80px;
  transform: translateY(-50%);
}
.approach-title {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 50px;
}
.approach-title_en {
  font-size: 10.87vh;
}
.approach-title_ja {
  font-size: 2.18vh;
  font-weight: 600;
}
.approach-title_desc {
  font-family: var(--font-sanserif);
}
@media (max-width: 1024px) {
  .approach-title-wrap {
    position: relative;
    top: 0;
    left: 0;
    transform: unset;
    gap: 6.67vw;
  }
  .approach-title {
    display: flex;
    flex-direction: column;
    gap: 2.67vw;
  }
  .approach-title_en {
    font-size: 13.34vw;
    line-height: 1.1;
  }
  .approach-title_ja {
    font-size: 3.74vw;
    white-space: nowrap;
  }

}
/******************************
事業紹介詳細（共通）
******************************/
.sec_approach-item {
  clip-path: inset(0);
}
.sec_approach-item::before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: calc(100vh - var(--footer-h));
  background-position: center;
  background-size: cover;
}
.approach-item-inner {
  display: flex;
}
.approach-item-right-inner {
  position: relative;
  padding-right: 300px;
}
.approach-item-wrap {
  position: relative;
  display: flex;
  gap: 260px;
}
.approach-item {
  position: relative;
  display: flex;
  gap: 60px;
}
.approach-item:first-child {
  margin-left: -80px;
  gap: 70px;
}
.approach-item-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.approach-item-title {
  font-size: 5.44vh;
  line-height: 1.2;
  white-space: nowrap;
}
.approach-item-title span {
  font-size: 19px;
}
.approach-item-img {
  line-height: 0;
}
.approach-item-desc {
  font-family: var(--font-sanserif);
  width: 41.31vh;
}
@media (max-width: 1024px) {
  .sec_approach-item::before {
    height: 100vh;
    background-position-y: bottom;
  }
  .approach-item {
    display: flex;
    flex-direction: column;
    gap: 6.67vw;
  }
  .approach-item-inner {
    display: flex;
    flex-direction: column;
  }
  .approach-item-right {
    padding: 6.67vw;
    padding-bottom: 24vw;
  }
  .approach-item-right-inner {
    padding: 0;
  }
  .approach-item-wrap {
    display: flex;
    flex-direction: column;
    gap: 26.67vw;
  }
  .approach-item:first-child {
    margin-left: 0;
    gap: 6.67vw;
    padding-top: 13.34vw;
  }
  .approach-item-title-wrap {
    padding-top: 0 !important;
    gap: 4vw;
  }
  .approach-item-title {
    font-size: 8vw;
  }
  .approach-item-desc {
    width: 77.34vw;
  }
  .approach-item-title span {
    font-size: 2.54vw;
  }
}
/******************************
brittojapan
******************************/
.sec_brittojapan::before {
  background-image: url('./images/brittojapan_002.png');
}
.brittojapan001 {
  padding-top: 43.48vh;
}
.brittojapan001 .approach-item-title-wrap {
  padding-top: 20px;
}
.brittojapan002_img01--wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.brittojapan001_img01 {
  width: 67.4vh;
}
.brittojapan002_img01 {
  width: 80.44vh;
}
.brittojapan002_img02 {
  width: 70.66vh;
  margin-top: 28.27vh;
} 

.img-copylight {
  font-family: var(--font-sanserif);
  line-height: 2.3;
}
.brittojapan003_img01 {
  width: 54.35vh;
  margin-top: 28.27vh;
}
.brittojapan003_img02-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5vh;
}
.brittojapan003_img02 {
  width: 43.48vh;
}
.logo_disneybritto {
  width: 15vh;
}
.brittojapan003_img02--wrap {
  margin-top: 6.53vh;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.brittojapan004 {
  padding-top: 8.8vh;
}
.brittojapan004_img01--wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.brittojapan004_img01 {
  width: 67.4vh;
}
.brittojapan004_img02 {
  width: 42.4vh;
}
@media (max-width: 1024px) {
  .sec_brittojapan::before {
    background-image: url(./images/brittojapan_002_sp.png);
  }
  .brittojapan001_img01 {
    margin-left: -6.67vw;
    width: 90.67vw;
  }
  .brittojapan002_img01 {
    width: 74.67vw;
  }
  .brittojapan002_img02 {
    width: 62.67vw;
    margin-top: 4vw;
    margin-left: calc(100% - 62.67vw);
  }
  .brittojapan002_img01--wrap {
    gap: 6.67vw;
  }
  .brittojapan003 {
    gap: 4vw;
  }
  .brittojapan003_img01 {
    width: 58.67vw;
    margin-top: 0;
  }
  .brittojapan003_img02 {
    width: 42.67vw;
    margin-left: calc(100% - 42.57vw);
  }
  .brittojapan003_img02--wrap {
    margin-top: 0;
    gap: 6.67vw;
  }
  .brittojapan004 {
    padding-top: 0;
    display: unset;
  }
  .brittojapan004_img01--wrap {
    display: flex;
    flex-direction: column-reverse;
    gap: calc(6.67vw + 42.5vw);
  }
  .brittojapan004_img01 {
    width: 76vw;
    margin-left: calc(100% - 76vw);
  }
  .brittojapan004_img02 {
    width: 42.67vw;
    position: absolute;
    top: 38vw;
  }
}
/******************************
.artgallery
******************************/
.sec_artgallery::before {
  background-image: url('./images/artgallery_002.png');
}
.artgallery001 {
  padding-top: 38.05vh;
}
.artgallery001_img01 {
  width: 69.57vh;
}
.artgallery001 .approach-item-title-wrap {
  padding-top: 80px;
}
.artgallery002 {
  padding-top: 9.79vh;
}
.artgallery002_img01 {
  width: 50vh;
}
.artgallery002 .approach-item-title-wrap {
  padding-top: 7.61vh;
}
@media (max-width: 1024px) {
  .sec_artgallery::before {
    background-image: url('./images/artgallery_002_sp.png');
  }
  /****/
  .artgallery001_img01 {
    width: 82.67vw;
  }
  .artgallery002 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 0;
  }
  .artgallery002_img01 {
    width: 61.34vw;
  }
}
/******************************
licensing-management
******************************/
.sec_licensing-management::before {
  background-image: url('./images/licensing-management_002.png');
}
.licensing-management001 {
  padding-top: 36.96vh;
}
.licensing-management001_img01 {
  width: 79.35vh;
}
.licensing-management001 .approach-item-title-wrap {
  padding-top: 50px;
}
.licensing-management002 {
  flex-direction: column;
  align-items: center;
  padding-top: 7.61vh;
  gap: 30px;
}
.licensing-management002_img01 {
  width: 50vh;
}
.licensing-management002_img02--warp {
  display: flex;
  gap: 60px;
}
.licensing-management002_img02 {
  width: 71.74vh;
}
.licensing-management002_img02--warp .approach-item-title-wrap {
  padding-top: 50px;
}

@media (max-width: 1024px) {
  .sec_licensing-management::before {
    background-image: url('./images/licensing-management_002_sp.png');
  }
  .licensing-management001 {
    position: relative;
    right: -5.3vw;
  }
  .licensing-management001_img01 {
    width: 88vw;
  }
  .licensing-management002 {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4vw;
  }
  .licensing-management002_img01 {
    width: 65.34vw;
  }
  .licensing-management002_img02--warp {
    display: flex;
    flex-direction: column;
    gap: 6.67vw;
  }
  .licensing-management002_img02 {
    width: 72vw;
    margin-left: calc(100% - 72vw);
  }
}
/******************************
artjam
******************************/
.sec_artjam::before {
  background-image: url('./images/artjam_002.png');
}
.artjam001 {
  padding-top: 38.05vh;
}
.artjam001_img01 {
  width: 46.74vh;
}
.artjam001 .approach-item-title-wrap {
  padding-top: 190px;
}
.artjam002 {
  padding-top: 13.05vh;
}
.artjam002_img01 {
  width: 45.66vh;
}
.artjam002 .approach-item-title-wrap {
  padding-top: 220px;
}
.artjam003 {
  display: flex;
  flex-direction: column;
  padding-top: 9.79vh;
}
.artjam003_img01 {
  width: 47.83vh;
}
@media (max-width: 1024px) {
  .sec_artjam::before {
    background-image: url('./images/artjam_002_sp.png');
  }
  .artjam001_img01 {
    width: 72vw;
  }
  .artjam002 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 0;
  }
  .artjam002_img01 {
    width: 64vw;
  }
  .artjam003 {
    padding-top: 0;
  }
  .artjam003_img01 {
    width: 69.34vw;
  }
}
/******************************
online
******************************/
.sec_online {
  margin-right: 30px;
}
.sec_online::before {
  background-image: url('./images/online_002.png');
}
.online001 {
  padding-top: 36.96vh;
}
.online001_img01 {
  width: 79.35vh;
}
.online001 .approach-item-title-wrap {
  padding-top: 50px;
}
.online002-inner {
  display: flex;
}
.online002_img01 {
  width: 89.14vh;
}
.online002_img02 {
  width: 43.48vh;
  padding-top: 41.31vh;
  margin-left: -50px;
  z-index: -1;
}
.online002_img03 {
  width: 26.09vh;
  padding-top: 8.7vh;
  margin-left: -150px;
  margin-right: 60px;
}
.online002_img04 {
  width: 52.18vh;
  padding-top: 27.18vh;
  margin-right: 60px;
}
.online002_img05 {
  width: 27.72vh;
  padding-top: 13.05vh;
}
.online002_img06 {
  width: 42.4vh;
  padding-top: 42.4vh;
  margin-left: -40px;
  z-index: -1;
}
.online002 .approach-item-desc {
  padding-top: 17.4vh;
  margin-left: -70px;
}
@media (max-width: 1024px) {
  .sec_online {
    margin-bottom: 4vw;
  }
  .sec_online::before {
    background-image: url('./images/online_002_sp.png');
  }
  .online001_img01 {
    width: 86.67vw;
  }
  .online002-inner {
    display: flex;
    flex-direction: column;
  }
  .online002_img01 {
    width: 85.34vw;
    position: relative;
    right: calc(-6.67vw - (100vw - 85.34vw - (6.67vw * 2)));
  }
  .online002_img02 {
    width: 41.34vw;
    margin-left: 0;
    padding-top: 0;
    margin-top: -2.67vw;
  }
  .online002_img03 {
    width: 32vw;
    padding-top: 0;
    margin-right: 0;
    margin-left: 51.34vw;
    margin-top: -6.67vw;
  }
  .online002_img04 {
    width: 69.34vw;
    padding-top: 6.67vw;
    margin: 0;
  }
  .online002_img05 {
    width: 34vw;
    padding-top: 6.67vw;
    margin-left: 6vw;
  }
  .online002_img06 {
    width: 52vw;
    padding-top: 0;
    margin-left: 34.67vw;
    margin-top: -10.67vw;
  }
  .online002 .approach-item-desc {
    padding-top: 6.67vw;
    margin-left: 0;
  }
}
/******************************
company
******************************/
.sec_company {
  margin-right: 30px;
}
.company-title-warp {
  position: relative;
}
.company-title-warp .sec-title-wrap {
    left: 24.5%;
}
.company-title-warp .sec-title_ja {
    margin-right: -6%;
}
.company-inner {
  display: flex;
}
.company-bg-wrap {
  display: flex;
}
.company-content-wrap {
  position: relative;
  width: 163.05vh;
  clip-path: inset(0);
}
.company-content-wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: calc(100vh - var(--footer-h));
  background-position: center;
  background-size: cover;
  background-image: url(./images/company_003.png);
}
.company-content {
  position: relative;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: fit-content;
}
.company-content-title {
  font-size: 4.57vh;
  margin-bottom: 50px;
}
.company-content-table-wrap {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  justify-content: space-between;
  gap: 13.04vh;
}
.company-content-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-black-10);
}
.company-content-row dt {
  flex: 0 0 11.96vh;
  font-size: 1.74vh;
  font-weight: 600;
}
.company-content-row dd {
  flex: 1;
  margin: 0;
  font-family: var(--font-sanserif);
  white-space: nowrap;
}
.company-content-officers li {
  display: flex;
  gap: 1em;
}
.company-content-officer-role {
  flex: 0 0 7.5em;
}
.company-content-officer-name {
  flex: 1;
}
.company-content-business {
  counter-reset: business;
}
.company-content-business li {
  counter-increment: business;
}
.company-content-business li::before {
  content: counter(business) ".";
  margin-right: 0.4em;
}
.company-content-officers {
  white-space: nowrap;
}
.company-content-note {
  margin-top: 70px;
  font-family: var(--font-sanserif);
}
@media (max-width: 1024px) {
  .sec_company {
    margin-bottom: 4vw;
  }
  .company-inner {
    display: flex;
    flex-direction: column;
  }
  .company-title-warp .sec-title-wrap {
    top: 40%;
  }
  .company-bg-wrap {
    display: flex;
    flex-direction: column;
  }
  .company-content-wrap {
    width: 100%;
  }
  .company-content-wrap::before {
    position: fixed;
    height: 100vh;
    background-image: url(./images/company_003_sp.png);
  }
  .company-content {
    transform: unset;
    top: unset;
    left: unset;
    padding: 6.67vw;
    padding-top: 13.34vw;
    padding-bottom: 24vw;
  }
  .company-content-inner {
    display: flex;
    flex-direction: column;
  }
  .company-content-title {
    margin-bottom: 9.34vw;
  }
  .company-content-table-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }
  .company-content-row {
    display: flex;
    flex-direction: column;
    gap: 2.67vw;
    padding-top: 0;
    padding-bottom: 8vw;
    margin-bottom: 8vw;
  }
  .company-content-table--right .company-content-row:last-of-type {
    margin-bottom: 0;
  }
  .company-content-row dt {
    flex: unset;
  }
  .company-content-row dd {
    white-space: normal;
  }
  .company-content-note {
    margin-top: 13.34vw;
  }
}
/******************************
recruit
******************************/
.sec_recruit {
  margin-right: 30px;
}
.recruit-title-warp {
  position: relative;
}
.recruit-title-warp .sec-title-wrap {
  right: 13.5%;
}
.recruit-title-warp .sec-title_ja {
  margin-right: -9.5%;
}
.recruit-inner {
  display: flex;
}
.recruit-bg-wrap {
  display: flex;
}
.recruit-content-wrap {
  position: relative;
  width: 47.92vw;
  clip-path: inset(0);
}
.recruit-content-wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: calc(100vh - var(--footer-h));
  background-position: center;
  background-size: cover;
  background-image: url(./images/recruit_003.png);
}
.recruit-content {
  position: relative;
  transform: translate(-50%, -50%);
  top: 46%;
  left: 50%;
  width: fit-content;
}
.recruit-content-title {
  font-size: 4.57vh;
  margin-bottom: 50px;
}
.recruit-content-table-wrap {
  width: 55.43vh;
}
.recruit-content-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-black-10);
}
.recruit-content-row:first-child {
  padding-top: 0;
}

.recruit-content-row dt {
  flex: 0 0 11.96vh;
  font-size: 1.74vh;
  font-weight: 600;
}
.recruit-content-row dd {
  flex: 1;
  margin: 0;
  font-family: var(--font-sanserif);
}
@media (max-width: 1024px) {
  .sec_recruit {
    margin-bottom: 4vw;
  }
  .recruit-inner {
    display: flex;
    flex-direction: column;
  }
  .recruit-inner .index-wrap {
    color: var(--color-text);
  }
  .recruit-title-warp .sec-title-wrap {
    right: unset;
    top: 69.5%;
  }
  .recruit-bg-wrap {
    display: flex;
    flex-direction: column;
  }
  .recruit-content-title {
    font-size: 6.13vw;
  }
  .recruit-content-wrap {
    width: 100%;
  }
  .recruit-content-wrap::before {
    position: fixed;
    height: 100vh;
    background-image: url(./images/recruit_003_sp.png);
  }
  .recruit-content {
    transform: unset;
    top: unset;
    left: unset;
    padding: 6.67vw;
    padding-top: 13.34vw;
    padding-bottom: 24vw;
    width: 100%;
  }
  .recruit-content-table-wrap {
    width: 100%;
  }
  .recruit-content-row {
    display: flex;
    flex-direction: column;
    gap: 2.66vw;
    padding-top: 0;
    padding-bottom: 8vw;
    margin-bottom: 8vw;
  }
  .recruit-content-row:last-child {
    margin-bottom: 0;
  }
  .recruit-content-row dt {
    flex: unset;
  }
}
/******************************
closing
******************************/
.closing-inner {
  position: relative;
}
.closing-logo-wrap {
  position: relative;
}
.closing-logo {
  position: absolute;
  width: 130px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.closing-content {
  position: absolute;
  font-family: var(--font-sanserif);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  transform: translate(-50%, -50%);
  left: 50%;
  bottom: 0;
}
.closing-content .privacy-policy:hover {
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .closing-logo {
    width: 17.33vw;
  }
  .closing-content {
    position: relative;
    color: var(--color-text);
    font-size: 2.66vw;
    transform: unset;
    left: unset;
    bottom: unset;
    padding: 2.66vw;
  }
}
/*********************************************
下層ページ
*********************************************/
.subpage-main {
  margin-bottom: var(--footer-h);
  padding-bottom: 200px;
}
.subpage-maincontainer {
  width: clamp(760px, 39.584vw, 1000px);
  margin: 0 auto;
  margin-top: 80px;
}
@media (max-width: 1024px) {
  .subpage-main {
    margin-bottom: 0;
    padding-bottom: 26.67vw;
  }
  .subpage-maincontainer {
    width: 100%;
    padding: 0 6.67vw;
    padding-top: 13.34vw;
    margin-top: 0 !important;
  }
}
/******************************
タイトル（共通）
******************************/
.subpage-title {
  position: relative;
}
.subpage-title .sec-title-wrap {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 50px;
  transform: translate(-50%, -50%);
  top: unset;
  left: 50%;
  bottom: -3.5vh;
  width: clamp(760px, 39.584vw, 1000px);
  white-space: nowrap;
}
.subpage-title .sec-title_en {
  font-size: 10.87vh;
}
.subpage-title .sec-title_ja {
  font-size: 2.18vh;
}
.subpage-bg {
  line-height: 0;
}
@media (max-width: 1024px) {
  .subpage-title .sec-title-wrap {
    display: flex;
    gap: 6.67vw;
    transform: unset;
    top: 32vw;
    left: 6.67vw;
    bottom: unset;
    width: fit-content;
  }
  .subpage-title .sec-title_en {
  font-size: 13.34vw;
  }
  .subpage-title .sec-title_ja {
    font-size: 2.67vw;
  }
}
/******************************
プライバシーポリシー
******************************/
.container.privacy-policy .subpage-maincontainer {
  margin-top: 100px;
}
.sec_privacy .privacy-lead {
  border-bottom: 1px solid var(--color-black-10);
  padding-bottom: 40px;
  margin-bottom: 60px;
  font-family: var(--font-sanserif);
}
.sec_privacy .privacy-h {
  font-size: 2.83vh;
  font-weight: 600;
  margin-bottom: 20px;
}
.privacy-p,
.privacy-list {
  font-family: var(--font-sanserif);
}
.sec_privacy .privacy-list {
  margin-top: 10px;
}
.sec_privacy .privacy-item+.privacy-item {
  margin-top: 60px;
}
@media (max-width: 1024px) {
  #page-privacy-policy .subpage-title .sec-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2.4vw;
  }
  .sec_privacy .privacy-lead {
    padding-bottom: 8vw;
    margin-bottom: 13.34vw;
  }
  .sec_privacy .privacy-h {
    font-size: 6.67vw;
    line-height: 1.3;
    margin-bottom: 2.67vw;
  }
  .sec_privacy .privacy-item+.privacy-item {
    margin-top: 13.34vw;
  }
}
/*********************************************
index.php（404 NotFound）
*********************************************/
.error404 .subpage-main {
  padding-top: 30vh;
}

.error404 .sec-title-wrap {
  color: var(--color-text);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vh;
  transform: unset;
  top: unset;
  left: unset !important;
  bottom: unset;
  margin: 0 auto;
  margin-bottom: 7vh;
}

.error404 .note {
  text-align: center;
  width: 90vw;
  margin: 0 auto;
  margin-bottom: 10svh;
}