@charset "utf-8";

/*==========================================
 font
===========================================*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@200..900&display=swap');

html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  color: #3D3D3D;
}

/* link */
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
a { outline: none; text-decoration: none; }
a:link    { color: #3D3D3D; text-decoration: none; }
a:visited { color: #3D3D3D; text-decoration: underline; }
a:hover   { color: #3D3D3D; text-decoration: underline; }
a:active  { color: #3D3D3D; text-decoration: underline; }



/*==========================================
 body
===========================================*/

html {
  /* overflow: auto; */
}
body {
  background: #FFF;
  /* overflow: hidden;
	min-width: 1000px;
  -webkit-text-size-adjust: 100%; */
}
body.program {
  background: #3c3c3c;
}
body.overflow_hidden {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
}

/*==========================================
 画像切替
===========================================*/
/* PC、スマートフォン表示分岐 */
.pcView {
  display: block;
}
.spView {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pcView {
    display: none;
  }
  .spView {
    display: block;
  }
}

/*==========================================
 共通スクロールフェード
===========================================*/
/* 上下フェード */
.fade_off {
  opacity: 0;
  transform: translateY(100px);
  transition: all 2.0s ease;
}
.fade_on {
  opacity: 1;
  transform: translateY(0px);
}

/*==========================================
 マウスオーバー
===========================================*/
a.overBtn {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
a.overBtn::before {
  position: absolute;
  z-index: -1;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: all 0.3s ease;
}
a.overBtn.over::before {
  left: 0;
}

a.overBtn.typ01::before {
  background-color: #3d3a39 !important;
}
a.overBtn.typ01.over {
  color: #FFF !important;
}
a.overBtn.typ01.over:after {
  background-image: url("../img/icon11.svg") !important;
}

a.overBtn.typ02::before {
  background-color: #FFF !important;
}
a.overBtn.typ02.over {
  color: #3d3a39 !important;
}
a.overBtn.typ02.over:after {
  background-image: url("../img/icon13.svg") !important;
}

a.overBtn.typ03::before {
  background-color: #3d3a39 !important;
}
a.overBtn.typ03.over {
  color: #FFF !important;
}
a.overBtn.typ03.over:after {
  background-image: url("../img/icon14.svg") !important;
}

a.overBtn.typ04::before {
  background-color: #FFF !important;
}
a.overBtn.typ04.over {
  color: #3d3a39 !important;
}
a.overBtn.typ04.over:after {
  background-image: url("../img/icon09.svg") !important;
}
/*==========================================
 ヘッダーのスタイル
===========================================*/
header {
  z-index: 1000;
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  transition: all 0.8s ease;
}
header.up {
  top: 0;
}
header #header {
  width: 100%;
  height: 80px;
  /* background-color: #E6E600; */
  background-image: url("../img/header_bk.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0px 5px 15px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
body.top header #header {
  transform: translateY(-100px);
}
body.top header.view #header {
  transform: translateY(0px);
}
header #headerLogoArea {
  position: absolute;
  left: 80px;
  top: 0;
  transition: all 0.3s ease;
}
header #headerLogoArea h1 img {
  width: 305px;
  height: 80px;
}
@media only screen and (max-width: 767px) {
  header {
    height: 50px;
  }
  header.up {
    top: -60px;
  }
  header #header {
    height: 50px;
    background-image: url("../img/header_bk_sp.jpg");
  }
  body.top header #header {
  transform: translateY(-50px);
  }
  header #headerLogoArea {
    left: 20px;
  }
  body.top header #headerLogoArea {
    display: block;
  }
  header #headerLogoArea h1 img {
    width: auto;
    height: 50px;
  }
}

header #headerIcon {
  position: absolute;
  z-index: 2000;
  right: 50px;
  top: 25px;
  width: 50px;
  height: auto;
}
header #headerIcon .menu-trigger,
header #headerIcon .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
header #headerIcon .menu-trigger {
  position: relative;
  width: 50px;
  height: 29px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
header #headerIcon .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #3C3C3C;
}
body.mvType header #headerIcon .menu-trigger span,
header.downDesign header #headerIcon .menu-trigger span {
  background-color: #fff;
}
header #headerIcon .menu-trigger span:nth-of-type(1) {
  top: 0;
}
header #headerIcon .menu-trigger span:nth-of-type(2) {
  top: 13px;
}
header #headerIcon .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
header #headerIcon .menu-trigger span:nth-of-type(1) {
  animation: menu07-bar01 .75s forwards;
}
@keyframes menu07-bar01 {
  0% {
    transform: translateY(13px) rotate(45deg);
  }
  50% {
    transform: translateY(13px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
header #headerIcon .menu-trigger span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}
header #headerIcon .menu-trigger span:nth-of-type(3) {
  animation: menu07-bar03 .75s forwards;
}

@keyframes menu07-bar03 {
  0% {
    transform: translateY(-13px) rotate(-45deg);
  }
  50% {
    transform: translateY(-13px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
header #headerIcon .menu-trigger.active span {
  background-color: #3C3C3C;
}
body.mvType header #headerIcon .menu-trigger.active span,
header.downDesign header #headerIcon .menu-trigger.active span {
  background-color: #3C3C3C;
}

header #headerIcon .menu-trigger.active span:nth-of-type(1) {
  animation: active-menu07-bar01 .75s forwards;
}
@keyframes active-menu07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(13px) rotate(0);
  }
  100% {
    transform: translateY(13px) rotate(45deg);
  }
}
header #headerIcon .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
header #headerIcon .menu-trigger.active span:nth-of-type(3) {
  left: 0;
  right: auto;
  width: 100%;
  animation: active-menu07-bar03 .75s forwards;
}
@keyframes active-menu07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-13px) rotate(0);
  }
  100% {
    transform: translateY(-13px) rotate(-45deg);
  }
}
@media only screen and (max-width: 767px) {
  header #headerIcon {
    right: 25px;
    top: 17px;
    width: 25px;
  }
  header #headerIcon .menu-trigger {
    width: 25px;
    height: 16px;
  }
  @keyframes menu07-bar01 {
    0% {
      transform: translateY(7px) rotate(45deg);
    }
    50% {
      transform: translateY(7px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu07-bar03 {
    0% {
      transform: translateY(-7px) rotate(-45deg);
    }
    50% {
      transform: translateY(-7px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  header #headerIcon .menu-trigger span {
    height: 2px;
  }
  header #headerIcon .menu-trigger span:nth-of-type(2) {
    top: 7px;
  }
  @keyframes active-menu07-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(7px) rotate(0);
    }
    100% {
      transform: translateY(7px) rotate(45deg);
    }
  }
  @keyframes active-menu07-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-7px) rotate(0);
    }
    100% {
      transform: translateY(-7px) rotate(-45deg);
    }
  }
}

/*グローバルナビゲーション ////////////////////////////////// */
header #overay {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}
header #headerNavi_Sp {
  position: absolute;
  right: 0;
  top: -570px;
  display: block;
  width: 100%;
  height: 570px;
  background-color: rgba(255, 255, 255, 0.9);
}
header #headerNavi_Sp .naviArea {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding: 105px 30px 0;
  box-sizing: border-box;
}
@media only screen and (min-width: 1040px) and (max-width:10000px) {
  header #headerNavi_Sp .naviArea {
    width: 1000px;
  }
}
@media only screen and (max-width: 1040px) {
  header #headerNavi_Sp .naviArea {
    width: 100%;
    padding: 105px 20px 0;
  }
}
header #headerNavi_Sp .naviArea h1 img {
  width: 300px;
  height: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.0s ease;
}
header #headerNavi_Sp .naviArea.view h1 img {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.6s;
}
header #headerNavi_Sp .naviArea .naviMain {
  /* width: 640px; */
  /* width: 599px; */
  width: 420px;
  padding: 70px 0 0;
  border-bottom: 1px solid #3C3C3C;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.0s ease;
}
header #headerNavi_Sp .naviArea.view .naviMain {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.8s;
}
header #headerNavi_Sp .naviArea .naviMain ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
header #headerNavi_Sp .naviArea .naviMain ul li {
  padding: 0 40px 50px 0;
}
header #headerNavi_Sp .naviArea .naviMain ul li:nth-child(3),
header #headerNavi_Sp .naviArea .naviMain ul li:last-child {
  padding: 0 0 50px 0;
}
header #headerNavi_Sp .naviArea .naviMain ul li a {
  font-size: 2.0rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
header #headerNavi_Sp .naviArea .naviMain ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
header #headerNavi_Sp .naviArea .naviSub {
  width: 700px;
  padding: 50px 0 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.0s ease;
}
header #headerNavi_Sp .naviArea.view .naviSub {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.8s;
}
header #headerNavi_Sp .naviArea .naviSub ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
header #headerNavi_Sp .naviArea .naviSub ul li {
  padding: 0 60px 0 0;
}
header #headerNavi_Sp .naviArea .naviSub ul li a {
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
header #headerNavi_Sp .naviArea .naviSub ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
header #headerNavi_Sp .naviArea .naviSns {
  position: absolute;
  right: 30px;
  top: 250px;
  width: 250px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.0s ease;
}
header #headerNavi_Sp .naviArea.view .naviSns {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.8s;
}
header #headerNavi_Sp .naviArea .naviSns ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
header #headerNavi_Sp .naviArea .naviSns ul li {
  width: auto;
  height: 40px;
  padding: 0 30px 0 0;
}
header #headerNavi_Sp .naviArea .naviSns ul li img {
  width: auto;
  height: 40px;
}
header #headerNavi_Sp .naviArea .naviSearch {
  position: absolute;
  right: 30px;
  top: 331px;
  width: 250px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.0s ease;
}
header #headerNavi_Sp .naviArea.view .naviSearch {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.8s;
}
header #headerNavi_Sp .naviArea .naviSearch::before {
  position: absolute;
  right: 20px;
  top: 6px;
  width: 30px;
  height: 30px;
  background-image: url("../img/icon01.svg");
  background-size: cover;
  content: "";
}
header #headerNavi_Sp .naviArea .naviSearch input {
  width: 100%;
  height: 40px;
  padding: 20px 60px 20px 20px;
  box-sizing: border-box;
  border-radius: 30.23px;
  border: 1.55px solid var(--Gray, #3C3C3C);
  background: #D9D9D9;
  font-size: 2.0rem;
}
@media only screen and (max-width: 767px) {
  header #headerNavi_Sp {
    top: -700px;
    height: 700px;
  }
  header #headerNavi_Sp .naviArea {
    width: 223px;
    padding: 70px 0 0;
  }
  header #headerNavi_Sp .naviArea h1 img {
    width: 177px;
    height: auto;
  }
  header #headerNavi_Sp .naviArea .naviMain {
    width: 100%;
    padding: 40px 0 0;
  }
  header #headerNavi_Sp .naviArea .naviMain ul li {
    width: 100%;
    padding: 0 0 25px 0;
  }
  header #headerNavi_Sp .naviArea .naviMain ul li:nth-child(3) {
    padding: 0 0 25px 0;
  }
  header #headerNavi_Sp .naviArea .naviMain ul li:last-child {
    padding: 0 0 35px 0;
  }
  header #headerNavi_Sp .naviArea .naviMain ul li a {
    font-size: 1.6rem;
  }
  header #headerNavi_Sp .naviArea .naviSub {
    width: 100%;
    padding: 30px 0 0;
  }
  header #headerNavi_Sp .naviArea .naviSub ul li {
    width: 100%;
    padding: 0 0 30px 0;
  }
  header #headerNavi_Sp .naviArea .naviSub ul li a {
    font-size: 1.6rem;
  }
  header #headerNavi_Sp .naviArea .naviSns ul li img {
    width: 100%;
    height: 26px;
  }
  header #headerNavi_Sp .naviArea .naviSns {
    position: static;
    width: 80px;
    height: 26px;
    padding: 10px 0 0;
  }
  header #headerNavi_Sp .naviArea .naviSns ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  header #headerNavi_Sp .naviArea .naviSns ul li {
    width: auto;
    height: 26px;
    padding: 0;
  }
  header #headerNavi_Sp .naviArea .naviSns ul li img {
    width: auto;
    height: 100%;
  }
  header #headerNavi_Sp .naviArea .naviSearch {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    padding: 20px 0 0;
  }
  header #headerNavi_Sp .naviArea .naviSearch::before {
    top: 32px;
    width: 20px;
    height: 20px;
  }
  header #headerNavi_Sp .naviArea .naviSearch input {
    height: 44px;
    padding: 20px 40px 20px 20px;
    font-size: 1.8rem;
  }
}


/*==========================================
 フッターのスタイル
===========================================*/
#sponsorArea {
  width: 100%;
  margin: 100px 0 0;
  padding: 150px 0;
  background-color: #F4F5E7;
}
body.top #sponsorArea,
body.program #sponsorArea {
  margin: 0;
}

#sponsorArea .footer_sponsored {
  width: 1100px;
  margin: 0 auto 60px;
  padding: 0 0 70px;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #3b3b3b;
}

#sponsorArea .artsArea {
  width: 600px;
  margin: 0 auto;
  text-align: center;
}
#sponsorArea .artsArea img {
  width: 560px;
  height: auto;
}
#sponsorArea .artsArea p {
  padding: 20px 0 0;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  #sponsorArea {
    width: 100%;
    margin: 50px 0 0;
    padding: 100px 0;
  }

  #sponsorArea .footer_sponsored {
    width: calc(100% - 60px);
    margin: 0 auto 20px;
    padding: 0 0 40px;
    font-size: 1.6rem;
  }

  #sponsorArea .artsArea {
    width: calc(100% - 60px);
    margin: 0 auto;
  }
  #sponsorArea .artsArea img {
    width: 100%;
  }
  #sponsorArea .artsArea p {
    padding: 15px 0 0;
    text-align: left;
    line-height: 1.6;
  }
}


#sponsorArea .sponsorBox01 {
  width: 800px;
  /* margin: 65px auto 0; */
  margin: 0 auto;
  /* padding: 25px 0 0; */
  padding: 0;
  /* border-top: 1px solid #3b3b3b; */
}
#sponsorArea .sponsorBox01 h3 {
  padding: 50px 0 50px;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}
#sponsorArea .sponsorBox01 ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#sponsorArea .sponsorBox01 ul li {
  padding: 0 0 30px;
  display: flex;
  align-items: center;
}
#sponsorArea .sponsorBox01 ul li:nth-child(1) {
  width: 115px;
  padding-right: 50px;
}
#sponsorArea .sponsorBox01 ul li:nth-child(2) {
  width: 155px;
  padding-right: 35px;
}
#sponsorArea .sponsorBox01 ul li:nth-child(3) {
  width: 215px;
  padding-right: 50px;
}
#sponsorArea .sponsorBox01 ul li:nth-child(4) {
  width: 170px;
  padding-right: 0;
}

#sponsorArea .sponsorBox01 ul li:nth-child(5) {
  width: 115px;
  padding-right: 45px;
}
#sponsorArea .sponsorBox01 ul li:nth-child(6) {
  width: 185px;
  padding-right: 45px;
}
#sponsorArea .sponsorBox01 ul li:nth-child(7) {
  width: 200px;
  padding-right: 0;
}

#sponsorArea .sponsorBox01 ul li img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #sponsorArea .sponsorBox01 {
    width: calc(100% - 80px);
    /* margin: 30px auto 0;
    padding: 40px 0 0; */
    margin: 30px auto 0;
    padding: 0;
  }
  #sponsorArea .sponsorBox01 h3 {
    padding: 0 0 30px;
    font-size: 1.6rem;
  }
  #sponsorArea .sponsorBox01 ul li {
    padding: 0 0 40px;
    justify-content: center;
    box-sizing: border-box;
  }
  #sponsorArea .sponsorBox01 ul li:nth-child(1),
  #sponsorArea .sponsorBox01 ul li:nth-child(2),
  #sponsorArea .sponsorBox01 ul li:nth-child(3),
  #sponsorArea .sponsorBox01 ul li:nth-child(4),
  #sponsorArea .sponsorBox01 ul li:nth-child(5),
  #sponsorArea .sponsorBox01 ul li:nth-child(6),
  #sponsorArea .sponsorBox01 ul li:nth-child(7) {
    width: 50%;
    padding-right: 0;
  }
  #sponsorArea .sponsorBox01 ul li:nth-child(4) {
    width: 42%;
  }
  #sponsorArea .sponsorBox01 ul li:nth-child(odd) {
    padding-right: 5%;
  }
  #sponsorArea .sponsorBox01 ul li:nth-child(7) {
    padding-right: 0;
  }
  #sponsorArea .sponsorBox01 ul li:nth-child(1) img {
    height: 27px;
    padding-top: 20px;
  }

  #sponsorArea .sponsorBox01 ul li:nth-child(5) img {
    height: 35px;
  }
  #sponsorArea .sponsorBox01 ul li:nth-child(6) img {
    height: 35px;
  }
  #sponsorArea .sponsorBox01 ul li:nth-child(7) img {
    height: 35px;
  }
}

#sponsorArea .sponsorBox02 {
  width: 800px;
  margin: 0 auto;
  padding: 20px 0 0;
}
#sponsorArea .sponsorBox02 ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#sponsorArea .sponsorBox02 ul li {
  width: 22%;
  padding: 0 5% 50px 0;
  display: flex;
  align-items: center;
}
#sponsorArea .sponsorBox02 ul li:nth-child(5),
#sponsorArea .sponsorBox02 ul li:nth-child(9) {
  padding: 0 0 50px 0;
}
#sponsorArea .sponsorBox02 ul li:nth-child(1) {
  width: 18%;
}
#sponsorArea .sponsorBox02 ul li:nth-child(2) {
  width: 23%;
}
#sponsorArea .sponsorBox02 ul li:nth-child(3) {
  width: 12%;
}
#sponsorArea .sponsorBox02 ul li:nth-child(4) {
  width: 5%;
}
#sponsorArea .sponsorBox02 ul li:nth-child(7) {
  width: 16%;
}
#sponsorArea .sponsorBox02 ul li:nth-child(8) {
  width: 16%;
}

