@charset "utf-8";

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

/* link */
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
a { outline: none; text-decoration: none; }
a:link    { color: #000D14; text-decoration: none; }
a:visited { color: #000D14; text-decoration: underline; }
a:hover   { color: #000D14; text-decoration: underline; }
a:active  { color: #000D14; 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;
  }
}

/*==========================================
 clearfix
===========================================*/
.clearfix {
	zoom: 1;
}
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}

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

/*==========================================
 ヘッダーのスタイル
===========================================*/
header {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 90px;
  background-color: #000;
  color: #fff;
}
header #header {
  position: relative;
}
header #headerLogoArea {
  position: absolute;
  left: 70px;
  top: 24px;
}
header #headerLogoArea h1 img {
  width: 128px;
  height: auto;
}
header #headerGlobalArea {
  position: absolute;
  right: 70px;
  top: 20px;
  width: 430px;
}
header #headerGlobalArea #headerTel {
  /*position: absolute;
  left: 0;
  top: 0;*/
}
header #headerGlobalArea #headerTel a {
  padding: 0 0 0 30px;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
header #headerGlobalArea #headerTel a::before {
  position: absolute;
  left: 0;
  top: 2px;
  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 #headerTel p {
  padding: 5px 0 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
header #headerGlobalArea #headerContact {
  display: block;
  position: absolute;
  right: 0;
  top: 5px;
}
header #headerGlobalArea #headerContact a {
  display: block;
  width: 190px;
  height: 40px;
  padding: 12px 0 0;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  text-align: center;
}
header #headerGlobalArea #headerContact a:hover {
  text-decoration: none;
  background-color: #000;
  color: #fff;
  border: SOLID 2PX #fff;
  padding: 10px 0 0;
}

header #headerLogoArea #headerTel {
    margin-top: 14px;
    border-top: solid 1px #666;
    padding-top: 10px;
    text-align: center;
    line-height: 1.2;
}
header #headerLogoArea #headerTel a {
  padding: 0 0 0 6px;
  font-size: 2.6rem;
  font-weight: 700;
  color: #202B46;
  letter-spacing: 0.05em;
}

header #headerLogoArea #headerTel a:hover {
  text-decoration: none;
  opacity: 0.7;
}
header #headerLogoArea #headerTel p {
  padding: 5px 0 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #202B46;
}
header #headerLogoArea #headerContact {
  /*display: block;*/
  position: absolute;
  right: 0;
  top: 5px;
}
header #headerLogoArea #headerContact a {
  display: block;
  float: left;
  width: 54px;
  height: 54px;
  padding: 11px 0;
  box-sizing: border-box;
  border-radius: 28px;
  background-color: #fff;
  font-size: 17px;
  font-weight: 300;
  text-align: center;
  margin: -14px 26px 0px 0;
}

header #headerLogoArea #headerContact a.headerphone {
    display: block;
    float: left;
    width: 54px;
    height: 54px;
    padding: 11px 0;
    box-sizing: border-box;
    border-radius: 28px;
    background-color: #000;
    border: 1px solid #fff;
    font-size: 17px;
    font-weight: 300;
    text-align: center;
    margin: -14px 14px 0px 0;
}

header #headerLogoArea #headerContact a:hover {
  text-decoration: none;
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  header {
    height: 90px;
  }
  header #header {
    position: relative;
  }
  header #headerLogoArea {
    left: 1%;
    top: 27px;
    width: 98%;
    /*text-align: center;*/
  }
  header #headerLogoArea h1 img {
    width: 124px;
  }
  header #headerGlobalArea {
    position: absolute;
    right: 5%;
    top: 14px;
    width: 153px;
  }
  header #headerGlobalArea #headerTel a {
    padding: 0 0 0 20px;
    font-size: 2.0rem;
    letter-spacing: 0em;
  }
  header #headerGlobalArea #headerTel a::before {
    top: 2px;
    width: 15px;
    height: 15px;
  }
  header #headerGlobalArea #headerTel p {
    padding: 5px 0 0;
    font-size: 1.3rem;
    font-weight: 500;
    color: #202B46;
  }
  header #headerGlobalArea #headerContact {
    display: none;
  }
  /*  header #headerLogoArea #headerTel a::before {
      left: 78px;
      width: 20px;
      height: 20px;
      top: 95px;
  }*/
}


/*==========================================
 フッターのスタイル
===========================================*/
footer {
  width: 100%;
  margin: 50px 0 0;
  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 50px;
}
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;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  footer {
    width: 100%;
    margin: 50px 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: 90px 0 0;
  min-height: 500px;
}
section.w_full {
  width: 100%;
  margin: 0;
}
section.bc_G {
  background-color: #F6F6F6;
}
section.bc_Gr {
  padding: 40px 0;
}
@media only screen and (max-width: 767px) {
  #mainContents {
    padding: 90px 0 0;
  }
 section.bc_Gr {
    padding: 60px 0 0;
  }
 section.w_3no {
    width: 100%;
    margin: 0;
  }
}



/*==========================================
 共通タイトル
===========================================*/
#titleArea {
  display: block;
  position: relative;
  width: 1100px;
  height: 225px;
  margin: 0 auto;
}

/*==========================================
 共通 img
===========================================*/
img.img_full {
  width: 100%;
  height: auto;
}

/*==========================================
 共通リンク
===========================================*/
.linktyp01 {
}

/*==========================================
 レイアウト
===========================================*/

#topMvArea {
  display: block;
  opacity: 0;
}
#topMvArea img {
  width: 100%;
  height: auto;
}


