@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");
/*スタイルリセット*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, figure { margin: 0; padding: 0; font-size: 100%; }

h1, h2, h3, h4, h5 { line-height: 1.2em; }

/* 変数
----------------------------------------------- */
body { font: 17px/1.8 "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif; vertical-align: baseline; font-style: normal; letter-spacing: normal; color: #302E2E; background: url(../img/mainbg_v5.jpg) center top; }

@media (max-width: 544px) { body { font: 15px/1.7 "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif; } }

.content-max { max-width: 1530px; margin: 0 auto; padding: 0 5%; }

@media (max-width: 768px) { .content-max { max-width: 90%; } }

.content { width: 1200px; margin: 0 auto; padding: 0 5%; }

@media (max-width: 768px) { .content { max-width: 90%; } }

.block-a { padding: 4.0rem 0; }

.block-a h2 { font-size: 2.0rem; font-weight: 700; text-align: center; margin: 0 0 1.8rem 0; }

.block-a h2 span { background: #FBFF1B; }

footer { text-align: center; }

/**/
a:link, a:visited, a:hover { color: #302E2E; text-decoration: none; }

.underline span { background: linear-gradient(transparent 40%, #FBFF1B 0); }

.img-r { float: right; padding: 1.8rem 0 3rem 3rem; }

.img-r img { width: 100%; height: auto; }

@media (max-width: 768px) { .img-r { float: none; display: block; margin: auto; padding: 2.0rem 0; } }

.img-l { float: left; padding: 1.8rem 3rem 3rem 0; }

@media (max-width: 768px) { .img-l { float: none; display: block; margin: auto; padding: 2.0rem 0; } }

.caution { font-size: 0.8em; }

.only-xl { display: block; }

@media (max-width: 768px) { .only-xl { display: none; } }

.only-md { display: none; }

@media (max-width: 768px) { .only-md { display: block; } }

table.style1 { max-width: 760px; margin: auto; }

table.style1 td, table.style1 th { padding: 1rem 1rem 1rem 1rem; border-bottom: dashed 1px rgba(48, 46, 46, 0.2); }

table.style1 th { white-space: nowrap; text-align: left; vertical-align: text-top; }

table.style1 td { padding-left: 3.0rem; }

@media (max-width: 768px) { table.style1 td, table.style1 th { padding: 0.4rem; border-bottom: none; display: block; }
  table.style1 th { padding-bottom: 0; }
  table.style1 td { padding-left: 1.0rem; padding-bottom: 1.6rem; border-bottom: dashed 1px rgba(48, 46, 46, 0.2); } }

/**/
/*.nav-menu{ display: none;}*/
#header { position: relative; z-index: 1000; /* トグルボタン */ }

#header h1 img { width: 200px; height: auto; padding: 18px 0 0 0; }

@media (max-width: 768px) { #header h1 img { width: 128px; height: auto; } }

#header .content-max { position: relative; display: flex; justify-content: space-between; padding: 16px 24px; }

#header .menu-container { position: absolute; top: 20px; right: 24px; z-index: 2000; }

#header .menu-toggle { position: relative; z-index: 2001; appearance: none; -webkit-appearance: none; background: transparent; border: 0; padding: 8px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }

#header .menu-toggle .hamburger { display: inline-block; width: 28px; height: 20px; position: relative; }

#header .menu-toggle .hamburger span { position: absolute; left: 0; right: 0; height: 2px; background: #302E2E; display: block; transform-origin: 50% 50%; transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease; }

#header .menu-toggle .hamburger span:nth-child(1) { top: 0; }

#header .menu-toggle .hamburger span:nth-child(2) { top: 9px; }

#header .menu-toggle .hamburger span:nth-child(3) { top: 18px; }

#header .menu-toggle.is-active .hamburger span:nth-child(1) { top: 9px; transform: rotate(45deg); }

#header .menu-toggle.is-active .hamburger span:nth-child(2) { opacity: 0; }

#header .menu-toggle.is-active .hamburger span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

#header .nav-menu { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1000; background: rgba(255, 255, 255, 0.96); transform: translateX(100%); opacity: 0; visibility: hidden; transition: transform 0.35s ease, opacity 0.35s ease, visibility 0s linear 0.35s; }

#header .nav-menu ul { list-style: none; margin: 0; padding: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 90vw; max-width: 560px; }

#header .nav-menu li + li { margin-top: 2.2rem; }

#header .nav-menu a { display: inline-block; color: #302E2E; text-decoration: none; line-height: 1.4; font-size: 1.6rem; font-weight: 600; }

#header .nav-menu a:hover, #header .nav-menu a:focus { text-decoration: underline; }

@media (max-width: 768px) { #header .nav-menu a { font-size: 1.5rem; } }

@media (max-width: 544px) { #header .nav-menu a { font-size: 1.3rem; } }

#header .nav-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; transition: transform 0.35s ease, opacity 0.35s ease; }

#header body.menu-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) { #header .menu-toggle .hamburger span, #header .nav-menu { transition: none; } }

/**/
#hero { text-align: center; min-height: 50vh; }

#hero p { font-size: 1.2rem; font-weight: 700; margin: 30% auto 0.6rem; }

#hero .sns-link { display: flex; justify-content: center; list-style: none; }

#hero .sns-link li { padding: 0 1rem; }

@media (max-width: 768px) { #hero { margin-top: 50vh; min-height: 20vh; } }

#story h2 { font-size: 2.4rem; }

#story p { max-width: 850px; text-align: center; font-size: 1.8rem; font-weight: 500; line-height: 2.2em; margin: 3.0em auto; }

#story p::before, #story p::after { content: ""; display: inline-block; width: 28px; height: 28px; position: relative; }

#story p::before { top: -1.0rem; left: -1.0rem; background: url("../img/kakko.png") no-repeat center center/contain; }

#story p::after { bottom: -2.0rem; right: -1.0rem; background: url("../img/kakko-toji.png") no-repeat center center/contain; }

@media (max-width: 768px) { #story h2 { font-size: 1.9rem; }
  #story p { font-size: 1.4rem; }
  #story p::before { float: left; left: 0; }
  #story p::after { float: right; right: 0; } }

#features h2 { margin: 4.0rem auto; width: max-content; }

#features ul { list-style: none; }

#features ul li { margin: 0 0 3rem 0; clear: both; padding: 0 2rem 4rem; }

#features h3 { font-size: 1.8rem; font-weight: 700; margin: 0 0 1.2rem; }

#features p { font-size: 1.1rem; }

@media (max-width: 768px) { #features h2 { line-height: 1.6em; }
  #features ul li { padding: 0 0 4rem; }
  #features ul li:last-child { padding-bottom: 0; }
  #features h3 { font-size: 6.3vw; text-align: center; }
  #features img { max-width: 100%; height: auto; } }

#gallery ul { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; }

#gallery ul li { list-style: none; line-height: 1.0em; }

#gallery ul li img { width: 100%; height: auto; }

@media (max-width: 768px) { #gallery ul { grid-template-columns: 1fr 1fr 1fr; grid-row-gap: 0; } }

#members ul { margin: 3.0rem auto; list-style: none; display: grid; grid-template-columns: 1fr 1fr 1fr; grid-column-gap: 6.0rem; }

#members .profile-p { border-radius: 50%; width: 130px; height: auto; display: block; margin: auto; }

#members h3 { text-align: center; margin: 1.0rem auto 0; }

#members p { margin: 1.6rem auto 1rem; }

#members ul.works { margin: 1.0rem auto; display: grid; grid-template-columns: 1fr 1fr 1fr; grid-column-gap: 0.6rem; }

#members ul.works li img { width: 100%; height: auto; }

@media (max-width: 768px) { #members ul { display: block; }
  #members ul li:first-child { margin-bottom: 3.0rem; }
  #members ul.works li:first-child { margin-bottom: 0.0rem; } }

.last-sns-icon { margin: 4.0rem auto; text-align: center; }

/*# sourceMappingURL=base02.map */