@charset "utf-8";

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

.clearfix	{
	display				: block ;
}

/* Hides from IE-mac \*/
* html .clearfix { height : 1% ; }
/* End hide from IE-mac */

html	{
	background		: none ;
	position		: relative ;
	width			: 100% ;
	height			: 100% ;
	margin: 0;
	padding: 0;
}

body	{
	width	: 100% ;
	padding	: 0 ;
	margin	: 0 ;
	font-family: 'Noto Sans JP', sans-serif;
	font-size	: 16px ;
	font-weight	: 400 ;
	line-height	: 1.5;
	color	: #4b4b4b;
	-webkit-text-size-adjust: 100%;
	position: relative ;
	overflow-x: hidden;
	background-color: #fff;
}

a img	{
	border			: none ;
}

a:hover img{
}

a	{
	color: #000;
	text-decoration	: none ;
}

a:hover{
	color: #000;
	text-decoration	: none ;
}

form{
	margin			: 0 ;
	padding			: 0 ;
}



/*************************TOP*************************/
.main_bg{
	width: 100%;
	height: 800px;
	background-image: url("../img/main.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}


/* アニメーション設定 */
.arrowWrap {
  height: 200px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0; /* 既存のmarginをリセット */
}

.arrowInner p {
  font-size: 12px;
  text-align: center;
  color: #fff;
}

.arrow {
  width: 1px;
  height: 90px;
  margin: 20px auto 0;
  background-color: #eee;
  position: relative;
  overflow: hidden;
}

.arrow::before {
  content: '';
  width: 1px;
  height: 120px;
  margin: 20px auto 0;
  background-color: #000;
  position: absolute;
  top: -150px;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s ease 0s infinite normal;
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}

.mainbox{
	width: 1200px;
	margin: 0 auto;
}

.logo{
	width: 390px;
	height: 140px;
	padding: 30px 0 50px;
}
.logo img{
	width: 390px;
	height: 140px;
}


.maintxt01{
	width: 100%;
	font-size: 48px;
	font-weight: 700;
	padding: 0;
	margin: 0 0 20px;
	line-height: 1.2;
	color: #fff;
}
.maintxt01 span{
	font-size: 20px;
	font-weight: 400;
}

.maintxt02{
	width: 100%;
	font-size: 48px;
	font-weight: 400;
	margin: 0 0 20px;
	color: #fff;
}

.maintxt03{
	width: 100%;
	font-size: 20px;
	font-weight: 400;
	margin: 0 0 20px;
	color: #fff;
}

/****Gナビ****/
.globalNav {
  position: fixed;
  top: 60%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 100;
}

.globalNav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.globalNav ul li a {
  font-family: "Zilla Slab", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.8),
    0 0 8px rgba(0, 0, 0, 0.8);
  transition: opacity 0.2s;
}

.globalNav ul li a:hover {
  opacity: 0.7;
}



/****about****/
.aboutSection {
  position: relative;
  padding: 80px 0 80px;
  overflow: hidden;
}

/* ①青背景：左からスライド */
.aboutBg {
  position: absolute;
  top: 0;
  left: 0;
  /* 左余白 + テキストエリア + gap + 画像500pxの半分 */
  /* (100vw - 1200px) / 2 + 1200px - 500px + 250px = (100vw - 1200px)/2 + 950px */
  width: calc((100vw - 1200px) / 2 + 950px);
  height: 100%;
  background-color: #1a85c8;
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.aboutSection.is-active .aboutBg {
  transform: translateX(0);
}

/* コンテンツ共通 */
.aboutInner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 1200px;
  margin: 0 auto;
}

/* ②テキスト：ふわっと */
.aboutText {
  flex: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
}

.aboutSection.is-active .aboutText {
  opacity: 1;
  transform: translateY(0);
}

.aboutLabel {
  font-family: "Zilla Slab", serif;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.aboutLabel span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 21px;
  color: #fff;
  margin-top: 4px;
  font-weight: 400;
}

.aboutHeading {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin: 16px 0 20px;
  line-height: 1.5;
}

.aboutBody {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ③画像：右からふわっと */
.aboutImage {
  flex-shrink: 0;
  width: 500px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease 1.2s, transform 0.7s ease 1.2s;
}

.aboutSection.is-active .aboutImage {
  opacity: 1;
  transform: translateX(0);
}

.aboutImage img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.35);
}





