@charset "utf-8";

/*==========================================
 font
===========================================*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Open+Sans:wght@700&display=swap');
html {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  color: #333;
}

/* link */
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
a { outline: none; text-decoration: none; }
a:link    { color: #333; text-decoration: none; }
a:visited { color: #333; text-decoration: underline; }
a:hover   { color: #333; text-decoration: underline; }
a:active  { color: #333; 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: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  background-color: #FFF;
}
header #header {
  position: relative;
}
header #headerLogoArea {
  position: absolute;
  left: 80px;
  top: 30px;
}
header #headerLogoArea h1 img {
  width: 128px;
  height: auto;
}
header #headerGlobalArea {
  position: absolute;
  right: 70px;
  top: 25px;
  width: 512px;
}
header #headerGlobalArea #headerTel {
  position: absolute;
  left: 0;
  top: 0;
}
header #headerGlobalArea #headerTel p {
  padding: 0 0 5px 31px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #202B46;
}
header #headerGlobalArea #headerTel a {
  padding: 0 0 0 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3.3rem;
  font-weight: 700;
  color: #202B46;
  letter-spacing: 0.02em;
}
header #headerGlobalArea #headerTel a::before {
  position: absolute;
  left: 0;
  top: 25px;
  width: 24px;
  height: 24px;
  background-image: url("../img/icon01.svg");
  background-size: 100% 100%;
  content: "";
}
header #headerGlobalArea #headerTel a:hover {
  text-decoration: none;
  opacity: 0.7;
}
header #headerGlobalArea #headerContact {
  display: block;
  position: absolute;
  right: 0;
  top: 5px;
}
header #headerGlobalArea #headerContact a {
  display: block;
  width: 250px;
  height: 40px;
  padding: 11px 0 0;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #CE3262;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
}
header #headerGlobalArea #headerContact a:hover {
  border: 1px solid #CE3262;
  background-color: #FFF;
  color: #CE3262;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  header {
    height: 70px;
  }
  header #header {
    position: relative;
  }
  header #headerLogoArea {
    left: 5%;
    top: 20px;
  }
  header #headerLogoArea h1 img {
    width: 92px;
  }
  header #headerGlobalArea {
    position: absolute;
    right: 5%;
    top: 19px;
    width: 228px;
  }
  header #headerGlobalArea #headerTel {
    top: 1px;
  }
  header #headerGlobalArea #headerTel p {
    padding: 0 0 3px 0;
    font-size: 1.0rem;
  }
  header #headerGlobalArea #headerTel a {
    padding: 0 0 0 24px;
    font-size: 1.8rem;
  }
  header #headerGlobalArea #headerTel a::before {
    left: 5px;
    top: 15px;
    width: 13px;
    height: 13px;
  }
  header #headerGlobalArea #headerContact {
    top: 0;
  }
  header #headerGlobalArea #headerContact a {
    width: 83px;
    height: 30px;
    padding: 8px 0 0;
    font-size: 1.3rem;
  }
  header #headerGlobalArea #headerContact a:hover {
    border: none;
    background-color: #CE3262;
    color: #FFF;
    text-decoration: none;
  }
}


/*==========================================
 フッターのスタイル
===========================================*/
footer {
  width: 100%;
  padding: 0 0 100px;
  background-color: #202B46;
}
footer #footerBody {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding: 80px 0 50px;
}
footer #footerBody h1 {
  display: block;
  width: 895px;
  margin: 0 auto;
  padding: 0 0 20px;
}
footer #footerBody h1 img {
  width: 895px;
  height: auto;
}
footer #footerBody p {
  padding: 25px 0 0;
  font-size: 1.2rem;
  line-height: 2.0;
  color: #FFF;
}
footer #footerBody small {
  display: block;
  padding: 50px 0 0;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  footer {
    width: 100%;
    margin: 0 0 30px;
  }
  footer #footerBody {
    width: 90%;
    padding: 30px 0 50px;
  }
  footer #footerBody h1 {
    width: 100%;
  }
  footer #footerBody h1 img {
    width: 100%;
    height: auto;
  }
}


/*==========================================
 コンテンツのスタイル 共通
===========================================*/
#mainContents {
  padding: 100px 0 0;
  min-height: 500px;
}
#mainContents section.w_full {
  width: 100%;
  margin: 0;
}
#mainContents section.w_1000 {
  width: 1000px;
  margin: 0 auto;
}
#mainContents section.bc_G01 {
  background-color: rgba(0, 176, 185, 0.12)
}
#mainContents section.bc_G02 {
  background-color: #00B0B9;
}
#mainContents section.bc_Gray {
  background-color: rgba(51, 51, 51, 0.1)
}
@media only screen and (max-width: 767px) {
  #mainContents {
    padding: 70px 0 0;
    min-height: 1500px;
  }
  #mainContents section.w_1000 {
    width: 90%;
  }
  #mainContents section.bc_Gr {
    padding: 60px 0;
  }
  #mainContents section.w_3no {
    width: 100%;
    margin: 0;
  }
}


/*==========================================
 レイアウト
===========================================*/
#mainContents .topVisual {
  width: 100%;
}
#mainContents .topVisual img {
  width: 100%;
  height: auto;
}


#mainContents .layoutTyp01 {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 65px;
}
#mainContents .layoutTyp01 p.text01 {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}
#mainContents .layoutTyp01 p.text01 span {
  color: #CE3262;
}
#mainContents .layoutTyp01 h2 {
  padding: 60px 0 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  color: #00B0B9;
}
#mainContents .layoutTyp01 h3 {
  padding: 10px 0 0;
  font-size: 3.0rem;
  font-weight: 700;
  text-align: center;
  color: #202B46;
}
#mainContents .layoutTyp01 p.text02 {
  padding: 40px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}