.LayoutTyp03 {
  width: 100%;
  padding: 50px 0 50px;
}
.LayoutTyp03 h2 {
  font-size: 3.0rem;
  font-weight: 500;
  color: #202B46;
  text-align: center;
}

.LayoutTyp03 h3 {
    position: relative;
    width: 1000px;
    margin: 50px auto 0;
    font-size: 2.8rem;
    font-weight: 700;
    color: #202B46;
    text-align: center;
}

.LayoutTyp03 p {
  text-align: center;
  margin-top: 20px;
  font-size: 2.6rem;
  line-height: 1.4;
}

.LayoutTyp03 span {
  font-size: 1.6rem;
}


.ThanksTxt {
  padding-top: 20px;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
}

.b_back {
  display: block;
  width: 543px;
  height: 60px;
  margin: 40px auto 0;
  padding: 18px 0 0;
  box-sizing: border-box;
  border-radius: 30px;
  background-color: #202B46;
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFF !important;
  text-decoration: none;
  text-align: center;
}



.LayoutTyp03 .columnArea {
  width: 1000px;
  margin: 0 auto;
  padding: 30px 0 0;
}

.LayoutTyp03 .columnArea .columnBox01 {
  width: 100%;
  padding: 0 0 30px;
  display: flex;
  justify-content: space-between;
  text-align: left;
}
.LayoutTyp03 .columnArea .columnBox01 .column_L {
  position: relative;
  width: 583px;
}
.LayoutTyp03 .columnArea .columnBox01 .column_L img {
  /*width: 50vw;*/
  float: right;
}
.LayoutTyp03 .columnArea .columnBox01 .column_R {
  width: 583px;
  padding: 20px 30px 0 50px;
  box-sizing: border-box;
}
.LayoutTyp03 .columnArea .columnBox01 .column_R img {
  width: auto;
  height: 24px;
}
.dayTitle {height: 60px !important;}

.LayoutTyp03 .columnArea .columnBox01 .column_R h4 {
  padding: 18px 0 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #202B46;
}
.LayoutTyp03 .columnArea .columnBox01 .column_R p {
  padding: 20px 0 20px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}

