/* =========================================
   RESET
========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  color: #001878;
  background: #fff;
  font-family:"Noto Sans HK", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
}

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

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

button {
  cursor: pointer;
}

/* =========================================
   HEADER
========================================= */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;

  width: 100%;
  height: 0;

  color: #fff;
}



/* -----------------------------------------
   HAMBURGER BUTTON
----------------------------------------- */

.menu-button {
  position: fixed;
  z-index: 103;

  top: 0;
  right: 0;

  width: 80px;
  height: 80px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 0;

  border: none;
  border-radius: 0;

  color: #fff;
  background: #001878;

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.menu-button:hover {
  background: #9BCDDB;
}

.menu-button span {
  display: block;

  width: 22px;
  height: 1px;

  background: #fff;

  transition:
    transform 0.35s ease,
    opacity 0.25s ease;
}


/* -----------------------------------------
   HAMBURGER → CLOSE
----------------------------------------- */

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* -----------------------------------------
   GLOBAL MENU
   上から下へ展開
----------------------------------------- */

.global-menu {
  position: fixed;
  z-index: 101;

  top: 0;
  left: 0;

  width: 100%;
  height: auto;
  min-height: 75vh;

  color: #fff;
  background: rgba(0 24 120 / 0.8);

  /*
    初期状態では上方向に隠す
  */
  transform: translateY(-100%);

  transition:
    transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);

  overflow-y: auto;
}

.global-menu.is-open {
  transform: translateY(0);
}


.global-menu-inner {
  width: 80%;
  min-height: 75vh;
  text-align: center;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 120px 0 80px;
}


/* -----------------------------------------
   MENU LABEL
----------------------------------------- */

.menu-label {
  font-family: "Gelasio", serif;
  margin-bottom: 55px;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
	letter-spacing: 0.1em;
}

.menu-label span{
  font-family: "Noto Serif HK", serif;
  font-size: 27px;
  font-weight: 400;
}


/* -----------------------------------------
   MENU LINKS
----------------------------------------- */

.menu-link {
  position: relative;
  display: block;
  width: 100%;
  padding: 22px 0;
  border-bottom: 1px solid #fff;
  color: #fff;

  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;

  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.menu-link:first-of-type {
  border-top: 1px solid #fff;
}

.menu-link:hover {
  color: #9BCDDB;
	background:rgba(255 255 255 / 0.1);
}

.menu-link {
  display: flex;
	justify-content: center;
}

.menu-link img{
  height: 22px;
	width: auto;
	margin-right: 5px;
}



/* -----------------------------------------
   OVERLAY
----------------------------------------- */

.menu-overlay {
  position: fixed;
  z-index: 99;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}


/* -----------------------------------------
   MENU OPEN
----------------------------------------- */

body.menu-open {
  overflow: hidden;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {


  .menu-button {
    top: 16px;
    right: 16px;

    width: 52px;
    height: 52px;
  }

  .global-menu-inner {
    width: calc(100% - 40px);

    padding: 100px 0 60px;
  }

  .menu-label {
	font-size: 20px;
    margin-bottom: 30px;
  }
	
  .menu-label span{
	font-size: 17px;
  }

  .menu-link {
    padding: 18px 0;
    font-size: 12px;
  }


}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .global-menu,
  .menu-overlay,
  .menu-button span,
  .menu-link {
    transition: none;
  }

}



/* =========================================
   HERO
========================================= */

.hero {
  position: relative;
  height: 80vh;
  min-height: 800px;
  overflow: hidden;
  color: #fff;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      0deg,
      rgba(0 0 0 / 0.3) 0%,
      rgba(255 255 255 / 0) 55%,
      rgba(255 255 255 / 0.3) 100%
    );
}

@media (max-width: 900px) {
	.hero-overlay {
  position: absolute;
  inset: 0;

  background:rgba(0 0 0 / 0.3);
}
}

	
	
.hero-content {
  position: relative;
  z-index: 3;
  width: calc(100% - 10%);
  height: 100%;
  margin: 0 auto ;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40% 0 0;
}

