@charset "utf-8";
/* このファイルはUTF-8のBOMなし(UTF-8N)で保存しています */

/**
 * CSS Information
 * ===============================================================
 *
 * Site URL:  http://
 * File name: module.css
 * Summary:   共通モジュール用スタイル
 * Author:    CrEa., Inc.
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    module
 *     =2    module for javascript
 *
 * ===============================================================
*/

/** =1
 * ========================================
 * module
 * ========================================
 */

.columnWrap {
  /* display: flex;
  flex-wrap: wrap; */
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.columnWrap.justifyCenter {
  justify-content: center;
}
.columnWrap.alignCenter {
  align-items: center;
}

.columnWrap [class*="col"] .linkBtn {
  height: 100%;
}
@media (max-width: 767px) {
  .columnWrap [class*="col"] .linkBtn {
    width: 100%;
  }
}

.columnWrap.hasGap {
  gap: 8px;
}

.columnWrap .col-1 {
  grid-column: span 1;
}
.columnWrap .col-2 {
  grid-column: span 2;
}
.columnWrap .col-3 {
  grid-column: span 3;
}
.columnWrap .col-4 {
  grid-column: span 4;
}
.columnWrap .col-5 {
  grid-column: span 5;
}
.columnWrap .col-6 {
  grid-column: span 6;
}
.columnWrap .col-7 {
  grid-column: span 7;
}
.columnWrap .col-8 {
  grid-column: span 8;
}
.columnWrap .col-9 {
  grid-column: span 9;
}
.columnWrap .col-10 {
  grid-column: span 10;
}
.columnWrap .col-11 {
  grid-column: span 11;
}
.columnWrap .col-12 {
  grid-column: span 12;
}

@media (max-width: 767px) {
  .columnWrap .col-sp-1 {
    grid-column: span 1;
  }
  .columnWrap .col-sp-2 {
    grid-column: span 2;
  }
  .columnWrap .col-sp-3 {
    grid-column: span 3;
  }
  .columnWrap .col-sp-4 {
    grid-column: span 4;
  }
  .columnWrap .col-sp-5 {
    grid-column: span 5;
  }
  .columnWrap .col-sp-6 {
    grid-column: span 6;
  }
  .columnWrap .col-sp-7 {
    grid-column: span 7;
  }
  .columnWrap .col-sp-8 {
    grid-column: span 8;
  }
  .columnWrap .col-sp-9 {
    grid-column: span 9;
  }
  .columnWrap .col-sp-10 {
    grid-column: span 10;
  }
  .columnWrap .col-sp-11 {
    grid-column: span 11;
  }
  .columnWrap .col-sp-12 {
    grid-column: span 12;
  }
}

/* title */
.sectionTitle {
  font-size: clamp(24px, calc(40 / 768 * 100vw), 40px);
  margin-block-end: calc(40 / 40 * 1em);
  font-weight: 700;
  text-align: center;
}
.sectionTitle span {
  font-weight: inherit;
}

/* formBasic */
.formBasic {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding-block: clamp(30px, calc(50 / 768 * 100vw), 50px);
  padding-inline: clamp(20px, calc(60 / 1024 * 100vw), 60px);
  background-color: #fff;
  color: #000;
}
.formBasicItem {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.formBasicItem:not(:first-child) {
  border-top: 1px solid #d9d9d9;
  padding-block-start: 20px;
}
.formBasicLabel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: calc(6 / 14 * 1em);
  color: #2360b2;
  font-weight: bold;
  font-size: clamp(14px, calc(16 / 768 * 100vw), 16px);
}
.formBasicLabel .required {
  padding-block-start: calc(1 / 11 * 1em);
  padding-block-end: calc(2 / 11 * 1em);
  padding-inline: calc(6 / 11 * 1em);
  border-radius: 3px;
  background-color: #e70020;
  color: #fff;
  font-weight: bold;
  font-size: calc(11 / 14 * 1em);
}
.formBasicError {
  display: flex;
  align-items: flex-start;
  column-gap: calc(4 / 12 * 1em);
  color: #e70020;
  font-weight: bold;
  font-size: 12px;
}
.formBasicError [class*="material-symbols-"] {
  position: relative;
  inset-block-start: calc(2 / 12 * 1em);
  font-size: calc(16 / 12 * 1em);
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .l-inner .formBasic {
    margin-inline: calc(50% - 50vw);
  }
}
@media screen and (min-width: 769px) {
  .formBasic {
    border-radius: 20px;
  }
}

/* listButtonForm */
.listButtonForm {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.listButtonForm.orderReversePc {
  flex-direction: row-reverse;
}
.listButtonFormItem {
  width: min(300px, 100%);
}
.listButtonFormItem .btn {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .listButtonForm {
    flex-direction: column;
    align-items: center;
  }
  .listButtonFormItem {
    width: 100%;
  }
}

/* inputGroup */
.inputGroup {
  display: flex;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px #ccc;
  background-color: #fff;
}
.inputGroup input[type="text"],
.inputGroup input[type="password"],
.inputGroup input[type="email"],
.inputGroup input[type="tel"] {
  border-radius: 0;
  box-shadow: none;
}
.inputGroup .inputGroupText {
  display: grid;
  place-items: center;
  padding-inline: calc(12 / 16 * 1em);
  background-color: rgb(from #ccc r g b / 0.25);
  white-space: nowrap;
}
.inputGroup .inputGroupText:not(:first-child) {
  border-inline-start: 1px solid #ccc;
}
.inputGroup .inputGroupText:not(:last-child) {
  border-inline-end: 1px solid #ccc;
}

.inputGroupOptionOther {
  display: flex;
  gap: 8px;
  align-items: center;
}
.inputGroupOptionOther .radioWrap,
.inputGroupOptionOther .checkboxWrap {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .inputGroupOptionOther {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* notice */
.boxNotice {
  padding-block: clamp(20px, calc(40 / 768 * 100vw), 40px);
  padding-inline: clamp(20px, calc(60 / 1024 * 100vw), 60px);
  border-radius: 20px;
  background: #00abd4;
}
.boxNoticeTitle {
  margin-block-end: calc(20 / 24 * 1em);
  font-size: clamp(20px, calc(24 / 768 * 100vw), 24px);
  font-weight: bold;
  text-align: center;
}
/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 768px) {
  .boxNotice {
    margin-inline: calc(-50vw + 50%);
    border-radius: 0;
  }
}

.boxNoticeContent {
  height: 200px;
  overflow-y: auto;
  padding: clamp(20px, calc(30 / 768 * 100vw), 30px);
  border-radius: 10px;
  background-color: #fff;
  color: #000;
  font-size: clamp(14px, calc(16 / 768 * 100vw), 16px);
}
.boxNotice .listNotice {
  font-size: clamp(14px, calc(16 / 768 * 100vw), 16px);
}

.boxNoticeAcceptance {
  margin-block-start: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff666;
  color: #000;
  font-weight: bold;
  text-align: center;
}
.boxNoticeAcceptance .checkboxWrap .text {
  font-weight: bold;
}

/* boxFormThanks */
.boxFormThanks {
  padding-block: clamp(20px, calc(40 / 768 * 100vw), 40px);
  padding-inline: clamp(20px, calc(60 / 1024 * 100vw), 60px);
  border-radius: 20px;
  background-color: #fff;
  color: #000;
}
.boxFormThanksTitle {
  margin-block-end: calc(20 / 24 * 1em);
  font-size: clamp(20px, calc(24 / 768 * 100vw), 24px);
  font-weight: bold;
  text-align: center;
}
.boxFormThanksTitle span {
  font-weight: inherit;
}
.boxFormThanksContent {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .boxFormThanks {
    border-radius: 10px;
  }
  .boxFormThanksContent {
    text-align: initial;
  }
}

/** =2
 * ========================================
 * module for javascript
 * ========================================
 */
.modaal-container {
  border-radius: 20px;
  box-shadow: none;
}
.modaal-content-container {
  padding: 50px 60px 60px;
}

@media screen and (max-width: 768px) {
  .modaal-container {
    border-radius: 10px;
  }
  .modaal-content-container {
    padding: 20px 20px 30px;
  }
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background-color: #003f76;
}
