@charset "UTF-8";
:root {
	--noto-sans: "Noto Sans JP", sans-serif;
	--noto-serif: "Noto Serif JP", serif;
	--m-plus: "M PLUS Rounded 1c", system-ui;
	--YuGo: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	--site-color: #F1EAD9;
	--site-red: #EEB1AA;
	--site-blue: #CDE6F4;
	--site-yellow: #F2F3C1;
	--site-brown: #E5D7C8;
}

html {
	scroll-behavior: smooth;
	--scroll-behavior: smooth;
	font-family: 'scroll-behavior:smooth';
}

* {
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	color: inherit;
	font-family: inherit;
}

body {
	font-size: 15px;
	line-height: calc(21 / 15);
	color: #404040;
	font-family: var(--noto-sans);
	font-weight: 400;
}

body.noscroll {
	overflow: hidden;
	touch-action: pinch-zoom;
}

img {
  max-width: 100%;
  height: auto;
}

p {
	line-height: calc(27 / 15);
}

a {
	color: #343434;
}

a:hover {
	color: inherit;
	text-decoration: none;
	opacity: 0.7;
}

.container {
	max-width: 1000px;
}

@media(min-width: 992px) {
	.container-large {
		max-width: 1300px;
	}
}

header {
	position: absolute;
	width: 100%;
	top: 0;
	z-index: 99;
}

header .kinuta-top-link a {
	border: 1px solid #000;
	border-radius: 40px;
}

header nav {
	position: relative;
}

nav ul{
	list-style: none;
}


.topics {
	padding: 70px 15px 60px;
}

.topics h2 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 700px;
	aspect-ratio: 689 / 100;
	font-size: clamp(21px,5.8vw,42px);
	font-weight: 600;
	letter-spacing: 0.12em;
	border: 3px solid #343434;
	border-radius: 60px;
	margin-bottom: clamp(30px,8vw,60px);
	margin-inline: auto;
}

.topics h2::before {
	content: "";
    max-width: 24px;
	width: 5%;
    aspect-ratio: 1 / cos(30deg);
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    background: #343434;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 100%);
}

.topics h2::after {
	content: "";
    max-width: 18px;
	width: calc(5% - 5px);
    aspect-ratio: 1 / cos(30deg);
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    background: #FFF;
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translate(-50%, 100%);
}

.topics-wrapper {
	display: flex;
	justify-content: center;
	column-gap: 30px;
}

.topics-content {
	max-width: 690px;
	width: calc((100% - 60px) / 3);
	border: 1px solid #343434;
	border-radius: 25px;
}

.topics-content-image img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	aspect-ratio: 580 / 470;
	border-radius: 25px 25px 0 0;
}

.topics-content-body {
	aspect-ratio: 688 / 142;
	padding: 5px 15px 15px;
}

.topics-content-body .date {
	font-size: 18px;
}

.topics-content-title {
	font-size: 20px;
	font-weight: 600;
	line-height: calc(42 / 30);
	letter-spacing: 0.12em;
	margin-bottom: 0;
}

@media(min-width: 992px) {
	.topics h2 {
		font-size: 35px;
		max-height: 80px;
	}
}

@media(max-width: 991px) {
	.topics-wrapper {
		flex-direction: column;
		row-gap: 40px;
	}	
	.topics-content {
		width: 100%;
		border-radius: 50px;
		margin-inline: auto;
	}
	.topics-content-image img {
		border-radius: 50px 50px 0 0;
	}
	.topics-content-body {
		padding: 5px 30px 15px;
	}
	.topics-content-body .date {
		font-size: clamp(13px,3.5vw,26px);
	}
	.topics-content-title {
		font-size: clamp(15px,4vw,30px);
	}
}

@media(max-width: 575px) {
	.topics {
		padding: 35px 0 60px;
	}
	.topics-wrapper {
		row-gap: 20px;
	}
	.topics-content {
		border-radius: 25px;
	}
	.topics-content-image img {
		border-radius: 25px 25px 0 0;
	}
	.topics-content-body {
		padding: 5px 15px 10px;
	}
}
.share {
	padding: 0 15px 100px;
}

.share h2 {
	position: relative;
	font-size: clamp(21px,5vw,42px);
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.12em;
	padding-bottom: 25px;
	margin-bottom: 30px;
}

.share h2::before {
	content: "";
	width: 50px;
	height: 5px;
	background: #343434;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.share-sns {
	display: grid;
	grid-template-columns: 20% 20% 20%;
	gap: 30px;
	justify-content: space-between;
	max-width: 480px;
	width: 70%;
	margin-inline: auto;
}

@media(min-width:992px) {
	.share h2 {
		font-size: 35px;
	}
}

@media(max-width: 575px) {
	.share {
		padding: 0 0 50px;
	}
}


.site-footer-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 40px;
}

.site-footer-list li {
	border-bottom: 1px solid #6E6E6E;
}

.site-footer-list li:first-child {
	border-top: 1px solid #6E6E6E;
}

.site-footer-list li a {
	display: block;
	font-size: clamp(15px,4vw,30px);
	text-align: center;
	letter-spacing: 0.14em;
	color: #000;
	width: 100%;
	padding: 25px 15px;
}

.copyright {
	font-size: clamp(10px,2.7vw,20px);
	text-align: center;
	letter-spacing: 0.14em;
	line-height: calc(24 / 20);
	margin-bottom: 25px;
}

@media(min-width:992px) {
	.site-footer-list {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
	}
	.site-footer-list li {
		border-bottom: 1px solid #6E6E6E;
	}
	.site-footer-list li:nth-child(-n+3) {
		border-top: 1px solid #6E6E6E;
	}
	.site-footer-list li a {
		font-size: 20px;
	}
	.copyright {
		font-size: 15px;
	}
}

@media(max-width: 575px) {
	.site-footer-list {
		margin-bottom: 20px;
	}
	.site-footer-list li a {
		padding: 15px;
	}
	.copyright {
		margin-bottom: 13px;
	}
}

.page-top {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	position: fixed;
	right: 5%;
	bottom: 5%;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}

.page-top.show {
	opacity: 1;
	visibility: visible;
}

@media(min-width: 992px) {
	.page-top img {
		width: 90px;
	}
}

@media(max-width:575px) {
	.page-top {
		right: 3%;
	}
}

.text-underline,
.text-underline:hover {
	text-decoration: underline;
}

.wow:not(.animate__animated) {
	animation-name: none;
	visibility: hidden;
}

rt{
	font-size: 50%;
}





main { margin-top:calc(31px + 20px + 20px); }
@media(max-width: 767px){
main { margin-top:calc(26px + 30px + 20px); }
}
@media screen and (min-width:751px) { .sp-only { display:none !important; } }
@media screen and (max-width:750px) { .pc-only { display:none !important; } }
