@charset "UTF-8";
/*
SC Theme
Version: 1.0 (23.8.1)
*/
:root {
  /* カラー設定 ==========*/
  --main-color: #4a558e;
  /* メインカラー */
  --sub-color: #64B2CD;
  /* サブカラー */
  --base-color: #D9EEEC;
  /* ベースカラー */
  --accent-color: #DA9833;
  /* アクセントカラー */
  --menu1-color: #c36775;
  /* 1つ目のメニュー見出し */
  --menu1-bkcolor: #fef5f5;
  /* 1つ目のメニュー背景 */
  --menu2-color: #2e90a5;
  /* 2つ目のメニュー見出し */
  --menu2-bkcolor: #f7f9fa;
  /* 2つ目のメニュー背景 */
  --menu3-color: #4a558e;
  /* 3つ目のメニュー見出し */
  --menu3-bkcolor: #f7f7fa;
  /* 3つ目のメニュー背景 */
  --menu4-color: #638d28;
  /* 4つ目のメニュー見出し */
  --menu4-bkcolor: #f6f8f1;
  /* 4つ目のメニュー背景 */
  --menu5-color: #c97735;
  /* 5つ目のメニュー見出し */
  --menu5-bkcolor: #fcf7f1;
  /* 5つ目のメニュー背景 */
  --menu6-color: #4a558e;
  /* 6つ目のメニュー見出し */
  --menu6-bkcolor: #f7f7fa;
  /* 6つ目のメニュー背景 */
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
//  font-size: 62.5%;
  font-size: 70%;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'IBM Plex Sans JP', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  color: #333;
//  font-size: 1.6rem;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  body {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
@media (min-width: 992px) {
  body {
//    font-size: 1.8rem;
    font-size: 2.0rem;
  }
}
body.open {
  overflow-y: hidden;
}

a {
  text-decoration: none;
  color: #333;
}

dl, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol {
  list-style: decimal-leading-zero;
}

p {
  margin: 0;
  text-align: justify;
}

img {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-family: inherit;
  font-weight: 500;
  color: inherit;
}

h1 {
//  font-size: 36px;
  font-size: 180%;
  font-size: calc(2.4rem + ((1vw - 0.64rem) * 2.1429));
  line-height: 1.5;
}

h2 {
//  font-size: 24px;
  font-size: 150%;
  font-size: calc(2rem + ((1vw - 0.64rem) * 0.7143));
  line-height: 1.5;
}

h3 {
//  font-size: 20px;
  font-size: 130%;
  font-size: calc(2rem + ((1vw - 0.64rem) * 0.7143));
  line-height: 1.5;
}

h4, h5 {
//  font-size: 18px;
  font-size: 110%;
  font-size: calc(1.8rem + ((1vw - 0.64rem) * 0.7143));
	line-height: 1.5;
	font-weight: bold !important;
}


.modal-content h5 {
  margin-top: 30px;
}

@media (max-width: 768px) {
  body {
    line-height: 2;
  }

  h1 {
//    font-size: 2.4rem;
    font-size: 160%;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4, h5 {
//	font-size: 1.8rem;
	font-size: 120%;
	font-weight: bold;
  }
}
@media (min-width: 992px) {
  h1 {
//    font-size: 3.6rem;
    font-size: 180%;
  }

  h2 {
    font-size: 2.4rem;
  }

  h3 {
    font-size: 2.2rem;
  }

  h4, h5 {
//    font-size: 2rem;
	font-size: 140%;
		font-weight: bold;
	}
}
#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#wrapper footer {
  margin-top: auto;
}

.inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .inner {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 1165px) {
  .inner {
    width: auto;
    margin: auto 25px;
  }
}

ul.list li, ul.disc li, ul.decimal li, ul.decimal-zero li, ul.span1 li, ul.span2 li {
  position: relative;
  margin-left: 1.5em;
}
ul.disc {
  list-style-type: disc;
}
ul.decimal {
  list-style-type: decimal;
}
ul.decimal-zero {
  list-style-type: decimal-leading-zero;
}
ul.decimal-zero li {
  margin-left: 1.9em;
}
ul.span1 li span:first-child {
  position: absolute;
  left: -1.2em;
}
ul.span2 li {
  position: relative;
  margin-left: 2em;
}
ul.span2 li span:first-child {
  position: absolute;
  left: -1.8em;
}

/* ヘッダー============ */
header {
  position: relative;
}
header > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  position: relative;
  z-index: 99;
  width: 100%;
  max-width: 400px;
}

