@charset "UTF-8";
.sp-none {
  display: block;
}
.sp-block {
  display: none;
}
.sp-none-drawer {
  display: block;
}
.sp-block-drawer {
  display: none !important;
}
.sp-inline {
  display: none;
}
.pc-inline {
  display: inline;
}
@media screen and (max-width:1023px) {
  .sp-none-drawer {
    display: none;
  }
  .sp-block-drawer {
    display: block;
  }
}
@media screen and (max-width:767px) {
  .sp-none {
    display: none;
  }
  .sp-block {
    display: block;
  }
  .sp-inline {
    display: inline;
  }
  .pc-inline {
    display: none;
  }
}
body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}
.post-area {
  font-size: 2.0rem;
  line-height: 2em;
}
.post-area h1, .post-area h2, .post-area h3, .post-area h4 {}
@media screen and (max-width:1023px) {
  header, .footer-copyright {
    width: 96%;
    margin: 0 2%;
  }
}
header {
  position: fixed;
  width: calc(100% - 20px);
  top: 10px;
  left: 10px;
  margin: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  z-index: 2;
}
#header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  line-height: 100px;
  padding: 0 25px;
  border-radius: 3px;
  box-shadow: 3px 3px 6px 2px rgba(0, 0, 0, 0.5);
}
#header-logo {
  width: 380px;
  line-height: 100px;
  margin: 0;
}
.header-fb {
  margin: 0;
  font-size: 100%;
}
#header-logo a, .header-fb a {
  display: block;
}
.header-fb img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
#header-logo img {
  width: auto;
  vertical-align: middle;
  max-height: 70px;
}
.header-contact {
  margin: 0 0 0 20px;
  font-size: 1.6rem;
  line-height: 1.6rem;
  white-space: nowrap;
}
.header-contact a {
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  border-radius: 3px;
}
header .nav-wrapper {
  width: 70%;
}
header nav.global ul {
  display: flex;
  justify-content: flex-end;
}
header nav.global ul li {
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  line-height: 100px;
  margin-right: 30px;
}
header nav.global ul li a {
  white-space: nowrap;
  display: block;
  text-decoration: none;
}
/* マウスオーバーで展開するサブメニュー部 */
header nav.global ul li ul {
  position: absolute;
  left: -30px;
}
header nav.global ul li ul li {
  display: block;
  width: auto;
  height: 50px;
  line-height: 50px;
  font-size: 1.6rem;
  padding: 0 15px;
  background-color: #fff;
  text-align: left;
}
header nav.global ul li ul li:last-child {
  height: 60px;
}
/* hoverでメニュー表示・非表示 */
header nav.global ul li ul {
  display: none;
}
header nav.global ul li:hover ul {
  display: block;
}
header nav.global a[href="#"] {
  pointer-events: none;
}
header .to-english {
  height: 35px;
  text-align: right;
  margin: 0;
}
header .to-english a {
  color: #fff;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
}
@media screen and (max-width:1201px) {
  header nav.global ul li {
    font-size: 1.4rem;
    margin-right: 20px;
  }
  header nav.global ul li ul li {
    min-width: 100%;
    font-size: 1.4rem;
    padding: 0 10px;
  }
}
@media screen and (max-width:1023px) {
  header {
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
  }
  #header-wrapper {
    height: 60px;
    line-height: 60px;
    border-radius: 0;
    margin: 0;
  }
  #header-logo {
    position: absolute;
    float: none;
    width: auto;
    height: 50px;
    line-height: 50px;
    left: 30px;
    z-index: 99;
  }
  #header-logo img {
    width: auto;
    height: 50px;
  }
  #header-logo a {}
  header nav.global {
    display: none;
  }
}
@media screen and (max-width:767px) {
  #header-logo {
    left: 10px;
    max-width: 220px;
  }
  #header-logo img {
    width: 100%;
    height: auto;
  }
}
#home .main-image-wrap {
	position: relative;
	width: 100%;
}
@media screen and (max-width:1023px) {
	#home .main-image-wrap {
	}
}
@media screen and (max-width:767px) {
	#home .main-image-wrap {
		height: 40vh;
		padding-right: 0;
		background-image: none;
    padding-top: 60px;
	}
}
#home #video2 {
	display: none;
}

