/* 共通 */
body {
    font-size: 16px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.8em;
    letter-spacing: .08em;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
    background-image: url(../img/bg1.png);
    background-size: 1300px auto;
    background-repeat: repeat;
    background-position: center;

}
/* font */
h2 {
    text-align: center;
}
.btn a {
    margin: 0 auto;
    max-width: 150px;
    padding: .9em 2em;
    background-color: #F77888;
    border-radius: 50px;
    color: #Fcfcfc;
    font-weight: bold;
}
.btn a, .contact-btn a {
    font-size: 20px;
}
/* 画像 */
img {
    width: 100%;
    height: 100%;
    display: block;
}
/* フレックス */
.flex {
    display: flex;
}
/* グリッド */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5%;
}
/* リレイテぃぶ */
.relative {
    position: relative;
}
/* リスト */
.text > ul {
    margin: 0 auto;
    max-width: 700px;
}

ul {
    padding: 0;
}
li {
    list-style: none;
    padding: 5px 0;
}
/* テーブル */
.table {
    flex-wrap: wrap;
    width: 100%;
}
.table dt {
    text-align: left;
    width: 50%;
}
.table dd {
    text-align: right;
    margin: 0;
    width: 50%;
}
.table dt,
.table dd {
    padding: 15px 10px;
    box-sizing: border-box;
    margin-bottom: 15px;
}
/* リンク */
a {
    color: #222;
    text-decoration: none;
    /* font-size: 20px; */
}
/* 横幅 */
.container {
    max-width: 1200px;
    margin: 0 auto;
}
/* 余白 */
.inner {
    padding: 80px 0;
}
/* ボタン */
.btn {
    text-align: center;
    max-width: 210px;
/*     margin: 50px auto; */
	margin: 0px auto;
    transition: .5s ease;
}
.btn-box {
    justify-content: center;
    align-items: center;
}

.btn-arrow {
    position: relative;
    display: inline-block;
    width: 7.9px;
    height: 12.9px;
    transform:translateX(7px) ;
    transition: .3s;
}

.btn-arrow::before,
.btn-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: 0;
  width: 10px;
  height: 3px;
  border-radius: 9999px;
  background-color: #fcfcfc;
  transform-origin: calc(100% - 1.5px) 50%;
}

.btn-arrow::before {
  transform: rotate(45deg);
}

.btn-arrow::after {
  transform: rotate(-45deg);
}
.btn:hover .btn-arrow{
    transition: .3s;
    transform:translateX(15px) ;
}
.ham-nav .btn-arrow::before,
.ham-nav .btn-arrow::after {
  top: calc(50% - 1px);
  background-color: #F77888;
}
/* セクション背景 */
.curved {
    border-bottom-left-radius: 50% 9%;
    border-bottom-right-radius: 50% 9%;
}
/* 背景色 */
.curve1 {
    background: #F8CDD2;
}
.curve2 {
    background: #ECD37C;
}
.curve3 {
    background: #70C1BC;
}
/* ロゴ */
.logo {
    width: 330px;
}
/* ボーダー */
.border {
    border: 3px solid #F77888;
}
.border-dots {
    border-bottom: 3px dotted #F5C2C2;
    display: inline-block;
    padding-bottom: 5px;
}

/* 要素の中に入ったらフェードイン */
.fadeIn {
    /* 初期非表示 */
    opacity: 0;
    transform: translate( 0, 100px);
    transition: 2s;
}
#day .fadeIn {
    transform: translate( 100px, 0);
}
/* フェードイン */
.fade-in {
    transform: translate(0, 0);
    opacity: 1;
}
#day .fade-in {
    transform: translate( 0, 0);
}
/* =====
ヘッダー
===== */
header li {
    font-size: 20px;
    padding: 5px 10px;
}
.header-container, .footer-container {
    max-width: 1200px;
    margin: 0 auto;

}
/* PCナビ */
.nav-pc {
    justify-content: space-between;
    align-items: center;
}
.nav-pc > .logo {
    max-width: 280px;
}
.pc-inner {
	flex-wrap: wrap;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 180px);
    padding-left: 40px;
}
/* ホバー時下線 */
.header-nav a:hover,
.footer-nav a:hover {
    color: #F77888;
    transition: .2s;
}


