@charset "utf-8";
/* CSS関数設定 */
:root {
	/* カラーパレット */
	--WHITE: #FFF;
	--BLACK: #000;
	--GRAY: #414141;
	--LGRAY: #707070;
	--TGRAY: #ccc;
	--BGGRAY: #F4F4F4;
	--BLUEGRAY: #99B2CC;
	--YELLOW: #F3DF26;
	--BEIGE: #F3EADE;
	--GREEN: #EDF0CB;
	--PINK: #F3DFDD;
	--BLUE: #c7ecee;
	--BTN: #ec6863;
	--GREEN: #ccf7ba;


	/* テキストカラー */
	--TXT_COLOR_BASE: var(--GRAY);
	--TXT_COLOR_WHITE: var(--WHITE);

	/* 共通角丸 */
	--COMMON_BDRS_S: 5px;
	--COMMON_BDRS_M: 10px;
	--COMMON_BDRS_L: 20px;

	/* ベース文字間隔 */
	--LETTER_SPACING: 0.1em;

	/* フォント */
	--FF_BASE: "Noto Sans JP", serif;

	/* 英数字フォント */
	--FF_EN: "Cantarell", serif;
	--FF_NUM: var(--FF_BASE);

	/* フォントウェイト */
	--FF_WEIGHT_BASE: 400;
	
	/* アニメーション */
	--ANIME_FADEIN: fadeIn .5s ease-in-out 0s forwards;
	--ANIME_FADEOUT: fadeOut .5s ease-in-out 0s forwards;

	/* フォトサイズ */
	--FZ_9: clamp(8px, 0.8vw, 9px);
	--FZ_10: clamp(8px, 0.8vw, 10px);
	--FZ_11: clamp(10px, 1.1vw, 11px);
	--FZ_12: clamp(10px, 1.1vw, 12px);
	--FZ_13: clamp(11px, 1vw, 13px);
	--FZ_14: clamp(12px, 1.2vw, 14px);
	--FZ_15: clamp(13px, 1.4vw, 15px);
	--FZ_16: clamp(14px, 1.5vw, 16px);
	--FZ_18: clamp(15px, 1.6vw, 18px);
	--FZ_20: clamp(16px, 1.8vw, 20px);
	--FZ_22: clamp(18px, 2vw, 22px);
	--FZ_25: clamp(20px, 2vw, 25px);
	--FZ_28: clamp(22px, 2.5vw, 28px);
	--FZ_30: clamp(25px, 3vw, 30px);
	--FZ_35: clamp(25px, 3vw, 35px);
	--FZ_38: clamp(30px, 3.5vw, 38px);
	--FZ_40: clamp(30px, 3.5vw, 40px);
	--FZ_43: clamp(30px, 4vw, 43px);
	--FZ_50: clamp(30px, 4vw, 50px);
	--FZ_60: clamp(40px, 5vw, 60px);
	--FZ_70: clamp(50px, 6vw, 70px);
	--FZ_10_CONST: 10px;
	--FZ_12_CONST: 12px;
	--FZ_14_CONST: 14px;
	--FZ_15_CONST: 15px;
	--FZ_16_CONST: 16px;
	--FZ_18_CONST: 18px;
	--FZ_20_CONST: 20px;

	/* ブロック間 */
	--GAP_10: clamp( 5px, 1.1vw, 10px);
	--GAP_15: clamp( 10px, 1.2vw, 15px);
	--GAP_20: clamp( 15px, 1.7vw, 20px);
	--GAP_25: clamp( 15px, 1.7vw, 25px);
	--GAP_30: clamp( 20px, 2.5vw, 30px);
	--GAP_35: clamp( 20px, 2.5vw, 35px);
	--GAP_40: clamp( 30px, 3.5vw, 40px);
	--GAP_50: clamp( 30px, 3.5vw, 50px);
	--GAP_60: clamp( 40px, 4.5vw, 60px);
	--GAP_65: clamp( 50px, 5.5vw, 65px);
	--GAP_75: clamp( 60px, 6.5vw, 75px);
	--GAP_80: clamp( 50px, 5.5vw, 80px);
	--GAP_90: clamp( 60px, 6.5vw, 90px);
	--GAP_100: clamp( 70px, 7.5vw, 100px);
	--GAP_5_CONST: 5px;
	--GAP_10_CONST: 10px;
	--GAP_15_CONST: 15px;
	--GAP_20_CONST: 20px;
	--GAP_30_CONST: 30px;
	--GAP_40_CONST: 40px;

	/* セクション間隔半分 */
	--GENERALSEC_HALF: calc(var(--GENERALSEC) / 2);
}