#mainContents .layoutTyp01 p.text02 span {
  color: #CE3262;
}
#mainContents .layoutTyp01 .linkBox {
  width: 786px;
  height: 260px;
  margin: 50px auto 0;
  padding: 45px 0 0 350px;
  box-sizing: border-box;
  background-image: url("../img/share_bk01.jpg");
  background-size: cover;
}
#mainContents .layoutTyp01 .linkBox .textBox {
  width: 370px;
}
#mainContents .layoutTyp01 .linkBox .textBox h4 {
  padding: 0 0 10px;
  font-size: 3.0rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
}
#mainContents .layoutTyp01 .linkBox .textBox h5 {
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  line-height: 1.2;
}
#mainContents .layoutTyp01 .linkBox .textBox h5 span {
  display: inline-block;
  padding: 0 5px 0 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
}
#mainContents .layoutTyp01 .linkBox .textBox .link01 {
  width: 100%;
  height: 45px;
  padding: 10px 0 0;
}
#mainContents .layoutTyp01 .linkBox .textBox .link01 a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 0 0;
  box-sizing: border-box;
  border-radius: 25px;
  background-color: #FFF;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  color: #202B46;
}
#mainContents .layoutTyp01 .linkBox .textBox .link01 a:hover {
  text-decoration: none;
  opacity: 0.8;
}
#mainContents .layoutTyp01 p.text03 {
  display: block;
  width: 786px;
  margin: 0 auto;
  padding: 10px 0 0;
  font-size: 1.3rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp01 {
    width: 90%;
    padding: 30px 0 40px;
  }
  #mainContents .layoutTyp01 p.text01 {
    font-size: 1.4rem;
    text-align: left;
  }
  #mainContents .layoutTyp01 h2 {
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp01 h3 {
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp01 p.text02 {
    padding: 20px 0 0;
    font-size: 1.4rem;
    text-align: left;
  }
  #mainContents .layoutTyp01 .linkBox {
    width: 296px;
    height: 334px;
    margin: 30px auto 0;
    padding: 150px 0 0;
    background-image: url("../img/share_bk01_sp.jpg");
  }
  #mainContents .layoutTyp01 .linkBox .textBox {
    width: 100%;
  }
  #mainContents .layoutTyp01 .linkBox .textBox h4 {
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp01 .linkBox .textBox h5 {
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp01 .linkBox .textBox h5 span {
    font-size: 4.2rem;
  }
  #mainContents .layoutTyp01 .linkBox .textBox .link01 {
    width: 237px;
    height: 45px;
    margin: 0 auto;
    padding: 10px 0 0;
  }
  #mainContents .layoutTyp01 .linkBox .textBox .link01 a {
    padding: 14px 0 0;
  }
  #mainContents .layoutTyp01 p.text03 {
    width: 100%;
    padding: 10px 0 0;
    font-size: 1.2rem;
    line-height: 1.4;
  }
}


#mainContents .layoutTyp02 {
  width: 100%;
  height: 730px;
  padding: 80px 0 0;
  box-sizing: border-box;
  background-image: url("../img/share_bk02.jpg");
  background-size: cover;
  text-align: center;
}
#mainContents .layoutTyp02 h3 {
  font-size: 3.0rem;
  line-height: 1.6;
  color: #FFF;
}
#mainContents .layoutTyp02 p {
  padding: 40px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp02 {
    height: 640px;
    padding: 45px 0 0;
    background-image: url("../img/share_bk02_sp.jpg");
  }
  #mainContents .layoutTyp02 h3 {
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp02 p {
    padding: 25px 5% 0;
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: center;
  }
}


