@charset "UTF-8";
/* CSS Document */

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

img {
	width: 100%;
	border: none;
	vertical-align: bottom;
}

.pc { display: block !important; }
.sp { display: none !important; }
.sp-point { display: none !important; }


/*Setting***************************************************/
:root {
    --primary-color: #f5f5f5;
	--secondary-color: #08ABFF;
	--jp-primary-font: 'Noto Sans JP', sans-serif;
	--jp-secondary-font: 'Zen Kaku Gothic New', sans-serif;
	--en-primary-font: 'Montserrat', sans-serif;
  	--font-weight-Regular: 400;
  	--font-weight-Medium: 600;
  	--font-weight-Bold: 800;
	--text-color: #323232;
	--text-color-secondary: #000;
	--text-color-tertiary: #08ABFF;

}

::selection {
  background-color: #089aff;
}


body {
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	font-family: var(--jp-primary-font);
	background: var(--primary-color);
	color: var(--text-color);
	letter-spacing: 0.1em;
}

/* ---------------------------- */
/* --- Animation --- */
/* ---------------------------- */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 30%);
  transition: 1.2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
.inview-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.inview-item.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*ボタン関連************************************************************/



/*header************************************************************/
header {
	width: 94%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2% 3%;
}
.header-left {
	width:30%;
	margin: 0;
}
.header-left img {
	width:200px;
}
.header-right {
	width:60%;
	margin: 0 0 0 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-family: var(--jp-secondary-font);
	font-size: 1.4rem;
	font-weight: 700;
	text-decoration: none;
}
.header-right li.h-txt {
	color: var(--text-color-secondary);
	transition: 0.3s;
	margin: 0 0 0 4vw;
	position: relative; 
	text-decoration: none;
	list-style: none;
}
.header-right li.h-txt::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 1.5px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
}
.header-right li.h-txt:hover::after {
  width: 100%; 
  transform: translateX(-50%) scaleX(1);
}

/*fixd-header*****/
.fix-header {
	width: 90%;
	height: 7vh;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5% 5%;
	background-color: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
	transform: translateY(-100%);
	transition: transform 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	z-index: 999;
}
.fix-header.show {
  transform: translateY(0); /* 表示 */
}
.nav-wrapper {
	display: none;
}
.fix-header .header-left {
	width:30%;
	margin: 0;
}
.fix-header .header-left img {
	width:150px;
}



#contents-wrapper {
	width: 100%;
}
/*kv************************************************************/
.kv-area {
	position: relative;
  	width: 100%;
	margin: 0 auto;
  	overflow: hidden;
	background-image: url('../images/kv-bg-image.svg');
	background-size: cover;
	background-position: center top;
}
.kv-inner {
	width: 70%;
	margin: 0 auto;
	padding: 7% 0 18%;
}
.kv-copy {
	font-size: 4.9rem;
	color: var(--text-color);
	font-family: var(--jp-secondary-font);
	font-weight: 700;
	margin-bottom: 20px;
}
.kv-copy-sub {
	font-size: 6.1rem;
	color: var(--text-color);
	font-family: var(--jp-secondary-font);
	font-weight: 700;
	margin-bottom: 50px;
}

.kv-name {
	width: 23%;
}