.motherlake{
	width: auto;
	height: 150px;
	position: absolute;
	left: 5%;
	top:50px;
	z-index: 10;
}

.motherlake img{
	width: auto;
	height: 100%;
	filter: drop-shadow(0px 0px 20px rgb(255 255 255 / 0.3));
}

.hero-right{
	position: absolute;
	right: 0;
	top:0;
	z-index: 12;
	width: 30%;
	height: 100%;
/*	background: rgba(255 255 255 / 0.3);*/
	background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
	
}
.hero-right .text{
   	font-size: 14px;
	color: #001878;
	padding: 10px 10% 10px;
	line-height: 1.25;
	width: 	100%;
	height: 80%;
    display:flex;
    flex-direction: column;
}

.hero-right .text .text-p{
  margin: auto;
	overflow:scroll;
	flex-shrink: 0;
}

.hero-right .text .text-p p{
  margin-bottom: 0.5em;
}


.hero-right .text .shiga{
	height: 100%;
	width: 100%;
/*	align-content:center;*/
}

.hero-right .text .shiga img{
	margin: 5% auto;
	max-width: 400px;
}

.hero-right .text .serif{
	font-size: 50px;	
}
.hero-right .text .serif small{
	font-size: 18px;	
}

.mall{
	background-image: url("images/mall.png");
	background-size: cover;
	background-position: right center;
	height: 20%;
	width: 100%;
}

.mall:hover{
  opacity: 0.5;
}


.mall a{
	height: 100%;
	width: 100%;
		display:table;
}

.mall-cover{
  background:
    linear-gradient(
      90deg,
      rgba(0 24 120 / 1) 0%,
      rgba(0 24 120 / 0) 100%
    );
	height: 100%;
	display:table-cell;
  vertical-align:middle;
	width: 100%;
	padding: 0 0 0 10%;
}


.mall-cover p.big{
	font-size: 34px;
	font-weight: 600;
}

.hero h1 {
  margin-bottom: -25px;
  font-family: "Gelasio", serif;
  font-size: clamp(42px, 5.2vw, 78px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  filter: drop-shadow(0px 0px 15px rgb(0 0 0 / 0.5));
}

.slide-indicator {
  position: absolute;
  z-index: 5;
  left: 5%;
  bottom: 50px;
  display: flex;
  gap: 20px;
}

.slide-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  transition: background 0.3s ease;
  border-radius: 5px;
}

.slide-dot.active {
  background: #001878;
}



/* =========================================
   COMMON SECTION
========================================= */

.section {
  padding: 140px 40px;
}

.inner{
	max-width: 1100px;
	min-width: 700px;
	width: 100%;
	padding: 0 50px;
}

