@charset "utf-8";

/*==========================================
 font
===========================================*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
html {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  color: #000;
}

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



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

html {
  background: #FFF;
  overflow: auto;
}
body {
  /* overflow: hidden;
	min-width: 1000px;
  -webkit-text-size-adjust: 100%; */
}
@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;
  }
}

/*==========================================
 ヘッダーのスタイル
===========================================*/
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.png");
  background-size: cover;
  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: 70px;
  }
  header.up {
    top: -80px;
  }
  header #header {
    height: 70px;
    background-image: url("../img/header_bk_sp.png");
  }
  body.top header #header {
  transform: translateY(0);
  }
  header #headerLogoArea {
    left: 20px;
  }
  body.top header #headerLogoArea {
    display: block;
  }
  header #headerLogoArea h1 img {
    width: 267px;
    height: 70px;
  }
}

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: 28px;
    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;
  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;
  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;
  }
}


/*==========================================
 フッターのスタイル
===========================================*/

@media only screen and (min-width: 1040px) and (max-width:10000px) {
  #artsArea {
    width: 1000px;
    margin: 0 auto;
    padding: 100px 0 30px;
  }
  #artsArea img {
    width: 533px;
    height: auto;
  }
  #artsArea p {
    padding: 30px 0 0;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 1040px) {
  #artsArea {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 100px 0 30px;
  }
  #artsArea img {
    width: 533px;
    height: auto;
  }
  #artsArea p {
    padding: 30px 0 0;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  #artsArea {
    width: calc(100% - 40px);
    padding: 50px 0 20px;
  }
  #artsArea img {
    width: 100%;
  }
  #artsArea p {
    padding: 20px 0 0;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
footer {
  width: 100%;
  background-color: #3C3C3C;
}
@media only screen and (min-width: 1040px) and (max-width:10000px) {
  footer #footerBody {
    position: relative;
    width: 1000px;
    height: 550px;
    margin: 0 auto;
    padding: 65px 0 0;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 1040px) {
  footer #footerBody {
    position: relative;
    width: calc(100% - 40px);
    height: 550px;
    margin: 0 auto;
    padding: 65px 0 0;
    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:last-child {
  padding: 0 0 30px 0;
}
footer #footerBody .footer_naviMain ul li a {
  font-size: 1.6rem;
  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 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: 1.6rem;
  color: #FFF;
  transition: all 0.3s ease;
}
footer #footerBody .footer_naviSub01 ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
footer #footerBody .footer_naviSub02 {
  width: 450px;
  padding: 130px 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.3rem;
  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;
  flex-wrap: wrap;
}
footer #footerBody .footer_naviSns ul li {
  width: auto;
  height: 47px;
  padding: 0 25px 0 0;
}
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 #FFF;
  box-sizing: border-box;
}
footer #footerBody .footer_naviContact .column a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 30px;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFF;
  line-height: 1.6;
  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: 30px;
  top: 50%;
  width: 55px;
  height: 39px;
  margin: -20px 0 0;
  background-image: url("../img/icon02.svg");
  background-size: cover;
  content: "";
}
footer #footerBody .footer_naviContact .column:nth-child(2) a::before {
  width: 58px;
  height: 48px;
  margin: -24px 0 0;
  background-image: url("../img/icon03.svg");
}
footer #footerBody small {
  position: absolute;
  right: 0;
  top: 448px;
  font-size: 1.2rem;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  footer #footerBody {
    width: calc(100% - 60px);
    height: auto;
    padding: 50px 0 40px;
  }
  footer #footerBody .footerBodyBox {
    width: 248px;
    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;
    border-bottom: none;
  }
  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_naviSub02 {
    width: 100%;
    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: 12px 30px 0 17px;
    font-size: 1.5rem;
  }
  footer #footerBody .footer_naviContact .column a::before {
    right: 27px;
    width: 49px;
    height: 34px;
    margin: -17px 0 0;
  }
  footer #footerBody .footer_naviContact .column:nth-child(2) a::before {
    width: 52px;
    height: 43px;
    margin: -21px 0 0;
  }
  footer #footerBody small {
    display: block;
    position: static;
    padding: 20px 0 0;
    font-size: 1.4rem;
  }
}


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


/*==========================================
 パンくず
===========================================*/
#pankuzu {
  width: 1000px;
  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: 94%;
    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: 1000px; */
  padding: 80px 0 0 0;
}
body.top #mainContents {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #mainContents {
    padding: 70px 0 0 0;
  }
  body.top #mainContents {
    padding: 70px 0 0 0;
  }
}


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