.rightarea {
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 400px);
    padding-right: 145px;
    height: 80px;
}
.headmenu a {
  display: inline-block;
  background: #ddd;
  padding: 3px 10px 0;
  color: #fff;
}
.contact a.mail {
  display: inline-block;
  width: 100%;
  max-width: 150px;
}
.contact p {
  margin-top: 5px;
  font-size: 0.9em;
  line-height: 130%;
}

#font-change {
  /*margin-top: 5px;
  margin-right: 5px;*/
    width: 145px;
    margin: 10px auto;
}
@media (min-width: 950px) {
    #font-change {
        color: #333;
        position: absolute;
        top: -90px;
        right: 0;
        margin: 0;
    }
}
@media (min-width: 1141px) {
    #font-change {
        right: calc(50% - (1140px / 2));
    }
}
@media (min-width: 950px) and (max-width: 1165px) {
    #font-change {
        margin-right: 25px;
    }
}
#font-change p {
  font-size: 2.0rem;
  text-align: center;
  font-weight: bold;
}
#font-change ul {
  display: flex;
  justify-content: center;
  /*padding-right: 5px;*/
    margin: 0 auto;
}
#font-change ul li {
  background: #efefef;
  border-radius: 50px;
  font-size: 2.0rem;
  font-weight: bold;
  width: 35px;
  height: 35px;
  line-height: 38px;
  text-align: center;
  margin: 0 2px;
  cursor: pointer;
}
#font-change ul li.active {
  background: var(--main-color);
  color: #fff;
}

@media (max-width: 949px) {
  header {
    background: #fff;
    height: 61px;
    border-bottom: 2px solid var(--main-color);
  }

  .logo {
    width: 100%;
    max-width: 230px;
  }

  .rightarea {
    display: none;
  }

  #navbtn {
    position: absolute;
    top: 20px;
    right: 15px;
    z-index: 999;
    width: 30px;
    height: 25px;
    cursor: pointer;
  }
  #navbtn span {
    position: absolute;
    top: 10px;
    display: block;
    width: 30px;
    height: 3px;
    background: #333;
    transition: .3s ease;
  }
  #navbtn span::before, #navbtn span:after {
    position: absolute;
    top: -10px;
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: #333;
  }
  #navbtn span::after {
    top: 10px;
  }
  #navbtn.open span {
    transition: .2s ease-out;
    transform: rotate(180deg);
    background: rgba(255, 255, 255, 0);
  }
  #navbtn.open span::before, #navbtn.open span:after {
    opacity: 1;
    transform: rotate(45deg);
    top: 0;
  }
  #navbtn.open span::after {
    transform: rotate(-45deg);
  }
}
#headnav {
  position: relative;
  z-index: 999;
  transition: .1s ease-out;
}
@media (max-width: 949px) {
  #headnav {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 61px;
    width: 100%;
    height: calc(100vh - 61px);
    overflow-y: scroll;
    background: #fff;
    border-top: 1px solid #ddd;
  }
  #headnav ul {
    margin: 0;
    padding: 0;
  }
  #headnav ul li a {
    display: block;
    width: 100%;
    padding: 10px 20px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    color: var(--main-color);
  }
  #headnav ul li a img {
    display: none;
  }
  #headnav ul li ul li {
    font-weight: normal;
  }
  #headnav ul li ul li a {
    font-weight: normal;
    padding-left: 30px;
  }
  #headnav ul li ul li a::before {
    content: '›';
    margin-right: 10px;
    color: var(--main-color);
  }
  #headnav.open {
    visibility: inherit;
    opacity: 1;
  }
    #headnav ul#headnavUL {
        border-top: 1px solid #ddd;
    }
}
@media (min-width: 950px) {
  #headnav {
    color: #fff;
  }
  #headnav ul#headnavUL {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    position: relative;
    align-items: stretch;
  }
  #headnav ul#headnavUL > li {
    background: #e6e6e6;
    margin-right: 5px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
  }
  #headnav ul#headnavUL > li:last-child {
    margin-right: 0;
  }
  #headnav ul#headnavUL > li a {
    position: relative;
    z-index: 2;
    color: var(--main-color);
    display: block;
    height: 100%;
    white-space: nowrap;
    line-height: 50px;
    padding: 3px 5px 1px;
    overflow: hidden;