.serif{
  font-family: "Noto Serif HK", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.jp{
  font-family: "Noto sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.section-heading {
  width: min(1000px, 100%);
  margin: 0 auto 70px;
  text-align: center;
}

.section-label {
  margin-top: 20px;
  font-size: 20px;
  letter-spacing: 0.35em;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: "Gelasio", serif;
  position: relative;
}

.section-heading h2::after {
	   content: '';
  position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	margin: 0 auto;
   height: 2px;
	width: 50px;
	background: #001878;
}

.section-lead {
  margin-top: 20px;

  color: #666;
  font-size: 14px;
  line-height: 2;
}

/* =========================================
   SNS
========================================= */

section.SNS{
	width: 100%;
	height: 80px;
	background: #001878;
	color: #fff;
	overflow: hidden;
}

section.SNS .inner{
	display: flex;
	justify-content: center;
	margin: 0 auto;
	align-content: center;
}

section.SNS .inner a{
	height: 80px;
	display: flex;
	justify-content: center;
	width: 20%;
	min-width: 200px;
	align-items: center;
}



section.SNS .inner a:hover{
	opacity: 0.5;
}

section.SNS .inner a:nth-child(2):hover{
	opacity: 1;
}


section.SNS .inner a img{
	height: 50px;
	width: 50px;
	align-items: center;
	margin-right: 10px;
}


/* =========================================
   AUDIENCE TABS
========================================= */

.audience-section {
  padding: 140px 40px;
  background: #F0F8FF;
}

.audience-tabs {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.audience-tab {
  background: #D9D9D9;
  position: relative;
  padding: 22px 20px;
  border: none;
  color: #fff;
  cursor: pointer;
  transition:
    color 0.3s ease,
    background 0.3s ease;
  border-radius: 10px 10px 0 0 ;
}


.audience-tab.active {
  background: #001878;
}

.audience-tab:hover {
  background: #9BCDDB;
	margin-top:-8px;
}

.audience-tab.active:hover{
  background: #001878;
}

.tab-en {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.tab-zh {
  display: block;
  font-size: 18px;
  letter-spacing: 0.08em;
}


/* =========================================
   TAB CONTENT
========================================= */

.audience-content {
max-width: 1300px;
  margin: 0 auto;
  border-top: 4px solid #001878;
  border-bottom: 4px solid #001878;
 background: #fff;
}

.tab-panel {
  display: none;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 80px 0 160px;
	
}

.tab-panel.active {
  display: block;

  animation: tabFadeIn 0.45s ease;
}

@keyframes tabFadeIn {

  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

.tab-panel-inner {
  text-align: center;
}


/* =========================================
   CONSUMER CONTENT PLACEHOLDER
========================================= */

/* =========================================
   FOOD GRID
========================================= */

.food-grid {
  width: min(1100px, 100%);
  margin: 60px auto 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 30px;
}


/* =========================================
   FOOD CARD
========================================= */

.food-card {
  overflow: hidden;
  position: relative;
	margin-bottom: 30px; 
}

@media screen and (max-width: 768px) {
.food-card {
  border: 1px solid #ddd;
	margin-bottom: 20px; 
}}

.card-tag{
	position: absolute;
	top:0;
	left: 20px;
	width: 60px;
	height: 140px;
	background: #9BCDDB;
	color: #fff;
	display: flex;
	flex-direction: column;
	z-index: 20;
}

.card-tag p{
	width: 1em;
	margin: 0.5em auto 0;
	line-height: 1.5em;
}

.card-tag p.lh-min{
	line-height: 1.1em;
}

.card-tag img{
	height: 35px;
	width: auto;
	margin: auto auto 15px auto;
}

/* =========================================
   BANNER
========================================= */

.food-card-banner {
  width: 100%;
  height: 158px;
  overflow: hidden;
 margin-bottom: 20px;
	position: relative;
}

.food-card-banner img {
  display: block;
position: absolute;
	top:0;
	left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-card-banner a:hover img:first-child {
  transform: scale(1.1) ;
  opacity: 0.7;
	  transition: transform 0.6s ease;
}


/* =========================================
   CARD CONTENT
========================================= */

.food-card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;

  min-height: 100px;
}
@media screen and (max-width: 768px) {
.food-card-content {
  padding: 0 5%;
}}

/* =========================================
   YOUTUBE
========================================= */

.food-card-video {
  position: relative;

  width: 100%;

  aspect-ratio: 16 / 9;

  background: #000;

  overflow: hidden;
}

.food-card-video iframe {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;
}


/* =========================================
   TEXT / BUTTON
========================================= */

.food-card-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
text-align: left;
  padding: 0 22px;
}

.food-card-text {
  margin: 0;
  color: #333;
  font-size: 13px;
  line-height: 1.5;
}


/* =========================================
   OFFICIAL WEBSITE BUTTON
========================================= */

.official-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
 border-radius: 5px;
	height: 30px;
  width: 100%;
padding: 0 1em;
  border: 1px solid #001878;
  margin-top: 10px;
  color: #001878;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  transition:
    color 0.3s ease,
    background 0.3s ease;
}

.official-button span {
  font-size: 14px;
  transition: transform 0.3s ease;
  fill: #9BCDDB;
}

.official-button:hover {
  color: #fff;
  background: #9BCDDB;
}

.official-button:hover span {
  transform: translate(3px, 0);
  fill: #fff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .food-grid {
    gap: 20px;
  }

  .food-card-banner {
    height: 140px;
  }

  .food-card-info {
    padding: 20px 16px;
  }

  .food-card-text {
    font-size: 11px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

  .food-grid {
    grid-template-columns: 1fr;
    width: 90%;
    gap: 25px;

    margin-top: 40px;
  }

  .food-card-banner {
    height: 160px;
  }

  .food-card-content {
    /*
      スマホでは動画とテキストを
      縦方向に並べる
    */
    display: grid;
    grid-template-columns: 1fr;
  }

  .food-card-video {
    aspect-ratio: 16 / 9;
  }

  .food-card-info {
    min-height: 150px;

    padding: 22px 20px;
  }

  .food-card-text {
    font-size: 11px;
    line-height: 1.9;
  }

}

/* =========================================
   BUYER TABLE
========================================= */

.buyer-table-wrap {
  width: min(1100px, 100%);

  margin: 60px auto 0;

  overflow-x: auto;

  -webkit-overflow-scrolling: touch;
}


/* =========================================
   TABLE
========================================= */

.buyer-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  color: #333;
  font-size: 16px;
  table-layout: fixed;
  text-align: left;
}


/* =========================================
   HEADER
========================================= */

.buyer-table thead th {
  padding: 18px 15px;
  border-left: 2px solid #fff; 
  border-left: 2px solid #fff; 
  border-bottom: 2px solid #fff;
  color: #333;
  background: #D9D9D9;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-align: left;
}


/*
  列幅

  会社名：40%
  取扱商品：40%
  資料：20%
*/

.buyer-table th:nth-child(1) {
  width: 45%;
}

.buyer-table th:nth-child(2) {
  width: 30%;
}

.buyer-table th:nth-child(3) {
  width: 25%;
}


/* =========================================
   BODY
========================================= */

.buyer-table tbody tr {
  border-bottom: 1px solid #333;
	transition:
    background 0.25s ease;
}


.buyer-table td {
  border-left: 1px solid #333;
  padding: 15px;
  vertical-align: middle;
  line-height: 1.8;
}

.buyer-table td:first-child {
  border-left: none;
}


/* =========================================
   COMPANY
========================================= */

.company-cell {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;
}

.company-name {
  font-weight: 400;
  color: #222;
}

.company-name:hover{
  text-decoration: underline;
}


/* =========================================
   OFFICIAL WEBSITE ICON
========================================= */

.website-icon {
  flex: 0 0 auto;

  width: 20px;
  height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.website-icon svg {
  width: 20px;
  height: auto;
  fill: #9BCDDB;
}

.website-icon:hover svg{
  fill: #001878;
  transform: translateY(-2px);
}


/* =========================================
   DOWNLOAD
========================================= */

.download-cell {
  text-align: left;
}

.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  transition:
    color 0.3s ease;
}

.download-link svg {
  width: 20px;
  height: 20px;
  fill: #9BCDDB;
}

.download-link:hover {
  text-decoration: underline;
}

.download-link:hover svg {
  fill: #001878;
  transform: translateY(3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .buyer-table {
    min-width: 650px;
  }

  .buyer-table th,
  .buyer-table td {
    padding: 20px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .buyer-table-wrap {
    margin-top: 40px;
  }

  /*
    横スクロール可能にすることで、
    3列構成を維持
  */

  .buyer-table {
    min-width: 620px;
    font-size: 14px;
  }

  .buyer-table thead th {
    padding: 15px 18px;

    font-size: 12px;
  }

  .buyer-table td {
    padding: 20px 18px;
  }

}




/* =========================================
   BUYER CONFIRM MODAL
========================================= */

.buyer-modal {
  position: fixed;
  z-index: 200;

  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  visibility: hidden;
  opacity: 0;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.buyer-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.buyer-modal-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.65);
}

.buyer-modal-box {
  position: relative;
  z-index: 1;

  width: min(800px, 100%);

  padding: 55px 50px;

  color: #222;
  background: #fff;

  text-align: center;

  transform: translateY(20px);

  transition: transform 0.35s ease;
}

.buyer-modal.is-open .buyer-modal-box {
  transform: translateY(0);
}


.buyer-modal-box h3 {
  margin-bottom: 8px;

  font-size: 20px;
  font-weight: 600;
}

.buyer-modal-question {
  color: #555;

  font-size: 15px;
}

.buyer-modal-close {
  position: absolute;

  top: 15px;
  right: 18px;

  width: 35px;
  height: 35px;

  border: none;
  background: transparent;

  color: #555;

  font-size: 25px;
  font-weight: 200;
  line-height: 1;

  cursor: pointer;
}

.buyer-modal-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;

  margin-top: 35px;
}

.buyer-modal-button {
  height: 58px;

  border: 1px solid #001878;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;

  cursor: pointer;

  transition:
    color 0.3s ease,
    background 0.3s ease;
}

.buyer-modal-button.yes {
  color: #fff;
  background: #001878;
}

.buyer-modal-button.yes:hover {
  color: #001878;
  background: #fff;
}

.buyer-modal-button.no {
  color: #001878;
  background: #fff;
}

.buyer-modal-button.no:hover {
  color: #fff;
  background: #001878;
}

.buyer-modal-button span {
  margin-left: 15px;

  font-size: 17px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

  .audience-section {
    padding: 90px 20px;
  }

  .audience-tabs {
    width: 100%;
  }

  .audience-tab {
    padding: 17px 10px;
  }

  .tab-en {
    font-size: 14px;
  }

  .tab-zh {
    font-size: 11px;
  }

  .tab-panel {
    padding: 55px 0;
  }

  .tab-panel h3 {
    font-size: 26px;
  }

  .tab-panel-description {
    font-size: 11px;
  }

  .buyer-material-card {
    min-height: 130px;

    padding: 25px 20px;
  }

  .buyer-material-card h4 {
    font-size: 15px;
  }

  .buyer-material-card p {
    font-size: 10px;
  }

  .material-arrow {
    margin-left: 15px;
  }

  .buyer-modal {
    padding: 20px;
  }

  .buyer-modal-box {
    padding: 45px 25px;
  }

  .buyer-modal-box h3 {
    font-size: 19px;
  }

  .buyer-modal-question {
    font-size: 13px;
  }

  .buyer-modal-buttons {
    gap: 8px;
  }

}




/* =========================================================
   CONTACT FORM
========================================================= */

.contact-section {
  padding: 140px 40px;s

  background: #fff;
}

.contact-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}


