@charset "UTF-8";

/* ============================================
   1. Base & Variables
   ============================================ */
:root {
    --c-charcoal: #069;
    --c-teal: #39c;
    --c-turquoise: #069;
    --c-white: #ffffff;
    --c-gray-bg: #f4f4f4;
    --c-light-gray: #fcfcfc;
    --c-text: #333;
    --header-height: 70px;
	--max-width: 1000px;
	--marufuji:#0268B3;
	--history-1:#036EB7;
	--history-2:#009FE8;
	--history-3:#009844;
	--history-4:#6FB92C;
	--history-5:#C9A500;
	--history-6:#EF8200;
	--history-7:#B494D5;
	--history-8:#D594C4;
	--history-9:#ED7DAE;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; overflow-y: scroll; scroll-behavior: smooth; scroll-padding-top: 70px; }
body { font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; color: var(--c-text); line-height: 1.8; background: var(--c-white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
li { list-style: none; }


    
/* コンテナー */
.container {
  width:100%;
  height: calc(100vh - 73px);
  margin: 0 auto;
  top-border:2px solid #fff;
  margin-top:73px;
	position:relative;
	background: #000;
	display:flex;flex-flow:column;justify-content:space-between;
	padding: 4vh 0;
}

.swiper-slide:after {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAAXNSR0IArs4c6QAAAB5JREFUGFdjZGRgaPjPyNDA8J+BgZGRgQFEgwEKBwB9hQUEsbH3kQAAAABJRU5ErkJggg==);
    content: '';
    inset: 0;
    position: absolute;
}


/* スライダーのwrapper */
.infinite-slider .swiper-wrapper, .infinite-slider2 .swiper-wrapper {
  transition-timing-function: linear;
}

/* スライド */
.infinite-slider .swiper-slide, .infinite-slider2 .swiper-slide  {
  height: 30vh !important; /* 高さを指定 100vh */
  width: auto !important;
}

/* スライド内の画像 */
.infinite-slider .swiper-slide img, .infinite-slider2 .swiper-slide img {
  width: auto;
  height: 100%;
}


/* ============================================
   2. Header & Navigation
   ============================================ */
.header {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height);
	background: #82b2e9; background-repeat:no-repeat; background-size: auto 100%; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	background-image:url(img/header.avif);
	z-index: 1001; display: flex; align-items: center; padding: 0 20px;
}
.header-inner { width: 100%; max-width: 1920px; margin: 0 auto; display: flex; justify-content: end; align-items: center; }
.logo { font-size: 1.5rem; font-weight: bold; color: var(--c-charcoal); display: none; align-items: center; gap: 10px; }
.logo-sub { font-size: 0.8rem; color: var(--c-teal); font-weight: normal; }
.nav-list { display: flex;  }
.nav-list a { font-weight: bold; color: var(--c-white); transition: color 0.3s; position: relative;padding:0.3em 1.5em;border-right:1px solid #fff; }
.nav-list a:hover { }
.nav-list a::after {
    content: ''; position: absolute; bottom: 0px; left: 0; width: 0; height: 1px; background: var(--c-white); transition: width 0.3s;
}
.nav-list li {background-image: linear-gradient(90deg, #0060c0cc, #0060c0cc); padding:.5em 0; } 
.nav-list li:first-child {
  background-image: linear-gradient(90deg, rgba(0, 96, 194, 0), rgba(0, 96, 194, 0.5) 25%, rgba(0, 96, 194, 0.75) 60%, rgba(0, 96, 194, 0.8));
}
.nav-list li:last-child {
  background-image: linear-gradient(270deg, rgba(0, 96, 194, 0), rgba(0, 96, 194, 0.5) 25%, rgba(0, 96, 194, 0.75) 60%, rgba(0, 96, 194, 0.8));	
}
.nav-list a:hover::after { width: 100%; }
.nav { padding: .5em; margin-bottom: -26px; margin-right:1em;}
#anniversary { 
	width:100px; margin-bottom:-62px; margin-right: 5vw;
	filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 1.0)) drop-shadow(-1px -1px 2px rgba(255, 255, 255, 1.0)) drop-shadow(1px 1px 1px rgba(255, 255, 255, 1.0));
}
#anniversary2 { display:none; }

/* Hamburger (CSS Only) */
.nav-hidden, #nav-open, #nav-close { display: none; }

/* ============================================
   3. Hero Section
   ============================================ */
.hero {
    position: relative; width: 100%; height: calc(100vh - 73px); margin-top: 73px; 
	/*background: url('https://placehold.co/1920x1080/2F4F4F/FFF?text=Marufuji+Hero') center/cover no-repeat;*/
	background-repeat: no-repeat;
background-position: center;
background-size: cover;
    display: flex; align-items: center; justify-content: start; text-align: center; color: #fff; background-color: #ccc;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.hero-content { position: relative; top: 50%;transform: translateY(-50%);right: 0; left: 0; margin: auto; z-index: 1; text-align: center;}
.hero-content::after {
  content: '';
  background: rgba(0,80,140,0.9);
  mix-blend-mode: multiply;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.textBox{
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 5vh 1em;
}
.hero-jp { font-size: 3.5rem; font-weight: bold; margin-bottom: 20px; text-shadow: 0 4px 10px rgba(0,0,0,1); line-height: 1em; }
.hero-jp span {font-size: 1.9rem; }
.hero-jp span.century {color:red; }
.hero-en { font-size: .8rem; letter-spacing: 0.05em; margin-bottom: 15px;  text-shadow: 0 1px 8px rgba(0,0,0,1); }
.hero-company { padding-top: 20px; max-height:582px; }
.hero-company img {margin:0 auto auto 0;width:150px; filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 1.0)) drop-shadow(-1px -1px 2px rgba(255, 255, 255, 1.0)) drop-shadow(1px 1px 1px rgba(255, 255, 255, 1.0)); }
.topheroh3 {position: absolute;top: 73px;left: 0;z-index: 1000;}

/* ============================================
   4. Layout Commons
   ============================================ */
.main-container { width: 100%;  margin: 0 auto; background: #fff; /*max-width: var(--max-width);*/}
.section { padding: 0; width:100%; border-bottom: 1px solid var(--c-charcoal); }
.section:last-child { border:none; }

/* Full width bg hack */
.bg-gray { background-color: #fff;}

/* PDF Style Title */
.section-header-wrapper { display: flex; justify-content: start;  }
.section-title {
    width: 560px; max-width: 100%; height: 50px;
    background: linear-gradient(110deg, var(--c-charcoal) 30%, var(--c-teal) 100%);
    color: #fff; display: flex; align-items: center; padding: 0 0 0 100px;
    font-size: 1.5rem; letter-spacing: 0.4em;
    border-left: 6px solid var(--c-turquoise);
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
	filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.15));
	margin-top:3px;
	position: absolute;
		left: 0;
		z-index: 990;
}
.topheroh3 .section-title { font-size: 1.4rem; margin-top:0; padding-left:60px; letter-spacing: 0em; position: relative; left: 0; }

/* ============================================
   5. Sections Details
   ============================================ */

/* --- Message --- */
.message-layout { display: flex; gap: 0px; align-items: flex-start; padding-bottom: 4em; max-width: 1000px; margin: 0 auto;}
.message-text { flex: 1.2; margin-top:4em}
.message-image { flex: 0.8; position: sticky; top: 100px; margin-top:4em}
.message-image img { border-radius: 4px; width: 100%; height: auto; }

.sub-title { font-size: 1.8rem; color: #000; ; display: inline-block; line-height: 1.4; width: 100%;text-align: center;}
.lead-text { color: #000; font-weight: bold; font-size: 1.1rem; margin-bottom: 30px; line-height: 2.3em; width: 100%;text-align: center;margin-bottom: 15px; border-bottom: 2px solid var(--marufuji) }

.body-text-container p { margin-bottom: 1.5em; font-size: 1rem; color: #333; line-height: 2; text-align: justify; }
.message-highlight { font-size: 1.2rem; font-weight: bold; color: var(--c-charcoal); text-align: center; }
.signature { text-align: right; margin-top: -40px; font-family: "Yu Mincho", serif; margin-right: 15%; margin-bottom: 24px;}
.signature p { font-size: 1rem; line-height: 1.6; font-family: sans-serif; }
.signature strong { font-size: 1.3rem; margin-left: 10px; }
.signature span {font-size: 0.9rem;}
.signature img {width:220px;margin-right:0;margin-left:auto;;}
				
/* --- History (3-Column Grid) --- */
.history-intro {
	text-align: center; margin-bottom: 50px; background:#999 url(img/history.avif); border-top:3px solid #fff;
	position: relative; width: 100%; height: 90vh; overflow: hidden; background-repeat: no-repeat;
background-position: center;
background-size: cover;

}
				
.history-intro::after, .vision-intro::after, .events-intro-block::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-image:linear-gradient(180deg, #00000022 40%, #0000ffcc) ;
	z-index:1;
	mix-blend-mode: multiply;
}
.history-intro::before, .vision-intro::before, .events-intro-block::before {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAAXNSR0IArs4c6QAAAB5JREFUGFdjZGRgaPjPyNDA8J+BgZGRgQFEgwEKBwB9hQUEsbH3kQAAAABJRU5ErkJggg==);
    content: '';
    inset: 0;
    position: absolute;
}
				
.history-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* PC: 3列 */
	gap: 3vw;
	align-items: start;
	padding: 0 6vw;
	margin-bottom: 4em;
}

.history-list { margin: 0; padding: 0; }
.history-row { display: flex;
	align-items: baseline;
	padding: 1em 0 0 1em;
	margin-top: 1em;
	border-top: 2px solid #ccc; border-left: 2px solid #ccc; border-radius: .5em 0 0 0;
	position:relative;
}
.history-1 {border-color:var(--history-1);color:var(--history-1);}
.history-2 {border-color:var(--history-2);color:var(--history-2);}
.history-3 {border-color:var(--history-3);color:var(--history-3);}
.history-4 {border-color:var(--history-4);color:var(--history-4);}
.history-5 {border-color:var(--history-5);color:var(--history-5);}
.history-6 {border-color:var(--history-6);color:var(--history-6);}
.history-7 {border-color:var(--history-7);color:var(--history-7);}
.history-8 {border-color:var(--history-8);color:var(--history-8);}
.history-9 {border-color:var(--history-9);color:var(--history-9);}
.history-row:last-child { border-bottom: none;  }

.history-row dt { flex: 0 0 55px; font-size: 1.1rem; font-weight: bold; line-height: 1; }
.history-row dt span { font-size: 0.7rem; font-weight: normal; }
.history-row dd { flex: 1; margin: 0; padding-left: 10px; font-size: 0.85rem; color: #444; line-height: 1.5; }

.history-row.highlight-row dt { color: var(--c-charcoal); border-bottom: 2px solid var(--c-turquoise); }
.history-row.highlight-row dd { font-weight: bold; color: var(--c-charcoal); }
.history-row.anniversary-row { background: linear-gradient(90deg, rgba(64,224,208,0.1) 0%, rgba(255,255,255,0) 100%); border-left: 3px solid var(--c-turquoise); padding-left: 8px; }
.history-row.future-row { opacity: 0.7; border-bottom: 1px dashed #ccc; }
.tag-new { display: inline-block; background: var(--c-turquoise); color: #fff; font-size: 0.65rem; padding: 1px 5px; border-radius: 3px; margin-right: 4px; transform: translateY(-1px); }
			
.history-1::after { content: ""; width: 10px; height: 5px; text-align:center; border-radius: 50%; border: solid 1px var(--history-1); position:absolute; left:-7px; bottom:-3px;}
.history-2::after { content: ""; width: 10px; height: 5px; text-align:center; border-radius: 50%; border: solid 1px var(--history-2); position:absolute; left:-7px; bottom:-3px;}
.history-3::after { content: ""; width: 10px; height: 5px; text-align:center; border-radius: 50%; border: solid 1px var(--history-3); position:absolute; left:-7px; bottom:-3px;}
.history-4::after { content: ""; width: 10px; height: 5px; text-align:center; border-radius: 50%; border: solid 1px var(--history-4); position:absolute; left:-7px; bottom:-3px;}
.history-5::after { content: ""; width: 10px; height: 5px; text-align:center; border-radius: 50%; border: solid 1px var(--history-5); position:absolute; left:-7px; bottom:-3px;}
.history-6::after { content: ""; width: 10px; height: 5px; text-align:center; border-radius: 50%; border: solid 1px var(--history-6); position:absolute; left:-7px; bottom:-3px;}
.history-7::after { content: ""; width: 10px; height: 5px; text-align:center; border-radius: 50%; border: solid 1px var(--history-7); position:absolute; left:-7px; bottom:-3px;}
.history-8::after { content: ""; width: 10px; height: 5px; text-align:center; border-radius: 50%; border: solid 1px var(--history-8); position:absolute; left:-7px; bottom:-3px;}
.history-9::after { content: ""; width: 10px; height: 5px; text-align:center; border-radius: 50%; border: solid 1px var(--history-9); position:absolute; left:-7px; bottom:-3px;}
			
/* --- Vision --- */
.vision-intro { 
	text-align: center; margin-bottom: 70px; font-weight: bold; 
	background: #999 url(img/vision.avif);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
	border-top: 3px solid #fff;
	position: relative;
	width: 100%;
	height: 90vh;
	overflow: hidden;
}

/* title */
	.vision-intro h4, .history-intro h4, .events-intro-block h4 {z-index: 1000;position: absolute; font-size: 3rem; line-height:1em; bottom:1em; left:10vw; text-align:left; color:#fff; text-shadow: 2px 2px 8px #000000;}
	.vision-intro h4 span, .history-intro h4 span, .events-intro-block h4 span {font-size:2rem;font-weight:normal;display:inline-block;line-height:1.6em;}
	.vision-intro h4 span::before, .history-intro h4 span::before, .events-intro-block h4 span::before {content:" ";font-size:3em;}
			
	.history-intro h4 strong {font-size: 3rem; font-weight: bold; text-shadow: 2px 2px 8px #000000; }
			
			
.dept-container { display: flex; flex-direction: column; gap: 4vw; max-width: 85vw; margin: 0 auto; margin-bottom: 3em; }
.dept-item { display: flex; align-items: center; gap: 3vw; border-bottom: 2px solid var(--marufuji); padding-bottom: 3em; margin-top: -1em;}
.dept-item.reverse { flex-direction: row-reverse; }

.dept-content { flex: 1; }
.dept-image { flex: 1; }
.dept-image img {  width: 100%; object-fit: cover; }
.dept-header { margin-bottom: 20px; border-bottom: 1px solid var(--c-teal); padding-bottom: 1em; }
.dept-name { display: block; font-size: 2.5rem; color: #000; font-weight: bold; line-height: 1.2em; margin-bottom: 0.2em; }
.dept-tagline { font-size: 1.4rem; color: var(--marufuji); line-height: 1.4; }
.dept-desc { text-align: justify; font-size: 1rem; color: #444; }

/* --- Events --- */
.events-title { letter-spacing: 1px; }
.events-intro-block { 
				text-align: center; margin-bottom: 50px; background:#999 url(img/events.avif);
				background-repeat: no-repeat;
background-position: center;
background-size: cover;
				height:90vh;border-top:3px solid #fff;
	position: relative; width: 100%;height: 90vh;overflow: hidden;
}
				
.events-layout { /*display: flex; gap: 60px; align-items: flex-start;*/ }
.events-text {  }
.events-image { }
.events-image img { width: 50vw; height: auto; margin:0 auto; /* border-radius: 8px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); */ }

.events-lead { font-size: 1rem; line-height: 1.8; color: #444; margin-top: 15px; }
.uniform-points { max-width:1000px; width:85%; margin:0 auto; }
.uniform-points dt { font-size: 1.1rem; font-weight: bold; margin-top: 25px; display: flex; align-items: center; border-bottom: 2px solid var(--marufuji); padding-bottom: 5px; margin-bottom: 10px; }
.uniform-points dt::before { content: ''; display: inline-block; width:.9em; height:.9em; background: #333; margin-right: 10px; }
.uniform-points dd { margin: 0; padding-left: 1em; font-size: 0.95rem; color: #333; }
.point-sublist { margin-top: 10px; padding-left: .1em; list-style: none; }
.point-sublist li { position: relative; padding-left:1em; margin-bottom: 5px; font-size: 0.9rem; color: #333; }
.point-sublist li::before { content: '・'; position: absolute; left: -.1em; color: #333; font-weight: bold; }
.events-closing { margin:2em auto 4em; padding: 0 0; max-width:1000px; width:80%; }

/* ============================================
   6. Footer
   ============================================ */
.footer {
margin-top:3em;
}

.footer-container {	width: 100%;}
				
/* Upper: TOP Link */
.footer-upper {
    display: flex; justify-content: flex-end; margin-bottom: 30px;
}
.footer-top-btn {
    color: var(--c-charcoal); font-weight: bold; font-family: "Helvetica Neue", Arial, sans-serif;
    display: inline-flex; align-items: center; gap: 5px; transition: color 0.3s;
}
.footer-top-btn:hover { color: var(--c-teal); }
.footer-top-btn .arrow { font-size: 1.2rem; line-height: 1; transform: translateY(-1px); }

/* Main: Nav & Brand */
.footer-main {
    display: flex; justify-content: space-between; align-items: start; flex-wrap: wrap; gap: 40px; background-color:var(--marufuji);
}

/* Left: Navigation */
.footer-nav-area { flex: 1; display: flex; justify-content: flex-start; }
.footer-nav-list { display: flex; gap: 30px; margin: 1em 1em 0 3em; padding: 0; list-style: none; }
.footer-nav-list li a {
    font-weight: bold; color: #fff; position: relative;
    padding-bottom: 5px; transition: color 0.3s; text-decoration: none;
}
.footer-nav-list li a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background-color: #fff; transition: width 0.3s;
}
.footer-nav-list li a:hover { }
.footer-nav-list li a:hover::after { width: 100%; }

/* Right: Brand Logo */
.footer-brand {
    flex: 1; min-width: 280px; display: flex; flex-direction: column;
    align-items: flex-end; text-align: right;
}
.anniv-logo-unit { display: flex; align-items: flex-end; gap: 12px; margin-bottom: 10px; line-height: 1; }
	.anniv-logo-unit img { height:3em; margin:1.5em 3em 1em; }


/* Bottom: Copyright */
.footer-bottom { text-align: left; padding: 1em 3em 2em 3em; display: flex; justify-content: space-between; color: #333; font-size: 0.75rem; }
.copyright { letter-spacing: 0.05em;font-size: 0.8rem; }
.footer-company-name img { width:250px; margin: .5em auto; }

/* ============================================
   7. Responsive (Mobile: 1000px)
   ============================================ */
@media screen and (max-width: 1000px) {
	
	.section-title { clip-path: none; width:100vw; border:none; font-size: 1em; letter-spacing: 0em; padding:1em; }
	.topheroh3  { display: none; }
	
    /* Hamburger Menu */
    #nav-open { display: block; width: 30px; height: 24px; position: relative; z-index: 1003; cursor: pointer; }
    #nav-open span { position: absolute; left: 0; width: 100%; height: 3px; background:#fff; transition: 0.3s; box-shadow: 0 0 5px rgba(0,100,250,0.5); }
    #nav-open span:nth-child(1) { top: 0; }
    #nav-open span:nth-child(2) { top: 10px; }
    #nav-open span:nth-child(3) { top: 20px; }
    
    .nav { position: fixed; top: 0; right: -300px; width: 260px; height: 100vh; background:#06c; padding-top: 80px; transition: 0.3s; box-shadow: -5px 0 15px rgba(0,0,0,0.1); }
    .nav-list { flex-direction: column; padding: 0 20px; border:none; }
    .nav-list a { display: block; padding: 15px 0; border-bottom: 1px solid #eee; }
	.nav-list li, .nav-list li:first-child, .nav-list li:last-child {background:none; }
	.nav-list li a {border:none;}
    #nav-input:checked ~ .header .nav { right: -1em; z-index: 1002;}
    #nav-input:checked ~ #nav-close { display: block; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; }
    #nav-input:checked ~ .header #nav-open span:nth-child(1) { transform: rotate(45deg); top: 10px; }
    #nav-input:checked ~ .header #nav-open span:nth-child(2) { opacity: 0; }
    #nav-input:checked ~ .header #nav-open span:nth-child(3) { transform: rotate(-45deg); top: 10px; }

	#anniversary { display:none; }
	#anniversary2 { display:block; position:absolute; left:0; width:160px; margin-left:1em; top:1em;}
	a #anniversary2 { display:block; cursor: pointer; }
    /* Hero */
				.hero-jp { font-size: 3rem; }
				.hero-jp span { font-size: 1.5rem;}
    
    /* Message: Stack */
    .message-layout { flex-direction: column; }
    .message-image { order: -1; width: 100%; position: static; margin-bottom:calc(12vw - 2em); }
    .message-image img { box-shadow: none; max-width: 40%; margin: 0 auto; }
    .body-text-container p { text-align: left; font-size: 0.95rem; padding:0 2em; }
	.signature { text-align: center; margin: -20px 0 0 0; }
				.message-text {margin-top:1em;}
				
    /* History: 1 Column */
    .history-grid { grid-template-columns: 1fr; gap: 0px; }
    .history-column { box-shadow: none; border-top: none; padding: 0; background: transparent; }
    .column-title {
        margin: 0 0 15px 0; padding: 10px 0; background: transparent;
        text-align: left; border-radius: 0;
        font-size: 1.3rem; color: var(--c-teal); border-bottom: 2px solid var(--c-teal);
    }
    .history-row dd { font-size: 0.95rem; }

    /* Vision: Stack */
    .dept-item, .dept-item.reverse { flex-direction: column-reverse; gap: 20px; }
    .dept-image { width: 100%; }

    /* Events: Stack */
    .events-layout { flex-direction: column; }
    .events-image { order: -1; width: 100%; }
    .events-image img { max-width: 400px; margin: 0 auto; }

    /* Footer: Stack with Padding */
    .footer-container { padding: 0; }
    .footer-main { flex-direction: column-reverse; align-items: center; text-align: center; gap: 0;align-items: start; }
    .footer-nav-area { justify-content: center; width: 100%; }
    .footer-nav-list { flex-direction: column; gap: 8px; width: 100%; align-items: center; margin:0 0 2em 0;}
    .footer-nav-list li a { display: block; padding: 0; width: 100%; }
    .footer-brand { align-items: center; text-align: center; width: 100%;}
    .anniv-text-group { align-items: center; }
    .footer-bottom { text-align: center; flex-wrap:wrap; flex-wrap: wrap-reverse; justify-content: center; flex-direction: column-reverse; padding:1em .5em 2em;  }
	.copyright {font-size:.7em; }
    /* Full width bg */
				.bg-gray {  }
	
	.vision-intro, .history-intro, .events-intro-block { }
	.vision-intro h4, .history-intro h4, .events-intro-block h4 {font-size: 5vw; line-height:1.2em; bottom:1em; left: 6vw; }
	.vision-intro h4 span, .history-intro h4 span, .events-intro-block h4 span {font-size: 3.5vw; font-weight:normal; }
	.vision-intro h4 span::before, .history-intro h4 span::before, .events-intro-block h4 span::before {content:" ";font-size: 3em;}
			.history-intro h4 strong {font-size: 5vw; }
}
			
@media screen and (max-width: 500px) {
	.sub-title {font-size:5.5vw;}
	.lead-text  {font-size:3.8vw;}
	.body-text-container p {font-size: 0.8rem; padding: 0 1em;}
	.dept-desc, p, .uniform-points dd, .point-sublist li, .history-row dd {font-size: 0.8rem;}
	.signature p {font-size:3.1vw; }
	.signature strong {font-size:4vw; }
	.signature p span {font-size:3vw; }
	footer {position:relative;}
	.dept-item { padding-bottom: 1em;margin-top: .5em; }
	.dept-name {font-size:7vw;}
	.dept-tagline {font-size:5vw;}
	.footer-nav-list {padding-top:6em}
	.anniv-logo-unit { width:80%; position: absolute; top: 1.5em; right: 0; left: 0; margin: auto; }
	.anniv-logo-unit img {max-width:200px;width:80%;margin:0 auto; }
					
	.vision-intro h4, .history-intro h4, .events-intro-block h4 {bottom:4em;｝
	.history-intro h4 {line-height:1.7em;}
	.history-intro h4 strong {font-size:9vw;}
	.hero-jp span { font-size:5vw; }
	.hero-en { font-size:2vw; }
	.hero-content {margin:0; padding: 6vw;}
	.hero-jp { font-size: 9vw }
}