@charset "UTF-8";

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
}

@media screen and (min-width:769px) {

	/* PC 769px以上 */
	html {
		font-size: 15px;
	}
}

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

	/* タブレット 768px以下 */
	html {
		font-size: 2vw;
	}
}

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

	/* スマートフォン 480px以下 */
	html {
		font-size: 3.4vw;
	}
}


p {
	font-size: 1rem;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: "kozuka-gothic-pr6n", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	color: #614d40;
	line-height: 1.75;
	background: url(../img/bg.jpg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-wrap: break-word;
	overflow: hidden;
}


article,
aside,
footer,
header,
nav,
section,
main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2;
	font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
}

a,
a::after,
a::before {
	color: inherit;
	outline: none;
	text-decoration: none;
	position: relative;
	display: inline-block;
	transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s
}

img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: top;
}

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

code,
kbd,
pre,
samp {
	font-family: monospace, sans-serif;
	font-size: inherit;
}

ul,
ol {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

th,
td {
	text-align: left;
	vertical-align: top;
}


blockquote,
q {
	quotes: none;
}

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

address {
	font-style: normal;
}

input,
textarea,
select {
	max-width: 100%;
}

/*-----------------------
/*clearfix
---------------------------------*/
/* For modern browsers */
.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

/* For IE 6/7 only */
.cf {
	*zoom: 1;
}



/*-----------------------
layout レイアウト
-----------------------*/
.l-inner {
	width: 797px;
	margin: 0 auto
}

.l-row {
	display: flex;
	flex-wrap: wrap;
}

.l-row--middle {
	align-items: center;
}

.l-row--baseline {
	align-items: baseline;
}

.l-row--end {
	align-items: flex-end;
}

.l-row--center {
	justify-content: center;
}

.l-row--between {
	justify-content: space-between;
}

.l-row--reverse {
	flex-direction: row-reverse;
}


.splide__arrow {
	width: 0;
	height: 0;
	background: none;
	border: none;
	z-index: 10;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	border-radius: 0;
}

.splide__arrow:disabled {
	opacity: 0;
}

/* 左矢印（三角形 ←） */
.splide__arrow--prev {
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-right: 20px solid #231815;
	/* 三角形の色 */
	left: -30px;
}

/* 右矢印（三角形 →） */
.splide__arrow--next {
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 20px solid #231815;
	/* 三角形の色 */
	right: -30px;
}

/*-----------------------
Utility
-----------------------*/
.sp {
	display: none;
}

.p-header {
	position: absolute;
	top: 45px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	z-index: 1;
	justify-content: space-between
}

.p-header .ttllogo {
	width: 290px
}

.p-header .copy {
	width: 75px;
	margin: 0 0 0 auto
}

.nav {
	column-gap: 24px;
	justify-content: center;
	margin-bottom: 45px
}

.nav a:hover {
	opacity: .8
}

.main-top {
	justify-content: space-between;
	width: min(805px, 100%);
	margin: 0 auto 40px
}

.newtopic {
	width: 490px;
}

.newbloc {
	background: #fff;
	border: 1px solid #231815;
}

.newttl {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1
}

.newttl span {
	color: #E50012;
}

.populartopic {
	background: url(../img/flame1.svg)no-repeat, #fff;
	width: 244px;
	height: 492px;
	margin-top: 26px;
	padding: 67px 18px 25px;
	background-size: cover;
}

.populartopic ul {
	grid-row-gap: 20px;
	display: flex;
	flex-direction: column
}

.topicparts {
	display: flex;
	column-gap: 10px;
	flex-wrap: wrap;
}

.topicthumbnail {
	width: 100px;
}

.topicttl {
	width: calc(100% - 110px);
	font-size: 12px;
	line-height: 1.416;
	font-weight: 700
}

.modal {
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 91;
	left: 0;
}

.modal__bg {
	background: rgba(199, 205, 185, 0.71);
	height: 100vh;
	position: absolute;
	width: 100%;
}

.splide__pagination__page {
	background: #707269;
}

.modal__content {
	left: 50%;
	padding: 40px 40px 60px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
	height: 100vh;
	overscroll-behavior: contain;
	/*	overflow-y: scroll;*/
	scrollbar-width: none;
	-ms-overflow-style: none;
	touch-action: none;
}

.modal__content::-webkit-scrollbar {
	display: none;
}

#item .splide__slide {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80vh
}