#mainContents .titleArea01 {
  width: 100%;
  height: 300px;
  padding: 100px 0 0;
  box-sizing: border-box;
  background-image: url("../img/entry/entry_title_bk.png");
  background-size: cover;
  background-position: center top;
}
#mainContents .titleArea01 h2 {
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .titleArea01 p {
  width: 750px;
  margin: 0 auto;
  padding: 20px 0 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #mainContents .titleArea01 {
    height: 275px;
    padding: 55px 0 0;
    background-size: 1046px 400px;
    background-position: -400px top;
  }
  #mainContents .titleArea01 h2 {
    font-size: 2.0rem;
  }
  #mainContents .titleArea01 p {
    width: calc(100% - 40px);
    padding: 30px 0 0;
    line-height: 1.8;
  }
}

#mainContents .titleArea02 {
  width: 100%;
  height: 300px;
  padding: 87px 0 0;
  box-sizing: border-box;
  background-image: url("../img/about/about_title_bk.jpg");
  background-size: cover;
  background-position: center top;
}
#mainContents .titleArea02 h2 {
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .titleArea02 p {
  width: 750px;
  margin: 0 auto;
  padding: 20px 0 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #mainContents .titleArea02 {
    height: 275px;
    padding: 55px 0 0;
    background-size: 1046px 400px;
    background-position: -400px top;
  }
  #mainContents .titleArea02 h2 {
    font-size: 2.0rem;
  }
  #mainContents .titleArea02 p {
    width: calc(100% - 40px);
    padding: 30px 0 0;
    line-height: 1.8;
  }
}

#mainContents .titleArea03 {
  width: 100%;
  height: 300px;
  padding: 87px 0 0;
  box-sizing: border-box;
  background-image: url("../img/supporter/supporter_title_bk.jpg");
  background-size: cover;
  background-position: center top;
}
#mainContents .titleArea03 h2 {
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .titleArea03 p {
  width: 750px;
  margin: 0 auto;
  padding: 20px 0 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #mainContents .titleArea03 {
    height: 275px;
    padding: 55px 0 0;
    background-size: 1046px 400px;
    background-position: -125px top;
  }
  #mainContents .titleArea03 h2 {
    font-size: 2.0rem;
  }
  #mainContents .titleArea03 p {
    width: calc(100% - 40px);
    padding: 30px 0 0;
    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;
  }
}

#ProgramNavi {
  display: none;
}
@media only screen and (max-width: 767px) {
  #ProgramNavi {
    display: block;
    position: fixed;
    z-index: 100;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    padding: 13px 0 0;
    background-color: #FFF;
    transition: all 0.8s ease;
  }
  #ProgramNavi.up {
    bottom: -80px;
  }
  #ProgramNavi ul {
    width: calc(100% - 40px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style-type: none;
  }
  #ProgramNavi ul li {
    width: 31%;
  }
  #ProgramNavi ul li img {
    width: 100%;
    height: auto;
  }
}

/*==========================================
 トップページ
===========================================*/
#mainContents .topTyp01 {
  width: 100%;
  height: auto;
  padding: 0 10%;
  box-sizing: border-box;
  background-image: url("../img/top/top_bk01.jpg");
  background-size: cover;
}
#mainContents .topTyp01 img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents .topTyp01 {
    margin: -1px 0 0;
    padding: 0;
    background-image: none;
  }
}
#mainContents .topTyp02 {
  position: relative;
  width: 100%;
  margin: -1px 0 0;
  padding: 25px 0;
  background-color: #848484;
}
#mainContents .topTyp02 .newsBox {
  position: relative;
  width: 750px;
  margin: 0 auto;
}
#mainContents .topTyp02 .newsBox h3 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #FFF;
}
#mainContents .topTyp02 .newsBox .link01 {
  position: absolute;
  right: 0;
  top: 0;
}
#mainContents .topTyp02 .newsBox .link01 a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFF;
}
#mainContents .topTyp02 .newsBox .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .topTyp02 .newsBox ul {
  width: 100%;
  padding: 20px 0 0;
  list-style-type: none;
}
#mainContents .topTyp02 .newsBox ul li {
  padding: 0 0 10px;
}
#mainContents .topTyp02 .newsBox ul li span {
  padding: 0 30px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFF;
  line-height: 1.4;
}
#mainContents .topTyp02 .newsBox ul li a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFF;
  line-height: 1.4;
}
#mainContents .topTyp02 .newsBox ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .topTyp02 {
    height: auto;
    /* height: 150px; */
    margin: -150px 0 0;
    padding: 15px 0 0;
  }
  #mainContents .topTyp02 .newsBox {
    width: calc(100% - 40px)
  }
  #mainContents .topTyp02 .newsBox h3 {
    font-size: 1.4rem;
  }
  #mainContents .topTyp02 .newsBox .link01 a {
    font-size: 1.4rem;
  }
  #mainContents .topTyp02 .newsBox ul {
    padding: 15px 0 0;
  }
  #mainContents .topTyp02 .newsBox ul li {
    padding: 0 0 10px;
  }
  #mainContents .topTyp02 .newsBox ul li span {
    display: block;
    padding: 0 0 5px 0;
    font-size: 1.4rem;
  }
  #mainContents .topTyp02 .newsBox ul li a {
    font-size: 1.4rem;
  }
}



