@charset "UTF-8";
/*------------------
共通設定
------------------*/
.content__wrapper {
	width: 100%;
	background-color: #f8fbfc;
}
.content__wrapper * {
	/* font-size: 16px; */
	/* font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif; */
	/* line-height: 1.8;
	font-weight: 300;
	letter-spacing: 0;
	color: #182130; */
	box-sizing: border-box;
	/* vertical-align: bottom; */
}
.content__wrapper img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}
.content__wrapper p {
	font-feature-settings: 'palt';
	letter-spacing: 0.05em;
}
.content__wrapper a:visited {
	text-decoration: none;
}

.content__area {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.common__h2--ej {
	font-size: 42px;
	line-height: 1;
	/* padding-left: 36px; */
	position: relative;
}
@media screen and (max-width: 1025px) {
	.common__h2--ej {
		font-size: 40px;
	}
}
@media screen and (max-width: 767px) {
	.common__h2--ej {
		font-size: 32px;
		padding-left: 30px;
	}
}
/* .common__h2--ej::before {
	content: '';
	background-color: #4c8c9f;
	width: 33px;
	height: 30px;
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
	clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
	transform: rotate(-90deg);
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
} */
@media screen and (max-width: 1025px) {
	.common__h2--ej::before {
		top: 3px;
	}
}
@media screen and (max-width: 767px) {
	.common__h2--ej::before {
		width: 27px;
		height: 23px;
    top: 0;
	}
}
.common__h2--ej span {
	/* margin-left: 16px; */
	font-size: 26px;
	font-weight: 600;
	line-height: 1.6;
	/* font-weight: 400; */
	line-height: 1.4;
}
@media screen and (max-width: 1025px) {
	.common__h2--ej span {
		font-size: 24px;
	}
}
@media screen and (max-width: 767px) {
	.common__h2--ej span {
		font-size: 18px;
	}
}

.common__h2--j {
	font-size: 32px;
	line-height: 1.4;
	padding-left: 36px;
	position: relative;
}
@media screen and (max-width: 1025px) {
	.common__h2--j {
		font-size: 30px;
    line-height: 1;
	}
}
@media screen and (max-width: 767px) {
	.common__h2--j {
		font-size: 24px;
		padding-left: 30px;
    line-height: 1.5;
	}
}

.common__h2--j span {
	display: block;
	font-size: 24px;
	margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .common__h2--j span {
    font-size: 22px;
    margin-top: 8px;
  }
}

.common__h2--j::before {
	content: '';
	background-color: #4c8c9f;
	width: 33px;
	height: 30px;
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
	clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
	transform: rotate(-90deg);
	position: absolute;
	left: 0;
	top: 10px;
}
@media screen and (max-width: 1025px) {
	.common__h2--j::before {
		top: 3px;
	}
}
@media screen and (max-width: 767px) {
	.common__h2--j::before {
		width: 27px;
		height: 23px;
    top: 6px;
	}
}

.common__h3 {
	font-size: 30px;
	padding-left: 28px;
	position: relative;
}
@media screen and (max-width: 1025px) {
	.common__h3 {
		font-size: 26px;
		padding-left: 24px;
	}
}
@media screen and (max-width: 767px) {
	.common__h3 {
		font-size: 24px;
		padding-left: 15px;
	}
}
.common__h3::before {
	content: '';
	background-color: #4c8c9f;
	width: 12px;
	height: 34px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
@media screen and (max-width: 1025px) {
	.common__h3::before {
		width: 10px;
		height: 30px;
	}
}
@media screen and (max-width: 767px) {
	.common__h3::before {
    width: 8px;
    height: 22px;
	}
}

.common__button,
a.media__button.common__button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	height: 58px;
	font-size: 28px;
	text-transform: uppercase;
	border: solid #182130 1px;
	border-radius: 30px;
	position: relative;
	transition: all 0.3s;
}

.common__button::after {
	content: '';
	background-image: url('http://sugawarakun.com/wp-content/uploads/2024/02/arrow_right_bk.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	width: 11px;
	height: 19px;
	right: 15px;
	transition: all 0.3s;
	display: block;
}

.common__button.return::after,
a.media__button.common__button.return::after {
	transform: rotate(180deg);
	left: 15px;
}

.common__button:hover,
a.media__button.common__button:hover {
	background-color: #4c8c9f;
	border-color: #4c8c9f;
	color: #f8fbfc;
}
@media screen and (max-width: 1025px) {
	.common__button:hover {
		background-color: transparent;
		border-color: #182130;
		color: #182130;
	}
}
.common__button:hover::after {
	background-image: url('http://sugawarakun.com/wp-content/uploads/2024/02/arrow_right_wt.svg');
}
@media screen and (max-width: 1025px) {
	.common__button:hover::after {
		background-image: url('http://sugawarakun.com/wp-content/uploads/2024/02/arrow_right_bk.svg');
	}
}

.breadcrumbs {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.breadcrumbs a {
	display: block;
	text-transform: uppercase;
	font-size: 14px;
}

/*------------------
フォント設定
------------------*/
.kaiMed {
	font-family: 'Kaisei HarunoUmi', serif;
	font-weight: 500;
	font-style: normal;
}

.kaiBld {
	font-family: 'Kaisei HarunoUmi', serif;
	font-weight: 700;
	font-style: normal;
}

.patua {
	font-family: 'Patua One', serif;
}

.header__area {
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	background-color: rgba(248, 251, 252, 0.9);
	top: 0;
	left: 0;
	z-index: 10;
	transition: all 0.3s;
}
@media screen and (max-width: 767px) {
	.header__area {
		height: 80px;
	}
}

.header__area.initial {
	background-color: transparent;
}

.header__inner {
	width: 95%;
	/* min-width: 1000px; */
	max-width: 1400px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.haeder__block--left {
	width: 282px;
	height: 75px;
}
@media screen and (max-width: 767px) {
	.haeder__block--left {
		width: 230px;
		height: auto;
	}
}
.haeder__block--left a {
	display: block;
	width: 100%;
	height: 100%;
	transition: all 0.3s;
}
.haeder__block--left a:hover {
	opacity: 0.9;
}

.header__burger {
	display: none;
}
@media screen and (max-width: 1025px) {
	.header__burger {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-end;
		width: 50px;
		height: 100%;
	}
}

.header__burger span.burger__bars {
	width: 100%;
	height: 45px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}
@media screen and (max-width: 767px) {
	.header__burger span.burger__bars {
		height: 40px;
	}
}
.header__burger span.burger__bar {
	display: block;
	width: 100%;
	height: 6px;
	background-color: #4c8c9f;
	border-radius: 4px;
}
@media screen and (max-width: 767px) {
	.header__burger span.burger__bar {
		height: 6px;
		border-radius: 3px;
	}
}
.header__burger span.burger__text {
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #4c8c9f;
	margin-top: 4px;
	font-weight: 600;
}
@media screen and (max-width: 767px) {
	.header__burger span.burger__text {
		font-size: 16px;
		margin-top: 4px;
	}
}

.header__block--right {
	display: block;
	width: 650px;
}
@media screen and (max-width: 1025px) {
	.header__block--right {
		display: block;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100dvh;
		background-color: #acbec4;
		padding: 120px;
		transform: translate(100%, 0);
		transition: all 0.5s;
	}
}
@media screen and (max-width: 767px) {
	.header__block--right {
		padding: 15.3846153846vw;
	}
}

@media screen and (max-width: 1025px) {
	.header__block--right.is-active {
		transform: translate(0, 0);
	}
}

.header__list {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media screen and (max-width: 1025px) {
	.header__list {
		height: 85dvh;
		flex-direction: column;
		justify-content: space-around;
	}
}
.header__list li a {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	text-transform: uppercase;
	position: relative;
	font-size: 18px;
	font-family: 'Kaisei HarunoUmi', serif;
	font-weight: 500;
	font-style: normal;
}
@media screen and (max-width: 1025px) {
	.header__list li a {
		font-size: 36px;
	}
}
@media screen and (max-width: 767px) {
	.header__list li a {
		font-size: 6.1538461538vw;
	}
}
.header__list li a::before {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #182130;
	bottom: -10px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s;
}
@media screen and (max-width: 1025px) {
	.header__list li a::before {
		content: none;
	}
}
.header__list li a:hover::before {
	transform: scale(1, 1);
}
@media screen and (max-width: 1025px) {
	.header__list li a:hover::before {
		transform: none;
	}
}
.header__list li:nth-of-type(1) {
	display: none;
}
@media screen and (max-width: 1025px) {
	.header__list li:nth-of-type(1) {
		display: block;
		width: 100%;
		text-align: center;
		text-transform: uppercase;
		font-size: 36px;
		position: relative;
		margin-bottom: 3.9024390244vw;
	}
}
@media screen and (max-width: 767px) {
	.header__list li:nth-of-type(1) {
		font-size: 6.1538461538vw;
	}
}
@media screen and (max-width: 1025px) {
	.header__list li:nth-of-type(1)::after {
		content: '';
		background-color: #182130;
		width: 100px;
		height: 2px;
		position: absolute;
		left: 0;
		right: 0;
		margin: auto;
		bottom: 0;
	}
}
@media screen and (max-width: 767px) {
	.header__list li:nth-of-type(1)::after {
		width: 20.5128205128vw;
		height: 0.5128205128vw;
	}
}
.header__list li:nth-of-type(7) {
	position: relative;
	margin-right: 10px;
}
.header__list li:nth-of-type(7)::after {
	content: '';
	background-image: url('http://sugawarakun.com/wp-content/uploads/2024/02/icon_blank.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 13px;
	height: 13px;
	position: absolute;
	right: -17px;
	top: 0;
	bottom: 0;
	margin: auto;
}
@media screen and (max-width: 1025px) {
	.header__list li:nth-of-type(7)::after {
		width: 26px;
		height: 26px;
		right: -35px;
	}
}
@media screen and (max-width: 767px) {
	.header__list li:nth-of-type(7)::after {
		width: 18px;
		height: 18px;
		right: -26px;
	}
}

.menu__closer {
	display: none;
}
@media screen and (max-width: 1025px) {
	.menu__closer {
		display: block;
		width: 60px;
		position: absolute;
		right: 50px;
		top: 50px;
	}
}
@media screen and (max-width: 767px) {
	.menu__closer {
		width: 12.8205128205vw;
		right: 6.4102564103vw;
		top: 6.4102564103vw;
	}
}
@media screen and (max-width: 1025px) {
	.menu__closer .close__bars {
		display: block;
		width: 100%;
		height: 60px;
		position: relative;
	}
}
@media screen and (max-width: 767px) {
	.menu__closer .close__bars {
		height: 8.9743589744vw;
	}
}
.menu__closer .close__bar {
	display: block;
	width: 100%;
	height: 8px;
	background-color: #4c8c9f;
	border-radius: 4px;
	position: absolute;
}
@media screen and (max-width: 767px) {
	.menu__closer .close__bar {
		height: 1.5384615385vw;
		border-radius: 0.7692307692vw;
	}
}
.menu__closer .close__bar.bar1 {
	transform: rotate(-45deg);
	left: 0;
	bottom: 0;
	top: 0;
	margin: auto;
}
.menu__closer .close__bar.bar2 {
	transform: rotate(45deg);
	left: 0;
	bottom: 0;
	top: 0;
	margin: auto;
}
.menu__closer .close__text {
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	color: #4c8c9f;
	margin-top: 8px;
	font-weight: 600;
}
@media screen and (max-width: 767px) {
	.menu__closer .close__text {
		font-size: 3.5897435897vw;
		margin-top: 0;
	}
}

.footer__area {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 50px;
	background-color: #acbec4;
	padding-top: 50px;
	padding-bottom: 20px;
}
@media screen and (max-width: 1025px) {
	.footer__area {
		margin-top: 4.8780487805vw;
		padding-top: 4.8780487805vw;
		padding-bottom: 1.9512195122vw;
	}
}
@media screen and (max-width: 767px) {
	.footer__area {
		margin-top: 12.8205128205vw;
		padding: 12.8205128205vw 0 95px;
	}
}

.footer__inner {
	width: 1000px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}
@media screen and (max-width: 1025px) {
	.footer__inner {
		width: 100%;
		padding: 0 1.4634146341vw;
		gap: 2.9268292683vw;
	}
}
@media screen and (max-width: 767px) {
	.footer__inner {
		width: 100%;
		padding: 0 3.8461538462vw;
		gap: 10.2564102564vw;
	}
}

.footer__logo {
	width: 282px;
	height: 75px;
}
@media screen and (max-width: 1025px) {
	.footer__logo {
		width: 27.512195122vw;
		height: 7.3170731707vw;
	}
}
@media screen and (max-width: 767px) {
	.footer__logo {
		width: 72.3076923077vw;
		height: 19.2307692308vw;
	}
}

.footer__links {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 41px;
}
@media screen and (max-width: 1025px) {
	.footer__links {
		gap: 4vw;
	}
}
@media screen and (max-width: 767px) {
	.footer__links {
		flex-wrap: wrap;
		row-gap: 5.1282051282vw;
		-moz-column-gap: 10.5128205128vw;
		column-gap: 10.5128205128vw;
	}
}
.footer__links li {
	position: relative;
}
@media screen and (max-width: 767px) {
	.footer__links li {
		width: 20.5128205128vw;
	}
}
.footer__links li::after {
	content: '';
	background-color: #182130;
	width: 2px;
	height: 18px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: -20px;
}
@media screen and (max-width: 1025px) {
	.footer__links li::after {
		width: 0.1951219512vw;
		height: 1.756097561vw;
		right: -1.9512195122vw;
	}
}
@media screen and (max-width: 767px) {
	.footer__links li::after {
		width: 0.5128205128vw;
		height: 4.6153846154vw;
		right: -5.641025641vw;
	}
}
.footer__links li:nth-of-type(1) {
	display: none;
}
.footer__links li:last-of-type::after {
	content: none;
}
@media screen and (max-width: 767px) {
	.footer__links li:nth-of-type(4)::after,
	.footer__links li:nth-of-type(7)::after {
		content: none;
	}
}
.footer__links a {
	font-size: 18px;
	font-family: 'Kaisei HarunoUmi', serif;
	font-weight: 500;
	font-style: normal;
	line-height: 2.2;
	text-transform: uppercase;
	position: relative;
}
@media screen and (max-width: 1025px) {
	.footer__links a {
		font-size: 1.756097561vw;
	}
}
@media screen and (max-width: 767px) {
	.footer__links a {
		font-size: 4.1025641026vw;
		display: block;
		width: 100%;
		height: 100%;
		text-align: center;
	}
}
.footer__links a::before {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #182130;
	bottom: -10px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s;
}
@media screen and (max-width: 1025px) {
	.footer__links a::before {
		height: 0.1951219512vw;
		bottom: -0.9756097561vw;
	}
}
.footer__links a:hover::before {
	transform: scale(1, 1);
}
@media screen and (max-width: 1025px) {
	.footer__links a:hover::before {
		transform: none;
	}
}

.footer__icons {
	width: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 33px;
	position: relative;
}
@media screen and (max-width: 1025px) {
	.footer__icons {
		gap: 3.2195121951vw;
	}
}
@media screen and (max-width: 767px) {
	.footer__icons {
    display: none;
	}
}
.footer__icons::after {
	content: '';
	background-color: #182130;
	width: 120%;
	height: 1px;
	position: absolute;
	bottom: -28px;
	left: 50%;
	transform: translate(-50%, 0);
}
@media screen and (max-width: 1025px) {
	.footer__icons::after {
		height: 0.0975609756vw;
		bottom: -2.7317073171vw;
	}
}
@media screen and (max-width: 767px) {
	.footer__icons::after {
		width: 100%;
		bottom: -5.1282051282vw;
	}
}

.footer__icon {
	width: 60px;
	height: 60px;
}
@media screen and (max-width: 1025px) {
	.footer__icon {
		width: 40px;
		height: 40px;
	}
}
@media screen and (max-width: 767px) {
	.footer__icon {
		width: 11.5384615385vw;
		height: 11.5384615385vw;
	}
}
.footer__icon a {
	display: block;
	width: 100%;
	height: 100%;
	transition: all 0.3s;
}
.footer__icon a:hover {
	transform: rotate(10deg);
}
@media screen and (max-width: 1025px) {
	.footer__icon a:hover {
		transform: none;
	}
}

.footer__icon.icon__x {
	width: 57px;
	height: 58px;
}
@media screen and (max-width: 1025px) {
	.footer__icon.icon__x {
		width: 40px;
		height: 40px;
	}
}
@media screen and (max-width: 767px) {
	.footer__icon.icon__x {
		width: 11.2820512821vw;
		height: 10.2564102564vw;
	}
}

.footer__icon.icon__tiktok {
	width: 81px;
	height: 86px;
}
@media screen and (max-width: 1025px) {
	.footer__icon.icon__tiktok {
		width: 49px;
		height: 52px;
	}
}
@media screen and (max-width: 767px) {
	.footer__icon.icon__tiktok {
		width: 11.7948717949vw;
		height: 12.8205128205vw;
	}
}

.footer__copy {
	margin-top: 25px;
	font-size: 14px;
	font-weight: 400;
}
@media screen and (max-width: 1025px) {
	.footer__copy {
		margin-top: 2.4390243902vw;
		font-size: 1.3658536585vw;
	}
}
@media screen and (max-width: 767px) {
	.footer__copy {
		margin-top: 0;
		font-size: 3.5897435897vw;
	}
}

.button__top {
	opacity: 0;
	pointer-events: none;
}

.button__top.is-active {
	opacity: 1;
	pointer-events: initial;
	position: fixed;
	right: 50px;
	bottom: 50px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 5;
	transition: all 0.3s;
}
@media screen and (max-width: 1025px) {
	.button__top.is-active {
		right: 25px;
		opacity: 0.8;
	}
}
@media screen and (max-width: 767px) {
	.button__top.is-active {
		width: 50px;
		height: 50px;
		right: 10px;
		bottom: 30px;
		opacity: 0.8;
	}
}

.common__list {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	margin-top: 8px;
	column-gap: 3%;
	row-gap: 30px;

}

@media screen and (max-width: 767px) {
	.common__list {
		flex-wrap: wrap;
		column-gap: 2%;
	}
}

.common__card {
	width: 31%;
	margin-top: 20px;
}

@media screen and (max-width: 767px) {
	.common__card {
		width: 49%;
		margin-top: 20px;
	}
}

.card__link {
	display: block;
	width: 100%;
	transition: all 0.3s;
}

.card__link:hover {
	transform: scale(1.05);
}

@media screen and (max-width: 1025px) {
	.common__card .card__link:hover {
		transform: none;
	}
}

.common__card p {
	font-size: 16px;
	margin-top: 8px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