//    font-size: 1.4rem;
    font-size: 70%;
    font-weight: bold;
  }
  #headnav ul#headnavUL > li a:hover {
    background: #f5f5f5;
    color: #333;
  }
  #headnav ul#headnavUL > li a img {
    height: 2.2em;
    margin-bottom: .5em;
    margin-right: .5em;
  }
  #headnav ul#headnavUL > li.current > a {
    background: var(--main-color);
    color: #fff;
  }
  #headnav ul#headnavUL > li ul {
    position: absolute;
    z-index: 1;
    background: #fff;
    margin-top: 54px;
    top: -10px;
    border-radius: 0 0px 3px 3px;
    text-align: left;
    visibility: collapse;
    opacity: 0;
    transition: .1s ease-out;
    border: 1px solid #f5f5f5;
  }
  #headnav ul#headnavUL > li ul li {
    border: 1px solid #f5f5f5;
  }
  #headnav ul#headnavUL > li ul li a {
    min-width: 200px;
    padding: 0 15px;
    white-space: nowrap;
    font-weight: normal;
    color: #333;
  }
  #headnav ul#headnavUL > li a:hover + ul, #headnav ul#headnavUL > li ul:hover {
    top: 0;
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 950px) and (max-width: 1240px) {
  #headnav ul#headnavUL > li:last-child ul {
    right: 0;
  }
}
@media (min-width: 950px) {
  #headnav ul#headnavUL > li.kaiin a {
    background: #c97735;
    color: #fff;
  }
  #headnav ul#headnavUL.navcol1 > li {
    width: calc(100% / 1);
  }
  #headnav ul#headnavUL.navcol2 > li {
    width: calc(100% / 2);
  }
  #headnav ul#headnavUL.navcol3 > li {
    width: calc(100% / 3);
  }
  #headnav ul#headnavUL.navcol4 > li {
    width: calc(100% / 4);
  }
  #headnav ul#headnavUL.navcol5 > li {
    width: calc(100% / 5);
  }
  #headnav ul#headnavUL.navcol6 > li {
    width: calc(100% / 6);
  }
  #headnav ul#headnavUL.navcol7 > li {
    width: calc(100% / 7);
  }
  #headnav ul#headnavUL.navcol8 > li {
    width: calc(100% / 8);
  }
  #headnav ul#headnavUL.navcol9 > li {
    width: calc(100% / 9);
  }
  #headnav ul#headnavUL.navcol10 > li {
    width: calc(100% / 10);
  }
}

/* トップ画像============ */
.carousel-inner {
  max-width: 1140px;
  margin: auto;
}

.main-img {
  width: 100%;
  margin: 0 0 50px;
  opacity: 0;
  transition: opacity .1s linear;
}
.main-img img {
  width: 100%;
  height: auto;
}
.main-img.slick-initialized {
  opacity: 1;
}
.main-img .slick-next {
  right: 20px;
  z-index: 99;
}
.main-img .slick-prev {
  left: 15px;
  z-index: 100;
}

/* コンテンツ============ */
main, .main {
  display: block;
  padding-top: 50px;
  padding-bottom: 4em;
}

.main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  margin: auto;
}
@media (max-width: 1165px) {
  .main {
    width: auto;
    margin: auto 10px;
  }
}

