@charset "utf-8";

/*==========================================
 font
===========================================*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@500;700&display=swap');
html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  color: #1a1a1a;
}

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



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

html {
  background: #FFF;
  overflow: auto;
}
body {
  /* overflow: hidden;
	min-width: 1100px;
  -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 {
  position: fixed;
  z-index: 2000;
  width: 100%;
  height: 90px;
  background-color: #FFF;
  box-shadow: 0px 5px 15px 4px rgba(0, 0, 0, 0.07);
}
header #header {
  position: relative;
  width: calc(100% - 80px);
  height: 90px;
  margin: 0 auto;
}
header #headerLogo {
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
}
header #headerLogo h1 img {
  width: 253px;
  height: auto;
}
header #headerLogo.typ02 {
  top: 15px;
}
header #headerLogo.typ02 h1 img {
  width: 120px;
  height: auto;
}
header #headerLogo_Scroll {
  display: none;
  position: absolute;
  left: 0;
  top: 15px;
}
header #headerLogo_Scroll h1 img {
  width: 120px;
  height: auto;
}

/* header #headerLogo p,
header #headerLogo_Scroll p {
  position: absolute;
  font-family: "Roboto", sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #004386;
}
header #headerLogo.typ01 p {
  left: 180px;
  top: 24px;
}
header #headerLogo.typ02 p {
  left: 240px;
  top: 31px;
}
header #headerLogo_Scroll.typ01 p {
  left: 240px;
  top: 31px;
}
header #headerLogo_Scroll.typ02 p {
  left: 240px;
  top: 28px;
} */

@media only screen and (max-width: 1300px) {
  header #headerLogo h1 img {
    width: 11.5vw;
  }
}
@media only screen and (max-width: 1050px) {
  header #headerLogo h1 img {
    width: 115px;
  }
}
header #headerNavi {
  position: absolute;
  right: 260px;
  top: 39px;
}
header #headerNavi nav ul {
  /* width: 290px; */
  width: 140px;
  display: flex;
  justify-content: space-between;
}
header #headerNavi nav ul li a {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
header #headerNavi nav ul li a::after {
  position: absolute;
  right: -20px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -6px 0 0;
  background-image: url("../img/icon01.svg");
  background-size: cover;
  content: "";
}
header #headerNavi nav ul li a:hover {
  text-decoration: none;
  color: #004386;
}

header #headerPassport {
  position: absolute;
  right: 70px;
  top: 27px;
  width: 165px;
  height: 40px;
}
header #headerPassport a {
  position: relative;
  display: block;
  width: 165px;
  height: 40px;
  padding: 9px 8px 0 0;
  box-sizing: border-box;
  background-color: #FFF;
  border: 2px solid #004386;
  border-radius: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #004386;
  text-align: center;
  transition: all 0.3s ease;
}
header #headerPassport a::after {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0;
  background-image: url("../img/icon12.svg");
  background-size: cover;
  content: "";
}
header #headerPassport a:hover {
  text-decoration: none;
  opacity: 0.7;
}
header #header_SpIcon {
  display: block;
  z-index: 700;
  position: absolute;
  z-index: 2000;
  right: 0;
  top: 32px;
  width: 36px;
  height: 30px;
  box-sizing: border-box;
}
header #header_SpIcon .menu-trigger,
header #header_SpIcon .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
header #header_SpIcon .menu-trigger {
  position: relative;
  width: 36px;
  height: 29px;
}
header #header_SpIcon .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #004386;
}
header #header_SpIcon .menu-trigger span:nth-of-type(1) {
  top: 0;
}
header #header_SpIcon .menu-trigger span:nth-of-type(2) {
  top: 13px;
}
header #header_SpIcon .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

header #header_SpIcon .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(13px) rotate(-45deg);
}
header #header_SpIcon .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
header #header_SpIcon .menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-13px) rotate(45deg);
}
@media only screen and (max-width: 880px) {
  header #headerNavi {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  header {
    height: 60px;
  }
  header #header {
    width: calc(100% - 40px);
    height: 60px;
  }
  header #headerLogo {
    position: absolute;
    left: -10px;
    top: 15px;
  }
  header #headerLogo h1 img {
    width: 160px;
    height: auto;
  }
  header #headerLogo.typ02 {
    top: 11px;
  }
  header #headerLogo.typ02 h1 img {
    width: 78px;
    height: auto;
  }
  header #headerLogo_Scroll {
    top: 11px;
  }
  header #headerLogo_Scroll h1 img {
    width: 78px;
    height: auto;
  }

  /* header #headerLogo p,
  header #headerLogo_Scroll p {
    font-size: 2.0rem;
  }
  header #headerLogo.typ01 p {
    left: 83px;
    top: 16px;
  }
  header #headerLogo.typ02 p {
    left: 144px;
    top: 12px;
  }
  header #headerLogo_Scroll.typ01 p {
    left: 144px;
    top: 12px;
  }
  header #headerLogo_Scroll.typ02 p {
    left: 144px;
    top: 12px;
  } */

  header #headerNavi {
    display: none;
  }

  header #headerPassport {
    right: 46px;
    top: 16px;
    width: 128px;
    height: 30px;
  }
  header #headerPassport a {
    width: 128px;
    height: 30px;
    padding: 6px 5px 0 0;
    font-size: 1.3rem;
  }
  header #headerPassport a::after {
    right: 8px;
    width: 8px;
    height: 8px;
    margin: -4px 0 0;
  }
  header #header_SpIcon {
    top: 20px;
    width: 28px;
    height: 22px;
  }
  header #header_SpIcon .menu-trigger {
    width: 28px;
    height: 22px;
  }
  header #header_SpIcon .menu-trigger span {
    height: 2px;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(2) {
    top: 10px;
  }
  header #header_SpIcon .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  header #header_SpIcon .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }
}


header #overay {
  position: fixed;
  z-index: 1600;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
header #headerNavi_Sp {
  position: absolute;
  z-index: 1700;
  right: -100vw;
  top: 0;
  display: block;
  width: 330px;
  height: 100vh;
  padding: 85px 0 0;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.95);
}
@media only screen and (max-width: 767px) {
  header #headerNavi_Sp {
    width: 100%;
    padding: 50px 0 0;
  }
  header #headerNavi_Sp .scroll_Box {
    overflow-y: scroll;
    height: calc(100vh - 40px);
  }
  header #headerNavi_Sp .scroll_Box .scroll_Area {
    height: 630px;
    padding: 0 0 100px;
  }
}

header #headerNavi_Sp #headerMenu_Close {
  display: block;
  position: absolute;
  right: 46px;
  top: 26px;
  width: 32px;
  height: 32px;
  text-align: center;
}
header #headerNavi_Sp #headerMenu_Close img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  header #headerNavi_Sp #headerMenu_Close {
    right: 15px;
    top: 19px;
    width: 20px;
    height: 20px;
  }
  header #headerNavi_Sp #headerMenu_Close img {
    width: 20px;
  }
}


header #headerNavi_Sp nav ul {
  width: calc(100% - 60px);
  margin: 0 auto;
  list-style-type: none;
}
header #headerNavi_Sp nav ul li {
  width: 100%;
  margin: 0 0 25px;
}
header #headerNavi_Sp nav ul li a {
  position: relative;
  padding: 0 0 0 25px;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
header #headerNavi_Sp nav ul li.active a {
  font-weight: 500;
  color: #004386;
}
header #headerNavi_Sp nav ul li a::after {
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -6px 0 0;
  background-image: url("../img/icon01.svg");
  background-size: cover;
  content: "";
}
header #headerNavi_Sp nav ul li a:hover {
  text-decoration: none;
  color: #004386;
}
@media only screen and (max-width: 767px) {
  header #headerNavi_Sp nav ul li {
    margin: 0 0 20px;
  }
  header #headerNavi_Sp nav ul li a {
    padding: 0 0 0 20px;
  }
}


header #headerNavi_Sp nav ul.bottom {
  width: calc(100% - 60px);
  margin: 15px auto 0;
  padding: 15px 0 0;
  list-style-type: none;
  border-top: 1px solid #CCC;
}
header #headerNavi_Sp nav ul.bottom li {
  width: 100%;
  margin: 0 0 15px;
}
header #headerNavi_Sp nav ul.bottom li a {
  position: relative;
  padding: 0 0 0 25px;
  box-sizing: border-box;
  font-size: 1.5rem;
  font-weight: 400;
  transition: all 0.3s ease;
}
header #headerNavi_Sp nav ul.bottom li a::after {
  position: absolute;
  left: 2px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -6px 0 0;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
}
header #headerNavi_Sp nav ul.bottom li a:hover {
  text-decoration: none;
  color: #004386;
}
@media only screen and (max-width: 767px) {
  header #headerNavi_Sp nav ul.bottom {
    margin: 20px auto 0;
  }
  header #headerNavi_Sp nav ul.bottom li {
    margin: 0 0 20px;
  }
  header #headerNavi_Sp nav ul.bottom li a {
    padding: 0 0 0 20px;
    font-size: 1.4rem;
  }
  header #headerNavi_Sp nav ul.bottom li a::after {
    left: 0;
  }
}


header #headerNavi_Sp nav ul.language {
  width: calc(100% - 60px);
  margin: 0 auto;
  padding: 15px 0 0;
  list-style-type: none;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}