#main-image {
  position: relative;
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -2;
}
#main-image h1 {
  z-index: 0;
  position: absolute;
  top: 250px;
  width: 100%;
  text-align: center;
  font-size: 3.2rem;
  line-height: 3.2rem;
}
#main-image::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/* パンくず */
.topic-path {
  margin: 5px 0 0;
  padding-top: 5px;
  text-align: right;
}
.topic-path ol, .topic-path ul {
  margin: 0 0 10px;
}
.topic-path li {
  display: inline;
  padding-left: 1em;
  font-size: 1.2rem;
}
.topic-path li::before {
  content: "＞";
  padding-right: 1em;
}
.topic-path li:first-child {
  padding-left: 0;
}
.topic-path li:first-child::before {
  content: "";
  padding-right: 0;
}
.topic-path li a {
  text-decoration: none;
}
@media screen and (max-width:767px) {
  .topic-path {
    display: none;
  }
}
/* メイン */
main {
  margin: 0;
  padding-bottom: 100px;
  background-image: url("../img/bg-contents.png");
  background-position: bottom center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media screen and (max-width:1023px) {
  main {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
@media screen and (max-width:767px) {
  main {
    margin: 0;
  }
}
#home main {
  margin: 120px 0;
  padding: 0;
  background-image: none;
}
.wrapper-class {
  margin: 0 120px;
  min-height: 1px;
}
@media screen and (max-width:1023px) {
  .wrapper-class {
    margin: 0 50px;
  }
}
@media screen and (max-width:767px) {
  .wrapper-class {
    margin: 0 2%;
  }
}
.wrapper-class:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
* html .wrapper-class {
  height: 1px;
  /*¥*/ /*/
	height: auto;
	overflow: hidden;
	/**/
}
/* サイドバーあり　テンプレート用 */
#wrapper.sidebar {
  display: flex;
  justify-content: space-between;
}
.sidebar main {
  width: 75%;
  margin-right: 5%;
}
.sidebar aside {
  width: 20%;
  min-width: 340px;
  margin: 60px 0;
}
@media screen and (max-width:1023px) {
  #wrapper.sidebar {
    display: block;
  }
  .sidebar main {
    width: 96%;
    margin: 40px 2% 0;
  }
  .sidebar aside {
    width: 96%;
    min-width: inherit;
    margin: 80px 2%;
  }
}
@media screen and (max-width:767px) {
  .sidebar aside {
    display: none;
  }
}
/* 共通スタイル */
a[id]::before {
  display: block;
  height: 100px;
  margin-top: -100px;
  content: "";
}
a[id]:hover {
  color: inherit;
}
@media screen and (max-width:1023px) {
  h2 a[id]::before {
    height: 0;
    margin-top: 0;
  }
}
h2 {
  margin: 120px 0 55px;
  padding-bottom: 0.5em;
  font-size: 3.4rem;
  line-height: 3.4rem;
  text-align: left;
  font-weight: 500;
}
.contents-area h2 {
  display: inline-block;
  margin: 120px 0 100px;
  padding: 0 1em 0.5em 0;
  font-size: 3.4rem;
  line-height: 4.4rem;
  text-align: left;
  font-weight: 500;
}
h3 {
  font-size: 2.6rem;
  line-height: 2.8rem;
  margin: 80px 0 40px;
  font-weight: 500;
}
h2 + h3 {
  margin-top: 0;
}
h4 {
  font-size: 2.4rem;
  line-height: 2.8rem;
  margin: 60px 0 20px;
  font-weight: 700;
}
h3 + h4 {
  margin-top: 30px;
}
h5 {
  font-size: 2.0rem;
  margin: 30px 0 15px;
}
p {
  font-size: 1.9rem;
  line-height: 3.5rem;
  margin-bottom: 2em;
}
.contents-area img {
  width: 100%;
  height: auto;
}
.contents-area > h3, .contents-area > h4, .contents-area > h5, .contents-area > p, .contents-area > table, .contents-area > ul, .contents-area > ol, .contents-area > dl, .contents-area > div, .contents-area > blockquote {
  margin-left: 180px;
}
.contents-area.no-space > h3, .contents-area.no-space > h4, .contents-area.no-space > h5, .contents-area.no-space > p, .contents-area.no-space > table, .contents-area.no-space > ul, .contents-area.no-space > ol, .contents-area.no-space > dl, .contents-area.no-space > div, .contents-area.no-space > blockquote {
  margin-left: 0;
}
@media screen and (max-width:1023px) {
  .contents-area h2 {
    margin: 50px 0 50px 0;
  }
  .contents-area > h3, .contents-area > h4, .contents-area > h5, .contents-area > p, .contents-area > table, .contents-area > ul, .contents-area > ol, .contents-area > dl, .contents-area > div, .contents-area > blockquote {
    margin-left: 100px;
  }
}
@media screen and (max-width:767px) {
  h2 {
    padding: 0 25px 25px 0;
    font-size: 2.8rem;
    line-height: 3.0rem;
    margin: 80px 0 35px 0;
  }
  .contents-area h2 {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0 0 35px 0;
    padding: 80px 0 10px 0;
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  h3 {
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin: 40px 0 15px;
  }
  h4 {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  p {
    font-size: 1.6rem;
    line-height: 1.8em;
  }
  .contents-area > h3, .contents-area > h4, .contents-area > h5, .contents-area > p, .contents-area > table, .contents-area > ul, .contents-area > ol, .contents-area > dl, .contents-area > div, .contents-area > blockquote {
    margin-left: 0;
  }
}
.table-like {
  font-size: 1.9rem;
}
@media screen and (max-width:767px) {
  .table-like {
    font-size: 1.6rem;
  }
}
.table-like dt {
  padding: 1.8rem 0;
  line-height: 3.0rem;
}
.table-like dd {
  line-height: 3.0rem;
  margin: -4.8rem 0 0 0;
  padding: 0 0 1.8rem 10em;
}
.table-like.yakuin dd {
  padding-left: 15em;
}
.kaihi {
  width: 50%;
}
@media screen and (max-width:1023px) {
  .kaihi {
    width: auto;
  }
}
.price {
  text-align: right;
}
.news {
  margin: 0 120px 100px;
  padding-top: 120px;
}
@media screen and (max-width:1023px) {
  .news {
    margin: 0;
    padding: 80px 2% 0;
  }
}
.news dl {
  margin: 0;
  padding: 0;
  font-size: 1.9rem;
  line-height: 3.0rem;
}
@media screen and (max-width:1023px) {
  .news dl {
    margin: 0 auto 30px;
    padding: 50px 30px 30px;
    font-size: 1.8rem;
  }
}
.news dl dt {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
}
.news dl dd {
  margin: -11.0rem 0 4rem 0;
  padding: 0 0 4rem 16rem;
}
.news dl dd a {
  text-decoration: underline;
}
.news dl dd .icon a,
.news dl dd .icon a:hover {
  text-decoration: none;
}
.news dl dd a:hover {
  text-decoration: underline;
}
@media screen and (max-width:767px) {
  .news dl {
    padding: 0;
  }
  .news dl dt {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  .news dl dd {
    margin: 0 0 40px 0;
    padding: 0 0 4rem 0;
  }
}
.news .btn-more {
  width: 40%;
  margin: 0 auto;
}
sup {
  vertical-align: super;
  font-size: 0.4em;
}
strong {
  font-weight: bold;
}
.note {
  margin: 20px 0;
  padding: 30px;
}
@media screen and (max-width:767px) {
  img {
    width: 100%;
    height: auto;
  }
}
.nowrap{
    white-space: nowrap;
}
table {
  width: calc(100% - 180px);
  border-collapse: collapse;
  font-size: 1.9rem;
    line-height: 2.4rem;
}
@media screen and (max-width:1023px) {
table {
  width: calc(100% - 100px);
}
}
@media screen and (max-width:767px) {
table {
  width: 100%;
}
}
table th, table td {
  padding: 10px 20px;
}
table th {
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
}
table td {
  text-align: center;
  vertical-align: middle;
}
table td.left {
  text-align: left;
}
table td.right {
  text-align: right;
}
table h3 {
  margin: 30px 0 10px 0;
}
.scroll {
    overflow-x: scroll;
}
.scroll table{
}
.scroll table th,
.scroll table td{
    white-space: nowrap;
}
.aligncenter {
  display: block;
  margin: 0 auto;
  width: auto !important;
  height: auto !important;
}
.alignleft {
  float: left;
  margin-right: 40px;
  width: auto !important;
  height: auto !important;
}
.alignright {
  float: right;
  margin-left: 40px;
  width: auto !important;
  height: auto !important;
}
.alignnone{
    display: block;
    margin: 0;
  width: auto !important;
  height: auto !important;
}
.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  margin-bottom: 30px;
}
.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media screen and (max-width:767px) {
  .alignleft {
    float: none;
    margin: 0 0 10px 0;
    width: 100% !important;
    height: auto;
  }
  .alignright {
    float: none;
    margin: 0 0 10px 0;
    width: 100% !important;
    height: auto;
  }
}
.kakomi {
  padding: 0 10px;
}
.red {
  color: #f00;
}
ul, ol {
  margin-left: 20px;
}
.bullet {
  list-style-type: disc;
}
.bullet li {
  margin-bottom: 0.3em;
  font-size: 1.9rem;
  margin-left: 20px;
  line-height: 3.5rem;
}
@media screen and (max-width:767px) {
  .bullet li {
    font-size: 1.6rem;
    line-height: 1.8em;
  }
}
.bullet-strong {
  list-style-type: square;
}
.bullet-strong li {
  margin-bottom: 0.8em;
}
.numeric {
  list-style-type: decimal;
}
.numeric li {
  margin-bottom: 0.8em;
  font-size: 1.9rem;
  margin-left: 20px;
  line-height: 3.5rem;
}
@media screen and (max-width:767px) {
  .numeric li {
    font-size: 1.6rem;
    line-height: 1.8em;
  }
}
.indent {
  margin-left: 2em;
}
.icons {
  margin-left: 0;
}
.icons li {
  display: inline-block;
  height: 4.5rem;
  padding: 1.3rem 10px;
  margin: 0 0 20px 0;
  border-radius: 3px !important;
  font-size: 1.6rem;
}
@media screen and (max-width:1023px) {
  .icons li {
    height: 4rem;
    padding: 10px 5px 5px;
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width:767px) {
  .icons li {
    height: 3rem;
    padding: 5px 5px 1px;
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}
.icons li img {
  width: 17px;
  height: 22px;
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 0px !important;
}
@media screen and (max-width:767px) {
  .icons li img {
    width: 11px;
    height: 16px;
  }
}
.pager {
  display: flex;
  margin: 50px auto;
  justify-content: center;
}
.pager li {
  font-size: 1.6rem;
  margin-right: 5px;
  padding: 0;
}
.pager li.current {
  font-weight: bold;
  padding: 5px 10px;
}
.pager li a {
  display: block;
  text-decoration: none;
  padding: 5px 10px;
}
@media screen and (max-width:767px) {
  .pager {
    margin: 30px auto;
  }
  .pager li {
    margin-right: 7px;
  }
}
.page-navi {
  display: flex;
  justify-content: space-between;
}
.icon {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 10px 0;
}
.icon li {
  margin-right: 10px;
  margin-bottom: 5px;
  padding: 2px 10px;
  text-align: center;
  font-size: 1.4rem;
}
.icon li a{
  display: block;
  text-decoration: none;
}
.news .icon li {
line-height: 1.8rem;
}
/* ボタン系 */
.btn {
  margin: 30px auto 0 auto;
  width: 300px;
  padding-bottom: 50px;
  text-align: center;
  font-weight: 400;
  font-size: 1.9rem;
}
.btn a {
  display: block;
  padding: 15px 10px;
  text-decoration: none;
  background-image: url("../img/arrow-right.png");
  background-position: 250px 50%;
  background-repeat: no-repeat;
}
.btn-back a {
  display: block;
  padding: 15px 10px;
  text-decoration: none;
  background-image: url("../img/arrow-left.png");
  background-position: 20px 50%;
  background-repeat: no-repeat;
}
/* 右バー用 */
aside {}
aside h3 {
  padding: 50px 0;
  font-weight: 600;
  font-size: 2.4rem;
  text-align: center;
}
aside ul {
  padding: 20px 30px;
}
aside li {
  padding: 30px 0;
  font-size: 2.3rem;
  font-weight: 600;
}
aside li a {
  text-decoration: none;
  font-weight: 600;
}
aside li.current_page_item a {
  font-weight: 800;
}
@media screen and (max-width:1023px) {
  aside h3 {
    padding: 20px 0;
  }
  aside li {
    padding: 20px 0;
  }
}
aside .widget {
  margin-bottom: 30px;
}
aside .widget h3 {
  padding: 20px 0;
  font-weight: 600;
  font-size: 2.4rem;
  text-align: center;
}
aside .widget ul {
  padding: 20px 30px;
}
aside .widget li {
  padding: 10px 0;
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 600;
}
aside .widget li .post-date {
  font-size: 1.6rem;
  font-weight: 400;
  margin-left: 10px;
}
aside .widget li a {
  text-decoration: none;
  font-weight: 600;
}
aside .widget p {
  padding: 20px 30px;
  font-size: 1.8rem;
  font-weight: 600;
}
.to-top {
  margin: -113px 0 0;
  text-align: right;
}
#home .to-top {}
@media screen and (max-width:767px) {
  .to-top {
    display: none;
  }
}
/* フッター */
.footer-wrapper {
  display: flex;
  margin: 0 auto;
  padding-top: 150px;
}
.footer-wrapper a {
  text-decoration: none;
}
.footer-info {
  padding-top: 80px;
  text-align: center;
}
.footer-info .address {
  margin: 40px 0 0;
}
.footer-info .tel {
  margin: 0;
}
.footer-navi {
  display: flex;
  justify-content: space-between;
  margin: 100px 0 50px;
  font-size: 1.9rem;
  font-weight: 300;
}
.footer-navi > nav {
  width: 30%;
}
.footer-navi ul {
  margin: 0;
}
.footer-navi ul li a {
  display: block;
  width: 100%;
  padding: 20px 0;
}
.footer-navi ul > li a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  transform: rotate(45deg);
}
.footer-navi ul li ul > li a {
  padding-left: 24px;
}
.footer-navi ul li ul > li a::before {
  content: "";
  display: none;
}
.footer-navi a {
  text-decoration: none;
}
.footer-navi a[href="#"] {
  pointer-events: none;
}
.copyright {
  margin: 0 auto;
  text-align: right;
  padding: 80px 0 30px;
  font-size: 1.6rem;
  font-weight: 300;
}
#footer-bar {
  display: none;
}
@media screen and (max-width:767px) {
  footer {
    background-image: none;
  }
  .footer-wrapper {
    display: block;
    padding: 50px 0 20px;
  }
  .footer-info img, footer .sns-icon img {
    width: inherit;
    max-width: 100%;
    height: auto;
  }
  .footer-navi {
    width: 96%;
    margin: 50px 2%;
    display: block;
  }
  .footer-navi nav {
    width: 100%;
  }
  .footer-navi ul > li {
    font-size: 1.8rem;
  }
  footer .sns-icon {
    text-align: center;
    margin-bottom: 30px;
  }
  .copyright {
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0 0 45px;
    font-size: 1.3rem;
  }
  #footer-bar {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  #footer-bar ul {
    display: flex;
    height: 38px;
    font-size: 1.6rem;
    margin: 0;
  }
  #footer-bar ul li {
    width: 50%;
    text-align: center;
  }
  #footer-bar ul li:last-child {
    width: 50%;
  }
  #footer-bar ul li img {
    width: 24px;
    height: auto;
    margin: 6px 5px 6px 0;
  }
  #footer-bar ul li:last-child img {
    width: 24px;
    height: 24px;
  }
  #footer-bar ul li a {
    display: block;
    line-height: 38px;
    text-decoration: none;
    width: 100%;
    height: 38px;
  }
}
/* home */
#home main {
  margin: 0;
}
.slide-wrap img {
  height: 100vh;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
  overflow: hidden;
}
@keyframes fadezoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.0);
  }
}
.slick-animation img {
  animation: fadezoom 12s 0s forwards;
}
.slick-prev {
  left: 20px !important;
  z-index: 100;
}
.slick-next {
  right: 20px !important;
  z-index: 100;
}
#home .main-image .text {
  position: absolute;
  bottom: 50px;
  left: 120px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
  color: #fff;
}
#home .main-image h2 {
  margin: 0;
  font-size: 3.8rem;
  line-height: 5.5rem;
  font-weight: 600;
}
#home .main-image p {
  margin: 0;
  padding-bottom: 20px;
  font-size: 2.1rem;
  line-height: 3.5rem;
  font-weight: 500;
}
@media screen and (max-width:1023px) {
  #home .main-image {
    background-position: none;
  }
  #home .main-image .main-wrapper {
    width: 100%;
    margin: 0;
  }
  #home .main-image .text {
    bottom: 20px;
    left: 80px;
    margin-right: 80px;
  }
}
@media screen and (max-width:767px) {
  #home .main-image {
    height: 400px;
  }
  .slide-wrap img {
    height: 400px;
  }
  #home .main-image .text {
    bottom: 40px;
    left: 40px;
    margin-right: 40px;
  }
  #home .main-image h2 {
    font-size: 3.2rem;
    line-height: 150%;
  }
}
#home .aboutus {
  background-image: url("../img/bg-aboutus.png");
  background-size: cover;
  background-repeat: repeat;
  background-position: 0 50%;
}
#home .aboutus .wrapper-class {
  display: flex;
  flex-direction: row-reverse;
}
#home .aboutus .text {
  width: 50%;
  min-width: 615px;
  font-weight: 300;
  padding: 180px 0;
}
#home .aboutus .text h3 {
  font-size: 3.4rem;
  line-height: 4.2rem;
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 2px solid #303030;
}
#home .aboutus .text .flags {
  margin-bottom: 80px;
}
#home .aboutus .text .btn {
  margin: 30px 0 0 auto;
}
@media screen and (max-width:767px) {
  #home .aboutus {
    background-position: -150px top;
  }
  #home .aboutus .wrapper-class {
    display: block;
  }
  #home .aboutus .text {
    width: 100%;
    min-width: inherit;
    padding: 80px 0;
  }
  #home .aboutus .text .flags img {
    width: inherit;
    height: auto;
  }
  #home .aboutus .text .btn {
    margin: 30px auto 0 auto;
  }
}
#home .news {
  margin: 0;
  padding: 100px 0;
}
#home .news h3 {
  display: inline-block;
  margin: 0;
  padding: 0 2.5em 20px 0;
}
#home .news dl {
  margin: 50px 0;
  padding: 50px 70px 30px 50px;
}
@media screen and (max-width:767px) {
  #home .news dl {
    padding: 50px 30px 30px 30px;
  }
}
#home .events {
  padding-bottom: 220px;
}
#home .events h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 320px;
  margin: 0;
  background-image: url("../img/bg-event.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#home .events h3 span {
  display: inline-block;
  padding: 0 20px 10px;
}
@media screen and (max-width:767px) {
  #home .events {
    padding-bottom: 50px;
  }
  #home .events h3 {
    height: 150px;
  }
}

