* {
  box-sizing: border-box !important;
  outline: none;
  touch-action: manipulation;  /* ダブルタップでの拡大防止 */
}
@-ms-viewport {
  width: auto;
}

html {
  -ms-overflow-style: scrollbar;
}
body {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  margin: 0;
  color: #333333;
}

body.no-scroll {
  overflow: hidden;
}

header {
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects;
  /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
  color: #333333;
}

.box-sizing {
  box-sizing: border-box !important;
}

.right-column {
  float: right;
  margin: 3px 0px 0px 0px;
  padding: 0;
  text-align: right;
  width: 70%;
  font-size: 18px;
}

.content {
  width: 100%;
}

#video-wrap {
  position: relative;
  width: 75%;
  margin-top: 5px;
  margin-bottom: 5px;
}

#video-wrap::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

#video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.video-js .vjs-big-play-button {
  font-size: 10em;
  line-height: 1.4em;
  height: 1.5em;
  width: 2em;
}

.vjs-big-play-centered .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-top: -0.75em;
  margin-left: -1em;
}

/* メインタイトル */
h1.left-column {
  position: relative;
  font-size: 18px;
  width: 140px;
  padding: 10px 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0;
}

h1.left-column:before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 5px solid #ff9900;
  border-left-color: transparent;
  border-right-color: transparent;
}

h2 {
  font-size: 18px;
  margin: 0;
}

h3 {
  position: relative;
  margin: 10px 0px -10px;
  font-size: 26px;
  text-align: left;
}

#title-wrap {
  position: relative;
  width: 80%;
}

.fs-title {
  font-size: 28px;
}

/* ここからオンデマンド対応 */
.btn a {
  font-size: 24px;
  font-weight: bold;
  width: 240px;
  display: inline-block;
  padding: 0.5rem 1rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
  border: 2px solid #fff;
  border-radius: 2vh;
}

/*メインメニューのボタンの高さ調整*/
.btn-resize a {
  padding: 1.6rem 1rem;
} 

/*サブメニュー用ボタン*/
.btn--sub {
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  padding: 0.5rem 1.0rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  border: 2px solid #fff;
  border-radius: 2vh;
  margin-bottom: 4px;
}

.btn--red {
  color: #fff;
  background-color: #ff595e;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #f80;
}

.btn--green,
a.btn--green {
  color: #fff;
  background-color: #38b000;
}

.btn--blue,
a.btn--blue {
  color: #fff;
  background-color: #1982c4;
}

.btn--purple,
a.btn--purple {
  color: #fff;
  background-color: #6a4c93;
}

.btn--special,
a.btn--special {
  color: #fff;
  background-color: #DA2206;
}

/*.btn--black,
a.btn--black {
  color: #fff;
  background-color: #000;
}*/

#page_top,
#page_bottom {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 5px;
  bottom: 5px;
  background: #f3de2c;
  /* opacity: 0.6; */
  border-radius: 50%;
  border: 2px solid #22333b;
}
#page_top .page-top-contents,
#page_bottom .page-bottom-contents {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
#page_top .page-top-contents::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 24px;
  color: #22333b;
  width: 24px;
  height: 24px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-bottom: 2px;
}