header #headerNavi_Sp nav ul.language li {
  width: 100%;
  margin: 0 0 15px;
}
header #headerNavi_Sp nav ul.language li a {
  position: relative;
  padding: 0 0 0 25px;
  box-sizing: border-box;
  font-size: 1.5rem;
  font-weight: 400;
  transition: all 0.3s ease;
}
header #headerNavi_Sp nav ul.language li.active a {
  font-weight: 500;
  color: #004386;
}
header #headerNavi_Sp nav ul.language li a::after {
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -6px 0 0;
  background-image: url("../img/icon01.svg");
  background-size: cover;
  content: "";
}
header #headerNavi_Sp nav ul.language li a:hover {
  text-decoration: none;
  color: #004386;
}
@media only screen and (max-width: 767px) {
  header #headerNavi_Sp nav ul.language li {
    margin: 0 0 20px;
  }
  header #headerNavi_Sp nav ul.language li a {
    padding: 0 0 0 20px;
    font-size: 1.4rem;
  }
}

header #headerNavi_Sp .passportBox {
  width: calc(100% - 60px);
  margin: 40px auto 0;
}
header #headerNavi_Sp .passportBox a {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  padding: 15px 0 0;
  box-sizing: border-box;
  border-radius: 40px;
  background-color: #004386;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
header #headerNavi_Sp .passportBox a::after {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 65px;
  background-image: url("../img/icon13.svg");
  background-size: cover;
  content: "";
}
header #headerNavi_Sp .passportBox a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  /* header #headerNavi_Sp .passportBox {
    margin: 20px auto 0;
  }
  header #headerNavi_Sp .passportBox a {
    height: 40px;
    padding: 12px 0 0;
    font-size: 1.4rem;
  } */
}


header #headerNavi_Sp .contactBox {
  width: calc(100% - 60px);
  margin: 20px auto 0;
}
header #headerNavi_Sp .contactBox a {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  padding: 15px 0 0;
  box-sizing: border-box;
  border-radius: 40px;
  background-color: #004386;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
header #headerNavi_Sp .contactBox a::after {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 65px;
  background-image: url("../img/icon02.svg");
  background-size: cover;
  content: "";
}
header #headerNavi_Sp .contactBox a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  /* header #headerNavi_Sp .contactBox {
    margin: 15px auto 0;
  }
  header #headerNavi_Sp .contactBox a {
    height: 40px;
    padding: 12px 0 0;
    font-size: 1.4rem;
  } */
}


header #headerNavi_Sp .searchBox {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  padding: 20px 0 0;
}
header #headerNavi_Sp .searchBox::before {
  position: absolute;
  right: 20px;
  top: 35px;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon06.svg");
  background-size: cover;
  content: "";
}
header #headerNavi_Sp .searchBox input {
  width: 100%;
  height: 50px;
  padding: 20px 60px 20px 20px;
  box-sizing: border-box;
  background: #f4f4f4;
  border-radius: 30px;
  border: 2px solid #b6b6b6;
  font-size: 1.8rem;
}
header #headerNavi_Sp .searchBox input:focus {
  outline: none;
}
@media only screen and (max-width: 767px) {
  /* header #headerNavi_Sp .searchBox {
    padding: 15px 0 0;
  }
  header #headerNavi_Sp .searchBox::before {
    top: 26px;
  }
  header #headerNavi_Sp .searchBox input {
    height: 40px;
    font-size: 1.4rem;
  } */
}



/*==========================================
 フッターのスタイル
===========================================*/
#footer_logoArea {
  width: 1000px;
  margin: 0 auto;
  padding: 100px 0 0;
}
#footer_logoArea .columnBox {
  width: 520px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footer_logoArea .columnBox img {
  width: 520px;
  height: auto;
}
#footer_logoArea .columnBox a:nth-child(2) img,
#footer_logoArea .columnBox a:nth-child(3) img,
#footer_logoArea .columnBox a:nth-child(4) img {
  width: 173px;
  height: auto;
}
#footer_logoArea ul {
  width: 100%;
  padding: 40px 0 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#footer_logoArea ul li {
  padding: 0 15px 30px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 1080px) {
  #footer_logoArea {
    width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 767px) {
  #footer_logoArea {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 100px 0 0;
  }
  #footer_logoArea .columnBox {
    width: 320px;
  }
  #footer_logoArea .columnBox img {
    width: 320px;
  }
  #footer_logoArea .columnBox a:nth-child(2) img,
  #footer_logoArea .columnBox a:nth-child(3) img,
  #footer_logoArea .columnBox a:nth-child(4) img {
    width: 106px;
    height: auto;
  }
  #footer_logoArea ul li {
    padding: 0 10px 20px;
    font-size: 1.4rem;
  }
}

footer {
  width: 100%;
  margin: 100px 0 0;
  background-color: #004386;
}
footer #footerBody {
  position: relative;
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 50px 0;
  box-sizing: border-box;
}
footer #footerBody h1 img {
  width: 200px;
  height: auto;
}
footer #footerBody .footerLink {
  padding: 35px 0 0;
}
footer #footerBody .footerLink ul {
  width: 680px;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
footer #footerBody .footerLink ul li a {
  font-size: 1.4rem;
  color: #FFF;
}
footer #footerBody .footerLink ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

footer #footerBody .footerSns {
  width: 80px;
  height: 30px;
  padding: 40px 0 0;
}
footer #footerBody .footerSns ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
footer #footerBody .footerSns ul li {
  width: 30px;
}
footer #footerBody .footerSns ul li:nth-child(2) {
  width: 28px;
}
footer #footerBody .footerSns ul li img {
  width: 100%;
  height: auto;
}

footer #footerBody .footerArchive {
  width: 100%;
  padding: 30px 0 0;
}
footer #footerBody .footerArchive ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
footer #footerBody .footerArchive ul li {
  margin: 0 15px 20px 0;
}
footer #footerBody .footerArchive ul li a {
  display: block;
  padding: 15px 20px 18px;
  background-color: #004386;
  font-size: 1.8rem;
  font-weight: 400;
  color: #FFF;
}
footer #footerBody .footerArchive ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

footer #footerBody .footerMail {
  position: relative;
  width: 192px;
  height: 58px;
  margin: 20px 0 0;
  padding: 7px 0 0 10px;
  box-sizing: border-box;
  border: 1px solid #FFF;
  transition: all 0.3s ease;
}
footer #footerBody .footerMail a:hover {
  text-decoration: none;
  opacity: 0.7;
}
footer #footerBody .footerMail p {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #FFF;
}
footer #footerBody .footerMail::before {
  position: absolute;
  right: 14px;
  top: 15px;
  width: 39px;
  height: 25px;
  background-image: url("../img/icon05.svg");
  background-size: cover;
  content: "";
}

footer #footerBody .footerClub {
  position: absolute;
  left: 212px;
  top: 287px;
  width: 192px;
  height: 58px;
  padding: 7px 0 0 10px;
  box-sizing: border-box;
  border: 1px solid #FFF;
  transition: all 0.3s ease;
}
footer #footerBody .footerClub a:hover {
  text-decoration: none;
  opacity: 0.7;
}
footer #footerBody .footerClub p {
  position: relative;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #FFF;
}
footer #footerBody .footerClub p::before {
  position: absolute;
  right: 14px;
  top: 3px;
  width: 32px;
  height: 34px;
  background-image: url("../img/icon08.svg");
  background-size: cover;
  content: "";
}

footer #footerBody .footerPartner {
  position: absolute;
  left: 423px;
  top: 255px;
  width: 355px;
  height: 59px;
  box-sizing: border-box;
  background-color: #FFF;
}
footer #footerBody .footerPartner_Sp {
  display: none;
}

footer #footerBody small {
  display: block;
  padding: 55px 0 0;
  font-size: 1.2rem;
  color: #FFF;
}
@media only screen and (max-width: 910px) {
  footer {
    margin: 50px 0 0;
  }
  footer #footerBody {
    width: calc(100% - 40px);
    padding: 30px 0;
  }
  footer #footerBody h1 img {
    width: 200x;
  }
  footer #footerBody .footerLink {
    padding: 30px 0 0;
  }
  footer #footerBody .footerLink ul {
    width: 100%;
    flex-wrap: wrap;
  }
  footer #footerBody .footerLink ul li {
    width: 100%;
    padding: 0 0 20px;
  }

  footer #footerBody .footerSns {
    position: static;
    margin: 20px 0 0;
    padding: 0;
  }

  footer #footerBody .footerArchive ul li {
    margin: 0 10px 10px 0;
  }
  footer #footerBody .footerArchive ul li a {
    padding: 11px 10px 13px;
    font-size: 1.4rem;
  }

  footer #footerBody .footerMail {
    margin: 25px 0 0;
  }

  footer #footerBody .footerClub {
    position: static;
    margin: 15px 0 0;
  }

  footer #footerBody .footerPartner {
    display: none;
  }
  footer #footerBody .footerPartner_Sp {
    display: block;
    width: 100%;
    margin: 20px auto 0;
    background-color: #FFF;
    display: flex;
    flex-wrap: wrap;
  }
  footer #footerBody .footerPartner_Sp a:nth-child(1) {
    width: 100%;
  }
  footer #footerBody .footerPartner_Sp a:nth-child(2) {
    width: 38%;
  }
  footer #footerBody .footerPartner_Sp a:nth-child(3) {
    width: 24%;
  }
  footer #footerBody .footerPartner_Sp a:nth-child(4) {
    width: 38%;
  }
  footer #footerBody .footerPartner_Sp a img {
    width: 100%;
    height: auto;
  }
  footer #footerBody small {
    padding: 30px 0 0;
  }
}