#mainContents .layoutTyp03 {
  width: 1000px;
  margin: 0 auto;
  padding: 90px 0 0;
}
#mainContents .layoutTyp03 h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  color: #00B0B9;
}
#mainContents .layoutTyp03 h3 {
  padding: 10px 0 0;
  font-size: 3.0rem;
  font-weight: 700;
  text-align: center;
  color: #202B46;
}
#mainContents .layoutTyp03 h3 span {
  display: block;
  padding: 10px 0 0;
  font-size: 4.2rem;
  font-weight: 900;
}
#mainContents .layoutTyp03 .columnBox {
  width: 100%;
  padding: 150px 0 0;
}
#mainContents .layoutTyp03 .columnBox .column {
  position: relative;
  width: 660px;
  height: 248px;
  margin: 0 0 210px 340px;
  padding: 40px 40px 0;
  box-sizing: border-box;
  box-shadow: 0px 0px 6px 3px rgb(0 0 0 / 10%);
  background-color: #FFF;
}
#mainContents .layoutTyp03 .columnBox .column:nth-child(2) {
  margin: 0 0 210px 0;
}
#mainContents .layoutTyp03 .columnBox .column::before {
  position: absolute;
  z-index: 20;
  left: 430px;
  top: -30px;
  font-size: 4.9rem;
  font-weight: 700;
  color: #00B0B9;
}
#mainContents .layoutTyp03 .columnBox .column:nth-child(1):before {
  content: "Point 1";
}
#mainContents .layoutTyp03 .columnBox .column:nth-child(2):before {
  left: 74px;
  content: "Point 2";
}
#mainContents .layoutTyp03 .columnBox .column:nth-child(3):before {
  content: "Point 3";
}
#mainContents .layoutTyp03 .columnBox .column::after {
  position: absolute;
  z-index: -1;
  left: -527px;
  top: -76px;
  width: 800px;
  height: 400px;
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp03 .columnBox .column:nth-child(1):after {
  background-image: url("../img/share_point01.jpg");
}
#mainContents .layoutTyp03 .columnBox .column:nth-child(2):after {
  left: 383px;
  top: -61px;
  background-image: url("../img/share_point02.jpg");
}
#mainContents .layoutTyp03 .columnBox .column:nth-child(3):after {
  background-image: url("../img/share_point03.jpg");
}
#mainContents .layoutTyp03 .columnBox .column h4 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #202B46;
  line-height: 1.4;
}
#mainContents .layoutTyp03 .columnBox .column p {
  padding: 15px 0 0;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp03 {
    width: 100%;
    padding: 40px 0 0;
  }
  #mainContents .layoutTyp03 h3 {
    padding: 10px 0 0;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp03 h3 span {
    font-size: 2.4rem;
  }
  #mainContents .layoutTyp03 .columnBox {
    padding: 200px 0 0;
  }
  #mainContents .layoutTyp03 .columnBox .column {
    width: 90%;
    height: auto;
    margin: 0 auto 215px;
    padding: 55px 25px 25px;
  }
  #mainContents .layoutTyp03 .columnBox .column:nth-child(2) {
    margin: 0 auto 215px;
  }
  #mainContents .layoutTyp03 .columnBox .column:nth-child(3) {
    margin: 0 auto 50px;
  }
  #mainContents .layoutTyp03 .columnBox .column::before {
    position: absolute;
    z-index: 20;
    left: 0;
    top: 22px;
    width: 100%;
    font-size: 2.0rem;
    text-align: center;
  }
  #mainContents .layoutTyp03 .columnBox .column:nth-child(2):before {
    left: 0;
  }
  #mainContents .layoutTyp03 .columnBox .column::after {
    left: -6%;
    top: -170px;
    width: 112%;
    height: 213px;
  }
  #mainContents .layoutTyp03 .columnBox .column:nth-child(1):after {
    background-image: url("../img/share_point01_sp.jpg");
  }
  #mainContents .layoutTyp03 .columnBox .column:nth-child(2):after {
    left: -6%;
    top: -170px;
    background-image: url("../img/share_point02_sp.jpg");
  }
  #mainContents .layoutTyp03 .columnBox .column:nth-child(3):after {
    background-image: url("../img/share_point03_sp.jpg");
  }
  #mainContents .layoutTyp03 .columnBox .column h4 {
    font-size: 1.8rem;
    text-align: center;
  }
  #mainContents .layoutTyp03 .columnBox .column p {
    padding: 15px 0 0;
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: justify;
  }
}



#mainContents .layoutTyp04 {
  width: 756px;
  margin: 0 auto;
  padding: 100px 0;
}
#mainContents .layoutTyp04 h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
}
#mainContents .layoutTyp04 .columnBox {
  position: relative;
  width: 100%;
  height: 193px;
  margin: 40px 0 0;
  padding: 30px 0 0;
  box-sizing: border-box;
  background-color: #FFF;
  text-align: center;
}
#mainContents .layoutTyp04 .columnBox p {
  padding: 0 0 20px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #202B46;
  line-height: 1.4;
}
#mainContents .layoutTyp04 .columnBox a {
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4.1rem;
  font-weight: 700;
  color: #202B46;
  letter-spacing: 0.02em;
}
#mainContents .layoutTyp04 .columnBox a::before {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 31px;
  height: 31px;
  background-image: url("../img/icon01.svg");
  background-size: 100% 100%;
  content: "";
}
#mainContents .layoutTyp04 .columnBox a:hover {
  text-decoration: none;
}
#mainContents .layoutTyp04 .columnBox p.text01 {
  padding: 15px 0 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #202B46;
  line-height: 1.4;
}
#mainContents .layoutTyp04 .columnBox p.text01 span {
  display: inline-block;
  padding: 0 0 5px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp04 {
    width: 90%;
    padding: 50px 0;
  }
  #mainContents .layoutTyp04 h3 {
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp04 .columnBox {
    width: 100%;
    height: auto;
    margin: 30px 0 0;
    padding: 20px 5% 15px;
    box-sizing: border-box;
  }
  #mainContents .layoutTyp04 .columnBox p {
    padding: 0 0 20px;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp04 .columnBox a {
    font-size: 2.6rem;
  }
  #mainContents .layoutTyp04 .columnBox a::before {
    left: -30px;
    top: 3px;
    width: 24px;
    height: 24px;
  }
  #mainContents .layoutTyp04 .columnBox p.text01 {
    padding: 10px 0 0;
    font-size: 1.2rem;
  }
  #mainContents .layoutTyp04 .columnBox p.text01 span {
    padding: 0;
  }
}