#sponsorArea .sponsorBox02 ul li img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #sponsorArea .sponsorBox02 {
    width: calc(100% - 80px);
    padding: 0;
  }
  #sponsorArea .sponsorBox02 ul li {
    width: auto;
    padding: 0 10% 25px 0;
  }
  #sponsorArea .sponsorBox02 ul li:nth-child(5),
  #sponsorArea .sponsorBox02 ul li:nth-child(9) {
    padding: 0;
  }
  #sponsorArea .sponsorBox02 ul li:nth-child(2),
  #sponsorArea .sponsorBox02 ul li:nth-child(5),
  #sponsorArea .sponsorBox02 ul li:nth-child(7),
  #sponsorArea .sponsorBox02 ul li:nth-child(9) {
    padding: 0 0 25px 0;
  }
  #sponsorArea .sponsorBox02 ul li:nth-child(1) {
    width: 36%;
  }
  #sponsorArea .sponsorBox02 ul li:nth-child(2) {
    width: 52%;
  }

  #sponsorArea .sponsorBox02 ul li:nth-child(3) {
    width: 24%;
  }
  #sponsorArea .sponsorBox02 ul li:nth-child(4) {
    width: 10%;
  }
  #sponsorArea .sponsorBox02 ul li:nth-child(5) {
    width: 46%;
  }

  #sponsorArea .sponsorBox02 ul li:nth-child(6) {
    width: 40%;
  }
  #sponsorArea .sponsorBox02 ul li:nth-child(7) {
    width: 37%;
  }

  #sponsorArea .sponsorBox02 ul li:nth-child(8) {
    width: 40%;
  }
  #sponsorArea .sponsorBox02 ul li:nth-child(9) {
    width: 40%;
  }
}

#sponsorArea .sponsorBox03 {
  width: 800px;
  margin: 0 auto;
  padding: 20px 0 0;
}
#sponsorArea .sponsorBox03 ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#sponsorArea .sponsorBox03 ul li {
  width: 14%;
  padding: 0 4% 50px 0;
}
#sponsorArea .sponsorBox03 ul li:nth-child(1) {
  width: 9%;
}
#sponsorArea .sponsorBox03 ul li:nth-child(8) {
  width: 12%;
}
#sponsorArea .sponsorBox03 ul li:nth-child(9) {
  width: 17%;
}
#sponsorArea .sponsorBox03 ul li:nth-child(6),
#sponsorArea .sponsorBox03 ul li:nth-child(10) {
  padding: 0 0 50px 0;
}
#sponsorArea .sponsorBox03 ul li:nth-child(7) {
  width: 68px;
}
#sponsorArea .sponsorBox03 ul li img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #sponsorArea .sponsorBox03 {
    width: calc(100% - 40px);
  }
  #sponsorArea .sponsorBox03 ul {
    align-items: stretch;
  }
  #sponsorArea .sponsorBox03 ul li {
    width: auto;
    padding: 0 5.5% 25px 0;
  }
  #sponsorArea .sponsorBox03 ul li:nth-child(3),
  #sponsorArea .sponsorBox03 ul li:nth-child(6),
  #sponsorArea .sponsorBox03 ul li:nth-child(9) {
    padding: 0 0 25px 0;
  }
  #sponsorArea .sponsorBox03 ul li:nth-child(1) {
    width: 25%;
  }
  #sponsorArea .sponsorBox03 ul li:nth-child(2) {
    width: 25%;
  }
  #sponsorArea .sponsorBox03 ul li:nth-child(3) {
    width: 25%;
  }

  #sponsorArea .sponsorBox03 ul li:nth-child(4) {
    width: 25%;
  }
  #sponsorArea .sponsorBox03 ul li:nth-child(5) {
    width: 25%;
  }
  #sponsorArea .sponsorBox03 ul li:nth-child(6) {
    width: 31%;
  }

  #sponsorArea .sponsorBox03 ul li:nth-child(7) {
    width: 18%;
  }
  #sponsorArea .sponsorBox03 ul li:nth-child(8) {
    width: 25%;
  }
  #sponsorArea .sponsorBox03 ul li:nth-child(9) {
    width: 30%;
    padding: 15px 0 20px;
  }

  #sponsorArea .sponsorBox03 ul li:nth-child(10) {
    width: 30%;
  }
  #sponsorArea .sponsorBox03 ul li img {
    width: 100%;
    height: auto;
  }
}


footer {
  width: 100%;
  background-color: #3C3C3C;
}
@media only screen and (min-width: 1040px) and (max-width:10000px) {
  footer #footerBody {
    position: relative;
    width: 1000px;
    height: auto;
    margin: 0 auto;
    padding: 65px 0 50px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 1040px) {
  footer #footerBody {
    position: relative;
    width: calc(100% - 40px);
    height: auto;
    margin: 0 auto;
    padding: 65px 0 50px;
    box-sizing: border-box;
  }
}
footer #footerBody h1 img {
  width: 250px;
  height: auto;
}
footer #footerBody .footer_naviMain {
  width: 440px;
  padding: 50px 0 0;
  border-bottom: 1px solid #FFF;
}
footer #footerBody .footer_naviMain ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
footer #footerBody .footer_naviMain ul li {
  padding: 0 60px 30px 0;
}
footer #footerBody .footer_naviMain ul li:nth-child(3),
footer #footerBody .footer_naviMain ul li:last-child {
  padding: 0 0 30px 0;
}
footer #footerBody .footer_naviMain ul li a {
  font-size: 2.0rem;
  font-weight: 500;
  color: #FFF;
  transition: all 0.3s ease;
}
footer #footerBody .footer_naviMain ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
footer #footerBody .footer_naviSub01 {
  width: 440px;
  padding: 30px 0;
}
footer #footerBody .footer_naviSub01 ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
footer #footerBody .footer_naviSub01 ul li {
  padding: 0 60px 0 0;
}
footer #footerBody .footer_naviSub01 ul li a {
  font-size: 2.0rem;
  font-weight: 500;
  color: #FFF;
  transition: all 0.3s ease;
}
footer #footerBody .footer_naviSub01 ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

footer #footerBody .footer_archives {
  width: 450px;
  padding: 30px 0 0;
}
footer #footerBody .footer_archives ul {
  list-style-type: none;
}
footer #footerBody .footer_archives ul li {
  padding: 0 0 20px 0;
}
footer #footerBody .footer_archives ul li a {
  position: relative;
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #FFF;
  transition: all 0.3s ease;
}
footer #footerBody .footer_archives ul li a::after {
  position: absolute;
  right: -50px;
  top: 50%;
  width: 25px;
  height: 25px;
  margin: -13px 0 0;
  background-image: url("../img/icon15.svg");
  background-size: cover;
  content: "";
}
footer #footerBody .footer_archives ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

footer #footerBody .footer_naviSub02 {
  width: 480px;
  padding: 40px 0 0;
}
footer #footerBody .footer_naviSub02 ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* footer #footerBody .footer_naviSub02 ul li {
  padding: 0 60px 0 0;
} */
footer #footerBody .footer_naviSub02 ul li a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #FFF;
  transition: all 0.3s ease;
}
footer #footerBody .footer_naviSub02 ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
footer #footerBody .footer_naviSns {
  position: absolute;
  right: 0;
  top: 177px;
  width: 250px;
}
footer #footerBody .footer_naviSns ul {
  width: 100%;
  display: flex;
  justify-content: right;
  flex-wrap: wrap;
}
footer #footerBody .footer_naviSns ul li {
  width: 36px;
  height: auto;
  padding: 0 0 0 25px;
}
footer #footerBody .footer_naviSns ul li img {
  width: 100%;
  height: auto;
}
footer #footerBody .footer_naviContact {
  position: absolute;
  right: 0;
  top: 243px;
  width: 250px;
}
footer #footerBody .footer_naviContact .column {
  width: 250px;
  height: 75px;
  margin: 0 0 15px;
  border: 1px solid #3C3C3C;
  box-sizing: border-box;
}
footer #footerBody .footer_naviContact .column a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 13px 20px;
  box-sizing: border-box;
  background-color: #FFF;
  font-size: 1.6rem;
  font-weight: 500;
  color: #3C3C3C;
  line-height: 1.4;
  transition: all 0.3s ease;
}
footer #footerBody .footer_naviContact .column a:hover {
  text-decoration: none;
  opacity: 0.7;
}
footer #footerBody .footer_naviContact .column a::before {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 40px;
  height: 32px;
  margin: -16px 0 0;
  background-image: url("../img/icon02.svg");
  background-size: cover;
  content: "";
}
footer #footerBody .footer_naviContact .column:nth-child(2) a::before {
  width: 42px;
  height: 30px;
  margin: -15px 0 0;
  background-image: url("../img/icon03.svg");
}

footer #footerBody small {
  display: block;
  padding: 35px 0 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  footer #footerBody {
    /* width: calc(100% - 60px); */
    width: 320px;
    height: auto;
    padding: 50px 0 60px;
  }
  footer #footerBody .footerBodyBox {
    width: 320px;
    margin: 0 auto;
  }
  footer #footerBody h1 img {
    width: 160px;
    height: auto;
  }
  footer #footerBody .footer_naviMain {
    width: 100%;
    padding: 55px 0 0;
    border-bottom: none;
    border-bottom: 1px solid #FFF;
  }
  footer #footerBody .footer_naviMain ul li {
    width: 100%;
    padding: 0 0 25px 0;
  }
  footer #footerBody .footer_naviMain ul li:last-child {
    padding: 0 0 20px 0;
  }
  footer #footerBody .footer_naviMain ul li a {
    font-size: 1.8rem;
  }
  footer #footerBody .footer_naviSub01 {
    width: 100%;
    padding: 25px 0 0;
  }
  footer #footerBody .footer_naviSub01 ul li {
    width: 100%;
    padding: 0 0 25px 0;
  }
  footer #footerBody .footer_naviSub01 ul li a {
    font-size: 1.8rem;
  }
  footer #footerBody .footer_naviSub01 ul li a:hover {
    text-decoration: none;
    opacity: 0.7;
  }

  footer #footerBody .footer_archives {
    width: 100%;
    padding: 30px 0 30px;
  }
  footer #footerBody .footer_archives ul li {
    padding: 0 20px 20px 0;
  }

  footer #footerBody .footer_naviSub02 {
    width: 320px;
    margin: 0 auto;
    padding: 20px 0 0;
  }
  footer #footerBody .footer_naviSub02 ul {
    width: 100%;
    justify-content: start;
  }
  footer #footerBody .footer_naviSub02 ul li {
    padding: 0 20px 20px 0;
  }
  footer #footerBody .footer_naviSub02 ul li a {
    font-size: 1.6rem;
  }
  footer #footerBody .footer_naviSns {
    position: static;
    width: 80px;
    padding: 20px 0 30px;
  }
  footer #footerBody .footer_naviSns ul {
    width: 100%;
    justify-content: space-between;
  }
  footer #footerBody .footer_naviSns ul li {
    height: 25px;
    padding: 0;
  }
  footer #footerBody .footer_naviSns ul li img {
    width: auto;
    height: 100%;
  }
  footer #footerBody .footer_naviContact {
    position: static;
    width: 100%;
  }
  footer #footerBody .footer_naviContact .column {
    width: 100%;
    height: 75px;
    margin: 0 0 15px;
  }
  footer #footerBody .footer_naviContact .column a {
    padding: 15px 30px 0 55px;
    font-size: 1.5rem;
  }
  footer #footerBody .footer_naviContact .column a::before {
    right: 55px;
  }
  footer #footerBody .footer_sponsored {
    position: static;
    padding: 30px 0 0;
  }

  footer #footerBody small {
    display: block;
    position: static;
    padding: 20px 0 0;
    font-size: 1.2rem;
  }
}


/*==========================================
 ページアップ
===========================================*/
#pageup {
  position : fixed;
  bottom : 30px;
  right : 30px;
}
#pageup a {
  display: block;
  width: 44px;
  height: 44px;
}
#pageup a img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #pageup {
    bottom : 20px;
    right : 20px;
  }
}


/*==========================================
 パンくず
===========================================*/
#pankuzu {
  width: 1100px;
  margin: 80px auto 0;
  font-size: 1.4rem;
}
#pankuzu a {
  position: relative;
  margin: 0 20px 0 0;
}
#pankuzu a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#pankuzu a:after {
  position: absolute;
  right: -12px;
  top: 8px;
  width: 6px;
  height: 6px;
  display: block;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  content: "";
}
@media only screen and (max-width: 1040px) {
  #pankuzu {
    width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 767px) {
  #pankuzu {
    width: calc(100% - 40px);
    font-size: 1.2rem;
  }
  #pankuzu a {
    margin: 0 15px 0 0;
  }
  #pankuzu a:after {
    right: -9px;
    top: 50%;
    width: 4px;
    height: 4px;
    margin: -1px 0 0;
  }
}

/*==========================================
 コンテンツのスタイル 共通
===========================================*/
#mainContents {
  min-height: 700px;
  padding: 80px 0 0 0;
}
body.top #mainContents {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #mainContents {
    padding: 50px 0 0 0;
  }
}


/*==========================================
 共通タイトル
===========================================*/
#mainContents .titleArea {
  width: 100%;
  height: 60px;
  padding: 18px 0 0;
  box-sizing: border-box;
  background-color: #3C3C3C;
  text-align: center;
}
#mainContents .titleArea h2 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  #mainContents .titleArea {
    height: 57px;
    padding: 20px 0 0;
  }
  #mainContents .titleArea h2 {
    font-size: 2.0rem;
  }
}


#mainContents .titleArea_About {
  width: 100%;
  height: 384px;
  padding: 147px 0 0;
  box-sizing: border-box;
  background-image: url("../img/about/title_about_bk.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
}
#mainContents .titleArea_About h2 {
  padding: 0 0 25px;
  font-size: 4.8rem;
  font-weight: 700;
}
#mainContents .titleArea_About p {
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  #mainContents .titleArea_About {
    height: 245px;
    padding: 84px 0 0;
    background-image: url("../img/about/title_about_bk_sp.jpg");
  }
  #mainContents .titleArea_About h2 {
    padding: 0 0 15px;
    font-size: 2.4rem;
  }
  #mainContents .titleArea_About p {
    line-height: 1.8;
  }
}

/*==========================================
 ページナビ
===========================================*/
#mainContents .pageNavi01 {
  width: 750px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#mainContents .pageNavi01 ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .pageNavi01 ul li {
  padding: 0;
}
#mainContents .pageNavi01 ul li a {
  font-size: 1.6rem;
}
#mainContents .pageNavi01 ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .pageNavi01 {
    width: calc(100% - 50px);
    margin: 0 auto;
    padding: 25px 0 0;
  }
  #mainContents .pageNavi01 ul {
    justify-content: start;
  }
  #mainContents .pageNavi01 ul li {
    padding: 0 20px 15px 0;
  }
  #mainContents .pageNavi01 ul li a {
    font-size: 1.4rem;
  }
}


/*==========================================
 トップページ
===========================================*/
#mainContents .topTyp01 {
  width: 100%;
  height: auto;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#mainContents .topTyp01 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
@media only screen and (max-width: 1920px) {
  #mainContents .topTyp01 img {
    height: 660px;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .topTyp01 img {
    width: 100%;
    height: auto;
  }
}


#mainContents .topTyp02 {
  position: relative;
  width: 635px;
  margin: 0 auto 70px;
  padding: 70px 0 50px;
}
#mainContents .topTyp02 .columnBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .topTyp02 .columnBox .column_L {
  width: 183px;
  display: flex;
}
#mainContents .topTyp02 .columnBox .column_L h3 {
  font-size: 3.2rem;
  font-weight: 500;
}
#mainContents .topTyp02 .columnBox .column_R {
  width: 452px;
}
#mainContents .topTyp02 .columnBox .column_R ul {
  width: 100%;
  list-style-type: none;
}
#mainContents .topTyp02 .columnBox .column_R ul li {
  padding: 0 0 15px;
}
#mainContents .topTyp02 .columnBox .column_R ul li span {
  padding: 0 10px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}
#mainContents .topTyp02 .columnBox .column_R ul li a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}
#mainContents .topTyp02 .columnBox .column_R ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#mainContents .topTyp02 .link01 {
  position: absolute;
  right: 0;
  bottom: 10px;
}
#mainContents .topTyp02 .link01 a {
  position: relative;
  padding: 0 35px 0 0;
  font-size: 2.0rem;
  font-weight: 500;
}
#mainContents .topTyp02 .link01 a::after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 23px;
  height: 20px;
  margin: -10px 0 0;
  background-image: url("../img/icon13.svg");
  background-size: cover;
  content: "";
}
#mainContents .topTyp02 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .topTyp02 {
    width: calc(100% - 40px);
    margin: 0 auto 70px;
    padding: 70px 0 40px;
  }
  #mainContents .topTyp02 .columnBox {
    padding: 0;
  }
  #mainContents .topTyp02 .columnBox .column_L {
    width: 100%;
    padding: 0 0 20px;
  }
  #mainContents .topTyp02 .columnBox .column_R {
    width: 100%;
  }
  #mainContents .topTyp02 .columnBox .column_R ul li {
    position: relative;
    padding: 0 0 12px;
  }
  #mainContents .topTyp02 .columnBox .column_R ul li span {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
  }
  #mainContents .topTyp02 .columnBox .column_R ul li a {
    display: block;
    padding: 0 0 0 94px;
  }

  #mainContents .topTyp02 .link01 {
    position: absolute;
    right: 0;
    bottom: 10px;
  }
  #mainContents .topTyp02 .link01 a {
    position: relative;
    padding: 0 35px 0 0;
    font-size: 2.0rem;
    font-weight: 500;
  }
  #mainContents .topTyp02 .link01 a::after {
    position: absolute;
    right: 0;
    top: 50%;
    width: 23px;
    height: 20px;
    margin: -10px 0 0;
    background-image: url("../img/icon13.svg");
    background-size: cover;
    content: "";
  }
  #mainContents .topTyp02 .link01 a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}


#mainContents .topTyp03 {
  width: 100%;
  min-height: 2067px;
  padding: 30px 0 0;
  background-image: url("../img/top/top_bk01.jpg");
  background-size: cover;
  background-position: center;
}
#mainContents .topTyp03 .column {
  width: 644px;
  margin: 0 auto;
}
#mainContents .topTyp03 h3 {
  position: relative;
  margin: 0 0 20px;
  padding: 90px 0 20px;
  border-bottom: 1px solid #707070;
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
}
#mainContents .topTyp03 h3.typ01 {
  width: 100%;
  height: 70px;
  margin: 90px 0 20px;
  padding: 17px 0 0;
  border: 1px solid #707070;
  background-color: #FFF;
  box-sizing: border-box;
  font-size: 3.4rem;
  font-weight: 700;
  text-align: center;
}
#mainContents .topTyp03 p {
  padding: 0 0 30px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
#mainContents .topTyp03 img {
  width: 100%;
  height: auto;
  padding: 0 0 10px;
}
#mainContents .topTyp03 .link01,
#mainContents .topTyp03 .link02,
#mainContents .topTyp03 .link03,
#mainContents .topTyp03 .link04 {
  width: 352px;
  margin: 0 auto;
  padding: 25px 0 0;
}