/*==========================================
 共通レイアウト
===========================================*/
#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.8rem;
  font-weight: 400;
  line-height: 1.4;
}
#mainContents .layoutTyp02 ul li a {
  display: block;
  padding: 0 0 0 140px;
  font-size: 1.8rem;
  font-weight: 500;
  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.4rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .layoutTyp03 .entryBody {
  width: 100%;
  padding: 15px 0 0;
}
#mainContents .layoutTyp03 .entryBody img {
  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: 2.0;
}
#mainContents .layoutTyp03 .entryBody p a {
  text-decoration: underline;
}
#mainContents .layoutTyp03 .entryBody p a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp03 {
    width: calc(100% - 40px);
    padding: 25px 0 0;
  }
  #mainContents .layoutTyp03 p.date {
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp03 h3 {
    padding: 10px 0 0;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp03 .entryBody img {
    padding: 0 0 20px;
  }
  #mainContents .layoutTyp03 .entryBody p {
    padding: 0 0 30px;
    font-size: 1.4rem;
  }
}


#mainContents .layoutTyp04 {
  width: 750px;
  margin: 0 auto;
  padding: 100px 0 0;
}
#mainContents .layoutTyp04 iframe {
  width: 750px;
  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: 750px;
  margin: 0 auto;
  padding: 0 0 50px;
}
#mainContents .layoutTyp05 h3 {
  position: relative;
  margin: 0 0 70px;
  padding: 115px 0 0;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .layoutTyp05 h3 span {
  font-size: 1.8rem;
}
#mainContents .layoutTyp05 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 .layoutTyp05 p.text01 {
  width: 100%;
  padding: 100px 0 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
}
#mainContents .layoutTyp05 .columnBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp05 .columnBox .column_L {
  width: 292px;
}
#mainContents .layoutTyp05 .columnBox .column_L img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp05 .columnBox .column_R {
  width: 415px;
  margin: -10px 0 0;
}
#mainContents .layoutTyp05 .columnBox .column_R h4 {
  padding: 0 0 10px;
  font-size: 1.4rem;
  font-weight: 700;
}
#mainContents .layoutTyp05 .columnBox .column_R p.text01 {
  padding: 0 0 20px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp05 .columnBox .column_R p.text01 a {
  position: relative;
  padding: 0 30px 0 0;
}
#mainContents .layoutTyp05 .columnBox .column_R p.text01 a::after {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon05.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp05 .columnBox .column_R p.text01 a:hover {
  opacity: 0.7;
  text-decoration: none;
}
#mainContents .layoutTyp05 .columnBox .column_R p.text02 {
  padding: 0 0 20px;
  font-size: 1.4rem;
  line-height: 1.8;
}
#mainContents .layoutTyp05 .columnBox .column_R ul {
  padding: 0 0 20px 20px;
}
#mainContents .layoutTyp05 .columnBox .column_R ul li {
  padding: 0 0 10px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp05 .columnBox .column_R ul li span {
  font-weight: 700;
}
#mainContents .layoutTyp05 .columnBox .column_R ul li a {
  position: relative;
}
#mainContents .layoutTyp05 .columnBox .column_R ul li a::after {
  position: absolute;
  right: -26px;
  top: 0px;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon05.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp05 .columnBox .column_R ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}
