@charset "UTF-8";

/*-------------------------------------------

目次
	共通部分
	pc・sp切り替え
	全てに適応される記述
	タイトル情報
	イメージ画像・イメージ説明・イメージ画像 バナー
	header
	ハンバーガーメニュー
	footer

-------------------------------------------*/

/*-------------------------------------------
共通部分
-------------------------------------------*/
:root {
	--mainDark-c: #767676;
	--subLight-c: #b3b3b3;
	--bg-c: #fdfbf7;
	--tag-color: #9fdfba;
	--accent-edit-c: #a5d8e0;
	--accent-info-c: #9fdfba;
	--common-margin-top: 20px;
 }
* {
	margin: 0;
	padding: 0;
 }
 /* 記述例
 color: var(--mainDark-c);
 color: var(--subLight-c);
 */
 html {
	font-size: 62.5%;  /*10px*/
	font-family: Arial, sans-serif;
	color: var(--mainDark-c);
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: var(--bg-c);
	letter-spacing: 0.5px;
	font-feature-settings: "palt";
    scroll-behavior: smooth;
   }
 body {
	font-size: 1.6rem;
 }
 li {
	list-style: none;
 }
 a {
	display: inline-block;
	transition: all 0.3s;
 }
 a:hover {
	opacity: 0.8;
	transition: color 0.3s ease;
 }
.h1 {
	font-weight: 400;
	font-style: normal;
	font-size: 2.4rem;
}
 .h2 {
	font-family: "Italiana", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 6rem;
	letter-spacing: 5px;
 }
 .h2::after {
	content: attr(title-sub);
	color: var(--subLight-c);
	font-size: 2.4rem;
}
 .h3 {
	color: var(--subLight-c);
	font-size: 2.4rem;
	margin-top: 30px;
 }
 .h3 span{
	color: var(--subLight-c);
	font-family: "Jost", sans-serif;
  	font-optical-sizing: auto;
	 font-weight: 400;
  	font-style: normal;
	font-size: 5.2rem;
}
section:not(:first-child) {
	margin-top: 120px;
}
 @media screen and (max-width: 768px) {
	.h2 {
		font-size: 4rem;
	}
	.h3,.h2::after {
		font-size: 1.6rem;
	}
	.h3 span{
		font-size: 3rem;
	}
 }


 p {
	line-height: 1.8em;
 }
 img {
	width: 100%;
	height: auto;
	display: block;
 }

[id] {
  scroll-margin-top: 80px; /* 固定ヘッダーの高さ分に合わせる */
}


/*-------------------------------------------
pc・sp切り替え
-------------------------------------------*/
 .pc-only {
	 display: block;
 }
 .sp-only {
	 display: none;
 }