/* =========================================================
   CONTACT HEADING
========================================================= */

.contact-heading {
  margin-bottom: 70px;
}


/* =========================================================
   FORM
========================================================= */

.contact-form-wrap {
  width: 100%;
}

#mailformpro {
  width: 100%;
}


/* =========================================================
   FORM ROW
========================================================= */

.contact-form-row {
  display: grid;

  /*
    左：必須
    中：項目名
    右：入力欄
  */

  grid-template-columns:
    60px
    220px
    minmax(0, 1fr);

  align-items: center;

  min-height: 90px;

  border-top: none;
}


/* 最後の行 */

.form-row-message {
  align-items: start;

  padding-top: 28px;
  padding-bottom: 28px;
}


/* =========================================================
   REQUIRED / OPTIONAL
========================================================= */

.form-required {
  display: flex;

  align-items: center;
  justify-content: flex-start;
}

.form-required span {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 38px;
  height: 22px;

  color: #fff;
  background: #9BCDDB;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.08em;
}

.form-required span.optional {
  color: #ccc;
  background: #e8e8e5;
}


/* =========================================================
   LABEL
========================================================= */

.form-label {
  color: #222;

  font-size: 16px;
  font-weight: 400;

  letter-spacing: 0.05em;
}

.form-label label {
  cursor: pointer;
}