#mainContents .layoutTyp05 .columnBox .column_R .link01 {
  width: 100%;
  height: 67px;
  margin: 30px auto 0;
}
#mainContents .layoutTyp05 .columnBox .column_R .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 .layoutTyp05 .columnBox .column_R .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp05 {
    width: calc(100% - 40px);
    padding: 0 0 50px;
  }
  #mainContents .layoutTyp05 h3 {
    margin: 0 0 55px;
    padding: 60px 0 0;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp05 h3::before {
    bottom: -20px;
    width: 250px;
    height: 6px;
    margin: 0 0 0 -125px;
  }
  #mainContents .layoutTyp05 p.text01 {
    padding: 50px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp05 .columnBox {
    width: 100%;
    padding: 0 0 40px;
  }
  #mainContents .layoutTyp05 .columnBox .column_L {
    width: 100%;
    padding: 0 0 30px;
  }
  #mainContents .layoutTyp05 .columnBox .column_R {
    width: 100%;
    margin: 0;
  }
  #mainContents .layoutTyp05 .columnBox .column_R .link01 {
    width: 300px;
    height: 64px;
    margin: 30px auto 0;
  }
  #mainContents .layoutTyp05 .columnBox .column_R .link01 a {
    padding: 23px 0 0;
    font-size: 1.8rem;
  }
}

#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 {
  width: 100%;
  min-height: 1000px;
  margin: 180px 0 0;
  background-image: url("../img/program/program_bk01.jpg");
  background-size: 100% auto;
}
#mainContents .layoutTyp07 .tabNavi {
  position: relative;
  top: -75px;
  width: 1016px;
  margin: 0 auto;
}
#mainContents .layoutTyp07 .tabNavi ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style-type: none;
}
#mainContents .layoutTyp07 .tabNavi ul li {
  position: relative;
  width: 240px;
}
#mainContents .layoutTyp07 .tabNavi ul li::before {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 76px;
  width: 254px;
  height: 32px;
  background-image: url("../img/program/tabShadow.svg");
  background-size: cover;
  content: "";
  mix-blend-mode: multiply;
}
#mainContents .layoutTyp07 .tabNavi ul li img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp07 .tagArea {
  position: relative;
  top: -75px;
}
#mainContents .layoutTyp07 .tagMenu {
  padding: 25px 0 0;
  width: 100%;
}
#mainContents .layoutTyp07 .tagMenu ul {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style-type: none;
}
#mainContents .layoutTyp07 .tagMenu ul li {
  padding: 0 20px;
}
#mainContents .layoutTyp07 .tagMenu ul li a {
  font-size: 1.8rem;
  font-weight: 400;
}
#mainContents .layoutTyp07 .tagMenu ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#mainContents .layoutTyp07 .columnBox {
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 20px 0 0;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
#mainContents .layoutTyp07 .columnBox a {
  transition: all 0.5s ease;
}
#mainContents .layoutTyp07 .columnBox a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp07 .columnBox .column {
  width: 32.5%;
  padding: 0 1.25% 80px 0;
}
#mainContents .layoutTyp07 .columnBox .column:nth-child(3n) {
  padding: 0 0 80px 0;
}
@media only screen and (max-width: 1150px) {
  #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: 170px;
  padding: 5px 0 7px;
  background-color: #3C3C3C;
  border-radius: 3px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: #FFF;
  letter-spacing: 3.6px;
}
#mainContents .layoutTyp07 .columnBox .column .category p {
  display: inline;
  padding: 5px 0 0 10px;
  font-size: 1.6rem;
  font-weight: 300;
}
#mainContents .layoutTyp07 .columnBox .column .imgBox {
  position: relative;
  margin: 0 0 10px;
  overflow: hidden;
}
#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 h3 {
  position: relative;
  display: inline;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .layoutTyp07 .columnBox .column h3.blank {
  padding: 0 0 0 20px;
}
#mainContents .layoutTyp07 .columnBox .column h3.blank::after {
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon05.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp07 .columnBox .column p {
  padding: 5px 0 0;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.4;
}
#mainContents .layoutTyp07 .columnBox .column .iconSet {
  position: relative;
  display: inline-block;
  /* width: 150px; */
  margin: 10px 0 0;
  padding: 5px 15px 7px;
  background-color: #D9D9D9;
  border-radius: 3px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  color: #3C3C3C;
}