.close-btn {
	text-align: center;
	margin: 10px auto 0;
	display: block;
	color: #fff;
	border: 2px solid #fff;
	width: 168px;
	background: #333;
	font-weight: 700
}

.splide__slide a {
	height: 100%;
}

#item .splide__slide img {
	height: 100%;
	width: auto;
	aspect-ratio: 1/1;
	object-fit: contain;
}

.main-bottm {
	width: min(637px, 100%);
	margin: 0 auto 57px
}

.historyttl {
	width: 198px;
	margin-bottom: 26px;
	font-weight: 800
}

.historytopic {
	display: flex;
	flex-wrap: wrap;
	column-gap: 24px;
	grid-row-gap: 26px
}

.historytopic li {
	width: calc(100% / 3 - 16px);
}

.footer {
	text-align: center;
}

.ill_footer_cat {
	margin-bottom: 14px
}

.copylight {
	width: 100px;
	margin-bottom: 12px;
	display: inline-block;
}

.line {
	margin-bottom: 30px
}

@media screen and (max-width: 1000px) {
	.main-top {
		flex-direction: column;
		align-items: center;
	}

	.newtopic {
		width: 100%;
	}

}

@media screen and (max-width: 924px) {
	.sp {
		display: block;
	}

	.pc {
		display: none
	}

	.l-inner {
		width: 100%
	}

}

.bg_wh {
	background: #fff;
}

.section_ttl {
	text-align: center;
	margin-bottom: 70px
}

.section_ttl span {
font-size: clamp(28px, 23.146px + 1.294vw, 48px);
	font-weight: 700;
	position: relative;
	display: inline-block;
	padding-bottom: 10px
}

.section_ttl span:before {
	content: '';
	background: url(../img/line1.svg);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background-repeat: repeat-x;
	background-size: cover;
}

header .fukidashi {
	background: #DACDB4;
	border-radius: 15px;
	font-size: clamp(12px, 8.359px + 0.971vw, 27px);
	color: #604C3F;
	text-align: center;
	padding: 5px;
	2em;
	position: relative;
	width: min(500px, 80%);
	margin: -5vw auto 30px
}

header .fukidashi:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top: 15px solid #DACDB4;
}

header .headerttl {
	width: min(580px, 80%);
	margin: 0 auto 16px
}

.comic {
	margin-bottom: 80px
}

.l-section {
	padding: 80px 100px
}

.l-section .ttl {
	text-align: center;
	margin-bottom: 50px
}

.structure_img {
	margin-bottom: 254px
}

.ill_img1 img {
	width: 100%;
	height: auto
}

.about {
	padding: 80px 0
}

.aboutlist {
	display: flex;
	gap: 14px;
}

.aboutlist li {
	flex: 1 1 0%;
	background: #F8F3E8;
	border-radius: 35px;
	padding: 18px;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #614D40;
	gap: 6px
}

.aboutlist .num {
	font-size: 32px;
	font-weight: 700
}

.aboutlist .ttl {
	font-size: 23px;
	font-weight: 700
}

.aboutlist .img {}

.aboutlist .txt {
	font-size: 18px;
	line-height: 1.5
}

.txtarea {
	font-size: clamp(16rem, 19.519rem + -15.016vw, 1.5rem);
	line-height: 1.5;
	text-align: center;
	margin-bottom: 45px
}

.txtarea p {
	margin-bottom: 1em;
	font-size:18px;
	line-height: 1.5;
}

.thoughts .img {
	text-align: center;
}

.partnerlist {
	display: flex;
	gap: 40px;
	flex-direction: column;
}

.partnercard .ttl {
	font-size: clamp(24px, 17.631px + 1.165vw, 40px);
	text-align: center;
	font-weight: 700;
	margin-bottom: clamp(18px, 10.631px + 1.165vw, 40px);
}

.partnerbox {
	border: 3px solid #614d40;
	border-radius: 35px;
	background: #FDFCF8
}

.partnerbox__inner {
	display: flex;
	gap: 28px;
	padding: 30px
}

.partnerbox__inner > div {
	flex: 1 1 0%;
}

.partnerbox .img {
	text-align: center;
}

.partnerbox .img img {
	border-radius: 35px
}

.partnerbox .txtparts dt {
	font-size: 18px;
	font-weight: 700;
}