#mainContents .layoutTyp05 {
  width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
}
#mainContents .layoutTyp05 h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  color: #00B0B9;
}
#mainContents .layoutTyp05 h3 {
  padding: 10px 0 0;
  font-size: 3.0rem;
  font-weight: 700;
  text-align: center;
  color: #202B46;
}
#mainContents .layoutTyp05 .columnBox {
  width: 100%;
  padding: 50px 0 0;
  display: flex;
  justify-content: space-between;
}
#mainContents .layoutTyp05 .columnBox .column {
  position: relative;
  width: 470px;
  height: 897px;
  background-color: #FFF;
  box-shadow: 0px 0px 6px 3px rgb(0 0 0 / 10%);
}
#mainContents .layoutTyp05 .columnBox .column::before {
  position: absolute;
  left: 0;
  top: 235px;
  width: 153px;
  height: 44px;
  padding: 9px 0 0;
  box-sizing: border-box;
  background-color: #00B0B9;
  font-family: 'Open Sans', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  content: "Voice 01";
}
#mainContents .layoutTyp05 .columnBox .column:nth-child(2)::before {
  top: 234px;
  content: "Voice 02";
}
#mainContents .layoutTyp05 .columnBox .column img {
  display: block;
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp05 .columnBox .column p.text01 {
  width: 100%;
  padding: 30px 37px 0;
  box-sizing: border-box;
  font-size: 2.0rem;
  color: #202B46;
  text-align: center;
}
#mainContents .layoutTyp05 .columnBox .column h4 {
  width: 100%;
  padding: 30px 37px 0;
  box-sizing: border-box;
  font-size: 2.2rem;
  font-weight: 700;
  color: #202B46;
  text-align: center;
  line-height: 1.4;
}
#mainContents .layoutTyp05 .columnBox .column p.text02 {
  width: 100%;
  padding: 30px 37px 0;
  box-sizing: border-box;
  font-size: 1.4rem;
  line-height: 1.8;
}
#mainContents .layoutTyp05 .columnBox .column .link01,
#mainContents .layoutTyp05 .columnBox .column .link02 {
  display: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp05 {
    width: 335px;
    padding: 40px 0;
  }
  #mainContents .layoutTyp05 h3 {
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp05 .columnBox {
    padding: 30px 0 0;
    flex-wrap: wrap;
  }
  #mainContents .layoutTyp05 .columnBox .column {
    width: 100%;
    height: auto;
    margin: 0 0 30px;
    padding: 0 0 25px;
  }
  #mainContents .layoutTyp05 .columnBox .column::before {
    top: 171px;
    width: 100px;
    height: 28px;
    padding: 5px 0 0;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp05 .columnBox .column:nth-child(2)::before {
    top: 170px;
  }
  #mainContents .layoutTyp05 .columnBox .column p.text01 {
    padding: 20px 25px 0;
  }
  #mainContents .layoutTyp05 .columnBox .column h4 {
    padding: 20px 25px 0;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp05 .columnBox .column p.text02 {
    padding: 20px 25px 0;
  }
  #mainContents .layoutTyp05 .columnBox .column p.text02 .noView {
    display: none;
  }
  #mainContents .layoutTyp05 .columnBox .column .link01,
  #mainContents .layoutTyp05 .columnBox .column .link02 {
    display: block;
  }
  #mainContents .layoutTyp05 .columnBox .column .link01 {
    padding: 25px 0 0;
    text-align: center;
  }
  #mainContents .layoutTyp05 .columnBox .column .link01 a {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    color: #00B0B9;
  }
  #mainContents .layoutTyp05 .columnBox .column .link01 a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  #mainContents .layoutTyp05 .columnBox .column .link02 {
    display: none;
    padding: 25px 0 0;
    text-align: center;
  }
  #mainContents .layoutTyp05 .columnBox .column .link02 a {
    position: relative;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
  }
  #mainContents .layoutTyp05 .columnBox .column .link02 a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  #mainContents .layoutTyp05 .columnBox .column .link02 a::before {
    position: absolute;
    left: -23px;
    top: 4px;
    width: 14px;
    height: 13px;
    background-image: url("../img/icon02.svg");
    background-size: cover;
    content: "";
  }
}



#mainContents .layoutTyp06 {
  width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
}
#mainContents .layoutTyp06 h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  color: #00B0B9;
}
#mainContents .layoutTyp06 h3 {
  padding: 10px 0 0;
  font-size: 3.0rem;
  font-weight: 700;
  text-align: center;
  color: #202B46;
}
#mainContents .layoutTyp06 .videoBox {
  width: 100%;
  padding: 40px 0 0;
  aspect-ratio: 16 / 9;
}
#mainContents .layoutTyp06 .videoBox iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp06 {
    width: 90%;
    padding: 0 0 50px;
  }
  #mainContents .layoutTyp06 h3 {
    font-size: 1.8em;
    line-height: 1.4;
  }
  #mainContents .layoutTyp06 .videoBox {
    padding: 30px 0 0;
  }
}



#mainContents .layoutTyp07 {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 0;
}
#mainContents .layoutTyp07 h3 {
  font-size: 3.0rem;
  font-weight: 700;
  text-align: center;
  color: #202B46;
}
#mainContents .layoutTyp07 p {
  padding: 50px 0 0;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.8;
}
#mainContents .layoutTyp07 p a {
  color: #00B0B9;
}
#mainContents .layoutTyp07 p a:hover {
  text-decoration: none;
  opacity: 0.8;
}
#mainContents .layoutTyp07 img {
  width: 100%;
  height: auto;
  padding: 30px 0 0;
}
#mainContents .layoutTyp07 h4 {
  padding: 40px 0 0;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #202B46;
  line-height: 1.6;
}
#mainContents .layoutTyp07 .link01 {
  padding: 30px 0 0;
  text-align: center;
}
#mainContents .layoutTyp07 .link01 a {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #00B0B9;
}
#mainContents .layoutTyp07 .link01 a:hover {
  text-decoration: none;
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp07 {
    padding: 50px 0 0;
  }
  #mainContents .layoutTyp07 h3 {
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp07 p {
    padding: 40px 5% 0;
    font-size: 1.4rem;
    text-align: left;
  }
  #mainContents .layoutTyp07 p a {
    color: #00B0B9;
  }
  #mainContents .layoutTyp07 p a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  #mainContents .layoutTyp07 img {
    width: 100%;
    height: auto;
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp07 h4 {
    padding: 20px 5% 0;
    font-size: 1.4rem;
    text-align: left;
  }
  #mainContents .layoutTyp07 .link01 {
    padding: 20px 0 0;
  }
  #mainContents .layoutTyp07 .link01 a {
    font-size: 1.4rem;
  }
}