@media only screen and (max-width: 1040px) {
  #mainContents .layoutTyp07 .tabNavi {
    position: relative;
    top: -37px;
    width: 600px;
    margin: 0 auto 50px;
  }
  #mainContents .layoutTyp07 .tabNavi ul li {
    width: 48%;
  }
  #mainContents .layoutTyp07 .tabNavi ul li::before {
    top: 92px;
    width: 106%;
    height: 44px;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp07 {
    margin: 80px 0 0;
  }
  #mainContents .layoutTyp07 .tabNavi {
    position: relative;
    top: -37px;
    width: calc(100% - 40px);
    margin: 0 auto 20px;
  }
  #mainContents .layoutTyp07 .tabNavi ul li {
    width: 48%;
  }
  #mainContents .layoutTyp07 .tabNavi ul li::before {
    top: 72.5%;
    width: 107%;
    height: 34%;
  }
  #mainContents .layoutTyp07 .tagArea {
    top: -20px;
  }
  #mainContents .layoutTyp07 .tagMenu {
    padding: 0;
    width: 100%;
  }
  #mainContents .layoutTyp07 .tagMenu ul {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style-type: none;
  }
  #mainContents .layoutTyp07 .tagMenu ul li {
    padding: 0 10px 20px;
  }
  #mainContents .layoutTyp07 .tagMenu ul li a {
    font-size: 1.6rem;
  }

  #mainContents .layoutTyp07 .columnBox {
    width: calc(100% - 30px);
    padding: 20px 0 0;
  }
  #mainContents .layoutTyp07 .columnBox .column {
    width: 100%;
    padding: 0 0 50px 0;
  }

  #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: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 .noSearch {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp07 .noSearch p {
    font-size: 1.6rem;
  }
}


#mainContents .layoutTyp08 {
  width: 750px;
  margin: 0 auto;
  padding: 100px 0 0;
}
#mainContents .layoutTyp08 .layoutTyp08_Area {
  position: relative;
  width: 750px;
  margin: 0 auto;
}
#mainContents .layoutTyp08 .category {
  padding: 0 0 10px;
}
#mainContents .layoutTyp08 .category span {
  display: inline-block;
  width: 170px;
  padding: 5px 0 7px;
  background-color: #3C3C3C;
  border-radius: 3px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: #FFF;
  letter-spacing: 3.6px;
}
#mainContents .layoutTyp08 .category p {
  display: inline;
  padding: 5px 0 0 10px;
  font-size: 1.6rem;
  font-weight: 300;
}
#mainContents .layoutTyp08 p.date {
  position: absolute;
  right: 0;
  top: 5px;
  font-size: 1.8rem;
}
#mainContents .layoutTyp08 h3 {
  padding: 15px 0 20px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .layoutTyp08 .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 .layoutTyp08 .imgMv {
  width: 750px;
  height: 469px;
  opacity: 0;
}
#mainContents .layoutTyp08 .imgMv .imgBox {
  width: 750px;
  height: 469px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
#mainContents .layoutTyp08 .imgMv .imgBox img {
  width: auto !important;
  max-width: initial;
  height: 469px;
}
#mainContents .layoutTyp08 p.text01 {
  padding: 50px 0 0;
  font-size: 1.6rem;
  line-height: 1.8;
}
#mainContents .layoutTyp08 table {
  width: 100%;
  margin: 80px 0 0;
}
#mainContents .layoutTyp08 table th {
  width: 180px;
  padding: 20px 50px 20px 0;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: right;
}
#mainContents .layoutTyp08 table td {
  padding: 20px 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}
#mainContents .layoutTyp08 table td a.link01 {
  position: relative;
  display: inline-block;
  padding: 10px 0 0;
  text-decoration: underline;
}
#mainContents .layoutTyp08 table td a.link01::after {
  position: absolute;
  right: -28px;
  top: 13px;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon05.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp08 table td a.link01:hover {
  opacity: 0.7;
}