.partnerbox .txtparts dd {
	font-size: 18px;
	margin-bottom: 8px
}
.partnerbox .btn{
	text-align: center
}
.partnerbox .btn a {
	border: 3px solid #614d40;
	border-radius: 10px;
	background: #fff;
	text-align: center;
	font-size: clamp(14px, 13.029px + 0.259vw, 18px);
	padding: 16px 40px 16px 25px;
	font-weight: 700
}

.partnerbox .btn a:before {
	content: '';
	position: absolute;
	right: 17px;
	top: calc(50% - 11px);
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 13px solid #614d40;
	border-right: 0;
}

.partnerbox .link a {
	color: #fff;
	background: #614d40;
	text-align: center;
	font-size: clamp(18px, 15.573px + 0.647vw, 28px);
	padding: 8px;
	font-weight: 700;
	border-radius: 0 0 32px 32px;
	display: block;
	border-top: 3px #614d40 solid;
}

.partnerbox .link a:hover {
	background: #fff;
	color: #614d40
}

.recruitment .l-inner {
	display: flex;
	flex-direction: column;
	gap: 60px
}

.recruitment .txtare {
	text-align: center;
}

.recruitment .section_ttl {
	margin-bottom: 0
}

.ill_img6 {
	text-align: center;
}

.box_wh {
	border: 3px solid #614d40;
	border-radius: 35px;
	background: #fff;
	padding: 42px 70px 37px;
	display: flex;
	flex-direction: column;
	align-items: center
}

.box_wh .ttl {
	font-size: clamp(24px, 20.602px + 0.906vw, 38px);
	font-weight: 700;
	margin-bottom: 20px
}

.box_wh .txt {
	font-size: clamp(16px, 13.087px + 0.777vw, 28px);
}

.box_wh ul li {
	position: relative;
	padding-left: 1em;
}

.box_wh ul li:not(:last-child) {
	margin-bottom: 8px
}

.box_wh ul li:before {
	content: '・';
	position: absolute;
	left: 0;
}

.box_wh .btn a {
	background: #614d40;
	color: #fff;
	border: 2px solid #614d40;
	font-size: clamp(16px, 13.087px + 0.777vw, 28px);
	text-align: center;
	padding: 6px 1.6em;
	border-radius: 3em;
	font-weight: 700
}

.box_wh .btn a:hover {
	background: #fff;
	color: #614d40;
}

@media (max-width: 768px) {
	.p-header .copy {
    width: 65px;
    margin: -34px 10px 0 auto;
}
	.txtarea p{
		line-height: 1.85
	}
	.l-section {
    padding: 60px 30px 30px;
}
	.comic,.about,.box_wh{
		padding-left: 30px;
		padding-right: 30px;
	}
	.comic{
		margin-bottom: 40px
	}
	.aboutlist,
	.partnerbox__inner {
		flex-direction: column;
	}
	header .fukidashi{
		    margin: -10px auto 30px;
	}
	.nav{
		column-gap: 3px;
    row-gap: 4px;
		    margin-bottom: 35px;
	}
	.l-section .ttl{
		margin: 0 auto 40px;
	}
	.l-section .ttl.flow_ttl{
		width: min(183px, 58%);
	}
	.l-section .ttl.structure_ttl{
		width: min(259px, 66%);
	}
	.structure_img {
    margin-bottom: 100px;
}
	.ill_img1 {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}
	.about {
    padding-top: 30px;
    padding-bottom: 40px;
}
	.section_ttl{
		margin-bottom: 30px
	}
	.partnerbox .btn a{
		padding: 16px 36px 16px 20px;
	}
	.partnerlist{
		    gap: 50px;
	}
	.partnerbox__inner{
		padding: 30px 5%;
	}
	.partnerbox .link a{
		    padding: 20px 8px;
		border-radius: 0 0 28px 28px;
	}
	.thoughts .img{
		    width: min(280px, 90%);
    margin: 0 auto;
	}
	.recruitment .l-inner{
		gap: 40px;
	}
	.ill_img6 {
    width: min(290px, 90%);
    margin: 0 auto;
}
	.recruitment .txtarea{
		margin-bottom: 0;
	}
	.l-section .box_wh .ttl{
		margin-bottom: 10px
	}
	.box_wh .btn{
		width: 100%
	}
	.box_wh .btn a{
		width: 100%
	}
	.box_wh ul li:not(:last-child){
		margin-bottom: 0
	}
	.box_wh{
		padding-top: 20px;
		padding-bottom: 20px
	}
	.aboutlist .ttl {
	font-size: 28px;
}

}