@media screen and (min-width: 768px){
	:root{
		--INNER_WIDTH: 95%;
		--GENERALSEC: clamp(70px, 8vw, 100px);
	}
}
@media screen and (max-width: 767px){
	:root{
	--INNER_WIDTH: 87.201%;
	--GENERALSEC: 50px;
	}
}
/* フェードインアニメーション */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
/* リセットCSS */
*{margin:0;padding:0;min-height: 0;min-width: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
html {height:100%;scroll-behavior: smooth;}
ul li ,ol li{list-style:none;}
h1,h2,h3,h4,h5,h6{font-weight: var(--FF_WEIGHT_BASE);font-size: 100%;margin: 0;}
p{margin: 0;}
strong{font-weight: bold;}
a:focus, *:focus{ outline:none; }
article, header, footer, aside, figure, figcaption, nav, section,main{ 
  display:block;
}
body{
	font-family: var(--FF_BASE);
	font-weight: var(--FF_WEIGHT_BASE);
	font-feature-settings: "palt" 1;
	letter-spacing: var(--LETTER_SPACING);
	width:100%;
	color: var(--TXT_COLOR_BASE);
	position:relative;
	z-index: 0;
	overflow-x: clip;
}
a{
	text-decoration: none;
	outline: none;
	word-wrap: break-word;
	color: var(--TXT_COLOR_BASE);
}
a:visited{
	color: var(--TXT_COLOR_BASE);
}
a img,a{
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all  0.5s;
}
img{
	height: auto;
	max-width: 100%;
	box-sizing: unset;
	vertical-align: bottom;
}
iframe{
	vertical-align: bottom;
}
.formReset button,
.formReset input[type="button"],
.formReset input[type="submit"],
.formReset input[type="text"],
.formReset input[type="image"],
.formReset select{
	background-color: unset;
	color: var(--TXT_COLOR_BASE);
	-webkit-appearance: none;
	border-radius: 0;
	border: none;
}
.formReset input[type="text"],
.formReset input[type="text"]::placeholder{
	font-family: var(--FF_BASE);
}
.formReset input[type="text"]{
	color: var(--TXT_COLOR_BASE);
}
.formReset input[type="text"]::placeholder{
	color: var(--GRAY);
}
time{
	font-family: var(--FF_BASE);
}
/* フォントCSS */
.canterell{
	font-family: var(--FF_EN);
}
.mincho{
	font-family: "Noto Serif", serif;
}
/* imgリセット */
.imgauto{
	height: auto;
	width: 100%;
	box-sizing: unset;
	line-height: 1rem;
	display: block;
}
/* セクション間隔*/
.g-mgt{
	margin-top: var(--GENERALSEC);
}
.g-mgb{
	margin-bottom: var(--GENERALSEC);
}
.g-pd{
	padding-block: var(--GENERALSEC);
}
.g-pdt{
	padding-top: var(--GENERALSEC);
}
.g-pdb{
	padding-bottom: var(--GENERALSEC);
}
.g-mgt--half{
	margin-top: var(--GENERALSEC_HALF);
}
.g-mgb--half{
	margin-bottom: var(--GENERALSEC_HALF);
}
.g-pd--half{
	padding-block: var(--GENERALSEC_HALF);
}
.g-pdt--half{
	padding-top: var(--GENERALSEC_HALF);
}
.g-pdb--half{
	padding-bottom: var(--GENERALSEC_HALF);
}
/* グリッド、フレックス */
.grid{
	display: grid;
}
.flex{
	display: flex;
}
/* 縦書き */
.tategaki{
	writing-mode: vertical-rl;
}
/* 文字間 */
::placeholder,
input[type="text"],
[class*="ttl"],
[class*="lead"],
[class*="heading"],
a{
	letter-spacing: var(--LETTER_SPACING);
}
/* テキスト行間文字間 */
[class*="txt"]{
	letter-spacing: var(--LETTER_SPACING);
}
/* youtube */
.youtubeContainer iframe {
  display: block;
  width: 100%;
	height: auto;
	aspect-ratio: 10000/5625;
}
/* 非表示 */
.displaynone{
	display: none;
}
@media (hover: hover){
	.formReset button:hover,
	.formReset input[type="button"]:hover,
	.formReset input[type="submit"]:hover,
	.formReset input[type="image"]:hover,
	.formReset select:hover{
		cursor: pointer;
	}
	a:hover{
		opacity: 0.7;
		text-decoration: none;
	}
	a:hover img{
		opacity:0.75 !important;
	}
}
.inner{
	width: var(--INNER_WIDTH);
	max-width: 1000px;
	margin-inline: auto;
}
@media screen and (min-width: 768px){
	html{
		scroll-padding-top: 120px;
	}
	body{
		font-size: var(--FZ_15_CONST);
		line-height: 1.7;
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
	}
	a[href^="tel:"] {
		pointer-events: none;
	}
	.sp{
		display: none !important;
	}
}
@media screen and (max-width: 767px){
	body{
		font-size: var(--FZ_14_CONST);
		line-height: 1.6;
	}
	.pc{
		display: none !important;
	}
	.sp-scroll--y{
		overflow-y: scroll;
		overflow-x: auto;
	}
	.sp-scroll--x{
		overflow-x: scroll;
		overflow-y: auto;
		padding-inline: calc((100% - var(--INNER_WIDTH)) / 2);
	}
	.tategaki--sp{
		writing-mode: vertical-rl;
	}
	.formReset input[type="text"],
	.formReset input[type="text"]::placeholder{
		font-size: 16px;
	}
}
/* header */
header{
	background-color: var(--YELLOW);
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid var(--LGRAY);
}
.logo{
	color: var(--BLUEGRAY);
	font-size: var(--FZ_43);
	font-weight: bold;
	letter-spacing: .07em;
}
.logo span{
	font-size: var(--FZ_12);
	letter-spacing: .07em;
}
.logo a{
	color: var(--BLUEGRAY);
}
@media screen and (min-width: 768px){
	header .inner {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  padding: 20px 0;
	}
	header nav {
    flex: 1;
	}
	.menu__list {
    display: flex;
    justify-content: flex-end;
    gap: var(--GAP_30);
	}
	.menu__list li{
		font-size: var(--FZ_15);
	}
	.logo{
	  line-height: 0;
	}
}
@media screen and (max-width: 767px){
	header{
	  height: 52px;
	}
	.logo{
	  line-height: 43px;
	}
	#overlay-button {
	  position: absolute;
	  right: 5%;
	  top: 0;
	  padding: 25px 10px;
	  z-index: 100;
	  cursor: pointer;
	  user-select: none;
	}
	#overlay-button span {
	  height: 2px;
	  width: 35px;
	  border-radius: 2px;
	  background: transparent;
	  position: relative;
	  display: block;
	  transition: all .2s ease-in-out;
	}
	#overlay-button span:before {
	  top: -5px;
	  visibility: visible;
	}
	#overlay-button span:after {
	  top: 5px;
	}
	#overlay-button span:before,
	#overlay-button span:after {
	  height: 3px;
	  width: 35px;
	  background-color: var(--BLUEGRAY);
	  position: absolute;
	  content: "";
	  transition: all .2s ease-in-out;
	}
	#overlay-button:hover span:before,
	#overlay-button:hover span:after {
	  background: var(--BLUEGRAY);
	}
	#overlay-button:hover span {
	  background: transparent;
	}
	input[type=checkbox] {
	  display: none; 
	}
	input[type=checkbox]:checked ~ #overlay {
	  visibility: visible; 
	  opacity: 1;
	}
	input[type=checkbox]:checked ~ #overlay-button:hover span,
	input[type=checkbox]:checked ~ #overlay-button span {
	  background: transparent;
	}
	input[type=checkbox]:checked ~ #overlay-button span:before {
	  transform: rotate(45deg) translate(4px, 4px)
	}
	input[type=checkbox]:checked ~ #overlay-button span:after {
	  transform: rotate(-45deg) translate(3px, -4px);
	}
	#overlay {
	  height: 100vh;
	  width: 100vw;
	  background: var(--YELLOW);
	  visibility: hidden;
	  opacity: 0;
	  position: fixed;
	  top: 0;
	  left: 0;
	  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	}
	#overlay ul {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  flex-direction: column;
	  height: 100vh;
	}
	#overlay ul li{
		width: 100%;
	}
	#overlay ul li a {
	  padding: .75em;
    font-weight: 500;
    letter-spacing: .15em;
    display: block;
    text-align: center;
    transition: inherit;
	}
	#overlay ul li a {
	  color: var(--WHITE);
    text-decoration: none;
    font-size: var(--FZ_20_CONST);
	}
}
/* footer */
footer{
	background-color: var(--YELLOW);
	padding: var(--GENERALSEC_HALF) 0;
}
.foot--ttl{
	color: var(--BLUEGRAY);
	font-size: var(--FZ_43);
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
	letter-spacing: .07em;
}
.foot--ttl span{
	font-size: var(--FZ_12);
	letter-spacing: .07em;
}
.footNavi__list li {
  font-size: var(--FZ_14);
}
@media screen and (min-width: 768px){
	.footNavi__list {
	  display: flex;
	  justify-content: center;
	  gap: var(--GAP_30);
	}
}
@media screen and (max-width: 767px){
	.footNavi__list {
	  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	  gap: var(--GAP_20);
	}
  
}

/* マガジンカテゴリ色設定 */
.mag_cat_1 a{
	background: var(--GREEN) !important;
}
.mag_cat_2 a{
	background: var(--PINK) !important;
}
.mag_cat_3 a{
	background: var(--BLUE) !important;
}
/* ブログカテゴリ色設定 */
.blog_cat_1 a{
	background: var(--GREEN) !important;
}
.blog_cat_2 a{
	background: var(--PINK) !important;
}
.blog_cat_3 a{
	background: var(--BLUE) !important;
}
.blog_news a{
	background: var(--BEIGE) !important;
}
.meetup a{
	background: var(--GREEN) !important;
}