/*==========================================
 コンテンツのスタイル 共通
===========================================*/
#mainContents {
  position: relative;
  padding: 90px 0 0 0;
  width: 100%;
  min-height: 500px;
}
#mainContents::before {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 90px;
  width: 100%;
  height: 600px;
  background-image: url("../img/bk01.svg");
  background-size: cover;
  content: "";
}
@media only screen and (max-width: 767px) {
  #mainContents {
    padding: 60px 0 0 0;
  }
  #mainContents::before {
    top: 60px;
  }
}


/*==========================================
 タイトル 共通
===========================================*/
#mainContents .titleArea {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 0;
  text-align: center;
}
#mainContents .titleArea p {
  font-size: 1.4rem;
  font-weight: 500;
  color: #004386;
  letter-spacing: 0.1em;
}
#mainContents .titleArea h2 {
  padding: 10px 0 0;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #mainContents .titleArea {
    padding: 30px 0 0;
  }
  #mainContents .titleArea p {
    font-size: 1.1rem;
  }
  #mainContents .titleArea h2 {
    padding: 5px 0 0;
    font-size: 2.4rem;
  }
}

#mainContents .titleArea_h3 {
  width: 100%;
  padding: 80px 0 0;
  text-align: center;
}
#mainContents .titleArea_h3 h3 {
  position: relative;
  margin: 0 0 45px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .titleArea_h3 h3::before {
  position: absolute;
  left: 50%;
  bottom: -30px;
  width: 208px;
  height: 13px;
  margin: 0 0 0 -104px;
  background-image: url("../img/title_bk01.svg");
  background-size: cover;
  content: "";
}
@media only screen and (max-width: 767px) {
  #mainContents .titleArea_h3 {
    padding: 65px 0 0;
  }
  #mainContents .titleArea_h3 h3 {
    margin: 0 0 35px;
    font-size: 2.4rem;
  }
  #mainContents .titleArea_h3 h3::before {
    bottom: -25px;
    width: 162px;
    height: 10px;
    margin: 0 0 0 -81px;
  }
}


/*==========================================
 共通ナビゲーション
===========================================*/
#mainContents .naviArea01 {
  width: 800px;
  margin: 0 auto;
  padding: 80px 0 40px;
}
#mainContents .naviArea01 ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: center;
}
#mainContents .naviArea01 ul li {
  padding: 0 15px;
}
#mainContents .naviArea01 ul li a {
  position: relative;
  padding: 0 0 10px;
  font-size: 1.8rem;
  font-weight: 400;
}
#mainContents .naviArea01 ul li a::before {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  margin: 0 0 0 -50%;
  background-color: #231815;
  content: "";
}
#mainContents .naviArea01 ul li a:hover {
  text-decoration: none;
  color: #004386;
}
#mainContents .naviArea01 ul li a:hover::before {
  background-color: #004386;
}
@media only screen and (max-width: 767px) {
  #mainContents .naviArea01 {
    width: calc(100% - 40px);
    padding: 40px 0 0;
  }
  #mainContents .naviArea01 ul {
    flex-wrap: wrap;
  }
  #mainContents .naviArea01 ul li {
    padding: 0 15px 25px 0;
  }
  #mainContents .naviArea01 ul li a {
    padding: 0 0 5px;
    font-size: 1.4rem;
  }
}

/*==========================================
 ページネーションのスタイル
===========================================*/
#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;
  color: #004386;
}
#mainContents #pagination ul li span {
  color: #000;
}
#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 #004386;
  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 #004386;
  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;
  }
}

/*==========================================
 Top
===========================================*/
#mainContents .topVisual {
  position: relative;
  width: 100%;
  opacity: 0;
}
#mainContents .topVisual .topMv {
  display: block;
}
#mainContents .topVisual .topMv_sp {
  display: none;
}
#mainContents .topVisual img {
  width: 100%;
  height: auto;
}
#mainContents .topVisual .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 .topVisual .bx-wrapper .bx-pager,
#mainContents .topVisual .bx-wrapper .bx-controls-auto {
  bottom: 50px;
}
#mainContents .topVisual .bx-wrapper .bx-controls-direction a {
  z-index: 500 !important;
}
#mainContents .topVisual .bx-wrapper .bx-pager.bx-default-pager a {
  background: #FFF !important;
}
#mainContents .topVisual .bx-wrapper .bx-pager.bx-default-pager a:hover,
#mainContents .topVisual .bx-wrapper .bx-pager.bx-default-pager a.active,
#mainContents .topVisual .bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #004386 !important;
}

#mainContents .topVisual .topMv_text {
  position: absolute;
  right: 120px;
  top: 50%;
  width: 144px;
  height: 346px;
  margin: -173px 0 0;
  transition: all 0.3s ease;
}
#mainContents .topVisual .topMv_text img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1050px) {
  #mainContents .topVisual .topMv_text {
    right: 50px;
    width: 124px;
    height: 300px;
    margin: -150px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  #mainContents .topVisual .bx-wrapper .bx-pager,
  #mainContents .topVisual .bx-wrapper .bx-controls-auto {
    bottom: 20px;
  }
  #mainContents .topVisual .topMv {
    display: none;
  }
  #mainContents .topVisual .topMv_sp {
    display: block;
  }
  #mainContents .topVisual .topMv_text {
    right: 30px;
    top: auto;
    bottom: 65px;
    width: 105px;
    height: 251px;
    margin: 0;
  }
}

#mainContents .topNews {
  width: 100%;
  padding: 20px 0 10px;
  background-color: #E8F3F9;
}
#mainContents .topNews .contentsArea {
  position: relative;
  width: 800px;
  margin: 0 auto;
}
#mainContents .topNews .contentsArea h3 {
  font-size: 2.0rem;
  font-weight: 700;
  color: #004386;
}
#mainContents .topNews .contentsArea .link01 {
  position: absolute;
  right: 0;
  top: 0;
}
#mainContents .topNews .contentsArea .link01 a {
  position: relative;
  padding: 0 20px 0 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #004386;
}
#mainContents .topNews .contentsArea .link01 a::after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -6px 0 0;
  background-image: url("../img/icon01.svg");
  background-size: cover;
  content: "";
}
#mainContents .topNews .contentsArea .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .topNews .contentsArea ul {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 0;
  list-style-type: none;
}
#mainContents .topNews .contentsArea ul li {
  position: relative;
  padding: 0 0 15px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
#mainContents .topNews .contentsArea ul li span {
  position: absolute;
  left: 0;
  top: 0;
}
#mainContents .topNews .contentsArea ul li a {
  display: block;
  padding: 0 0 0 95px;
  transition: all 0.3s ease;
}
#mainContents .topNews .contentsArea ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .topNews {
    padding: 15px 0 5px;
  }
  #mainContents .topNews .contentsArea {
    width: calc(100% - 40px);
  }
  #mainContents .topNews .contentsArea h3 {
    font-size: 1.8rem;
  }
  #mainContents .topNews .contentsArea ul {
    padding: 15px 0 0;
  }
  #mainContents .topNews .contentsArea ul li {
    padding: 0 0 10px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  #mainContents .topNews .contentsArea ul li a {
    padding: 0 0 0 85px;
  }
}


#mainContents .topBana01 {
  width: 860px;
  margin: 0 auto;
  padding: 70px 0 20px;
}
#mainContents .topBana01 .column img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents .topBana01 {
    width: 100%;
    padding: 40px 0 20px;
  }
}

#mainContents .topLink01 {
  width: 500px;
  margin: 0 auto;
  padding: 70px 0;
}
#mainContents .topLink01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
  padding: 25px 0 0;
  box-sizing: border-box;
  border-radius: 40px;
  background-color: #004386;
  font-size: 2.0rem;
  font-weight: 400;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .topLink01 a::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  margin: -7px 0 0 80px;
  background-image: url("../img/icon02.svg");
  background-size: cover;
  content: "";
}
#mainContents .topLink01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .topLink01 {
    width: 320px;
    padding: 50px 0;
  }
  #mainContents .topLink01 a {
    height: 50px;
    padding: 15px 0 0;
    font-size: 1.8rem;
  }
  #mainContents .topLink01 a::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    margin: -7px 0 0 80px;
    background-image: url("../img/icon02.svg");
    background-size: cover;
    content: "";
  }
}



/*==========================================
 レイアウト 共通
===========================================*/
#mainContents .layoutTyp01 {
  width: 800px;
  margin: 0 auto;
  padding: 60px 0 0;
}
#mainContents .layoutTyp01 .programList {
  width: 100%;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
