@charset "utf-8";

:root {
  /* Brand - primary */
  --color-brand-primary: #202B46;         /* HGV Navy */

  /* Brand - inverse */
  --color-brand-white: #FFFFFF;         /* White */
  --color-brand-black: #000D14;
  --color-black: #000000;

  /* Accent (secondary 7 colors) */
  --color-accent-1: #00B0B9;
  --color-accent-2: #018289;
  --color-accent-3: #00A9EB;
  --color-accent-4: #DD0088;
  /* --color-accent-4: #E73C3E; */
  --color-accent-5: #CE3262;
  --color-accent-6: #742F4E;
  --color-accent-7: #CBA158;

  /* Neutral (gray 6 steps) */
  --color-neutral-100: #606060;           /* darkest */
  --color-neutral-200: #909292;
  --color-neutral-300: #9EA2AD;
  --color-neutral-400: #C7C8C8;
  --color-neutral-500: #DEDFDF;
  --color-neutral-600: #EAEAEA;
  --color-neutral-700: #F1F1F1;          /* lightest */

  /* Sand */
  --color-neutral-sand: #F5F1EB;

  --color-neutral-lightteal:#d4f1f3;
}


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

:root {
  --text-size-normal: 1.8rem;
}

}

.bold{
  font-weight: 700;
}

/*==========================================
 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: var(--color-brand-black);
}

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



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

html {
  background: var(--color-brand-white);
  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: var(--color-brand-primary);
  color: var(--color-brand-white);
}

.headerLogoArea{
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.header_contact a {
  display: block;
  width: 160px;
  padding: 12px 0;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: var(--color-accent-4);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-brand-white);
  text-align: center;
}

.header_contact a:hover {
  text-decoration: none;
  opacity: .8;
}


@media only screen and (max-width: 767px) {
  header {
    height: 90px;
  }

  .header_contact a {
    display: block;
    width: 160px;
    padding: 12px 0;
    box-sizing: border-box;
    border-radius: 20px;
    background-color: var(--color-accent-4);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-brand-white);
    text-align: center;
  }

}


/*==========================================
 フッターのスタイル
===========================================*/
footer {
  width: 100%;
  margin: 50px 0 0;
  background-color: var(--color-brand-primary);
}
footer #footerBody {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0 50px;
  max-width: 900px;
}
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: var(--color-brand-white);
}
footer #footerBody small {
  display: block;
  padding: 50px 0 0;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--color-brand-white);
  text-align: center;
}

footer a,footer a:visited{
  color: var(--color-brand-white);
}
@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 {
}

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


.base_wrapper {
  width: 95%;
  padding: 0;
  margin: 0 auto;
}

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

.base_wrapper h2 {
  position: relative;
  width: 100%;
  margin: 30px auto 0;
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--color-brand-primary);
  text-align: center;
  line-height: 1.8;
}

.base_wrapper .column01 {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

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

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

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

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

.base_wrapper .column01 .column_R p a {
  color: var(--color-brand-primary);
}

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

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

.base_wrapper .column01 .link01 a {
  display: block;
  width: 330px;
  height: 45px;
  padding: 13px 0 0;
  box-sizing: border-box;
  border-radius: 25px;
  background-color: var(--color-brand-primary);
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-brand-white);
}

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

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

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

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

 .base_wrapper .column01 {
    width: 100%;
    padding: 30px 0 0;
    gap: 20px;
  }

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

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

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

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

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

.base_wrapper h3 {
  width: 100%;
  margin: 50px auto  20px;
  padding: 12px 0 17px;
  font-size: 2.2rem;
  font-weight: 500;
  background-color: var(--color-brand-primary);
  color: var(--color-brand-white);
  text-align: center;
}


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

.base_wrapper .text-simple  {
  width: 90%;
  margin: 40px auto 0;
  max-width: 800px;
}

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

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

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

