@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

/* CSS Document */
/**********************************************************************リセット*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:20px;
    vertical-align:baseline;
    background:transparent;
	text-align: justify;
	text-decoration: none;
	color: #371900;
	scroll-behavior: smooth;
}

body {
    line-height:1.7;
	font-family: 'Noto Sans JP', sans-serif;
	background-color: #FFFAF0;
	width: 100%;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	text-decoration: none;
	display: inline-block;
}

img{
	width: 100%;
}

* {
   box-sizing: border-box;
}
/**********************************************************************リセットここまで*/

/**********************************************************************共通*/
div.con880{
	margin: 0 auto;
	width: 880px;
	padding: 80px 0 100px; 
	display: flex;
	align-content: flex-start;
}
.sec>div.con880{
	flex-direction: column;
	text-align: center;
}
.sec>div.con880>div{
	display: flex;
	justify-content: space-between;
	gap: 50px;
	align-items: flex-start;
	margin-top: 80px;
}
.sec>div.con880>div>img{
	width: 390px;
}
.sec>div.con880>div.btns{
	justify-content: center;
	gap: 20px;
}
.sec>div.con880>div.btns>a{
	width: 400px;
	transition: transform 0.5s ease;
}
.sec>div.con880>div.btns>a:hover {
	transform: scale(1.05); /* ← 拡大 */
	opacity: 0.85; /* ← 少し透明に */
}
/**********************************************************************共通ここまで*/

/**********************************************************************スクロールふわっとここまで*/
/* 基本のfadeinアニメーション */
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

/* 表示時にshowクラスがつく */
.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延指定クラス */
.delay1 { transition-delay: 0s; }
.delay2 { transition-delay: 0.2s; }
.delay3 { transition-delay: 0.4s; }
.delay4 { transition-delay: 0.6s; }
.delay5 { transition-delay: 0.8s; }

/**********************************************************************スクロールふわっとここまで*/

/**********************************************************************ヘッダー*/
/*============================
 共通設定
============================*/
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  padding: 10px 0;
  z-index: 1000;
  display: none;
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  width: 260px;
  height: auto;
}

.header-menu {
  display: flex;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-menu li img {
  width: 100px;
  transition: transform 0.5s ease;
}
.header-menu li img:hover {
	transform: scale(1.05); /* ← 拡大 */
	opacity: 0.85; /* ← 少し透明に */
}

.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  margin-right: 20px;
}
.header-hamburger span {
  width: 30px;
  height: 2px;
  background: #333;
  display: block;
  transition: all 0.3s;
}

/*============================
 モバイル表示
============================*/
@media (max-width: 768px) {
  /* ロゴ非表示（モバイル時） */
  .header-logo img {
    display: none;
  }

  /* ヘッダー内の配置調整 */
  .header-inner {
    justify-content: space-between;
    padding: 20px;
  }

  /* ハンバーガー表示 */
  .header-hamburger {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    margin-right: 20px;
  }

  .header-hamburger span {
    width: 30px;
    height: 2px;
    background: #333;
    display: block;
    transition: all 0.3s;
  }

  /* メニュー（初期状態は非表示） */
  .header-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding: 0;
    list-style: none;

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

    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
  }

  /* メニューが開いた時 */
  .header-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* メニュー内の画像 */
  .header-menu li img {
    width: 140px;
  }

  /* ===== CSSだけで描いた ×（閉じる）ボタン ===== */
  .menu-close {
	  position: relative;
	  width: 48px;
	  height: 70px; /* 少し高くして「閉じる」分の余白を確保 */
	  background: none;
	  border: none;
	  cursor: pointer;
	  text-align: center;
	}

	.menu-close span {
	  position: absolute;
	  top: 20%;
	  left: 50%;
	  width: 40px;
	  height: 2px;
	  background: #333;
	  transform-origin: center;
	}

	.menu-close span:first-child {
	  transform: translate(-50%, -50%) rotate(45deg);
	}

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

	.menu-close small {
	  display: block;
	  margin-top: 40px;
	  font-size: 12px;
	  color: #333;
	}
}

/**********************************************************************ヘッダーここまで*/

/**********************************************************************トップ*/

#top {
  position: relative;
  width: 1280px;
  height: 900px;
  overflow: hidden;
  margin: 0 auto;
}

/* ========= 共通レイヤースタイル ========= */
.image-layer {
  position: absolute;
  object-fit: cover;
  opacity: 0;
  transition: all 1s ease;
}

/* ========= 各レイヤーごとの設定 ========= */

/* 背景画像（1枚目） */
.layer-bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: opacity 3s ease;
}
.layer-bg.show {
  opacity: 1;
}