#mainContents .layoutTyp01 .programList .cateBox {
  width: 140px;
  height: 34px;
}
#mainContents .layoutTyp01 .programList .cateBox p {
  width: 140px;
  height: 34px;
  padding: 8px 0 0;
  box-sizing: border-box;
  background-color: #004386;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
}
#mainContents .layoutTyp01 .programList .statusBox {
  width: 100px;
  height: 34px;
}
#mainContents .layoutTyp01 .programList .statusBox p {
  width: 100px;
  height: 34px;
  padding: 8px 0 0;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
}
#mainContents .layoutTyp01 .programList .statusBox.icon01 p {
  background-color: #EA5353;
}
#mainContents .layoutTyp01 .programList .statusBox.icon02 p {
  background-color: #808080;
}
#mainContents .layoutTyp01 .programList .ereaBox {
  margin: 0 0 0 15px;
  padding: 8px 0 0;
}
#mainContents .layoutTyp01 .programList .ereaBox p {
  position: relative;
  padding: 0 0 0 23px;
  font-size: 1.6rem;
  font-weight: 700;
}
#mainContents .layoutTyp01 .programList .ereaBox p::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 17px;
  height: 25px;
  margin: -12px 0 0;
  background-image: url("../img/icon04.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp01 .programList .dayBox {
  margin: 0 0 0 15px;
}
#mainContents .layoutTyp01 .programList .dayBox ul {
  list-style-type: none;
  display: flex;
  justify-content: start;
}
#mainContents .layoutTyp01 .programList .dayBox ul li {
  display: block;
  width: auto;
  height: 34px;
  margin: 0 10px 0 0;
  padding: 7px 5px 0 15px;
  box-sizing: border-box;
  background-color: #FFF;
  border: 1px solid #78B9DD;
  border-radius: 6px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
#mainContents .layoutTyp01 h4 {
  padding: 20px 0 0;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .layoutTyp01 h3 {
  padding: 10px 0 15px;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .layoutTyp01 .bx-wrapper {
  max-width: 100% !important;
  margin: 0 0 70px !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
  background: none !important;
}
#mainContents .layoutTyp01 .bx-wrapper .bx-prev {
  left: -50px !important;
}
#mainContents .layoutTyp01 .bx-wrapper .bx-next {
  right: -50px !important;
}
#mainContents .layoutTyp01 .bx-wrapper .bx-controls-direction a {
  z-index: 500 !important;
}
#mainContents .layoutTyp01 .bx-wrapper .bx-pager.bx-default-pager a {
  background: #CECECE !important;
}
#mainContents .layoutTyp01 .bx-wrapper .bx-pager.bx-default-pager a:hover,
#mainContents .layoutTyp01 .bx-wrapper .bx-pager.bx-default-pager a.active,
#mainContents .layoutTyp01 .bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #004386 !important;
}
#mainContents .layoutTyp01 .imgMv {
  width: 800px;
  height: 600px;
  opacity: 0;
}
#mainContents .layoutTyp01 .imgMv .imgBox {
  width: 800px;
  height: 600px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
#mainContents .layoutTyp01 .imgMv .imgBox img {
  width: auto !important;
  max-width: initial;
  height: 600px;
}
#mainContents .layoutTyp01 .textBox p {
  font-size: 1.8rem;
  line-height: 1.8;
}
#mainContents .layoutTyp01 .textBox p a {
  color: #004386;
  text-decoration: underline;
}
#mainContents .layoutTyp01 .textBox p a:hover {
  opacity: 0.7;
}
#mainContents .layoutTyp01 table {
  width: 100%;
  margin: 50px 0 0;
}
#mainContents .layoutTyp01 table tr {
  border-bottom: 1px solid #EDEDED;
}
#mainContents .layoutTyp01 table tr th {
  width: 165px;
  padding: 25px 0 25px 5px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #004386;
  text-align: left;
  line-height: 1.8;
}
#mainContents .layoutTyp01 table tr td {
  padding: 25px 5px 25px 0;
  font-size: 1.6rem;
  line-height: 1.8;
}
#mainContents .layoutTyp01 table tr td a {
  text-decoration: underline;
  color: #004386;
}
#mainContents .layoutTyp01 table tr td a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 880px) {
  #mainContents .layoutTyp01 {
    width: calc(100% - 80px);
    padding: 50px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp01 {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 50px 0 0;
  }
  #mainContents .layoutTyp01 .programList .cateBox {
    width: 115px;
    height: 30px;
  }
  #mainContents .layoutTyp01 .programList .cateBox p {
    width: 115px;
    height: 30px;
    padding: 7px 0 0;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp01 .programList .statusBox {
    width: 80px;
    height: 30px;
  }
  #mainContents .layoutTyp01 .programList .statusBox p {
    width: 80px;
    height: 30px;
    padding: 7px 0 0;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp01 .programList .ereaBox {
    width: 60%;
    margin: 0 0 0 15px;
    padding: 6px 0 0;
  }
  #mainContents .layoutTyp01 .programList .ereaBox p {
    padding: 0 0 0 20px;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp01 .programList .ereaBox p::before {
    margin: -12px 0 0;
  }
  #mainContents .layoutTyp01 .programList .dayBox {
    margin: 10px 0 0 0;
  }
  #mainContents .layoutTyp01 .programList .dayBox ul li {
    height: 30px;
    margin: 0 10px 0 0;
    padding: 7px 5px 0 15px;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp01 h4 {
    padding: 10px 0 0;
    font-size: 1.7rem;
  }
  #mainContents .layoutTyp01 h3 {
    padding: 10px 0 15px;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp01 .imgMv {
    width: 100%;
    height: 280px;
    opacity: 0;
  }
  #mainContents .layoutTyp01 .bx-wrapper {
    margin: 0 0 50px !important;
  }
  #mainContents .layoutTyp01 .imgMv .imgBox {
    width: 100%;
    height: 280px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    /* background-color: #CCC; */
  }
  #mainContents .layoutTyp01 .bx-wrapper .bx-prev {
    display: none;
  }
  #mainContents .layoutTyp01 .bx-wrapper .bx-next {
    display: none;
  }
  #mainContents .layoutTyp01 .imgMv .imgBox img {
    width: auto !important;
    max-width: initial;
    height: 280px;
  }
  #mainContents .layoutTyp01 .imgMv img {
    width: 100%;
    height: auto;
  }
  #mainContents .layoutTyp01 .textBox p {
    font-size: 1.4rem;
    line-height: 1.6;
  }

  #mainContents .layoutTyp01 table {
    margin: 30px 0 0;
  }
  #mainContents .layoutTyp01 table tr th {
    width: 110px;
    padding: 15px 0 15px 0;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp01 table tr td {
    padding: 15px 0 15px 0;
    font-size: 1.4rem;
  }
}


#mainContents .layoutTyp02 {
  width: 800px;
  margin: 0 auto;
  padding: 40px 0 0;
}
#mainContents .layoutTyp02 .columnBox {
  width: 100%;
  padding: 0 0 60px;
  display: flex;
  justify-content: space-between;
}
#mainContents .layoutTyp02 .columnBox:last-child {
  padding: 0;
}
#mainContents .layoutTyp02 .columnBox .column_L {
  width: 146px;
}
#mainContents .layoutTyp02 .columnBox .column_L img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp02 .columnBox .column_R {
  width: 620px;
}
#mainContents .layoutTyp02 .columnBox .column_R h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .layoutTyp02 .columnBox .column_R p {
  padding: 5px 0 0;
  font-size: 1.6rem;
  line-height: 1.4;
}
#mainContents .layoutTyp02 .columnBox .column_R .audioPlayer {
  margin: 35px 0 0;
}
#mainContents .layoutTyp02 .columnBox .column_R .audioPlayer audio {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp02 {
    width: calc(100% - 40px);
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp02 .columnBox {
    padding: 0 0 40px;
  }
  #mainContents .layoutTyp02 .columnBox .column_L {
    width: 30%;
  }
  #mainContents .layoutTyp02 .columnBox .column_R {
    width: 68%;
  }
  #mainContents .layoutTyp02 .columnBox .column_R h4 {
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp02 .columnBox .column_R p {
    padding: 5px 0 0;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp02 .columnBox .column_R .audioPlayer {
    margin: 10px 0 0;
  }
}

#mainContents .layoutTyp03 {
  width: 800px;
  margin: 0 auto;
  padding: 40px 0 0;
}
#mainContents .layoutTyp03 iframe {
  width: 100%;
  height: 600px;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp03 {
    width: calc(100% - 40px);
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp03 iframe {
    height: 400px;
  }
}


#mainContents .layoutTyp04 {
  padding: 50px 0 0;
  /* background-color: #FFF; */
}
#mainContents .layoutTyp04.top {
  background-color: transparent ;
}
#mainContents .layoutTyp04 .columnBox {
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 20px 0 0;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
#mainContents .layoutTyp04 .columnBox .column {
  width: 32.5%;
  padding: 0 1.25% 80px 0;
}
#mainContents .layoutTyp04 .columnBox .column:nth-child(3n) {
  padding: 0 0 80px 0;
}
#mainContents .layoutTyp04 .columnBox .column a {
  transition: all 0.5s ease;
}
#mainContents .layoutTyp04 .columnBox .column a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp04 .columnBox .column .programList {
  width: 100%;
  padding: 0 0 10px;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