/* ドロップダウンメニュー */
.submenu-parent {
    position: relative;
}
.submenuParent {
    position: relative;
}
.submenu {
    position: absolute;
    width: 150%;
    padding: 5px;
    top: calc(100% + 5px);
    z-index: 2;
    background-color: #F8CDD2;
    border-radius: 15px;
    box-sizing: border-box;
}
/* ヘッダーサブメニュー */
.header-submenu {
    display: none;
}
/* フッターサブメニュー */
.footer-submenu {
    display: block;
    width: 150%;
    top: 100%;
    background-color: transparent;
}
.footer-submenu .sub-link{
    font-size: 15px;
}
/* ドロップダウンリンク */
.sub-link {
    padding: 5px;
    position: relative;
    text-align: left;
}
.nav-sp {
    display: none;
}
/* ハンバーガーメニュー */
.header {
  position: relative;
  padding: 20px;
}
#hamburger-menu {
    background-color: #fcfcfc;
    background-image: url(../img/bg1.png);
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
}
.hamburger {
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 3px;
  background-color: #F8CDD2;
  transition: all .4s;
  border: 1.5px solid rgba(252, 252, 252, .7);
  border-radius: 100px;
}

.hamburger__line:nth-of-type(1) {
    top: 14px;
    background-color: #F8CDD2;
}
.hamburger__line:nth-of-type(2) {
    top: 23px;
    background: #ECD37C;
}
.hamburger__line:nth-of-type(3) {
    top: 32px;
    background: #70C1BC;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.hamburger-nav {
    justify-content: space-evenly;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #999;
    box-shadow: 2px 0 4px rgba(0,0,0,.1);
    transform: translateX(-100%);
    transition: transform .4s;
    z-index: 90;
    box-sizing: border-box;

}