/* 左からスライドイン（2枚目） */
.layer-left {
  width: 625px;
  height: auto;
  top: auto;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
}
.layer-left.show {
  transform: translateX(0);
  opacity: 1;
}

/* 右からスライドイン（3枚目） */
.layer-right {
  width: 724px;
  height: auto;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  transform: translateX(100%);
}
.layer-right.show {
  transform: translateX(0);
  opacity: 1;
}

/* 下からスライドイン（4枚目） */
.layer-bottom {
  width: 100%;
  height: auto;
  top:auto;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}
.layer-bottom.show {
  transform: translateY(0);
  opacity: 1;
}

/* ロゴ（5枚目）中央上からスライドイン */
.layer-logo {
  width: 373px;
  height: auto;
  top: 500px;
  left: 50%;
  transform: translate(-50%, -200%);
}
.layer-logo.show {
  transform: translate(-50%, -50%);
  opacity: 1;
}
/* タイトル(6枚目) */
.layer-banner {
  width: 780px;
  height: auto;
  position: absolute;
  top: 150px;      /* 上から1/4あたり */
  left: 50%;
  transform: translate(-50%, -150%); /* 上からスライドイン用 初期位置はかなり上 */
  opacity: 0;
  transition: all 1s ease;
  z-index: 10;  /* 重ね順調整 */
}

.layer-banner.show {
  transform: translate(-50%, 0);  /* スライドインして中央へ */
  opacity: 1;
}
/* 電車（6枚目）：下1/4の範囲を走る */
.layer-train {
  opacity: 1 !important; 
  position: absolute;
  width: 370px;
  height: auto;
  bottom: 50px;
  left: -380px;
  z-index: 999;
  animation: train-loop 10s linear infinite;
  animation-play-state: paused; /* JSで再生開始 */
}

/* ゆっくり＆ガタガタ揺れアニメーション */
@keyframes train-loop {
  0% {
    left: -370px;
    bottom: 60px;
    transform: rotate(-10deg);
    visibility: visible;
  }

  15% {
    transform: rotate(-2deg);
  }

  25% {
    bottom: 100px;
    transform: rotate(0deg);
  }

  35% {
    transform: rotate(-2deg);
  }

  45% {
    transform: rotate(2deg);
  }

  55% {
    transform: rotate(3.5deg);
    bottom: 80px;
  }

  65% {
    transform: rotate(5deg);
  }

  75% {
    bottom: 30px;
    transform: rotate(6deg);
  }

  85% {
    left: 100%;
    visibility: hidden;
  }

  86% {
    visibility: hidden;
  }

  99% {
    left: -30%;
    bottom: 50px;
    transform: rotate(0deg);
    visibility: hidden;
  }

  100% {
    visibility: visible;
  }
}



/**********************************************************************トップここまで*/


/**********************************************************************メイン*/
#main{
	width: 100%;
	background: #FFF5B9;
	background-image: url("../img/main-backtop.svg");
	background-position:  top left;
	background-repeat: repeat-x;
	background-size: 75px;
	padding: 100px 0;
}
.main-con01{
	width: 1080px;
	border-radius: 20px;
	background-image: url("../img/mainback.jpg");
	background-position: center center;
	background-size: contain;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
	margin: 0 auto;
	position: relative;
	padding: 30px 50px;
	text-align: center;
}

.lantern-left, .lantern-right{
	position: absolute;
	width: 195px;
	pointer-events: none; /* マウス操作を邪魔しない */
	z-index: 0;            /* 背景にしたい場合は小さめに */
}

/* 左上に配置 */
.lantern-left {
  top: 0;
  left: 0;
}

/* 右上に配置 */
.lantern-right {
  top: 0;
  right: 0;
}
.title-main{
	width: 625px;
	margin: 0 auto;
}