#mainContents .layoutTyp04 .columnBox .column .cateBox {
  width: auto;
  height: 34px;
}
#mainContents .layoutTyp04 .columnBox .column .cateBox p {
  position: relative;
  z-index: 10;
  width: auto;
  height: 34px;
  padding: 5px 15px 0;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
}
#mainContents .layoutTyp04 .columnBox .column .cateBox p::before {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0;
  width: 100%;
  height: 34px;
  margin: 0 0 0 -50%;
  background-color: #004386;
  transform: skewX(-10deg);
  content: "";
}
#mainContents .layoutTyp04 .columnBox .column .ereaBox {
  margin: 0 0 0 10px;
  padding: 5px 0 0;
}
#mainContents .layoutTyp04 .columnBox .column .ereaBox p {
  position: relative;
  padding: 0 0 0 23px;
  font-size: 1.5rem;
  font-weight: 700;
}
#mainContents .layoutTyp04 .columnBox .column .ereaBox p::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 17px;
  height: 25px;
  margin: -12px 0 0;
  background-image: url("../img/icon04.svg");
  background-size: cover;
  content: "";
}
@media only screen and (max-width: 1205px) {
  #mainContents .layoutTyp04 .columnBox {
    justify-content: space-between;
  }
  #mainContents .layoutTyp04 .columnBox .column {
    width: 49%;
    padding: 0 0 80px 0;
  }
}
#mainContents .layoutTyp04 .columnBox .column.fade_off {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.0s ease;
}
#mainContents .layoutTyp04 .columnBox .column:nth-child(1n).fade_off {
  transition-delay: 0s;
}
#mainContents .layoutTyp04 .columnBox .column:nth-child(2n).fade_off {
  transition-delay: 0.15s;
}
#mainContents .layoutTyp04 .columnBox .column:nth-child(3n).fade_off {
  transition-delay: 0.3s;
}
#mainContents .layoutTyp04 .columnBox .column.fade_on {
  opacity: 1;
  transform: translateY(0px);
}
#mainContents .layoutTyp04 .columnBox .column .imgBox {
  position: relative;
  margin: 0 0 5px;
  overflow: hidden;
}
#mainContents .layoutTyp04 .columnBox .column .imgBox::before {
  position: absolute;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1.0);
  content: "";
}
#mainContents .layoutTyp04 .columnBox .column .imgBox.fade_off::before {
  transition: all 1.0s ease;
}
#mainContents .layoutTyp04 .columnBox .column:nth-child(1n) .imgBox.fade_off::before {
  transition-delay: 0s;
}
#mainContents .layoutTyp04 .columnBox .column:nth-child(2n) .imgBox.fade_off::before {
  transition-delay: 0.15s;
}
#mainContents .layoutTyp04 .columnBox .column:nth-child(3n) .imgBox.fade_off::before {
  transition-delay: 0.3s;
}
#mainContents .layoutTyp04 .columnBox .column .imgBox.fade_on::before {
  transform: translateY(102%);
}
#mainContents .layoutTyp04 .columnBox .column .imgBox img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
/* #mainContents .layoutTyp04 .columnBox .column a:hover {
  opacity: 1;
}
#mainContents .layoutTyp04 .columnBox .column .imgBox img:hover {
  transform: scale(1.1, 1.1);
  opacity: 1;
} */
#mainContents .layoutTyp04 .columnBox .column .imgBox .statusBox {
  position: absolute;
  z-index: 90;
  right: 15px;
  top: 15px;
}
#mainContents .layoutTyp04 .columnBox .column .imgBox .statusBox p {
  position: relative;
  padding: 10px;
  box-sizing: border-box;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
}
#mainContents .layoutTyp04 .columnBox .column .imgBox .statusBox p::before {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0 0 0 -50%;
  transform: skewX(-10deg);
  content: "";
}
#mainContents .layoutTyp04 .columnBox .column .imgBox .statusBox.icon01 p::before {
  background-color: #EA5353;
}
#mainContents .layoutTyp04 .columnBox .column .imgBox .statusBox.icon02 p::before {
  background-color: #808080;
}
#mainContents .layoutTyp04 .columnBox .column .imgBox .statusBox.icon03 p::before {
  background-color: #EFA818;
}
#mainContents .layoutTyp04 .columnBox .column h3 {
  position: relative;
  display: inline;
  padding: 0;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.5;
}
#mainContents .layoutTyp04 .columnBox .column h3.blank {
  padding: 0 0 0 25px;
}
#mainContents .layoutTyp04 .columnBox .column h3.blank::after {
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  background-image: url("../img/icon07.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp04 .columnBox .column p {
  padding: 8px 0 0;
  font-size: 1.8rem;
  line-height: 1.5;
}
#mainContents .layoutTyp04 .columnBox .column .dayBox {
  padding: 13px 0 5px;
}
#mainContents .layoutTyp04 .columnBox .column .dayBox ul {
  list-style-type: none;
  display: flex;
  justify-content: start;
}
#mainContents .layoutTyp04 .columnBox .column .dayBox ul li {
  display: block;
  width: auto;
  height: 34px;
  margin: 0 10px 0 0;
  padding: 8px 5px 0 15px;
  box-sizing: border-box;
  background-color: #CCE8F2;
  border-radius: 6px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp04 {
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp04 .columnBox {
    width: calc(100% - 40px);
    padding: 20px 0 0;
  }
  #mainContents .layoutTyp04 .columnBox .column {
    width: 100%;
    padding: 0 0 50px 0;
  }
  #mainContents .layoutTyp04 .columnBox .column .cateBox {
    height: 30px;
  }
  #mainContents .layoutTyp04 .columnBox .column .cateBox p {
    height: 30px;
    padding: 5px 15px 0;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp04 .columnBox .column .cateBox p::before {
    height: 30px;
  }
  #mainContents .layoutTyp04 .columnBox .column .ereaBox {
    margin: 0 0 0 15px;
    padding: 5px 0 0;
  }
  #mainContents .layoutTyp04 .columnBox .column .ereaBox p {
    padding: 0 0 0 15px;
    font-size: 1.3rem;
  }
  #mainContents .layoutTyp04 .columnBox .column .ereaBox p::before {
    left: -6px;
    margin: -11px 0 0;
  }
  #mainContents .layoutTyp04 .columnBox .column:nth-child(1n).fade_off {
    transition-delay: 0s;
  }
  #mainContents .layoutTyp04 .columnBox .column:nth-child(2n).fade_off {
    transition-delay: 0s;
  }
  #mainContents .layoutTyp04 .columnBox .column:nth-child(3n).fade_off {
    transition-delay: 0s;
  }
  #mainContents .layoutTyp04 .columnBox .column:nth-child(1n) .imgBox.fade_off::before {
    transition-delay: 0s;
  }
  #mainContents .layoutTyp04 .columnBox .column:nth-child(2n) .imgBox.fade_off::before {
    transition-delay: 0s;
  }
  #mainContents .layoutTyp04 .columnBox .column:nth-child(3n) .imgBox.fade_off::before {
    transition-delay: 0s;
  }
  #mainContents .layoutTyp04 .columnBox .column .imgBox .statusBox {
    right: 10px;
    top: 10px;
  }
  #mainContents .layoutTyp04 .columnBox .column .imgBox .statusBox p {
    padding: 10px;
    font-size: 1.3rem;
  }
  #mainContents .layoutTyp04 .columnBox .column h3 {
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp04 .columnBox .column p {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  #mainContents .layoutTyp04 .columnBox .column .dayBox {
    padding: 10px 0 2px;
  }
  #mainContents .layoutTyp04 .columnBox .column .dayBox ul li {
    height: 30px;
    margin: 0 10px 0 0;
    padding: 7px 3px 0 13px;
    font-size: 1.4rem;
  }
}


#mainContents .layoutTyp05 {
  width: 850px;
  margin: 0 auto;
  padding: 70px 0 0;
}
#mainContents .layoutTyp05.top {
  padding: 40px 0 0;
}
#mainContents .layoutTyp05 ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
#mainContents .layoutTyp05 ul li {
  width: 160px;
}
#mainContents .layoutTyp05 ul li a {
  display: block;
  width: 100%;
  height: 48px;
  padding: 14px 0 0;
  box-sizing: border-box;
  border-radius: 6px 6px 0 0;
  background-color: #6AAAC6;
  font-size: 1.8rem;
  text-align: center;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp05 ul li.active a {
  background-color: #004386;
}
#mainContents .layoutTyp05 ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp05 .allLink {
  display: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp05 {
    width: calc(100% - 40px);
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp05.top {
    padding: 20px 0 0;
  }
  #mainContents .layoutTyp05 ul li:nth-child(1) {
    display: none;
  }
  #mainContents .layoutTyp05 ul li {
    width: 23%;
  }
  #mainContents .layoutTyp05 ul li a {
    height: 44px;
    padding: 7px 0 0;
    font-size: 1.3rem;
    line-height: 1.2;
  }
  #mainContents .layoutTyp05 ul li:nth-child(4) a,
  #mainContents .layoutTyp05 ul li:nth-child(5) a {
    padding: 15px 0 0;
  }
  #mainContents .layoutTyp05 .allLink {
    display: block;
    width: 120px;
    height: 40px;
    margin: 0 auto 20px;
  }
  #mainContents .layoutTyp05 .allLink a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 12px 0 0;
    box-sizing: border-box;
    border-radius: 6px;
    background-color: #6AAAC6;
    font-size: 1.3rem;
    text-align: center;
    color: #FFF;
  }
  #mainContents .layoutTyp05 .allLink a.active {
    background-color: #004386;
  }
  #mainContents .layoutTyp05 .allLink a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}