#mainContents .topTyp03 .link01 a,
#mainContents .topTyp03 .link02 a,
#mainContents .topTyp03 .link03 a,
#mainContents .topTyp03 .link04 a {
  position: relative;
  display: block;
  width: 352px;
  height: 60px;
  padding: 19px 25px 0;
  border: 1px solid #3D3D3D;
  box-sizing: border-box;
  font-size: 2.0rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
#mainContents .topTyp03 .link01 a,
#mainContents .topTyp03 .link02 a {
  border: none;
  background-color: #707070;
  color: #FFF;
}
#mainContents .topTyp03 .link03 a,
#mainContents .topTyp03 .link04 a {
  background-color: #FFFF;
}
#mainContents .topTyp03 .link01 a::after,
#mainContents .topTyp03 .link02 a::after,
#mainContents .topTyp03 .link03 a::after,
#mainContents .topTyp03 .link04 a::after {
  position: absolute;
  right: 25px;
  top: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0;
  background-size: cover;
  content: "";
}
#mainContents .topTyp03 .link01 a::after {
  width: 38px;
  height: 33px;
  margin: -17px 0 0;
  background-image: url("../img/icon08.svg");
}
#mainContents .topTyp03 .link02 a::after {
  background-image: url("../img/icon11.svg");
}
#mainContents .topTyp03 .link03 a::after {
  background-image: url("../img/icon10.svg");
}
#mainContents .topTyp03 .link04 a::after {
  width: 38px;
  height: 33px;
  margin: -17px 0 0;
  background-image: url("../img/icon13.svg");
}
#mainContents .topTyp03 .link01 a:hover,
#mainContents .topTyp03 .link02 a:hover {
  text-decoration: none;
  background-color: #E6E400;
  color: #3D3D3D;
}
#mainContents .topTyp03 .link01 a:hover::after {
  background-image: url("../img/icon13.svg");
}
#mainContents .topTyp03 .link02 a:hover::after {
  background-image: url("../img/icon09.svg");
}
#mainContents .topTyp03 .link03 a:hover,
#mainContents .topTyp03 .link04 a:hover {
  text-decoration: none;
  background-color: #E6E400;
  border: 1px solid #E6E400;
}
@media only screen and (max-width: 767px) {
  #mainContents .topTyp03 {
    width: 100%;
    min-height: 2017px;
    padding: 55px 0 0;
    background-image: url("../img/top/top_bk01_sp.jpg");
  }
  #mainContents .topTyp03 .column {
    width: calc(100% - 40px);
    margin: 0 auto 40px;
    padding: 25px 20px 35px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.7);
  }
  #mainContents .topTyp03 h3 {
    margin: 0 0 10px;
    padding: 0 0 15px;
    border-bottom: 1px solid #707070;
    font-size: 2.4rem;
    line-height: 1.4;
  }
  #mainContents .topTyp03 h3.typ01 {
    margin: 0 0 10px;
    padding: 18px 0 0;
    font-size: 2.4rem;
  }
  #mainContents .topTyp03 .link01,
  #mainContents .topTyp03 .link02,
  #mainContents .topTyp03 .link03,
  #mainContents .topTyp03 .link04 {
    width: 100%;
    margin: 0 auto;
    padding: 15px 0 0;
  }
  #mainContents .topTyp03 .link01 a,
  #mainContents .topTyp03 .link02 a,
  #mainContents .topTyp03 .link03 a,
  #mainContents .topTyp03 .link04 a {
    width: 100%;
    padding: 21px 20px 0;
    font-size: 1.8rem;
  }
  #mainContents .topTyp03 .link01 a::after,
  #mainContents .topTyp03 .link02 a::after,
  #mainContents .topTyp03 .link03 a::after,
  #mainContents .topTyp03 .link04 a::after {
    right: 20px;
  }
}

#mainContents .topTyp03 .columnBox01 {
  width: 1100px;
  margin: 0 auto;
  text-align: center;
}
#mainContents .topTyp03 .columnBox01 h3 {
  margin: 0 0 60px;
  padding: 0 0 15px;
  font-size: 4.0rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #3d3a39;
}
#mainContents .topTyp03 .columnBox01 img {
  width: 811px;
  height: auto;
}
#mainContents .topTyp03 .columnBox01 p {
  padding: 50px 0 0;
  font-size: 2.0rem;
  line-height: 1.8;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #mainContents .topTyp03 .columnBox01 {
    width: calc(100% - 40px);
  }
  #mainContents .topTyp03 .columnBox01 h3 {
    margin: 0 0 40px;
    padding: 0 0 10px;
    font-size: 2.0rem;
    line-height: 1.5;
    border-bottom: 1px solid #3d3a39;
  }
  #mainContents .topTyp03 .columnBox01 img {
    width: 100%;
    height: auto;
  }
  #mainContents .topTyp03 .columnBox01 p {
    padding: 30px 0 0;
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

#mainContents .topTyp03 .columnBox02 {
  width: 1100px;
  margin: 170px auto 0;
  padding: 30px 0 60px;
  box-sizing: border-box;
  border: 1px solid #3d3a39;
  background-color: rgba(255, 255, 255, 0.5);
}
#mainContents .topTyp03 .columnBox02 h3 {
  margin: 0 0 40px;
  padding: 0 0 15px;
  font-size: 4.0rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #3d3a39;
  text-align: center;
}
#mainContents .topTyp03 .columnBox02 .column {
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}
#mainContents .topTyp03 .columnBox02 .column img {
  width: 100%;
  height: auto;
}
#mainContents .topTyp03 .columnBox02 .column h4 {
  margin: 50px 0 0;
  padding: 0 0 15px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .topTyp03 .columnBox02 .column p {
  margin: 10px 0 0;
  font-size: 2.0rem;
  line-height: 1.8;
}
#mainContents .topTyp03 .columnBox02 .column .link01 {
  width: 500px;
  height: 100px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#mainContents .topTyp03 .columnBox02 .column .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 36px 0 0;
  box-sizing: border-box;
  background-color: #FFF;
  border: 1px solid #3d3a39;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
}
#mainContents .topTyp03 .columnBox02 .column .link01 a::after {
  position: absolute;
  right: 35px;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
}
#mainContents .topTyp03 .columnBox02 .column .link01 a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .topTyp03 .columnBox02 {
    width: calc(100% - 40px);
    margin: 45px auto 0;
    padding: 15px 0 30px;
  }
  #mainContents .topTyp03 .columnBox02 h3 {
    margin: 0 0 20px;
    padding: 0 0 15px;
    font-size: 2.0rem;
  }
  #mainContents .topTyp03 .columnBox02 .column {
    padding: 0 15px;
  }
  #mainContents .topTyp03 .columnBox02 .column h4 {
    margin: 20px 0 0;
    padding: 0 0 15px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  #mainContents .topTyp03 .columnBox02 .column p {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  #mainContents .topTyp03 .columnBox02 .column .link01 {
    width: 260px;
    height: 60px;
    margin: 0 auto;
    padding: 25px 0 0;
  }
  #mainContents .topTyp03 .columnBox02 .column .link01 a {
    width: 100%;
    height: 100%;
    padding: 20px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .topTyp03 .columnBox02 .column .link01 a::after {
    right: 20px;
    width: 14px;
    height: 14px;
    margin: -7px 0 0;
  }
}

#mainContents .topTyp03 .columnBox03 {
  width: 1100px;
  margin: 100px auto 0;
  padding: 30px 0 60px;
  box-sizing: border-box;
  border: 1px solid #3d3a39;
  background-color: rgba(255, 255, 255, 0.5);
}
#mainContents .topTyp03 .columnBox03 h3 {
  margin: 0 0 40px;
  padding: 0 0 15px;
  font-size: 4.0rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #3d3a39;
  text-align: center;
}
#mainContents .topTyp03 .columnBox03 .column {
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}
#mainContents .topTyp03 .columnBox03 .column h4 {
  margin: 50px 0 0;
  padding: 0 0 15px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .topTyp03 .columnBox03 .column p {
  margin: 10px 0 0;
  font-size: 2.0rem;
  line-height: 1.8;
}
#mainContents .topTyp03 .columnBox03 .column .link01 {
  width: 1020px;
  margin: 0 auto;
  padding: 50px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .topTyp03 .columnBox03 .column .link01 a {
  position: relative;
  display: block;
  width: 500px;
  height: 100px;
  padding: 36px 0 0;
  box-sizing: border-box;
  background-color: #FFF;
  border: 1px solid #3d3a39;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}
#mainContents .topTyp03 .columnBox03 .column .link01 a span {
  font-size: 1.5rem;
}
#mainContents .topTyp03 .columnBox03 .column .link01 a::after {
  position: absolute;
  right: 35px;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
}
#mainContents .topTyp03 .columnBox03 .column .link01 a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .topTyp03 .columnBox03 {
    width: calc(100% - 40px);
    margin: 45px auto 0;
    padding: 15px 0 10px;
  }
  #mainContents .topTyp03 .columnBox03 h3 {
    margin: 0 0 20px;
    padding: 0 0 15px;
    font-size: 2.0rem;
  }
  #mainContents .topTyp03 .columnBox03 .column {
    padding: 0 15px;
  }
  #mainContents .topTyp03 .columnBox03 .column h4 {
    margin: 20px 0 0;
    padding: 0 0 15px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  #mainContents .topTyp03 .columnBox03 .column p {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  #mainContents .topTyp03 .columnBox03 .column .link01 {
    width: 260px;
    margin: 0 auto;
    padding: 25px 0 0;
  }
  #mainContents .topTyp03 .columnBox03 .column .link01 a {
    width: 260px;
    height: 60px;
    margin: 0 0 20px;
    padding: 20px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .topTyp03 .columnBox03 .column .link01 a span {
    font-size: 1.2rem;
  }
  #mainContents .topTyp03 .columnBox03 .column .link01 a::after {
    right: 20px;
    width: 14px;
    height: 14px;
    margin: -7px 0 0;
  }
}


#mainContents .topTyp04 {
  width: 100%;
  padding: 190px 0;
  background-image: url("../img/top/top_bk02.jpg");
  background-size: cover;
  background-position: center;
}
#mainContents .topTyp04 .columnBox {
  width: 1100px;
  margin: 0 auto;
  text-align: center;
}
#mainContents .topTyp04 .columnBox h3 {
  margin: 0 0 50px;
  padding: 0 0 15px;
  font-size: 4.0rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #3d3a39;
}
#mainContents .topTyp04 .columnBox p {
  padding: 0 0 40px;
  font-size: 2.0rem;
  line-height: 1.8;
  text-align: left;
}
#mainContents .topTyp04 .columnBox img {
  width: 100%;
  height: auto;
}
#mainContents .topTyp04 .link01 {
  width: 500px;
  height: 100px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#mainContents .topTyp04 .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 36px 0 0;
  box-sizing: border-box;
  background-color: #3d3a39;
  border: 1px solid #3d3a39;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  color: #FFF;
}
#mainContents .topTyp04 .link01 a::after {
  position: absolute;
  right: 35px;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0;
  background-image: url("../img/icon08.svg");
  background-size: cover;
  content: "";
}
#mainContents .topTyp04 .link01 a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .topTyp04 {
    padding: 100px 0;
    background-image: url("../img/top/top_bk02_sp.jpg");
  }
  #mainContents .topTyp04 .columnBox {
    width: calc(100% - 40px);
  }
  #mainContents .topTyp04 .columnBox h3 {
    margin: 0 0 20px;
    padding: 0 0 10px;
    font-size: 2.0rem;
    line-height: 1.5;
    border-bottom: 1px solid #3d3a39;
  }
  #mainContents .topTyp04 .columnBox p {
    padding: 0 0 20px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  #mainContents .topTyp04 .link01 {
    width: 260px;
    height: 60px;
    margin: 0 auto;
    padding: 25px 0 0;
  }
  #mainContents .topTyp04 .link01 a {
    width: 100%;
    height: 100%;
    padding: 20px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .topTyp04 .link01 a::after {
    right: 20px;
    width: 14px;
    height: 14px;
    margin: -7px 0 0;
  }
}


#mainContents .topTyp05 {
  width: 100%;
  padding: 190px 0;
  background-image: url("../img/top/top_bk03.jpg");
  background-size: cover;
  background-position: center;
}
#mainContents .topTyp05 .columnBox {
  width: 1100px;
  margin: 0 auto;
  text-align: center;
}
#mainContents .topTyp05 .columnBox h3 {
  margin: 0 0 50px;
  padding: 0 0 15px;
  font-size: 4.0rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #3d3a39;
}
#mainContents .topTyp05 .columnBox p {
  padding: 0 0 40px;
  font-size: 2.0rem;
  line-height: 1.8;
  text-align: left;
}
#mainContents .topTyp05 .link01 {
  width: 1020px;
  margin: 0 auto;
  padding: 50px 0 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .topTyp05 .link01 a {
  position: relative;
  display: block;
  width: 500px;
  height: 100px;
  padding: 36px 0 0;
  box-sizing: border-box;
  background-color: #FFF;
  border: 1px solid #3d3a39;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}
#mainContents .topTyp05 .link01 a span {
  font-size: 1.6rem;
}
#mainContents .topTyp05 .link01 a::after {
  position: absolute;
  right: 35px;
  top: 50%;
  width: 28px;
  height: 32px;
  margin: -14px 0 0;
  background-image: url("../img/icon10.svg");
  background-size: cover;
  content: "";
}
#mainContents .topTyp05 .link01 a:hover {
  text-decoration: none;
}

#mainContents .topTyp05 .link02 {
  width: 500px;
  height: 100px;
  margin: 0 auto;
}
#mainContents .topTyp05 .link02 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 36px 0 0;
  box-sizing: border-box;
  background-color: #3d3a39;
  border: 1px solid #3d3a39;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  color: #FFF;
  transition: all 0.3s;
}
#mainContents .topTyp05 .link02 a::after {
  position: absolute;
  right: 35px;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0;
  background-image: url("../img/icon11.svg");
  background-size: cover;
  content: "";
}
#mainContents .topTyp05 .link02 a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .topTyp05 {
    padding: 100px 0;
    background-image: url("../img/top/top_bk03_sp.jpg");
  }
  #mainContents .topTyp05 .columnBox {
    width: calc(100% - 40px);
  }
  #mainContents .topTyp05 .columnBox h3 {
    margin: 0 0 20px;
    padding: 0 0 10px;
    font-size: 2.0rem;
    line-height: 1.5;
    border-bottom: 1px solid #3d3a39;
  }
  #mainContents .topTyp05 .columnBox p {
    padding: 0 0 20px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  #mainContents .topTyp05 .link01 {
    width: 260px;
    margin: 0 auto;
    padding: 25px 0 0;
  }
  #mainContents .topTyp05 .link01 a {
    width: 100%;
    height: 60px;
    margin: 0 0 20px;
    padding: 20px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .topTyp05 .link01 a span {
    font-size: 1.2rem;
  }
  #mainContents .topTyp05 .link01 a::after {
    right: 20px;
    width: 14px;
    height: 16px;
    margin: -7px 0 0;
  }

  #mainContents .topTyp05 .link02 {
    width: 260px;
    height: 60px;
    margin: 0 auto;
  }
  #mainContents .topTyp05 .link02 a {
    width: 100%;
    height: 100%;
    padding: 20px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .topTyp05 .link02 a::after {
    right: 20px;
    width: 14px;
    height: 14px;
    margin: -7px 0 0;
  }
}

#mainContents .topTyp06 {
  width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .topTyp06 .column {
  width: 540px;
}
#mainContents .topTyp06 .column img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents .topTyp06 {
    width: calc(100% - 40px);
    padding: 30px 0 10px;
  }
  #mainContents .topTyp06 .column {
    width: 100%;
    padding: 0 0 30px;
  }
}

#mainContents .topTyp06 {
  width: 1100px;
  margin: 0 auto;
  padding: 40px 0 80px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .topTyp06 .column {
  width: 540px;
}
#mainContents .topTyp06 .column img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents .topTyp06 {
    width: calc(100% - 40px);
    padding: 30px 0 10px;
  }
  #mainContents .topTyp06 .column {
    width: 100%;
    padding: 0 0 30px;
  }
}


#mainContents .topTyp07 {
  width: 1100px;
  margin: 0 auto;
  padding: 80px 0 40px;
}
#mainContents .topTyp07 img {
  width: 100%;
  height: auto;
  padding: 0 0 40px;
}
@media only screen and (max-width: 767px) {
  #mainContents .topTyp07 {
    width: calc(100% - 40px);
    padding: 40px 0 20px;
  }
  #mainContents .topTyp07 img {
    padding: 0 0 20px;
  }
}
/*==========================================
 共通レイアウト
===========================================*/
#mainContents .layoutTyp01 {
  width: 750px;
  margin: 0 auto;
  padding: 85px 0 0;
}
#mainContents .layoutTyp01 h3 {
  padding: 0 0 30px;
  font-size: 2.0rem;
  font-weight: 400;
}
#mainContents .layoutTyp01 .columnBox {
  width: 100%;
}
#mainContents .layoutTyp01.tyo02 .columnBox {
  padding: 0;
}
#mainContents .layoutTyp01 .columnBox .columnFaq {
  width: 100%;
  margin: 0 0 10px;
}
#mainContents .layoutTyp01 .columnBox .columnFaq a.q_text {
  position: relative;
  display: block;
  width: 100%;
  padding: 30px 100px 30px 100px;
  box-sizing: border-box;
  background-color: #EFEFEFB2;
  font-size: 1.8rem;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
}
#mainContents .layoutTyp01 .columnBox .columnFaq a.q_text::before {
  position: absolute;
  left: 25px;
  top: 50%;
  width: 48px;
  height: 53px;
  margin: -26px 0 0;
  background-image: url("../img/faq/faq_Q.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp01 .columnBox .columnFaq a.q_text::after {
  position: absolute;
  right: 25px;
  top: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0;
  background-image: url("../img/faq/faq_icon02.svg");
  background-size: cover;
  content: "";
  transition: all 0.3s ease;
}
#mainContents .layoutTyp01 .columnBox .columnFaq.open a.q_text::after {
  background-image: url("../img/faq/faq_icon01.svg");
}
#mainContents .layoutTyp01 .columnBox .columnFaq a.q_text:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp01 .columnBox .columnFaq p {
  position: relative;
  display: none;
  width: 100%;
  padding: 20px 25px 20px 100px;
  box-sizing: border-box;
  background-color: #FFF;
  font-size: 1.8rem;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}
