html{
	scroll-behavior: smooth;
	-webkit-scroll-behavior: smooth;
	font-size: 62.5%;/*rem算出をしやすくするために*/
}
body{
    background-color: #44AF35;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: weight;
	font-style: normal;
	font-feature-settings: 'palt';
	-webkit-font-feature-settings: 'palt';
	color: #333;

	/* text-shadow: 2px 3px 3px rgba(252, 213, 188, 0.4); */
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input, button, textarea, select {
	-webkit-appearance: none;
	appearance: none;
}
img {
	width: 100%;
}
a {
	text-decoration: none;
}
ul, ol {
	list-style-type: none;
	/* padding: 0; */
}

/* ==================================
全体ｃｓｓ
================================== */

.wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background-color: #fff;
}

/* 文字可変に使用
font-size: clamp(16px, 1.8vw, 30px);
 */


/* カラー一覧 */
:root {
	--white : #fff;
	--whiteAbusability: #d3d3d3;
	--black : #333;
	--tateyama-blue : #47BBC5; 
	--orange : #f7a25d;
	--pink : #E15884;
	--young : #3EADDB;
	--middle : #E47176;
	--senior : #44AF35;
}

/* マーカー */
.markerO {
	background: linear-gradient(transparent 50%, #f7a25d 80%);
	display: inline;
	padding: 0 1px 0px;
}
.markerY {
	background: linear-gradient(transparent 50%, #dfee10 80%);
	display: inline;
	padding: 0 1px 0px;
}

.sp_br {
	display: none;
}
@media screen and (max-width:480px) {
	.sp_br {
		display: block;
	}
	.sp_br2 {
		display: none;
	}
}

/* トップへ戻るボタン */
.back-btn {
    display: none;
    padding: 30px 30px;
    background-color: #fff;
    color: var(--tateyama-blue);
    text-decoration: none;
    border-radius: 50%;
    position: fixed;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    visibility: hidden;
	font-size: 1.5em;
	font-weight: bold;
}

/* トップへ戻るボタンを出現 */
.back-btn.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

/* =================================
ヘッダー
================================== */
.header {
	background-color: var(--senior);
}

/* =================================
フッター
================================== */
.footer{
    margin-top: auto;
}
.footer-inner {
	padding: 1em 1em 50px;
	color: #fff;
	background-color: var(--tateyama-blue);
	text-align: center;
	font-size: clamp(14px, 1.125vw, 18px);
	line-height: 2em;
}



/* =================================
TOP画像
================================== */

.top-sp {
    display: none;
}

.top-pc{
	padding-top: 48%;
	width: 100%;
	position: relative;
}
.top-pc video{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}
@media screen and (max-width:675px) {
    .top-pc {
        display: none;
    }

    .top-sp {
        display: block;
    }
}

/* =================================
main
================================== */

/* マンガスライド */
.comic_slide {
	background-color: #FFF000;
	padding: 15px 0;
}
.scroll-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.scroll-content {
    display: flex;
    animation: scroll 30s linear infinite;
}

.item {
    flex: 0 0 auto;
    width: 250px;
    margin: 0 10px;/*左右の余白はここを調整*/
    text-align: center;
    line-height: 200px;
    font-size: 24px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}



/* ============================hero */
.hero {
	text-align: center;
	margin: 80px 10px 0;
}
.hero_wrap {
	max-width: 1000px;
	margin: 0 auto;
}
.hero_wrap img.hero_ttl_SP {
	display: none;
}

@media screen and (max-width:567px) {
	.hero_wrap img.hero_ttl_PC {
		display: none;
	}
	.hero_wrap img.hero_ttl_SP {
		display: block;
	}
	.hero {
		margin: 20px 10px;
	}
}

/* ============================strategy */
.cont-strategy_wrap {
	margin: 50px 0;
	margin: 0 10px;
}

.strategy-banner {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}
.cont-strategy_inner {
	max-width: 1000px;
	width: 100%;
	margin: 30px auto;
	text-align: center;
}

.strategy_inner-in {
	margin: 0 0 50px;
}
.strategy_inner-in h2 {
	color: var(--pink);
	font-size: clamp(20px, 1.875vw, 30px);
	border-bottom: 5px dotted var(--pink);
	padding-bottom: .5em;
}
.strategy_inner-in p {
	padding: 2em 10px;
	font-size: clamp(16px, 1.25vw, 20px);
	letter-spacing: 5px;
	line-height: 2em;
	display: inline-block;
	text-align: left;
}
.strategy_inner-in ul {
	letter-spacing: 5px;
	font-weight: bold;
}
.strategy_inner-in ul {
	text-align: left;
	font-size: clamp(16px, 1.25vw, 20px);
	color: var(--pink);
	list-style-type: disc;
}
.strategy_inner-in ul li {
	margin-bottom: 1em;
}
div.goal {
	padding: 2em 10px;
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

@media screen and (min-width:765px) {
	.cont-strategy_inner {
		margin: 50px auto;
	}
	.strategy_inner-in {
		margin: 0 0 150px;
	}
	.strategy_inner-in p,
	div.goal {
		padding: 2em;
	}
	.strategy_inner-in ul.goal li {
		flex-direction: row;
	}
}

.strategy-banner_SP {
	display: none;
}
@media screen and (max-width:567px) {
	.strategy-banner_PC {
		display: none;
	}
	.strategy-banner_SP {
		display: block;
	}
}

/* -----------------------------------マンガ */
.cont-comic {
	background-image: url(../images/pamphlet_back.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: auto;
}
.cont-comic_wrap {
	padding: 30px 10px;
}
.cont-comic_inner {
	padding: 50px 10px;
	background-color: #ffffffaf;
}
.cont-comic_inner h2 {
	max-width: 900px;
	width: 100%;
	margin: 0 auto 2em;
}

.cont-comic_pamphlet {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1em;
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.cont-comic_pamphlet section {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1em;
}
.cont-comic_pamphlet figure {
	max-width: 400px;
	width: 80%;
	margin: 0 auto;
}
.cont-comic_pamphlet a {
	max-width: 300px;
	width: 60%;
	font-size: clamp(16px, 1.25vw, 20px);
	padding: 5px 1em;
	color: #fff;
	border-radius: 10px;
}
.cont-comic_pamphlet a.young {
	background-color: var(--young);
}
.cont-comic_pamphlet a.middle {
	background-color: var(--middle);
}
.cont-comic_pamphlet a.senior {
	background-color: var(--senior);
}

@media screen and (max-width:765px) {
	.cont-comic {
		background-image: url(../images/pamphlet_back-sp.jpg);
	}	
}

.pamp_ttl-SP {
	display: none;
}
@media screen and (max-width:567px) {
	.pamp_ttl-PC {
		display: none;
	}
	.pamp_ttl-SP {
		display: block;
	}
}


@media screen and (min-width:785px) {
	.cont-comic_pamphlet {
		flex-direction: row;
	}	
	.cont-comic_wrap {
		padding: 100px 30px;
	}
	.cont-comic_pamphlet figure {
		width: 100%;
	}
	.cont-comic_pamphlet a {
		width: 100%;
	}
}
@media screen and (min-width:1300px) {
	.cont-comic_wrap {
		padding: 130px;
	}
}


/* -----------------------------------本田先生 */
.cont-honda {
	margin: 0 10px;
}
.cont-honda_wrap {
	text-align: center;
	max-width: 900px;
	width: 100%;
	margin: 10px auto 50px;
}
.cont-honda_title {
    max-width: 500px;
	width: 100%;
	margin: 0 auto;
}
.cont-honda_inner p.honda_hero {
	padding: 2em 10px;
	font-size: clamp(16px, 1.25vw, 20px);
	letter-spacing: 5px;
	line-height: 2em;
	display: inline-block;
	text-align: left;
}

.cont-honda_video video {
	max-width: 1000px;
	width: 100%;
}

.honda_profile {
	border: 2px solid var(--pink);
	border-radius: 30px;
	padding: 1em;
	margin: 2em 0;
}
.honda_profile-flex {
	display: flex;
	align-items: end;
	flex-direction: column;
}
.honda_profile-flex figure {
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
}
.honda_profile-flex div {
	flex-basis: 60%;
	padding: .5em;
	text-align: left;
}
.honda_profile-flex h3 {
	font-size: clamp(18px, 1.375vw, 22px);
	margin-bottom: 1em;
	color: var(--pink);
}
.honda_profile-flex p {
	font-size: clamp(14px, 1.125vw, 18px);
	line-height: 1.8em;
}
@media screen and (min-width:765px) {
	.cont-honda_wrap {
		text-align: center;
		max-width: 900px;
		width: 100%;
		margin: 50px auto 100px;
	}
	.honda_profile-flex {
		flex-direction: row;
	}
}

/* -----------------------------------サービス */
.cont-service {
	margin: 0 10px 50px;
}
.cont-service_wrap {
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.cont-service_wrap h3 {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
}
.cont-service_inner {
	display: flex;
	gap: 1em;
	align-items: center;
	justify-content: center;
	margin: 50px 0;
	flex-direction: column;
}
.service_flexItem {
	background-color: var(--tateyama-blue);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	max-width: 500px;
	width: 100%;
	padding: 1.5em;
	color: #fff;
}
.service_flexItem h3 {
	font-size: clamp(20px, 1.5625vw, 25px);
	padding-bottom : 12px;
	border-bottom: 4px dotted #fff;
	margin-bottom: 1em;
}
.service_ttl-sp {
	display: none;
}

.service_flexItem-inner {
	display: flex;
	padding: 1em;
	align-items: center;
	gap: 1em;
	min-height: 230px;
}
.service_flexItem-inner p {
	font-size: clamp(14px, 1.125vw, 18px);
	line-height: 1.8em;
	text-align: left;
}

.service_img {
	display: flex;
	gap: 1em;
}

@media screen and (max-width:550px) {
	.service_ttl-pc {
		display: none;
	}
	.service_ttl-sp {
		display: block;
	}
}
@media screen and (min-width:765px) {
	.cont-service_inner {
		flex-direction: row;
	}
}

.button018 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 225px;
    padding: 10px 0px 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	font-size: clamp(14px, 1.125vw, 18px);
}

.button018 a:before, .button018 a:after {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
}
.button018 a:before {
	width: 1rem;
	height: 1rem;
	left: 1.1rem;
	border-top: solid 2px var(--tateyama-blue);
	border-right: solid 2px var(--tateyama-blue);
	z-index: 2;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.3s;
}
.button018 a:after {
	left: 0;
	background: #fff;
	z-index: 1;
	width: 4rem;
	height: 4rem;
	border-radius: 4rem;
	transform: translateY(-50%);
	transition: all 0.5s;
}
.button018 a span {
	position: relative;
	transition: all 0.3s;
	z-index: 3;
}

.button018 a:hover span {
	color: var(--tateyama-blue);
}
.button018 a:hover:before {
	left: 2rem;
}
.button018 a:hover:after {
	right: 0;
	width: 100%;
}