.base_wrapper .column02 {
  width: 1000px;
  margin: 0 auto;
  padding: 40px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.base_wrapper .column02 .column {
  position: relative;
  width: 210px;
}
.base_wrapper .column02 .column::after {
  position: absolute;
  right: -43px;
  top: 74px;
  width: 27px;
  height: 23px;
  /* background-image: url("../img/icon03.svg"); */
  background-size: 100% 100%;
  content: "";
}
.base_wrapper .column02 .column:nth-child(2)::after {
  display: block;
}
.base_wrapper .column02 .column:nth-child(4)::after {
  display: none;
}
.base_wrapper .column02 .column img {
  width: 100%;
  height: auto;
}
.base_wrapper .column02 .column h4 {
  padding: 15px 0 0;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--color-brand-primary);
  text-align: center;
}
.base_wrapper .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) {
 .base_wrapper h3 {
    width: 95%;
    margin: 40px auto 0;
    font-size: 2.5rem;
    line-height: 1.5;
    padding: 5px 0 5px;
  }

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

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

}


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

.base_wrapper .link02 {
  width: 100%;
  padding: 0 0;
}
.base_wrapper .link02 p {
  font-size: 18px;
  text-align: center;
  line-height: 2;
  margin: 20px 0 0;
}
.base_wrapper .left {
}

.base_wrapper .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: var(--color-brand-primary);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-brand-white);
  text-align: center;
}

.bt-comment { color: var(--color-brand-white) !important;
    font-size: 1.6rem !important;}

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

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

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


.contact_block {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 30px 50px;
  box-sizing: border-box;
  background-color: var(--color-brand-primary);
  text-align: center;
  color: var(--color-brand-white);
}
.contact_block h2 {
  display: block;
  margin: 0 0 15px;
}

.contact_block h2 span{
  display: inline-block;
  border: 2px solid var(--color-brand-white);
  padding: 10px 15px;
  font-weight: 500;
  font-size: 2rem;
}

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



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

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


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


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

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