#mainContents .layoutTyp01 .columnBox .columnFaq p::before {
  position: absolute;
  left: 25px;
  top: 50%;
  width: 43px;
  height: 44px;
  margin: -22px 0 0;
  background-image: url("../img/faq/faq_A.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp01 .columnBox .columnFaq.open p {
  display: block;
}
#mainContents .layoutTyp01 .columnBox .columnFaq p a.link01 {
  padding: 10px 0 0;
  text-decoration: underline;
}
#mainContents .layoutTyp01 .columnBox .columnFaq p a.link01:hover {
  opacity: 0.7;
}
#mainContents .layoutTyp01 .columnBox .columnFaq p a.link02 {
  position: relative;
  display: inline-block;
  padding: 10px 0 0;
  text-decoration: underline;
}
#mainContents .layoutTyp01 .columnBox .columnFaq p a.link02::after {
  position: absolute;
  right: -28px;
  top: 13px;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon05.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp01 .columnBox .columnFaq p a.link02:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp01 {
    width: calc(100% - 50px);
    padding: 40px 0 0;
  }
  #mainContents .layoutTyp01 h3 {
    padding: 0 0 20px;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp01 .columnBox .columnFaq a.q_text {
    padding: 10px 50px 10px 50px;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp01 .columnBox .columnFaq a.q_text::before {
    left: 18px;
    width: 15px;
    height: 17px;
    margin: -8px 0 0;
  }
  #mainContents .layoutTyp01 .columnBox .columnFaq a.q_text::after {
    right: 20px;
    width: 16px;
    height: 16px;
    margin: -8px 0 0;
  }
  #mainContents .layoutTyp01 .columnBox .columnFaq p {
    padding: 10px 0 10px 50px;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp01 .columnBox .columnFaq p::before {
    left: 18px;
    width: 14px;
    height: 14px;
    margin: -7px 0 0;
  }
}


#mainContents .layoutTyp02 {
  width: 750px;
  margin: 0 auto;
  padding: 100px 0 0;
}
#mainContents .layoutTyp02 ul {
  width: 100%;
  list-style-type: none;
}
#mainContents .layoutTyp02 ul li {
  position: relative;
  padding: 0 0 25px;
}
#mainContents .layoutTyp02 ul li span {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .layoutTyp02 ul li a {
  display: block;
  padding: 0 0 0 85px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}
#mainContents .layoutTyp02 ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp02 {
    width: calc(100% - 40px);
    padding: 50px 0 0;
  }
  #mainContents .layoutTyp02 ul li {
    padding: 0 0 30px;
  }
  #mainContents .layoutTyp02 ul li span {
    position: static;
    display: block;
    padding: 0 0 5px 0;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp02 ul li a {
    padding: 0;
    font-size: 1.6rem;
  }
}

#mainContents .layoutTyp03 {
  width: 750px;
  margin: 0 auto;
  padding: 100px 0 0;
}
#mainContents .layoutTyp03 p.date {
  font-size: 1.8rem;
}
#mainContents .layoutTyp03 h3 {
  padding: 10px 0 0;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .layoutTyp03 .entryBody {
  width: 100%;
  padding: 15px 0 0;
}
#mainContents .layoutTyp03 .entryBody h4 {
  padding: 0 0 10px;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .layoutTyp03 .entryBody img {
  max-width: 100%;
  height: auto;
  padding: 0 0 50px;
}
#mainContents .layoutTyp03 .entryBody p {
  padding: 0 0 50px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  word-break: break-all;
}
#mainContents .layoutTyp03 .entryBody p strong,
#mainContents .layoutTyp03 .entryBody p b {
  font-weight: 900 ;
}
#mainContents .layoutTyp03 .entryBody ul {
  padding: 0 0 50px 25px;
  list-style-type: none;
}
#mainContents .layoutTyp03 .entryBody ul li {
  position: relative;
  padding: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp03 .entryBody ul li::before {
  position: absolute;
  left: -25px;
  top: 0;
  content: "●";
}
#mainContents .layoutTyp03 .entryBody p a {
  text-decoration: underline;
}
#mainContents .layoutTyp03 .entryBody p a:hover {
  opacity: 0.7;
}
#mainContents .layoutTyp03 .entryBody .link01 {
  padding: 0 0 50px;
}
#mainContents .layoutTyp03 .entryBody .link01 a {
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}
#mainContents .layoutTyp03 .entryBody .link01 a::before {
  position: absolute;
  right: -30px;
  top: 50%;
  width: 23px;
  height: 20px;
  margin: -10px 0 0;
  background-image: url("../img/icon13.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp03 .entryBody .link01 a[target="_blank"]::before {
  width: 24px;
  height: 24px;
  margin: -12px 0 0;
  background-image: url("../img/icon09.svg");
}

#mainContents .layoutTyp03 .back_link {
  padding: 50px 0 50px;
  text-align: center;
}
#mainContents .layoutTyp03 .back_link a {
  position: relative;
  font-size: 2.0rem;
  font-weight: 500;
}
#mainContents .layoutTyp03 .back_link a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp03 .back_link a::before {
  position: absolute;
  left: -30px;
  top: 50%;
  width: 23px;
  height: 20px;
  margin: -9px 0 0;
  background-image: url("../img/icon13.svg");
  background-size: cover;
  content: "";
  transform: rotate(180deg);
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp03 {
    width: calc(100% - 40px);
    padding: 25px 0 0;
  }
  #mainContents .layoutTyp03 p.date {
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp03 h3 {
    padding: 10px 0 0;
    font-size: 2.2rem;
  }
  #mainContents .layoutTyp03 .entryBody h4 {
    padding: 0 0 10px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
  }
  #mainContents .layoutTyp03 .entryBody p {
    padding: 0 0 30px;
    font-size: 1.4rem;
  }
}


#mainContents .layoutTyp04 {
  width: 1100px;
  margin: 0 auto;
  padding: 100px 0 0;
}
#mainContents .layoutTyp04 iframe {
  width: 1100px;
  height: 680px;
}
#mainContents .layoutTyp04 .columnBox {
  width: 750px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#mainContents .layoutTyp04 .columnBox ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
#mainContents .layoutTyp04 .columnBox ul li {
  position: relative;
  padding: 20px 105px 0 84px;
  font-size: 1.8rem;
  font-weight: 400;
}
#mainContents .layoutTyp04 .columnBox ul li:last-child {
  padding: 20px 0 0 84px;
}
#mainContents .layoutTyp04 .columnBox ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 84px;
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp04 .columnBox ul li:nth-child(1):before {
  background-image: url("../img/schedule/schedule_icon01.svg");
}
#mainContents .layoutTyp04 .columnBox ul li:nth-child(2):before {
  background-image: url("../img/schedule/schedule_icon02.svg");
}
#mainContents .layoutTyp04 .columnBox ul li:nth-child(3):before {
  background-image: url("../img/schedule/schedule_icon03.svg");
}
#mainContents .layoutTyp04 .link01 {
  width: 500px;
  height: 67px;
  margin: 100px auto 0;
}
#mainContents .layoutTyp04 .link01 a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 22px 0 0;
  box-sizing: border-box;
  background-color: #3C3C3C;
  font-size: 2.0rem;
  font-weight: 600;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp04 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp04 .link02 {
  width: 500px;
  height: 67px;
  margin: 15px auto 0;
}
#mainContents .layoutTyp04 .link02 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 22px 0 0;
  box-sizing: border-box;
  background-color: #3C3C3C;
  font-size: 2.0rem;
  font-weight: 600;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp04 .link02 a::after {
  position: absolute;
  right: 145px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0;
  background-image: url("../img/icon04.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp04 .link02 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp04 {
    width: calc(100% - 40px);
    padding: 25px 0;
  }
  #mainContents .layoutTyp04 iframe {
    width: 100%;
    height: 240px;
  }
  #mainContents .layoutTyp04 .columnBox {
    width: calc(100% - 20px);
    padding: 20px 0 0;
  }
  #mainContents .layoutTyp04 .columnBox ul li {
    width: 48%;
    padding: 15px 0 30px 45px;
    box-sizing: border-box;
  }
  #mainContents .layoutTyp04 .columnBox ul li:last-child {
    width: 100%;
    padding: 15px 0 30px 45px;
    text-align: center;
  }
  #mainContents .layoutTyp04 .columnBox ul li::before {
    left: 0;
    top: 0;
    width: 33px;
    height: 50px;
  }
  #mainContents .layoutTyp04 .columnBox ul li:nth-child(3):before {
    left: 50%;
    margin: 0 0 0 -60px;
  }
  #mainContents .layoutTyp04 .link01 {
    width: 300px;
    height: 64px;
    margin: 50px auto 0;
  }
  #mainContents .layoutTyp04 .link01 a {
    padding: 23px 0 0;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp04 .link01 a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  #mainContents .layoutTyp04 .link02 {
    width: 300px;
    height: 64px;
  }
  #mainContents .layoutTyp04 .link02 a {
    padding: 23px 0 0;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp04 .link02 a::after {
    right: 58px;
  }
}


#mainContents .layoutTyp05 {
  width: 1100px;
  margin: 0 auto;
}
#mainContents .layoutTyp05 p.text01 {
  width: 100%;
  padding: 100px 0 100px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp05 h3 {
  position: relative;
  margin: 0 0 50px;
  padding: 0 0 20px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
#mainContents .layoutTyp05 h3::before {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background-image: url("../img/volunteer/volunteer_bar01.jpg");
  background-size: cover;
  background-position: center;
  content: "";
}
#mainContents .layoutTyp05 img {
  width: 100%;
  height: auto;
  padding: 0 0 20px;
}
#mainContents .layoutTyp05 h4 {
  padding: 0 0 10px;
  font-size: 2.0rem;
  font-weight: 700;
}
#mainContents .layoutTyp05 p.text02 {
  padding: 0 0 20px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp05 .textBox {
  width: 100%;
  margin: 0 0 30px;
  padding: 20px 20px 0;
  box-sizing: border-box;
  background-color: #F0F0F0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp05 .textBox p {
  padding: 0 0 20px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp05 p a {
  position: relative;
  display: inline-block;
  margin: 0 0 0 40px;
}
#mainContents .layoutTyp05 p a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp05 p a.typ01::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140%;
  height: 38px;
  margin: -19px 0 0 -60%;
  border: 1px solid #000000;
  border-radius: 30px;
  content: "";
}
#mainContents .layoutTyp05 p a.typ02::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 38px;
  margin: -19px 0 0 -50px;
  border: 1px solid #000000;
  border-radius: 30px;
  content: "";
}
#mainContents .layoutTyp05 p a::after {
  position: absolute;
  right: -25px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -8px 0 0;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp05 .link01 {
  width: 500px;
  height: 100px;
  margin: 0 auto;
  padding: 50px 0 150px;
}
#mainContents .layoutTyp05 .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 36px 0 0;
  box-sizing: border-box;
  background-color: #3d3a39;
  border: 1px solid #3d3a39;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  color: #FFF;
}
#mainContents .layoutTyp05 .link01 a::after {
  position: absolute;
  right: 35px;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0;
  background-image: url("../img/icon08.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp05 .link01 a:hover {
  text-decoration: none;
}

#mainContents .layoutTyp05 .link02 {
  width: 336px;
  margin: 0 auto;
  padding: 20px 0 50px;
}
#mainContents .layoutTyp05 .link02 a {
  position: relative;
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 0 0;
  box-sizing: border-box;
  border: 1px solid #000;
  border-radius: 30px;
  font-size: 2.0rem;
  text-align: center;
}
#mainContents .layoutTyp05 .link02 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp05 .link02 a::after {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -8px 0 0;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp05 {
    width: calc(100% - 40px);
  }
  #mainContents .layoutTyp05 p.text01 {
    padding: 50px 0 50px;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp05 h3 {
    margin: 0 0 30px;
    padding: 0 0 10px;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp05 h4 {
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp05 p.text02 {
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp05 .textBox {
    padding: 10px 20px 0;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp05 .textBox p {
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp05 p a.typ01 {
    margin: 15px 0 0 15px;
  }
  #mainContents .layoutTyp05 p a.typ02 {
    margin: 15px 0 0 30px;
  }
  #mainContents .layoutTyp05 .link01 {
    width: 260px;
    height: 60px;
    margin: 0 auto;
    padding: 25px 0 50px;
  }
  #mainContents .layoutTyp05 .link01 a {
    width: 100%;
    height: 100%;
    padding: 20px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp05 .link01 a::after {
    right: 20px;
    width: 14px;
    height: 14px;
    margin: -7px 0 0;
  }

  #mainContents .layoutTyp05 .link02 {
    width: 300px;
  }
  #mainContents .layoutTyp05 .link02 a {
    padding: 10px 0 0;
    font-size: 1.6rem;
  }
}

#mainContents .layoutTyp06 {
  width: 100%;
  padding: 100px 0 0;
}
#mainContents .layoutTyp06 h2 {
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 6.4px;
}
#mainContents .layoutTyp06 p {
  padding: 35px 0 0 ;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 3.6px;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp06 {
    padding: 40px 30px 0;
    box-sizing: border-box;
  }
  #mainContents .layoutTyp06 h2 {
    font-size: 1.8rem;
    letter-spacing: 3.6px;
  }
  #mainContents .layoutTyp06 p {
    padding: 20px 0 0 ;
    font-size: 1.6rem;
  }
}

#mainContents .layoutTyp07 {
  position: relative;
  width: 100%;
  min-height: 300px;
  padding: 100px 0 0;
  background-image: url("../img/program/program_bk02.jpg");
  background-size: 100% auto;
}
#mainContents .layoutTyp07 h3 {
  padding: 0 0 50px;
  font-size: 3.0rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

#mainContents .layoutTyp07 .catNavi {
  width: 1100px;
  margin: 0 auto;
  padding: 20px 0 40px;
}
#mainContents .layoutTyp07 .catNavi ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
#mainContents .layoutTyp07 .catNavi ul li {
  width: 23%;
}
#mainContents .layoutTyp07 .catNavi ul li a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 80px;
  padding: 27px 0 0;
  box-sizing: border-box;
  /* background-color: #FFF; */
  font-size: 2.4rem;
  color: #3c3c3c;
  text-align: center;
}
#mainContents .layoutTyp07 .catNavi ul li a::after {
  position : absolute;
  z-index: -1;
  top : 0;
  left : 0;
  width: 100%;
  height: 80px;
  background: #FFF;
  transform: skewX(-10deg);
  content : "";
}
#mainContents .layoutTyp07 .catNavi ul li a:hover {
  color: #FFF;
  text-decoration: none;
}
#mainContents .layoutTyp07 .catNavi ul li a:hover::after {
  background: #3c3c3c;
}

#mainContents .layoutTyp07 .number {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  padding: 22px 0 0;
  box-sizing: border-box;
  background-color: #3c3c3c;
  text-align: center;
}
#mainContents .layoutTyp07 .number p {
  font-size: 2.4rem;
  color: #FFF;
}
#mainContents .layoutTyp07 .layoutTyp07_Box {
  width: calc(100% - 40px);
  margin: 0 auto;
}
#mainContents .layoutTyp07 .columnBox {
  position: relative;
  width: calc(100% + 1.25%);
  margin: 60px 0 0 -1.25%;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