/*section01*********************************************/
.section-01-area {
	width: 100%;
	background: #fff;
	border-radius: 70px;
	text-align: center;
	padding: 115px 0;
	position: relative;
}
.section-title-en {
	font-size: 1.4rem;
	color: var(--secondary-color);
	font-family: var(--en-primary-font);
	font-weight: 600;
	margin-bottom: 20px;
}
.section-title-jp {
	font-size: 3.2rem;
	color: #000;
	font-family: var(--jp-primary-font);
	font-weight: 700;
	letter-spacing: 0.2em;
	margin-bottom: 15px;
}
.section-title-under {
	margin: 0;
}
.section-title-under img {
	width: 15px;
}
.section-txt-about {
	font-size: 1.8rem;
	line-height: 2.5;
	color: var(--text-color);
	font-family: var(--jp-primary-font);
	font-weight: 700;
	letter-spacing: 0.2em;
	margin: 50px 0;
}
.section-01-img01 {
	position: absolute;
	top:-7%;
	right:3%;
	width: 24%;
}
.section-01-img02 {
	position: absolute;
	top:45%;
	right:2%;
	width: 13%;
}
.section-01-img03 {
	position: absolute;
	bottom: 7%;
	left:3%;
	width: 20%;
}
/*section02*********************************************/
.section-02-area {
	width: 100%;
	text-align: center;
	padding: 115px 0;
	position: relative;
}
.section-02-cnt-box {
	width: 1000px;
	margin: 100px auto;
}
.section-02-subtitle-a {
	width: 99.5%;
	border-bottom: 2px solid #002484;
	font-weight: 700;
	font-size: 2.0rem;
	text-align: left;
	padding-bottom: 20px;
	padding-left: 0.5%;
	margin: 0 auto;
	letter-spacing: 0.15em;
}
.section-02-subtitle-b {
	width: 99.5%;
	border-bottom: 2px solid #00a9d3;
	font-weight: 700;
	font-size: 2.0rem;
	text-align: left;
	padding-bottom: 20px;
	padding-left: 0.5%;
	margin: 0 auto;
	letter-spacing: 0.15em;
}
.section-02-cnt-3c {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 30px 0 10px;
}

.step { 
	position: relative; 
	width: 302px; 
	height: 302px; 
	border-radius: 50%; /* 正円背景 */ 
	background: #fff;
	display: flex; flex-direction: column; 
	align-items: center; 
	justify-content: center; 
	margin: 20px auto; } 
	
	.step-label { 
		position: absolute; 
		top: 30px; 
		left: 10px; 
		background: #002484; 
		color: #fff; 
		padding: 12px 50px; 
		border-radius: 20px; 
		font-size: 1.5rem; 
		font-weight: 600; 
		font-family: var(--en-primary-font); 
	} 
		.step-label-b { 
		position: absolute; 
		top: 30px; 
		left: 10px; 
		background: #00a9d3; 
		color: #fff; 
		padding: 12px 50px; 
		border-radius: 20px; 
		font-size: 1.5rem; 
		font-weight: 600; 
		font-family: var(--en-primary-font); 
	} 
	.step-icon img {
		width: 118px; 
		height: auto; 
		margin: 27px 0 15px; 
	} 
	.step-text { 
		font-size: 1.4rem; 
		color: var(--text-color); 
		text-align: center; 
		font-weight: 700; 
		line-height: 1.5; 
	}
/*section03*********************************************/
.section-03-area {
	width: 100%;
	background: #fff;
	border-radius: 70px;
	text-align: center;
	padding: 115px 0;
	position: relative;
}
.regulation-area {
	width: 280px;
	border-top: 1px solid #b4b4b4;
	border-bottom: 1px solid #b4b4b4;
	display: flex;
	justify-content: space-between;
	padding: 20px 25px;
	margin: 0 auto;
}
.regulation-area .txt-done,
.regulation-area .txt-yet {
	font-size: 1.4rem;
	font-weight: 700;
}
.regulation-area .txt-done::before {
content: "";
  display: inline-block; 
  width: 26px;
  height: 26px;
  margin-right: 8px; 
  vertical-align: middle; 
  background-color:#fff;
  border: 2px solid #08abff;
}
.regulation-area .txt-yet::before {
	content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #e6e6e6;
  margin-right: 8px; 
  vertical-align: middle; 
}
.installation-area {
	width: 1000px;
	margin: 0 auto;
}
.update-txt-area {
	text-align: right;
	margin: 80px 0;
}
.update-txt {
	text-align: right;
	font-size: 1.5rem;
	font-weight: 700;
	border-bottom: 1px solid #000;
	padding: 0 5px 10px 5px;
	display: inline-block;
}
.title-route {
	width: 100%;
	border-bottom: 2px solid #e6e6e6;
	padding-bottom: 5px;
	text-align: left;
}
.route-item {
  position: relative;
  padding-left: 45px;
  line-height: 40px; 
  font-size: 2.0rem;
  color: #000; 
  font-weight: 700;
  letter-spacing: 0.15em;
}