.main-con02{
	display: flex;
	justify-content: center;
	gap: 30px;
	padding-top: 50px;
}
.main-con02>div{
	display: flex;
	flex-direction: column;	
	position: relative;
}
.box-a{
	align-items: flex-end;
	overflow: hidden;
}
.fukidasi{
	width: 186px;
	margin-bottom: 5px;
	margin-right: 10px;
}
.esumaru{
	width: 206px;
}
.box-a>div>img{
	width: 410px;
	margin: 30px 0 5px;
}
.box-a>div{
	display: flex;
	flex-direction: column;	
	align-items: flex-end;
}
.boxname{
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
}
.boxname>span{
	font-weight: normal;
	font-size: 16px;
	text-align: center;
}
.box-b{
	align-items: center;
	width: 100%;
	max-width: 600px;
	overflow: hidden;
}
.box-b>h2{
	width: 100%;
	max-width: 600px;
}
.title01{
	width: 100%;
	max-width: 600px;
	padding-top: 30px;
	margin-bottom: 30px;
}
.box-b>p{
	text-align: center;
}
.title03{
	width: 100%;
	max-width: 600px;
	margin: 50px 0;
}
.btns-layered{
	display: flex;
	flex-direction: column;
	gap:20px;
	width: 100%;
	max-width: 400px;
}
.btns-layered>a{
	width: 100%;
	max-width: 400px;
	transition: transform 0.5s ease;
}
.btns-layered>a:hover {
	transform: scale(1.05); /* ← 拡大 */
	opacity: 0.85; /* ← 少し透明に */
}
.box-c{
	align-items: flex-start;
	overflow: hidden;
}
.box-c>div{
	display: flex;
	flex-direction: column;	
	align-items: flex-start;
	margin: 0 0 50px;
}
.box-c>div>img{
	width: 398px;
}
.card{
	width: 184px;
	margin-left: 50px;
	filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.05));
}


/* アニメーション中に使うクラス */
.shake-image.shake {
  animation: shake-rotate 0.6s ease-out;
}

/* 回転揺れのキーフレーム（5〜10度で2往復） */
@keyframes shake-rotate {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(4deg); }
  50%  { transform: rotate(-4deg); }
  75%  { transform: rotate(6deg); }
  100% { transform: rotate(0deg); }
}
/**********************************************************************メインここまで*/

/**********************************************************************鉄道紹介*/
#sec01 .title02{
	width: 364px;
	margin: 0 auto 50px;
}
#sec01>div>h2{
	width: 464px;
	margin: 0 auto 30px;
}
#sec01>div>div>div>h2{
	width: auto;
	height: 100px;
	margin: 0 auto 20px;
}
#sec01>div>div>div>h2>img{
	width: auto;
	height: 100px;
}
#sec01>div>div>div>p{
	margin-bottom: 20px;
}
#sec01>div>div>div>p.official-site{
	margin-bottom: 0;
	font-weight: bold;
}
#sec01>div>div>div>a.sitelink{
	color: #C80000;
	transition: transform 0.5s ease;
}
#sec01>div>div>div>a.sitelink:hover {
	transform: scale(1.05); /* ← 拡大 */
	opacity: 0.85; /* ← 少し透明に */
}
#sec01>div>hr{
	border: solid 1px #E6E6E6;
	margin: 100px 0 50px;
}

/**********************************************************************鉄道紹介ここまで*/

/**********************************************************************鉄道よもやま話*/
#sec02{
	background-image: url("../img/sec02back.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
#sec02>.con880{
	position: relative;
}
#sec02 .title05{
	width: 364px;
	margin: 0 auto 50px;
}
#sec02 h2{
	width: 498px;
	margin: 0 auto 30px;
}
#sec02 h3{
	font-size: 36px;
	color: #BE3200;
	margin-bottom: 20px;
}
.reverse{
	flex-direction: row-reverse;
}

.btn-top{
	width: 60px;
	position: absolute;
	top: auto;
	bottom: 20px;
	right: 0;
	left: auto;
	transition: transform 0.5s ease;
}
.btn-top:hover {
	transform: scale(1.05); /* ← 拡大 */
	opacity: 0.85; /* ← 少し透明に */
}
/**********************************************************************鉄道よもやま話ここまで*/

/**********************************************************************フッター*/

footer{
	background: #371900;
	padding-bottom: 100px;
}

footer>div.con880{
	display: flex;
	justify-content: space-between;
	padding-bottom: 30px;
}

footer a, footer p{
	color: #fff;
}

.rogo-sei{
	width: 336px;
}
.sns-icons {
  display: flex;
  gap: 20px; /* アイコンの間隔は調整可 */
  align-items: flex-start; /* 縦中央揃え */
}

.sns-icons a {
  display: flex;
  align-items: center; /* aタグ内のimgを縦中央揃え */
  justify-content: center;
  width: 54px;
  height: 54px;
}

.sns-icons a img {
  width: 54px;
  height: auto; /* アスペクト比保持して縮小 */
  display: block;
}
.copyright{
	font-size: 14px;
	margin: 0 auto;
	text-align: center;
	display: inline-block;
	width: 100%;
}
/**********************************************************************フッターここまで*/


.mob{
	display: none;
}
/*************************************************************************************************************************************************モバイル用*/