#mainContents .layoutTyp07 .columnBox a {
  position: relative;
  display: block;
  transition: all 0.5s ease;
}
#mainContents .layoutTyp07 .columnBox a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp07 .columnBox a[target="_blank"]::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp07 .columnBox .column {
  position: relative;
  width: 32.0%;
  padding: 0 0 80px 1.25%;
}
@media only screen and (max-width: 1300px) {
  #mainContents .layoutTyp07 .columnBox {
    justify-content: space-between;
  }
  #mainContents .layoutTyp07 .columnBox .column {
    width: 49%;
    padding: 0 0 80px 0;
  }
}
#mainContents .layoutTyp07 .columnBox .column.fade_off {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.0s ease;
}
#mainContents .layoutTyp07 .columnBox .column:nth-child(1n).fade_off {
  transition-delay: 0s;
}
#mainContents .layoutTyp07 .columnBox .column:nth-child(2n).fade_off {
  transition-delay: 0.15s;
}
#mainContents .layoutTyp07 .columnBox .column:nth-child(3n).fade_off {
  transition-delay: 0.3s;
}
#mainContents .layoutTyp07 .columnBox .column.fade_on {
  opacity: 1;
  transform: translateY(0px);
}
#mainContents .layoutTyp07 .columnBox .column .category {
  padding: 0 0 10px;
}
#mainContents .layoutTyp07 .columnBox .column .category span {
  display: inline-block;
  width: auto;
  padding: 5px 20px 7px;
  background-color: #3C3C3C;
  font-size: 2.0rem;
  font-weight: 400;
  text-align: center;
  color: #FFF;
}
#mainContents .layoutTyp07 .columnBox .column .category p {
  display: inline;
  padding: 5px 0 0 10px;
  font-size: 1.8rem;
  font-weight: 400;
}
#mainContents .layoutTyp07 .columnBox .column .imgBox {
  position: relative;
  margin: 0 0 10px;
  overflow: hidden;
}
body.top #mainContents .layoutTyp07 .columnBox .column .imgBox::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  content: "";
}
#mainContents .layoutTyp07 .columnBox .column .imgBox.fade_off::before {
  transition: all 1.0s ease;
}
#mainContents .layoutTyp07 .columnBox .column:nth-child(1n) .imgBox.fade_off::before {
  transition-delay: 0s;
}
#mainContents .layoutTyp07 .columnBox .column:nth-child(2n) .imgBox.fade_off::before {
  transition-delay: 0.15s;
}
#mainContents .layoutTyp07 .columnBox .column:nth-child(3n) .imgBox.fade_off::before {
  transition-delay: 0.3s;
}
#mainContents .layoutTyp07 .columnBox .column .imgBox.fade_on::before {
  transform: translateY(102%);
}
#mainContents .layoutTyp07 .columnBox .column .imgBox img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp07 .columnBox .column .imgBox.fade_off {
  transform: translateY(0px);
}
#mainContents .layoutTyp07 .columnBox .column h3 {
  position: relative;
  display: inline;
  padding: 0;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .layoutTyp07 .columnBox .column p {
  padding: 5px 0 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
#mainContents .layoutTyp07 .columnBox .column p span.day span {
  font-size: 1.2rem;
}
#mainContents .layoutTyp07 .columnBox .column .iconSet {
  position: relative;
  display: inline-block;
  margin: 10px 0 0;
  padding: 7px 20px 10px;
  border-radius: 20px;
  border: 1px solid #3C3C3C;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: #3C3C3C;
}
#mainContents .layoutTyp07 .columnBox .column .iconSet.status01 {
  border: 1px solid #3C3C3C;
  background-color: #FFF;
  color: #3C3C3C;
}
#mainContents .layoutTyp07 .link01 {
  width: 500px;
  height: 100px;
  margin: 0 auto;
  padding: 50px 0 150px;
}
#mainContents .layoutTyp07 .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 36px 0 0;
  box-sizing: border-box;
  background-color: #3d3a39;
  border: 1px solid #3d3a39;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  color: #FFF;
}
#mainContents .layoutTyp07 .link01 a::after {
  position: absolute;
  right: 35px;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0;
  background-image: url("../img/icon08.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp07 .link01 a:hover {
  text-decoration: none;
}
#mainContents .layoutTyp07 .noProgram {
  display: none;
  width: 100%;
  padding: 50px 0;
  text-align: center;
}
#mainContents .layoutTyp07 .noProgram p {
  font-size: 2.0rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp07 {
    min-height: 250px;
    margin: 121px 0 0;
    padding: 60px 0 0;
    background-image: url("../img/program/program_bk02_sp.jpg");
    background-position: center top;
    /* transition: all 0.8s ease; */
  }
  body.top #mainContents .layoutTyp07 {
    margin: 0;
  }
  #mainContents .layoutTyp07.more {
    margin: 357px 0 0;
  }
  #mainContents .layoutTyp07.sort {
    margin: 154px 0 0;
  }
  #mainContents .layoutTyp07 .number {
    height: 42px;
    padding: 12px 0 0;
  }
  #mainContents .layoutTyp07 .number p {
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp07 h3 {
    padding: 0 0 10px;
    font-size: 2.0rem;
  }

  #mainContents .layoutTyp07 .catNavi {
    width: calc(100% - 40px);
    padding: 20px 0 0;
  }
  #mainContents .layoutTyp07 .catNavi ul li {
    width: 23%;
  }
  #mainContents .layoutTyp07 .catNavi ul li a {
    height: 43px;
    padding: 14px 0 0;
    font-size: 1.4rem;
    line-height: 1.2;
  }
  #mainContents .layoutTyp07 .catNavi ul li:nth-child(2) a,
  #mainContents .layoutTyp07 .catNavi ul li:nth-child(3) a {
    padding: 5px 0 0;
  }
  #mainContents .layoutTyp07 .catNavi ul li a::after {
    height: 43px;
  }

  #mainContents .layoutTyp07 .layoutTyp07_Box {
    width: calc(100% - 40px);
  }
  #mainContents .layoutTyp07 .columnBox {
    width: 100%;
    margin: 50px auto 0;
  }
  #mainContents .layoutTyp07 .columnBox .column {
    width: 100%;
    padding: 0 0 40px 0;
  }
  #mainContents .layoutTyp07 .columnBox a:hover {
    opacity: 1.0;
  }
  #mainContents .layoutTyp07 .columnBox a[target="_blank"]::after {
    width: 24px;
    height: 24px;
  }

  #mainContents .layoutTyp07 .columnBox .column:nth-child(1n).fade_off {
    transition-delay: 0s;
  }
  #mainContents .layoutTyp07 .columnBox .column:nth-child(2n).fade_off {
    transition-delay: 0s;
  }
  #mainContents .layoutTyp07 .columnBox .column:nth-child(3n).fade_off {
    transition-delay: 0s;
  }

  #mainContents .layoutTyp07 .columnBox .column .category span {
    padding: 3px 15px 5px;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp07 .columnBox .column .category p {
    font-size: 1.6rem;
  }

  #mainContents .layoutTyp07 .columnBox .column:nth-child(1n) .imgBox.fade_off::before {
    transition-delay: 0s;
  }
  #mainContents .layoutTyp07 .columnBox .column:nth-child(2n) .imgBox.fade_off::before {
    transition-delay: 0s;
  }
  #mainContents .layoutTyp07 .columnBox .column:nth-child(3n) .imgBox.fade_off::before {
    transition-delay: 0s;
  }
  #mainContents .layoutTyp07 .columnBox .column a:hover .imgBox img {
    opacity: 1.0;
  }
  #mainContents .layoutTyp07 .columnBox .column h3 {
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp07 .columnBox .column p {
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp07 .columnBox .column p span.day span {
    font-size: 1.1rem;
  }
  #mainContents .layoutTyp07 .columnBox .column .iconSet {
    padding: 5px 15px 8px;
    font-size: 1.6rem;
  }

  /* #mainContents .layoutTyp07 .noSearch {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp07 .noSearch p {
    font-size: 1.6rem;
  } */

  #mainContents .layoutTyp07 .link01 {
    width: 260px;
    height: 60px;
    margin: 0 auto;
    padding: 25px 0 100px;
  }
  #mainContents .layoutTyp07 .link01 a {
    width: 100%;
    height: 100%;
    padding: 20px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp07 .link01 a::after {
    right: 20px;
    width: 14px;
    height: 14px;
    margin: -7px 0 0;
  }
  #mainContents .layoutTyp07 .noProgram {
    padding: 50px 0;
    text-align: center;
  }
  #mainContents .layoutTyp07 .noProgram p {
    font-size: 1.6rem;
  }
}


#mainContents .layoutTyp08 {
  width: 100%;
  padding: 100px 0 0;
}
#mainContents .layoutTyp08 .layoutTyp08_Area {
  position: relative;
  width: 1100px;
  margin: 0 auto;
}
#mainContents .layoutTyp08 h3 {
  padding: 0 0 20px;
  font-size: 4.0rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .layoutTyp08 .category {
  padding: 0 0 10px;
}
#mainContents .layoutTyp08 .category span {
  display: inline-block;
  padding: 7px 20px 9px;
  background-color: #3c3c3c;
  border-radius: 3px;
  font-size: 2.0rem;
  font-weight: 400;
  text-align: center;
  color: #FFF;
  letter-spacing: 3.6px;
}
#mainContents .layoutTyp08 .category p {
  display: inline;
  padding: 5px 0 0 10px;
  font-size: 2.0rem;
  font-weight: 400;
}
#mainContents .layoutTyp08 p.date {
  position: absolute;
  right: 0;
  bottom: 20px;
  font-size: 2.0rem;
}
#mainContents .layoutTyp08 p.date span {
  font-size: 1.2rem;
}

#mainContents .layoutTyp08 p.date_text {
  position: absolute;
  right: 0;
  bottom: 20px;
  font-size: 2.0rem;
}

#mainContents .layoutTyp08_Img .imgMv {
  width: 100%;
  margin: 0 auto 80px;
  opacity: 0;
}
#mainContents .layoutTyp08_Img .imgMv div {
  margin: 0;
  text-align: center;
}
#mainContents .layoutTyp08_Img .imgMv div img {
  height: 680px;
  margin: 0 10px;
}
#mainContents .layoutTyp08_Img .imgMv .slick-dots {
  bottom: -80px;
}
#mainContents .layoutTyp08_Img .imgMv .slick-dots li {
  margin: 0 7px;
}
#mainContents .layoutTyp08_Img .imgMv .slick-dots li button:before {
  width: 15px;
  height: 15px;
  font-size: 0;
  color: #c9caca;
  background-color: #c9caca;
  border-radius: 10px;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  content: '•';
  text-align: center;
  opacity: 1;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#mainContents .layoutTyp08_Img .imgMv .slick-dots li.slick-active button:before {
  background-color: #3c3c3c;
}

#mainContents .layoutTyp08 p.text01 {
  font-size: 2.0rem;
  line-height: 1.8;
}

#mainContents .layoutTyp08 .layoutTyp08_Info {
  width: 100%;
  margin: 80px 0 0;
  background-color: #f0f0f0;
}
#mainContents .layoutTyp08 table {
  width: 1000px;
  margin: 0 auto;
}
#mainContents .layoutTyp08 table tr {
  border-bottom: 1px solid #FFF;
}
#mainContents .layoutTyp08 table th {
  width: 230px;
  padding: 30px 0 30px 20px;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
  vertical-align: middle;
}
#mainContents .layoutTyp08 table td {
  padding: 30px 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  vertical-align: middle;
}
#mainContents .layoutTyp08 table td .link01 {
  width: 400px;
  height: 80px;
  padding: 0 0 20px;
}
#mainContents .layoutTyp08 table td .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 24px 0 0;
  box-sizing: border-box;
  background-color: #e7e700;
  border: 1px solid #3d3a39;
  font-size: 2.0rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
}
#mainContents .layoutTyp08 table td .link01 a::after {
  position: absolute;
  right: 25px;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp08 table td .link01 a:hover {
  text-decoration: none;
}
#mainContents .layoutTyp08 table td a.link02 {
  position: relative;
  display: inline-block;
  padding: 0;
  text-decoration: underline;
}
#mainContents .layoutTyp08 table td a.link02::after {
  position: absolute;
  right: -28px;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp08 table td a.link02:hover {
  opacity: 0.7;
}
#mainContents .layoutTyp08 table td p {
  padding: 0 0 20px;
}
#mainContents .layoutTyp08 table td ul {
  padding: 0 0 0 30px;
}


#mainContents .layoutTyp08 .voice_Area {
  padding: 60px 0 0;
}
#mainContents .layoutTyp08 .voice_Area .voice_Box {
  width: 100%;
  background-image: url("../img/program/voice_bk01.jpg");
  background-size: cover;
  display: flex;
  justify-content: space-between;
}
#mainContents .layoutTyp08 .voice_Area .voice_Box .voice_L {
  width: 280px;
  padding: 0 0 0 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
#mainContents .layoutTyp08 .voice_Area .voice_Box .voice_L h4 {
  font-size: 2.0rem;
  font-weight: 700;
}
#mainContents .layoutTyp08 .voice_Area .voice_Box .voice_R {
  width: 820px;
  padding: 30px 0 0;
}
#mainContents .layoutTyp08 .voice_Area .voice_Box .voice_R .columnBox {
  width: 100%;
  padding: 0 0 30px;
  display: flex;
  justify-content: start;
}
#mainContents .layoutTyp08 .voice_Area .voice_Box .voice_R .columnBox .column_L {
  width: 85px;
}
#mainContents .layoutTyp08 .voice_Area .voice_Box .voice_R .columnBox .column_L img {
  width: 85px;
  height: 85px;
  object-fit: cover;
}
#mainContents .layoutTyp08 .voice_Area .voice_Box .voice_R .columnBox .column_R {
  margin: 0 0 0 20px;
}
#mainContents .layoutTyp08 .voice_Area .voice_Box .voice_R .columnBox .column_R h5 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .layoutTyp08 .voice_Area .voice_Box .voice_R .columnBox .column_R .audioPlayer {
  margin: 8px 0 0;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp08 {
    width: 100%;
    padding: 40px 0 0;
  }
  #mainContents .layoutTyp08 .layoutTyp08_Area {
    width: calc(100% - 40px);
  }
  #mainContents .layoutTyp08 h3 {
    padding: 0 0 20px;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp08 .category {
    padding: 0 0 10px;
  }
  #mainContents .layoutTyp08 .category span {
    padding: 5px 15px 7px;
    font-size: 1.6rem;
    letter-spacing: 3.2px;
  }
  #mainContents .layoutTyp08 .category p {
    padding: 5px 0 0 10px;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp08 p.date {
    position: static;
    padding: 5px 0 10px;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  #mainContents .layoutTyp08 p.date span {
    font-size: 1.0rem;
  }

  #mainContents .layoutTyp08 p.date_text {
    position: static;
    padding: 5px 0 10px;
    font-size: 1.5rem;
    line-height: 1.6;
  }

  #mainContents .layoutTyp08_Img .imgMv {
    width: 100%;
    margin: 0 auto 30px;
    opacity: 0;
  }
  #mainContents .layoutTyp08_Img .imgMv div {
    margin: 0;
    text-align: center;
  }
  #mainContents .layoutTyp08_Img .imgMv div img {
    height: 250px;
    margin: 0 10px;
  }
  #mainContents .layoutTyp08_Img .imgMv .slick-dots {
    bottom: -35px;
  }
  #mainContents .layoutTyp08_Img .imgMv .slick-dots li {
    width: 5px;
    height: 5px;
    margin: 0 10px;
  }
  #mainContents .layoutTyp08_Img .imgMv .slick-dots li button:before {
    width: 10px;
    height: 10px;
  }

  #mainContents .layoutTyp08 p.text01 {
    font-size: 1.6rem;
    line-height: 1.8;
  }

  #mainContents .layoutTyp08 .layoutTyp08_Info {
    margin: 50px 0 0;
  }
  #mainContents .layoutTyp08 table {
    width: calc(100% - 40px);
  }
  #mainContents .layoutTyp08 table th {
    display: block;
    width: 100%;
    padding: 20px 0 10px;
  }
  #mainContents .layoutTyp08 table td {
    display: block;
    width: 100%;
    padding: 0 0 20px;
  }

  #mainContents .layoutTyp08 table td .link01 {
    width: 260px;
    height: 60px;
    margin: 0 auto;
    padding: 0 0 20px;
  }
  #mainContents .layoutTyp08 table td .link01 a {
    padding: 7px 0 0;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp08 table td .link01 a::after {
    right: 20px;
    width: 14px;
    height: 14px;
    margin: -6px 0 0;
  }
  #mainContents .layoutTyp08 table td .link01 a:hover {
    text-decoration: none;
  }

  #mainContents .layoutTyp08 table td ul {
    padding: 0 0 0 20px;
  }

  #mainContents .layoutTyp08 .voice_Area {
    padding: 25px 0 0;
  }
  #mainContents .layoutTyp08 .voice_Area h4 {
    padding: 0 0 15px;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp08 .voice_Area .voice_Box {
    background-image: url("../img/program/voice_bk01_sp.jpg");
  }
  #mainContents .layoutTyp08 .voice_Area .voice_Box .voice_L {
    display: none;
  }
  #mainContents .layoutTyp08 .voice_Area .voice_Box .voice_R {
    width: 100%;
    padding: 20px 20px 0;
    box-sizing: border-box;
  }
  #mainContents .layoutTyp08 .voice_Area .voice_Box .voice_R .columnBox {
    padding: 0 0 20px;
  }
  #mainContents .layoutTyp08 .voice_Area .voice_Box .voice_R .columnBox .column_L {
    width: 85px;
  }
  #mainContents .layoutTyp08 .voice_Area .voice_Box .voice_R .columnBox .column_L img {
    width: 85px;
    height: 85px;
    object-fit: cover;
  }
  #mainContents .layoutTyp08 .voice_Area .voice_Box .voice_R .columnBox .column_R {
    margin: 0 0 0 20px;
  }
  #mainContents .layoutTyp08 .voice_Area .voice_Box .voice_R .columnBox .column_R h5 {
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp08 .voice_Area .voice_Box .voice_R .columnBox .column_R .audioPlayer {
    width: 100%;
  }
  #mainContents .layoutTyp08 .voice_Area .voice_Box .voice_R .columnBox .column_R .audioPlayer audio {
    width: 200px;
  }
}


#mainContents .layoutTyp09 {
  width: 644px;
  margin: 0 auto;
}
#mainContents .layoutTyp09 h3 {
  position: relative;
  margin: 0 0 20px;
  padding: 90px 0 20px;
  border-bottom: 1px solid #707070;
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
}
#mainContents .layoutTyp09 h4 {
  padding: 30px 0 20px;
  font-size: 2.0rem;
  font-weight: 500;
}
#mainContents .layoutTyp09 table {
  width: 100%;
}
#mainContents .layoutTyp09 table th {
  width: 120px;
  padding: 0 0 15px;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}
#mainContents .layoutTyp09 table td {
  padding: 0 0 15px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp09 p {
  padding: 0 0 15px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp09 .link01,
#mainContents .layoutTyp09 .link02 {
  width: 352px;
  margin: 0 auto;
  padding: 25px 0 0;
}
#mainContents .layoutTyp09 .link01 a,
#mainContents .layoutTyp09 .link02 a {
  position: relative;
  display: block;
  width: 352px;
  height: 60px;
  padding: 19px 25px 0;
  border: 1px solid #3D3D3D;
  box-sizing: border-box;
  font-size: 2.0rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp09 .link01 a::after,
#mainContents .layoutTyp09 .link02 a::after {
  position: absolute;
  right: 25px;
  top: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0;
  background-image: url("../img/icon10.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp09 .link02 a::after {
  width: 38px;
  height: 33px;
  margin: -17px 0 0;
  background-image: url("../img/icon13.svg");
}
#mainContents .layoutTyp09 .link01 a:hover,
#mainContents .layoutTyp09 .link02 a:hover {
  text-decoration: none;
  background-color: #E6E400;
  border: 1px solid #E6E400;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp09 {
    width: calc(100% - 40px);
    padding: 0 0 50px;
  }
  #mainContents .layoutTyp09 h3 {
    margin: 0 0 30px;
    padding: 70px 0 10px;
    font-size: 2.8rem;
  }
  #mainContents .layoutTyp09 h4 {
    padding: 30px 0 10px;
  }
  #mainContents .layoutTyp09 table th {
    width: 60px;
    padding: 0 0 10px;
  }
  #mainContents .layoutTyp09 table.typ01 th {
    width: 108px;
  }
  #mainContents .layoutTyp09 table td {
    padding: 0 0 10px;
  }
  #mainContents .layoutTyp09 p {
    padding: 0 0 10px;
  }
  #mainContents .layoutTyp09 .link01,
  #mainContents .layoutTyp09 .link02 {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 25px 0 0;
  }
  #mainContents .layoutTyp09 .link01 a,
  #mainContents .layoutTyp09 .link02 a {
    width: 100%;
    padding: 19px 20px 0;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp09 .link01 a::after,
  #mainContents .layoutTyp09 .link02 a::after {
    right: 20px;
  }
}