.LayoutTyp03 .columnArea .columnBox02 {
  width: 100%;
  padding: 0 0 100px;
  display: flex;
  justify-content: space-between;
}
.LayoutTyp03 .columnArea .columnBox02 .column_L {
  width: 583px;
  padding: 58px 100px 0 0;
  box-sizing: border-box;
}
.LayoutTyp03 .columnArea .columnBox02 .column_L img {
  width: auto;
  height: 43px;
}
.LayoutTyp03 .columnArea .columnBox02 .column_L h4 {
  padding: 35px 0 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #202B46;
}
.LayoutTyp03 .columnArea .columnBox02 .column_L p {
  padding: 25px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
.LayoutTyp03 .columnArea .columnBox02 .column_R {
  position: relative;
  width: 583px;
}
.LayoutTyp03 .columnArea .columnBox02 .column_R img {
  width: 50vw;
  float: left;
}
@media only screen and (max-width: 767px) {
 .LayoutTyp03 {
    padding: 30px 0;
  }
 .LayoutTyp03 h2 {
    font-size: 2.0rem;
  }
 .LayoutTyp03 h3 {
    padding: 10px 0 0;
    font-size: 2.0rem;
    width: 95%;
    line-height: 1.4;
    margin-top: 0;
  }
 .LayoutTyp03 p {
    text-align: center;
    margin: 20px 30px;
    font-size: 1.8rem;
    line-height: 1.4;
}
 .LayoutTyp03 .columnArea {
    width: 100%;
    padding: 30px 0 0;
  }

 .LayoutTyp03 .columnArea .columnBox01 {
    width: 100%;
    padding: 0 0 60px;
    display: block;
  }
 .LayoutTyp03 .columnArea .columnBox01:last-child {
    padding: 0;
  }
 .LayoutTyp03 .columnArea .columnBox01 .column_L {
    width: 100%;
  }
 .LayoutTyp03 .columnArea .columnBox01 .column_L img {
    /*width: 82vw;*/
    float: left;
  }
 .LayoutTyp03 .columnArea .columnBox01 .column_R {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0 0 0;
  }
 .LayoutTyp03 .columnArea .columnBox01 .column_R img {
    display: block;
    width: auto;
    height: 18px;
    margin: 0 auto;
    padding: 20px 0 0;
  }
 .LayoutTyp03 .columnArea .columnBox01 .column_R h4 {
    padding: 20px 0 0;
    font-size: 1.6rem;
    text-align: center;
  }
 .LayoutTyp03 .columnArea .columnBox01 .column_R p {
    padding: 25px 0 0;
    font-size: 1.4rem;
  }

 .LayoutTyp03 .columnArea .columnBox02 {
    width: 100%;
    padding: 0 0 60px;
    display: flex;
    flex-wrap: wrap;
  }
 .LayoutTyp03 .columnArea .columnBox02 .column_L {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    order: 2;
  }
 .LayoutTyp03 .columnArea .columnBox02 .column_L img {
    display: block;
    width: auto;
    height: 37px;
    margin: 0 auto;
    padding: 20px 0 0;
  }
 .LayoutTyp03 .columnArea .columnBox02 .column_L h4 {
    padding: 20px 0 0;
    font-size: 1.6rem;
    text-align: center;
  }
 .LayoutTyp03 .columnArea .columnBox02 .column_L p {
    padding: 25px 0 0;
    font-size: 1.4rem;
  }
 .LayoutTyp03 .columnArea .columnBox02 .column_R {
    width: 100%;
    order: 1;
  }
 .LayoutTyp03 .columnArea .columnBox02 .column_R img {
    width: 82vw;
    float: right;
  }
  .b_back {
    width: 310px;
  }
}


.LayoutTyp07 {
  width: 100%;
  padding: 0;
}

.LayoutTyp07  .hgv_presents {
  text-align: center;
  margin: 34px 0 42px;
}

.LayoutTyp07 h2 {
  position: relative;
  width: 100%;
  margin: 30px auto 0;
  font-size: 2.7rem;
  font-weight: 700;
  color: #202B46;
  text-align: center;
  line-height: 1.8;
}

.LayoutTyp07 .column01 {
  width: 800px;
  margin: 0 auto;
  padding: 20px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.LayoutTyp07 .column01 .column_L {
  width: 300px;
}

.LayoutTyp07 .column01 .column_L img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.LayoutTyp07 .column01 .column_R {
  width: 430px;
}

.LayoutTyp07 .column01 .column_R p {
  padding: 0 0 25px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.LayoutTyp07 .column01 .column_R p a {
  color: #202B46;
}

.LayoutTyp07 .column01 .column_R p a:hover {
  text-decoration: underline;
}

.LayoutTyp07 .column01 .link01 {
  margin: 0 0 20px;
}

.LayoutTyp07 .column01 .link01 a {
  display: block;
  width: 330px;
  height: 45px;
  padding: 13px 0 0;
  box-sizing: border-box;
  border-radius: 25px;
  background-color: #202B46;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

.LayoutTyp07 .column01 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {

 .LayoutTyp07 {
    padding: 0 0 0;
  }

 .LayoutTyp07 h2 {
    font-size: 2rem;
    width: 100%;
    line-height: 1.8;
    margin-top: 16px;
  }

 .LayoutTyp07 .column01 {
    width: 100%;
    padding: 30px 0 0;
  }

 .LayoutTyp07 .column01 .column_L {
    width: 90%;
    margin: 0 auto;
  }

 .LayoutTyp07 .column01 .column_R {
    width: 90%;
    margin: 0 auto;
    padding: 0 0;
  }

 .LayoutTyp07 .column01 .column_R p {
    padding: 0 0 15px;
    font-size: 1.6rem;
  }

 .LayoutTyp07 .column01 .link01 {
    margin: 20px 0;
  }

 .LayoutTyp07 .column01 .link01 a {
    margin: 0 auto;
  }
}

.LayoutTyp07 h3 {
  width: 900px;
  margin: 50px auto  20px;
  padding: 12px 0 17px;
  font-size: 2.2rem;
  font-weight: 500;
  background-color: #202B46;
  color: #fff;
  text-align: center;
}


.LayoutTyp07 h4 {
  position: relative;
  margin: 10px auto 20px;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: left;
}

.LayoutTyp07 .text-simple  {
  width: 800px;
  margin: 40px auto 0;
}

.LayoutTyp07 .text-simple p {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.6;
}

.LayoutTyp07 .text-simple a {
    text-decoration: underline;
}

.text-center {    
  text-align: center;
}

.LayoutTyp07 .column02 {
  width: 1000px;
  margin: 0 auto;
  padding: 40px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.LayoutTyp07 .column02 .column {
  position: relative;
  width: 210px;
}
.LayoutTyp07 .column02 .column::after {
  position: absolute;
  right: -43px;
  top: 74px;
  width: 27px;
  height: 23px;
  /* background-image: url("../img/icon03.svg"); */
  background-size: 100% 100%;
  content: "";
}
.LayoutTyp07 .column02 .column:nth-child(2)::after {
  display: block;
}
.LayoutTyp07 .column02 .column:nth-child(4)::after {
  display: none;
}
.LayoutTyp07 .column02 .column img {
  width: 100%;
  height: auto;
}
.LayoutTyp07 .column02 .column h4 {
  padding: 15px 0 0;
  font-size: 2.2rem;
  font-weight: 500;
  color: #202B46;
  text-align: center;
}
.LayoutTyp07 .column02 .column p {
  padding: 10px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
 .LayoutTyp07 h3 {
    width: 95%;
    margin: 40px auto 0;
    font-size: 2.5rem;
    line-height: 1.5;
    padding: 5px 0 5px;
  }

   .LayoutTyp07 h3.small {
    width: 95%;
    margin: 40px auto 0;
    font-size: 2rem;
    line-height: 1.5;
  }
 .LayoutTyp07 h3::before {
    top: 11px;
    width: auto;
  }
 .LayoutTyp07 h3::after {
    top: 11px;
    width: auto;
  }
 .LayoutTyp07 h4 {
    margin: 15px auto;
    text-align: center;
  }
 .LayoutTyp07 .column02 {
    width: 90%;
    padding: 30px 0 0;
  }
 .LayoutTyp07 .column02 .column {
    width: 43%;
    padding: 0 0 30px;
  }
 .LayoutTyp07 .column02 .column::after {
    right: -38px;
    top: 52px;
  }
 .LayoutTyp07 .column02 .column:nth-child(2)::after {
    display: none;
  }
 .LayoutTyp07 .column02 .column h4 {
    padding: 10px 0 0;
  }
 .LayoutTyp07 .column02 .column p {
    font-size: 1.3rem;
  }
 .LayoutTyp07 h4 {
    font-size: 2.3rem;
    line-height: 1.4;
  }
  .LayoutTyp07 .text-simple {
    width: 100%;
    margin: 20px auto 0;
  }
.LayoutTyp07 .text-simple p {
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.6;
    width: 90%;
    margin: 0 auto;
    padding: 0 0 10px;
  }

  .LayoutTyp07 .text-simple strong.deadline {
      text-align: center;
      display: block;
      font-size: 1.9rem;
  }

}


.LayoutTyp07 .column03 {
  position: relative;
  width: 1000px;
  margin: 40px auto 0;
  border: 3px solid #202B46;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.LayoutTyp07 .column03::after {
  position: absolute;
  right: 0;
  bottom: -25px;
  font-size: 1.3rem;
  font-weight: 400;
  content: "※写真はイメージです。";
}
.LayoutTyp07 .column03 .column_L {
  width: 449px;
  padding: 25px 15px;
  box-sizing: border-box;
}
.LayoutTyp07 .column03 .column_L a:hover {
  text-decoration: none;
}
.LayoutTyp07 .column03 .column_L h4 {
  position: relative;
  margin: 0 0 25px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #202B46;
  text-align: center;
}
.LayoutTyp07 .column03 .column_L h4::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background-color: #202B46;
  content: "";
}
.LayoutTyp07 .column03 .column_L h5 {
  padding: 0 0 0 20px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #202B46;
}
.LayoutTyp07 .column03 .column_L p {
  padding: 5px 0 0 20px;
  font-size: 3.7rem;
  font-weight: 700;
  color: #00B0B9;
}
.LayoutTyp07 .column03 .column_L p.small {
  padding: 15px 0 0 0;
  font-size: 1.3rem;
  font-weight: 400;
  color: #000D14;
  line-height: 1.6;
}
.LayoutTyp07 .column03 .column_R {
  width: 545px;
}
.LayoutTyp07 .column03 .column_R img {
  width: 545px;
  height: 227px;
  vertical-align: top;
}

.LayoutTyp07 .link02 {
  width: 100%;
  padding: 0 0;
}
.LayoutTyp07 .link02 p {
  font-size: 18px;
  text-align: center;
  line-height: 2;
  margin: 20px 0 0;
}
.LayoutTyp07 .link02 a {
  display: block;
  width: 500px;
  height: 60px;
  margin: 30px auto 0;
  padding: 18px 0 0;
  box-sizing: border-box;
  border-radius: 30px;
  background-color: #202B46;
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
}

.bt-comment { color: #fff !important;
    font-size: 1.6rem !important;}

.LayoutTyp07 .link02 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
 .LayoutTyp07 .column03 {
    width: 90%;
    margin: 30px auto 0;
  }
 .LayoutTyp07 .column03::after {
    left: 0;
    font-size: 1.2rem;
  }
 .LayoutTyp07 .column03 .column_L {
    width: 100%;
    padding: 20px 10px 10px;
  }
 .LayoutTyp07 .column03 .column_L h4 {
    margin: 0 0 20px;
    font-size: 2.0rem;
  }
 .LayoutTyp07 .column03 .column_L h5 {
    padding: 0;
    font-size: 2.0rem;
    text-align: center;
  }
 .LayoutTyp07 .column03 .column_L p {
    padding: 10px 0 0 0;
    font-size: 2.9rem;
    text-align: center;
    line-height: 1.2;
  }
 .LayoutTyp07 .column03 .column_L p.small {
    padding: 15px 0 0 0;
    font-size: 1.2rem;
    text-align: left;
  }
 .LayoutTyp07 .column03 .column_R {
    width: 100%;
  }
 .LayoutTyp07 .column03 .column_R img {
    width: 100%;
    height: auto;
  }

 .LayoutTyp07 .link02 {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0 0;
  }
 .LayoutTyp07 .link02 p {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.6;
    margin: 0 0 0;
  }
 .LayoutTyp07 .link02 a {
    width: 320px;
    height: 48px;
    margin: 12px auto 0;
    border-radius: 40px;
    font-size: 1.5rem;
  }
  .bt-comment {
    font-size: 1.2rem !important;
}

.LayoutTyp07 .link02-padding a {
    padding: 14px 0 0;
  }
}


.LayoutTyp08 {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 30px 50px;
  box-sizing: border-box;
  background-color: #202B46;
  text-align: center;
  color: #fff;
}
.LayoutTyp08 h2 {
  display: block;
  margin: 0 0 15px;
}

.LayoutTyp08 h2 span{
  display: inline-block;
  border: 2px solid #fff;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 2rem;
}

.LayoutTyp08 a {
  position: relative;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}
.LayoutTyp08 a::before {
  position: absolute;
  left: -50px;
  top: 20px;
  width: 42px;
  height: 42px;
  /* background-image: url("../img/icon01.svg"); */
  background-size: 100% 100%;
  content: "";
}
.LayoutTyp08 a:hover {
  text-decoration: none;
  opacity: 0.7;
}



.LayoutTyp08 .simpleLink {
    font-size: 14px;
    background-image: none !important;
}

.LayoutTyp08 .simpleLink::before {
  background-image: none;
}


.LayoutTyp08 h3 {
  padding: 20px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}


.LayoutTyp08 p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
 .LayoutTyp08 {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
  }
 .LayoutTyp08 h2 {
    margin: 0 0 20px;
    font-size: 2.0rem;
    line-height: 1.4;
  }
 .LayoutTyp08 a {
    font-size: 3.7rem;
  }
 .LayoutTyp08 a::before {
    left: -27px;
    top: 9px;
    width: 23px;
    height: 23px;
  }
 .LayoutTyp08 h3 {
    padding: 20px 0 0;
    font-size: 1.4rem;
  }
}

.LayoutTyp11 {
  width: 800px;
  margin: 0 auto;
  padding: 50px 0 50px;
}
.LayoutTyp11 .titleArea {
  padding: 0 0 30px;
}
.LayoutTyp11 h2 {
  padding: 0 20px 15px;
  border-bottom: none;
  font-size: 2.2rem;
  font-weight: 400;
  font-size: 2rem;
  font-weight: 700;
  color: #202B46;
  text-align: left;
}
.LayoutTyp11 p.small {
  padding: 10px 0 0;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
}
.LayoutTyp11 .formArea {
  width: 100%;
}
.LayoutTyp11 .formArea .formTyp01 {
  width: 100%;
  padding: 0 0 50px;
}
.LayoutTyp11 .formArea .formTyp01 h3 {
  position: relative;
  display: inline;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.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: "必須";
}


.LayoutTyp11 .formArea .formTyp01 p {
    padding: 10px 0 10px;
    font-size: 1.3rem;
    font-weight: 400;
    text-align: left;
    line-height: 1.4;
}

.LayoutTyp11 .formArea .formTyp01 a {
  font-weight: 700;
  color: #CE3262;
  text-decoration: underline;
}
.LayoutTyp11 .formArea .formTyp01 a:hover {
  opacity: 0.8;
}
.LayoutTyp11 .formArea .formTyp01 .radioBox {
  padding: 10px 0 0;
  font-size: 1.6rem;
}
.LayoutTyp11 .formArea .formTyp01 .radioBox label {
  padding: 0 20px 0 0;
}
.LayoutTyp11 .formArea .formTyp01 .radioBox input[type="radio"] {
  margin: -3px 5px 0 0;
}

.LayoutTyp11 .formArea .formTyp02 {
  width: 100%;
  padding: 0 0 50px;
}
.LayoutTyp11 .formArea .formTyp02 h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 5px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.LayoutTyp11 .formArea .formTyp02 h3.required::after{
  position: absolute;
  right: -40px;
  bottom: 2px;
  background: #DD0088;
  padding: 2px 6px;
  font-size: 0.9rem;;
  vertical-align: bottom;
  color: #fff;
  border-radius: 3px;
  margin-left: 2px;
  content: "必須";
}
.LayoutTyp11 .formArea .formTyp02 p.small {
  padding: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
}
.LayoutTyp11 .formArea .formTyp02 .inputBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.LayoutTyp11 .formArea .formTyp02 .inputBox .column {
  width: 352px;
}
.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;
}

.LayoutTyp11 .formArea .formTyp03 {
  width: 100%;
  padding: 0 0 40px;
}
.LayoutTyp11 .formArea .formTyp03 h3 {
  display: inline;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.LayoutTyp11 .formArea .formTyp03 .textBox {
  padding: 10px 0 0;
  font-size: 1.6rem;
}
.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;
}

.LayoutTyp11 .formArea .formTyp04 {
  width: 304px;
  margin: 0 auto;
  padding: 50px 0 0;
}

.LayoutTyp11 .formArea .formTyp05 {
  width: 430px;
  margin: 0 auto;
  padding: 20px 0 0;
}
.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;
}