@media screen and (max-width: 767px) {
	.mob{
		display: block;
	}
	/**********************************************************************共通*/
	div.con880{
		margin: 0 auto;
		width: 100%;
		padding: 50px 5%; 
		display: flex;
		align-content: flex-start;
	}
	.sec>div.con880{
		flex-direction: column;
		text-align: center;
	}
	.sec>div.con880>div{
		display: flex;
		flex-direction: column;
		gap: 50px;
		align-items: flex-start;
		margin-top: 50px;
	}
	.sec>div.con880>div>img{
		width: 100%;
	}
	.sec>div.con880>div.btns{
		flex-direction: column;
		gap: 20px;
	}
	.sec>div.con880>div.btns>a{
		width: 80%;
		margin: 0 auto;
		transition: transform 0.5s ease;
	}
	.sec>div.con880>div.btns>a:hover {
		transform: scale(1.05); /* ← 拡大 */
		opacity: 0.85; /* ← 少し透明に */
	}
	/**********************************************************************共通ここまで*/
	
	/**********************************************************************トップ*/

	#top {
	  position: relative;
	  width: 100%;
	  height: 192vw;
	  overflow: hidden;
	  margin: 0 auto;
	}

	/* ========= 共通レイヤースタイル ========= */
	.image-layer {
	  position: absolute;
	  object-fit: cover;
	  opacity: 0;
	  transition: all 1s ease;
	}

	/* ========= 各レイヤーごとの設定 ========= */

	/* 背景画像（1枚目） */
	.topback-mob {
	  width: auto;
	  height: 192vw;
	  top: 0;
	  left: 0;
	}

	/* ロゴ（5枚目）中央上からスライドイン */
	.layer-logo {
	  width: 70vw;
	  height: auto;
	  top: 100vw;
	  left: 50%;
	  transform: translate(-50%, -200%);
	}
	.layer-logo.show {
	  transform: translate(-50%, -50%);
	  opacity: 1;
	}
	
	/* タイトル(6枚目) */
	.layer-banner {
	  width: 80%;
	  height: auto;
	  position: absolute;
	  top: 20vw;      /* 上から1/4あたり */
	  left: 50%;
	  transform: translate(-50%, -150%); /* 上からスライドイン用 初期位置はかなり上 */
	  opacity: 0;
	  transition: all 1s ease;
	  z-index: 10;  /* 重ね順調整 */
	}

	.layer-banner.show {
	  transform: translate(-50%, 0);  /* スライドインして中央へ */
	  opacity: 1;
	}
	/* 電車（6枚目）：下1/4の範囲を走る */
	.layer-train {
	  opacity: 1 !important; 
	  position: absolute;
	  width: 255px;
	  height: auto;
	  bottom: 50px;
	  left: -380px;
	  z-index: 999;
	  animation: train-loop 10s linear infinite;
	  animation-play-state: paused; /* JSで再生開始 */
	}

	/* ゆっくり＆ガタガタ揺れアニメーション */
	@keyframes train-loop {
	  0% {
		left: -370px;
		bottom: 80px;
		transform: rotate(-10deg);
		visibility: visible;
	  }

	  15% {
		transform: rotate(-2deg);
	  }

	  25% {
		transform: rotate(0deg);
	  }

	  35% {
		transform: rotate(-2deg);
	  }

	  45% {
		transform: rotate(2deg);
	  }

	  55% {
		transform: rotate(-2deg);
	  }

	  65% {
		transform: rotate(2deg);
	  }

	  75% {
		bottom: 80px;
		transform: rotate(-2deg);
	  }

	  98% {
		left: 110%;
		visibility: hidden;
	  }

	  99% {
		left: -370px;
		bottom: 80px;
		visibility: hidden;
	  }

	  100% {
		visibility: visible;
	  }
	}



	/**********************************************************************トップここまで*/
	
	
	/**********************************************************************メイン*/
	#main{
		width: 100%;
		background: #FFF5B9;
		background-image: url("../img/main-backtop.svg");
		background-position:  top left;
		background-repeat: repeat-x;
		background-size: 14.28vw;
		padding: 50px 0;
	}
	.main-con01{
		width: 90%;
		border-radius: 20px;
		background-image: url("../img/mainback.jpg");
		background-position: center center;
		background-size: contain;
		box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
		margin: 0 auto;
		position: relative;
		padding: 30px;
		text-align: center;
	}

	.title-main{
		width: 100%;
		margin: 0 auto 30px;
	}

	.main-con02{
		display: flex;
		flex-direction: column;
		gap: 30px;
		padding-top: 50px;
	}
	.main-con02>div{
		display: flex;
		flex-direction: column;	
		position: relative;
		overflow: hidden;
	}
	.box-a{
		align-items: center;
	}
	.fukidasi{
		width: 186px;
		margin-bottom: 5px;
		margin-right: 10px;
	}
	.esumaru{
		width: 206px;
	}
	
	.box-a { order: 2; }
	.box-b { order: 1; }
	.box-c { order: 3; }
	
	.box-a>div>img{
		width: 100vw;
		margin: 30px 30vw 0 5px;
	}
	.box-a>div{
		display: flex;
		flex-direction: column;	
		align-items: center;
	}
	.boxname{
		font-weight: bold;
		text-align: center;
		line-height: 1.2;
	}
	.boxname>span{
		font-weight: normal;
		font-size: 16px;
		text-align: center;
	}
	.box-b{
		align-items: center;
	}
	.title01{
		width: 80vw;
		padding-top: 30px;
		margin: 0 auto 30px;
	}
	.box-b>p{
		text-align: center;
		text-align: justify;
		width: 90%;
		margin: 0 auto;
	}
	.title03{
		width: 80vw;
		margin: 50px auto 0;
	}
	.btns-layered{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap:20px;
	}
	.btns-layered>a{
		width: 80vw;
	}
	.box-c{
		align-items: flex-start;
	}
	.box-c>div{
		display: flex;
		flex-direction: column;	
		align-items: center;
		margin: 0 0 50px;
	}
	.box-c>div>img{
		width: 100vw;
		margin: 0 0 0 20vw;
	}
	.box-c>div>p{
		margin-right: 20vw;
	}
	.card{
		width: 90%;
		margin: 0 auto 30px;
		filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.05));
	}
	/**********************************************************************メインここまで*/
	
	/**********************************************************************鉄道紹介*/
	#sec01 .title02{
		width: 60%;
		margin: 0 auto 50px;
	}
	#sec01>div>h2{
		width: 90%;
		margin: 0 auto 30px;
	}
	#sec01>div>div>div>h2{
		width: auto;
		height: 70px;
		margin: 0 auto 20px;
	}
	#sec01>div>div>div>h2>img{
		width: auto;
		height: 70px;
	}
	#sec01>div>div>div>p{
		margin-bottom: 20px;
	}
	#sec01>div>div>div>p.official-site{
		margin-bottom: 0;
		font-weight: bold;
	}
	#sec01>div>div>div>a.sitelink{
		color: #C80000;
		transition: transform 0.5s ease;
	}
	#sec01>div>div>div>a.sitelink:hover {
		transform: scale(1.05); /* ← 拡大 */
		opacity: 0.85; /* ← 少し透明に */
	}
	#sec01>div>hr{
		border: solid 1px #E6E6E6;
		margin: 50px 0 20px;
	}

	/**********************************************************************鉄道紹介ここまで*/

	/**********************************************************************鉄道よもやま話*/
	#sec02{
		background-image: url("../img/sec02back.jpg");
		background-repeat: no-repeat;
		background-size: cover;
	}

	#sec02 .title05{
		width: 60%;
		margin: 0 auto 50px;
	}
	#sec02 h2{
		width: 90%;
		margin: 0 auto 30px;
	}
	#sec02 h3{
		font-size: 7.5vw;
		text-align: center;
		color: #BE3200;
		margin-bottom: 20px;
	}
	.reverse{
		flex-direction: row-reverse;
	}
	.btn-top{
		width: 40px;
		position: absolute;
		top: auto;
		bottom: 15px;
		right: 15px;
		left: auto;
		transition: transform 0.5s ease;
	}

	/**********************************************************************鉄道よもやま話ここまで*/

	/**********************************************************************フッター*/

	footer{
		background: #371900;
		padding-bottom: 100px;
	}

	footer>div.con880{
		display: flex;
		flex-direction: column;
		padding-bottom: 30px;
	}

	footer a, footer p{
		color: #fff;
	}

	.rogo-sei{
		width: 336px;
	}
	.sns-icons {
	  display: flex;
	  gap: 20px; /* アイコンの間隔は調整可 */
	  align-items: flex-start; /* 縦中央揃え */
		justify-content: center;
		margin-top: 30px;
		
	}

	.sns-icons a {
	  display: flex;
	  align-items: center; /* aタグ内のimgを縦中央揃え */
	  justify-content: center;
	  width: 10vw;
	  height: 10vw;
	}

	.sns-icons a img {
	  width: 10vw;
	  height: auto; /* アスペクト比保持して縮小 */
	  display: block;
	}
	.copyright{
		font-size: 14px;
		margin: 0 auto;
		text-align: center;
		display: inline-block;
		width: 100%;
	}
	/**********************************************************************フッターここまで*/

	.pc{
		display: none;
	}
}


