@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700&subset=japanese");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@400;900&display=swap');

.text10 { font-size:77%; }
.text11 { font-size:85%; }
.text12 { font-size:93%; }
.text13 { font-size:100%; }
.text14 { font-size:108%; }
.text15 { font-size:116%; }
.text16 { font-size:123.1%; }
.text17 { font-size:131%; }
.text18 { font-size:138.5%; }
.text19 { font-size:146.5%; }
.text20 { font-size:153.9%; }
.text21 { font-size:161.6%; }
.text22 { font-size:167%; }
.text23 { font-size:174%; }
.text24 { font-size:182%; }
.text25 { font-size:189%; }
.text26 { font-size:197%; }

/* ページ全体
------------------------------------------------------------ */

body {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #000;
	font-family: "Roboto", "Noto Sans JP", "游ゴシック", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif !important;
}
html, body {
	height: 100%;
}


/* リンクテキストの装飾
------------------------------------------------------------ */

a:link,
a:hover,
a:active,
a:visited {
	color: #000;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

/* 全ての行間を詰める（行間リセット）
------------------------------------------------------------ */

h1,h2,h3,h4,h5,h6,p,ul,ol,dl {
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1;
}

/* img装飾
------------------------------------------------------------ */

img {
	border: none;
}

/* フェードイン
------------------------------------------------------------ */
.fadeIn {
	animation-name: fadeInAnime;
	animation-duration: 5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#container {

}

/* header
------------------------------------------------------------ */
header {
/*	display: block;
	height: 60px;
	padding: 20px 30px 25px 30px;
	background: #090;*/
}
header h1 {
	display: inline;
}
header h1 img {
	width: 70px;
}
header h1 img.logo {
	width: 200px;
	margin: 0 0 0 10px;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #090;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #FFF;
  height: 50px;
  padding: 1em;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu > li {
/*  margin: 0 1rem;*/
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 1069px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 76px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
	z-index: 10;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
/*    border: 1px solid #fff;*/
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background: rgba(0,153,0,0.8);
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}

header ul li+ li {
      border-left: 1px solid #e0e0e0;
    }
header ul li a {
	display: block;
	padding: 0 15px;
}
header ul li a span {
	display: block;
	text-align: center;
}
header ul li a span:first-child {
	font-size: 14px;
    font-weight: 700;
/*    padding-top: 36px;*/
    line-height: 2;
    -webkit-transition: padding-top 0.2s;
    transition: padding-top 0.2s;
	color: #fff;
}
header ul li a:hover {
	color: #fff;
}
header ul li a span:last-child {
	font-size: 10px;
    color: #fff;
}
@media screen and (max-width: 1069px) {
header {
/*	display: block;
	height: 60px;
	padding: 0px;*/
}
header h1 img {
	width: 50px;
/*	margin: 18px 0 0 20px;*/
}
header h1 img.logo {
	width: 170px;
	margin: 0 0 0 10px;
}
li.pc span:last-child {
	display: none;
}

}
@media screen and (max-width: 559px) {
header {
/*	display: block;
	height: 60px;
	padding: 0px;*/
}
header h1 img {
	width: 40px;
/*	margin: 18px 0 0 20px;*/
}
header h1 img.logo {
	width: 150px;
	margin: 0 0 0 10px;
}
li.pc span:last-child {
	display: none;
}

}

/* 
------------------------------------------------------------ */
.visual,
/*.topAbout,*/
/*.topService,*/
.topSupport,
/*.topCompany,*/
.contactform {
	height: 100vh;
	overflow: visible;
}
@media screen and (max-width: 559px) {
.topCompany {

}
}

/* visual
------------------------------------------------------------ */

.visual::before {
/*	background-color: rgba(255,204,0,1.0);*/
/*	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';*/
}
.visual {
	background: #fc0 url(img/visual_kawagoe.png?v=20250521) no-repeat center;
	background-size:cover;
  opacity: 0;
  animation: fadeIn 1s forwards;
	position: relative;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.catch {
	position: absolute;
/*	top: calc(50% - 220px);*/
/*    left: calc(50% - 500px);*/
	top: calc(50% - 220px);
	left: calc(50% + 100px);
}
.visual h1 {
	position: relative;
	color: #fff;
	line-height: 1.3;
	font-size: 394%;
	font-weight: 700;
	text-align: center;
	z-index: 1;
}
.visual h2 {
	position: relative;
	color: #fff;
	line-height: 1.8;
	font-size:131%;
	font-weight: 400;
	text-align: center;
	z-index: 1;
}
@media screen and (max-width: 769px) {
.visual {
	background: url(img/visual_kawagoe_sp.png?v=20250521) no-repeat;
	background-position: 0px top;
	background-size: cover;
	height: 500px;
	position: relative;
}
.catch {
	position: absolute;
/*	top: calc(50% - 389px);*/
    left: calc(50% + 20px);
	margin: 0 20px;
}
.catch img {
	width: 90%;
}
.visual h1 {
	position: relative;
	margin: 0 0 1em 0;
	color: #fff;
	line-height: 1.1;
	font-size: 293%;
	font-weight: 700;
	text-align: center;
	z-index: 1;
}
.visual h2 {
	font-size: 116%;
	-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
}

/* topVideo
------------------------------------------------------------ */
.topVideo {
	padding: 90px 90px;
	border-top: 60px solid #fff;
	background: url(img/bg.png) no-repeat;
}
.topVideo .title {
	position: relative;
	display: flex;
	margin: 0 0 1em 0;
	justify-content: center;/*左右中央配置*/
/*	border: 2px solid #fff;*/
}
.topVideo .title span {
	position: absolute;
	top: -.7em;
	font-size: 80%;
	width: fit-content;/*サブテキストの幅分*/
	padding: 0 10px;
	color: #090;
	background: #fff;
}
.topVideo h2 {
	position: relative;
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 293%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
.newVideo {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
}
.newVideo iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.newVideo p {
	margin: .5em 0 0 0;
}
@media screen and (max-width: 769px) {
.topVideo {
	padding: 20px 20px;
	border-top: 0px;
	background: url(img/bg.png) no-repeat;
}
.topVideo h2 {
	position: relative;
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 167%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
.newVideo {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
}
.newVideo iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
}

/* topSNS
------------------------------------------------------------ */
.topSNS {
	padding: 30px 90px 0 90px;
}
.topSNS .title {
	position: relative;
	display: flex;
	margin: 0 0 1em 0;
	justify-content: center;/*左右中央配置*/
/*	border: 2px solid #fff;*/
}
.topSNS .title span {
	position: absolute;
	top: -.7em;
	font-size: 80%;
	width: fit-content;/*サブテキストの幅分*/
	padding: 0 10px;
	color: #090;
	background: #fff;
}
.topSNS h2 {
	position: relative;
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 293%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
@media screen and (max-width: 559px) {
.topSNS {
	padding: 20px 20px;
	border-top: 0px;
}
.topSNS h2 {
	position: relative;
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 167%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
}


/* topGreetings
------------------------------------------------------------ */
.topGreetings::before {
/*	background-color: rgba(255,204,0,0.5);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';*/
}
.topGreetings {
/*	position: relative;*/
	border-top: 60px solid #fff;
	background: url(img/bg.png) no-repeat;
/*	background-attachment: fixed;*/
/*	background-size:cover;*/
/*	background: #fc0;*/
}
.greetingsInner {
	padding: 90px 110px;
}
.topGreetings .title {
	position: relative;
	display: flex;
	margin: 0 0 1em 0;
	justify-content: center;/*左右中央配置*/
/*	border: 2px solid #fff;*/
}
.topGreetings .title span {
	position: absolute;
	top: -.7em;
	font-size: 80%;
	width: fit-content;/*サブテキストの幅分*/
	padding: 0 10px;
	color: #090;
	background: #fff;
}
.topGreetings h2 {
	position: relative;
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 293%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
.topGreetings h2 img {
	width: 180px;
	margin: 0 .2em 0 0;
	vertical-align: text-top;
}
.topGreetings h3 {
	margin: 0 0 2em 0;
}
.topGreetings p {
	position: relative;
	margin: 0 0 2em 0;
	color: #000;
	line-height: 1.6;
	font-size: 123.1%;
	z-index: 1;
}
.topGreetings p.decoration {
	display: inline-block;
	padding: .2em 1em;
	background: #fc0;
	color: #000;
	font-size: 138.5%;
	font-weight: 700;
}
.topGreetings .right {
	float: right;
	margin: 0 0 0 1em;
}
.topGreetings .right img {
	width: 300px;
}

@media screen and (max-width: 769px) {
.greetingsInner {
	padding: 20px 20px;
}
.topGreetings {
/*	position: relative;*/
	border-top: 20px solid #fff;
	background: url(img/bg.png) no-repeat;
/*	background-attachment: fixed;*/
	background-size:cover;
/*	background: #fc0;*/
}
.topGreetings h2 {
	position: relative;
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 167%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
.topGreetings h2 img {
	width: 120px;
	margin: 0 .2em 0 0;
	vertical-align: text-top;
}
.topGreetings h3 img {
	width: 100%;
	margin: 0 .2em 0 0;
	vertical-align: text-top;
}
.topGreetings p {
	position: relative;
	margin: 0 0 1.5em 0;
	color: #000;
	line-height: 1.6;
	font-size:116%;
	z-index: 1;
}
.topGreetings p.decoration {
	font-size: 153.9%;
	font-weight: 700;
}
.topGreetings .right {
	float: none;
	margin: 0 0 1.5em 0;
	text-align: center;
}
.topGreetings .right img {
	width: 70%;
}

}

/* topPolicy
------------------------------------------------------------ */
.topPolicy {
	position: relative;
	padding: 90px 0 90px 0;
	background: #fc0;
	background-attachment: fixed;
	background-size: cover;
}
.topPolicy p.title {
	position: relative;
	margin: 0 0 1em 0;
	color: #fff;
	font-size: 116%;
	letter-spacing: .1rem;
	text-align: center;
	z-index: 1;
}
.topPolicy .title {
	position: relative;
	display: flex;
	margin: 0 0 1em 0;
	justify-content: center;/*左右中央配置*/
/*	border: 2px solid #fff;*/
}
.topPolicy .title span {
	position: absolute;
	top: -.7em;
	font-size: 80%;
	width: fit-content;/*サブテキストの幅分*/
	padding: 0 10px;
	color: #090;
/*	background: #fff;*/
}
.topPolicy h2 {
	position: relative;
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 293%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
.topPolicy dl {
	line-height: 1.6;

}
.topPolicy dt {
	display: inline-block;
	margin: 0 0 .5em 0;
	padding: .3em 1em;
	background: #fc0;
	color: #000;
	font-size: 116%;
	font-weight: 700;
}
.topPolicy dd {
	margin: 0 0 1em 1em;
	font-size: 108%;
}
.topPolicy .boxWrapper{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	flex-wrap: wrap;
	gap: 0 20px; /* 余白 */
	padding: 0 40px;
	row-gap: 20px;
}
.topPolicy .box {
	min-width:25%;
	height:auto;
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 40px;
	background: #FFF;
	border-radius: 10px;
	z-index: 1;
}
.topPolicy .box h3 {
	margin: 0 0 1.5em 0;
	padding: 0 0 1em 0;
	border-bottom: 1px solid #000;
	font-size:146.5%;
	font-weight: 700;
	text-align: center;
}
.topPolicy .box p {
	position: relative;
	margin: 0 0 2em 0;
	color: #000;
	line-height: 1.7;
	font-size: 116%;
	z-index: 1;
}
.topPolicy .box .icon {
	text-align: center; 
}
.topPolicy .box .icon img {
	height: 120px;
}
@media screen and (max-width: 769px) {
.topPolicy {
	position: relative;
	padding: 20px 10px 40px 10px;
	border-top: 20px solid #fff;
	background: #fc0;
	background-attachment: fixed;
	background-size: cover;
}
.topPolicy p.title {
	font-size: 116%;
}
.topPolicy h2 {
	position: relative;
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 167%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
.topPolicy .boxWrapper{
    flex-flow: column;
	padding: 0;
}
.topPolicy .box {
	margin: 0 0 20px 0;
}
.topPolicy .box h3 {
	margin: 0 0 1.5em 0;
	padding: 0 0 1em 0;
	border-bottom: 1px solid #000;
	font-size: 182%;
	font-weight: 700;
	text-align: center;
}
.topPolicy dt {
	display: inline-block;
	margin: 0 0 .5em 0;
	padding: .3em 1em;
	background: #fc0;
	color: #000;
	font-size: 123.1%;
	font-weight: 700;
}
}

/* topSupporters
------------------------------------------------------------ */
.topSupporters {
	padding: 90px 90px 20px 90px;
	border-top: 60px solid #fff;
	background: url(img/bg.png) no-repeat;
}
.topSupporters .title {
	position: relative;
	display: flex;
	margin: 0 0 1em 0;
	justify-content: center;/*左右中央配置*/
/*	border: 2px solid #fff;*/
}
.topSupporters .title span {
	position: absolute;
	top: -.7em;
	font-size: 80%;
	width: fit-content;/*サブテキストの幅分*/
	padding: 0 10px;
	color: #090;
	background: #fff;
}
.topSupporters h2 {
	position: relative;
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 293%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
.topSupporters p {
	margin: 20px 0 2em 20px;
	font-size: 123.1%;
	line-height: 1.8;
}
.button {
	display: inline-block;
}
.button img {
	height: 40px;
	padding: 0 .5em 0 0;
	vertical-align: middle;
}
.button a {
	display: inline-block;
	padding: 2em 2em;
	background: #090;
	border-radius: 10px;
	font-size: 153.9%;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
}
.topSupporters .box {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 559px) {
.topSupporters {
	padding: 20px 20px;
	border-top: 20px solid #fff;
	background: url(img/bg.png) no-repeat;
}
.topSupporters h2 {
	position: relative;
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 167%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
.topSupporters p {
	margin: 20px 0 2em 0;
	font-size: 116%;
	line-height: 1.6;
}
}

/* topDonation
------------------------------------------------------------ */
.topDonation {
	padding: 90px 90px;
	border-top: 20px solid #fff;
	background: url(img/bg.png) no-repeat;
}
.topDonation .title {
	position: relative;
	display: flex;
	margin: 0 0 1em 0;
	justify-content: center;/*左右中央配置*/
/*	border: 2px solid #fff;*/
}
.topDonation .title span {
	position: absolute;
	top: -.7em;
	font-size: 80%;
	width: fit-content;/*サブテキストの幅分*/
	padding: 0 10px;
	color: #090;
	background: #fff;
}
.topDonation h2 {
	position: relative;
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 293%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
.topDonation h3 {
/*	position: relative;*/
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 197%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
.topDonation p {
	margin: 20px 0 2em 20px;
	font-size: 123.1%;
	line-height: 1.8;
}
.topDonation .box {
  display: flex;
  justify-content: center;
  gap: 0 20px; /* 余白 */
}
@media screen and (max-width: 559px) {
.topDonation {
	padding: 20px 20px;
	border-top: 20px solid #fff;
	background: url(img/bg.png) no-repeat;
}
.topDonation h2 {
	position: relative;
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 167%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
.topDonation .box {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px 0; /* 余白 */
}
}

/* topProfile
------------------------------------------------------------ */
.topProfile {
	padding: 90px 90px;
	border-top: 60px solid #fff;
	background: url(img/bg.png) no-repeat;
}
.topProfile .title {
	position: relative;
	display: flex;
	margin: 0 0 1em 0;
	justify-content: center;/*左右中央配置*/
/*	border: 2px solid #fff;*/
}
.topProfile .title span {
	position: absolute;
	top: -.7em;
	font-size: 80%;
	width: fit-content;/*サブテキストの幅分*/
	padding: 0 10px;
	color: #090;
	background: #fff;
}
.topProfile h2 {
	position: relative;
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 293%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
.nameProfile {
	margin: 0 0 5em 0;
}
.nameProfile img.logo {
	width: 300px;
}
.photoProfile {
	position: relative;
	width: 100%;
	padding: 0 40px 0 0;
/*	max-width: 280px;*/
}
.videoProfile {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
}
.videoProfile iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.photoBaby {
	float: right;
	margin: 0 0 1em 2em;
}
.photoBaby img {
	width: 300px;
}
.photoProfile img {
	object-fit: contain;
	max-width: 240px;
}
.textProfile {
	margin: 5em 0 0 0;
}
.topProfile p {
	margin: 20px 0 2em 20px;
	font-size: 123.1%;
	line-height: 1.8;
}
.topProfile dl {
	display: flex;
	flex-flow: row wrap;
	margin: 0 0 2em 0;
	width: 100%;
	font-size: 123.1%;
	line-height: 1.8;
}
.topProfile dt {
	flex-basis: 15%;
	padding: 20px;
/*	background-color: #f1f1f1;*/
	border-bottom: 1px solid #ddd;
	font-weight: 700;
}
.topProfile dd {
	flex-basis: 75%;
	padding: 20px;
	background-color: #fff;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.topProfile table {
	background-color: rgba(255,255,255,0.7);
	font-size: 108%;
	line-height: 1.4;
}
.topProfile tbody {
	border-top: 1px solid #f0f0f0;
	border-right: 1px solid #f0f0f0;
}
.topProfile th {
	padding: .5em 1em;
	border-bottom: 1px solid #f0f0f0;
	border-left: 1px solid #f0f0f0;
	font-weight: 700;
}
.topProfile td {
	padding: .5em 1em;
	border-bottom: 1px solid #f0f0f0;
	border-left: 1px solid #f0f0f0;
}
.topProfile .boxWrapper{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	gap: 0; /* 余白 */
	padding: 0;
	margin: 0 0 30px 0;
}
.topProfile .box {
	flex: 1;
	padding: 0;
	z-index: 1;
}
.topProfile .box:first-child {
	flex-basis: 20%;
}
.topProfile .box:nth-child(2) {
	flex-basis: 80%;
}
@media screen and (max-width: 769px) {
.topProfile {
	padding: 20px 20px;
	border-top: 20px solid #fff;
	background: url(img/bg.png) no-repeat;
}
.topProfile h2 {
	position: relative;
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 167%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
.nameProfile {
	margin: 0 0 1em 0;
}
.photoProfile {
	width: 100%;
	margin: 0 0 1.5em 0;
	padding: 0;
/*	max-width: 280px;*/
}
.photoProfile img {
	object-fit: contain;
	width: 40%;
}
.photoBaby {
	float: none;
	margin: 0 0 1em 0;
}
.photoBaby img {
	width: 100%;
}
.topProfile p {
	margin: 20px 0 1.5em 0;
	font-size: 116%;
	line-height: 1.6;
}
.topProfile dl {
	flex-flow: column;
}
.topProfile table {
	font-size: 100%;
	line-height: 1.4;
}
.topProfile .boxWrapper{
    flex-flow: column;
	margin: 0 0 20px 0;
}
.topProfile .box {
/*	flex: 1;
	padding: 0;
	z-index: 1;*/
}
.videoProfile {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
}
.videoProfile iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
}

/* topContact
------------------------------------------------------------ */
.topContact {
	padding: 90px 90px;
	border-top: 60px solid #fff;
	background: url(img/bg.png) no-repeat;
}
.topContact .title {
	position: relative;
	display: flex;
	margin: 0 0 1em 0;
	justify-content: center;/*左右中央配置*/
/*	border: 2px solid #fff;*/
}
.topContact .title span {
	position: absolute;
	top: -.7em;
	font-size: 80%;
	width: fit-content;/*サブテキストの幅分*/
	padding: 0 10px;
	color: #090;
	background: #fff;
}
.topContact h2 {
	position: relative;
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 293%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
.topContact p {
	margin: 20px 0 2em 20px;
	font-size: 123.1%;
	line-height: 1.8;
}
.topContact .box {
	display: flex;
	justify-content: center;
}
.topContact i {
	margin: 0 .5em 0 0;
	color: #090;
}
.topContact a i {
	color: #090;
}
.topContact .box a {
	color: #090;
	font-weight: 700;
}
@media screen and (max-width: 559px) {
.topContact {
	padding: 20px 20px;
	border-top: 20px solid #fff;
	background: url(img/bg.png) no-repeat;
}
.topContact h2 {
	position: relative;
	margin: .5em 0 .5em 0;
	color: #090;
	font-size: 167%;
/*	font-weight: 700;*/
	text-align: center;
	z-index: 1;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
}
}

/* contactform
------------------------------------------------------------ */
.contactform {
	padding: 90px 110px;
}
.contactform h1 {
	margin: 0 0 1em 0;
	color: #000;
	font-size: 293%;
	font-weight: 700;
	text-align: center;
}
.contactform input {
    height: 2.4em;
    padding: 5px 15px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #999 inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.contactform textarea {
    width: 100%;
    padding: 15px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #999 inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.contactform input:focus,
.contactform textarea:focus {
    outline: 0;
    box-shadow: 0 0 0 2px #000 inset;
}
.contactform input.name {
	width: 400px;
}
.contactform input.email {
	width: 400px;
}
.contactform input.button {
	margin: 0 10px;
}
.contactform .formButton {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
}
.contactform dl {
	font-size: 116%;
	font-weight: 700;
}
.contactform dt {
	float: left;
	margin: 0 0 2em 0;
	line-height: 1.5;
}
.contactform dd {
	margin: 0 0 2em 10em;
	line-height: 1.5;
}
@media screen and (max-width: 559px) {
.contactform {
	padding: 60px 20px;
}
.contactform h1 {
	font-size: 197%;
}
.contactform textarea {
    width: 90%;
}
.contactform dt {
	float: none;
	margin: 0 0 1em 0;
	line-height: 1.5;
}
.contactform dd {
	margin: 0 0 1em 0;
	line-height: 1.5;
}
}

/* footer
------------------------------------------------------------ */
.footer {
	padding: 90px 90px 0 90px;
	background: #090;
	color: #fff;
}
.footer h2 {
	margin: 0 0 .5em 0;
	font-size: 123.1%;
	line-height: 1.8;
/*	font-weight: 700;*/
	text-align: center;
}
.footer .mori {
	width: 70px;
}
.footer .logo {
	width: 200px;
	margin: 0 0 0 10px;
}
.footer .logo img{

}
.footer address {
	margin: 0 0 2em 0;
	font-size: 108%;
	line-height: 1.8;
	text-align: center;
}
.copyright {
	padding: 0 0 1em 0;
	text-align: center;
	color: #fff;
}

/* SNS
------------------------------------------------------------ */
.snsList {
/*	width:100px;*/
	margin: 0 auto 2em 0;
/*	text-align: center;*/
}
/* ボタン全体 */
.flowbtn10{
display:inline-block;
font-size:35px;
text-decoration:none;
transition:.5s;
color:#fff;
}
a.flowbtn10 {
color:#fff;
}
.topSNS a.flowbtn10 {
color:#090;
}
/* インスタ・pocket・ラインだけ少し大きく */
.flowbtn10 .fa-instagram,.flowbtn10 .fa-get-pocket,.flowbtn10 .fa-get-pocket,.flowbtn10 .fa-line{
font-size:38px;
}
/* Twitterマウスホバー時 */
.flowbtn10 .fa-x-twitter:hover{
color:#000;
}
/* Instagramマウスホバー時 */
.flowbtn10 .fa-instagram:hover{
color:#c6529a;
}
/* Facebookマウスホバー時 */
.flowbtn10 .fa-facebook-f:hover{
color:#3b5998;
}
/* Feedlyマウスホバー時 */
.flowbtn10 .fa-rss:hover{
color:#6cc655;
}
/* Pocketマウスホバー時 */
.flowbtn10 .fa-get-pocket:hover{
color:#ef3f56;
}
/* はてブマウスホバー時 */
.flowbtn10 .fa-bold:hover{
color:#1ba5dc;	
}
/* YouTubeマウスホバー時 */
.flowbtn10 .fa-youtube:hover{
color:#fc0d1c;
}
/* LINEマウスホバー時 */
.flowbtn10 .fa-line:hover{
color:#00c300;
}
/* TikTokマウスホバー時 */
.flowbtn10 .fa-tiktok:hover{
color:#000;
}
/* メールアイコンマウスホバー時 */
.flowbtn10 .fa-envelope:hover{
color:#f3981d;		
}
/* ulタグの内側余白を０にする */
ul.snsbtniti {
padding:0!important;
}
/* アイコン全体の位置 */
.snsbtniti {
clear:both;
display:flex;
flex-flow:row wrap;
justify-content:center;	
}
/* アイコン同士の余白 */
.snsbtniti li {
flex:0 0 10%;
text-align:center!important;
}
@media screen and (max-width: 559px) {
/* アイコン同士の余白 */
.snsbtniti li {
flex:1;
text-align:center!important;
}
}


/* ページの先頭に戻る
------------------------------------------------------------ */
.gotop {
	clear: both;
	margin: 0 10px;
	text-align: right;
	font-size: 77%;
}
#pagetop {
    position: fixed;
    bottom: 10px;
    right: 10px;
	z-index: 100;
}