#mainContents .layoutTyp08 {
  width: 1000px;
  margin: 0 auto;
  padding: 80px 0 40px;
  border-bottom: 1px solid #202B46;
}
#mainContents .layoutTyp08 h3 {
  position: relative;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #202B46;
}
#mainContents .layoutTyp08 h3::before {
  position: absolute;
  left: 0;
  top: 14px;
  width: 412px;
  height: 1px;
  background-color: #202B46;
  content: "";
}
#mainContents .layoutTyp08 h3::after {
  position: absolute;
  right: 0;
  top: 14px;
  width: 412px;
  height: 1px;
  background-color: #202B46;
  content: "";
}
#mainContents .layoutTyp08 .columnBox {
  width: 100%;
  padding: 40px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp08 .columnBox .column {
  position: relative;
  width: 210px;
  text-align: center;
}
#mainContents .layoutTyp08 .columnBox .column::before {
  position: absolute;
  left: -37px;
  top: 90px;
  width: 23px;
  height: 27px;
  background-image: url("../img/icon03.svg");
  background-size: cover;
  content: "";
}
#mainContents .layoutTyp08 .columnBox .column:nth-child(1):before {
  display: none;
}
#mainContents .layoutTyp08 .columnBox .column img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp08 .columnBox .column h4 {
  padding: 20px 0 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: #00B0B9;
}
#mainContents .layoutTyp08 .columnBox .column p {
  padding: 10px 0 0;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.6;
}
#mainContents .layoutTyp08 p.text02 {
  padding: 30px 0 0;
  font-size: 1.2rem;
  text-align: right;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp08 {
    width: 90%;
    padding: 40px 0;
  }
  #mainContents .layoutTyp08 h3 {
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp08 h3::before {
    top: 7px;
    width: 34%;
  }
  #mainContents .layoutTyp08 h3::after {
    top: 7px;
    width: 34%;
  }
  #mainContents .layoutTyp08 .columnBox {
    padding: 20px 0 0;
  }
  #mainContents .layoutTyp08 .columnBox .column {
    width: 45%;
    padding: 0 0 30px;
  }
  #mainContents .layoutTyp08 .columnBox .column::before {
    left: -15%;
    top: 22%;
    width: 15px;
    height: 18px;
  }
  #mainContents .layoutTyp08 .columnBox .column:nth-child(1):before,
  #mainContents .layoutTyp08 .columnBox .column:nth-child(3):before {
    display: none;
  }
  #mainContents .layoutTyp08 .columnBox .column h4 {
    padding: 15px 0 0;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp08 .columnBox .column p {
    font-size: 1.2rem;
    letter-spacing: -0.03em;
  }
  #mainContents .layoutTyp08 p.text02 {
    padding: 0;
    text-align: left;
  }
}


#mainContents .layoutTyp09 {
  width: 1000px;
  margin: 0 auto;
  padding: 4px 0 0;
}
#mainContents .layoutTyp09 h3 {
  padding: 0 0 30px;
  font-size: 2.8rem;
  font-weight: 700;
  color: #202B46;
  text-align: center;
}
#mainContents .layoutTyp09 .link01 {
  text-align: center;
}
#mainContents .layoutTyp09 .link01 a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #00B0B9;
}
#mainContents .layoutTyp09 .columnBox {
  width: 100%;
  margin: 50px 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #707070;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .layoutTyp09 .columnBox .column_L {
  width: 460px;
}
#mainContents .layoutTyp09 .columnBox .column_L img {
  width: 100%;
  height: auto;
}
#mainContents .layoutTyp09 .columnBox .column_R {
  width: 500px;
}
#mainContents .layoutTyp09 .columnBox .column_R p {
  padding: 0 0 20px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}
#mainContents .layoutTyp09 .columnBox .column_R .link02 a {
  display: inline-block;
  padding: 0 0 20px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #00B0B9;
}
#mainContents .layoutTyp09 .columnBox .column_R p.text01 {
  font-size: 1.3rem;
}
#mainContents .layoutTyp09 p.text02 {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp09 {
    width: 90%;
    padding: 30px 0 0;
  }
  #mainContents .layoutTyp09 h3 {
    padding: 0 0 10px;
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp09 .link01 a {
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp09 .columnBox {
    margin: 30px 0 20px;
    padding: 0 0 10px;
  }
  #mainContents .layoutTyp09 .columnBox .column_L {
    width: 100%;
    padding: 0 0 20px;
  }
  #mainContents .layoutTyp09 .columnBox .column_R {
    width: 100%;
  }
  #mainContents .layoutTyp09 .columnBox .column_R p {
    padding: 0 0 15px;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp09 .columnBox .column_R p.text01 {
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp09 .columnBox .column_R .link02 a {
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp09 p.text02 {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}


#mainContents .layoutTyp10 {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0 0;
}
#mainContents .layoutTyp10 .textBox {
  padding: 30px 0;
  background-color: #00B0B9;
}
#mainContents .layoutTyp10 .textBox h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
}
#mainContents .layoutTyp10 .textBox h4 {
  padding: 20px 0 0;
  font-size: 2.2rem;
  font-weight: 400;
  text-align: center;
  color: #FFF;
  line-height: 1.6;
}
#mainContents .layoutTyp10 p {
  padding: 80px 0 0;
  font-size: 2.2rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
}
#mainContents .layoutTyp10 p span {
  font-weight: 700;
  color: #CE3262;
}
#mainContents .layoutTyp10 p a {
  font-weight: 700;
}
#mainContents .layoutTyp10 p a:hover {
  text-decoration: none;
  opacity: 0.8;
}
#mainContents .layoutTyp10 p.text01 {
  padding: 20px 0 0;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #mainContents .layoutTyp10 {
    padding: 50px 0 0;
  }
  #mainContents .layoutTyp10 .textBox h3 {
    font-size: 1.8rem;
  }
  #mainContents .layoutTyp10 .textBox h4 {
    padding: 15px 0 0;
    font-size: 1.4rem;
  }
  #mainContents .layoutTyp10 p {
    padding: 25px 5% 0;
    font-size: 1.4rem;
    text-align: left;
  }
  #mainContents .layoutTyp10 p.text01 {
    padding: 20px 5% 0;
    font-size: 1.2rem;
    text-align: left;
  }
}