@media screen and (max-width: 1024px) {

}
@media screen and (max-width: 768px) {
	.pc-only {
		display: none;
	}
	.sp-only {
		display: block;
	}

}
@media screen and (max-width: 480px) {

}
/*-------------------------------------------
全てに適応される記述
-------------------------------------------*/
.inner {
	width: 100%;
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 15px;
}
.nav__link {
	height: inherit;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* -------------------------------- タイトル関係 */

.title-s {
	display: flex;
	align-items: center;
}

.title-s::before {
	content: "";
	height: 1px;
	flex-grow: 0.2;
	background-color: var(--mainDark-c);
	margin-right: 10px;
}
.title-s {
	margin-top: 30px;
}
.text-s {
	margin-top: 20px;
	/* margin-left: 20px; */
}
 @media screen and (max-width: 480px) {

 }

/* ---------------------------------- イメージ画像 */
.images__container {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-top: 26px;
	gap: 5px;
}

.website__images-sp {
	margin-left: 20px;
}

.website__images-pc {
	max-width: 600px;
	height: auto;
}

.website__images-sp {
	max-width: 337px;
	height: auto;
}


@media screen and (max-width: 768px) {
	.images__container {
		flex-direction: column;
		align-items: center;
	}
	.website__images-pc img {
		height: auto;
		margin-inline: auto;
	}
	.website__images-sp img {
		height: auto;
		margin-inline: auto;
		margin-top: 20px;
	}
}
@media screen and (max-width: 480px) {
	.website__images-sp {
		max-width: 270px;
	}
}

/* ---------------------------------- イメージ説明 */

.sec__logo1 img {
	width: 100px;
	height: auto;
	margin-top: 20px;
	margin-left: 20px;
}
.sec__logo2 img {
	width: 200px;
	height: auto;
	margin-top: 20px;
	margin-left: 20px;
}

 /* ----------------------------- イメージ画像 バナー*/
.images__container.bn {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
	.images__container.bn {
		display: grid;
		grid-template-columns: 1fr;
	}
}
/* ----------------------------- イメージ画像 サムネイル*/
.images__container.thumb {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
	.images__container.thumb {
		grid-template-columns: 1fr 1fr;
	}
}
 /* ----------------------------- イメージ画像 ロゴ*/
.images__container.logo {
	display: flex;
	/* display: grid;
	grid-template-columns: repeat(4, 1fr); */
}
@media screen and (max-width: 768px) {
	.images__container.logo {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
}
 /* ----------------------------- イメージ画像 flyer*/
.flyer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
@media screen and (max-width: 768px) {
.flyer {
    grid-template-columns: repeat(2, 1fr);
	}
}
/*-------------------------------------------
header
-------------------------------------------*/

.header {
    height: 80px;
    font-family: "Italiana", sans-serif;
    letter-spacing: 3px;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 0 8px rgba(179, 179, 179, 0.5);
	display: none;
	z-index: 999;
	background-color: rgb(253, 251, 247, 0.8);
}

.header.visible {
    transform: translateY(0); /* クラスが付与されたら表示 */
}

.header__inner {
	height: inherit;
	align-items: center;
	padding-top: 0;
	max-width: 1280px;
	margin-inline: auto;
}
.pc-nav {
	margin-left: auto;
	height: inherit;
}
.pc-nav ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: inherit;
	gap: 35px;
	padding-inline: 20px;
}
.pc-nav ul li {
/* 	padding-right: 36px; */
	height: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
	.header {
		height: 60px;
	}
}
@media screen and (max-width: 480px) {

}

/*-------------------------------------------
ハンバーガーメニュー
-------------------------------------------*/
.hamburger-menu {
	height: inherit;
    padding-top: 5px;
	text-align: right;
	padding-right: 20px;
}
.hamburger-icon {
	display: inline-block;
	cursor: pointer;
	position: relative;
	width: 50px;
	height: auto;
	z-index: 1000;
 }
.hamburger-icon span {
	display: block;
	position: absolute;
	width: 50px;
	height: 2px;
	background-color: var(--mainDark-c);
	border-radius: 2px;
	transition: all 0.2s ease-in-out;
}
.hamburger-icon span:nth-child(1) {
	top: 0;
}
.hamburger-icon span:nth-child(2) {
	top: 14px;
}
/* ハンバーガーメニューが開かれたとき */
.hamburger-icon.active span:nth-child(1) {
	top: 10px;
	transform: rotate(30deg);
}

.hamburger-icon.active span:nth-child(2) {
	top: 10px;
	transform: rotate(-30deg);
}

.mobile-nav {
	position: fixed;
	top: 0;
	right: -220px; 
	width: 220px;
	height: 100vh; 
	background-color: rgb(118, 118, 118, 0.83);
	transition: right 0.3s ease-in-out;
	color: #fff;
	display: grid;
	place-content: center;
	transition: all 0.3s ease-in-out;
}
/* メニューが開かれたとき */
.mobile-nav.active {
	transform: translateX(-100%);
	transition: all 0.3s ease-in-out;
}
.mobile-nav ul {
	width: inherit;
    height: inherit;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.mobile-li {
	height: 100px;
	width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

/*-------------------------------------------
footer
-------------------------------------------*/
.footer {
	background-color: var(--subLight-c);
	color: #fff;
	font-family: "Italiana", sans-serif;
    letter-spacing: 3px;
	height: 150px;
	/* margin-top: 120px; */
}
.footer__inner {
	max-width: 610px;
    margin-inline: auto;
    padding-inline: 20px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: inherit;
}
.footer__nav {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer__nav ul {
	height: inherit;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
.footer__nav ul li{
	height: inherit;
	display: flex;
	justify-content: center;
	align-items: center;
	height: inherit;
}

.footer__logo {
	width: 150px;
	height: auto;
}
.footer__copy {
}

@media screen and (max-width: 1024px) {

}
@media screen and (max-width: 768px) {
	
}
@media screen and (max-width: 480px) {
	.footer__nav ul {
		gap: 0;
		flex-direction: column;
	}
}

.icon-flex {
	display: flex;
	align-items: center;
}
.icon-flex span {
	padding-right: 5px; 
}

code {
  all: unset;
  font-family: inherit;
  font-size: inherit;
  background: none;
  padding: 0;
  border: none;
}