.form-label label span.jp {
  margin: -0.2em;
}

@media (max-width: 900px) {
	.form-label {
  font-size: 12px;
		line-height: 22px;
}
	
	.form-label label span.jp {
  margin: 0 0 0 -1.5em;
}
	
	.form-label label span.jp::after {
  content: " / ";

}

}

/* =========================================================
   INPUT
========================================================= */

.form-input {
  width: 100%;
}

.form-input input,
.form-input select,
.form-input textarea {
  box-sizing: border-box;

  width: 100%;

  border: 1px solid #d4d4d0;

  border-radius: 0;

  color: #333;
  background: #fff;

  font-family: inherit;
  font-size: 13px;

  outline: none;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}


/* text / email / tel */

.form-input input,
.form-input select {
  height: 52px;

  padding: 0 16px;
}


/* textarea */

.form-input textarea {
  min-height: 190px;

  padding: 15px 16px;

  resize: vertical;

  line-height: 1.8;
}


/* placeholder */

.form-input input::placeholder,
.form-input textarea::placeholder {
  color: #aaa;
}


/* focus */

.form-input input:focus,
.form-input select:focus,
.form-input textarea:focus {
  border-color: #001878;

  box-shadow:
    0 0 0 2px rgba(0, 24, 120, 0.08);
}