#mainContents .LayoutTyp11 {
  width: 737px;
  margin: 0 auto;
  padding: 80px 0 50px;
}
#mainContents .LayoutTyp11 .titleArea {
  padding: 30px 0 30px;
}
#mainContents .LayoutTyp11 h2 {
  padding: 0 0 10px;
  border-bottom: 1px solid #53565a;
  font-size: 2.2rem;
  font-weight: 400;
}
#mainContents .LayoutTyp11 p.small {
  padding: 10px 0 0;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
}
#mainContents .LayoutTyp11 .formArea {
  width: 100%;
}
#mainContents .LayoutTyp11 .formArea .formTyp01 {
  width: 100%;
  padding: 0 0 50px;
}
#mainContents .LayoutTyp11 .formArea .formTyp01 h3 {
  position: relative;
  display: inline;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .LayoutTyp11 .formArea .formTyp01 h3.required::after{
  position: absolute;
  right: -40px;
  bottom: 2px;
	background: #cb4e78;
	padding: 2px 6px;
  font-size: 0.9rem;;
  vertical-align: bottom;
  color: #fff;
  border-radius: 3px;
  margin-left: 2px;
  content: "必須";
}
#mainContents .LayoutTyp11 .formArea .formTyp01 a {
  font-weight: 700;
  color: #CE3262;
  text-decoration: underline;
}
#mainContents .LayoutTyp11 .formArea .formTyp01 a:hover {
  opacity: 0.8;
}
#mainContents .LayoutTyp11 .formArea .formTyp01 .radioBox {
  padding: 10px 0 0;
  font-size: 1.6rem;
}
#mainContents .LayoutTyp11 .formArea .formTyp01 .radioBox label {
  padding: 0 20px 0 0;
}
#mainContents .LayoutTyp11 .formArea .formTyp01 .radioBox input[type="radio"] {
  margin: -3px 5px 0 0;
}

#mainContents .LayoutTyp11 .formArea .formTyp02 {
  width: 100%;
  padding: 0 0 50px;
}
#mainContents .LayoutTyp11 .formArea .formTyp02 h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 5px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .LayoutTyp11 .formArea .formTyp02 h3.required::after{
  position: absolute;
  right: -40px;
  bottom: 2px;
	background: #cb4e78;
	padding: 2px 6px;
  font-size: 0.9rem;;
  vertical-align: bottom;
  color: #fff;
  border-radius: 3px;
  margin-left: 2px;
  content: "必須";
}
#mainContents .LayoutTyp11 .formArea .formTyp02 p.small {
  padding: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
}
#mainContents .LayoutTyp11 .formArea .formTyp02 .inputBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .LayoutTyp11 .formArea .formTyp02 .inputBox .column {
  width: 352px;
}
#mainContents .LayoutTyp11 .formArea .formTyp02 .inputBox input[type="text"] {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: 1px solid #000D14;
  box-sizing: border-box;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1.6rem;
}

#mainContents .LayoutTyp11 .formArea .formTyp03 {
  width: 100%;
  padding: 0 0 40px;
}
#mainContents .LayoutTyp11 .formArea .formTyp03 h3 {
  display: inline;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .LayoutTyp11 .formArea .formTyp03 .textBox {
  padding: 10px 0 0;
  font-size: 1.6rem;
}
#mainContents .LayoutTyp11 .formArea .formTyp03 .textBox textarea {
  -webkit-appearance: none;
  width: 100%;
  height: 130px;
  padding: 10px;
  border: 1px solid #000D14;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1.6rem;
}

#mainContents .LayoutTyp11 .formArea .formTyp04 {
  width: 304px;
  margin: 0 auto;
  padding: 50px 0 0;
}

#mainContents .LayoutTyp11 .formArea .formTyp05 {
  width: 430px;
  margin: 0 auto;
  padding: 20px 0 0;
}
#mainContents .LayoutTyp11 .formArea .formTyp05 input[type="submit"] {
  -webkit-appearance: none;
  width: 100%;
  height: 60px;
  background-color: #CE3262;
  border: none;
  border-radius: 30px;
  font-size: 2.2rem;
  color: #FFF;
  cursor: pointer;
}

#mainContents .LayoutTyp11 .formArea .formTyp05 input[type="submit"]:disabled {
  background-color: #e4869a;
}

