@charset "UTF-8";

/**
 * File: base.css
 * Usage: 全ページ共通のスタイルを定義します。レイアウト、モジュールなど。
 * Example: ly_header, ly_footer, el_btn, el_gradientGold, el_subpTtl, el_normalTtl
*/

/* ================================================  
 リセットの記述
================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Disabled - causes scroll jump on iOS
html:focus-within {
  scroll-behavior: smooth;
}
*/

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Allow clicks on TikTok feed images */
.sbtt-tiktok-feed img {
  pointer-events: auto;
}

.sbt-lightbox-modal-iframe-wrap {
  overflow: hidden;
}

.sb-modal-insider .sbt-lightbox-modal-wrapper .sbt-lightbox-modal-iframe-wrap {
  padding-bottom: 20px;
}

/* ================================================  
 ログイン時に出るWordPress管理画面のツールバーを非表示
================================================ */
#wpadminbar {
  display: none !important;
}

html {
  margin-top: 0 !important;
}

/* ================================================  
 フォントの読み込み
================================================ */
@font-face {
  font-family: 'ZenKakuGothic';
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/ZenKakuGothicNew-Medium.woff2) format('woff');
}

@font-face {
  font-family: 'ZenKakuGothic';
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/ZenKakuGothicNew-Bold.woff2) format('woff');
}

@font-face {
  font-family: 'ZenKakuGothic';
  font-weight: 900;
  font-display: swap;
  src: url(../fonts/ZenKakuGothicNew-Black.woff2) format('woff');
}

@font-face {
  font-family: 'Inter';
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/Inter-Bold.woff2) format('woff');
}

@font-face {
  font-family: 'Inter';
  font-weight: 900;
  font-display: swap;
  src: url(../fonts/Inter-Black.woff2) format('woff');
}

/* ================================================  
 スタイルの適用(モバイルファーストで記述)
================================================ */
:root {
  --color-text: #251b13;
  --color-accent: #fd5500;
}