aside.main-side {
  width: 100%;
}
@media (min-width: 768px) {
  aside.main-side {
    width: 230px;
    order: 1;
  }
}
@media (min-width: 992px) {
  aside.main-side {
    width: 280px;
  }
}
aside.main-side p {
  margin-bottom: 20px;
}
aside.main-side .sidemenu {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
aside.main-side .sidemenu h2 {
  background: #ccc;
  padding: 17px 20px 13px;
  color: #fff;
  margin-bottom: 0;
  border-radius: 10px 10px 0 0;
}
@media (min-width: 768px) {
  aside.main-side .sidemenu h2 {
    border-radius: 0;
    margin-bottom: 3px;
  }
}
aside.main-side .sidemenu h2 img {
  height: 1em;
  margin-bottom: .36em;
  margin-right: .3em;
}
aside.main-side .sidemenu div {
  margin-bottom: 15px;
  padding: 15px 40px 15px 20px;
}
aside.main-side .sidemenu ul {
  margin-bottom: 15px;
}
aside.main-side .sidemenu ul li {
  margin-bottom: 2px;
}
aside.main-side .sidemenu ul li a {
  display: block;
  position: relative;
  background: #eee;
  font-weight: bold;
  font-size: 0.9em;
  padding: 17px 40px 13px 20px;
}
aside.main-side .sidemenu ul li a::after {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%) scaleY(0.7);
  font-size: 5rem;
  font-family: 'Material Icons';
  content: '\e5df';
}
aside.main-side .sidemenu ul li a:hover {
  background: #eee;
}
aside.main-side .sidemenu ul li:last-child a {
  border-radius: 0 0 10px 10px;
}
aside.main-side .sidemenu:nth-of-type(1) h2 {
  background: var(--menu1-color);
}
aside.main-side .sidemenu:nth-of-type(1) ul a {
  background: var(--menu1-bkcolor);
}
aside.main-side .sidemenu:nth-of-type(1) ul a::after {
  color: var(--menu1-color);
}
aside.main-side .sidemenu:nth-of-type(1) div {
  background: var(--menu1-bkcolor);
}
aside.main-side .sidemenu:nth-of-type(2) h2 {
  background: var(--menu2-color);
}
aside.main-side .sidemenu:nth-of-type(2) ul a {
  background: var(--menu2-bkcolor);
}
aside.main-side .sidemenu:nth-of-type(2) ul a::after {
  color: var(--menu2-color);
}
aside.main-side .sidemenu:nth-of-type(2) div {
  background: var(--menu2-bkcolor);
}
aside.main-side .sidemenu:nth-of-type(3) h2 {
  background: var(--menu3-color);
}
aside.main-side .sidemenu:nth-of-type(3) ul a {
  background: var(--menu3-bkcolor);
}
aside.main-side .sidemenu:nth-of-type(3) ul a::after {
  color: var(--menu3-color);
}
aside.main-side .sidemenu:nth-of-type(3) div {
  background: var(--menu3-bkcolor);
}
aside.main-side .sidemenu:nth-of-type(4) h2 {
  background: var(--menu4-color);
}
aside.main-side .sidemenu:nth-of-type(4) ul a {
  background: var(--menu4-bkcolor);
}
aside.main-side .sidemenu:nth-of-type(4) ul a::after {
  color: var(--menu4-color);
}
aside.main-side .sidemenu:nth-of-type(4) div {
  background: var(--menu4-bkcolor);
}
aside.main-side .sidemenu:nth-of-type(5) h2 {
  background: var(--menu5-color);
}
aside.main-side .sidemenu:nth-of-type(5) ul a {
  background: var(--menu5-bkcolor);
}
aside.main-side .sidemenu:nth-of-type(5) ul a::after {
  color: var(--menu5-color);
}
aside.main-side .sidemenu:nth-of-type(5) div {
  background: var(--menu5-bkcolor);
}
aside.main-side .sidemenu:nth-of-type(6) h2 {
  background: var(--menu6-color);
}
aside.main-side .sidemenu:nth-of-type(6) ul a {
  background: var(--menu6-bkcolor);
}
aside.main-side .sidemenu:nth-of-type(6) ul a::after {
  color: var(--menu6-color);
}
aside.main-side .sidemenu:nth-of-type(6) div {
  background: var(--menu6-bkcolor);
}

.frontpage,
.content {
  width: 100%;
}
.frontpage section,
.content section {
  margin-bottom: 60px;
}
.frontpage h1,
.content h1 {
  position: relative;
  font-size: 1.8em;
  margin-bottom: 50px;
}
.frontpage h2,
.content h2 {
  margin-bottom: 40px;
}
.frontpage h3,
.content h3 {
  margin-bottom: 20px;
}
.frontpage p,
.content p {
  margin-bottom: 30px;
}