#mainContents .layoutTyp10 {
  width: 1000px;
  margin: 0 auto;
  padding: 0 0 50px;
}
#mainContents .layoutTyp10 h3 {
  position: relative;
  margin: 0 0 70px;
  padding: 100px 0 0;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .layoutTyp10 h3::before {
  position: absolute;
  left: 50%;
  bottom: -25px;
  width: 300px;
  height: 7px;
  margin: 0 0 0 -150px;
  background-image: url("../img/title_bk01.png");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp10 .columnBox {
  width: 100%;
  padding: 0 0 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#mainContents .layoutTyp10 .columnBox img {
  padding: 0 26px 40px 0;
}
#mainContents .layoutTyp10 .columnBox a:nth-child(6) img,
#mainContents .layoutTyp10 .columnBox a:nth-child(7) img,
#mainContents .layoutTyp10 .columnBox a:nth-child(8) img,
#mainContents .layoutTyp10 .columnBox a:nth-child(9) img,
#mainContents .layoutTyp10 .columnBox a:nth-child(10) img {
  padding-right: 35px;
}
#mainContents .layoutTyp10 .columnBox a:nth-child(5) img,
#mainContents .layoutTyp10 .columnBox a:nth-child(10) img,
#mainContents .layoutTyp10 .columnBox a:nth-child(12) img {
  padding-right: 0;
}
#mainContents .layoutTyp10 .link01 {
  width: 400px;
  height: 67px;
  margin: 40px auto 0;
}
#mainContents .layoutTyp10 .link01 a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 22px 0 0;
  box-sizing: border-box;
  background-color: #3C3C3C;
  font-size: 2.0rem;
  font-weight: 600;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp10 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp10 {
    width: calc(100% - 40px);
    padding: 0 0 50px;
  }
  #mainContents .layoutTyp10 h3 {
    margin: 0 0 55px;
    padding: 60px 0 0;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp10 h3::before {
    bottom: -20px;
    width: 250px;
    height: 6px;
    margin: 0 0 0 -125px;
  }
  #mainContents .layoutTyp10 .columnBox {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 30px;
  }
  #mainContents .layoutTyp10 .columnBox img {
    width: auto;
    height: 60px;
    padding: 0 5px 20px;
  }
  #mainContents .layoutTyp10 .columnBox a:nth-child(6) img,
  #mainContents .layoutTyp10 .columnBox a:nth-child(7) img,
  #mainContents .layoutTyp10 .columnBox a:nth-child(8) img,
  #mainContents .layoutTyp10 .columnBox a:nth-child(9) img,
  #mainContents .layoutTyp10 .columnBox a:nth-child(10) img {
    padding-right: 10px;
  }
  #mainContents .layoutTyp10 .columnBox a:nth-child(5) img,
  #mainContents .layoutTyp10 .columnBox a:nth-child(10) img,
  #mainContents .layoutTyp10 .columnBox a:nth-child(12) img {
    padding-right: 10px;
  }
  #mainContents .layoutTyp10 .link01 {
    width: 300px;
    height: 64px;
    margin: 0 auto;
  }
  #mainContents .layoutTyp10 .link01 a {
    padding: 23px 0 0;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp10 .link01 a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

#mainContents .layoutTyp11 {
  width: 1000px;
  margin: 0 auto;
  padding: 0 0 50px;
}
#mainContents .layoutTyp11 h3 {
  position: relative;
  margin: 0 0 90px;
  padding: 100px 0 0;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .layoutTyp11 h3::before {
  position: absolute;
  left: 50%;
  bottom: -25px;
  width: 300px;
  height: 7px;
  margin: 0 0 0 -150px;
  background-image: url("../img/title_bk01.png");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp11 .columnBox {
  width: 100%;
  margin: 0 0 80px;
  padding: 50px;
  box-sizing: border-box;
  border: 1px solid #3C3C3C;
}
#mainContents .layoutTyp11 .columnBox h4 {
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.4;
}
#mainContents .layoutTyp11 .columnBox p.text01 {
  padding: 10px 0 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp11 .columnBox .columnSubBox {
  width: 100%;
  padding: 30px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp11 .columnBox .columnSubBox .columnSub_L {
  width: 250px;
}
#mainContents .layoutTyp11 .columnBox .columnSubBox .columnSub_L img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp11 .columnBox .columnSubBox .columnSub_R {
  width: 615px;
}
#mainContents .layoutTyp11 .columnBox .columnSubBox .columnSub_R p.text02 {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp11 {
    width: calc(100% - 40px);
    padding: 0 0 50px;
  }
  #mainContents .layoutTyp11 h3 {
    margin: 0 0 55px;
    padding: 60px 0 0;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp11 h3::before {
    bottom: -20px;
    width: 250px;
    height: 6px;
    margin: 0 0 0 -125px;
  }
  #mainContents .layoutTyp11 .columnBox {
    margin: 0 0 50px;
    padding: 30px 20px;
  }
  #mainContents .layoutTyp11 .columnBox h4 {
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp11 .columnBox .columnSubBox {
    width: 100%;
    padding: 20px 0 0;
  }
  #mainContents .layoutTyp11 .columnBox .columnSubBox .columnSub_L {
    width: 100%;
    padding: 0 0 20px;
  }
  #mainContents .layoutTyp11 .columnBox .columnSubBox .columnSub_R {
    width: 100%;
  }
}


#mainContents .layoutTyp12 {
  width: 1100px;
  margin: 0 auto;
  padding: 0 0 150px;
}
#mainContents .layoutTyp12 h3 {
  position: relative;
  margin: 0 0 50px;
  padding: 0 0 20px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
#mainContents .layoutTyp12 h3::before {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background-image: url("../img/volunteer/volunteer_bar01.jpg");
  background-size: cover;
  background-position: center;
  content: "";
}
#mainContents .layoutTyp12 h4 {
  padding: 0 0 10px;
  font-size: 2.0rem;
  font-weight: 500;
}
#mainContents .layoutTyp12 p {
  padding: 0 0 20px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp12 .link01 {
  width: 1060px;
  margin: 0 auto;
  padding: 50px 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#mainContents .layoutTyp12 .link01 a {
  position: relative;
  display: block;
  width: 500px;
  height: 100px;
  padding: 36px 0 0;
  box-sizing: border-box;
  background-color: #FFF;
  border: 1px solid #3d3a39;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}
#mainContents .layoutTyp12 .link01 a:nth-child(2) {
  margin: 0 0 0 60px;
}
#mainContents .layoutTyp12 .link01 a span {
  font-size: 1.5rem;
}
#mainContents .layoutTyp12 .link01 a::after {
  position: absolute;
  right: 35px;
  top: 50%;
  width: 28px;
  height: 32px;
  margin: -16px 0 0;
  background-image: url("../img/icon10.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp12 .link01 a:hover {
  text-decoration: none;
}

#mainContents .layoutTyp12 .link02 {
  width: 500px;
  height: 100px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#mainContents .layoutTyp12 .link02 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 36px 0 0;
  box-sizing: border-box;
  background-color: #FFF;
  border: 1px solid #3d3a39;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
}
#mainContents .layoutTyp12 .link02 a::after {
  position: absolute;
  right: 35px;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp12 .link02 a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp12 {
    width: calc(100% - 40px);
    padding: 0 0 50px;
  }
  #mainContents .layoutTyp12 h3 {
    margin: 0 0 30px;
    padding: 0 0 10px;
    font-size: 2.0rem;
    line-height: 1.4;
  }
  #mainContents .layoutTyp12 h4 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  #mainContents .layoutTyp12 p {
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp12 .link01 {
    width: 260px;
    margin: 0 auto;
    padding: 0;
  }
  #mainContents .layoutTyp12 .link01 a {
    width: 260px;
    height: 60px;
    margin: 0 0 20px;
    padding: 20px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp12 .link01 a:nth-child(2) {
    margin: 0;
    padding: 20px 25px 0 0;
    letter-spacing: -0.1em;
  }
  #mainContents .layoutTyp12 .link01 a span {
    font-size: 1.2rem;
  }
  #mainContents .layoutTyp12 .link01 a::after {
    right: 20px;
    width: 14px;
    height: 16px;
    margin: -8px 0 0;
  }

  #mainContents .layoutTyp12 .link02 {
    width: 260px;
    height: 60px;
    margin: 0 auto;
    padding: 25px 0 0;
  }
  #mainContents .layoutTyp12 .link02 a {
    width: 100%;
    height: 100%;
    padding: 20px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp12 .link02 a::after {
    right: 20px;
    width: 14px;
    height: 14px;
    margin: -7px 0 0;
  }
}


#mainContents .layoutTyp13 {
  width: 100%;
  padding: 0 0 100px;
  background-color: #EFEFEF;
}
#mainContents .layoutTyp13 .layoutTyp13_Area {
  width: 750px;
  margin: 0 auto;
  padding: 0 0 50px;
}
#mainContents .layoutTyp13 h3 {
  position: relative;
  margin: 0 0 70px;
  padding: 100px 0 0;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .layoutTyp13 h3::before {
  position: absolute;
  left: 50%;
  bottom: -25px;
  width: 300px;
  height: 7px;
  margin: 0 0 0 -150px;
  background-image: url("../img/title_bk01.png");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp13 p.text01 {
  padding: 10px 0 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 35px;
}
#mainContents .layoutTyp13 table {
  width: 785px;
  margin: 70px auto 0;
}
#mainContents .layoutTyp13 table th {
  width: 206px;
  padding: 20px 80px 20px 0;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: right;
}
#mainContents .layoutTyp13 table td {
  padding: 20px 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
}
#mainContents .layoutTyp13 p.text02 {
  padding: 30px 0 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 35px;
  text-align: center;
}
#mainContents .layoutTyp13 .columnBox {
  width: 100%;
  margin: 50px 0 0;
  background-color: #FFF;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp13 .columnBox .column_L {
  width: 300px;
}
#mainContents .layoutTyp13 .columnBox .column_L img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp13 .columnBox .column_R {
  /* width: 655px;
  padding: 50px 75px 0 0; */
  width: 415px;
  padding: 40px 20px 0 0;
  box-sizing: border-box;
}
#mainContents .layoutTyp13 .columnBox .column_R h4 {
  font-size: 2.4rem;
  font-weight: 600;
}
#mainContents .layoutTyp13 .columnBox .column_R h5 {
  padding: 20px 0 0;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.6;
}
#mainContents .layoutTyp13 .columnBox .column_R h5 a {
  text-decoration: underline;
}
#mainContents .layoutTyp13 .columnBox .column_R h5 a:hover {
  opacity: 0.7;
}
#mainContents .layoutTyp13 .columnBox .column_R p {
  padding: 25px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp13 .link01 {
  width: 500px;
  margin: 50px auto 0;
}
#mainContents .layoutTyp13 .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 22px 0;
  box-sizing: border-box;
  background-color: #3C3C3C;
  font-size: 2.0rem;
  font-weight: 600;
  color: #FFF;
  text-align: center;
  line-height: 1.4;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp13 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp13 {
    padding: 0 0 50px;
  }
  #mainContents .layoutTyp13 .layoutTyp13_Area {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0 0 50px;
  }
  #mainContents .layoutTyp13 h3 {
    margin: 0 0 55px;
    padding: 60px 0 0;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp13 h3::before {
    bottom: -20px;
    width: 250px;
    height: 6px;
    margin: 0 0 0 -125px;
  }
  #mainContents .layoutTyp13 table {
    width: 100%;
    margin: 40px 0 0;
  }
  #mainContents .layoutTyp13 table th {
    display: block;
    width: 100%;
    padding: 0 0 5px 0;
    line-height: 1.4;
    text-align: left;
  }
  #mainContents .layoutTyp13 table td {
    display: block;
    width: 100%;
    padding: 0 0 30px;
    line-height: 1.4;
  }
  #mainContents .layoutTyp13 p.text02 {
    padding: 0;
    text-align: left;
  }
  #mainContents .layoutTyp13 .columnBox {
    margin: 30px 0 0;
  }
  #mainContents .layoutTyp13 .columnBox .column_L {
    width: 100%;
    padding: 0 0 20px;
  }
  #mainContents .layoutTyp13 .columnBox .column_R {
    width: 100%;
    padding: 0 20px 30px;
  }
  #mainContents .layoutTyp13 .columnBox .column_R p {
    padding: 20px 0 0;
  }
  #mainContents .layoutTyp13 .link01 {
    width: 300px;
    height: auto;
  }
  #mainContents .layoutTyp13 .link01 a {
    padding: 20px 0;
    line-height: 1.4;
  }
}


#mainContents .layoutTyp14 {
  width: 100%;
  padding: 100px 0;
  background-color: #EFEFEF;
}
#mainContents .layoutTyp14 .layoutTyp14_Area {
  width: 750px;
  margin: 0 auto;
  padding: 0 0 50px;
}
#mainContents .layoutTyp14 .link01 {
  width: 500px;
  margin: 50px auto 0;
}
#mainContents .layoutTyp14 .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 22px 0;
  box-sizing: border-box;
  background-color: #3C3C3C;
  font-size: 2.0rem;
  font-weight: 600;
  color: #FFF;
  text-align: center;
  line-height: 1.4;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp14 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp14 {
    padding: 50px 0;
  }
  #mainContents .layoutTyp14 .layoutTyp14_Area {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0 0 50px;
  }
  #mainContents .layoutTyp14 .link01 {
    width: 300px;
    height: auto;
  }
  #mainContents .layoutTyp14 .link01 a {
    padding: 20px 0;
    line-height: 1.4;
  }
}


#mainContents .layoutTyp15 {
  width: 1100px;
  margin: 0 auto;
  padding: 0 0 150px;
}
#mainContents .layoutTyp15 h3 {
  position: relative;
  margin: 0 0 50px;
  padding: 0 0 20px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
#mainContents .layoutTyp15 h3::before {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background-image: url("../img/volunteer/volunteer_bar01.jpg");
  background-size: cover;
  background-position: center;
  content: "";
}
#mainContents .layoutTyp15 h4 {
  padding: 0 0 10px;
  font-size: 2.0rem;
  font-weight: 500;
}
#mainContents .layoutTyp15 h5 {
  padding: 50px 0 0;
  font-size: 2.0rem;
  font-weight: 500;
  text-align: center;
}
#mainContents .layoutTyp15 p.text01 {
  padding: 0 0 20px;
  font-size: 1.4rem;
  text-align: right;
}
#mainContents .layoutTyp15 .textArea {
  width: 100%;
  padding: 40px 70px 20px;
  box-sizing: border-box;
  border-radius: 4px;
  background-color:#ebebeb;
}
#mainContents .layoutTyp15 .textArea ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
#mainContents .layoutTyp15 .textArea ul li {
  width: 21.2%;
  padding: 0 5% 20px 0;
  font-size: 1.6rem;
  line-height: 1.4;
}
#mainContents .layoutTyp15 .textArea ul li:nth-child(4n) {
  padding: 0 0 20px 0;
}
#mainContents .layoutTyp15 .columnBox {
  width: 100%;
  margin: 50px 0 0;
  padding: 40px 40px 20px;
  box-sizing: border-box;
  background-color:#ebebeb;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#mainContents .layoutTyp15 .columnBox img {
  width: 300px;
  height: auto;
  padding: 0 10px 20px;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp15 {
    width: calc(100% - 40px);
    padding: 0 0 50px;
  }
  #mainContents .layoutTyp15 h3 {
    margin: 0 0 30px;
    padding: 0 0 10px;
    font-size: 2.0rem;
    line-height: 1.4;
  }
  #mainContents .layoutTyp15 h4 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  #mainContents .layoutTyp15 h5 {
    padding: 30px 0 0;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp15 .textArea {
    width: 100%;
    padding: 20px 20px 10px;
  }
  #mainContents .layoutTyp15 .textArea ul {
    width: 100%;
    justify-content: space-between;
  }
  #mainContents .layoutTyp15 .textArea ul li {
    width: 48%;
    padding: 0 0 15px;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp15 .textArea ul li:nth-child(4n) {
    padding: 0 0 15px;
  }
  #mainContents .layoutTyp15 .columnBox {
    margin: 30px 0 0;
    padding: 20px 20px 5px;
  }
  #mainContents .layoutTyp15 .columnBox img {
    width: 100%;
    height: auto;
    padding: 0 0 15px;
  }
}

#mainContents .layoutTyp16 {
  width: 720px;
  margin: 0 auto;
  padding: 150px 0 0;
}
#mainContents .layoutTyp16 ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#mainContents .layoutTyp16 ul li {
  position: relative;
  width: 172px;
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
}
#mainContents .layoutTyp16 ul li:nth-child(2),
#mainContents .layoutTyp16 ul li:nth-child(3) {
  font-weight: 400;
  color: #888888;
}
#mainContents .layoutTyp16 ul li:before {
  display: block;
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 100%;
  height: 2px;
  margin: 0 0 0 -50%;
  background-color: #707070;
  content: "";
}
#mainContents .mw_wp_form_preview .layoutTyp16 ul li:nth-child(1) {
  font-weight: 400;
  color: #888888;
}
#mainContents .mw_wp_form_preview .layoutTyp16 ul li:nth-child(2) {
  color: #3D3D3D;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp16 {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp16 ul li {
    width: 100%;
    margin: 0 0 40px;
    padding: 0 0 5px;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp16 ul li:before {
    display: block;
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 100%;
    height: 2px;
    margin: 0 0 0 -50%;
    background-color: #707070;
    content: "";
  }
}

#mainContents .layoutTyp17 {
  width: 720px;
  margin: 0 auto;
  padding: 100px 0 0;
}
#mainContents .layoutTyp17 h3 {
  padding: 0 0 50px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