.form_block {
  width: 95%;
  margin: 0 auto;
  padding: 50px 0 50px;
  max-width: 800px;
}
.form_block .titleArea {
  padding: 0 0 30px;
}
.form_block h2 {
  padding: 0 20px 15px;
  border-bottom: none;
  font-size: 2.2rem;
  font-weight: 400;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brand-primary);
  text-align: left;
}
.form_block p.small {
  padding: 10px 0 0;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
}
.form_block .formArea {
  width: 100%;
}
.form_block .formArea .formTyp01 {
  width: 100%;
  padding: 0 0 50px;
}
.form_block .formArea .formTyp01 h3 {
  position: relative;
  display: inline;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.form_block .formArea .formTyp01 h3.required::after{
  position: absolute;
  right: -40px;
  bottom: 2px;
  background: var(--color-accent-4);
  padding: 2px 6px;
  font-size: 0.9rem;;
  vertical-align: bottom;
  color: var(--color-brand-white);
  border-radius: 3px;
  margin-left: 2px;
  content: "必須";
}


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

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

.form_block .formArea .formTyp02 {
  width: 100%;
  padding: 0 0 50px;
}
.form_block .formArea .formTyp02 h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 5px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.form_block .formArea .formTyp02 h3.required::after{
  position: absolute;
  right: -40px;
  bottom: 2px;
  background: var(--color-accent-4);
  padding: 2px 6px;
  font-size: 0.9rem;;
  vertical-align: bottom;
  color: var(--color-brand-white);
  border-radius: 3px;
  margin-left: 2px;
  content: "必須";
}
.form_block .formArea .formTyp02 p.small {
  padding: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
}
.form_block .formArea .formTyp02 .inputBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form_block .formArea .formTyp02 .inputBox .column {
  width: 352px;
}
.form_block .formArea .formTyp02 .inputBox input[type="text"] {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: 1px solid var(--color-brand-black);
  box-sizing: border-box;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1.6rem;
}

.form_block .formArea .formTyp03 {
  width: 100%;
  padding: 0 0 40px;
}
.form_block .formArea .formTyp03 h3 {
  display: inline;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.form_block .formArea .formTyp03 .textBox {
  padding: 10px 0 0;
  font-size: 1.6rem;
}
.form_block .formArea .formTyp03 .textBox textarea {
  -webkit-appearance: none;
  width: 100%;
  height: 130px;
  padding: 10px;
  border: 1px solid var(--color-brand-black);
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1.6rem;
}

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

.form_block .formArea .formTyp05 {
  width: 430px;
  margin: 0 auto;
  padding: 20px 0 0;
}
.form_block .formArea .formTyp05 input[type="submit"] {
  -webkit-appearance: none;
  width: 100%;
  height: 60px;
  background-color: var(--color-accent-4);
  border: none;
  border-radius: 30px;
  font-size: 2.2rem;
  color: var(--color-brand-white);
  cursor: pointer;
}

.form_block .formArea .formTyp05 input[type="submit"]:disabled {
  background-color: var(--color-accent-4);
}

.form_block .formArea .formTyp06 {
  width: 100%;
  padding: 0 0 50px;
}
.form_block .formArea .formTyp06 h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 5px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.form_block .formArea .formTyp06 h3.required::after{
  position: absolute;
  right: -40px;
  bottom: 2px;
  background: var(--color-accent-4);
  padding: 2px 6px;
  font-size: 0.9rem;;
  vertical-align: bottom;
  color: var(--color-brand-white);
  border-radius: 3px;
  margin-left: 2px;
  content: "必須";
}
.form_block .formArea .formTyp06 .inputBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form_block .formArea .formTyp06 .inputBox .column {
  width: 352px;
}
.form_block .formArea .formTyp06 .inputBox .column.typ01 {
  position: relative;
  width: 330px;
}
.form_block .formArea .formTyp06 .inputBox .column.typ01::before {
  position: absolute;
  right: -35px;
  top: 16px;
  font-size: 1.6rem;
  color: #333;
  content: "―";
}
.form_block .formArea .formTyp06 .inputBox .column input[type="text"] {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: 1px solid var(--color-brand-black);
  box-sizing: border-box;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1.6rem;
}

.form_block .formArea .formTyp07 {
  width: 100%;
  padding: 0 0 50px;
}
.form_block .formArea .formTyp07 h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 5px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.form_block .formArea .formTyp07 h3.required::after{
  position: absolute;
  right: -40px;
  bottom: 2px;
  background: var(--color-accent-4);
  padding: 2px 6px;
  font-size: 0.9rem;;
  vertical-align: bottom;
  color: var(--color-brand-white);
  border-radius: 3px;
  margin-left: 2px;
  content: "必須";
}
.form_block .formArea .formTyp07 p.small {
  padding: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
}
.form_block .formArea .formTyp07 .inputBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form_block .formArea .formTyp07 .inputBox .column {
  width: 230px;
}
.form_block .formArea .formTyp07 .inputBox input[type="text"] {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: 1px solid var(--color-brand-black);
  box-sizing: border-box;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1.6rem;
}

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

.form_block .formArea .formTyp07 .inputBox.typ02 input[type="text"] {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: 1px solid var(--color-brand-black);
  box-sizing: border-box;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1.6rem;
}

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

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

.form_block .privacyBox {
  width: 100%;
  padding: 20px 0 0;
  border: 1px solid var(--color-black);
  border-radius: 6px;
}

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

.form_block .privacyBox p a {
  font-weight: 700;
  color: var(--color-accent-1);
}

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

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

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

.form_block .formArea .formTyp08 h3.required::after {
    position: absolute;
    right: -40px;
    bottom: 2px;
    background: var(--color-accent-4);
    padding: 2px 6px;
    font-size: 0.9rem;
    vertical-align: bottom;
    color: var(--color-brand-white);
    border-radius: 3px;
    margin-left: 2px;
    content: "必須";
}

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

 .form_block .formArea .formTyp08 .inputBox select {
    -webkit-appearance: none;
  display: block;
  width: 100%;
  max-width: 350px;
  height: 50px;
  padding: 0 10px;
  border: 1px solid var(--color-brand-black);
  box-sizing: border-box;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1.6rem;
  }

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

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

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

 .form_block .text01 p {
    font-size: 1.2rem;
    text-align: left;
  }

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

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

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



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

.addition {
  padding: 0px 20px 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:var(--color-brand-primary);
  overflow: auto;
}

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

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

.period-hero {
  margin: 15px auto;
  color: var(--color-brand-white);
  font-size: 1.6rem;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}

.period-start {
  border-bottom: 1px solid var(--color-brand-white);
  padding-bottom: 20px;
  width: 70%;
}

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

.period-end{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.period-primary{
  background-color: var(--color-brand-white);
  color: var(--color-brand-primary);
  padding: 2px 5px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  width: 7em;
}

.period-general{
  border: 1px solid var(--color-brand-white);
  color: var(--color-brand-white);
  padding: 2px 5px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  width: 7em;
}

.till{
  font-size: 2.5rem;
}

sup{
  font-size: 1rem;
  vertical-align: super;
}

.period-addition{
  color: var(--color-brand-white);
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0 0 20px;
}

.period-addition a{
  color: var(--color-brand-white) !important;
  text-decoration: underline;
}


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

  .spOnly {
    display: block;
  }

  .top-hero {
    background-color:var(--color-brand-primary);
    overflow: auto;
  }

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

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

  .period-hero {
    margin: 15px auto;
    color: var(--color-brand-white);
    font-size: 2rem;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    line-height: 1.3;
    padding: 0 10px;
  }

  .period-start {
    border-right: none;
    border-bottom: 2px solid var(--color-brand-white);
    padding-right: 0;
    padding-bottom: 10px;
    width: 100%;
  }

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

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

  .period-reserve span.number {
    font-size: 2rem;
  }

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

  .period-primary{
    background-color: var(--color-brand-white);
    color: var(--color-brand-primary);
    padding: 2px 2px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
  }

  .period-general{
    border: 1px solid var(--color-brand-white);
    color: var(--color-brand-white);
    padding: 2px 2px;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.3;
  }


  .till {
    font-size: 1.8rem;
  }

  sup{
    font-size: 0.8rem;
    vertical-align: super;
  }

  .period-addition{
    color: var(--color-brand-white);
    font-size: 1.3rem;
    line-height: 1.5;
    margin: 0 0 20px;
    text-align: left;
    padding: 0 10px;
  }
 
}



.schedule_block{
  max-width: 800px;
  margin: 50px auto 30px;
  background: #f1f1f1;
  width: 100%;
}

.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;
  max-width: 800px;
}
.terms_table th {
  background: #F1F1F1;
  border: solid 1px #707070;
  color: var(--color-brand-black);
  padding: 10px 20px;
  font-size:1.8rem;
  line-height:1.6;
}
.terms_table td {
  background: var(--color-brand-white);
  border: solid 1px #707070;
  color: var(--color-brand-black);
  padding: 10px 20px;
  font-size:1.8rem;
  line-height:1.6;
}

.table_bold{
  font-weight:bold;
}

.table_small{
  font-size:1.4rem;
}

.terms_addition{
  max-width: 800px;
  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{
  width: 100%;
  margin: 0 auto;
}

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

.overview_list li span.list_small{
  font-size: 1.5rem;
  font-weight: normal;
  display: inline-block;
  margin: 10px 0 0;
  line-height: 1.4;
}

.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.list_title{
    font-size: 1.6rem;
    font-weight: bold;
    display: inline-block;
  }


  .overview_list li span.list_small{
    font-size: 1.4rem;
    font-weight: normal;
    display: inline-block;
  }
  .overview_list li{
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.6;
    padding: 5px 0;
  }
}

footer a:link{
  color: var(--color-brand-white);
  text-decoration: underline;
}


/* Scene */

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

.scene_image{
	width: 60%;
}

.column{

}

.imgWrap{
	
}

.scene_text{
	width: 40%;
}


.base_wrapper .scene_h3{
  color: var(--color-accent-1);
  text-align: left;
  font-size: 2.5rem;
  margin: 0 0;
  font-weight: 500;
  line-height: 1.6;
  text-transform: none;
  width: 100%;
  background-color: var(--color-brand-white);
  padding: 0;
}

.scene_text p{
	font-size: 1.6rem;
	color: var(--color-black);
	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: var(--color-brand-white);
	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%;
	}

 .base_wrapper .scene_h3{
		color: var(--color-accent-1);
		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: var(--color-black);
    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: var(--color-brand-white);
		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;
  }
}


.ThanksTxt{
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 30px 0 20px;
  text-align: center;
}

.b_back{
  display: block;
  width: 70%;
  max-width: 500px;
  text-align: center;
  margin: 30px auto;
  background-color: var(--color-brand-primary);
  color: var(--color-brand-white) !important;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 20px;
  padding: 12px 10px;
}

.b_back:hover{
  opacity: 0.8;
  text-decoration: none;
}