#mainContents .LayoutTyp11 .formArea .formTyp06 {
  width: 100%;
  padding: 0 0 50px;
}
#mainContents .LayoutTyp11 .formArea .formTyp06 h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 5px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .LayoutTyp11 .formArea .formTyp06 h3.required::after{
  position: absolute;
  right: -40px;
  bottom: 2px;
	background: #cb4e78;
	padding: 2px 6px;
  font-size: 0.9rem;;
  vertical-align: bottom;
  color: #fff;
  border-radius: 3px;
  margin-left: 2px;
  content: "必須";
}
#mainContents .LayoutTyp11 .formArea .formTyp06 .inputBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .LayoutTyp11 .formArea .formTyp06 .inputBox .column {
  width: 352px;
}
#mainContents .LayoutTyp11 .formArea .formTyp06 .inputBox .column.typ01 {
  position: relative;
  width: 330px;
}
#mainContents .LayoutTyp11 .formArea .formTyp06 .inputBox .column.typ01::before {
  position: absolute;
  right: -35px;
  top: 16px;
  font-size: 1.6rem;
  color: #333;
  content: "―";
}
#mainContents .LayoutTyp11 .formArea .formTyp06 .inputBox .column input[type="text"] {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: 1px solid #000D14;
  box-sizing: border-box;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1.6rem;
}


#mainContents .LayoutTyp11 .formArea .formTyp07 {
  width: 100%;
  padding: 0 0 50px;
}
#mainContents .LayoutTyp11 .formArea .formTyp07 h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 5px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .LayoutTyp11 .formArea .formTyp07 h3.required::after{
  position: absolute;
  right: -40px;
  bottom: 2px;
	background: #cb4e78;
	padding: 2px 6px;
  font-size: 0.9rem;;
  vertical-align: bottom;
  color: #fff;
  border-radius: 3px;
  margin-left: 2px;
  content: "必須";
}
#mainContents .LayoutTyp11 .formArea .formTyp07 p.small {
  padding: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
}
#mainContents .LayoutTyp11 .formArea .formTyp07 .inputBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .LayoutTyp11 .formArea .formTyp07 .inputBox .column {
  width: 230px;
}
#mainContents .LayoutTyp11 .formArea .formTyp07 .inputBox input[type="text"] {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: 1px solid #000D14;
  box-sizing: border-box;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1.6rem;
}


#mainContents .LayoutTyp11 .formArea .formTyp07 .inputBox.typ02 {
  width: 100%;
  padding: 0 0 20px;
  display: flex;
  justify-content :flex-start;
  flex-wrap: wrap;
}
#mainContents .LayoutTyp11 .formArea .formTyp07 .inputBox.typ02 .column {
  position: relative;
  width: 100px;
  margin: 0 30px 0 0;
}
/*#mainContents .LayoutTyp11 .formArea .formTyp07 .inputBox.typ02 .column:nth-child(1):before {
  position: absolute;
  right: -23px;
  top: 16px;
  font-size: 1.6rem;
  color: #333;
  content: "―";
}*/
#mainContents .LayoutTyp11 .formArea .formTyp07 .inputBox.typ02 input[type="text"] {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: 1px solid #000D14;
  box-sizing: border-box;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1.6rem;
}

#mainContents .LayoutTyp11 .formArea .formTyp08 {
  width: 100%;
  padding: 0 0 50px;
}
#mainContents .LayoutTyp11 .formArea .formTyp08 h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 5px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .LayoutTyp11 .formArea .formTyp08 h3.required::after{
  position: absolute;
  right: -40px;
  bottom: 2px;
	background: #cb4e78;
	padding: 2px 6px;
  font-size: 0.9rem;;
  vertical-align: bottom;
  color: #fff;
  border-radius: 3px;
  margin-left: 2px;
  content: "必須";
}
#mainContents .LayoutTyp11 .formArea .formTyp08 p.small {
  padding: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
}
#mainContents .LayoutTyp11 .formArea .formTyp08 .inputBox {
  width: 100%;
}
#mainContents .LayoutTyp11 .formArea .formTyp08 .inputBox .column {
  width: 100%;
}
#mainContents .LayoutTyp11 .formArea .formTyp08 .inputBox select {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: 1px solid #000D14;
  background-color: #FFF;
  background-image: url("../img/icon04.svg");
  background-size: 16px 11px;
  background-repeat: no-repeat;
  background-position: right 10px center;
  box-sizing: border-box;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1.6rem;
  color: #333;
}

#mainContents .LayoutTyp11 .formArea .formTyp08 .inputBox input[type="text"] {
    -webkit-appearance: none;
    display: block;
    width: 100%;
    height: 50px;
    padding: 20px 10px;
    border: 1px solid #000D14;
    box-sizing: border-box;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1.6rem;
    margin-top: 20px;
}

#mainContents .LayoutTyp11 .formArea .formTyp09 {
  width: 100%;
  padding: 40px 0 50px;
}
#mainContents .LayoutTyp11 .formArea .formTyp09 a {
  font-weight: 700;
  color: #CE3262;
  text-decoration: underline;
}
#mainContents .LayoutTyp11 .formArea .formTyp09 a:hover {
  opacity: 0.8;
}
#mainContents .LayoutTyp11 .formArea .formTyp09 .checkBox {
  padding: 10px 0 0;
  font-size: 1.6rem;
}
#mainContents .LayoutTyp11 .formArea .formTyp09 .checkBox label {
  display: block;
  padding: 0 0 20px 0;
}
#mainContents .LayoutTyp11 .formArea .formTyp09 .checkBox input[type="checkbox"] {
  margin: -3px 5px 0 0;
}
#mainContents .LayoutTyp11 .formArea .formTyp09 a {
  font-weight: 700;
  color: #CE3262;
  text-decoration: underline;
}
#mainContents .LayoutTyp11 .formArea .formTyp09 a:hover {
  opacity: 0.8;
}


#mainContents .LayoutTyp11 .text01 p {
  padding: 30px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
}