/****business****/
/* セクション共通ヘッダー */
.sectionHeader {
  text-align: center;
  margin-bottom: 50px;
}

.sectionTitle {
  font-family: "Zilla Slab", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
  color: #333;
  margin: 0;
  line-height: 1;
}

.sectionSub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 21px;
  color: #333;
  margin-top: 8px;
}

/* グリッド */
.businessSection {
  padding: 150px 0 0;
  background: #fff;
}

.businessGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 1200px;
  margin: 0 auto;
}

/* カード */
.businessCard {
	width: 540px;
  background: #f6f6f6;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  margin: 0 0 60px;
}

.cardHeader {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px 16px;
}

/* 番号バッジ */
.cardNum {
  font-family: "Zilla Slab", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
  color: #fff;
  line-height: 1;
  width: 68px;
  height: 58px;
  padding: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 各カードの番号色 */
.businessCard:nth-child(1) .cardNum { background: #2185c5; }
.businessCard:nth-child(2) .cardNum { background: #7ecefd; }
.businessCard:nth-child(3) .cardNum { background: #ff9715; }
.businessCard:nth-child(4) .cardNum { background: #f20253; }

.cardTitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.cardBody {
  flex: 1;
  padding: 0 24px 20px;
  text-align: center;
}

.cardBody img {
  width: 160px;
  height: auto;
  margin: 0 auto 8px;
  display: block;
}

/* 英語テキスト */
.cardEn {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #9a9a9a;
  margin-bottom: 16px;
  line-height: 1;
  margin: 0 0 50px;
}

.cardText {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  text-align: left;
}
.cardText span{
  font-size: 20px;
  display: block;
  text-align: center;
}

/* ボタン */
.cardBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 358px;
  margin: 0 auto 24px;
  padding: 12px;
  border: 2px solid #333;
  border-radius: 10px;
  color: #333;
  font-family: "Zilla Slab", serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

/* アロー：SVG */
.btnArrow {
  display: inline-block;
  width: 20px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpolyline points='1,1 10,11 19,1' fill='none' stroke='%23333333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: background-image 0.25s;
}

/* ホバー */
.cardBtn:hover {
  background: #333;
  color: #fff;
}

.cardBtn:hover .btnArrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpolyline points='1,1 10,11 19,1' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}



/****case study****/
.caseSection {
  padding: 150px 0 0;
  background: #fff;
}

/* 各ケース行 */
.caseRow {
  position: relative;
  margin-bottom: 80px;
}

/* 色背景：左端?画像中央まで */
.caseBg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc((100vw - 1200px) / 2 + 950px);
  height: 100%; /* ← calc(100% - 20px) から戻す */
  z-index: 0;
}

/* 各行の背景色 */
.case01 .caseBg{ background: #2185c5; }
.case02 .caseBg{ background: #7ecefd; }
.case03 .caseBg{ background: #ff9715; }
.case04 .caseBg{ background: #f20253; }

/* コンテンツ幅 */
.caseInner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center; /* 戻す */
  gap: 0;
  width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* テキストエリア */
.caseText {
  flex: 1;
  padding-right: 40px;
}

.caseLabel {
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}

.caseCat {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

.caseTitle {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 16px;
}

.casePeriod01 {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  background-color: #fff;
  color: #2185c5;
  padding: 2px 16px;
  margin-bottom: 20px;
}
.casePeriod02 {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  background-color: #fff;
  color: #7ecefd;
  padding: 2px 16px;
  margin-bottom: 20px;
}
.casePeriod03 {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  background-color: #fff;
  color: #ff9715;
  padding: 2px 16px;
  margin-bottom: 20px;
}
.casePeriod04 {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  background-color: #fff;
  color: #f20253;
  padding: 2px 16px;
  margin-bottom: 20px;
}

.caseBody {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.8;
}

/* 画像 */
.caseImage {
  flex-shrink: 0;
  width: 500px;
  position: relative;
  top: 0;
  padding-bottom: 0;
  margin-top: -40px;  /* 上にはみ出す */
  margin-bottom: -300px; /* 下にはみ出す */
}

.caseImage img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.35);
}

/* アンダーバー：左端?画像中央より少し手前 */
.caseUnderbar {
  width: calc((100vw - 2000px) / 2 + 750px);
  height: 20px;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 150px;
}

.case01bar { background: #2185c5; }
.case02bar { background: #7ecefd; }
.case03bar { background: #ff9715; }
.case04bar { background: #f20253; }


.caseSub {
  font-size: 21px;
  font-weight: 400;
}





/****LOUNGE K****/
.loungeSection {
  padding: 150px 0 0;
  background: #fff;
}

.loungeInner {
  text-align: center;
  width: 1200px;
  margin: 0 auto;
}

.loungeText {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}

.loungeImage {
  width: 600px;
  margin: 0 auto 20px;
}

.loungeImage img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.25);
}

.loungeAddress {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 60px;
}

/* インスタエリア */
.loungeInsta {
  width: 100%;
  margin-top: 40px;
}

.loungeInstaWrap {
  position: relative;
  width: 100%;
}

/* 透明オーバーレイ */
.instaOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}



/****company****/
.companySection {
  padding: 150px 0;
  background: #fff;
}

.companyInner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.companyTable {
  border-collapse: collapse;
  width: 600px;
  margin-bottom: 50px;
}

.companyTable tr {
  border-bottom: 1px solid #2185c5;
}

.companyTable tr:first-child {
  border-top: 1px solid #2185c5;
}

.companyTable th {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  padding: 16px 40px 16px 0;
  white-space: nowrap;
  vertical-align: top;
  width: 120px;
}

.companyTable td {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  padding: 16px 0;
}

.companyLogo img {
  width: 390px;
  height: 140px;
  object-fit: contain;
  margin: 50px 0 80px;
}




/****contact****/
.contactSection {
  background: #2185c5;
  padding: 80px 0;
}

.contactInner {
  width: 600px;
  margin: 0 auto;
}

.contactSection .sectionHeader {
  margin-bottom: 30px;
}

.contactLead {
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 50px;
}

/* フォーム */
.contactForm {
  width: 600px;
  margin: 0 auto;
}

.formRow {
  margin-bottom: 24px;
}

.formRow label {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px;
}

.formRow input[type="text"],
.formRow input[type="email"],
.formRow input[type="tel"],
.formRow textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border: none;
  background: #fff;
  color: #333;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

.formRow textarea {
  resize: vertical;
}

/* チェックボックス */
.checkboxGroup {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.checkLabel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  margin-bottom: 0;
}

.checkLabel input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* プライバシーポリシー */
.privacyText {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* 送信ボタン */
.formSubmit {
  text-align: center;
}

.submitBtn {
 display: inline-block;
  padding: 14px 160px;
  background: #333333;
  color: #fff;
  border: 2px solid #333333;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  margin: 40px 0;
}

.submitBtn:hover {
  background: #fff;
  color: #333333;
}

.contactTitle {
  color: #fff;
}

.contactSub {
  color: #fff;
}



.copy{
	width: 100%;
	background-color: #fff;
	padding: 8px 0;
	text-align: center;
	font-size: 14px;
	color: #2185c5;
}

@media screen and (max-width: 768px) {
/* 768pxまでの幅の場合に適応される */
.main_bg{
	width: 100%;
	height: 100vh;
	background-image: url("../img/main.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}


/* アニメーション設定 */
.arrowWrap {
  height: 200px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0; /* 既存のmarginをリセット */
}

.arrowInner p {
  font-size: 12px;
  text-align: center;
  color: #fff;
}

.arrow {
  width: 1px;
  height: 90px;
  margin: 20px auto 0;
  background-color: #eee;
  position: relative;
  overflow: hidden;
}

.arrow::before {
  content: '';
  width: 1px;
  height: 120px;
  margin: 20px auto 0;
  background-color: #000;
  position: absolute;
  top: -150px;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s ease 0s infinite normal;
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}

.mainbox{
	width: 90%;
	margin: 0 auto;
}

.logo{
	width: 195px;
	height: 70px;
	padding: 30px 0 50px;
}
.logo img{
	width: 195px;
	height: 70px;
}


.maintxt01{
	width: 100%;
	font-size: 24px;
	font-weight: 700;
	padding: 0;
	margin: 0 0 20px;
	line-height: 1.2;
	color: #fff;
}
.maintxt01 span{
	font-size: 14px;
	font-weight: 400;
}

.maintxt02{
	width: 100%;
	font-size: 20px;
	font-weight: 400;
	margin: 0 0 20px;
	color: #fff;
}

.maintxt03{
	width: 100%;
	font-size: 14px;
	font-weight: 400;
	margin: 0 0 20px;
	color: #fff;
}

/****Gナビ****/
.globalNav {
	display: none !important;
}

.globalNav ul {
	display: none !important;
}

.globalNav ul li a {
	display: none !important;
}

.globalNav ul li a:hover {
	display: none !important;
}


/****about****/
.aboutSection {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

/* ①青背景：左からスライド */
.aboutBg {
  position: absolute;
  top: 0;
  left: 0;
  /* 左余白 + テキストエリア + gap + 画像500pxの半分 */
  /* (100vw - 1200px) / 2 + 1200px - 500px + 250px = (100vw - 1200px)/2 + 950px */
  width: 90%;
  height: 70%;
  background-color: #1a85c8;
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.aboutSection.is-active .aboutBg {
  transform: translateX(0);
}

/* コンテンツ共通 */
  .aboutInner {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
    width: 90%;
  }

/* ②テキスト：ふわっと */
.aboutText {
  flex: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
  width: 100%;
}

.aboutSection.is-active .aboutText {
  opacity: 1;
  transform: translateY(0);
}

.aboutLabel {
  font-family: "Zilla Slab", serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.aboutLabel span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #fff;
  margin-top: 4px;
  font-weight: 400;
}

.aboutHeading {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin: 16px 0 20px;
  line-height: 1.5;
}

.aboutBody {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
  width: 75%;
}

/* ③画像：右からふわっと */
.aboutImage {
    width: 100%;
  }

.aboutSection.is-active .aboutImage {
  opacity: 1;
  transform: translateX(0);
}

.aboutImage img {
    width: 100%;
  }


/****business****/
/* セクション共通ヘッダー */
.sectionHeader {
  text-align: center;
  margin-bottom: 50px;
}

.sectionTitle {
  font-family: "Zilla Slab", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #333;
  margin: 0;
  line-height: 1;
}

.sectionSub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #333;
  margin-top: 8px;
}

/* グリッド */
.businessSection {
  padding: 100px 0 0;
  background: #fff;
}

  .businessGrid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 90%;
    padding: 0 20px;
    box-sizing: border-box;
  }

/* カード */
.businessCard {
    width: 100%;
  }

.cardHeader {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px 16px;
}

/* 番号バッジ */
.cardNum {
  font-family: "Zilla Slab", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #fff;
  line-height: 1;
  width: 38px;
  height: 28px;
  padding: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 各カードの番号色 */
.businessCard:nth-child(1) .cardNum { background: #2185c5; }
.businessCard:nth-child(2) .cardNum { background: #7ecefd; }
.businessCard:nth-child(3) .cardNum { background: #ff9715; }
.businessCard:nth-child(4) .cardNum { background: #f20253; }

.cardTitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.cardBody {
  flex: 1;
  padding: 0 24px 20px;
  text-align: center;
}

.cardBody img {
  width: 160px;
  height: auto;
  margin: 0 auto 8px;
  display: block;
}

/* 英語テキスト */
.cardEn {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #9a9a9a;
  margin-bottom: 16px;
  line-height: 1;
  margin: 0 0 50px;
}

.cardText {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  text-align: left;
}
.cardText span{
  font-size: 20px;
  display: block;
  text-align: center;
}

/* ボタン */
  .cardBtn {
    width: 80%;
    box-sizing: border-box;
  }

/* アロー：SVG */
.btnArrow {
  display: inline-block;
  width: 20px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpolyline points='1,1 10,11 19,1' fill='none' stroke='%23333333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: background-image 0.25s;
}

/* ホバー */
.cardBtn:hover {
  background: #333;
  color: #fff;
}

.cardBtn:hover .btnArrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpolyline points='1,1 10,11 19,1' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}



/****case study****/
.caseSection {
  padding: 60px 0 0;
  background: #fff;
}

/* 各ケース行 */
.caseRow {
  position: relative;
  margin-bottom: 40px;
}

/* 色背景：左端?画像中央まで */
.caseBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%; /* ← calc(100% - 20px) から戻す */
  z-index: 0;
}

/* 各行の背景色 */
.case01 .caseBg{ background: #2185c5; }
.case02 .caseBg{ background: #7ecefd; }
.case03 .caseBg{ background: #ff9715; }
.case04 .caseBg{ background: #f20253; }

/* コンテンツ幅 */
  .caseInner {
    flex-direction: column;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

/* テキストエリア */
  .caseText {
    padding-right: 0;
    width: 100%;
  }

.caseLabel {
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}

.caseCat {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

.caseTitle {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 16px;
}

.casePeriod01 {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  background-color: #fff;
  color: #2185c5;
  padding: 2px 16px;
  margin-bottom: 20px;
}
.casePeriod02 {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  background-color: #fff;
  color: #7ecefd;
  padding: 2px 16px;
  margin-bottom: 20px;
}
.casePeriod03 {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  background-color: #fff;
  color: #ff9715;
  padding: 2px 16px;
  margin-bottom: 20px;
}
.casePeriod04 {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  background-color: #fff;
  color: #f20253;
  padding: 2px 16px;
  margin-bottom: 20px;
}

.caseBody {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.8;
  width: 85%;
}

/* 画像 */
.caseImage {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
  }

.caseImage img {
  width: 100%;
  box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.35);
}

/* アンダーバー：左端?画像中央より少し手前 */
.caseUnderbar {
  width: 70%;
  height: 20px;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 50px;
}

.case01bar { background: #2185c5; }
.case02bar { background: #7ecefd; }
.case03bar { background: #ff9715; }
.case04bar { background: #f20253; }


.caseSub {
  font-size: 21px;
  font-weight: 400;
}




/****LOUNGE K****/
.loungeSection {
  padding: 50px 0 0;
  background: #fff;
}

.loungeInner {
  text-align: center;
  width: 90%;
  margin: 0 auto;
}

.loungeText {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
  text-align: left;
}

.loungeImage {
  width: 100%;
  margin: 0 auto 20px;
}

.loungeImage img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.25);
}

.loungeAddress {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 60px;
}

/* インスタエリア */
.loungeInsta {
  width: 100%;
  margin-top: 40px;
}

.loungeInstaWrap {
	display: none !important;
}

/* 透明オーバーレイ */
.instaOverlay {
	display: none !important;
}


.sp_loungeInstaWrap {
  position: relative;
  width: 100%;
}

/* 透明オーバーレイ */
.sp_instaOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

.sp_loungeInstaWrap iframe {
  height: 500px !important;
}



/****company****/
.companySection {
  padding: 40px 0;
  background: #fff;
}

.companyInner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.companyTable {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 30px;
}

.companyTable tr {
  border-bottom: 1px solid #2185c5;
}

.companyTable tr:first-child {
  border-top: 1px solid #2185c5;
}

.companyTable th {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  padding: 16px 40px 16px 0;
  white-space: nowrap;
  vertical-align: top;
  width: 120px;
}

.companyTable td {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  padding: 16px 0;
}

.companyLogo img {
  width: 195px;
  height: 70px;
  object-fit: contain;
  margin: 30px 0 40px;
}




/****contact****/
.contactSection {
  background: #2185c5;
  padding: 40px 0;
}

.contactInner {
  width: 90%;
  margin: 0 auto;
}

.contactSection .sectionHeader {
  margin-bottom: 30px;
}

.contactLead {
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 50px;
}

/* フォーム */
.contactForm {
  width: 100%;
  margin: 0 auto;
}

.formRow {
  margin-bottom: 24px;
}

.formRow label {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
  width: 100%;
}

.formRow input[type="text"],
.formRow input[type="email"],
.formRow input[type="tel"],
.formRow textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border: none;
  background: #fff;
  color: #333;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

.formRow textarea {
  resize: vertical;
}

/* チェックボックス */
.checkboxGroup {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.checkLabel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  margin-bottom: 0;
}

.checkLabel input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* プライバシーポリシー */
.privacyText {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* 送信ボタン */
.formSubmit {
  text-align: center;
}

.submitBtn {
 display: inline-block;
  padding: 14px 80px;
  background: #333333;
  color: #fff;
  border: 2px solid #333333;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  margin: 40px 0;
}

.submitBtn:hover {
  background: #fff;
  color: #333333;
}

.contactTitle {
  color: #fff;
}

.contactSub {
  color: #fff;
}



.copy{
	width: 100%;
	background-color: #fff;
	padding: 8px 0;
	text-align: center;
	font-size: 14px;
	color: #2185c5;
}


}


@media screen and (min-width: 769px) {
/*　画面サイズが769pxからはここを読み込む　*/

.sp_head{
	display: none !important;
}
.sp_loge{
	display: none;
}
.sp_loge02{
	display: none;
}

.spbr{
	display: none;
}

.sp_loungeInstaWrap {
	display: none;
}

/* 透明オーバーレイ */
.sp_instaOverlay {
	display: none;
}

.sp_loungeInstaWrap iframe {
	display: none;
}

}