#mainContents .layoutTyp17 table {
  width: 100%;
}
#mainContents .layoutTyp17 table th {
  width: 240px;
  padding: 0 30px 60px 0;
  box-sizing: border-box;
  font-size: 2.0rem;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
}
#mainContents .layoutTyp17 table th span {
  padding: 0 0 0 10px;
  color: #F00;
}
#mainContents .layoutTyp17 table th span.red {
  padding: 0;
  font-size: 1.6rem;
  font-weight: 500;
}
#mainContents .layoutTyp17 table td {
  padding: 0 0 60px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.2;
  vertical-align: middle;
}
#mainContents .mw_wp_form_preview .noPreview {
  display: none;
}
#mainContents .layoutTyp17 input[type="text"],
#mainContents .layoutTyp17 input[type="email"],
#mainContents .layoutTyp17 input[type="tel"] {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 60px;
  padding: 10px 20px;
  box-sizing: border-box;
  border: none;
  background: #f0f0f0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp17 input[type="radio"] {
  margin: -4px 0 0 0;
}
#mainContents .layoutTyp17 input[type="checkbox"] {
  margin: -4px 0 0 0;
}
#mainContents .layoutTyp17 input[type="text"]::placeholder,
#mainContents .layoutTyp17 input[type="email"]::placeholder,
#mainContents .layoutTyp17 input[type="tel"]::placeholder {
  color: #969696;
}
#mainContents .layoutTyp17 input[type="text"]:focus,
#mainContents .layoutTyp17 input[type="email"]:focus,
#mainContents .layoutTyp17 input[type="tel"]:focus {
  outline: none;
}
#mainContents .layoutTyp17 textarea {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 200px;
  padding: 10px 20px;
  border: none;
  background: #f0f0f0;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp17 textarea::placeholder {
  color: #969696;
}
#mainContents .layoutTyp17 textarea:focus {
  outline: none;
}
#mainContents .layoutTyp17 .textBox {
  width: 800px;
  margin: 0 auto;
}
#mainContents .layoutTyp17 h4 {
  font-size: 2.0rem;
  font-weight: 500;
}
#mainContents .layoutTyp17 p {
  padding: 20px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp17 p a {
  text-decoration: underline;
}
#mainContents .layoutTyp17 p a:hover {
  opacity: 0.7;
}
#mainContents .layoutTyp17 .privacyBox {
  width: 100%;
  padding: 70px 0 0;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 600;
}
#mainContents .layoutTyp17 .submitArea {
  width: 500px;
  margin: 0 auto;
  padding: 60px 0 0;
}
#mainContents .layoutTyp17 .submitArea input[type="submit"] {
  -webkit-appearance: none;
  width: 100%;
  height: 60px;
  background-color: #3C3C3C;
  border: none;
  font-size: 2.0rem;
  font-weight: 700;
  color: #FFF;
  cursor: pointer;
}
#mainContents .layoutTyp17 .submitArea input[type="submit"]:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp17 .submitArea input[name="submitBack"] {
  margin: 0 0 20px;
  background-color: #FFF;
  border: 1px solid #027EFC;
  color: #027EFC;
}
#mainContents .layoutTyp17 .error {
  display: block;
  padding: 10px 0;
  font-size: 1.6rem;
  font-weight: 400;
  color: #EB002D;
}
#mainContents .mw_wp_form_preview .noVIew {
  display: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp17 {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 50px 0 0;
  }
  #mainContents .layoutTyp17 table th {
    display: block;
    width: 100%;
    padding: 0 0 10px;
    font-size: 1.6rem;
    text-align: left;
  }
  #mainContents .layoutTyp17 table td {
    display: block;
    width: 100%;
    padding: 10px 0 40px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  #mainContents .layoutTyp17 .textBox {
    width: 100%;
  }
  #mainContents .layoutTyp17 h4 {
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp17 p {
    padding: 10px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp17 .privacyBox {
    padding: 40px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp17 .submitArea {
    width: 300px;
    padding: 40px 0 0;
  }
}

#mainContents .layoutTyp18 {
  width: 750px;
  margin: 0 auto;
  padding: 100px 0 0
}
#mainContents .layoutTyp18 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp18 .columnBox {
  width: 100%;
  background-color: #FFF;
  border: 1px solid #3C3C3C;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp18 .columnBox .column_L {
  width: 300px;
}
#mainContents .layoutTyp18 .columnBox .column_L img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp18 .columnBox .column_R {
  /* width: 655px;
  padding: 50px 75px 0 0; */
  width: 415px;
  padding: 40px 20px 0 0;
  box-sizing: border-box;
}
#mainContents .layoutTyp18 .columnBox .column_R h4 {
  font-size: 2.4rem;
  font-weight: 600;
}
#mainContents .layoutTyp18 .columnBox .column_R h5 {
  padding: 20px 0 0;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.6;
}
#mainContents .layoutTyp18 .columnBox .column_R p {
  padding: 25px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp18 .link01 {
  width: 500px;
  margin: 50px auto 0;
}
#mainContents .layoutTyp18 .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 22px 0;
  box-sizing: border-box;
  background-color: #3C3C3C;
  font-size: 2.0rem;
  font-weight: 600;
  color: #FFF;
  text-align: center;
  line-height: 1.4;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp18 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp18 {
    width: calc(100% - 40px);
    padding: 50px 0 0
  }
  #mainContents .layoutTyp18 .columnBox .column_L {
    width: 100%;
    padding: 0 0 20px;
  }
  #mainContents .layoutTyp18 .columnBox .column_R {
    width: 100%;
    padding: 0 20px 30px;
  }
  #mainContents .layoutTyp18 .columnBox .column_R p {
    padding: 20px 0 0;
  }
  #mainContents .layoutTyp18 .link01 {
    width: 300px;
    height: auto;
  }
  #mainContents .layoutTyp18 .link01 a {
    padding: 20px 0;
    line-height: 1.4;
  }
}

#mainContents .layoutTyp19 {
  width: 220px;
  margin: 0 auto;
  padding: 80px 0 0;
}
#mainContents .layoutTyp19 h2 {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
#mainContents .layoutTyp19 ul {
  width: 100%;
  padding: 20px 0 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp19 ul li {
  width: 40px;
  height: 40px;
}
#mainContents .layoutTyp19 ul li img {
  width: 100%;
  height: auto;
}

#mainContents .layoutTyp20 {
  width: 750px;
  margin: 0 auto;
  padding: 100px 0 0;
}
#mainContents .layoutTyp20 h3 {
  padding: 0 0 10px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .layoutTyp20 p {
  padding: 0 0 50px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp20 {
    width: calc(100% - 40px);
    padding: 50px 0 0;
  }
  #mainContents .layoutTyp20 h3 {
    font-size: 2.0rem;
  }
}


#mainContents .layoutTyp21 {
  width: 720px;
  margin: 0 auto;
  padding: 100px 0 0;
}
#mainContents .layoutTyp21 h3 {
  padding: 0 0 10px;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .layoutTyp21 p {
  padding: 0 0 40px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp21 p a {
  text-decoration: underline;
}
#mainContents .layoutTyp21 p a:hover {
  opacity: 0.7;
}
#mainContents .layoutTyp21 ul {
  padding: 0 0 40px 40px;
}
#mainContents .layoutTyp21 ul li {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp21 {
    width: calc(100% - 40px);
    padding: 50px 0 0;
  }
}


#mainContents .layoutTyp22 {
  width: 750px;
  margin: 0 auto;
  padding: 60px 0 0;
}
#mainContents .layoutTyp22 .column {
  width: 100%;
  padding: 25px 10px;
  border-bottom: 1px solid #CCC;
  box-sizing: border-box;
}
#mainContents .layoutTyp22 .column a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp22 .column h3 {
  position: relative;
  padding: 0 0 5px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .layoutTyp22 .column h3.blank {
  padding: 0 0 0 30px;
}
#mainContents .layoutTyp22 .column h3.blank::after {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp22 .column p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp22 .column p.link {
  color: #82d2b4;
  font-weight: 700;
}
#mainContents .layoutTyp22 .noSearch {
  width: 100%;
  padding: 50px 0 0;
  text-align: center;
}
#mainContents .layoutTyp22 .noSearch p {
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp22 {
    width: calc(100% - 40px);
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp22 .column {
    padding: 15px 0;
  }
  #mainContents .layoutTyp22 .column h3 {
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp22 .column h3.blank {
    padding: 0 0 0 20px;
  }
  #mainContents .layoutTyp22 .column h3.blank::after {
    top: 2px;
    width: 18px;
    height: 18px;
  }
  #mainContents .layoutTyp22 .column p {
    font-size: 1.3rem;
  }
  #mainContents .layoutTyp22 .noSearch {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp22 .noSearch p {
    font-size: 1.6rem;
  }
}


#mainContents .layoutTyp23 {
  width: 750px;
  margin: 0 auto;
  padding: 70px 0 0;
}
#mainContents .layoutTyp23 p {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 3.6px;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp23 {
    width: 100%;
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp23 p {
    padding: 0 20px;
    font-size: 1.6rem;
  }
}

#mainContents .layoutTyp24 {
  width: 1000px;
  margin: 0 auto;
  padding: 70px 0 0;
}
#mainContents .layoutTyp24 img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp24 {
    width: calc(100% - 40px);
    padding: 30px 0 0;
  }
}


#mainContents .layoutTyp25 {
  width: 1100px;
  margin: 0 auto;
  padding: 180px 0 0;
}
#mainContents .layoutTyp25 p {
  padding: 0 0 30px;
  font-size: 2.0rem;
  line-height: 1.8;
}
#mainContents .layoutTyp25 .mvArea {
  width: 100%;
  padding: 0 0 30px;
  opacity: 0;
}
#mainContents .layoutTyp25 .mvArea .bx-wrapper {
  max-width: 100% !important;
  margin: 0 !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
  background: none !important;
}
#mainContents .layoutTyp25 .link01 {
  width: 1060px;
  margin: 0 auto;
  padding: 50px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp25 .link01 a {
  position: relative;
  display: block;
  width: 500px;
  height: 100px;
  padding: 36px 0 0;
  box-sizing: border-box;
  background-color: #FFF;
  border: 1px solid #3d3a39;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}
#mainContents .layoutTyp25 .link01 a span {
  font-size: 1.5rem;
}
#mainContents .layoutTyp25 .link01 a::after {
  position: absolute;
  right: 35px;
  top: 50%;
  width: 28px;
  height: 32px;
  margin: -16px 0 0;
  background-image: url("../img/icon10.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp25 .link01 a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp25 {
    width: calc(100% - 40px);
    padding: 50px 0 0;
  }
  #mainContents .layoutTyp25 p {
    padding: 0 0 20px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  #mainContents .layoutTyp25 .mvArea {
    width: 100%;
    padding: 0 0 30px;
    opacity: 0;
  }
  #mainContents .layoutTyp25 .link01 {
    width: 260px;
    margin: 0 auto;
    padding: 0;
  }
  #mainContents .layoutTyp25 .link01 a {
    width: 260px;
    height: 60px;
    margin: 0 0 20px;
    padding: 20px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp25 .link01 a:nth-child(2) {
    padding: 20px 25px 0 0;
    letter-spacing: -0.1em;
  }
  #mainContents .layoutTyp25 .link01 a span {
    font-size: 1.2rem;
  }
  #mainContents .layoutTyp25 .link01 a::after {
    right: 20px;
    width: 14px;
    height: 16px;
    margin: -8px 0 0;
  }
}


#mainContents .layoutTyp26 {
  width: 1100px;
  margin: 200px auto 0;
  padding: 80px 0;
  background-image: url("../img/volunteer/volunteer_bk01.jpg");
  background-size: cover;
  background-position: center;
}
#mainContents .layoutTyp26 h3 {
  padding: 0 0 30px;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
#mainContents .layoutTyp26 .columnBox {
  width: 680px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp26 .columnBox .column_L {
  width: 132px;
  display: flex;
  align-items: center;
}
#mainContents .layoutTyp26 .columnBox .column_L h4 {
  padding: 10px 0;
  font-size: 2.0rem;
}
#mainContents .layoutTyp26 .columnBox .column_R {
  width: 548px;
  padding: 0 0 0 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
#mainContents .layoutTyp26 .columnBox .column_R p {
  position: relative;
  font-size: 2.0rem;
}
#mainContents .layoutTyp26 .columnBox.typ02 .column_R p {
  padding: 10px 0;
  line-height: 1.4;
}
#mainContents .layoutTyp26 .columnBox .column_R p::before {
  position: absolute;
  left: -40px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #3D3D3D;
  content: "";
}
#mainContents .layoutTyp26 .columnBox .column_R p span {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.8;
}
#mainContents .layoutTyp26 .link01 {
  width: 500px;
  height: 100px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#mainContents .layoutTyp26 .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 36px 0 0;
  box-sizing: border-box;
  background-color: #3d3a39;
  border: 1px solid #3d3a39;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  color: #FFF;
}
#mainContents .layoutTyp26 .link01 a::after {
  position: absolute;
  right: 35px;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0;
  background-image: url("../img/icon11.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp26 .link01 a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp26 {
    width: calc(100% - 40px);
    margin: 80px auto 0;
    padding: 40px 0;
    background-image: url("../img/volunteer/volunteer_bk01_sp.jpg");
  }
  #mainContents .layoutTyp26 h3 {
    padding: 0 0 20px;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp26 .columnBox {
    width: calc(100% - 40px);
    margin: 20px auto 0;
    padding: 0 0 20px;
  }
  #mainContents .layoutTyp26 .columnBox .column_L {
    width: 100%;
    padding: 0 0 15px;
  }
  #mainContents .layoutTyp26 .columnBox .column_L h4 {
    padding: 0;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp26 .columnBox .column_R {
    width: 100%;
    padding: 0;
  }
  #mainContents .layoutTyp26 .columnBox .column_R p {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  #mainContents .layoutTyp26 .columnBox.typ02 .column_R p {
    padding: 0;
  }
  #mainContents .layoutTyp26 .columnBox .column_R p::before {
    left: 0;
    top: -8px;
    width: 100%;
    height: 1px;
  }
  #mainContents .layoutTyp26 .columnBox .column_R p span {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  #mainContents .layoutTyp26 .link01 {
    width: 260px;
    height: 60px;
    margin: 0 auto;
    padding: 10px 0 0;
  }
  #mainContents .layoutTyp26 .link01 a {
    width: 100%;
    height: 100%;
    padding: 7px 0 0;
    font-size: 1.6rem;
    line-height: 1.4;
  }
  #mainContents .layoutTyp26 .link01 a::after {
    right: 20px;
    width: 14px;
    height: 14px;
    margin: -7px 0 0;
  }
}

#mainContents .layoutTyp27 {
  width: 1100px;
  margin: 200px auto 0;
}
#mainContents .layoutTyp27 h3 {
  position: relative;
  margin: 0 0 50px;
  padding: 0 0 20px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
#mainContents .layoutTyp27 h3::before {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background-image: url("../img/volunteer/volunteer_bar01.jpg");
  background-size: cover;
  background-position: center;
  content: "";
}
#mainContents .layoutTyp27 h4 {
  padding: 0 0 20px;
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
}
#mainContents .layoutTyp27 img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp27 p {
  padding: 40px 0;
  font-size: 2.0rem;
  line-height: 1.8;
}
#mainContents .layoutTyp27 .columnBox {
  width: 100%;
  margin: 0 0 20px;
  border: 1px solid #3D3D3D;
  box-sizing: border-box;
}
#mainContents .layoutTyp27 .columnBox a {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp27 .columnBox a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp27 .columnBox .column_L {
  width: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #3D3D3D;
}
#mainContents .layoutTyp27 .columnBox.typ01 .column_L {
  background-color: #e7e700;
}
#mainContents .layoutTyp27 .columnBox.typ02 .column_L {
  background-color: #bfe700;
}
#mainContents .layoutTyp27 .columnBox.typ03 .column_L {
  background-color: #ffb1b5;
}
#mainContents .layoutTyp27 .columnBox.typ04 .column_L {
  background-color: #b3dfda;
}
#mainContents .layoutTyp27 .columnBox .column_L p {
  padding: 0;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.0;
  text-align: center;
}
#mainContents .layoutTyp27 .columnBox .column_L p span {
  display: block;
  padding: 5px 0 0;
  font-size: 1.4rem;
}
#mainContents .layoutTyp27 .columnBox .column_R {
  position: relative;
  width: 827px;
  padding: 20px 40px 20px 40px;
  box-sizing: border-box;
}
#mainContents .layoutTyp27 .columnBox .column_R::after {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 21px;
  height: 11px;
  margin: -5px 0 0;
  background-image: url("../img/icon12.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp27 .columnBox .column_R ul li {
  font-size: 2.0rem;
  line-height: 1.4;
  letter-spacing: -0.1em;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp27 {
    width: calc(100% - 40px);
    margin: 100px auto 0;
  }
  #mainContents .layoutTyp27 h3 {
    margin: 0 0 30px;
    padding: 0 0 10px;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp27 h4 {
    padding: 0 0 15px;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp27 p {
    padding: 30px 0;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp27 .columnBox .column_L {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #3D3D3D;
  }
  #mainContents .layoutTyp27 .columnBox .column_L p {
    padding: 20px 0;
  }
  #mainContents .layoutTyp27 .columnBox .column_R {
    width: 100%;
    padding: 20px 20px 30px 40px;
  }
  #mainContents .layoutTyp27 .columnBox .column_R::after {
    right: 20px;
    top: auto;
    bottom: 20px;
    margin: 0;
  }
  #mainContents .layoutTyp27 .columnBox .column_R ul li {
    padding: 0 0 5px;
    font-size: 1.6rem;
    letter-spacing: 0em;
  }
}


#mainContents .layoutTyp28 {
  width: 1100px;
  margin: 200px auto 0;
}
#mainContents .layoutTyp28 h3 {
  position: relative;
  margin: 0 0 50px;
  padding: 0 0 20px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
#mainContents .layoutTyp28 h3::before {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background-image: url("../img/volunteer/volunteer_bar01.jpg");
  background-size: cover;
  background-position: center;
  content: "";
}
#mainContents .layoutTyp28 table {
  width: 100%;
  border-top: 1px solid #3D3D3D;
  border-right: 1px solid #3D3D3D;
  border-left: 1px solid #3D3D3D;
}
#mainContents .layoutTyp28 table tr {
  border-bottom: 1px solid #3D3D3D;
}
#mainContents .layoutTyp28 table tr td {
  border-left: 1px solid #3D3D3D;
}
#mainContents .layoutTyp28 table tr th {
  width: 130px;
  padding: 20px 0 20px 20px;
  box-sizing: border-box;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}
#mainContents .layoutTyp28 table tr td {
  padding: 20px;
  font-size: 2.0rem;
  line-height: 1.4;
  letter-spacing: -0.1em;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp28 {
    width: calc(100% - 40px);
    margin: 100px auto 0;
  }
  #mainContents .layoutTyp28 h3 {
    margin: 0 0 30px;
    padding: 0 0 10px;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp28 table tr th {
    width: 100px;
    padding: 15px 0 15px 10px;
    font-size: 1.6rem;
    vertical-align: middle;
  }
  #mainContents .layoutTyp28 table tr td {
    padding: 15px;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}


#mainContents .layoutTyp29 {
  width: 1100px;
  margin: 200px auto 0;
  padding: 0 0 60px;
  border: 1px solid #383939;
  box-sizing: border-box;
}
#mainContents .layoutTyp29 h3 {
  position: relative;
  height: 120px;
  margin: 0 0 50px;
  padding: 44px 0 0;
  border-bottom: 1px solid #383939;
  box-sizing: border-box;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
