/* 共通 */
body {
    font-family: "M PLUS Rounded 1c", "M PLUS 1", "Noto Sans JP", sans-serif;
    margin: 0;
    font-size: 16px;
    letter-spacing: .08em;
    line-height: 2em;
    /* background-color: #FCF6EA; */
    background-image: url(../img/bg1.png);
    background-repeat: repeat;
    background-size: 100%;
    background-position: center;

}
/* 横幅 */
.container {
    max-width: 1200px;
    margin: 0 auto;
}
/* 余白 */
.inner {
    padding: 100px 0;
}
/* font */
.title {
    text-align: center;
}
h2 {
    font-size: 2.25em;
    text-align: center;
}
h3 {
    font-size: 1.5em;
}
span {
    font-size: 14px;
    display: block;
    margin-top: -5px;
    line-height: 1.5em;
}
/* リストスタイル */
ul {
    padding: 0;
    margin: 0;
}
li {
    list-style: none;
}
/* リンクスタイル */
a {
    color: #fcfcfc;
    text-decoration: none;
	transition:.2s;
}
/* 画像 */
img {
    width: 100%;
    display: block;
}

/* フレックス横並び */
.flex {
    display: flex;
}
.grid {
    display: grid;
}
.reverse {
    flex-direction: row-reverse;
}
/* ボタン */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
}
.btn a {
    padding: 10px 50px;
    box-sizing: border-box;
    background: linear-gradient(-90deg, #63BAAB 50%, #fcfcfc 50%) 100%;
    background-size: 200% 100%;
    width: 250px;
    border-radius: 50px;
    box-sizing: border-box;
    border: 2px solid #63BAAB;
    transition: .3s;
}
.btn a:hover {
    background-position: 0 100%;
    transition: all .3s;
    color: #63BAAB;
    font-weight: bold;
}
.target-box .btn a {
	padding: 10px 30px;
}

/* ＝＝＝＝＝
ヘッダー
＝＝＝＝＝ */
header {
    background: linear-gradient(-20deg, #F3B689 0%, #FF9B22 100%);
    color: #fcfcfc;
    /* position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 132px;
    z-index: 99; */
}
.nav-area a:hover {
	color: #FF7A21;
	font-weight:bold;
}
.header-inner {
    justify-content: space-between;
    align-items: flex-end;
    padding: 1em 0;
}
.target {
    margin-bottom: 1em;
}
.target, .pc-nav {
    justify-content: flex-end;
    align-items: center;
}
.target > li, .pc-nav > li {
    margin-left: 30px;
    text-align: center;
    font-size: 18px;
}
.pc-nav {
    flex-wrap: wrap;
}
/* 問い合わせボタン */
.contact-btn a {
    padding: 7px 10px;
    background: linear-gradient(-90deg, #63BAAB 50%, #fcfcfc 50%) 100%;
    background-size: 200% 100%;
    border-radius: 100px;
    box-sizing: border-box;
    transition: all .3s;

}
.contact-btn a:hover {
    background-position: 0 100%;
    transition: all .3s;
    color: #63BAAB;
}
/* ドロップダウンメニュー */
.submenu-parent {
    position: relative;
}
.submenuParent {
    position: relative;
}
.submenu {
    position: absolute;
    width: max-content;
    padding: 10px;
    top: calc(100% + 10px);
    z-index: 2;
    background-color: #FFF0D5;
    border-radius: 0px;
    box-sizing: border-box;
	height: 280px;

}
/* ヘッダーサブメニュー */
.header-submenu {
    display: none;
}
 /* ドロップダウンリンク */
.sublink {
    position: relative;
    text-align: left;
	padding-bottom: 10px;
	margin-bottom:10px;
	border-bottom: 1px dashed #999;
}
.sublink a {
    color: #333;
	font-size: 16px;
}
.sublink a:hover {
    color: #FF7A21;
/*     transition: all .3s; */
    font-weight: bold;
	opacity:.8;
}

/* ＝＝＝＝＝
MV
＝＝＝＝＝ */
#mv .container {
    max-width: 100vw;
}
#mv .inner {
    padding: 0;
}
.mv-box {
    margin-inline: auto;
    overflow: hidden;
}
#mv .mv-box .slider-img.slick-slide {
	display: flex;
	align-items: center;
	aspect-ratio: 16 / 9;
}
.slick-img img {
    width: 100%;
}
@keyframes zoomUp {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}
.add-animation {
    animation: zoomUp 10s linear 0s normal both;
}
/* ＝＝＝＝＝
vision
＝＝＝＝＝ */
/* #vmv {
	background-color: #fcfcfc;
} */
.airplane-box {
    width: 300px;
    height: 91px;
    opacity: 0;
}
/* 要素に入ったらフェードイン */
.airplane-box.is-show {
    opacity: 1;
    transform: translate( 0, 0);
    transition: 2s;
}
.airplane_l, .airplane_t {
    transform: translate(-100px, -100px);
    position: relative;
}
.airplane_l::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 50px;
    left: 0;
    background-image: url(../img/airplane.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.airplane_r {
    position: relative;
    margin: 0 0 0 auto;
    transform: translate(100px, -100px);
}
.airplane_r::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 100px;
    right: 0px;
    background-image: url(../img/airplane_r.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

}
.airplane_t::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url(../img/airplane.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.box {
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 100px;
}
/* イメージ最大幅 */
.box-img {
    max-width: 820px;
}
.box-img img {
    box-shadow: 8em 12em rgba(255,184,98,0.6);
}
.mission .box-img img {
    box-shadow: -8em 12em rgba(255,184,98,0.6);
}
/* タイトル縦書き */
.sub-title {
    writing-mode: vertical-rl;
    z-index: 3;
    padding: 1.5em 0 0 1.5em;
    margin: 0;
}
.mission .sub-title {
    padding: 1.5em 1.5em 0 0;
}
.text {
    max-width: 650px;
    margin: 0 auto;
    z-index: 3;
    padding-left: 8em;
}

.photo {
    max-width: 820px;
    position: relative;
    z-index: 2;
}
/* 角丸く */
.photo img {
    border-radius: 30px;
}
/* タイトル */
.photo::before {
    position: absolute;
    bottom: -10%;
    content: "";
    z-index: 3;
    background-size: contain;
    background-repeat: no-repeat;
    height: 110px;
    left: 3%;
}
/* Vision */
.title1::before {
    background-image: url(../img/title-vision.png);
    width: 232px;
    
}
/* mission */
.title2::before {
    background-image: url(../img/title-mission.png);
    left: 66%;
    width: 252px;
}
/* Value */
.title3::before {
    background-image: url(../img/title-values.png);
    width: 229px;
}

/* ミッションリスト */
.mission-box {
    padding-top: 100px;
}
.mission-list {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 3;
    margin-top: 50px;
}

.mission-list li {
    width: 300px;
    height: 130px;
    padding: 0 1em 1em;
    display: flex;
    align-items: center;
    /* 吹き出し */
    background-position: center;
    background-size: 300px 130px;
    background-repeat: no-repeat;
    box-sizing: border-box;
    line-height: 1.5em;
    margin: 15px;
}
.fuki1 {
    background-image: url(https://madoka-group.jp/wp-content/uploads/2025/11/fukidashi.png);
}

/* バリューリスト */
.values-box {
    margin-bottom: 50px;
}
.values-list {
    grid-template-columns: 1fr 1fr;
    z-index: 3;
    margin: 30px 0 0 250px;
}
.values-list img {
    width: 30px;
    height: 20px;
    object-fit: contain;
}
.values-list li {
    text-align: center;
    margin: 0 0 15px 15px;
}
.value-item {
    align-items: center;
}
.value-item div {
    margin: 0;
}
.value-item p {
    font-size: 20px;
    margin: 0 0 0 20px;

}
/* ＝＝＝＝＝
活動内容
＝＝＝＝＝ */
#business {
    background-color: #fcfcfc;
}
.item-img img, .education-img img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* セクション区切り */
.cloud_top{
    overflow:hidden;
    position:relative;
}
.cloud_top::before{ 
    content:'';
    font-family:'shape divider from ShapeDividers.com';
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw; 
    background-size: 113% 33px;
    background-position: 50% 0%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 7" preserveAspectRatio="none"><path d="M0 0a1 1 0 005 0 1 1 0 003 0 1 1 0 004 0 1 1 0 003 0 1 1 0 002 0 1 1 0 005 0 1 1 0 007 0 1 1 0 005 0 1 1 0 0010 0 1 1 0 005 0 1 1 0 008 0 1 1 0 005 0 1 1 0 006 0 1 1 0 005 0 1 1 0 0011 0 1 1 0 005 0 1 1 0 008 0 1 1 0 006 0 1 1 0 008 0 1 1 0 0010 0 1 1 0 007 0z" fill="%23fcfcfc"/><path d="M0 0a1 1 0 007 0 1 1 0 0010 0 1 1 0 008 0 1 1 0 0011 0 1 1 0 0013 0 1 1 0 0010 0 1 1 0 0012 0 1 1 0 0013 0 1 1 0 0011 0 1 1 0 009 0 1 1 0 0012 0 1 1 0 0012 0z" fill="%23fcfcfc" opacity=".66"/></svg>'); 
}
/* 投稿 */
.single-container .title {
    text-align: left;
}
@media (min-width:2100px){
    .cloud_top::before{
        background-size: 113% calc(2vw + 33px);
    }
}

.cloud_bottom{
    overflow:hidden;
    position:relative;
}
.cloud_bottom::before{ 
    content:'';
    font-family:'shape divider from ShapeDividers.com';
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw; 
    background-size: 113% 30px;
    background-position: 50% 100%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 33.87 1.72" preserveAspectRatio="none"><g fill="%23fcfcfc"><path d="m 0,0 a 2.5,2.5 0 0 0 5,0 1.5,1.5 0 0 0 3,0 2,2 0 0 0 4,0 1.5,1.5 0 0 0 3,0 1,1 0 0 0 2,0 2.5,2.5 0 0 0 5,0 3.5,3.5 0 0 0 7,0 2.5,2.5 0 0 0 5,0 5,5 0 0 0 10,0 2.5,2.5 0 0 0 5,0 4,4 0 0 0 8,0 2.5,2.5 0 0 0 5,0 3,3 0 0 0 6,0 2.5,2.5 0 0 0 5,0 5.5,5.5 0 0 0 11,0 2.5,2.5 0 0 0 5,0 4,4 0 0 0 8,0 3,3 0 0 0 6,0 4,4 0 0 0 8,0 5,5 0 0 0 10,0 3.5,3.5 0 0 0 7,0 z" transform="matrix(-.26458 0 0 -.26458 33.87 1.72)"/><path d="m 0,0 a 3.5,3.5 0 0 0 7,0 5,5 0 0 0 10,0 4,4 0 0 0 8,0 5.5,5.5 0 0 0 11,0 6.5,6.5 0 0 0 13,0 5,5 0 0 0 10,0 6,6 0 0 0 12,0 6.5,6.5 0 0 0 13,0 5.5,5.5 0 0 0 11,0 4.5,4.5 0 0 0 9,0 6,6 0 0 0 12,0 6,6 0 0 0 12,0 z" opacity=".66" transform="matrix(-.26458 0 0 -.26458 33.87 1.72)"/></g></svg>'); 
}

@media (min-width:2100px){
    .cloud_bottom::before{
        background-size: 113% calc(2vw + 30px);
    }
}
/* セクション区切りここまで */
.business-box {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.business-item {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* 各img */
.item-img, .education-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 15px;
}
.education-img img {
	object-fit: fill;
}
/* ＝＝＝＝＝
お知らせ
＝＝＝＝＝ */
#news {
	background-color: rgba(255, 184, 98, 0.6);
}
.news-box {
	display: flex;
	justify-content: space-around;
	align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.news-box .btn {
	margin: 0;
}
.news-box h2 {
    text-align: center;
}
.news-list {
	height: 34px;
}
.news-list.news-slider.slick-slider {
	max-width: 600px;
}

.news-item a {
    color: #333;
}
.news-link:hover .news-title {
    color: #63BAAB;
    transition: .3s;
}
.day {
    margin-right: 50px;
}
.news-title {
    font-size: 20px;
    font-weight: bold;
	width: 100%;
  	white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
}

/* ＝＝＝＝＝
企業アイコン
＝＝＝＝＝ */

.icon-list {
    justify-content: space-evenly;
    align-items: center;
}
.icon-item {
    width: 15%;
    max-width: 80px;
}
/* ＝＝＝＝＝
フッター
＝＝＝＝＝ */
footer {
    background: linear-gradient(-20deg, #F3B689 0%, #FF9B22 100%);
    color: #fcfcfc;
}
/* footer .inner {
	padding: 100px 0 0 0;
} */
footer a {
    color: #fcfcfc;
    position: relative;
}
footer a:hover {
	opacity:.8;
	color:#ff7a21;
}

.footer-box {
    justify-content: space-between;
    align-items: flex-start;
}
/* footer-left */
.company-info {
    margin-right: 50px;
}
.map {
    max-width: 400px;
    aspect-ratio: 4 / 3;
}
/* footer-right*/
.footer-nav {
    margin-left: 3em;
    font-size: 18px;
}
.footer-nav > ul > li {
    padding-bottom: 20px;
}
.footer-submenu {
    margin-left: 1em;
    /* width: 200px; */
}
.copy-right {
    text-align: center;
}

/*=====
レスポンシブ
=====  */
@media screen and ( max-width:1024px) {
    .column {
        flex-direction: column;
    }
    .inner {
        padding: 50px 5% 0 5%;
        box-sizing: border-box;
    }
    h2 {
        font-size: 1.8em;
		line-height: 38px;
    }
    h3 {
        font-size: 1.3em;
    }
    /* =====
    ヘッダー
    ===== */

    .header-inner {
        padding: 0;
    }
    .nav-pc {
        display: none;
    }
    .target {
        justify-content: flex-start;
        align-items: flex-start;
    }
    /* =====
    mv
    ===== */
    #mv .inner {
        padding:0;
    }
    #mv .mv-box {
        height: 100%;
        border-radius: 0;
    }
    .slider-img img {
        object-fit: cover;
    }
	/* =====
    news
    ===== */
	#news h2 {
		margin: 0;
	}
	.news-list {
		height:66px;
	}
	.news-list.news-slider.slick-slider {
		max-width: 350px;
	}
	.news-box .btn {
		margin: 30px 0;
	}
    /* =====
    vision
    ===== */
    #vmv {
        padding-bottom: 50px;
    }
    .photo::before {
        bottom: 106%;
        left: 38%;
    }

    .vision-box {
        margin: 100px 0;
    }
    .box-img img {
        box-shadow: 1.5em 1.5em #FFF0D5;
    }
    .sub-title {
        writing-mode: horizontal-tb;
        padding: 1.5em 0;
    }
    .vision::before {
        bottom: -59px;
        left: 0px;
    }
    .text {
        padding: 0;
    }
    /* =====
    mission
    ===== */
    .mission-list {
        margin: 0;
        padding-bottom: 50px;
    }
    .mission::after {
        bottom: -50px;
        right: 0;
    }
    .mission .box-img img {
        box-shadow: -1.5em 1.5em #FFF0D5;
    }
    .title2::before {
        left: 36%;
    }
    /* =====
    values
    ===== */
    .values-list {
        margin: 0;
        padding: 1.5em 0;
        grid-template-columns: 1fr;
    }
    /* =====
    活動内容
    ===== */
	.business-box {
		grid-template-columns:1fr;
	}
    .business-item {
        width: 100%;
        height: auto;
        margin-bottom: 50px;
    }
    /* =====
    企業アイコン
    ===== */
    .icon-box {
        margin-top: 50px;
    }
    /* =====
    フッター
    ===== */
	.footer-box {
		display: none;
	}
/*     footer > .container > .inner {
        padding-top: 50px 5% 0 5%;
    } */
    footer .box {
        margin-bottom: 0;
        padding-bottom: 50px;
    }
    /* 紙飛行機 */
    .airplane-box {
        width: 191px;
        height: 91px;
    }
    .airplane_r {
        margin: 0;
    }
    .airplane_r::after {
        bottom: 120px;
        right: -80%;
    }
}
@media screen and ( max-width:375px) {
	#news h2 {
		margin-top: 1em;
	}
	footer .box {
		padding-bottom: 0;
	}
    .title1::before, .title3::before {
        left: 16%;
    }
    .title2::before {
        left: 14%;
    }
}