#page_bottom .page-bottom-contents::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f078';
  font-size: 24px;
  color: #22333b;
  width: 24px;
  height: 24px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
}
.fixed {
  position: fixed;
}
.t0 {
  top: 0px !important;
}
.r0 {
  right: 0px !important;
}
.b0 {
  bottom: 0px !important;
}
.l0 {
  left: 0px !important;
}
.l50per {
  left: 50% !important;
}
.r24 {
  right: 24px !important;
}
.f {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
.fh {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.fclm {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}
.fbw {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.fr {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.fm {
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.flex-fixed {
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  flex-shrink: 0;
}
.bg-red {
  background-color: red;
}
.bg-orange {
  background-color: orange;
}
.bg-green {
  background-color: green;
}
.bg-blue {
  background-color: blue;
}
.bg-purple {
  background-color: purple;
}
.bg-white {
  background-color: white;
}
.bg-white-70 {
  background-color: rgba(255, 255, 255, 70%) !important;
}
.bg-loading {
  background-color: rgb(89, 89, 89) !important;
}
.bg-666 {
  background-color: #666666;
}

.hide {
  display: none;
}
.opacity1 {
  opacity: 1;
}
.opacity0 {
  opacity: 0;
}
.w50per {
  width: 50% !important;
}
.col6 {
  width: 50%;
}
.row {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
}
.border {
  border-style: solid;
  border-width: 1px;
  border-color: var(--border-color);
}
.border-bottom {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-color: var(--border-color);
}
.border-policy {
  border-color: #8faadc !important;
}
.border-white {
  border-color: white !important;
}
.border-orange {
  border-color: #ff9900 !important;
}
.bw2 {
  border-width: 2px;
}
.bw3 {
  border-width: 3px;
}
.bw4 {
  border-width: 4px;
}
.white-space-pre-wrap {
  white-space: pre-wrap;
}
.bold {
  font-weight: bold;
}
.h4 {
  height: 4px;
}
.h24 {
  height: 24px;
}
.h60 {
  height: 60px;
}
.h88 {
  height: 88px;
}
.h100 {
  height: 100px;
}
.h100svh {
  height: 100svh;
}
.h52per {
  height: 52%;
}
.p4 {
  padding: 4px !important;
}
.px4 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}
.px8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.px16 {
  padding-right: 16px !important;
  padding-left: 16px !important;
}
.px20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.mb0-last:last-child {
  margin-bottom: 0 !important;
}
.m0 {
  margin: 0px !important;
}
.mr4 {
  margin-right: 4px !important;
}
.mr8 {
  margin-right: 8px !important;
}
.mb4 {
  margin-bottom: 4px !important;
}
.mb8 {
  margin-bottom: 8px !important;
}
.mb12 {
  margin-bottom: 12px !important;
}
.mb16 {
  margin-bottom: 16px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb24 {
  margin-bottom: 24px !important;
}
.mb28 {
  margin-bottom: 28px !important;
}
.ml8 {
  margin-left: 8px !important;
}
.mta {
  margin-top: auto !important;
}
.block {
  display: block;
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block !important;
}
.text-blue {
  color: blue;
}
.text-white {
  color: white;
}
.text-red {
  color: #ff0000;
}
.text-666 {
  color: #666666;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.bg-blue {
  background-color: rgb(50, 50, 255);
}
.bg-e6e6e6 {
  background-color: #e6e6e6;
}
.bg-0961B9 {
  background-color: #0961b9;
}
.bg-ccc {
  background-color: #eee;
}
.box-shadow {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.s18 {
  height: 18px;
  width: 18px;
}
.s60 {
  height: 60px;
  width: 60px;
}
.s-full {
  height: 100%;
  width: 100%;
}
.h-full {
  height: 100%;
}
.w-full {
  width: 100%;
}
.w80per {
  width: 80%;
}
.w160 {
  width: 160px;
}
.p8 {
  padding: 8px !important;
}
.px8 {
  padding-right: 8px !important;
  padding-left: 8px !important;
}
.px24 {
  padding-right: 24px !important;
  padding-left: 24px !important;
}
.py4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.py8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.py12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.py20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.py32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}
.pt10 {
  padding-top: 10px !important;
}
.pt12 {
  padding-top: 12px !important;
}
.pt20 {
  padding-top: 20px !important;
}
.pt76 {
  padding-top: 76px !important;
}
.pt112 {
  padding-top: 112px !important;
}
.pr4 {
  padding-right: 4px !important;
}
.pr8 {
  padding-right: 8px !important;
}
.pr24 {
  padding-right: 24px !important;
}
.pb1 {
  padding-bottom: 1px !important;
}
.pb4 {
  padding-bottom: 4px !important;
}
.pb10 {
  padding-bottom: 10px !important;
}
.pb12 {
  padding-bottom: 12px !important;
}
.pl4 {
  padding-left: 4px !important;
}
.pl16 {
  padding-left: 16px !important;
}
.py40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.rounded-8 {
  border-radius: 8px !important;
}
.rounded-20 {
  border-radius: 20px !important;
}
.rounded-full {
  border-radius: 9999px;
}
.fs14 {
  font-size: 14px;
}
.fs18 {
  font-size: 18px !important;
}
.fs20 {
  font-size: 20px !important;
}
.fs24 {
  font-size: 24px !important;
}
.fs28 {
  font-size: 28px !important;
}
.max-width-600 {
  max-width: 600px;
}
.fs-text {
  font-size: 24px;
}
.lh10 {
  line-height: 1.0;
}
.yes {
  background: #023e8a;
  border: 1px solid #333;
}
.mxa {
  margin: 0 auto;
}
.cursor-pointer {
  cursor: pointer;
}
.pointer-none {
  pointer-events: none;
}
.transition {
  transition: 128ms;
}
.transition-512 {
  transition: 512ms;
}
.overflow-y-scroll {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}
.text-decoration-underline {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.container-568 {
  max-width: 568px;
  width: 100%;
  margin: 0 auto;
  padding-left: 4px;
  padding-right: 4px;
}
.container-960 {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}
.disabled {
  background-color: #fff;
  opacity: 0.4;
  pointer-events: none; 
  color: rgba(0, 0, 0, 0.4);
}
.tabActive {
  color: #0961b9;
  font-weight: bold;
  pointer-events: none;
}
.z1 {
  z-index: 1;
}
.z100 {
  z-index: 100;
}

/* スマホ横向き対応（幅判定） */
@media screen and (max-width: 800px) {
  .right-column {
    width: 68%;
    font-size: 12px;
    margin: 3px 0px 0px 0px;
  }
  h1.left-column {
    width: 95px;
    font-size: 12px;	/* フォントサイズを小さくする */
  }

  h2 {
    font-size: 14px;
  }
  h3 {
    font-size: 18px;
  }
  .fs-title {
    font-size: 18px;
  }
  .btn a {
    font-size: 18px;
    width: 180px;
    padding: 0.5rem 0.3rem;
    margin-left: 2px;
    margin-right: 2px;
  }
  .btn-resize a {
    padding: 1.3rem 0.3rem;
  }
  .btn--sub {
    font-size: 18px;
    /* width: 80%; */
    padding: 0.5rem;
  }
  .fs-text {
    font-size: 18px;
  }
  .s-fs12 {
    font-size: 12px;
  }
  .s-fs16 {
    font-size: 16px !important;
  }
  .s-fs18 {
    font-size: 18px !important;
  }
  .s-fs20 {
    font-size: 20px !important;
  }
  .s-pt98 {
    padding-top: 98px !important;
  }
  .s-pr8 {
    padding-right: 8px !important;
  }
  .s-pl4 {
    padding-left: 4px !important;
  }
  .s-py28 {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .s-px0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .s-px4 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .s-px12 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
  .s-container-400 {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    padding-left: 4px;
    padding-right: 4px;
  }
  .m-h74 {
    height: 74px !important;
  }
  .s-fs12 {
    font-size: 12px !important;
  }
  .s-fs14 {
    font-size: 14px !important;
  }
  .s-text-left {
    text-align: start !important;
  }
  .s-s48 {
    height: 48px;
    width: 48px;
  }
  .s-w80per {
    width: 80% !important;
  }
  .s-mb20 {
    margin-bottom: 20 !important;
  }
}

/* スマホ横向き対応（高さ判定） */
@media screen and (max-height: 400px) {
  #video-wrap {
    position: relative;
    width: 65%;
  }
  .fs-title {
    font-size: 12px;
  }
  h3 {
    font-size: 12px;
  }
  .fs-text {
    font-size: 12px;
  }
}

/* スマホ縦向き対応（幅判定） */
@media screen and (max-width: 400px) {
  #video-wrap {
    position: relative;
    width: 95%;
  }
  h2 {
    font-size: 14px;
  }
  h3 {
    font-size: 18px;
  }
  .fs-title {
    font-size: 18px;
  }
  .btn a {
    font-size: 14px;
    width: 150px;
    padding: 0.3rem;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 1px;
    margin-right: 1px;
  }
  .btn-resize a {
    padding: 0.9rem 0.3rem;
  }
  .btn--sub {
    font-size: 14px;
  }
  .s-h56 {
    height: 56px !important;
  }
}