#mainContents .layoutTyp06 {
  position: relative;
  width: 100%;
  padding: 30px 0 0;
  background-color: #FFF;
}
#mainContents .layoutTyp06.top {
  background-color: transparent;
}
#mainContents .layoutTyp06.top::before {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 600px;
  background-image: url("../img/bk01.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp06 ul.tag01 {
  width: 650px;
  margin: 0 auto;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp06 ul.tag01 li a {
  position: relative;
  display: block;
  padding: 10px 35px 12px 20px;
  box-sizing: border-box;
  border-radius: 30px;
  background-color: #FFF;
  border: 2px solid #004386;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  color: #004386;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp06 ul.tag01 li a::after {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0;
  background-image: url("../img/icon01.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp06 ul.tag01 li.active a {
  background-color: #004386;
  color: #FFF;
}
#mainContents .layoutTyp06 ul.tag01 li.active a::after {
  background-image: url("../img/icon02.svg");
}
#mainContents .layoutTyp06 ul.tag01 li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#mainContents .layoutTyp06 ul.tag02 {
  width: 755px;
  margin: 25px auto 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp06 ul.tag02 li a {
  position: relative;
  display: block;
  padding: 10px 35px 12px 20px;
  box-sizing: border-box;
  border-radius: 30px;
  background-color: #FFF;
  border: 2px solid #004386;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  color: #004386;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp06 ul.tag02 li a::after {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0;
  background-image: url("../img/icon01.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp06 ul.tag02 li.active a {
  background-color: #004386;
  color: #FFF;
}
#mainContents .layoutTyp06 ul.tag02 li.active a::after {
  background-image: url("../img/icon02.svg");
}
#mainContents .layoutTyp06 ul.tag02 li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp06 {
    width: 100%;
    padding: 15px 0 0;
  }
  #mainContents .layoutTyp06 ul.tag01 {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    justify-content: center;
  }
  #mainContents .layoutTyp06 ul.tag01 li {
    margin: 0 5px 10px;
  }
  #mainContents .layoutTyp06 ul.tag01 li a {
    padding: 7px 30px 9px 15px;
    border: 1px solid #004386;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp06 ul.tag01 li a::after {
    right: 9px;
  }

  #mainContents .layoutTyp06 ul.tag02 {
    width: 100%;
    margin: 0;
    padding: 0 15px;
    box-sizing: border-box;
    justify-content: center;
  }
  #mainContents .layoutTyp06 ul.tag02 li {
    margin: 0 5px 10px;
  }
  #mainContents .layoutTyp06 ul.tag02 li a {
    padding: 7px 30px 9px 15px;
    border: 1px solid #004386;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp06 ul.tag02 li a::after {
    right: 9px;
  }
}

#mainContents .layoutTyp07 {
  display: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp07 {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    padding: 9px 0 0;
    box-sizing: border-box;
    background-color: #FFF;
    box-shadow: 0px 5px 15px 4px rgba(0, 0, 0, 0.07);
  }
  #mainContents .layoutTyp07 ul {
    width: calc(100% - 40px);
    margin: 0 auto;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
  }
  #mainContents .layoutTyp07 ul li {
    width: 23%;
  }
  #mainContents .layoutTyp07 ul li a {
    display: block;
    width: 100%;
    height: 44px;
    padding: 14px 0 0;
    box-sizing: border-box;
    border-radius: 6px;
    background-color: #6AAAC6;
    font-size: 1.3rem;
    line-height: 1.2;
    text-align: center;
    color: #FFF;
    transition: all 0.3s ease;
  }
  #mainContents .layoutTyp07 ul li:nth-child(1) a,
  #mainContents .layoutTyp07 ul li:nth-child(2) a {
    padding: 6px 0 0;
  }
  #mainContents .layoutTyp07 ul li.active a {
    background-color: #004386;
  }
  #mainContents .layoutTyp07 ul li a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  #mainContents .layoutTyp07 .allLink {
    display: none;
  }
}

#mainContents .layoutTyp08 {
  width: 800px;
  margin: 0 auto;
  padding: 40px 0 0;
}
#mainContents .layoutTyp08 ul {
  list-style-type: none;
}
#mainContents .layoutTyp08 ul li {
  position: relative;
  margin: 25px 0 0;
  padding: 0 0 25px;
  border-bottom: 1px solid #CCC;
}
#mainContents .layoutTyp08 ul li a {
  display: inline-block;
  padding: 0 0 0 120px;
  font-size: 1.8rem;
  line-height: 1.4;
}
#mainContents .layoutTyp08 ul li a:hover {
  text-decoration: none;
  color: #004386;
}
#mainContents .layoutTyp08 ul li span {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp08 {
    width: calc(100% - 40px);
    padding: 20px 0 0;
  }
  #mainContents .layoutTyp08 ul li {
    margin: 20px 0 0;
    padding: 0 0 20px;
  }
  #mainContents .layoutTyp08 ul li a {
    padding: 0 0 0 90px;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp08 ul li span {
    font-size: 1.4rem;
  }
}

#mainContents .layoutTyp09 {
  width: 800px;
  margin: 0 auto;
  padding: 80px 0 0;
}
#mainContents .layoutTyp09 p.date {
  font-size: 1.6rem;
  font-weight: 400;
}
#mainContents .layoutTyp09 h2 {
  padding: 15px 0 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #004386;
}
#mainContents .layoutTyp09 .entry {
  width: 100%;
  padding: 40px 0 0;
}
#mainContents .layoutTyp09 .entry p {
  padding: 0 0 30px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.0;
}
#mainContents .layoutTyp09 .entry p a {
  text-decoration: underline;
  color: #004386;
}
#mainContents .layoutTyp09 .entry p a:hover {
  opacity: 0.7;
}
#mainContents .layoutTyp09 .entry img {
  max-width: 100%;
  padding: 0 0 30px;
}
#mainContents .layoutTyp09 .link01 {
  width: 250px;
  margin: 0 auto;
  padding: 100px 0 0;
}
#mainContents .layoutTyp09 .link01 a {
  display: block;
  width: 250px;
  height: 50px;
  padding: 15px 0 0;
  border-radius: 25px;
  background-color: #004386;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 500;
  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: 50px 0 0;
  }
  #mainContents .layoutTyp09 p.date {
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp09 h2 {
    padding: 15px 0 0;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp09 .entry {
    padding: 20px 0 0;
  }
  #mainContents .layoutTyp09 .entry p {
    padding: 0 0 20px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  #mainContents .layoutTyp09 .entry img {
    padding: 0 0 20px;
  }
  #mainContents .layoutTyp09 .link01 {
    width: 200px;
    padding: 50px 0 0;
  }
  #mainContents .layoutTyp09 .link01 a {
    width: 100%;
    height: 40px;
    padding: 11px 0 0;
    font-size: 1.6rem;
  }
}

#mainContents .layoutTyp10 {
  width: 800px;
  margin: 0 auto;
  padding: 80px 0 0;
}
#mainContents .layoutTyp10 p.text01 {
  padding: 0 0 20px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.0;
}
#mainContents .layoutTyp10 p.text01 a {
  color: #004386;
  text-decoration: underline;
}
#mainContents .layoutTyp10 p.text01 a:hover {
  opacity: 0.7;
}
#mainContents .layoutTyp10 p.text02 {
  padding: 0 0 20px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp10 .formArea {
  width: 100%;
  padding: 50px 0 0;
}
#mainContents .layoutTyp10 .formArea h3 {
  padding: 50px 0 0;
  font-size: 2.0rem;
  font-weight: 700;
}
#mainContents .layoutTyp10 .formArea p {
  padding: 20px 0 50px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp10 .formArea table {
  width: 100%;
  margin: 0 0 15px;
}
#mainContents .layoutTyp10 .formArea table th {
  position: relative;
  width: 250px;
  padding: 20px 0;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
  vertical-align: middle;
  line-height:  1.4;
}
#mainContents .layoutTyp10 .formArea table th span {
  margin: 0 0 0 7px;
  padding: 2px 10px 4px;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFF;
}
#mainContents .layoutTyp10 .formArea table th span.required {
  background-color: #EA5353;
}
#mainContents .layoutTyp10 .formArea table th span.any {
  background-color: #C4C4C4;
}
#mainContents .layoutTyp10 .formArea table td {
  padding: 20px 0;
  font-size: 1.6rem;
  vertical-align: middle;
}
#mainContents .layoutTyp10 .formArea table td input[type="text"],
#mainContents .layoutTyp10 .formArea table td input[type="email"],
#mainContents .layoutTyp10 .formArea table td input[type="tel"] {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: none;
  background-color: #FFF;
  border: 1px solid #54575A;
  box-sizing: border-box;
  border-radius: 6px;
  font-size: 1.6rem;
}
#mainContents .layoutTyp10 .formArea table td input.typ01 {
  width: 50%;
}
#mainContents .layoutTyp10 .formArea table td input[type="text"]::placeholder,
#mainContents .layoutTyp10 .formArea table td input[type="email"]::placeholder,
#mainContents .layoutTyp10 .formArea table td input[type="tel"]::placeholder {
  color: #969696;
}
#mainContents .layoutTyp10 .formArea table td input[type="text"]:focus,
#mainContents .layoutTyp10 .formArea table td input[type="email"]:focus,
#mainContents .layoutTyp10 .formArea table td input[type="tel"]:focus {
  outline: none;
}
#mainContents .layoutTyp10 .formArea table td select {
  -webkit-appearance: none;
  width: auto;
  height: 50px;
  padding: 0 20px;
  border: none;
  background-color: #FFF;
  border: 1px solid #54575A;
  box-sizing: border-box;
  border-radius: 6px;
  font-size: 1.6rem;
  color: #333;
}
#mainContents .layoutTyp10 .formArea table td textarea {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 200px;
  padding: 5px 10px;
  border: none;
  background-color: #FFF;
  border: 1px solid #54575A;
  box-sizing: border-box;
  border-radius: 6px;
  font-size: 1.6rem;
  line-height: 1.8;
}
#mainContents .layoutTyp10 .formArea table td textarea::placeholder {
  color: #B4B4B4;
}
#mainContents .layoutTyp10 .formArea table td textarea:focus {
  outline: none;
}
#mainContents .layoutTyp10 .formArea table td label {
  display: inline-block;
  padding: 12px 25px 12px 0;
  font-size: 1.6rem;
}
#mainContents .layoutTyp10 .formArea table td label input[type="radio"] {
  margin: -2px 4px 0 0;
}
#mainContents .layoutTyp10 .formArea .privacyBox {
  width: 100%;
  padding: 50px 0 0;
  text-align: center;
  font-size: 1.6rem;
}
#mainContents .layoutTyp10 .formArea .privacyBox input[type="radio"] {
  margin: -2px 4px 0 0;
  font-size: 2.0rem;
}
#mainContents .layoutTyp10 .formArea .privacyBox p {
  display: block;
  padding: 30px 0 0;
  font-size: 1.6rem;
  line-height: 1.4;
}
#mainContents .layoutTyp10 .formArea .privacyBox p a {
  color: #004386;
  text-decoration: underline;
}
#mainContents .layoutTyp10 .formArea .privacyBox p a:hover {
  opacity: 0.7;
}
#mainContents .layoutTyp10 .formArea .submitArea {
  position: relative;
  width: 330px;
  height: 80px;
  margin: 70px auto 0;
}
#mainContents .layoutTyp10 .formArea .submitArea input[type="submit"] {
  -webkit-appearance: none;
  width: 100%;
  height: 60px;
  border-radius: 40px;
  background-color: #004386;
  border: none;
  font-size: 1.8rem;
  font-weight: 500;
  color: #FFF;
  cursor: pointer;
}
.mw_wp_form .horizontal-item+.horizontal-item {
  margin-left: 0 !important;
}
#mainContents .layoutTyp10 .formArea .error {
  display: block;
  padding: 10px 0 0;
  font-size: 1.6rem;
  color: #B70000;
}
#mainContents .layoutTyp10 .mw_wp_form_preview .noView {
  display: none;
}