/* =========================================================
   SELECT
========================================================= */

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";

  position: absolute;

  top: 50%;
  right: 18px;

  width: 7px;
  height: 7px;

  border-right: 1px solid #001878;
  border-bottom: 1px solid #001878;

  transform:
    translateY(-65%)
    rotate(45deg);

  pointer-events: none;
}

.form-input select {
  appearance: none;
  -webkit-appearance: none;

  padding-right: 45px;

  cursor: pointer;
}


/* =========================================================
   MAILFORM PRO ERROR
========================================================= */

.mfp_err {
  margin-top: 6px;

  color: #b00020;

  font-size: 11px;
  line-height: 1.6;
}


/* =========================================================
   PRIVACY AREA
========================================================= */

.privacy-area {
  margin-top: 55px;

  padding: 35px;

  border: 1px solid #d5d5d1;

  background: #fff;
}


/* title */

.privacy-title {
  margin-bottom: 20px;

  color: #222;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 0.06em;
}


/* text area */

.privacy-text {
  max-height: 180px;

  overflow-y: auto;

  padding-right: 15px;

  color: #666;

  font-size: 11px;
  line-height: 2;
}

.privacy-text p {
  margin: 0 0 12px;
}

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


/* scrollbar */

.privacy-text::-webkit-scrollbar {
  width: 4px;
}

.privacy-text::-webkit-scrollbar-track {
  background: #eee;
}

.privacy-text::-webkit-scrollbar-thumb {
  background: #001878;
}


/* =========================================================
   CONSENT
========================================================= */

.privacy-consent {
  margin-top: 25px;

  padding-top: 25px;

  border-top: 1px solid #e2e2df;
}

.consent-label {
  display: inline-flex !important;

  align-items: center;

  position: relative;

  cursor: pointer;
}


/* 元のcheckboxを隠す */

.consent-label input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
}


/* custom checkbox */

.custom-checkbox {
  position: relative;

  display: block;

  width: 20px;
  height: 20px;

  margin-right: 12px;

  border: 1px solid #aaa;

  background: #fff;

  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}


/* checked */

label.mfp_checked span.custom-checkbox {
  border-color: #001878 !important;
  background: #001878 !important;
}


/* check mark */

label.mfp_checked span.custom-checkbox::after {
  content: "" !important;

  position: absolute !important;

  top: 4px !important;
  left: 6px !important;

  width: 5px !important;
  height: 9px !important;

  border-right: 1.5px solid #fff !important;
  border-bottom: 1.5px solid #fff !important;

  transform: rotate(45deg) !important;
}


.consent-text {
  color: #333;

  font-size: 12px;
  font-weight: 500;
}


/* =========================================================
   SUBMIT
========================================================= */

.contact-submit {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}


.contact-submit-button {
  position: relative;
  width: 330px;
  height: 80px;
  border-radius: 5px;
  gap: 25px;
  color: #fff;
  background: #001878;
  font-family: "Noto sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2em;
  cursor: pointer;
	border: none;
}


.contact-submit-button:hover {
  background:#9BCDDB;
}