html,
body {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/old Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

body {
  background-color: #fff;
  color: var(--color-text);
  width: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'ZenKakuGothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}

html.no_scroll,
body.no_scroll {
  overflow: hidden;
}

.clearfix::after {
  content: '';
  display: block;
  clear: both;
}

li {
  list-style: none;
}

/* メディアクエリ用の表示・非表示 */
.sm_only {
  display: block !important;
}

.md_only,
.lg_only {
  display: none !important;
}

/* ================================================  
  レイアウト
================================================ */
/* 全体のレイアウト */

.ly_normalSec {
  position: relative;
  overflow: hidden;
  transform: skewY(-10deg);
  transform-origin: top left;
  z-index: 1;
}

.ly_normalSec .bl_normalSec {
  transform: skewY(10deg);
  transform-origin: top left;
  padding: 10vw 20px 30vw;
}

/* ================================================  
 ブロックモジュール
================================================ */
/* ヘッダー */

.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: transform 0.3s ease;
}

.ly_header.is_hidden {
  transform: translateY(-100%);
}

.bl_headerCont {
  color: var(--color-text);
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 20px;
}

.bl_header_logo {
  text-align: left;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-block: 24px;
}

.bl_header_logo p {
  font-size: 20px;
}

.bl_header_logo .hp_txtEng {
  font-weight: 700;
}

.bl_header_nav {
  font-size: 13px;
  display: none;
  align-items: center;
}

.bl_header_nav_ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bl_header_nav_ul .bl_header_nav_ul_li a {
  padding: 10px clamp(1rem, 0.7143rem + 1.4286vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  box-shadow: 4px 4px 2px 0px #00000040;
}

.bl_header_nav_ul .bl_header_nav_ul_li:first-child a {
  background: var(--color-text);
}

.bl_header_nav_ul .bl_header_nav_ul_li:last-child a {
  background: #00b900;
}

/* ================================================  
  エレメントモジュール
================================================ */
/* ボタン */
.el_btn {
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  border: var(--color-text) 1px solid;
  width: 100%;
  max-width: 335px;
  height: 48px;
  margin-inline: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50px;
  margin-top: 32px;
  transition: all 0.3s ease;
}

.el_btn svg {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
}

.el_btn svg circle,
.el_btn svg path {
  transition: all 0.3s ease;
}

.el_btn:hover {
  background: var(--color-text);
  color: #fff;
}

.el_btn:hover svg circle {
  stroke: #fff;
}

.el_btn:hover svg path {
  fill: #fff;
}

.el_btn.el_btn_orange svg circle,
.el_btn.el_btn_black svg circle {
  stroke: #fff;
}

.el_btn.el_btn_orange svg path,
.el_btn.el_btn_black svg path {
  fill: #fff;
}

.el_btn.el_btn_noBorder {
  border: none !important;
}

.el_btn_borderWhite {
  border: 1px solid #fff !important;
}

/* Button orange */

.el_btn.el_btn_orange {
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  color: #fff;
}

.el_btn.el_btn_orange:hover {
  background: var(--color-text);
  color: var(--color-accent);
  background: transparent;
}

.el_btn.el_btn_orange:hover svg circle {
  stroke: var(--color-accent);
}

.el_btn.el_btn_orange:hover svg path {
  fill: var(--color-accent);
}

/* Button black */

.el_btn.el_btn_black {
  background: var(--color-text);
  border: 1px solid #fff;
  color: #fff;
}

.el_btn.el_btn_black:hover {
  background: #fff;
  color: var(--color-text);
}

.el_btn.el_btn_black:hover svg circle {
  stroke: var(--color-text);
}

.el_btn.el_btn_black:hover svg path {
  fill: var(--color-text);
}

.el_btn.el_btn_big {
  padding-block: 16px;
  height: 58px;
}

.el_linksTitle {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
}

/* Button transparent -> orange */

.el_btn.el_btn_white {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.el_btn.el_btn_white svg circle {
  stroke: #fff;
}

.el_btn.el_btn_white svg path {
  fill: #fff;
}

.el_btn.el_btn_white:hover {
  background: #fff;
  border: 1px solid #fff;
  color: var(--color-accent);
}

.el_btn.el_btn_white:hover svg circle {
  stroke: var(--color-accent);
}

.el_btn.el_btn_white:hover svg path {
  fill: var(--color-accent);
}

/* リンク（バー付き） */
.el_linkWithBar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.el_linkWithBar::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--color-accent);
}

/* ================================================
 ハンバーガーメニュー
================================================ */

.el_humb {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 64px;
  height: 64px;
  background: #fbf9fb66;
  border-radius: 50%;
  box-shadow: 3.2px 3.2px 1.6px 0px #00000040;
  cursor: pointer;
  padding-top: 2px;
}

.el_humb span {
  display: block;
  width: 27px;
  height: 3.2px;
  background: var(--color-text);
  border-radius: 999px;
}

.el_humb p.hp_txtEng {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  line-height: 0.9;
  letter-spacing: 0;
}

/* ハンバーガーメニューのナビゲーション */
.bl_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  user-select: none;
  /* 初期状態 */
  opacity: 0;
  visibility: hidden;
  /* アニメーション - only transition opacity and visibility to prevent blink on load */
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

.el_nav_close {
  position: absolute;
  top: 20px;
  right: 30px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  z-index: 100000;
}

.el_nav_close span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  display: block;
  width: 100%;
  height: 4px;
  background: #000;
  border-radius: 999px;
}

.el_nav_close span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.el_nav_close p {
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
}

.bl_nav.is_open {
  opacity: 1;
  visibility: visible;
}

.bl_navLinks {
  padding: 20px 40px;
}

.bl_navLinks .bl_navHeader {
  display: block;
  font-size: 40px;
  margin-bottom: 40px;
  line-height: 1;
}

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