#mainContents .layoutTyp08 table tr.typ01 th {
  line-height: 1.2;
  vertical-align: top;
}
#mainContents .layoutTyp08 table tr.typ01 td {
  line-height: 1.2;
}
#mainContents .layoutTyp08 table td .columnBox {
  width: 100%;
  padding: 0 0 30px;
  display: flex;
  justify-content: start;
}
#mainContents .layoutTyp08 table td .columnBox .column_L {
  width: 85px;
}
#mainContents .layoutTyp08 table td .columnBox .column_L img {
  width: 85px;
  height: 85px;
  object-fit: cover;
}
#mainContents .layoutTyp08 table td .columnBox .column_R {
  margin: 0 0 0 20px;
}
#mainContents .layoutTyp08 table td .columnBox .column_R .audioPlayer {
  margin: 8px 0 0;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp08 {
    width: calc(100% - 40px);
    padding: 35px 0 0;
  }
  #mainContents .layoutTyp08 .layoutTyp08_Area {
    width: 100%;
  }
  #mainContents .layoutTyp08 .category {
    padding: 0 0 10px;
  }
  #mainContents .layoutTyp08 .category span {
    width: 160px;
    font-size: 1.6rem;
    letter-spacing: 3.2px;
  }
  #mainContents .layoutTyp08 p.date {
    position: static;
    padding: 5px 0 10px;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp08 h3 {
    padding: 0;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp08 .imgMv {
    width: 100%;
    height: 240px;
    opacity: 0;
  }
  #mainContents .layoutTyp08 .imgMv .imgBox {
    width: 100%;
    height: 240px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    /* background-color: #CCC; */
  }
  #mainContents .layoutTyp08 .imgMv .imgBox img {
    width: auto !important;
    max-width: initial;
    height: 240px;
  }

  #mainContents .layoutTyp08 .imgMv img {
    width: 100%;
    height: auto;
  }
  #mainContents .layoutTyp08 p.text01 {
    padding: 15px 0 0;
  }
  #mainContents .layoutTyp08 table {
    margin: 65px 0 0;
  }
  #mainContents .layoutTyp08 table th {
    display: block;
    width: 100%;
    padding: 0 0 5px 0;
    line-height: 1.4;
    text-align: left;
  }
  #mainContents .layoutTyp08 table td {
    display: block;
    width: 100%;
    padding: 0 0 30px;
    line-height: 1.4;
  }


  #mainContents .layoutTyp08 table tr.typ01 th {
    line-height: 1.8;
  }
  #mainContents .layoutTyp08 table td .columnBox {
    padding: 10px 0 20px;
  }
  #mainContents .layoutTyp08 table td .columnBox .column_R {
    margin: 0 0 0 10px;
  }
  #mainContents .layoutTyp08 table td .columnBox .column_R .audioPlayer {
    margin: 10px 0 0;
  }
  #mainContents .layoutTyp08 table td .columnBox .column_R .audioPlayer audio {
    width: 240px;
  }
}


#mainContents .layoutTyp09 {
  width: 750px;
  margin: 0 auto;
  padding: 0 0 50px;
}
#mainContents .layoutTyp09 h3 {
  position: relative;
  margin: 0 0 70px;
  padding: 115px 0 0;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .layoutTyp09 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 .layoutTyp09 p {
  padding: 10px 0 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 35px;
}
#mainContents .layoutTyp09 table {
  width: 100%;
  margin: 70px 0 0;
}
#mainContents .layoutTyp09 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 .layoutTyp09 table td {
  padding: 20px 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
}
#mainContents .layoutTyp09 table td span {
  display: block;
  font-size: 1.6rem;
}
#mainContents .layoutTyp09 .link01 {
  width: 400px;
  height: 67px;
  margin: 40px auto 0;
}
#mainContents .layoutTyp09 .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 .layoutTyp09 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp09 {
    width: calc(100% - 40px);
    padding: 0 0 50px;
  }
  #mainContents .layoutTyp09 h3 {
    margin: 0 0 55px;
    padding: 60px 0 0;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp09 h3::before {
    bottom: -20px;
    width: 250px;
    height: 6px;
    margin: 0 0 0 -125px;
  }

  #mainContents .layoutTyp09 table {
    margin: 65px 0 0;
  }
  #mainContents .layoutTyp09 table th {
    display: block;
    width: 100%;
    padding: 0 0 5px 0;
    line-height: 1.4;
    text-align: left;
  }
  #mainContents .layoutTyp09 table td {
    display: block;
    width: 100%;
    padding: 0 0 30px;
    line-height: 1.4;
  }
  #mainContents .layoutTyp09 .link01 {
    width: 300px;
    height: 64px;
    margin: 30px auto 0;
  }
  #mainContents .layoutTyp09 .link01 a {
    padding: 23px 0 0;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp09 .link01 a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