.LayoutTyp11 .formArea .formTyp05 input[type="submit"]:disabled {
  background-color: #DD0088;
}

.LayoutTyp11 .formArea .formTyp06 {
  width: 100%;
  padding: 0 0 50px;
}
.LayoutTyp11 .formArea .formTyp06 h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 5px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.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: "必須";
}
.LayoutTyp11 .formArea .formTyp06 .inputBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.LayoutTyp11 .formArea .formTyp06 .inputBox .column {
  width: 352px;
}
.LayoutTyp11 .formArea .formTyp06 .inputBox .column.typ01 {
  position: relative;
  width: 330px;
}
.LayoutTyp11 .formArea .formTyp06 .inputBox .column.typ01::before {
  position: absolute;
  right: -35px;
  top: 16px;
  font-size: 1.6rem;
  color: #333;
  content: "―";
}
.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;
}

.LayoutTyp11 .formArea .formTyp07 {
  width: 100%;
  padding: 0 0 50px;
}
.LayoutTyp11 .formArea .formTyp07 h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 5px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.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: "必須";
}
.LayoutTyp11 .formArea .formTyp07 p.small {
  padding: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
}
.LayoutTyp11 .formArea .formTyp07 .inputBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.LayoutTyp11 .formArea .formTyp07 .inputBox .column {
  width: 230px;
}
.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;
}