.submit-arrow {
	position: absolute;
	top:12px;
	left: 0;
	right: 0;
  transition:
    transform 0.3s ease;
	fill:#fff;
}
.submit-text{
	position: absolute;
	bottom:12px;
	left: 0;
	right: 0;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

  .contact-section {
    padding: 90px 20px;
  }

  .contact-heading {
    margin-bottom: 45px;
  }


  /*
    スマートフォンでは
    必須・項目名・入力欄を
    上下構造に変更
  */

  .contact-form-row {
    grid-template-columns: 55px 1fr;

    min-height: auto;

    padding: 22px 0;

    align-items: start;
  }


  .form-required {
    grid-column: 1;
    grid-row: 1;
  }
	

  .form-label {
    grid-column: 2;
    grid-row: 1;

    padding-top: 2px;
  }

@media (max-width: 900px) {
	
  .form-label {
    padding-top: 0px;
	margin-top: -1px;
  }

}

  .form-input {
    grid-column: 1 / -1;
    grid-row: 2;

    margin-top: 14px;
  }


  .form-row-message {
    padding-top: 22px;
    padding-bottom: 22px;
  }


  .form-input input,
  .form-input select {
    height: 50px;

    font-size: 12px;
  }


  .form-input textarea {
    min-height: 170px;

    font-size: 12px;
  }


  /* Privacy */

  .privacy-area {
    margin-top: 35px;

    padding: 25px 20px;
  }


  .privacy-text {
    max-height: 200px;

    font-size: 10px;
  }


  .consent-text {
    font-size: 11px;
  }


  /* Send */

  .contact-submit {
    margin-top: 35px;
  }

  .contact-submit-button {
    width: 220px;
  }

}



/* =========================================
   FOOTER
========================================= */