.bl_navLinksListItem {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bl_navLinksListItemWrap {
  display: contents;
}

.bl_navLinksListItem ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bl_navSns {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 20px;
}

.bl_navSnsLinks,
.bl_navSnsPolicies {
  display: flex;
  gap: 16px;
  justify-content: center;
  font-size: 12px;
}

.bl_navSnsLinks img {
  width: 32px;
  height: 32px;
}

.ly_footer {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
  background: #fff;
}

.ly_footer::before {
  content: '';
  position: absolute;
  top: 42px;
  right: -17px;
  width: 120px;
  height: 1px;
  background: var(--color-text);
  transform: rotate(45deg);
}

.ly_footer::after {
  content: '';
  position: absolute;
  bottom: 42px;
  left: -17px;
  width: 120px;
  height: 1px;
  background: var(--color-text);
  transform: rotate(45deg);
}

.bl_footer_logo {
  font-weight: 700;
}

.bl_footer_logo small {
  font-size: 20px;
}

.bl_footer_logo p {
  font-size: 32px;
}

.bl_footer_sns {
  margin-top: 16px;
  display: flex;
  gap: 16px;
}

.bl_footer_sns a {
  width: 40px;
  height: 40px;
}

.bl_footer_contBottom {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bl_footer_contBottom a {
  display: block;
  padding: 8px 0;
}

.bl_footer_linksLists {
  display: contents;
}

.bl_footer_linksList {
  display: flex;
  flex-direction: column;
}

.bl_footer_linksList p {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  padding: 8px 0;
}

.bl_footer_linksList a {
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bl_footer_linksList a::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--color-accent);
}

.bl_footer_links {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  font-size: 16px;
  line-height: 1;
}

.bl_footer_links a {
  font-weight: 500;
  -webkit-text-stroke: 0.5px var(--color-text);
}

.bl_footer_linksSmall {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  width: 100%;
  font-size: 12px;
}

.bl_footer_copy {
  margin-top: 40px;
  text-align: center;
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
}

/* ================================================  
  動画セクション
================================================ */

.ly_video {
  position: relative;
  overflow: hidden;
  background: #fff;
  transform: none;
  margin-block: -10vw;
  --clip: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: var(--clip);
}

.ly_video .bl_video {
  transform: none;
  padding: 120px 20px;
}

.bl_videoTtl h2 {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.3571rem + 0.7143vw, 2rem);
}