.LayoutTyp11 .formArea .formTyp07 .inputBox.typ02 {
  width: 100%;
  padding: 0 0 20px;
  display: flex;
  justify-content :flex-start;
  flex-wrap: wrap;
}
.LayoutTyp11 .formArea .formTyp07 .inputBox.typ02 .column {
  position: relative;
  width: 100px;
  margin: 0 30px 0 0;
}

.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;
}

.LayoutTyp11 .formArea .formTyp09 {
  width: 100%;
  padding: 40px 0 0;
  line-height: 1.6;
}
.LayoutTyp11 .formArea .formTyp09 a {
  font-weight: 700;
  color: #CE3262;
  text-decoration: underline;
}
.LayoutTyp11 .formArea .formTyp09 a:hover {
  opacity: 0.8;
}
.LayoutTyp11 .formArea .formTyp09 .checkBox {
  padding: 10px 0 0;
  font-size: 1.6rem;
}
.LayoutTyp11 .formArea .formTyp09 .checkBox label {
  display: block;
  padding: 0 0 20px 0;
}
.LayoutTyp11 .formArea .formTyp09 .checkBox input[type="checkbox"] {
  margin: -3px 5px 0 0;
}
.LayoutTyp11 .formArea .formTyp09 a {
  font-weight: 700;
  color: #DD0088;
  text-decoration: underline;
}
.LayoutTyp11 .formArea .formTyp09 a:hover {
  opacity: 0.8;
}