.content {
  overflow: hidden;
}
.content h1 {
  font-size: 1.6em;
  padding: 13px 20px 7px;
  color: #fff;
  border-radius: 10px;
}
.content h2 {
  position: relative;
  border-bottom: 2px dashed;
  padding: 5px 0;
  font-weight: bold;
  margin-bottom: 20px;
}
.content h3 {
 /* border-left: 8px double;
  padding-left: 15px; */
  line-height: 100%;
  font-weight: bold;
  margin-bottom: 20px;
}
.content h3.subttl,
.content h4.subttl{
    margin-bottom: 10px;
}
.content h3.subttl::before,
.content h4.subttl::before{
	display:inline-block;
	position: relative;
	content:'●';
	color: var(--menu2-color);
	font-size: 0.6em;
	bottom: 3px;
	padding-right: 10px;
}
.content a {
  text-decoration: underline;
}
.content a.btn{
  text-decoration: none;
}
.content ul, .content ol {
  list-style: disc;
  padding-left: 23px;
  margin-bottom: 20px;
}
.content section, .content p {
  margin-right: 20px;
  margin-left: 20px;
}
@media (max-width: 1165px) {
  .content section, .content p {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.content section p {
  margin-right: 0;
  margin-left: 0;
}

.top-info {
  background: #fff;
}
@media (min-width: 768px) {
  .top-info {
    padding: 40px;
    background: #f5f6f6;
  }
}
.top-info section {
  margin-bottom: 40px;
}
.top-info h2 {
  font-weight: bold;
  border-bottom: 1px solid #4a558e;
  padding: 0 15px 20px;
  margin-bottom: 0;
}
.top-info ul {
  list-style: none;
  padding-left: 0;
}
.top-info ul li {
  position: relative;
  border-bottom: 1px solid #9fa0a0;
  padding: 15px;
}
.top-info ul li a.cat {
  display: inline-block;
  position: relative;
  bottom: 1px;
  width: 80px;
  background: #ddd;
  font-size: 0.8em;
  padding: 0 10px;
  text-align: center;
  margin-right: 15px;
}
.top-info ul li span {
  display: block;
  width: 100%;
  margin-right: 30px;
}
.top-info ul li a {
  display: inline-block;
}
.top-info > p {
  padding-top: 15px;
  text-align: right;
}

.top-menu h2 {
  position: relative;
  background: #ddd;
  color: #fff;
  padding: 17px 20px 13px;
  border-radius: 10px;
}
.top-menu h2 img {
  height: 1.1em;
  margin-bottom: .36em;
  margin-right: .5em;
}
.top-menu h3 {
  font-weight: bold;
  padding: 20px 20px 0;
  margin-bottom: 0;
}
.top-menu p {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .top-menu p {
    padding: 20px;
  }
}
.top-menu ul {
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  list-style: none;
}
@media (min-width: 768px) {
  .top-menu ul {
    display: flex;
  }
}
.top-menu ul li {
  width: 100%;
  margin-bottom: .5%;
}
@media (min-width: 768px) {
  .top-menu ul li {
    width: 49.7%;
  }
}
@media (min-width: 992px) {
  .top-menu ul li {
    width: 33%;
  }
}
.top-menu ul li a {
  text-decoration: none;
  position: relative;
  display: block;
  height: 100%;
  background: #eee;
  padding: 22px 20px 18px;
  font-weight: bold;
  padding-right: 30px;
}
.top-menu ul li a::after {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%) scaleY(0.7);
  font-size: 5rem;
  font-family: 'Material Icons';
  content: '\e5df';
}
.top-menu ul:last-of-type::after {
  display: block;
  content: '';
  width: 33%;
}
.top-menu section:nth-child(1) h2 {
  background: var(--menu1-color);
}
.top-menu section:nth-child(1) ul a {
  background: var(--menu1-bkcolor);
}
.top-menu section:nth-child(1) ul a::after {
  color: var(--menu1-color);
}
.top-menu section:nth-child(2) h2 {
  background: var(--menu2-color);
}
.top-menu section:nth-child(2) ul a {
  background: var(--menu2-bkcolor);
}
.top-menu section:nth-child(2) ul a::after {
  color: var(--menu2-color);
}
.top-menu section:nth-child(3) h2 {
  background: var(--menu3-color);
}
.top-menu section:nth-child(3) ul a {
  background: var(--menu3-bkcolor);
}
.top-menu section:nth-child(3) ul a::after {
  color: var(--menu3-color);
}
.top-menu section:nth-child(4) h2 {
  background: var(--menu4-color);
}
.top-menu section:nth-child(4) ul a {
  background: var(--menu4-bkcolor);
}
.top-menu section:nth-child(4) ul a::after {
  color: var(--menu4-color);
}
.top-menu section:nth-child(5) h2 {
  background: var(--menu5-color);
}
.top-menu section:nth-child(5) ul a {
  background: var(--menu5-bkcolor);
}
.top-menu section:nth-child(5) ul a::after {
  color: var(--menu5-color);
}
.top-menu section:nth-child(6) h2 {
  background: var(--menu6-color);
}
.top-menu section:nth-child(6) ul a {
  background: var(--menu6-bkcolor);
}
.top-menu section:nth-child(6) ul a::after {
  color: var(--menu6-color);
}
.top-menu section ul a:hover {
  background: #eee;
}
.top-menu ul.map-link li {
  width: 100%;
}

.access-map {
  position: relative;
}
.access-map p {
  display: block;
  width: 100%;
  padding: 0;
}
.access-map svg {
  position: absolute;
  top: 0;
}

/* Q&A============ */
.faq h2 {
  position: relative;
  border: none;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
}
.faq h2 i {
  display: inline-block;
  font-size: 1.3em;
}
.faq dl {
  display: none;
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #999;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 4px -2px rgba(0, 0, 0, 0.28);
          box-shadow: 2px 2px 4px -2px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
}
.faq dl dt {
  border-left: none;
  line-height: 1.5;
  font-size: 1.2em;
  padding: 15px 45px 15px 45px;
}
.faq dl dt::before {
  position: absolute;
  left: 15px;
  /*content: 'Q. ';*/
  color: #dd1a1a;
}
.faq dl dt::after {
  position: absolute;
  content: '＋';
  height: 30px;
  width: 30px;
  line-height: 32px;
  background: rgba(230, 31, 31, 0.87);
  color: #fff;
  text-align: center;
  border-radius: 100px;
  right: 15px;
  top: 15px;
  -webkit-transition: .2s;
  transition: .2s;
}
.faq dl dd {
  position: relative;
  padding: 25px 20px 25px 50px;
  margin-bottom: 0;
  display: none;
}
.faq dl.open {
  -webkit-transition: .2s;
  transition: .2s;
}
.faq dl.open dt::after {
  content: 'ー';
  background: #999;
}
.faq dl.open dd {
  border-top: 1px solid #999;
  display: block;
}
.faq.open h2 i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq.open dl {
  display: block;
}

/* 会報============ */
.kaiho a{
	display:inline-block;
    margin: 5px;
}
.kaiho a img{ 
	-webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.28);
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.28);
}
.kaiho a img:hover{
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.28);
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.28);
}