#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: 750px;
  margin: 0 auto;
  padding: 0 0 90px;
}
#mainContents .layoutTyp12 h3 {
  position: relative;
  margin: 0 0 70px;
  padding: 115px 0 0;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .layoutTyp12 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 .layoutTyp12 p {
  padding: 10px 0 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 35px;
}
#mainContents .layoutTyp12 p.text02 {
  padding: 30px 0 0;
  font-size: 2.0rem;
  font-weight: 400;
  line-height: 35px;
  text-align: center;
}
#mainContents .layoutTyp12 .link01 {
  padding: 30px 0 0;
}
#mainContents .layoutTyp12 .link01 a {
  display: block;
  position: relative;
  padding: 0 0 20px 58px;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .layoutTyp12 .link01 a::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 35px;
  background-image: url("../img/icon06.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp12 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp12 .link02 {
  width: 500px;
  height: 67px;
  margin: 30px auto 0;
}
#mainContents .layoutTyp12 .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 .layoutTyp12 .link02 a::after {
  position: absolute;
  right: 61px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0;
  background-image: url("../img/icon04.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp12 .link02 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp12 .link03 {
  width: 500px;
  margin: 40px auto 0;
}
#mainContents .layoutTyp12 .link03 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.6;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp12 .link03 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp12 .link04 {
  width: 500px;
  height: 67px;
  margin: 30px auto 0;
}
#mainContents .layoutTyp12 .link04 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 24px 0 0 58px;
  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 .layoutTyp12 .link04 a::before {
  position: absolute;
  left: 117px;
  top: 50%;
  width: 38px;
  height: 35px;
  margin: -17px 0 0;
  background-image: url("../img/icon07.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp12 .link04 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp12 {
    width: calc(100% - 40px);
    padding: 0 0 50px;
  }
  #mainContents .layoutTyp12 h3 {
    margin: 0 0 55px;
    padding: 60px 0 0;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp12 h3::before {
    bottom: -20px;
    width: 250px;
    height: 6px;
    margin: 0 0 0 -125px;
  }
  #mainContents .layoutTyp12 p {
    padding: 0;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp12 p.text02 {
    font-size: 1.6rem;
    text-align: left;
  }
  #mainContents .layoutTyp12 .link01 {
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp12 .link01 a {
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp12 .link01 a::before {
    top: -5px;
  }
  #mainContents .layoutTyp12 .link02 {
    width: 300px;
    height: auto;
  }
  #mainContents .layoutTyp12 .link02 a {
    padding: 20px 0;
    line-height: 1.4;
  }
  #mainContents .layoutTyp12 .link02 a::after {
    right: 20px;
  }
  #mainContents .layoutTyp12 .link03 {
    width: 300px;
    height: auto;
  }
  #mainContents .layoutTyp12 .link03 a {
    padding: 20px 0;
    line-height: 1.4;
  }
  #mainContents .layoutTyp12 .link03 a::after {
    right: 20px;
  }
  #mainContents .layoutTyp12 .link04 {
    width: 300px;
    height: auto;
  }
  #mainContents .layoutTyp12 .link04 a {
    padding: 20px 0;
    line-height: 1.4;
  }
  #mainContents .layoutTyp12 .link04 a::before {
    display: none;
  }
}


#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: 750px;
  margin: 0 auto;
  padding: 0 0 50px;
}
#mainContents .layoutTyp15 h3 {
  position: relative;
  margin: 0 0 70px;
  padding: 100px 0 0;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
#mainContents .layoutTyp15 h4 {
  padding: 50px 0 0;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.4;
  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;
  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: 30%;
  padding: 0 5% 20px 0;
  font-size: 1.6rem;
  line-height: 1.4;
}
#mainContents .layoutTyp15 .textArea ul li:nth-child(3n) {
  padding: 0 0 20px 0;
}
#mainContents .layoutTyp15 .columnBox {
  width: 100%;
  margin: 50px 0 0;
  padding: 40px;
  box-sizing: border-box;
  background-color:#ebebeb;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp15 .columnBox img {
  width: 150px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp15 {
    width: calc(100% - 40px);
    padding: 0 0 50px;
  }
  #mainContents .layoutTyp15 h3 {
    margin: 0 0 55px;
    padding: 60px 0 0;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp15 h4 {
    font-size: 2.0rem;
  }
  #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(3n) {
    padding: 0 0 15px;
  }
  #mainContents .layoutTyp15 .columnBox {
    margin: 30px 0 0;
    padding: 20px;
  }
  #mainContents .layoutTyp15 .columnBox img {
    width: 100%;
    height: auto;
  }
}

#mainContents .layoutTyp16 {
  width: 600px;
  margin: 0 auto;
  padding: 100px 0 0;
}
#mainContents .layoutTyp16 ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
#mainContents .layoutTyp16 ul li {
  position: relative;
  width: 180px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