.route-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border: 8px solid;
  border-radius: 50%;
}
.route-item.ginza::before { border-color: #f6a90e; }
.route-item.marunouchi::before { border-color: #f62e36; }
.route-item.hibiya::before { border-color: #d0c7b8; }
.route-item.touzai::before { border-color: #009bbf; }
.route-item.chiyoda::before { border-color: #00bb85; }
.route-item.yuuraku::before { border-color: #c1a470; }
.route-item.hannzou::before { border-color: #8f76d6; }
.route-item.nanboku::before { border-color: #00ac9b; }


.route-btn-area {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 20px 0;
	gap: 10px;
	margin-bottom: 70px;
}
.route-btn-area {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 20px 0 22px;
}

.custom-btn {
  display: inline-flex;
  position: relative;
  width: 192px;
  padding: 20px 0;
  border: 2px solid #08abff;
  border-radius: 8px;
  background-color: #fff;
  color: #002484;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-sizing: border-box;
}

/* 右端の円 */
.custom-btn.has-link::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/img-btn-carsol.svg'); 
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

/* ホバー半透明 */
.custom-btn.has-link:hover {
	opacity: 0.5;
}

/* 無効状態 */
.custom-btn:not(.has-link) {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  color: #b4b4b4;
  cursor: default;
}
.custom-btn:not(.has-link)::after {
  background-color: #e6e6e6;
  content: "";
  background-image: none; /* 矢印なし */
}


/*section04*********************************************/
.faq-box {
	width: 1000px;
	margin: 50px auto;
}
.accordion-cb input {
  display: none;
}
.accordion-item {
  margin-bottom: 15px;
}
.accordion-cb .title {
  display: flex;
  align-items: center;           
  justify-content: flex-start;   /* 左寄せに変更 */
  padding: 20px;
  background: #08abff;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.8rem;
  color: #fff;
  position: relative;            /* ::after用 */
}

.accordion-cb .title::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url('../images/obj-faq-q.svg'); 
  background-size: cover;
  background-position: center;
  margin-right: 15px;
  flex-shrink: 0;  
}
.accordion-cb .title::after {
  content: '+';
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-cb input:checked + label::after {
  content: '-';
}

.accordion-cb .panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-color, #333);
  line-height: 1.8;
  text-align: left;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion-cb input:checked + label + .panel {
  max-height: 500px;  /* コンテンツに応じて調整 */
  padding: 22px;
}
.accordion-cb .panel a {
	color: #3673ff;
	text-decoration: underline;
	line-height: 3;
}
.faq-app-area {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	margin: 20px 0 0 0;
}
.faq-app-area p {
	width: 200px;
	margin-right: 20px;
}
.accordion-under {
	width: 100%;
	border: 1px solid #002484;
	background: #fff;
	padding: 30px 0;
	text-align: center;
	margin: 120px auto 50px;
}
.accordion-under p {
	font-size: 2.0rem;
	color: #002484;
	line-height: 2;
	font-weight: 700;
}
.accordion-under p.link {
	font-size: 1.8rem;
	color: var(--text-color);
	line-height: 2;
	font-weight: 700;
}

/*footer*********************************************/
footer {
	width: 100%;
	border-top: 1px solid #c8c8c8;
	margin: 100px auto 0;
	padding: 60px 0;
}
footer .inner {
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer .logo {
	width: 195px;
}
footer .link-box {
	text-align: right;
	letter-spacing: 0.15em;
	display: flex;
	justify-content: flex-start;
}
footer .link-box li {
	font-size: 1.3rem;
	color: var(--text-color);
	font-weight: 600;
	margin-right: 50px;
}







@media screen and (max-width: 767px) {/* 767px以下に適用されるCSS（スマホ用） */

	.pc { display: none !important; }
	.sp { display: block !important; }
	.sp-point { display: inline !important; }

/*header************************************************************/
header {
	width: 94%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1500;
  background-color: rgba(255, 255, 255, 0.4); /* 白の半透明 */
  backdrop-filter: blur(10px); /* 背景をぼかす */
  -webkit-backdrop-filter: blur(10px); /* Safari対応 */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* ふんわり影 */
}
.header-left {
	width:30%;
	margin: 0;
}
.header-left img {
	width:150px;
}
.header-right {
	display: none;
}
.nav-wrapper {
	display: block;
}
.fix-header {
	display: none;
}
/* 
hamburger(ハンバーガーアイコン)
=================================== *//* ハンバーガー本体（白丸） */
.hamburger {
  position: absolute;
  right: 20px;
  top: 18px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1600;
}

/* ラッパーで線を上下中央＋間隔均等 */
.hamburger__line {
  position: absolute;
  left: 50%;
  width: 25px;
  height: 3px;
  background-color: #000f48;
  transform: translateX(-50%);
  transition: all 0.4s;
  transform-origin: center;
}
/* 初期状態：上下にずらす */
.hamburger__line--1 { top: 14px; }
.hamburger__line--2 { top: 50%; transform: translate(-50%, -50%); }
.hamburger__line--3 { bottom: 14px; }

/* クリック時：中央で× */
.open .hamburger__line--1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.open .hamburger__line--2 {
  opacity: 0;
}
.open .hamburger__line--3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #e6e6e6;
  transition: all 0.8s;
  z-index: 1200;
  overflow-y: auto;
}
/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}
.menu-title {
	font-size: 2.5rem;
	color: #000f48;
	font-family: var(--en-primary-font);
	font-weight: 600;
	margin: 35% auto 2%;
	width: 60%;
	letter-spacing: 0.3em;
}
.sp-nav ul {
	width: 60%;
	margin: 8% auto 0;
	font-size: 1.4rem;
	line-height: 4.5;
	color:var(--text-color);
	font-weight: 700;
	text-align: left;
	letter-spacing: 0.2em;
}
.sp-nav ul li {
  position: relative;
  padding-left: 2.6rem; /* 丸と矢印用の余白 */
  list-style: none; /* デフォルトの黒点は消す */
}
/* 白丸 */
.sp-nav ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
}
/* 緑カーソル（矢印） */
.sp-nav ul li::after {
  content: "";
  position: absolute;
  left: 6px; /* 白丸の中に配置 */
  top: 50%;
  transform: translateY(-50%) rotate(-45deg); /* 右向き矢印 */
  width: 3px;
  height: 3px;
  border-right: 2px solid #000f48;
  border-bottom: 2px solid #000f48;
}
/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 1100;
}
/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

#contents-wrapper {
	width: 100%;
	padding-top: 8vh;
}
/*kv************************************************************/
.kv-area {
	position: relative;
  	width: 100%;
	margin: 0 auto;
  	overflow: hidden;
	background-image: url('../images/kv-bg-image-sp.svg');
	background-size: cover;
	background-position: center top;
	padding: 11vh 0 20vh;
}
.kv-inner {
	width: 80%;
	margin: 0 auto;
	padding: 30% 0 15%;
}
.kv-copy {
	font-size: 2.3rem;
	margin-bottom: 10px;
}
.kv-copy-sub {
	font-size: 2.8rem;
	margin-bottom: 40px;
}
.kv-name {
	width: 60%;
}

/*section01*********************************************/
.section-01-area {
	width: 100%;
	border-radius: 50px;
	padding: 100px 0;
	margin-top: -30px;
}
.section-title-en {
	font-size: 1.3rem;
	margin-bottom: 20px;
}
.section-title-jp {
	font-size: 2.6rem;
	letter-spacing: 0.2em;
	margin-bottom: 15px;
}
.section-title-under img {
	width: 15px;
}
.section-txt-about {
	font-size: 1.5rem;
	line-height: 2.3;
	letter-spacing: 0.1em;
	margin: 50px auto 0;
	width: 85%;
	text-align: justify;
}
.section-01-img01 {
	display: none;
}
.section-01-img02 {
	display: none;
}
.section-01-img03 {
	display: none;
}

/*section02*********************************************/
.section-02-area {
	width: 100%;
	text-align: center;
	padding: 100px 0 50px;
	position: relative;
}
.section-02-cnt-box {
	width: 88%;
	margin: 100px auto;
}
.section-02-subtitle-a {
	width: 99.5%;
	font-size: 1.8rem;
	padding-bottom: 15px;
	padding-left: 0.5%;
	margin: 0 auto;
}
.section-02-subtitle-b {
	width: 99.5%;
	font-size: 1.8rem;
	padding-bottom: 15px;
	padding-left: 0.5%;
	margin: 0 auto;
}
.section-02-cnt-3c {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 30px 0 10px;
}

.step { 
	position: relative; 
	width: 302px; 
	height: 302px; 
	border-radius: 50%; /* 正円背景 */ 
	background: #fff;
	display: flex; flex-direction: column; 
	align-items: center; 
	justify-content: center; 
	margin: 20px auto; } 
	
	.step-label { 
		position: absolute; 
		top: 30px; 
		left: 10px; 
		background: #002484; 
		color: #fff; 
		padding: 12px 50px; 
		border-radius: 20px; 
		font-size: 1.5rem; 
		font-weight: 600; 
		font-family: var(--en-primary-font); 
	} 
		.step-label-b { 
		position: absolute; 
		top: 30px; 
		left: 10px; 
		background: #00a9d3; 
		color: #fff; 
		padding: 12px 50px; 
		border-radius: 20px; 
		font-size: 1.5rem; 
		font-weight: 600; 
		font-family: var(--en-primary-font); 
	} 
	.step-icon img {
		width: 118px; 
		height: auto; 
		margin: 27px 0 15px; 
	} 
	.step-text { 
		font-size: 1.3rem; 
		color: var(--text-color); 
		text-align: center; 
		font-weight: 700; 
		line-height: 1.5; 
	}

/*section03*********************************************/
.section-03-area {
	width: 100%;
	border-radius: 50px;
	padding: 100px 0 50px;
}
.regulation-area {
	width: 60%;
	padding: 20px 25px;
	margin: 30px auto;
}

.installation-area {
	width: 90%;
}
.update-txt-area {
	text-align: right;
	margin: 80px 0;
}
.update-txt {
	text-align: right;
	font-size: 1.4rem;
	padding: 0 5px 10px 5px;
}

.route-item {
  position: relative;
  padding-left: 40px;
  line-height: 40px; 
  font-size: 1.8rem;
  color: #000; 
  font-weight: 700;
  letter-spacing: 0.15em;
}

.route-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 54%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  border: 8px solid;
  border-radius: 50%;
}

.route-btn-area {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 20px 0;
	gap: 15px;
	margin-bottom: 40px;
}
.route-btn-area {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 20px 0 22px;
}

.custom-btn {
  display: inline-flex;
  position: relative;
  width: 100%;
  padding: 15px 0;
}
/* ホバー半透明 */
.custom-btn.has-link:hover {
	opacity: 1;
}

/*section04*********************************************/
.faq-box {
	width: 94%;
	margin: 50px auto;
}
.accordion-item {
  margin-bottom: 8px;
}
.accordion-cb .title {
    min-height: 70px; 
    padding: 7px 50px 7px 15px;
    display: flex;
    align-items: center;
	text-align: left;
	line-height: 1.6;
	font-size: 1.5rem;
  }

.accordion-cb .title::before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url('../images/obj-faq-q.svg'); 
  background-size: cover;
  background-position: center;
  margin-right: 15px;
  flex-shrink: 0;  
}
.accordion-cb .label::after {
  font-size: 1.4rem;
}
.accordion-cb .panel {
  font-size: 1.4rem;
}
.accordion-cb .panel a {
	color: #3673ff;
	text-decoration: underline;
	line-height: 1.5;
}
.accordion-under {
	width: 90%;
	border: 1px solid #002484;
	background: #fff;
	padding: 30px 3%;
	text-align: center;
	margin: 120px auto 50px;
}
.accordion-under p {
	font-size: 1.6rem;
	line-height: 1.8;
}
.accordion-under p.link {
	font-size: 1.6rem;
}

/*footer*********************************************/
footer {
	width: 100%;
	border-top: 1px solid #c8c8c8;
	margin: 50px auto 0;
	padding: 40px 0 20px;
}
footer .inner {
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}
footer .logo {
	width: 200px;
	margin: 0 0 50px 0;
}
footer .link-box {
	letter-spacing: 0.15em;
	display: flex;
	flex-direction: column;
	text-align: center;
}
footer .link-box li {
	font-size: 1.3rem;
	margin-right: 0;
	margin-bottom: 20px;
}





}/* 767px以下に適用されるCSS（スマホ用） */