/* サイトマップ============ */
.sitemap div {
  margin-bottom: 30px;
  padding: 15px 25px;
}
.sitemap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 0;
}
.sitemap ul li {
  list-style: none;
  min-width: 49%;
  margin-bottom: 10px;
}
.sitemap ul li a {
  display: block;
  width: 100%;
  border: 1px solid #666;
  padding: 10px 15px;
  text-decoration: none;
  line-height: 100%;
}

/* フッター============ */
footer {
  background: var(--main-color);
  color: #ededed;
  padding: 60px 0 0;
  text-align: center;
}
footer h1 {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  footer h1 {
    font-size: 1.8em;
  }
}
footer section {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  footer section {
    padding-bottom: 40px;
  }
}
footer section ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer section ul li {
  padding: 10px 10px;
  margin-bottom: 40px;
}
footer section ul li h2 {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: 3px;
  text-align: left;
}
footer ul.footnav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  footer ul.footnav {
    justify-content: center;
  }
}
footer ul.footnav li {
  border-right: 1px solid #fff;
  padding: 0 15px;
  line-height: 100%;
  margin-bottom: 15px;
}
footer ul.footnav li a {
  font-size: 1.4rem;
  color: #ededed;
}
footer ul.footnav li:last-child {
  border-right: none;
}
footer .copyright {
  background: var(--main-color);
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  padding: 25px;
}
footer .copyright p {
  text-align: center;
}
footer .footcontent {
  padding: 25px;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

input, textarea, select {
  display: block;
  width: 100%;
  font-size: 100%;
  font-family: inherit;
}
input, select {
  height: 40px;
}

input[type=radio] {
  height: 15px;
}

.select select {
  width: 100%;
  cursor: pointer;
}
.select::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  display: inline-block;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #666666;
  pointer-events: none;
}

.radio input[type=radio] {
  display: none;
}
.radio input[type=radio] + label {
  display: inline-block;
  cursor: pointer;
  padding: .1em 1em;
  margin-right: 10px;
}

.check input[type=checkbox] {
  display: none;
}
.check input[type=checkbox] + label {
  padding: .3em .5em;
  cursor: pointer;
}
.check input[type=checkbox] + label::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: '\f111';
  margin-right: 5px;
}
.check input[type=checkbox]:checked + label::before {
  font-weight: 900;
  content: '\f058';
}

.form-control, .accordion-button {
  font-size: 1em !important;
}

img.alignright {
  display: block;
  margin: 0 0 0 auto;
}

img.alignleft {
  display: block;
  margin: 0 auto 0 0;
}

img.aligncenter {
  display: block;
  margin: 0 auto;
}