#mainContents .layoutTyp10 .link01 {
  width: 500px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#mainContents .layoutTyp10 .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  padding: 20px 0 0;
  box-sizing: border-box;
  border-radius: 30px;
  background-color: #004386;
  font-size: 2.0rem;
  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: 40px 0 30px;
  }
  #mainContents .layoutTyp10 p.text01 {
    padding: 0 0 20px;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp10 p.text02 {
    padding: 0 0 20px;
    font-size: 1.2rem;
  }
  #mainContents .layoutTyp10 .formArea {
    padding: 0;
  }
  #mainContents .layoutTyp10 .formArea h3 {
    padding: 30px 0 0;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp10 .formArea p {
    padding: 15px 0 30px;
  }
  #mainContents .layoutTyp10 .formArea table {
    width: 100%;
    margin: 0 0 15px;
  }
  #mainContents .layoutTyp10 .formArea table th {
    display: block;
    width: 100%;
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp10 .formArea table th.typ01 {
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp10 .formArea table td {
    display: block;
    width: 100%;
    padding: 10px 0 0;
  }
  #mainContents .layoutTyp10 .formArea table tr.typ01 th {
    padding: 0;
  }
  #mainContents .layoutTyp10 .formArea table tr.typ01 td {
    padding: 20px 0 0;
  }
  #mainContents .layoutTyp10 .formArea table td textarea {
    height: 300px;
  }
  #mainContents .layoutTyp10 .formArea .privacyBox {
    text-align: left;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp10 .formArea .privacyBox p {
    text-align: left;
  }
  #mainContents .layoutTyp10 .formArea .submitArea {
    position: relative;
    width: 250px;
    height: 50px;
    margin: 50px auto 0;
  }
  #mainContents .layoutTyp10 .formArea .submitArea input[type="submit"] {
    height: 50px;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp10 .link01 {
    width: 350px;
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp10 .link01 a {
    height: 50px;
    padding: 16px 0 0;
    font-size: 1.8rem;
  }
}


#mainContents .layoutTyp11 {
  width: 800px;
  margin: 0 auto;
  padding: 80px 0 0;
}
#mainContents .layoutTyp11 h3 {
  position: relative;
  margin: 0 0 15px;
  padding: 0 0 0 30px;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .layoutTyp11 h3::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0;
  background-color: #004386;
  content: "";
}
#mainContents .layoutTyp11 h4 {
  padding: 20px 0 15px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #004386;
}
#mainContents .layoutTyp11 h5 {
  padding: 20px 0 5px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .layoutTyp11 p.text01 {
  padding: 0 0 20px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.0;
}
#mainContents .layoutTyp11 p.text02 {
  padding: 0 0 20px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp11 p.text03 {
  padding: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #B70000;
}
#mainContents .layoutTyp11 p.text04 {
  padding: 50px 0 100px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
#mainContents .layoutTyp11 p.text05 {
  padding: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.0;
}
#mainContents .layoutTyp11 img {
  width: 100%;
  height: auto;
  padding: 0 0 20px;
}
#mainContents .layoutTyp11 img.typ01 {
  padding: 0 0 50px;
}
#mainContents .layoutTyp11 p a {
  color: #004386;
  text-decoration: underline;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp11 p a:hover {
  opacity: 0.7;
}
#mainContents .layoutTyp11 table {
  width: 100%;
  margin: 30px 0 0;
  border-top: 1px solid #CCCCCC;
}
#mainContents .layoutTyp11 table tr {
  border-bottom: 1px solid #CCCCCC;
}
#mainContents .layoutTyp11 table tr th {
  width: 140px;
  padding: 20px 0;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
}
#mainContents .layoutTyp11 table tr td {
  padding: 20px 0;
  font-size: 1.6rem;
  line-height: 1.8;
}
#mainContents .layoutTyp11 table tr td a {
  color: #004386;
  text-decoration: underline;
}
#mainContents .layoutTyp11 table tr td a:hover {
  opacity: 0.7;
}
#mainContents .layoutTyp11 ul.typ01 {
  width: 100%;
  padding: 30px 30px 10px;
  list-style-type: none;
  border: 1px solid #C4C4C4;
  background-color: #FFF;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp11 ul.typ01 li {
  width: 49%;
  padding: 0 0 15px;
  box-sizing: border-box;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp11 {
    width: calc(100% - 40px);
    padding: 40px 0 0;
  }
  #mainContents .layoutTyp11 h3 {
    margin: 0;
    padding: 0 0 10px 25px;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp11 h3::before {
    width: 18px;
    height: 18px;
    margin: -13px 0 0;
  }
  #mainContents .layoutTyp11 h4 {
    padding: 15px 0 5px;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp11 p.text01 {
    padding: 0 0 20px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  #mainContents .layoutTyp11 p.text02 {
    padding: 0 0 15px;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  #mainContents .layoutTyp11 p.text03 {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  #mainContents .layoutTyp11 p.text04 {
    padding: 30px 0 70px;
    font-size: 2.0rem;
  }
  #mainContents .layoutTyp11 p.text05 {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  #mainContents .layoutTyp11 img {
    padding: 0 0 10px;
  }
  #mainContents .layoutTyp11 img.typ01 {
    padding: 0 0 30px;
  }
  #mainContents .layoutTyp11 table {
    margin: 20px 0 0;
  }
  #mainContents .layoutTyp11 table tr th {
    width: 90px;
    padding: 15px 0;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  #mainContents .layoutTyp11 table tr td {
    padding: 15px 0;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  #mainContents .layoutTyp11 ul.typ01 {
    padding: 20px 20px 10px;
  }
  #mainContents .layoutTyp11 ul.typ01 li {
    width: 48%;
    padding: 0 0 10px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

#mainContents .layoutTyp11 .listBox {
  width: 100%;
  padding: 20px 0 20px;
}
#mainContents .layoutTyp11 .listBox ul {
  list-style-type: none;
}
#mainContents .layoutTyp11 .listBox ul li {
  position: relative;
  padding: 0 0 15px 20px;
  font-size: 1.6rem;
  line-height: 1.4;
}
#mainContents .layoutTyp11 .listBox ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.6rem;
  content: "・";
}
#mainContents .layoutTyp11 .listBox ul li a {
  color: #004386;
  text-decoration: underline;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp11 .listBox ul li a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp11 .listBox {
    padding: 10px 0 20px;
  }
  #mainContents .layoutTyp11 .listBox ul li {
    padding: 0 0 10px 18px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  #mainContents .layoutTyp11 .listBox ul li::before {
    font-size: 1.4rem;
  }
}

#mainContents .layoutTyp11 .link01 {
  width: 500px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#mainContents .layoutTyp11 .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  padding: 20px 0 0;
  box-sizing: border-box;
  border-radius: 30px;
  background-color: #004386;
  font-size: 2.0rem;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp11 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp11 .link01 {
    width: 335px;
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp11 .link01 a {
    height: 50px;
    padding: 16px 0 0;
    font-size: 1.8rem;
  }
}


#mainContents .layoutTyp11 .link02 {
  width: 500px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#mainContents .layoutTyp11 .link02 a {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  padding: 20px 0 0;
  box-sizing: border-box;
  border-radius: 30px;
  background-color: #004386;
  font-size: 2.0rem;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp11 .link02 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp11 .link02 {
    width: 335px;
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp11 .link02 a {
    height: 50px;
    padding: 16px 0 0;
    font-size: 1.8rem;
  }
}

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