.hamburger-nav.active {
  transform: translateX(0);
}
/* 決算報告etc */
.ham-nav {
    border: 2px solid #F5C2C2;
    margin-bottom: 5px;
    border-radius: 30px;
    background: linear-gradient(to left, #fcfcfc 50%, #F5C2C2 50%) 100%;
    background-size: 200% 100%;
    transition: .3s;
}
.ham-nav:hover {
    background-position: 0 100%;
    transition: .3s;
}

.ham-nav a{
    font-size: 16px;
    border-radius: 30px;
    padding: 0 0 0 5px;

}
/* ナビ行間 */
.nav__list li {
    line-height: 1.5em;
}

.nav__item {
  padding: 0 20px;
}


/* =====
MV
===== */
.mv-section {
    max-height: calc(100vh - 66px);
    overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.mvLinkBox > a {
    max-width: 300px;
	margin-top: 10px;
	font-size: 1.3em;
	display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0 20px 13px 20px;
    width: 300px;
    height: 70px;
    background-size: 300px;
    background-position:center;
    background-repeat: no-repeat;
    background-image: url(../img/ribon4.png);
	box-sizing: border-box;
}
.mvLinkBox > a:hover {
	transform: scale(1.1);
	transition:all .5s cubic-bezier(.175, .885, .32, 1.275);
}
.mv-box {
    padding: 0 5%;
    position: absolute;
    bottom: 3%;
    left: 0;
    right: 0;
    justify-content: space-between;
    align-items: center;
    /* z-index: 1; */
}
/* .mv-box .logo {
	background: #fcfcfc;
	border:5px solid #F5C2C2;
	padding:15px;
	border-radius:30px;
} */
.mvLinkBox {
	display: flex;
	flex-direction: column;
}

/* =====
７つのポイント
===== */
.title {
    text-align: center;
    max-width: 350px;
    margin: 0 auto 100px;
}
.title h2 {
	font-size:2em;
	margin-top: 10px;
}
#point .container {
    max-width: 1080px;
}
.point-list {
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
/* ７つのポイントテキスト */
.point-list p {
/*     display: flex; */
    text-align: center;
/*     justify-content: center;
    align-items: center; */
    font-size: 1.3em;
/*     padding: 0 20px 13px 20px; */
    width: 200px;
    margin: 10px 0;
/*     height: 70px; */
/*     box-sizing: border-box;
    background-size: 300px;
    background-position:center;
    background-repeat: no-repeat;
    background-image: url(../img/ribon4.png);
    letter-spacing: 0.06em;
    z-index: 10; */
/* 	text-shadow: 1px 1px 1px #fcfcfc, -1px -1px 1px #fcfcfc, -1px 1px 1px #fcfcfc, 1px -1px 1px #fcfcfc, 1px 0 1px #fcfcfc, -1px 0 1px #fcfcfc, 0 1px 1px #fcfcfc, 0 -1px 1px #fcfcfc; */
}
.point-list p:first-letter {
	text-shadow: 1px 1px 1px #fcfcfc, -1px -1px 1px #fcfcfc, -1px 1px 1px #fcfcfc, 1px -1px 1px #fcfcfc, 1px 0 1px #fcfcfc, -1px 0 1px #fcfcfc, 0 1px 1px #fcfcfc, 0 -1px 1px #fcfcfc;
}
.point-list li:nth-of-type(1) p::first-letter {
	font-size: 1.5em;
	color:#F77888;
	font-weight: bold;
}
.point-list li:nth-of-type(2) p::first-letter {
	font-size: 1.5em;
	color:#E0B41A;
	font-weight: bold;
}
.point-list li:nth-of-type(3) p::first-letter {
	font-size: 1.5em;
	color:#70C1BC;
	font-weight: bold;
}
.point-list li:nth-of-type(4) p::first-letter {
	font-size: 1.5em;
	color:#F77888;
	font-weight: bold;
}
.point-list li:nth-of-type(5) p::first-letter {
	font-size: 1.5em;
	color:#E0B41A;
	font-weight: bold;
}
.point-list li:nth-of-type(6) p::first-letter {
	font-size: 1.5em;
	color:#70C1BC;
	font-weight: bold;
}
.point-list li:nth-of-type(7) p::first-letter {
	font-size: 1.5em;
	color:#F77888;
	font-weight: bold;
}
.point-box {
    margin-top: 50px;
}
.point-box li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
	padding: 0 30px;
    
}
.point {
    text-align: center;
    max-width: 300px;
    width: 200px;
    height: 200px;
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    border-radius: 15px;
    position: relative;
}

.point1 {
    background-image: url(https://wasedakai.or.jp/wp-content/uploads/2025/12/4001160D-AACD-45DB-9B5A-4BB4C9031BC7.jpeg);
}
.point2 {
    background-image: url(https://wasedakai.or.jp/wp-content/uploads/2025/12/D4F941FC-69D3-4B0C-B0E5-7902521199D9.jpeg);
}
.point3 {
    background-image: url(https://wasedakai.or.jp/wp-content/uploads/2025/12/CB173B24-EE7A-4D78-8655-C6B390B9BD71.jpeg);
}
.point4 {
    background-image: url(https://wasedakai.or.jp/wp-content/uploads/2025/12/167B9D72-C165-4084-8FA5-CC17E8156B44.jpeg);
}
.point5 {
    background-image: url(https://wasedakai.or.jp/wp-content/uploads/2025/12/4EF33CDB-F242-4882-9B7E-E242A2427244.jpeg);
}
.point6 {
    background-image: url(https://wasedakai.or.jp/wp-content/uploads/2025/12/BEAA3A85-59B6-489F-9349-167CDE8B1C94.jpeg);
}
.point7 {
    background-image: url(https://wasedakai.or.jp/wp-content/uploads/2025/12/49077A7D-2FCB-4029-9991-AD1B2EE19A0A.jpeg);
}
/* =====
理事長挨拶
===== */
.teacher-box {
    justify-content: center;
    align-items: center;
}
.teacher-box .left {
    max-width: 600px;
}
.teacher-box .right {
    max-width: 300px;
    margin-left: 50px;
}

/* =====
理事長挨拶
===== */
.day-box {
    justify-content: space-between;
    align-items: center;
}
.day-img > div {
    overflow: hidden;
    margin: 20px;
}
.day-img img {
    aspect-ratio: 4 / 3;
}
/* =====
お知らせ
===== */
.blog-list {
    grid-template-columns: 1fr 1fr 1fr;
}
.sp-news {
    display: none;
}
.blog-text {
    justify-content: space-between;
    align-items: center;
}
/* =====
お問い合わせボタン＆SNS
===== */
.float {
    z-index: 999;
    position: fixed;
    top: 30%;
    right: 0;
}
.contact-btn {
    text-align: center;
    writing-mode: vertical-lr;
    width: 60px;
    padding-left: 20px;
    margin-bottom: 20px;
    background-color: #F77888;
    border-radius: 30px 0 0 30px;
    box-sizing: border-box;
}

.contact-btn:hover {
    opacity: .9;
    transition: .3s;
}
.contact-btn a {
    color: #fcfcfc;
    font-weight: bold;
    padding: 25px 20px;
}

.sns-box {
    width: 60px;
}
.insta {
    margin-bottom: 20px;
}
.insta:hover,
.line:hover {
    opacity: .8;
    transition: .3s;
}
/* =====
フッター
===== */
/* footer {
    margin-top: 100px;
} */
footer li {
    font-size: 20px;
}
/* CTAおもちゃ寄付 */
#toy {
/*     background-color: #999; */
    width: 100%;
/*     height: 200px; */
}
#toy .inner {
	padding: 0;
}

/* アドレス */
.address-box {
    justify-content: space-between;
    align-items: flex-start;
    margin: 80px auto;
}
.address-inner {
    line-height: 1.5em;
}
.address-right {
    width: 600px;
    height: 400px;
}
/* フッターナビ */
.footer-nav {
    justify-content: space-between;
    align-items: flex-start;
}
.footer-nav2 {
    justify-content: flex-end;
    align-items: center;
	margin-top:112px;

}
.footer-nav2 li {
    margin-left: 10px;
    padding: 5px;
    box-sizing: border-box;
    background-color: #fcfcfc;
}

.copy-right {
    text-align: center;
    font-size: 10px;
}
/*=====
  recruit
  =====  */
.recruit-title {
	font-size: 1.5em;
}
.recruit-box > div {
	display: flex;
	justify-content: center;
	align-items:center;
}

.recruit-item {
	width: 200px;
	height: 200px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
}
.recruit-textbox {
	max-width: 300px;
	margin: 80px auto;
}
.recruit-text {
	display: inline-block;
	color: #E8828E;
	font-size: 20px;
	font-weight: bold;
	position:relative;
	margin: 10px 0 0 0;
}
.recruit-text::after {
	position:absolute;
	bottom: -5px;
	left: 0;
	content:"";
	width:100%;
	height: 7px;
	background-color: #F5EBC7;
}
.recruit-item:nth-of-type(1) {
	background: #F5EBC7;
}
.recruit-item:nth-of-type(2) {
	background:#F8CDD2;
	margin: 0 40px;
}
.recruit-item:nth-of-type(3) {
	background:#C1EEEB;
}
.recruit-table {
	background-color: #fcfcfc;
	border: 5px solid #70C1BC;
}
.recruit-table dt {
	width: 30%;
	border-bottom: 1px solid #fcfcfc;
	margin: 0;
	background-color: #70C1BC;
	color: #fcfcfc;
}
.recruit-table dd {
	width: 70%;
	text-align: left;
	border-bottom: 1px solid #999;
	border-left: 1px solid #999;
	margin: 0;
}
.recruit-table .recruit-dd {
	width: 35%;
}
.recruit-table .border-bottom {
	border-bottom: none;
}
/* 決算ページ */
.kessan-box {
	max-width: 900px;
	margin: 0 auto;
	background-color:#fcfcfc;
}
.kessan-box .wp-block-table thead {
    background-color: #F8CDD2;
    border-bottom: 3px solid;
}
.kessan-box .wp-block-table thead {
    border-bottom: 5px solid #999;
}
.kessan-box .wp-block-table.is-style-stripes td, .wp-block-table.is-style-stripes th {
    border: 2px solid #999;
}
.kessan-box .wp-block-table.is-style-stripes th {
	border-color: #999;
}
.kessan-box .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background:rgba(248,205,210,0.6);
}
/*=====
レスポンシブ
=====  */
@media screen and ( max-width:1024px) {
    body {
        background-size: 1000px auto;
    }
    .curve1 {
        border-bottom-left-radius: 150% 3%;
        border-bottom-right-radius: 150% 3%;
    }
    .column {
        flex-direction: column;
    }
    .reverse {
        flex-direction: column-reverse;
    }
    .inner {
        padding: 50px 5%;
    }
    /* フッター */
    .float {
        top: 50%;
    }
    .address-box {
        align-items: center;
    }
    .address-right {
        width: 300px;
        height: 200px;
    }
    /* ヘッダー */
    .nav-pc {
        justify-content: center;
    }
    .pc-inner, .footer-nav, .footer-nav2 {
        display: none;
    }
    /* MV */
	.mv-section {
		height: 100vh;
	}
	.mv-section img {
		width: auto;
	}
    .mv-box {
/*         align-items: flex-end; */
		justify-content:center;
		bottom: 0;
		
    }
/*     .mv-box > div {
        max-width: 30%;
    } */
	.mv-box .logo {
		display: none;
	}
    .mv-link {
        max-width: 300px;
        padding: 10px 5px;
        background-color: #fcfcfc;
        border-radius: 100px;
		border: 5px solid #f77888;
    }
	.mvLinkBox {
/* 		flex-direction: row; */
		align-items:center;
	}
/* 	.mvLinkBox > a {
		width: 50%;
		padding: 0 15px;
		font-size: 1em;
		margin-right:5px;
		
	} */
    /* SP */
    .nav-sp {
        display: block;
    }
    /* ドロップダウンアイコン */
    .hamburger-submenu {
        display: block;
    }
    /* ７つのポイント */
/* 	#point .inner {
		padding: 200px 5% 50px;
	} */
    .point-box li {
        margin-bottom: 0;
    }
    .day-img > div {
        margin: 0 20px;
    }
    .blog-list {
        grid-template-columns: 1fr;
        gap: 2%;
        /* 中央よせ */
        place-items: center;
    }
    .sp-news {
        display: block;
    }
    /* 理事長挨拶 */
    .teacher-box .right {
        margin: 0;
    }
	/* おもちゃ寄付	 */
	#toy .title {
		max-width:300px;
	}
	#toy h2 {
		line-height:1em;
	}
    /*=====
	  recruit
	  =====  */
	.recruit-box > div {
		flex-direction: column;
	}
	.recruit-item:nth-of-type(2) {
		margin: 40px 0;
	}
	.recruit-textbox {
		margin: 50px auto;
	}
	.recruit-table dt {
		border: none;
	}
	.recruit-table dd {
		border: none;
	}
	.recruit-table dt, .recruit-table dd {
		width: 100%;
	}
	.recruit-table .recruit-dd {
		width: 50%;
		
	}
	.recruit-table .recruit-dd.border-left {
		border-left: 1px solid #999;
	}
}
/*=====
レスポンシブ
=====  */
@media screen and ( max-width:375px) {
    body {
        background-size: 500px auto;
    }
    .contact-btn {
        width: 50px;
        padding-left: 16px;
    }
    .contact-btn a {
        padding: 15px 0 15px 10px;
    }
    .sns-box {
        width: 50px;
    }
}