#mainContents .layoutTyp29 h3 span {
  font-size: 1.8rem;
  font-weight: 500;
}
#mainContents .layoutTyp29 h3#p01 {
  background-color: #e7e700;
}
#mainContents .layoutTyp29 h3#p02 {
  background-color: #bfe700;
}
#mainContents .layoutTyp29 h3#p03 {
  background-color: #ffb1b5;
}
#mainContents .layoutTyp29 h3#p04 {
  background-color: #b3dfda;
}
#mainContents .layoutTyp29 table {
  width: 100%;
}
#mainContents .layoutTyp29 table tr td ul {
  padding: 0 0 0 20px;
}
#mainContents .layoutTyp29 table tr td ul li {
  padding: 0 0 15px;
  font-size: 2.0rem;
  line-height: 1.5;
}
#mainContents .layoutTyp29 table tr th {
  width: 225px;
  padding: 20px 20px 20px 0;
  box-sizing: border-box;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: right;
}
#mainContents .layoutTyp29 table tr td {
  padding: 20px;
  font-size: 2.0rem;
  line-height: 1.8;
}
#mainContents .layoutTyp29 table tr td span {
  font-weight: 700;
}
#mainContents .layoutTyp29 .link01 {
  width: 500px;
  height: 100px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#mainContents .layoutTyp29 .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 36px 0 0;
  box-sizing: border-box;
  background-color: #3d3a39;
  border: 1px solid #3d3a39;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  color: #FFF;
}
#mainContents .layoutTyp29 .link01.typ02 a {
  letter-spacing: -0.1em;
}
#mainContents .layoutTyp29 .link01.typ03 a {
  padding: 15px 0 0;
  line-height: 1.4;
}
#mainContents .layoutTyp29 .link01 a.noLink {
  background-color: #CCC;
  border: 1px solid #CCC;
}
#mainContents .layoutTyp29 .link01 a.noLink::after {
  display: none;
}
#mainContents .layoutTyp29 .link01 a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0;
  background-image: url("../img/icon11.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp29 .link01 a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp29 {
    width: calc(100% - 40px);
    margin: 70px auto 0;
    padding: 0 0 40px;
  }
  #mainContents .layoutTyp29 h3 {
    height: auto;
    margin: 0 0 20px;
    padding: 29px 0;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp29 h3 span {
    display: block;
    padding: 5px 0 0;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp29 table {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  #mainContents .layoutTyp29 table tr td ul {
    padding: 0 0 0 20px;
  }
  #mainContents .layoutTyp29 table tr td ul li {
    padding: 0 0 10px;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  #mainContents .layoutTyp29 table tr th {
    display: block;
    width: 100%;
    padding: 20px 0 0 0;
    font-size: 1.6rem;
    text-align: left;
  }
  #mainContents .layoutTyp29 table tr td {
    display: block;
    width: 100%;
    padding: 5px 0 20px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  #mainContents .layoutTyp29 .link01 {
    width: 260px;
    height: 60px;
    margin: 0 auto;
    padding: 25px 0 0;
  }
  #mainContents .layoutTyp29 .link01 a {
    width: 100%;
    height: 100%;
    padding: 20px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp29 .link01.typ02 a,
  #mainContents .layoutTyp29 .link01.typ03 a {
    padding: 6px 0 0;
    letter-spacing: 0em;
    line-height: 1.4;
  }
  #mainContents .layoutTyp29 .link01 a::after {
    right: 15px;
    width: 14px;
    height: 14px;
    margin: -7px 0 0;
  }
}


#mainContents .layoutTyp30 {
  width: 1100px;
  margin: 200px auto 0;
}
#mainContents .layoutTyp30 h3 {
  position: relative;
  margin: 0 0 50px;
  padding: 0 0 20px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
#mainContents .layoutTyp30 h3::before {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background-image: url("../img/volunteer/volunteer_bar01.jpg");
  background-size: cover;
  background-position: center;
  content: "";
}
#mainContents .layoutTyp30 p {
  padding: 0 0 15px;
  font-size: 2.0rem;
  line-height: 1.5;
}
#mainContents .layoutTyp30 ul {
  padding: 0 0 0 20px;
}
#mainContents .layoutTyp30 ul li {
  padding: 0 0 15px;
  font-size: 2.0rem;
  line-height: 1.5;
}
#mainContents .layoutTyp30 ul li span {
  display: block;
  margin: 5px 0 0 20px;
  padding: 15px;
  background-color: #f0f0f0;
}
#mainContents .layoutTyp30 .link01 {
  width: 500px;
  height: 100px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#mainContents .layoutTyp30 .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 0 0;
  box-sizing: border-box;
  background-color: #3d3a39;
  border: 1px solid #3d3a39;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  color: #FFF;
  line-height: 1.4;
}
#mainContents .layoutTyp30 .link01 a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0;
  background-image: url("../img/icon11.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp30 .link01 a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp30 {
    width: calc(100% - 40px);
    margin: 100px auto 0;
  }
  #mainContents .layoutTyp30 h3 {
    margin: 0 0 30px;
    padding: 0 0 10px;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp30 p {
    padding: 0 0 15px;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp30 ul {
    padding: 0 0 0 20px;
  }
  #mainContents .layoutTyp30 ul li {
    padding: 0 0 10px;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  #mainContents .layoutTyp30 ul li span {
    margin: 5px 0 0 10px;
    padding: 10px;
  }
  #mainContents .layoutTyp30 .link01 {
    width: 260px;
    height: 60px;
    margin: 0 auto;
    padding: 25px 0 0;
  }
  #mainContents .layoutTyp30 .link01 a {
    width: 100%;
    height: 100%;
    padding: 7px 0 0;
    font-size: 1.6rem;
    letter-spacing: 0em;
    line-height: 1.3;
  }
  #mainContents .layoutTyp30 .link01 a::after {
    right: 15px;
    width: 14px;
    height: 14px;
    margin: -7px 0 0;
  }
}


#mainContents .layoutTyp31 {
  position: relative;
  width: 100%;
  padding: 35px 0;
  box-sizing: border-box;
  background-image: url("../img/program/program_bk01.jpg");
  background-size: cover;
  background-position: center top;
  transition: all 0.8s ease;
}
#mainContents .layoutTyp31 .loading {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
}
#mainContents .layoutTyp31 .loading img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp31 .layoutTyp31_Area {
  opacity: 0;
  width: 1100px;
  margin: 0 auto;
}
#mainContents .layoutTyp31 .cateArea {
  width: 100%;
  padding: 0 0 30px;
  border-bottom: 1px solid #FFF;
  display: flex;
  justify-content: space-between;
}
#mainContents .layoutTyp31 .cateArea input[type=checkbox] {
  display: none;
}
#mainContents .layoutTyp31 .cateArea label {
  position: relative;
  z-index: 1;
  width: 23%;
  height: 80px;
  padding: 27px 0 0;
  box-sizing: border-box;
  /* background-color: #FFF; */
  font-size: 2.4rem;
  color: #3c3c3c;
  text-align: center;
  cursor: pointer;
}
#mainContents .layoutTyp31 .cateArea label::after {
  position : absolute;
  z-index: -1;
  top : 0;
  left : 0;
  width: 100%;
  height: 80px;
  background: #FFF;
  transform: skewX(-10deg);
  content : "";
}
#mainContents .layoutTyp31 .cateArea input[type=checkbox]:checked + label {
  color: #FFF;
}
#mainContents .layoutTyp31 .cateArea input[type=checkbox]:checked + label::after {
  background-color: #3c3c3c;
}
#mainContents .layoutTyp31 .link01 {
  display: none;
}
#mainContents .layoutTyp31 .dayArea {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #FFF;
  display: flex;
  justify-content: space-between;
}
#mainContents .layoutTyp31 .dayArea input[type=checkbox] {
  display: none;
}
#mainContents .layoutTyp31 .dayArea label {
  position: relative;
  z-index: 1;
  width: 10%;
  height: 40px;
  padding: 7px 0 0 11px;
  box-sizing: border-box;
  /* background-color: #FFF; */
  font-size: 2.2rem;
  color: #3c3c3c;
  text-align: center;
  cursor: pointer;
}
#mainContents .layoutTyp31 .dayArea label[for=day10] {
  padding: 7px 0 0 0;
}
#mainContents .layoutTyp31 .dayArea label span {
  font-size: 1.5rem;
}
#mainContents .layoutTyp31 .dayArea input[type=checkbox]:checked + label {
  color: #FFF;
  background-color: #3c3c3c;
}

#mainContents .layoutTyp31 .areaArea {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #FFF;
  display: flex;
  justify-content: space-between;
}
#mainContents .layoutTyp31 .areaArea input[type=checkbox] {
  display: none;
}
#mainContents .layoutTyp31 .areaArea label {
  position: relative;
  z-index: 1;
  width: auto;
  height: 40px;
  padding: 7px 15px 7px 15px;
  box-sizing: border-box;
  /* background-color: #FFF; */
  font-size: 2.2rem;
  color: #3c3c3c;
  text-align: center;
  cursor: pointer;
}
#mainContents .layoutTyp31 .areaArea input[type=checkbox]:checked + label {
  color: #FFF;
  background-color: #3c3c3c;
}

#mainContents .layoutTyp31 .statusArea {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #FFF;
  display: flex;
  justify-content: center;
}
#mainContents .layoutTyp31 .statusArea input[type=checkbox] {
  display: none;
}
#mainContents .layoutTyp31 .statusArea label {
  position: relative;
  z-index: 1;
  width: auto;
  height: 40px;
  margin: 0 10px;
  padding: 7px 15px 7px 15px;
  box-sizing: border-box;
  /* background-color: #FFF; */
  font-size: 2.2rem;
  color: #3c3c3c;
  text-align: center;
  cursor: pointer;
}
#mainContents .layoutTyp31 .statusArea input[type=checkbox]:checked + label {
  color: #FFF;
  background-color: #3c3c3c;
}

#mainContents .layoutTyp31 .moreArea .link02 {
  display: none;
}
@media only screen and (max-width: 1040px) {

}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp31 {
    position: fixed;
    z-index: 900;
    top: 70px;
    left: 0;
    height: auto;
    padding: 20px 0 15px;
    background-image: url("../img/program/program_bk01_sp.jpg");
    background-size: cover;
    transition: all 1.2s ease;
  }
  #mainContents .layoutTyp31.up {
    top: -155px;
  }
  #mainContents .layoutTyp31.up_more {
    top: -360px;
  }
  #mainContents .layoutTyp31 .loading {
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
  }
  #mainContents .layoutTyp31 .layoutTyp31_Area {
    width: calc(100% - 40px);
  }
  #mainContents .layoutTyp31 .cateArea {
    width: 100%;
    padding: 0 0 20px;
    border-bottom: none;
  }
  #mainContents .layoutTyp31 .cateArea label {
    width: 23%;
    height: 43px;
    padding: 14px 0 0;
    font-size: 1.4rem;
    line-height: 1.2;
  }
  #mainContents .layoutTyp31 .cateArea label[for=cate01],
  #mainContents .layoutTyp31 .cateArea label[for=cate02] {
    padding: 5px 0 0;
  }
  #mainContents .layoutTyp31 .cateArea label::after {
    height: 43px;
  }

  #mainContents .layoutTyp31 .link01 {
    display: block;
    width: 100%;
    min-height: 23px;
    text-align: center;
  }
  #mainContents .layoutTyp31 .link01 a {
    display: inline-block;
    position: relative;
    width: 100%;
    font-size: 1.4rem;
    font-weight: 400;
  }
  #mainContents .layoutTyp31 .link01 a:hover {
    text-decoration: none;
  }
  #mainContents .layoutTyp31 .link01 a::after {
    position: absolute;
    right: 10px;
    top: 3px;
    width: 18px;
    height: 9px;
    background-image: url("../img/icon12.svg");
    background-size: cover;
    content: "";
  }
  #mainContents .layoutTyp31 .link01.close a::after {
    transform: rotate(180deg);
  }
  #mainContents .layoutTyp31 .link01.none a::after {
    display: none;
  }
  #mainContents .layoutTyp31 .link01 .default {
    display: inline;
    padding: 5px 0 5px 0;
  }
  #mainContents .layoutTyp31 .link01 .day,
  #mainContents .layoutTyp31 .link01 .area,
  #mainContents .layoutTyp31 .link01 .status {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 5px 5px;
    padding: 3px 3px 5px 10px;
    font-size: 1.5rem;
    color: #FFF;
    background-color: #3c3c3c;
  }
  #mainContents .layoutTyp31 .link01 .day.other {
    padding: 3px 10px 5px;
  }
  #mainContents .layoutTyp31 .link01 .area {
    padding: 3px 10px 5px 10px;
  }
  #mainContents .layoutTyp31 .link01 .status {
    padding: 3px 10px 5px 10px;
  }

  #mainContents .layoutTyp31 .moreArea {
    display: none;
    /* height: 220px; */
    height: 100vh;
    transition: all 0.8s ease;
  }
  #mainContents .layoutTyp31 .dayArea {
    margin: 20px 0 0;
    padding: 10px 0 0;
    border-top: 1px solid #FFF;
    justify-content: center;
    flex-wrap: wrap;
  }
  #mainContents .layoutTyp31 .dayArea label {
    width: auto;
    height: auto;
    margin: 0 5px 10px;
    padding: 3px 3px 5px 10px;
    font-size: 1.5rem;
  }
  #mainContents .layoutTyp31 .dayArea label[for=day10] {
    padding: 3px 10px 5px;
  }
  #mainContents .layoutTyp31 .dayArea label span {
    font-size: 1.0rem;
  }

  #mainContents .layoutTyp31 .areaArea {
    padding: 10px 0 0;
    justify-content: center;
    flex-wrap: wrap;
  }
  #mainContents .layoutTyp31 .areaArea label {
    width: auto;
    height: auto;
    margin: 0 5px 10px;
    padding: 3px 10px 5px 10px;
    font-size: 1.5rem;
  }

  #mainContents .layoutTyp31 .statusArea {
    padding: 10px 0 0;
    justify-content: center;
    flex-wrap: wrap;
  }
  #mainContents .layoutTyp31 .statusArea label {
    width: auto;
    height: auto;
    margin: 0 5px 10px;
    padding: 3px 10px 5px 10px;
    font-size: 1.5rem;
  }

  #mainContents .layoutTyp31 .moreArea .link02 {
    display: block;
    width: 260px;
    margin: 0 auto;
    padding: 20px 0 0;
  }
  #mainContents .layoutTyp31 .moreArea .link02 a {
    display: block;
    width: 260px;
    height: 42px;
    padding: 14px 0 0;
    box-sizing: border-box;
    background-color: #FFF;
    font-size: 1.4rem;
    text-align: center;
  }
  #mainContents .layoutTyp31 .moreArea .link02 a:hover {
    text-decoration: none;
  }
}

#mainContents .layoutTyp32 {
  width: 643px;
  margin: 0 auto;
  padding: 55px 0 0;
}
#mainContents .layoutTyp32 h3 {
  padding: 0 0 15px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .layoutTyp32 p {
  padding: 0 0 50px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp32 {
    width: calc(100% - 40px);
  }
}


#mainContents .layoutTyp33 {
  width: 100%;
  padding: 40px 0 80px;
  background-color: rgba(61, 61, 61, 0.74);
}
#mainContents .layoutTyp33 .column {
  width: 644px;
  margin: 0 auto;
}
#mainContents .layoutTyp33 .column h3 {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #FFF;
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
}
#mainContents .layoutTyp33 .column img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp33 .column .link_Box {
  width: 100%;
  padding: 20px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp33 .column .link_Box .link01 {
  width: 312px;
  margin: 0 auto;
}
#mainContents .layoutTyp33 .column .link_Box .link01 a {
  position: relative;
  display: block;
  width: 312px;
  height: 60px;
  padding: 19px 25px 0;
  border: 1px solid #3D3D3D;
  border: none;
  background-color: #FFF;
  box-sizing: border-box;
  font-size: 2.0rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp33 .column .link_Box .link01 a::after {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp33 .column .link_Box .link01 a:hover {
  text-decoration: none;
  background-color: #E6E400;
  color: #3D3D3D;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp33 {
    padding: 35px 0 60px;
  }
  #mainContents .layoutTyp33 .column {
    width: calc(100% - 60px);
  }
  #mainContents .layoutTyp33 .column h3 {
    margin: 0 0 30px;
    padding: 0 0 15px;
    font-size: 2.4rem;
  }
  #mainContents .layoutTyp33 .column .link_Box {
    width: calc(100% - 20px);
    margin: 0 auto;
    padding: 50px 0 0;
  }
  #mainContents .layoutTyp33 .column .link_Box .link01 {
    width: 100%;
    margin: 0 0 20px;
  }
  #mainContents .layoutTyp33 .column .link_Box .link01 a {
    width: 100%;
  }
}


/*==========================================
 ページネーションのスタイル
===========================================*/
#mainContents #pagination {
  margin: 50px 0 0;
}
#mainContents #pagination ul {
  text-align: center;
}
#mainContents #pagination ul li {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  vertical-align: middle;
  display: inline-block;
}
#mainContents #pagination ul li a,
#mainContents #pagination ul li span {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 5px 0 0;
  box-sizing: border-box;
  font-size: 1.8rem;
  text-align: center;
  display: block;
  text-decoration: none;
}
#mainContents #pagination ul li span {
  color: #000;
}
#mainContents #pagination ul li span::before {
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 32px;
  height: 3px;
  margin: 0 0 0 -16px;
  background-color: #000;
  content: "";
}
#mainContents #pagination ul li span.dots::before {
  display: none;
}
#mainContents #pagination ul li a:hover {
  opacity: 0.7;
}
#mainContents #pagination ul li a.prev:hover,
#mainContents #pagination ul li a.next:hover {
  opacity: 0.7;
}
#mainContents #pagination ul li a.prev:before {
  content: '';
  height: 10px;
  width: 10px;
  display: block;
  border: 2px solid #000;
  border-left-width: 0;
  border-top-width: 0;
  position: absolute;
  top: 50%;
  left: 14px;
  margin: -6px 0 0 0;
  transform: rotate(-225deg);
}
#mainContents #pagination ul li a.next:after {
  position: absolute;
  top: 50%;
  left: 7px;
  height: 10px;
  width: 10px;
  display: block;
  border: 2px solid #000;
  border-left-width: 0;
  border-top-width: 0;
  margin: -6px 0 0 0;
  transform: rotate(-45deg);
  content: "";
}
@media only screen and (max-width: 767px) {
  #mainContents #pagination {
    padding: 0 0 30px;
  }
  #mainContents #pagination ul li {
    width: 40px;
    height: 40px;
    margin: 0 2px;
  }
  #mainContents #pagination ul li a,
  #mainContents #pagination ul li span {
    width: 40px;
    height: 40px;
    padding: 12px 0 5px 0;
    font-size: 16px;
  }
  #mainContents #pagination ul li a.prev:before {
    height: 12px;
    width: 12px;
    left: 15px;
    margin: -7px 0 0 0;
  }
  #mainContents #pagination ul li a.next:after {
    height: 12px;
    width: 12px;
    left: 10px;
    margin: -7px 0 0 0;
  }
}