#mainContents .layoutTyp13 {
  width: 1000px;
  margin: 0 auto;
  padding: 70px 0 0;
}
#mainContents .layoutTyp13 .pageNavi {
  width: 100%;
  padding: 0 0 80px;
}
#mainContents .layoutTyp13 .pageNavi ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp13 .pageNavi ul li {
  width: 13.5%;
  height: 70px;
}
#mainContents .layoutTyp13 .pageNavi ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 25px 0 0;
  box-sizing: border-box;
  background-color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
#mainContents .layoutTyp13 .pageNavi ul li:nth-child(4) a {
  padding: 15px 0 0;
}
#mainContents .layoutTyp13 .pageNavi ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp13 .pageNavi ul li.active a {
  background-color: #004386;
  font-weight: 700;
  color: #FFFFFF;
}

#mainContents .layoutTyp13 .columnArea {
  width: 100%;
  padding: 0 0 80px;
}
#mainContents .layoutTyp13 h3 {
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 0 30px;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .layoutTyp13 h3::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0;
  background-color: #004386;
  content: "";
}
#mainContents .layoutTyp13 .columnArea .columnBox {
  width: 100%;
  margin: 0 0 25px;
  padding: 0 0 25px;
  border-bottom: 1px solid #CCC;
}
#mainContents .layoutTyp13 .columnArea .columnBox h4 {
  position: relative;
  padding: 0 0 0 23px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .layoutTyp13 .columnArea .columnBox h4 a {
  display: block;
}
#mainContents .layoutTyp13 .columnArea .columnBox h4 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .layoutTyp13 .columnArea .columnBox h4 a::before {
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #004386;
  content: "Q";
}
#mainContents .layoutTyp13 .columnArea .columnBox h4 a::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 25px;
  height: 25px;
  background-image: url("../img/icon10.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp13 .columnArea .columnBox h4 a.open::after {
  background-image: url("../img/icon11.svg");
}
#mainContents .layoutTyp13 .columnArea .columnBox p {
  display: none;
  padding: 15px 30px 0 23px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
}
#mainContents .layoutTyp13 .columnArea .columnBox p a {
  text-decoration: underline;
  color: #004386;
}
#mainContents .layoutTyp13 .columnArea .columnBox p a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp13 {
    width: calc(100% - 40px);
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp13 .pageNavi {
    padding: 0 0 30px;
  }
  #mainContents .layoutTyp13 .pageNavi ul li {
    width: 48%;
    height: 50px;
    margin: 0 0 10px;
  }
  #mainContents .layoutTyp13 .pageNavi ul li:nth-child(1) {
    width: 100%;
    height: 40px;
  }
  #mainContents .layoutTyp13 .pageNavi ul li a {
    padding: 16px 0 0;
    font-size: 1.3rem;
  }
  #mainContents .layoutTyp13 .pageNavi ul li:nth-child(1) a {
    padding: 11px 0 0;
  }
  #mainContents .layoutTyp13 .pageNavi ul li:nth-child(4) a {
    padding: 8px 0 0;
  }
  #mainContents .layoutTyp13 .pageNavi ul li a:hover {
    opacity: 1;
  }

  #mainContents .layoutTyp13 .columnArea {
    padding: 0 0 50px;
  }
  #mainContents .layoutTyp13 h3 {
    padding: 0 0 10px 25px;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp13 h3::before {
    width: 18px;
    height: 18px;
    margin: -13px 0 0;
  }
  #mainContents .layoutTyp13 .columnArea .columnBox {
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 20px;
  }
  #mainContents .layoutTyp13 .columnArea .columnBox h4 {
    position: relative;
    padding: 0 25px 0 20px;
    font-size: 1.5rem;
  }
  #mainContents .layoutTyp13 .columnArea .columnBox h4 a::before {
    font-size: 1.5rem;
  }
  #mainContents .layoutTyp13 .columnArea .columnBox h4 a::after {
    top: 3px;
    width: 15px;
    height: 15px;
  }
  #mainContents .layoutTyp13 .columnArea .columnBox h4 a:hover {
    opacity: 1;
  }
  #mainContents .layoutTyp13 .columnArea .columnBox p {
    padding: 15px 25px 0 20px;
    font-size: 1.3rem;
  }
}

#mainContents .layoutTyp14 {
  width: 800px;
  margin: 0 auto;
  padding: 80px 0 0;
}
#mainContents .layoutTyp14 h3 {
  position: relative;
  margin: 0 0 10px;
  padding: 0 0 0 30px;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .layoutTyp14 h3::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0;
  background-color: #004386;
  content: "";
}
#mainContents .layoutTyp14 h4 {
  padding: 0 0 10px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #004386;
}
#mainContents .layoutTyp14 h5 {
  padding: 20px 0 5px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .layoutTyp14 p.text01 {
  padding: 0 0 40px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.0;
}
#mainContents .layoutTyp14 p.text02 {
  padding: 0 0 30px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .layoutTyp14 p a {
  color: #004386;
  text-decoration: underline;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp14 p a:hover {
  opacity: 0.7;
}
#mainContents .layoutTyp14 .imgBox {
  width: 100%;
  padding: 0 0 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp14 {
    width: calc(100% - 40px);
    padding: 40px 0 20px;
  }
  #mainContents .layoutTyp14 h3 {
    margin: 0;
    padding: 0 0 10px 25px;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp14 h3::before {
    width: 18px;
    height: 18px;
    margin: -13px 0 0;
  }
  #mainContents .layoutTyp14 h4 {
    padding: 15px 0 5px;
    font-size: 1.6rem;
  }
  #mainContents .layoutTyp14 p.text01 {
    padding: 0 0 20px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  #mainContents .layoutTyp14 p.text02 {
    padding: 0 0 15px;
    font-size: 1.2rem;
    line-height: 1.6;
  }
}


#mainContents .layoutTyp14 table {
  width: 100%;
  margin: 0 0 30px;
  border-top: 2px solid #004386;
  border-left: 2px solid #004386;
}
#mainContents .layoutTyp14 table tr {
  border-bottom: 2px solid #004386;
}
#mainContents .layoutTyp14 table tr td {
  padding: 20px 0;
  border-right: 2px solid #004386;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
  vertical-align: middle;
}
#mainContents .layoutTyp14 table tr td.typ01 {
  background-color: #E8F3F9;
  font-weight: 700;
}
#mainContents .layoutTyp14 table tr td:last-child {
  width: 80%;
}
#mainContents .layoutTyp14 table tr td span {
  font-size: 2.0rem;
  font-weight: 700;
  color: #004386;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp14 table tr td {
    padding: 10px 0;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp14 table tr td:last-child {
    width: 80%;
  }
  #mainContents .layoutTyp14 table tr td span {
    font-size: 1.8rem;
  }
}

#mainContents .layoutTyp14 .link01 {
  width: 500px;
  margin: 0 auto;
  padding: 0 0 60px;
}
#mainContents .layoutTyp14 .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  padding: 20px 0 0;
  box-sizing: border-box;
  border-radius: 30px;
  background-color: #004386;
  font-size: 2.0rem;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp14 .link01 a::after {
  position: absolute;
  right: 150px;
  top: 50%;
  width: 15px;
  height: 15px;
  margin: -8px 0 0;
  background-image: url("../img/icon03.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp14 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp14 .link01 {
    width: 335px;
    padding: 0 0 40px;
  }
  #mainContents .layoutTyp14 .link01 a {
    height: 50px;
    padding: 16px 0 0;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp14 .link01 a::after {
    right: 70px;
    width: 18px;
    height: 18px;
    margin: -9px 0 0;
  }
}


#mainContents .layoutTyp14 .link02 {
  width: 500px;
  margin: 0 auto;
  padding: 0 0 60px;
}
#mainContents .layoutTyp14 .link02 a {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  padding: 13px 0 0;
  box-sizing: border-box;
  border-radius: 30px;
  border: 2px solid #004386;
  background-color: #FFF;
  font-size: 1.8rem;
  color: #004386;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .layoutTyp14 .link02 a::after {
  position: absolute;
  right: 106px;
  top: 50%;
  width: 15px;
  height: 15px;
  margin: -8px 0 0;
  background-image: url("../img/icon09.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp14 .link02.typ01 a::after {
  right: 133px;
}
#mainContents .layoutTyp14 .link02 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp14 .link02 {
    width: 335px;
    padding: 0 0 40px;
  }
  #mainContents .layoutTyp14 .link02 a {
    height: 50px;
    padding: 13px 0 0;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp14 .link02 a::after {
    right: 23px;
    width: 18px;
    height: 18px;
    margin: -9px 0 0;
  }
  #mainContents .layoutTyp14 .link02.typ01 a::after {
    right: 58px;
  }
}


#mainContents .layoutTyp15 {
  width: 800px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#mainContents .layoutTyp15 h3 {
  padding: 0 0 30px;
  font-size: 2.0rem;
  font-weight: 400;
}
#mainContents .layoutTyp15 p {
  display: block;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
  background-color: #EFEFEF;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.0;
}
#mainContents .layoutTyp15 p a {
  text-decoration: underline;
  color: #004386;
}
#mainContents .layoutTyp15 p a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp15 {
    width: calc(100% - 40px);
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp15 h3 {
    padding: 0 0 20px;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp15 p {
    padding: 20px;
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

#mainContents .layoutTyp16 {
  width: 800px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#mainContents .layoutTyp16 iframe {
  width: 800px;
  height: 600px;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp16 {
    width: calc(100% - 40px);
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp16 iframe {
    width: 100%;
    height: 600px;
  }
}