.site-footer {
  font-family:"Noto Sans HK", sans-serif;
  padding: 70px 0 0;

  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  background: url("images/footer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
	background-position: center bottom;
}

.footer-inner {
  font-size: 11px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}


.footer-inner p{
margin-bottom: 2em;
	line-height: 1.5em;
}


.footer-title {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 12px;
}

.footer-title span{
	font-family: "Gelasio", serif;
	font-size: 14px;
	margin-right: 0.3em;
	letter-spacing: 0.1em;
}

.footer-separator {
  margin: 0 12px;
  color: #fff;
}

.footer-project {
  margin-top: 15px;
  color: #fff;
  font-size: 10px;
}

.mobile-only {
  display: none;
}

.fotter-bottom{
	width: 100%;
	height: 60px;
	background: #001878;
	color: #fff;
	font-size: 12px;
	display: flex;
	justify-content: space-between;
	margin: 80px 0 0 0;
	padding: 0 50px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .header-inner {
    width: calc(100% - 40px);
    height: 75px;
  }

  .header-nav {
    gap: 18px;
    font-size: 9px;
  }

section.SNS{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 52px;
	z-index: 100;
/*
	background: #001878;
	color: #fff;
	overflow: hidden;
*/
}

section.SNS .inner{
/*
	display: flex;
	justify-content: center;
	margin: 0 auto;
	align-content: center;
*/
min-width: 300px;
padding: 0;
}

section.SNS .inner a{
	height: 50px;
	font-size: 12px;
	
/*
	display: flex;
	justify-content: center;
*/
	width: auto;
	min-width: 90px;
	margin: 0 10px;
/*	align-items: center;*/
}

section.SNS .inner a img{
	height: 25px;
	width: 25px;
	margin-right: 10px;
}

  .hero {
  position: relative;
  height: 95vh;
  min-height: 500px;
}


  .hero-content {
    width: calc(100% - 40px);
    padding-top: 50px;
	 height: 50vh;
  }


.motherlake {
    height: 80px;
    left: 5%;
    top: 30px;
}
	
.hero-right{
	position: absolute;
	right: 0;
	top:57vh;
	z-index: 70;
	width: 100%;
	height: 100%;
	background: rgba(255 255 255 / 0.5);
	
}
.hero-right .text{
   	font-size: 11px;
	padding: 5px 5% 5px;
	width: 	100%;
	height: 20vh;
    display:flex;
    flex-direction: column;
}

.hero-right .text .text-p{
  margin: auto;
	overflow:scroll;
	flex-shrink: 0;
}
	
@media (max-width: 900px) {
	.hero-right .text .text-p{
  height: 90%;
}
	}

.hero-right .text .text-p p{
  margin-bottom: 0.5em;	
}


.hero-right .text .shiga{
	display: none;
	height: 100%;
	width: 50%;
/*	align-content:center;*/
}

.hero-right .text .shiga img{
	margin: 5% auto;
	max-width: 400px;
}

.hero-right .text .serif{
	margin-top: 10px; font-size: 18px;	
}
.hero-right .text .serif small{
	font-size: 14px;	
}

.mall{
	background-image: url("images/mall.png");
	background-size: cover;
	background-position: right center;
	height: 20%;
	width: 100%;
}

.mall a{
	height: 100%;
	width: 100%;
		display:table;
}

.mall-cover{
  background:
    linear-gradient(
      90deg,
      rgba(0 24 120 / 1) 0%,
      rgba(0 24 120 / 0) 100%
    );
	height: 100%;
	display:table-cell;
  vertical-align:middle;
	width: 100%;
	padding: 0 0 0 5%;
	font-size: 14px;
}

.mall-cover p.big{
	font-size: 20px;
	font-weight: 600;
}


  .hero h1 {
    font-size: clamp(28px, 11vw, 40px);
	    margin-bottom: 0px;
  }

  .slide-indicator {
position: absolute;
  z-index: 5;
  left: 5%;
  bottom: 45vh;
  display: flex;
  gap: 10px;
  }

  .slide-dot {
    width: 5px;
	height: 5px;
  }

  .scroll-guide {
    display: none;
        }
   

  .section {
    padding: 90px 20px;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2 {
    font-size: 25px;
  }
	
  .section-label {
    font-size: 16px;
	margin-top: 10px;
  }

  .companies {
    min-height: 350px;
  }


  .materials-placeholder {
    min-height: 220px;
  }


  .contact-form {
    width: 100%;
  }

  .form-group {
    margin-bottom: 24px;
  }

  .form-group input,
  .form-group select {
    height: 53px;
  }

  .privacy-box {
    padding: 25px 20px;
  }

  .privacy-text {
    max-height: 180px;
  }

  .consent-label {
    align-items: flex-start;
  }

  .custom-checkbox {
    margin-top: 1px;
  }


  .site-footer {
    padding: 55px 0 0;
  }


  .mobile-only {
    display: block;
  }
  .pc-only {
    display: none;
  }

.fotter-bottom{
	height: 80px;
	font-size: 12px;
	display:inherit;
	margin: 80px 0 50px 0;
	padding: 5px 10px;
}
	
.fotter-bottom p.footer-project{
	margin-bottom: 0.7em;
}

.footer-project {
  margin-top: 10px;
  color: #fff;
	line-height: 1em;
}
}


/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .hero-slide,
  .hero-slide img,
  .hero-button,
  .header-nav a::after {
    transition: none;
    animation: none;
  }

}



/* =========================================
   Mailform Pro CSS Override
========================================= */

/* フォームの入力エリアを常に100%にする */

#mailformpro .form-input {
  width: 100%;
  min-width: 0;
}

#mailformpro .form-input input,
#mailformpro .form-input select,
#mailformpro .form-input textarea {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  border-radius: 3px;
}


/* textareaだけ特に明示 */

#mailformpro .form-input textarea {
  width: 100% !important;
  min-width: 0;

  resize: vertical;
}


/* label側の幅がtextareaに影響しないようにする */

#mailformpro .form-label {
  width: auto;
  min-width: 0;
}

#mailformpro .form-label label {
  display: inline;

  width: auto;
}


/* Gridの3列目を確実に伸ばす */

#mailformpro .contact-form-row {
  grid-template-columns:
    60px
    220px
    minmax(0, 1fr);
}


/* 問い合わせ内容 */

#mailformpro .form-row-message .form-input {
  width: 100%;
  min-width: 0;
}