#home .banner{
  padding-top: 100px;
}

#home .banner ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#home .banner ul li{
    width: 32%;
    margin-bottom: 20px;
}

@media screen and (max-width:1199px) {
  #home .banner ul li{
    width: 48%;
}
}


@media screen and (max-width:767px) {
  #home .banner ul li{
    width: 100%;
}
}

#home .banner ul li img{
  width: 100%;
  height: auto;
}

.events .events-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 0 0 80px;
  padding-top: 80px;
  flex-wrap: wrap;
}
.events .events-wrapper::after {
  content: "";
  display: block;
  width: 30%;
}
.events .event-thumb {
  width: 30%;
  margin-bottom: 30px;
}
.events .event-thumb img {
  width: 100%;
  height: auto;
}
.events .event-thumb h4 {
  margin: 20px 0 10px;
  font-size: 2.2rem;
  font-weight: 400;
}
.events .event-thumb .date, .events .event-thumb .comment {
  margin-bottom: 10px;
  line-height: 2.8rem;
  font-size: 1.6rem;
}
@media screen and (max-width:767px) {
  .events .events-wrapper {
    display: block;
    margin: 0 0 40px 0;
  }
  .events .event-thumb {
    width: 100%;
    margin-bottom: 60px;
  }
}
.finished {
  display: inline-block;
  border-radius: 3px;
  font-size: 1.4rem;
  margin-bottom: 10px;
  padding: 2px 10px;
  line-height: 1.9rem;
}
h2.event-title {
  margin-bottom: 10px;
}
.event-info {
  max-width: 80%;
  margin: 0 0 100px 0 !important;
}
.event-info .finished {
  display: inline-block;
}
@media screen and (max-width:1023px) {
  .event-info {
    max-width: 90%;
  }
}
@media screen and (max-width:767px) {
  .event-info {
    width: 100%;
    max-width: 100%;
    margin-bottom: 35px !important;
  }
}
.event-info .date {
  margin-bottom: 10px;
}
.event-info .finished {
  margin-bottom: 0;
}
.event-info .icon {
  margin-top: 0;
}
.members-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 80px;
}
.members-content .photo {
  margin-right: 50px;
}
.members-content .photo img {
  width: 200px;
  height: 300px;
}
.members-thumb {
  width: 21%;
  margin-bottom: 30px;
}
.members-thumb img {
  width: 100%;
  height: auto;
  max-width: 200px;
  max-height: 300px;
}
.members-thumb h4 {
  margin: 20px 0 10px;
  font-size: 2.2rem;
  font-weight: 400;
  max-width: 200px;
}
.members-thumb .comment {
  margin-bottom: 10px;
  line-height: 2.6rem;
  font-size: 1.5rem;
  max-width: 200px;
}
.members-content::before {
  content: "";
  display: block;
  width: 21%;
  order: 1;
}
.members-content::after {
  content: "";
  display: block;
  width: 21%;
}
@media screen and (max-width:767px) {
  .members-content .photo {
    margin-right: 20px;
  }
  .members-thumb {
    width: 100%;
    margin-bottom: 60px;
    text-align: center;
  }
  .members-thumb h4, .members-thumb .comment {
    margin-left: auto;
    margin-right: auto;
  }
  /*
#home .column {
  padding: 200px 0 120px;
}
#home .column ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 0 0 80px 0;
  font-size: 1.9rem;
  line-height: 3.2rem;
  font-family: 'Noto Sans JP', sans-serif;
}
#home .column li {
  width: 32%;
}
#home .column li .thumbnail {
  margin-bottom: 20px;
}
#home .column li img {
  width: 100%;
  height: auto;
}
#home .column li a {
  text-decoration: none !important;
}
*/
  @media screen and (max-width:1023px) {
    /*
  #home .column {
    padding: 100px 0 60px;
  }
  #home .column h3 {
    margin: 0 auto 70px;
    text-align: center;
    font-size: 4.8rem;
  }
  #home .column ul {
    justify-content: space-around;
    margin-bottom: 40px;
  }
*/
  }
  @media screen and (max-width:767px) {
    /*
  #home .column {
    padding: 60px 0 40px;
  }
  #home .column h3 {
    margin: 0 auto 40px;
    font-size: 3.2rem;
  }
  #home .column ul {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  #home .column ul li {
    width: 96%;
    margin-bottom: 30px;
  }
*/
  }
  /* page */
  #main-image {
    position: relative;
    width: 100%;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -2;
  }
  #main-image h1 {
    z-index: 0;
    position: absolute;
    top: 250px;
    width: 100%;
    text-align: center;
    font-size: 3.2rem;
    line-height: 3.2rem;
  }
  #main-image h1 span {
    display: inline-block;
    padding: 0 1em 0.5em;
  }
  #main-image::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  #home #main-image::after {
    display: none;
  }
  @media screen and (max-width:1023px) {
    #main-image {}
    #main-image h1 {}
  }
  @media screen and (max-width:767px) {
    #main-image {
      height: 200px;
    }
    #main-image h1 {
      top: 100px;
      font-size: 2.5rem;
      line-height: inherit;
    }
  }
  .page-content {
    margin: 80px 0 180px;
  }
  @media screen and (max-width:767px) {
    .page-content {
      margin-bottom: 80px;
    }
  }
  /* 固定ページ */
  .page {
    padding-bottom: 180px;
  }
  @media screen and (max-width:767px) {
    .page {
      padding-bottom: 80px;
    }
  }
  /* 新着情報 */
  .news-date {
    margin: 100px 0 3.0rem;
  }
  @media screen and (max-width:767px) {
    .news-date {
      margin: 50px 0 3.0rem;
    }
  }
  .news-date + h2 {
    margin-top: 0;
  }
  .news-title {
    margin: -6.5rem 0 0 0;
    padding: 0 0 1rem 8em;
  }
  /* column */
  /*
.post-area.column h2 {
  margin-bottom: 10px;
}
.post-area.column .post-info {
  display: flex;
}
.post-area.column .post-info .tag {
  display: flex;
  margin-left: 30px;
}
.post-area.column .post-info .tag ul {
  margin: 0;
}
.post-area.column .post-info .tag ul li {
  display: inline;
  margin-right: 10px;
}
*/
  /* contact */
  #contact .table-like {
    font-size: 1.9rem;
  }
  @media screen and (max-width:767px) {
    #contact .table-like {
      font-size: 1.6rem;
    }
  }
  #contact .table-like dt {
    padding: 1.8rem 0;
    line-height: 3.0rem;
  }
  #contact .table-like dd {
    min-height: 4.8rem;
    line-height: 3.0rem;
    margin: -4.8rem 0 0 0;
    padding: 0 0 1.8rem 22em;
  }
  @media screen and (max-width:1023px) {
    #contact .table-like dd {
      margin: 0 0 0 0;
      padding: 0 0 1.8rem 0;
    }
  }
  #contact .must {
    margin-right: 10px;
    padding: 1px 5px;
    font-size: 1.4rem;
    color: #fff;
    background-color: #f00;
  }
  #contact .will {
    margin-right: 10px;
    padding: 1px 5px;
    font-size: 1.4rem;
    color: #fff;
    background-color: #666;
  }
  main .table-like input {
    height: 2.4rem;
  }
  #contact input[type="submit"] {
    width: 60%;
    height: 80px;
    margin: 40px 20% 20px;
    text-decoration: none;
    font-size: 2.4rem;
    line-height: 80px;
    text-align: center;
    background-image: url("../img/arrow-right.png");
    background-position: top 50% right 20px;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.40);
    border: 1px solid #fff;
    border-radius: 3px;
    cursor: pointer;
  }
  #contact input.back {
    width: 40%;
    height: 50px;
    line-height: 50px;
    font-size: 1.8rem;
    background-image: none;
    cursor: pointer;
  }
  @media screen and (max-width:1023px) {
    .table-like input[type="text"], .table-like input[type="email"], .table-like textarea {
      width: 100%;
    }
    .table-like input.zip {
      width: auto;
    }
    #contact input[type="submit"] {
      width: 80%;
      font-size: 1.8rem;
      background-size: 30px;
    }
  }
  .privacy {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 1.5rem;
    line-height: 2.4rem;
    }