.bl_videoContent {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bl_videoContentFrame {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(1.5rem, 1.2143rem + 1.4286vw, 2.5rem);
}

.bl_videoContentFrame_line {
  flex-grow: 1;
  height: 1px;
  background: var(--color-text);
  display: block;
}

.bl_videoContentWrap {
  aspect-ratio: 16 / 9;
}

.bl_videoContentWrap iframe {
  width: 100%;
  height: 100%;
}

/* ================================================  
よく見るコンテンツセクション
================================================ */

.ly_content {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
  background: #fdbe4c;
}

.bl_contentTtl {
  font-size: clamp(1.5rem, 1.3571rem + 0.7143vw, 2rem);
  font-weight: 500;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.bl_contentTtl svg {
  height: 40px;
}

.bl_contentItems {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.bl_contentItem {
  display: block;
  position: relative;
  width: 100%;
  max-width: 335px;

  color: var(--color-text);
  border: 1px solid var(--color-text);
  transform: skewY(-6deg);
  overflow: hidden;

  background: #fdbe4c;
  background-size: 200% 100%;
  background-position: 0 0;

  transition:
    background-position 0.8s ease,
    background 0.8s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    background-size 0.8s ease;
}

.bl_contentItem:hover {
  background: linear-gradient(90deg,
      #fdbe4c 0%,
      #fdbe4c 50%,
      #fd7f20 100%,
      #fd550099 200%);
  background-size: 400% 100%;
  background-position: 100% 0;
  color: #fff;
  border-color: transparent;
}

.bl_contentItemInner svg {
  height: 24px;
  width: 24px;
  position: absolute;
  bottom: 20px;
  right: 16px;
  transition: all 0.3s ease;
}

.bl_contentItemInner svg circle,
.bl_contentItemInner svg path {
  transition: all 0.3s ease;
}

.bl_contentItemInner:hover svg circle {
  stroke: #fff;
}

.bl_contentItemInner:hover svg path {
  fill: #fff;
}

.bl_contentItemInner {
  height: 120px;
  transform: skewY(6deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem);
  font-weight: 500;
}

/* ================================================  
CTAセクション
================================================ */

.ly_cta {
  position: relative;
  z-index: 1;
}

.bl_cta {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bl_cta p {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}

.bl_ctaLinks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.bl_ctaLinks .el_btn {
  margin-top: 0;
}

.bl_ctaBlack {
  background: var(--color-text);
  padding: 80px 20px 160px;
  position: relative;
}

.bl_ctaBlack img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 1;
}

.bl_ctaOrange {
  background: var(--color-accent);
  padding: 160px 20px 80px;
}

/* ================================================  
  ビジョンセクション
================================================ */

.ly_vision {
  background: url('../img/top/vision-bg-sp.webp');
  background-size: cover;
  z-index: 3;
}

.bl_vision {
  color: var(--color-text);
  z-index: 2;
}

.bl_visionTtl {
  font-weight: 700;
  font-size: clamp(1.25rem, 1.0357rem + 1.0714vw, 2rem);
  line-height: 1.2;
  white-space: nowrap;
}

.bl_visionTtl .hp_txtBig {
  font-size: clamp(2.25rem, 1.8214rem + 2.1429vw, 3.75rem);
  line-height: 1.2;
}

.bl_visionContent {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  gap: 32px;
}

.bl_visionText {
  display: contents;
}

.bl_visionTextTop {
  line-height: 1.4;
  order: -1;
}

.bl_visionTextMain {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bl_visionTextMainItem {
  padding-top: 16px;
  border-top: 1px solid var(--color-text);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.bl_visionTextMainItem h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* ================================================  
 ヘルパー
================================================ */
/* 余白の調整 */

.hp_txtEng {
  font-family: 'Inter', sans-serif;
}

.hp_txtStroke05 {
  -webkit-text-stroke: 0.5px;
  -webkit-text-fill-color: inherit;
}

.hp_txtStroke10 {
  -webkit-text-stroke: 0.5px;
  -webkit-text-fill-color: inherit;
  font-weight: 400;
}

.hp_txtCenter {
  text-align: center;
}

.hp_txtAccent {
  color: #fdbe4c;
}

.hp_txtOrange {
  color: var(--color-accent);
}

.hp_txtOrangeUnderlined {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: -4px;
  text-decoration-thickness: 12px;
}

.hp_fontBlack {
  font-weight: 900;
}

.hp_txtOnBg {
  color: var(--color-text);
  background: #fff;
  line-height: 1;
}

.hp_txtOnBg_orange {
  background: var(--color-accent);
  color: #fff;
  padding: 4px 8px;
  display: inline-block;
  line-height: 1;
}

.hp_txtRight {
  text-align: right;
}

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

.hp_flexCenter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.hp_flexCenterAround {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 8px;
}

.hp_tcy {
  text-combine-upright: all;
  text-align: center;
}

.svg_btnMore {
  width: 112px;
  height: 80px;
}

.svg_btnMore path {
  transition: all 0.3s ease;
  transform-origin: center;
}

a:hover .svg_btnMore .svg_btnMoreArrow {
  transform: translateX(3px);
}

.svg_ttlLine {
  height: 40px;
}

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

.ly_topTriangle {
  position: relative;
}

.ly_bottomTriangle {
  position: relative;
}

.ly_topTriangle::before,
.ly_bottomTriangle::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ly_topTriangle::before {
  top: -1px;
  bottom: unset;
  transform: rotate(180deg);
  transform-origin: center center;
}

.ly_topTriangle.ly_topTriangleGrey::before {
  background: url(../img/triangle/grey-sp.svg) no-repeat bottom right;
  background-size: 100% auto;
}

.ly_topTriangle.ly_topTriangleWhite::before {
  background: url(../img/triangle/white-sp.svg) no-repeat bottom right;
  background-size: 100% auto;
}

.ly_topTriangle.ly_topTriangleOrange::before {
  top: -1px;
  background: url(../img/triangle/orange-sp.svg) no-repeat bottom right;
  background-size: 100% auto;
}

.ly_bottomTriangle.ly_bottomTriangleGrey::after {
  background: url(../img/triangle/grey-sp.svg) no-repeat bottom right;
  background-size: 100% auto;
}

.ly_bottomTriangle.ly_bottomTriangleYellow::after {
  background: url(../img/triangle/yellow-sp.svg) no-repeat bottom right;
  background-size: 100% auto;
}

.ly_bottomTriangle.ly_bottomTriangleWhite::after {
  background: url(../img/triangle/white-sp.svg) no-repeat bottom right;
  background-size: 100% auto;
}

.ly_bottomTriangle.ly_bottomTriangleOrange::after {
  background: url(../img/triangle/orange-sp.svg) no-repeat bottom right;
  background-size: 100% auto;
}

.ly_floatingBtns {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex !important;
  z-index: 990;
  height: 56px;
}

.ly_floatingBtns a {
  width: calc(100% / 2);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 8px 8px 0 0;
  border: 1px solid #fff;
  font-weight: 700;
  text-align: center;
  border-bottom: 0;
}

.ly_floatingBtns a:first-child {
  background: var(--color-text);
}

.ly_floatingBtns a:nth-child(2) {
  background: var(--color-accent);
}

.ly_floatingBtns a:last-child {
  background: #00b900;
}

@media screen and (min-width: 768px) {
  .sm_only {
    display: none !important;
  }

  .md_only,
  .lg_only {
    display: block !important;
  }

  /* ヘッダー */
  .ly_header {
    z-index: 1000;
  }

  .bl_headerCont {
    justify-content: space-between;
    overflow: hidden;
  }

  .bl_header_nav {
    display: flex;
    height: 100%;
    gap: 50px;
    flex-grow: 1;
    justify-content: flex-end;
    margin-right: clamp(0.625rem, -1.5179rem + 4.4643vw, 2.5rem);
  }

  .bl_header_nav_ul {
    height: 100%;
    transform: translateX(6px);
  }

  .bl_header_nav_ul .bl_header_nav_actionBtn a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #000;
    height: 100%;
    padding-inline: 32px;
  }

  .bl_header_nav_ul .bl_header_nav_ul_li:last-of-type a {
    border-right: none;
  }

  .bl_header_nav_ul .bl_header_nav_actionBtn a img {
    height: 30px;
    object-fit: contain;
  }

  .bl_header_nav_ul .bl_header_nav_actionBtn.bl_header_nav_actionBtn_myPage,
  .bl_header_nav_ul .bl_header_nav_actionBtn.bl_header_nav_actionBtn_contact {
    position: relative;
    height: 100%;
  }

  .bl_header_nav_ul .bl_header_nav_actionBtn a {
    position: relative;
    z-index: 1;
  }

  .ly_normalSec {
    position: relative;
    overflow: hidden;
    transform: skewY(-4deg);
    transform-origin: top left;
    z-index: 1;
  }

  .ly_normalSec .bl_normalSec {
    transform: skewY(4deg);
    transform-origin: top left;
    padding: 8vw 20px 12vw;
  }

  .bl_nav {
    height: fit-content;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    max-height: 100vh;
    overflow: auto;
    padding-inline: 20px;
  }

  .el_linksTitle {
    font-size: 16px;
  }

  body.no_scroll::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #00000066;
    z-index: 100;
  }

  .bl_navLinks {
    padding-inline: 20px;
  }

  .bl_navLinks .bl_navHeader {
    max-width: 1120px;
    margin: 0 auto;
  }

  .bl_navLinksList {
    flex-direction: row;
    gap: 40px;
    max-width: 1120px;
    margin: 0 auto;
    margin-top: 40px;
  }

  .bl_navLinksListItemWrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .bl_navCta {
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
  }

  .bl_navSns {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto;
    padding-block: 40px;
  }

  .bl_navSnsLinks img {
    width: 40px;
    height: 40px;
  }

  .bl_navSnsPolicies {
    font-size: 14px;
  }

  /* ================================================  
  エレメントモジュール
  ================================================ */

  .el_btn {
    max-width: 340px;
    height: 40px;
    margin-inline: auto;
    font-size: 16px;
    font-weight: 500;
  }

  .el_secTtl {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .hp_borderBold {
    margin-top: 12px;
  }

  .hp_mt40 {
    margin-top: 80px;
  }

  .hp_pt40 {
    padding-top: 80px;
  }

  .bl_breadcrumb {
    padding-block: 40px;
  }

  .el_subpTtl {
    position: relative;
    padding-block: 20px 10px;
    border-bottom: #bb9402 2px solid;
    font-size: 2rem;
  }

  .el_subpTtl span {
    color: #fff;
    opacity: 0.05;
    position: absolute;
    top: -24px;
    left: -100px;
    z-index: 1;
    background: transparent;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: white;
    font-size: 72px;
    translate: -20px -20px;
  }

  .el_normalTtl {
    font-size: 1.5rem;
  }

  .bl_footer {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1040px;
    margin: 0 auto;
    justify-content: space-between;
    position: relative;
  }

  .bl_footer_contBottom {
    margin-top: 0;
    width: 100%;
    gap: 24px;
    max-width: 420px;
  }

  .bl_footer_linksLists {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 24px;
  }

  .bl_footer_links {
    gap: 20px;
    font-size: 20px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .bl_footer_links a {
    font-size: 20px;
    padding-block: 0;
  }

  .bl_footer_linksList {
    gap: 8px;
  }

  .bl_footer_linksList p {
    font-size: 20px;
    padding-bottom: 16px;
  }

  .bl_footer_linksList a {
    font-size: 16px;
    padding-block: 0;
    line-height: 1.6;
  }

  .bl_footer_logo {
    text-align: right;
  }

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

  .bl_footer_sns a img {
    width: 40px;
    height: 40px;
  }

  .bl_footer_linksSmall {
    width: fit-content;
    justify-content: flex-end;
  }

  .bl_footer_linksSmall a {
    padding: 0;
  }

  .bl_footer_copyright {
    position: absolute;
    bottom: 0px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-items: flex-end;
    max-width: 320px;
  }

  .bl_footer_contBottom a {
    width: fit-content;
  }

  .bl_footer_copy {
    margin-top: 0;
    font-size: 14px;
    flex-shrink: 0;
  }

  .ly_footer::before {
    transform: rotate(-45deg);
    right: unset;
    left: -17px;
  }

  .ly_footer::after {
    transform: rotate(-45deg);
    left: unset;
    right: -17px;
  }

  /* ================================================  
  動画セクション
  ================================================ */

  .ly_video .bl_video {
    padding: 230px 20px;
    max-width: 900px;
    margin-inline: auto;
  }

  .bl_videoContent {
    flex-direction: row;
    justify-content: center;
  }

  .bl_videoContentFrame {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    text-align: right;
  }

  .bl_videoContentWrap {
    max-width: 740px;
    width: 100%;
  }

  .bl_videoContentFrame_line {
    width: 1px;
    height: auto;
    flex-grow: 1;
  }

  /* ================================================  
  CTAセクション
  ================================================ */

  .ly_cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .bl_cta {
    height: 100%;
    min-height: 380px;
    justify-content: center;
  }

  .bl_cta>* {
    z-index: 2;
  }

  .bl_cta p {
    font-size: clamp(1.75rem, 1.6786rem + 0.3571vw, 2rem);
    font-weight: 500;
    text-align: center;
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .bl_ctaBlack {
    padding: 0;
  }

  .bl_ctaOrange {
    padding: 0;
  }

  .bl_ctaBlack img {
    bottom: 50%;
    left: 100%;
    transform: translate(-50%, 50%);
    z-index: 1;
  }

  .bl_ctaLinks .el_btn {
    font-size: 18px;
    max-width: 280px;
  }

  /* ================================================  
  よく見るコンテンツセクション
  ================================================ */

  .ly_content {
    padding-block: 80px 160px;
  }

  .bl_contentItems {
    flex-direction: row;
    flex-wrap: wrap;
    transform: skewY(-4deg);
    justify-content: center;
    max-width: 1080px;
    margin-inline: auto;
    margin-top: 60px;
  }

  .bl_contentItem {
    transform: none;
  }

  .bl_contentItemInner {
    transform: skewY(4deg);
  }

  /* ================================================  
  ビジョンセクション
  ================================================ */

  .ly_vision {
    background: url('../img/top/vision-bg-pc.webp') no-repeat center center;
    background-size: cover;
  }

  .bl_vision {
    max-width: 1220px;
    margin-inline: auto;
  }

  .bl_visionTextTop {
    max-width: 512px;
  }

  .bl_visionContent {
    flex-direction: row-reverse;
    align-items: center;
  }

  .bl_visionText {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .svg_ttlLine {
    height: 48px;
  }

  .svg_btnMore {
    height: 100px;
    width: auto;
  }

  .ly_topTriangle.ly_topTriangleGrey::before {
    background: url(../img/triangle/grey-pc.svg) no-repeat bottom right;
    background-size: 100% auto;
  }

  .ly_topTriangle.ly_topTriangleOrange::before {
    background: url(../img/triangle/orange-pc.svg) no-repeat bottom right;
    background-size: 100% auto;
  }

  .ly_topTriangle.ly_topTriangleWhite::before {
    background: url(../img/triangle/white-pc.svg) no-repeat bottom right;
    background-size: 100% auto;
  }

  .ly_bottomTriangle.ly_bottomTriangleGrey::after {
    background: url(../img/triangle/grey-pc.svg) no-repeat bottom right;
    background-size: 100% auto;
  }

  .ly_bottomTriangle.ly_bottomTriangleYellow::after {
    background: url(../img/triangle/yellow-pc.svg) no-repeat bottom right;
    background-size: 100% auto;
  }

  .ly_bottomTriangle.ly_bottomTriangleWhite::after {
    background: url(../img/triangle/white-pc.svg) no-repeat bottom right;
    background-size: 100% auto;
  }

  .ly_bottomTriangle.ly_bottomTriangleOrange::after {
    background: url(../img/triangle/orange-pc.svg) no-repeat bottom right;
    background-size: 100% auto;
  }

  .sbt-lightbox-modal-next {
    right: calc(50% - 250px - 40px) !important;
  }

  .sbt-lightbox-modal-prev {
    left: calc(50% - 250px - 40px) !important;
  }
}

@media screen and (min-width: 1024px) {
  .el_linksTitle {
    font-size: 18px;
  }

  .el_humb {
    width: 80px;
    height: 80px;
    padding-top: 8px;
    gap: 8px;
  }

  .el_humb span {
    width: 45px;
    height: 4px;
  }

  .el_humb p.hp_txtEng {
    font-size: 16px;
    margin-top: 0;
  }

  .el_nav_close {
    top: 30px;
    right: 40px;
  }

  .bl_headerCont {
    padding-block: 14px;
  }

  .bl_navLinks {
    padding-top: 40px;
  }

  .bl_navLinksList {
    justify-content: space-between;
    gap: unset;
  }

  .bl_navLinksListItemWrap {
    display: contents;
  }

  .bl_footer_copyright {
    max-width: unset;
  }
}

@media screen and (min-width: 1440px) {
  .bl_headerCont {
    max-width: 1320px;
    margin: 0 auto;
  }

  .el_nav_close {
    margin-right: calc((100vw - 1320px) / 2);
  }
}