#mainContents .LayoutTyp11 .privacyBox {
  width: 100%;
  padding: 20px 0 0;
  border: 1px solid #54575A;
}
#mainContents .LayoutTyp11 .privacyBox p {
  padding: 0 20px 20px;
  font-size: 1.3rem;
  line-height: 1.6;
}
#mainContents .LayoutTyp11 .privacyBox p a {
  font-weight: 700;
  color: #00B0B9;
}
#mainContents .LayoutTyp11 .privacyBox p a:hover {
  text-decoration: none;
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .LayoutTyp11 {
    width: 100%;
    padding: 50px 0 30px;
  }
  #mainContents .LayoutTyp11 h2 {
    font-size: 1.6rem;
  }
  #mainContents .LayoutTyp11 p.small {
    font-size: 1.2rem;
    text-align: left;
  }
   #mainContents .LayoutTyp11 .formArea .formTyp01 {
    padding: 0 0 20px;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp01 h3 {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp01 h3.required::after{
    bottom: 0px;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp01 .radioBox {
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp01 .radioBox label {
    width: 50%;
    padding: 0 0 15px;
  }

  #mainContents .LayoutTyp11 .formArea .formTyp02 {
    padding: 0;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp02 .inputBox .column {
    width: 100%;
    padding: 0 0 20px;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp02 h3 {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp02 h3.pcView {
    display: none;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp02 h3.required::after{
    bottom: 0;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp02 .inputBox input[type="text"] {
    height: 45px;
    font-size: 1.4rem;
  }

  #mainContents .LayoutTyp11 .formArea .formTyp03 {
    padding: 0 0 20px;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp03 h3 {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp03 .textBox {
    font-size: 1.3rem;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp03 .textBox textarea {
    height: 120px;
    font-size: 1.3rem;
  }

  #mainContents .LayoutTyp11 .text01 p {
    font-size: 1.2rem;
    text-align: center;
  }

  #mainContents .LayoutTyp11 .formArea .formTyp05 {
    width: 300px;
    padding: 20px 0 0;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp05 input[type="submit"] {
    height: 50px;
    font-size: 1.4rem;
  }




  #mainContents .LayoutTyp11 .formArea .formTyp06 {
    padding: 0;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp06 h3 {
    display: inline;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp06 h3.required::after{
    bottom: 0;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp06 .inputBox .column {
    width: 100%;
    padding: 10px 0 20px;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp06 .inputBox .column.typ01::before {
    right: 26px;
    top: 23px;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp06 .inputBox .column:nth-child(2) {
    padding: 0 0 20px;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp06 .inputBox .column input[type="text"] {
    height: 45px;
    font-size: 1.4rem;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp06 .inputBox .column:nth-child(1) input[type="text"] {
    width: 280px;
  }
  
  
  #mainContents .LayoutTyp11 .formArea .formTyp07 {
    padding: 0;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp07 h3 {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp07 h3.required::after{
    bottom: 0;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp07 p.small {
    font-size: 1.2rem;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp07 .inputBox {
    padding: 0 0 20px;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp07 .inputBox .column {
    width: 100%;
    padding: 10px 0 0;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp07 .inputBox input[type="text"] {
    height: 45px;
    font-size: 1.4rem;
  }
  
  
  #mainContents .LayoutTyp11 .formArea .formTyp07 .inputBox.typ02 {
    padding: 0;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp07 .inputBox.typ02 .column {
    margin: 0 30px 0 0;
    padding: 0;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp07 .inputBox.typ02 input[type="text"] {
    height: 45px;
    font-size: 1.4rem;
  }
  
  #mainContents .LayoutTyp11 .formArea .formTyp08 {
    padding: 0 0 20px;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp08 h3 {
    display: inline;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp08 h3.required::after{
    bottom: 0;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp08 p.small {
    font-size: 1.2rem;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp08 .inputBox {
    font-size: 1.2rem;
  }
  #mainContents .LayoutTyp11 .formArea .formTyp08 .inputBox select {
    height: 45px;
    margin: 10px 0 0;
    font-size: 1.3rem;
  }

  #mainContents .LayoutTyp11 .formArea .formTyp09 .checkBox {
    font-size: 1.4rem;
  }
}



/****************************************

   common cookie

****************************************/
#notification {
  position: fixed;
  bottom: 0px;
  z-index: 200;
  width: 100%;
}
#notification .notice {
  color: #fff;
  width:100%;
  background-color:#000D14;
  padding:20px 50px;
  box-sizing: border-box;
  font-size: 1.4rem;
}
#notification .notice a {
  color: #f4da40;
}
#notification .agreeBtn {
  background-color: #fff;
  color: #000;
  padding: 5px;
  border-radius: 50px;
  display: block;
  width: 90px;
  text-align: center;
  float: right;
  margin-left: 5px;
}
#notification .closeBtn {
  color: #fff;
  display: block;
  text-align: center;
  float: right;
  margin: -15px 0 10px 10px;
  font-size: 3.0rem;
  font-weight: bold;
  padding: 0;
}
#notification .alert {
  margin-bottom: 0;
  border-radius: 0;
}
#notification .cookie {
  margin-top: 2px;
  bottom:0;
}
@media screen and (max-width: 767px) {
  #notification {
    position: fixed;
    bottom: 0px;
    z-index: 200;
    width: 100%;
    padding: 0;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  #notification .notice {
    color: #fff;
    width:100%;
    background-color:#000D14;
    padding:10px 10px;
    font-size: 12px;
  }
  #notification .notice a {
    color: #f4da40;
    font-size: 14px;
  }
}