.LayoutTyp11 .text01 p {
  padding: 30px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
}

.LayoutTyp11 .privacyBox {
  width: 100%;
  padding: 20px 0 0;
  border: 1px solid #000;
  border-radius: 6px;
}

.LayoutTyp11 .privacyBox p {
  padding: 0 20px 20px;
  font-size: 1.4rem;
  line-height: 1.7;
}

.LayoutTyp11 .privacyBox p a {
  font-weight: 700;
  color: #00B0B9;
}

.LayoutTyp11 .privacyBox p a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.LayoutTyp11 .formArea .formTyp08 {
    width: 100%;
    padding: 0 0 50px;
}

.LayoutTyp11 .formArea .formTyp08 h3 {
    position: relative;
    display: inline-block;
    margin: 0 0 5px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
}

.LayoutTyp11 .formArea .formTyp08 .inputBox {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.LayoutTyp11 .formArea .formTyp08 .inputBox .column {
    width: 352px;
}

 .LayoutTyp11 .formArea .formTyp08 .inputBox select {
    -webkit-appearance: none;
  display: block;
  width: 100%;
  max-width: 350px;
  height: 50px;
  padding: 0 10px;
  border: 1px solid #000D14;
  box-sizing: border-box;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1.6rem;
  }

@media only screen and (max-width: 767px) {
 .LayoutTyp11 {
    width: 100%;
    padding: 40px 0 30px;
  }
 .LayoutTyp11 h2 {
    font-size: 1.6rem;
  }
 .LayoutTyp11 p.small {
    font-size: 1.2rem;
    text-align: left;
  }
 .LayoutTyp11 .formArea {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
  }
 .LayoutTyp11 .formArea .formTyp01 {
    padding: 0 0 20px;
  }
 .LayoutTyp11 .formArea .formTyp01 h3 {
    font-size: 1.3rem;
    line-height: 1.6;
  }
 .LayoutTyp11 .formArea .formTyp01 h3.required::after{
    bottom: 0px;
  }
 .LayoutTyp11 .formArea .formTyp01 .radioBox {
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
 .LayoutTyp11 .formArea .formTyp01 .radioBox label {
    width: 50%;
    padding: 0 0 15px;
  }

 .LayoutTyp11 .formArea .formTyp02 {
    padding: 0;
  }
 .LayoutTyp11 .formArea .formTyp02 .inputBox .column {
    width: 100%;
    padding: 0 0 20px;
  }
 .LayoutTyp11 .formArea .formTyp02 h3 {
    font-size: 1.3rem;
    line-height: 1.6;
  }
 .LayoutTyp11 .formArea .formTyp02 h3.pcView {
    display: none;
  }
 .LayoutTyp11 .formArea .formTyp02 h3.required::after{
    bottom: 0;
  }
 .LayoutTyp11 .formArea .formTyp02 .inputBox input[type="text"] {
    height: 45px;
    font-size: 1.4rem;
  }

 .LayoutTyp11 .formArea .formTyp03 {
    padding: 0 0 20px;
  }
 .LayoutTyp11 .formArea .formTyp03 h3 {
    font-size: 1.3rem;
    line-height: 1.6;
  }
 .LayoutTyp11 .formArea .formTyp03 .textBox {
    font-size: 1.3rem;
  }
 .LayoutTyp11 .formArea .formTyp03 .textBox textarea {
    height: 120px;
    font-size: 1.3rem;
  }

 .LayoutTyp11 .text01 p {
    font-size: 1.2rem;
    text-align: center;
  }

 .LayoutTyp11 .formArea .formTyp05 {
    width: 300px;
    padding: 20px 0 0;
  }
 .LayoutTyp11 .formArea .formTyp05 input[type="submit"] {
    height: 50px;
    font-size: 1.4rem;
  }

 .LayoutTyp11 .formArea .formTyp06 {
    padding: 0;
  }
 .LayoutTyp11 .formArea .formTyp06 h3 {
    display: inline;
    font-size: 1.3rem;
    line-height: 1.6;
  }
 .LayoutTyp11 .formArea .formTyp06 h3.required::after{
    bottom: 0;
  }
 .LayoutTyp11 .formArea .formTyp06 .inputBox .column {
    width: 100%;
    padding: 10px 0 20px;
  }
 .LayoutTyp11 .formArea .formTyp06 .inputBox .column.typ01::before {
    right: 26px;
    top: 23px;
  }
 .LayoutTyp11 .formArea .formTyp06 .inputBox .column:nth-child(2) {
    padding: 0 0 20px;
  }
 .LayoutTyp11 .formArea .formTyp06 .inputBox .column input[type="text"] {
    height: 45px;
    font-size: 1.4rem;
  }
 .LayoutTyp11 .formArea .formTyp06 .inputBox .column:nth-child(1) input[type="text"] {
    width: 280px;
  }
  
 .LayoutTyp11 .formArea .formTyp07 {
    padding: 0;
  }
 .LayoutTyp11 .formArea .formTyp07 h3 {
    font-size: 1.3rem;
    line-height: 1.6;
  }
 .LayoutTyp11 .formArea .formTyp07 h3.required::after{
    bottom: 0;
  }
 .LayoutTyp11 .formArea .formTyp07 p.small {
    font-size: 1.2rem;
  }
 .LayoutTyp11 .formArea .formTyp07 .inputBox {
    padding: 0 0 20px;
  }
 .LayoutTyp11 .formArea .formTyp07 .inputBox .column {
    width: 100%;
    padding: 10px 0 0;
  }
 .LayoutTyp11 .formArea .formTyp07 .inputBox input[type="text"] {
    height: 45px;
    font-size: 1.4rem;
  }
  
 .LayoutTyp11 .formArea .formTyp07 .inputBox.typ02 {
    padding: 0;
  }
 .LayoutTyp11 .formArea .formTyp07 .inputBox.typ02 .column {
    margin: 0 30px 0 0;
    padding: 0;
  }
 .LayoutTyp11 .formArea .formTyp07 .inputBox.typ02 input[type="text"] {
    height: 45px;
    font-size: 1.4rem;
  }
  
 .LayoutTyp11 .formArea .formTyp08 {
    padding: 0 0 20px;
  }
 .LayoutTyp11 .formArea .formTyp08 h3 {
    display: inline;
    font-size: 1.3rem;
    line-height: 1.6;
  }
 .LayoutTyp11 .formArea .formTyp08 h3.required::after{
    bottom: 0;
  }
 .LayoutTyp11 .formArea .formTyp08 p.small {
    font-size: 1.2rem;
  }
 .LayoutTyp11 .formArea .formTyp08 .inputBox {
    font-size: 1.2rem;
  }
 .LayoutTyp11 .formArea .formTyp08 .inputBox select {
  width: 145px;
    height: 45px;
    font-size: 1.4rem;
  }

 .LayoutTyp11 .formArea .formTyp09 .checkBox {
    font-size: 1.4rem;
  }
}



/**************************************************
　　　　　　************ Perks ************
***************************************************/

.addition {
  padding: 0px 10px 5px;
  text-align: center;
  height: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  width: 100%;
}

.container {
  margin-right: auto;
  margin-left: auto;
}


@media only screen and (max-width: 767px) {
  .addition {
    padding: 0px 10px 5px;
    text-align: center;
    height: 100%;
    width: 94%;
    margin: 20px auto 0;
  }
  .container {
  /*    padding-right: 30px;*/
    padding-left: 0;
  }


}




/********************** 

 addition 2025

***********************/

.pcOnly {
  display: block;
}

.spOnly {
  display: none;
}

.top-hero {
  background-color:#202B46;
  overflow: auto;
}

.img-hero {
  width:100%;
  text-align: center;
}

.img-hero img{
  width:100%;
  text-align: center;
}

.period-hero {
  margin: 15px auto;
  color: #fff;
  font-size: 1.6rem;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.period-start {
  border-right: 2px solid #fff;
  padding-right: 20px;
}

.period-end {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}

.period-start span.number {
  font-size: 3.5rem;
  font-weight: 600;
}
.period-end span.number {
  font-size: 3.5rem;
}

.period-border{
  border: 2px solid #fff;
  padding: 0 5px;
  font-size: 1.5rem;
  line-height: 1.3;
}

.till{
  font-size: 2.5rem;
}


@media screen and (max-width:767px) {
  .pcOnly {
    display: none;
  }

  .spOnly {
    display: block;
  }

  .top-hero {
    background-color:#202B46;
    overflow: auto;
  }

  .img-hero {
    width:100%;
    text-align: center;
  }

  .img-hero img{
    width:100%;
    text-align: center;
  }

  .period-hero {
    margin: 15px auto;
    color: #fff;
    font-size: 2rem;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
  }

  .period-hero {
    font-size: 23px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
  }

  .period-start {
    border-right: none;
    border-bottom: 2px solid #fff;
    padding-right: 0;
    padding-bottom: 10px;
  }

  .period-end {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0 5px;
  }

  .period-start span.number {
    font-size: 3.5rem;
    font-weight: 600;
  }
  .period-end span.number {
    font-size: 2.3rem;
  }

  .period-enddate{
    font-size: 1.5rem;
  }

  .period-border{
    border: 2px solid #fff;
    padding: 2px 5px;
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .till {
    font-size: 1.8rem;
  }
 
}



.schedule_block{
  width: 850px;
  margin: 50px auto 30px;
  background: #f1f1f1;
}

.schedule_table{
  padding: 30px;
}

.schedule_list{
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  border-top: solid 1px #707070;
  align-items: flex-start;
  padding: 10px 0;
}

.schedule_list:first-child{border-top: none;}

.schedule_time{
  font-size: 1.8rem;
  line-height: 1.6;
  width: 14%;
  font-weight: 600;
}

.schedule_icon{
  font-size: 1.8rem;
  width: 5%;
  text-align: center;
}

.schedule_icon img{

}

.schedule_details{
  font-size: 1.8rem;
  line-height: 1.6;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .schedule_block{
    width: 90%;
    margin: 30px auto 30px;
    background: #f1f1f1;
  }

  .schedule_table{
    padding: 15px;
  }

  .schedule_list{
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    border-top: solid 1px #707070;
    align-items: flex-start;
  }

  .schedule_list:first-child{border-top: none;}

  .schedule_time{
    font-size: 1.6rem;
    line-height: 1.6;
    width: 28%;
    text-align: center;
  }

  .schedule_icon{
    font-size: 1.6rem;
    width: 12%;
    text-align: center;
  }

  .schedule_icon img{

  }

  .schedule_details{
    font-size: 1.8rem;
    line-height: 1.6;
    width: 55%;
  }
}




.terms_list{

}


.terms_list li{
  list-style: none;
  padding: 15px 0;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

.terms_list li:nth-child(odd) {
  background-color: #F1F1F1; /* 背景色を設定 */
}



@media screen and (max-width: 767px) {
  .terms_list{

  }


  .terms_list li{
    list-style: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
  }

  .terms_list li:nth-child(odd) {
    background-color: #F1F1F1; /* 背景色を設定 */
  }

}

.terms_table {
  margin: 50px auto 30px;
}
.terms_table th {
  background: #F1F1F1;
  border: solid 1px #707070;
  color: #000D14;
  padding: 10px 20px;
  font-size:1.8rem;
  line-height:1.6;
}
.terms_table td {
  background: #ffffff;
  border: solid 1px #707070;
  color: #000D14;
  padding: 10px 20px;
  font-size:1.8rem;
  line-height:1.6;
}

.table_bold{
  font-weight:bold;
}

.table_small{
  font-size:1.4rem;
}

.terms_addition{
  width: 850px;
  margin: 0 auto;
}

.terms_notes{

}

.terms_notes li{
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.6;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.6rem;
  line-height: 1.6;
}

.terms_notes li::before {
  margin: 0;
  padding: 0;
  content: "※";
}
 
@media screen and (max-width: 767px) {
  .terms_table {
    margin: 30px auto 30px;
  }

  .terms_addition {
    width: 90%;
    margin: 0 auto;
  }

  .last td:last-child {
    border-bottom: solid 1px #707070;
    width: 94%;
  }
  .terms_table {
    width: 90%;
  }
  .terms_table th,
  .terms_table td {
    border-bottom: none;
    display: block;
    width: 94%;
    padding: 10px 10px;
  }
}


.overview_list{

}

.overview_list li span{
  font-size: 1.8rem;
  font-weight: bold;
  display: inline-block;
}

.overview_list li{
  font-size: 1.8rem;
  font-weight: normal;
  list-style: none;
  padding: 7px 0;
}

@media screen and (max-width: 767px) {
  .overview_list{
    width: 95%;
    margin: 0 auto;
  }

  .overview_list li span{
    font-size: 1.6rem;
    font-weight: bold;
    display: inline-block;
  }

  .overview_list li{
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.6;
    padding: 5px 0;
  }
}

footer a:link{
  color: #fff;
  text-decoration: underline;
}


/* Scene */

.scene_list{
	display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 30px;
  margin: 50px auto ;
  width: 900px;
}

.scene_image{
	width: 60%;
}

.column{

}

.imgWrap{
	
}

.scene_text{
	width: 40%;
}



.LayoutTyp07 .scene_h3{
  color: #00B0B9;
  text-align: left;
  font-size: 2.5rem;
  margin: 0 0;
  font-weight: 500;
  line-height: 1.6;
  text-transform: none;
  width: 100%;
  background-color: #fff;
  padding: 0;
}

.scene_text p{
	font-size: 1.6rem;
	color: #000;
	line-height: 1.6;
	font-weight: normal;
	margin: 0;
}

.scene_content .bx-wrapper {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  background: #fff;
	margin: 0;
}

.scene_content .bx-wrapper .bx-controls-direction a{
  z-index: 100;
}


@media screen and (max-width: 767px) {

	.scene_content .content{
		padding: 0;
	}

	.scene_lead{
		font-size: 1.6rem;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
		line-height: 1.8;
		padding: 20px;
	}

	.scene_list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin: 30px auto 30px;
    width: 90%;
	}

	.scene_list{
		flex-direction: column;
		align-content: flex-end;
	}

	.scene_image{
		width: 100%;
	}

	.column{

	}

	.imgWrap{
		
	}

	.scene_text{
		width: 100%;
	}

 .LayoutTyp07 .scene_h3{
		color: #00B0B9;
		text-align: center;
		font-size: 2.6rem;
		margin: 0 0;
		font-weight: 500;
		line-height: 1.6;
		text-transform: none;
	}

	.scene_text p{
    font-size: 1.6rem;
    color: #000;
    line-height: 1.6;
    font-weight: normal;
    margin: 0;
	}

	.scene_content .bx-wrapper {
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;
		border: none;
		background: #fff;
		margin: 0;
		max-width: none !important;
	}

}


/* animation */
.scene_animation {
	height: 350px;
	overflow: hidden;
	position: relative;
}

.scene_animation_image {
	opacity: 0;
	width:100%;
	height:100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	-webkit-animation: scene_anime 12s 0s infinite;
	animation: scene_anime 12s 0s infinite;
}

.scene_animation_image:nth-of-type(2) {
	-webkit-animation-delay: 6s;
	animation-delay: 6s;
}

@keyframes scene_anime {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: scale(1.2);
    z-index:9;
  }
  100% { opacity: 0 }
}

@-webkit-keyframes scene_anime {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: scale(1.2);
    z-index:9;
  }
  100% { opacity: 0 }
}

@media screen and (max-width: 767px) {
  .scene_animation {
    height: 230px;

  }

  .scene_animation_image {
    opacity: 0;
    -webkit-animation: scene_anime 12s 0s infinite;
    animation: scene_anime 12s 0s infinite;
  }

  .scene_animation_image:nth-of-type(2) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
  }
}