#mainContents .layoutTyp16 ul li:nth-child(1):before {
  display: block;
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 100%;
  height: 5px;
  margin: 0 0 0 -50%;
  background-color: #000;
  content: "";
}
#mainContents .mw_wp_form_preview .layoutTyp16 ul li:nth-child(1):before {
  display: none;
}
#mainContents .mw_wp_form_preview .layoutTyp16 ul li:nth-child(2):before {
  display: block;
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 100%;
  height: 5px;
  margin: 0 0 0 -50%;
  background-color: #000;
  content: "";
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp16 {
    width: calc(100% - 120px);
    margin: 0 auto;
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp16 ul {
    width: 100%;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
  }
  #mainContents .layoutTyp16 ul li {
    width: 66px;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp16 ul li:nth-child(1):before {
    height: 3px;
  }
}

#mainContents .layoutTyp17 {
  width: 750px;
  margin: 0 auto;
  padding: 100px 0 0;
}
#mainContents .layoutTyp17 h3 {
  padding: 0 0 50px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
#mainContents .layoutTyp17 table {
  width: 100%;
}
#mainContents .layoutTyp17 table th {
  width: 280px;
  padding: 0 0 60px;
  font-size: 2.0rem;
  font-weight: 700;
  text-align: left;
  vertical-align: middle;
}
#mainContents .layoutTyp17 table th span {
  color: #F00;
}
#mainContents .layoutTyp17 table td {
  padding: 0 0 60px;
  font-size: 2.0rem;
  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: 0 20px;
  box-sizing: border-box;
  border: 1px solid #000;
  background: #FFF;
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.25) inset;
  font-size: 2.0rem;
  line-height: 1.8;
}
#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: 1px solid #000;
  background: #FFF;
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.25) inset;
  box-sizing: border-box;
  font-size: 2.0rem;
  line-height: 1.8;
}
#mainContents .layoutTyp17 textarea::placeholder {
  color: #969696;
}
#mainContents .layoutTyp17 textarea:focus {
  outline: none;
}
#mainContents .layoutTyp17 h4 {
  font-size: 1.8rem;
  font-weight: 600;
}
#mainContents .layoutTyp17 p {
  padding: 20px 0 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp17 p.end {
  width: 500px;
  margin: 0 auto;
}
#mainContents .layoutTyp17 .privacyBox {
  width: 100%;
  padding: 70px 0 0;
  text-align: center;
  font-size: 2.0rem;
  font-weight: 600;
}
#mainContents .layoutTyp17 .submitArea {
  width: 500px;
  margin: 0 auto;
  padding: 70px 0 0;
}
#mainContents .layoutTyp17 .submitArea input[type="submit"] {
  -webkit-appearance: none;
  width: 100%;
  height: 70px;
  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;
  color: #EB002D;
}

#mainContents .layoutTyp17 .link01 {
  width: 500px;
  height: 67px;
  margin: 60px auto 0;
}
#mainContents .layoutTyp17 .link01 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 .layoutTyp17 .link01 a::after {
  position: absolute;
  right: 61px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0;
  background-image: url("../img/icon04.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp17 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@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;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp17 table td {
    display: block;
    width: 100%;
    padding: 10px 0 40px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #mainContents .layoutTyp17 .privacyBox {
    padding: 40px 0 0;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp17 .submitArea {
    width: 300px;
    padding: 40px 0 0;
  }
  #mainContents .layoutTyp17 p.end {
    width: auto;
  }
  #mainContents .layoutTyp17 .link01 {
    width: 335px;
    height: auto;
  }
  #mainContents .layoutTyp17 .link01 a {
    padding: 20px 0;
    line-height: 1.4;
  }
  #mainContents .layoutTyp17 .link01 a::after {
    right: 20px;
  }
}

#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: 750px;
  margin: 0 auto;
  padding: 100px 0 0;
}
#mainContents .layoutTyp21 h3 {
  padding: 0 0 10px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .layoutTyp21 p {
  padding: 0 0 40px;
  font-size: 1.8rem;
  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.8rem;
  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 .layoutTyp21 h3 {
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp21 p {
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp21 ul {
    padding: 0 0 0 20px;
  }
  #mainContents .layoutTyp21 ul li {
    font-size: 1.6rem;
  }
}


#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: 700;
  line-height: 1.4;
}
#mainContents .layoutTyp22 .column h3.blank {
  padding: 0 0 0 20px;
}
#mainContents .layoutTyp22 .column h3.blank::after {
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon05.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp22 .column p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
#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 #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;
  }
}
