/*
* 基本スタイル
* ┗共通スタイル
* ヘッダー
* ┗グローバルナビゲーション
* フッター
* 汎用
* パーツ
*/
/* LESS Document */
html {
  text-size-adjust: 100%;
  font-size: 62.5%;
  width: 100%;
  scroll-behavior: auto;
  scroll-padding-top: 82px;
}
@media (width <= 1023px) {
  html {
    scroll-padding-top: 60px;
  }
}
@media (width <= 850px) {
  html {
    min-width: 320px;
  }
}
body {
  font-family: "Noto Sans JP", "游ゴシック", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  color: #2b2c30;
  font-size: 1.8rem;
  font-feature-settings: "palt";
}
@media (width <= 850px) {
  body {
    font-size: 3.6vw;
  }
}
p {
  margin-bottom: 1em;
}
p:nth-last-child(1) {
  margin-bottom: 0;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  clear: both;
  border: none;
  border-top: #999 1px dotted;
  margin: 30px 0;
}
/* -------------------------------- テーブル */
table {
  margin: 0;
}
table th {
  border: #0F218B 1px solid;
  background: rgba(15, 33, 139, 0.1);
  text-align: center;
  padding: 5px 15px;
  color: #0F218B;
  font-weight: 400;
}
table td {
  border: #0F218B 1px solid;
  text-align: right;
  padding: 5px 15px;
}
@media (width <= 850px) {
  .tableWrap {
    overflow: auto;
    white-space: nowrap;
  }
  .tableWrap::-webkit-scrollbar {
    background: #CCC;
    width: 15px;
    height: 15px;
    border-radius: 15px;
  }
  .tableWrap::-webkit-scrollbar-thumb {
    background: #0F218B;
    border-radius: 15px;
  }
  table.tableResponsive thead {
    display: none;
  }
  table.tableResponsive th {
    display: block;
  }
  table.tableResponsive tr {
    display: block;
    margin-top: 10px;
  }
  table.tableResponsive td {
    display: block;
    border-top: none;
  }
  table.tableResponsive td::before {
    content: attr(aria-label);
    display: inline-block;
    width: 50px;
  }
}
/* -------------------------------- リスト */
.listDisc_01 {
  padding: 0 0 0 2rem;
  list-style: disc;
}
.listDisc_01 li::marker {
  color: #DDD;
}
.listDisc_01 li:not(:last-child) {
  margin: 0 0 5px;
}
.listDisc_02 {
  padding: 0 0 0 2rem;
}
.listDisc_02 li::before {
  content: '\f0da';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
}
.listDisc_03 {
  padding: 0 0 0 1.5rem;
}
.listDisc_03 li:not(:last-child) {
  margin: 0 0 0;
}
.listDisc_03 li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #0F218B;
  margin-right: -8px;
  font-size: 1rem;
  text-align: center;
  vertical-align: 2px;
  position: relative;
  left: -12px;
}
.listDecimal_01 {
  list-style: decimal;
  padding-left: 25px;
}
.listDecimal_01 > li {
  text-indent: 0;
}
.listDecimal_02 {
  padding: 0 0 0 2.5rem;
}
.listDecimal_02 > li {
  counter-increment: number;
  margin-bottom: 10px;
}
.listDecimal_02 > li::before {
  content: '(' counter(number) ') ';
  display: inline-block;
  width: 2.5rem;
  margin: 0 0 0 -2.5rem;
}
/* -------------------------------- 定義リスト */
/* dlリスト
dl_01…PC横並び、SP以下改行
dl_02…PC、SP共に横並びリスト
*/
.dlList_01 > div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
}
.dlList_01 > div dt {
  min-width: 0;
}
.dlList_01 > div dd {
  flex: 1;
}
@media (width <= 850px) {
  .dlList_01 > div {
    display: block;
  }
  .dlList_01 > div dt {
    width: 100%;
    padding: 8px 0 2px;
  }
  .dlList_01 > div dd {
    width: 100%;
    padding: 2px 0 8px;
  }
  .dlList_01 > div dd:nth-of-type(n+2) {
    border: none;
  }
}
.dlList_01.dlBorder > div {
  border-bottom: #666 1px dotted;
}
.dlList_02 > div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
}
.dlList_02 > div dt {
  min-width: 0;
}
.dlList_02 > div dd {
  flex: 1;
}
/*+++++++++++++++++++++++++++++++++++++++++++
  共通スタイル
+++++++++++++++++++++++++++++++++++++++++++ */
.inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media (width <= 850px) {
  .inner {
    width: auto;
    padding: 0 20px;
  }
}
#mainSkip {
  display: block;
  border-radius: 0 0 10px 10px;
  background: #FFF;
  position: absolute;
  top: -50px;
  left: 10px;
  text-decoration: none;
  transition: 0.2s;
}
#mainSkip:focus {
  top: 0;
}
main {
  padding: 82px 0 0;
}
@media (width <= 850px) {
  main {
    padding-top: 60px;
  }
}
section {
  padding: 80px 0;
}
section hgroup {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  flex-direction: column-reverse;
  align-items: center;
  margin: 0 0 80px;
}
@media (width <= 850px) {
  section hgroup {
    margin-bottom: 40px;
  }
}
section hgroup h2 {
  font-size: 4.9rem;
}
@media (width <= 850px) {
  section hgroup h2 {
    font-size: 8vw;
  }
}
section hgroup p {
  font-family: 'Roboto', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0F218B;
}
@media (width <= 850px) {
  section hgroup p {
    font-size: 4.8vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
  mv
+++++++++++++++++++++++++++++++++++++++++++ */
.mv {
  height: 580px;
  background: linear-gradient(to top, #D8DCF2, #FBFCFF);
}
@media (width <= 850px) {
  .mv {
    height: auto;
  }
}
.mv_inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 60px;
  padding-left: clamp(1px, 52vw, 740px);
  position: relative;
}
@media (width <= 1200px) {
  .mv_inner {
    padding-left: 45vw;
  }
}
@media (width <= 850px) {
  .mv_inner {
    gap: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    padding: 10px 10px 30px;
  }
  .mv_inner.ai_fs {
    align-items: flex-start;
  }
  .mv_inner.ai_c {
    align-items: center;
  }
  .mv_inner.ai_fe {
    align-items: flex-end;
  }
  .mv_inner.jc_fs {
    justify-content: flex-start;
  }
  .mv_inner.jc_c {
    justify-content: center;
  }
  .mv_inner .flexText {
    flex: 1;
  }
  .mv_inner .flexImg {
    text-align: center;
  }
  .mv_inner .flexRight {
    order: 1;
  }
}
@media (width <= 850px) and (width <= 850px) {
  .mv_inner.sp_column {
    flex-direction: column;
  }
  .mv_inner.sp_column .flexText {
    display: contents;
  }
  .mv_inner.sp_column .flexText hgroup,
  .mv_inner.sp_column .flexText h2,
  .mv_inner.sp_column .flexText h3,
  .mv_inner.sp_column .flexText h4 {
    order: -2;
  }
  .mv_inner.sp_column .flexImg {
    order: -1;
  }
  .mv_inner.sp_block {
    display: block;
  }
}
.mv_inner_text {
  font-weight: 400;
  order: 1;
}
.mv_inner_text_caption {
  margin: 0 0 25px;
  font-size: clamp(1px, 6.4vw, 6.4rem);
  font-weight: bold;
}
@media (width <= 850px) {
  .mv_inner_text_caption {
    font-size: 9.6vw;
  }
}
.mv_inner_text_caption strong {
  color: #0F218B;
  font-weight: 900;
}
.mv_inner_text p {
  margin-bottom: 10px;
}
.mv_inner_text ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 5px 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 0 35px;
}
.mv_inner_text ul li i {
  color: #0F218B;
}
@media (width <= 850px) {
  .mv_inner_text .btn {
    text-align: center;
  }
}
.mv_inner_text .btn a {
  max-width: 410px;
  min-height: 54px;
  font-size: 2rem;
}
.mv_inner img {
  max-width: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(calc(-100% - 30px));
}
@media (width <= 850px) {
  .mv_inner img {
    display: none;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
  features
+++++++++++++++++++++++++++++++++++++++++++ */
.featuresArea .featuresColumn {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
}
@media (width <= 850px) {
  .featuresArea .featuresColumn {
    flex-direction: column;
  }
}
.featuresArea .featuresColumn .columnItem {
  flex-basis: 100%;
  min-height: 450px;
  padding: 0 40px;
}
@media (width <= 850px) {
  .featuresArea .featuresColumn .columnItem {
    min-height: 0;
    padding: 0 20px 20px;
  }
}
.featuresArea .featuresColumn .columnItem:not(:first-child) {
  border-left: #0F218B 3px solid;
}
@media (width <= 850px) {
  .featuresArea .featuresColumn .columnItem:not(:first-child) {
    border-left: none;
    border-top: #0F218B 3px solid;
  }
}
.featuresArea .featuresColumn .columnItem .featuresNum {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  font-size: 12rem;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  color: #0F218B;
}
@media (width <= 850px) {
  .featuresArea .featuresColumn .columnItem .featuresNum {
    min-height: 0;
    font-size: 24vw;
  }
}
.featuresArea .featuresColumn .columnItem h3 {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  margin: 0 0 15px;
  text-align: center;
  font-size: 2.8rem;
}
@media (width <= 850px) {
  .featuresArea .featuresColumn .columnItem h3 {
    font-size: 5.6vw;
  }
}
.featuresArea .featuresColumn .columnItem i {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  margin: 0 auto 20px;
  text-align: center;
  font-size: 8rem;
  color: #0F218B;
}
@media (width <= 850px) {
  .featuresArea .featuresColumn .columnItem i {
    min-height: auto;
    font-size: 16vw;
  }
}
.featuresArea .featuresColumn .columnItem p {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (width <= 850px) {
  .featuresArea .featuresColumn .columnItem p {
    font-size: 3.6vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
  service
+++++++++++++++++++++++++++++++++++++++++++ */
.serviceArea {
  background: rgba(15, 33, 139, 0.04);
}
.serviceArea .columnBox .columnItem {
  max-width: 320px;
  padding: 20px;
  text-align: center;
  background: #FFF;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
@media (width <= 850px) {
  .serviceArea .columnBox .columnItem {
    max-width: none;
    width: 100%;
    margin: 0 auto;
  }
}
.serviceArea .columnBox .columnItem h3 {
  margin: 0 0 7px;
  font-size: 3.2rem;
  font-weight: 900;
  color: #0F218B;
}
@media (width <= 850px) {
  .serviceArea .columnBox .columnItem h3 {
    font-size: 6.4vw;
  }
}
.serviceArea .columnBox .columnItem figure {
  margin: 0 0 15px;
}
.serviceArea .columnBox .columnItem figure figcaption {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (width <= 850px) {
  .serviceArea .columnBox .columnItem figure figcaption {
    font-size: 3.6vw;
  }
}
.serviceArea .columnBox .columnItem figure img {
  min-height: 246px;
  object-fit: contain;
  object-position: center center;
}
/*+++++++++++++++++++++++++++++++++++++++++++
  example
+++++++++++++++++++++++++++++++++++++++++++ */
.exampleArea hgroup {
  margin: 0 0 50px;
}
.exampleArea .box {
  margin: 0 0 50px;
  padding: 30px 45px;
  text-align: center;
}
@media (width <= 850px) {
  .exampleArea .box {
    padding: 30px 20px;
  }
}
.exampleArea .box h3 {
  margin: 0 0 15px;
  font-size: 3.6rem;
  font-weight: 900;
  color: #0F218B;
}
@media (width <= 850px) {
  .exampleArea .box h3 {
    font-size: 7.2vw;
  }
}
.exampleArea .box h3 + p {
  font-size: 3.2rem;
  font-weight: 900;
}
@media (width <= 850px) {
  .exampleArea .box h3 + p {
    font-size: 4.8vw;
  }
}
.exampleArea .box figure {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}
@media (width <= 850px) {
  .exampleArea .box figure {
    margin-bottom: 20px;
  }
}
.exampleArea .box figure figcaption {
  min-height: 26px;
  font-weight: bold;
}
.exampleArea .box figure.nocaption {
  padding-top: 26px;
}
@media (width <= 850px) {
  .exampleArea .box figure.nocaption {
    padding-top: 0;
  }
}
.exampleArea .box .exampleColumn {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
}
@media (width <= 1023px) {
  .exampleArea .box .exampleColumn {
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
  }
}
.exampleArea .box .exampleColumn_right {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  max-width: 580px;
  width: 100%;
}
@media (width <= 850px) {
  .exampleArea .box .exampleColumn_right {
    flex-direction: column;
  }
}
.exampleArea .box .exampleColumn_right table {
  margin: 0 auto;
}
.exampleArea .box .exampleColumn_right_before {
  position: relative;
}
@media (width <= 850px) {
  .exampleArea .box .exampleColumn_right_before {
    padding-bottom: 100px;
  }
}
.exampleArea .box .exampleColumn_right_before::after {
  content: '\f30b';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  font-size: 6.4rem;
  color: #0F218B;
  position: absolute;
  top: 100px;
  right: -82px;
}
@media (width <= 850px) {
  .exampleArea .box .exampleColumn_right_before::after {
    text-align: center;
    content: '\f309';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    top: auto;
    bottom: 0px;
    left: 0;
    right: 0;
  }
}
.exampleArea .box .exampleColumn_right_after figure figcaption {
  color: #0F218B;
}
.exampleArea .box .exampleColumn_right_after table td {
  font-weight: bold;
  color: #0F218B;
}
/*+++++++++++++++++++++++++++++++++++++++++++
  cta
+++++++++++++++++++++++++++++++++++++++++++ */
.ctaArea {
  min-height: 330px;
  background: #0F218B;
}
@media (width <= 850px) {
  .ctaArea {
    min-height: 0;
  }
}
.ctaArea .inner {
  padding: 100px 0 50px;
  position: relative;
}
@media (width <= 850px) {
  .ctaArea .inner {
    padding: 50px 20px;
  }
}
.ctaArea .inner::before {
  display: block;
  content: '\f1ec';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  font-size: 24.7rem;
  transform: rotate(-15deg);
  transform-origin: center center;
  position: absolute;
  top: 0;
  left: 60px;
}
@media (width <= 850px) {
  .ctaArea .inner::before {
    font-size: 40vw;
  }
}
.ctaArea .inner .ctaText {
  text-align: center;
  color: #FFF;
  font-size: 3.6rem;
  font-weight: 900;
}
@media (width <= 850px) {
  .ctaArea .inner .ctaText {
    font-size: 7.2vw;
  }
}
.ctaArea .inner .btn {
  text-align: center;
}
.ctaArea .inner .btn a {
  max-width: 410px;
  min-height: 54px;
  font-size: 2rem;
}
@media (width <= 850px) {
  .ctaArea .inner .btn a {
    max-width: 100%;
    font-size: 4vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
  scope
+++++++++++++++++++++++++++++++++++++++++++ */
.scopeArea h3 {
  margin: 35px 0 30px;
  font-size: 2.4rem;
}
@media (width <= 850px) {
  .scopeArea h3 {
    margin: 10px 0 10px;
    font-size: 4.8vw;
  }
}
.scopeArea .js-tabs .tabs__btn {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 120px;
  justify-content: center;
  margin: 0 auto;
  border-bottom: #0F218B 6px solid;
}
@media (width <= 850px) {
  .scopeArea .js-tabs .tabs__btn {
    gap: 10px;
  }
}
.scopeArea .js-tabs .tabs__btn button {
  flex-basis: 334px;
  min-height: 66px;
  background: #EEE;
  color: #666;
  border: none;
  border-radius: 10px 10px 0 0;
  font-size: 2.4rem;
  font-weight: bold;
  cursor: pointer;
}
@media (width <= 850px) {
  .scopeArea .js-tabs .tabs__btn button {
    min-height: 15vw;
    font-size: 3.6vw;
  }
}
.scopeArea .js-tabs .tabs__btn button.is-active {
  background: #0F218B;
  color: #FFF;
  pointer-events: none;
}
.scopeArea .js-tabs .tabs__btn button:hover {
  opacity: 0.7;
}
.scopeArea .js-tabs .tabs__panel {
  padding: 60px 10px 20px;
  background: #FFF;
}
@media (width <= 850px) {
  .scopeArea .js-tabs .tabs__panel {
    padding: 30px 10px 0;
  }
}
.scopeArea .js-tabs .tabs__panel p {
  margin-bottom: 5px;
  font-weight: bold;
}
.scopeArea .js-tabs .tabs__panel figure {
  gap: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  max-width: 220px;
  width: 100%;
  height: 220px;
  padding: 5px;
  background: #FFF;
  border: #CCC 1px solid;
  overflow: hidden;
}
.scopeArea .js-tabs .tabs__panel figure.ai_fs {
  align-items: flex-start;
}
.scopeArea .js-tabs .tabs__panel figure.ai_c {
  align-items: center;
}
.scopeArea .js-tabs .tabs__panel figure.ai_fe {
  align-items: flex-end;
}
.scopeArea .js-tabs .tabs__panel figure.jc_fs {
  justify-content: flex-start;
}
.scopeArea .js-tabs .tabs__panel figure.jc_c {
  justify-content: center;
}
.scopeArea .js-tabs .tabs__panel figure .flexText {
  flex: 1;
}
.scopeArea .js-tabs .tabs__panel figure .flexImg {
  text-align: center;
}
.scopeArea .js-tabs .tabs__panel figure .flexRight {
  order: 1;
}
@media (width <= 850px) {
  .scopeArea .js-tabs .tabs__panel figure.sp_column {
    flex-direction: column;
  }
  .scopeArea .js-tabs .tabs__panel figure.sp_column .flexText {
    display: contents;
  }
  .scopeArea .js-tabs .tabs__panel figure.sp_column .flexText hgroup,
  .scopeArea .js-tabs .tabs__panel figure.sp_column .flexText h2,
  .scopeArea .js-tabs .tabs__panel figure.sp_column .flexText h3,
  .scopeArea .js-tabs .tabs__panel figure.sp_column .flexText h4 {
    order: -2;
  }
  .scopeArea .js-tabs .tabs__panel figure.sp_column .flexImg {
    order: -1;
  }
  .scopeArea .js-tabs .tabs__panel figure.sp_block {
    display: block;
  }
}
@media (width <= 850px) {
  .scopeArea .js-tabs .tabs__panel figure {
    max-width: none;
    height: 40vw;
  }
}
.scopeArea .js-tabs .tabs__panel figure img {
  object-fit: contain;
  object-position: center center;
}
.scopeArea .js-tabs .tabs__panel .scopeProducts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px 10px;
}
@media (width <= 1023px) {
  .scopeArea .js-tabs .tabs__panel .scopeProducts {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width <= 850px) {
  .scopeArea .js-tabs .tabs__panel .scopeProducts {
    grid-template-columns: repeat(2, 1fr);
  }
}
.scopeArea .js-tabs .tabs__panel .scopeProducts a {
  min-width: 0;
  text-decoration: none;
  font-size: 1.6rem;
}
@media (width <= 850px) {
  .scopeArea .js-tabs .tabs__panel .scopeProducts a {
    font-size: 3.2vw;
  }
}
.scopeArea .js-tabs .tabs__panel .scopeProducts a:hover img {
  opacity: 1;
  transform: scale(1.2);
}
.scopeArea dl {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 25px;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (width <= 850px) {
  .scopeArea dl {
    gap: 10px;
    flex-direction: column;
  }
}
.scopeArea dl dt {
  flex: 0 0 252px;
  padding: 5px 24px;
  border-radius: 50px;
  background: rgba(15, 33, 139, 0.1);
  color: #0F218B;
  font-weight: bold;
}
@media (width <= 850px) {
  .scopeArea dl dt {
    flex-basis: auto;
  }
}
.scopeArea dl dd {
  flex-basis: calc((100% - 252px) - 25px);
  padding: 5px 0;
  font-weight: 400;
}
@media (width <= 850px) {
  .scopeArea dl dd {
    flex-basis: 100%;
    margin: 0 0 30px;
  }
}
.scopeArea dl dd ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 10px 30px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
/*+++++++++++++++++++++++++++++++++++++++++++
  howto
+++++++++++++++++++++++++++++++++++++++++++ */
.howtoArea {
  background: rgba(15, 33, 139, 0.04);
}
.howtoArea .flex {
  gap: 40px;
}
@media (width <= 850px) {
  .howtoArea .flex {
    gap: 10px;
  }
}
.howtoArea .flex:not(:last-child) {
  margin: 0 0 95px;
}
@media (width <= 850px) {
  .howtoArea .flex:not(:last-child) {
    margin-bottom: 50px;
  }
}
.howtoArea .flex:nth-last-of-type(1) {
  margin-bottom: 0;
}
.howtoArea .flex .flexText .stepNum {
  display: inline-block;
  height: 45px;
  margin: 0 0 10px;
  padding: 0 15px;
  line-height: 1.1;
  background: #0F218B;
  border-radius: 100px;
  color: #FFF;
  font-size: 4.2rem;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
}
@media (width <= 850px) {
  .howtoArea .flex .flexText .stepNum {
    order: -3;
    height: auto;
    margin-bottom: 0;
    font-size: 8.4vw;
    text-align: center;
  }
}
.howtoArea .flex .flexText h3 {
  margin: 0 0 10px;
  font-size: 3.6rem;
}
@media (width <= 850px) {
  .howtoArea .flex .flexText h3 {
    font-size: 7.2vw;
  }
}
.howtoArea .flex .flexText p {
  line-height: 1.8;
}
/*+++++++++++++++++++++++++++++++++++++++++++
  faq
+++++++++++++++++++++++++++++++++++++++++++ */
.faqArea .faqItem {
  border-bottom: #CCC 1px solid;
}
.faqArea .faqItem:nth-of-type(1) {
  border-top: #CCC 1px solid;
}
.faqArea .faqItem .faqTitle button {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.8rem;
  font-weight: 400;
  cursor: pointer;
}
@media (width <= 850px) {
  .faqArea .faqItem .faqTitle button {
    padding: 10px 0;
    font-size: 3.6vw;
  }
}
.faqArea .faqItem .faqTitle button.is-open::after {
  transform: rotate(180deg);
}
.faqArea .faqItem .faqTitle button::after {
  content: '\f078';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  color: #0F218B;
  align-self: center;
}
@media (hover: hover) and (pointer: fine) {
  .faqArea .faqItem .faqTitle button:hover {
    color: #0F218B;
  }
}
.faqArea .faqItem .faqContent {
  padding: 20px;
}
@media (width <= 850px) {
  .faqArea .faqItem .faqContent {
    padding: 20px 0;
  }
}
.faqArea .faqItem .faqContent .faqList dt {
  padding: 10px 10px 10px 30px;
  font-weight: bold;
  background: #f7f7f7;
  text-indent: -1em;
}
@media (width <= 850px) {
  .faqArea .faqItem .faqContent .faqList dt {
    padding-left: 20px;
  }
}
.faqArea .faqItem .faqContent .faqList dd {
  padding: 15px 10px 30px 30px;
  font-weight: 400;
  text-indent: -1em;
}
@media (width <= 850px) {
  .faqArea .faqItem .faqContent .faqList dd {
    padding-left: 20px;
  }
}
.faqArea .inquiryText {
  margin: 65px 0 0;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}
/*+++++++++++++++++++++++++++++++++++++++++++
  ヘッダー
+++++++++++++++++++++++++++++++++++++++++++ */
header {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 82px;
  padding: 5px 30px;
  background: #FFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 10;
}
@media (width <= 1312px) {
  header {
    padding: 5px 10px;
  }
}
@media (width <= 850px) {
  header {
    height: 60px;
  }
}
@media (width <= 850px) {
  header::before {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: #FFF;
    z-index: 1;
  }
}
header h1 a {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 4px 12px;
  align-items: center;
  font-size: 2rem;
  font-weight: 900;
  text-decoration: none;
  color: #2b2c30;
}
@media (851px <= width <= 1312px) {
  header h1 a {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (width <= 850px) {
  header h1 a {
    gap: 0 8px;
    font-size: clamp(1px, 4vw, 2rem);
    position: relative;
    z-index: 2;
  }
}
header h1 a:hover img {
  opacity: 1;
}
header h1 a img {
  order: -1;
}
@media (width <= 850px) {
  header h1 a img {
    max-width: 126px;
    width: 25vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
  グローバルナビゲーション
+++++++++++++++++++++++++++++++++++++++++++ */
@media (width <= 850px) {
  #gNav {
    width: 100%;
    min-width: 0;
    z-index: -1;
  }
}
#gNav .drawer-menu {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 4px 20px;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 1200px) {
  #gNav .drawer-menu {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
}
@media (width <= 850px) {
  #gNav .drawer-menu {
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px;
    background: #EEE;
    gap: 0;
  }
}
#gNav ul {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
@media (width <= 850px) {
  #gNav ul {
    display: block;
    width: 100%;
  }
}
@media (width <= 850px) {
  #gNav ul li {
    margin: 0 0 10px;
  }
}
#gNav ul li a {
  display: block;
  padding: 5px 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: #2b2c30;
  text-decoration: none;
  border-bottom: transparent 3px solid;
}
@media (width <= 850px) {
  #gNav ul li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    background: #FFF;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
  }
}
#gNav ul li a:hover {
  color: #0F218B;
}
#gNav ul li a.current {
  border-bottom: #FFCD00 3px solid;
  pointer-events: none;
}
@media (width <= 850px) {
  #gNav ul li a.current {
    border: none;
    background: #FFCD00;
  }
}
#gNav .btn {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 14px;
}
@media (width <= 850px) {
  #gNav .btn {
    width: 80%;
    align-self: center;
  }
}
#gNav .btn a {
  max-width: none;
  width: 124px;
  padding: 5px;
  gap: 5px;
}
@media (width <= 1200px) {
  #gNav .btn a {
    min-height: 26px;
  }
}
@media (width <= 850px) {
  #gNav .btn a {
    width: 100%;
  }
}
#gNav .btn a.login {
  background: #0F218B;
  color: #FFF;
  box-shadow: 0 3px 0 #0a165d;
}
@media (width <= 850px) {
  #gNav .btn a {
    max-width: none;
    width: 100%;
    padding: 20px 0;
    font-size: 1.6rem;
  }
}
/* +++++++++++++++++++++++++++++++++++++++++++ drawer */
@media (width <= 850px) {
  .drawer--top.drawer-open {
    overflow: visible!important;
  }
  .drawer--top.drawer-open .drawer-hamburger {
    top: 0 !important;
  }
  .drawer--top.drawer-open .drawer-nav {
    top: 60px !important;
  }
  .drawer--top .drawer-overlay {
    display: none!important;
  }
}
header .drawer-toggle {
  display: none;
}
@media (width <= 850px) {
  header .drawer-toggle {
    display: block;
  }
}
@media (width <= 850px) {
  header .drawer-nav {
    z-index: 100;
    position: fixed;
    width: 100%;
  }
  header .drawer-nav .drawer-menu {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  header .drawer-hamburger {
    background: none;
    z-index: 10000;
    width: 3rem;
    padding: 18px 15px 40px;
  }
  header .drawer-hamburger .drawer-text {
    white-space: nowrap;
    color: #0F218B;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1.2rem;
  }
  header .drawer-hamburger:hover {
    background: none;
  }
  header .drawer-hamburger-icon {
    margin: 0;
    position: relative;
    top: 10px;
    background: #0F218B;
    height: 4px;
  }
  header .drawer-hamburger-icon::before,
  header .drawer-hamburger-icon::after {
    background: #0F218B;
    height: 4px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
  フッター
+++++++++++++++++++++++++++++++++++++++++++ */
footer {
  background: #F5F5F5;
}
footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 55px;
  padding: 70px 0;
}
@media (width <= 850px) {
  footer .inner {
    flex-direction: column;
    padding: 30px 10px;
  }
}
footer .inner h2 {
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: #999 1px solid;
}
footer .inner p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media (width <= 850px) {
  footer .inner p {
    font-size: 2.8vw;
  }
}
footer .inner a[href^="tel:"] {
  font-size: 2.2rem;
  font-weight: bold;
}
@media (width <= 850px) {
  footer .inner a[href^="tel:"] {
    font-size: 4.4vw;
  }
}
footer .inner .footerLeft ul {
  margin: 0 0 50px;
}
footer .inner .footerLeft ul li {
  margin: 0 0 5px;
  font-size: 1.4rem;
  font-weight: bold;
}
@media (width <= 850px) {
  footer .inner .footerLeft ul li {
    font-size: 2.8vw;
  }
}
footer .inner .footerLeft ul li a {
  text-decoration: none;
}
footer .inner .footerLeft ul li a:hover {
  text-decoration: underline;
}
footer .inner .footerRight {
  flex: 0 0 297px;
}
@media (width <= 850px) {
  footer .inner .footerRight {
    flex-basis: auto;
  }
}
footer .inner .footerRight ul li {
  margin: 0 0 10px;
  font-size: 1.4rem;
}
@media (width <= 850px) {
  footer .inner .footerRight ul li {
    font-size: 2.8vw;
  }
}
footer .inner .footerRight ul li a {
  text-decoration: none;
  color: #2b2c30;
}
footer .inner .footerRight ul li a:hover {
  text-decoration: underline;
}
footer small {
  display: block;
  padding: 15px;
  background: #333;
  color: #FFF;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
}
@media (width <= 850px) {
  footer small {
    font-size: 2.6vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
  リンク
+++++++++++++++++++++++++++++++++++++++++++ */
a {
  color: #0F218B;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-skip-ink: none;
}
a:focus {
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
    transition: all 0.3s ease;
  }
}
a:active {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover img {
  opacity: 0.7;
  transition: all 0.3s ease;
}
a:hover img.noOpacity {
  opacity: 1;
}
a[href$=".pdf"]::after {
  display: inline;
  margin-left: 3px;
  color: #E40000;
  content: '\f1c1';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  font-weight: 400;
}
a[href$=".pdf"]:has(img)::after {
  content: none;
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
  cursor: text;
  color: inherit;
}
@media (width <= 850px) {
  a[href^="tel:"] {
    pointer-events: auto;
    text-decoration: underline;
    cursor: pointer;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ error */
.err {
  background-color: #FCC !important;
}
.error {
  color: #F00;
}
/*+++++++++++++++++++++++++++++++++++++++++++
  汎用
+++++++++++++++++++++++++++++++++++++++++++ */
.clear {
  clear: both;
}
.texCenter {
  text-align: center!important;
}
.texLeft {
  text-align: left!important;
}
.texRight {
  text-align: right!important;
}
@media (width <= 850px) {
  .texCenter_sp {
    text-align: center!important;
  }
  .texLeft_sp {
    text-align: left!important;
  }
  .texRight_sp {
    text-align: right!important;
  }
}
.weightNormal {
  font-weight: 500!important;
}
.weightBold {
  font-weight: bold!important;
}
.borderNone {
  border: none!important;
}
.overflowHidden {
  overflow: hidden;
}
.lineHeight20 {
  line-height: 2;
}
.lineHeight19 {
  line-height: 1.9;
}
.lineHeight18 {
  line-height: 1.8;
}
.lineHeight17 {
  line-height: 1.7;
}
.lineHeight16 {
  line-height: 1.6;
}
.lineHeight15 {
  line-height: 1.5;
}
.lineHeight14 {
  line-height: 1.4;
}
.lineHeight13 {
  line-height: 1.3;
}
.lineHeight12 {
  line-height: 1.2;
}
.iBlock {
  display: inline-block;
}
.inline {
  display: inline;
}
/*+++++++++++++++++++++++++++++++++++++++++++
  color
+++++++++++++++++++++++++++++++++++++++++++ */
.colorRed {
  color: #EA0000;
}
.colorBlue {
  color: #0F218B;
}
/*+++++++++++++++++++++++++++++++++++++++++++
    font-size
+++++++++++++++++++++++++++++++++++++++++++*/
/* PC用（rem） */
.fs10 {
  font-size: 1rem !important;
}
.fs12 {
  font-size: 1.2rem !important;
}
.fs14 {
  font-size: 1.4rem !important;
}
.fs16 {
  font-size: 1.6rem !important;
}
.fs18 {
  font-size: 1.8rem !important;
}
.fs20 {
  font-size: 2rem !important;
}
.fs22 {
  font-size: 2.2rem !important;
}
.fs24 {
  font-size: 2.4rem !important;
}
.fs26 {
  font-size: 2.6rem !important;
}
.fs28 {
  font-size: 2.8rem !important;
}
.fs30 {
  font-size: 3rem !important;
}
.fs32 {
  font-size: 3.2rem !important;
}
.fs34 {
  font-size: 3.4rem !important;
}
.fs36 {
  font-size: 3.6rem !important;
}
.fs38 {
  font-size: 3.8rem !important;
}
.fs40 {
  font-size: 4rem !important;
}
.fs42 {
  font-size: 4.2rem !important;
}
.fs44 {
  font-size: 4.4rem !important;
}
.fs46 {
  font-size: 4.6rem !important;
}
.fs48 {
  font-size: 4.8rem !important;
}
/* SP用（MEDIA内で出力） */
@media (width <= 850px) {
  .fs10 {
    font-size: 2vw !important;
  }
  .fs12 {
    font-size: 2.4vw !important;
  }
  .fs14 {
    font-size: 2.8vw !important;
  }
  .fs16 {
    font-size: 3.2vw !important;
  }
  .fs18 {
    font-size: 3.6vw !important;
  }
  .fs20 {
    font-size: 4vw !important;
  }
  .fs22 {
    font-size: 4.4vw !important;
  }
  .fs24 {
    font-size: 4.8vw !important;
  }
  .fs26 {
    font-size: 5.2vw !important;
  }
  .fs28 {
    font-size: 5.6vw !important;
  }
  .fs30 {
    font-size: 6vw !important;
  }
  .fs32 {
    font-size: 6.4vw !important;
  }
  .fs34 {
    font-size: 6.8vw !important;
  }
  .fs36 {
    font-size: 7.2vw !important;
  }
  .fs38 {
    font-size: 7.6vw !important;
  }
  .fs40 {
    font-size: 8vw !important;
  }
  .fs42 {
    font-size: 8.4vw !important;
  }
  .fs44 {
    font-size: 8.8vw !important;
  }
  .fs46 {
    font-size: 9.2vw !important;
  }
  .fs48 {
    font-size: 9.6vw !important;
  }
  .fs10_sp {
    font-size: 2vw !important;
  }
  .fs12_sp {
    font-size: 2.4vw !important;
  }
  .fs14_sp {
    font-size: 2.8vw !important;
  }
  .fs16_sp {
    font-size: 3.2vw !important;
  }
  .fs18_sp {
    font-size: 3.6vw !important;
  }
  .fs20_sp {
    font-size: 4vw !important;
  }
  .fs22_sp {
    font-size: 4.4vw !important;
  }
  .fs24_sp {
    font-size: 4.8vw !important;
  }
  .fs26_sp {
    font-size: 5.2vw !important;
  }
  .fs28_sp {
    font-size: 5.6vw !important;
  }
  .fs30_sp {
    font-size: 6vw !important;
  }
  .fs32_sp {
    font-size: 6.4vw !important;
  }
  .fs34_sp {
    font-size: 6.8vw !important;
  }
  .fs36_sp {
    font-size: 7.2vw !important;
  }
  .fs38_sp {
    font-size: 7.6vw !important;
  }
  .fs40_sp {
    font-size: 8vw !important;
  }
  .fs42_sp {
    font-size: 8.4vw !important;
  }
  .fs44_sp {
    font-size: 8.8vw !important;
  }
  .fs46_sp {
    font-size: 9.2vw !important;
  }
  .fs48_sp {
    font-size: 9.6vw !important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
    margin 0-100px（5px刻み）
+++++++++++++++++++++++++++++++++++++++++++*/
.mt0 {
  margin-top: 0px !important;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mr0 {
  margin-right: 0px !important;
}
.ml0 {
  margin-left: 0px !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mr5 {
  margin-right: 5px !important;
}
.ml5 {
  margin-left: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mr10 {
  margin-right: 10px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mr15 {
  margin-right: 15px !important;
}
.ml15 {
  margin-left: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mr25 {
  margin-right: 25px !important;
}
.ml25 {
  margin-left: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mr30 {
  margin-right: 30px !important;
}
.ml30 {
  margin-left: 30px !important;
}
.mt35 {
  margin-top: 35px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mr35 {
  margin-right: 35px !important;
}
.ml35 {
  margin-left: 35px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mr40 {
  margin-right: 40px !important;
}
.ml40 {
  margin-left: 40px !important;
}
.mt45 {
  margin-top: 45px !important;
}
.mb45 {
  margin-bottom: 45px !important;
}
.mr45 {
  margin-right: 45px !important;
}
.ml45 {
  margin-left: 45px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mr50 {
  margin-right: 50px !important;
}
.ml50 {
  margin-left: 50px !important;
}
.mt55 {
  margin-top: 55px !important;
}
.mb55 {
  margin-bottom: 55px !important;
}
.mr55 {
  margin-right: 55px !important;
}
.ml55 {
  margin-left: 55px !important;
}
.mt60 {
  margin-top: 60px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mr60 {
  margin-right: 60px !important;
}
.ml60 {
  margin-left: 60px !important;
}
.mt65 {
  margin-top: 65px !important;
}
.mb65 {
  margin-bottom: 65px !important;
}
.mr65 {
  margin-right: 65px !important;
}
.ml65 {
  margin-left: 65px !important;
}
.mt70 {
  margin-top: 70px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mr70 {
  margin-right: 70px !important;
}
.ml70 {
  margin-left: 70px !important;
}
.mt75 {
  margin-top: 75px !important;
}
.mb75 {
  margin-bottom: 75px !important;
}
.mr75 {
  margin-right: 75px !important;
}
.ml75 {
  margin-left: 75px !important;
}
.mt80 {
  margin-top: 80px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.mr80 {
  margin-right: 80px !important;
}
.ml80 {
  margin-left: 80px !important;
}
.mt85 {
  margin-top: 85px !important;
}
.mb85 {
  margin-bottom: 85px !important;
}
.mr85 {
  margin-right: 85px !important;
}
.ml85 {
  margin-left: 85px !important;
}
.mt90 {
  margin-top: 90px !important;
}
.mb90 {
  margin-bottom: 90px !important;
}
.mr90 {
  margin-right: 90px !important;
}
.ml90 {
  margin-left: 90px !important;
}
.mt95 {
  margin-top: 95px !important;
}
.mb95 {
  margin-bottom: 95px !important;
}
.mr95 {
  margin-right: 95px !important;
}
.ml95 {
  margin-left: 95px !important;
}
.mt100 {
  margin-top: 100px !important;
}
.mb100 {
  margin-bottom: 100px !important;
}
.mr100 {
  margin-right: 100px !important;
}
.ml100 {
  margin-left: 100px !important;
}
@media (width <= 850px) {
  .mt0_sp {
    margin-top: 0px !important;
  }
  .mb0_sp {
    margin-bottom: 0px !important;
  }
  .mr0_sp {
    margin-right: 0px !important;
  }
  .ml0_sp {
    margin-left: 0px !important;
  }
  .mt5_sp {
    margin-top: 5px !important;
  }
  .mb5_sp {
    margin-bottom: 5px !important;
  }
  .mr5_sp {
    margin-right: 5px !important;
  }
  .ml5_sp {
    margin-left: 5px !important;
  }
  .mt10_sp {
    margin-top: 10px !important;
  }
  .mb10_sp {
    margin-bottom: 10px !important;
  }
  .mr10_sp {
    margin-right: 10px !important;
  }
  .ml10_sp {
    margin-left: 10px !important;
  }
  .mt15_sp {
    margin-top: 15px !important;
  }
  .mb15_sp {
    margin-bottom: 15px !important;
  }
  .mr15_sp {
    margin-right: 15px !important;
  }
  .ml15_sp {
    margin-left: 15px !important;
  }
  .mt20_sp {
    margin-top: 20px !important;
  }
  .mb20_sp {
    margin-bottom: 20px !important;
  }
  .mr20_sp {
    margin-right: 20px !important;
  }
  .ml20_sp {
    margin-left: 20px !important;
  }
  .mt25_sp {
    margin-top: 25px !important;
  }
  .mb25_sp {
    margin-bottom: 25px !important;
  }
  .mr25_sp {
    margin-right: 25px !important;
  }
  .ml25_sp {
    margin-left: 25px !important;
  }
  .mt30_sp {
    margin-top: 30px !important;
  }
  .mb30_sp {
    margin-bottom: 30px !important;
  }
  .mr30_sp {
    margin-right: 30px !important;
  }
  .ml30_sp {
    margin-left: 30px !important;
  }
  .mt35_sp {
    margin-top: 35px !important;
  }
  .mb35_sp {
    margin-bottom: 35px !important;
  }
  .mr35_sp {
    margin-right: 35px !important;
  }
  .ml35_sp {
    margin-left: 35px !important;
  }
  .mt40_sp {
    margin-top: 40px !important;
  }
  .mb40_sp {
    margin-bottom: 40px !important;
  }
  .mr40_sp {
    margin-right: 40px !important;
  }
  .ml40_sp {
    margin-left: 40px !important;
  }
  .mt45_sp {
    margin-top: 45px !important;
  }
  .mb45_sp {
    margin-bottom: 45px !important;
  }
  .mr45_sp {
    margin-right: 45px !important;
  }
  .ml45_sp {
    margin-left: 45px !important;
  }
  .mt50_sp {
    margin-top: 50px !important;
  }
  .mb50_sp {
    margin-bottom: 50px !important;
  }
  .mr50_sp {
    margin-right: 50px !important;
  }
  .ml50_sp {
    margin-left: 50px !important;
  }
  .mt55_sp {
    margin-top: 55px !important;
  }
  .mb55_sp {
    margin-bottom: 55px !important;
  }
  .mr55_sp {
    margin-right: 55px !important;
  }
  .ml55_sp {
    margin-left: 55px !important;
  }
  .mt60_sp {
    margin-top: 60px !important;
  }
  .mb60_sp {
    margin-bottom: 60px !important;
  }
  .mr60_sp {
    margin-right: 60px !important;
  }
  .ml60_sp {
    margin-left: 60px !important;
  }
  .mt65_sp {
    margin-top: 65px !important;
  }
  .mb65_sp {
    margin-bottom: 65px !important;
  }
  .mr65_sp {
    margin-right: 65px !important;
  }
  .ml65_sp {
    margin-left: 65px !important;
  }
  .mt70_sp {
    margin-top: 70px !important;
  }
  .mb70_sp {
    margin-bottom: 70px !important;
  }
  .mr70_sp {
    margin-right: 70px !important;
  }
  .ml70_sp {
    margin-left: 70px !important;
  }
  .mt75_sp {
    margin-top: 75px !important;
  }
  .mb75_sp {
    margin-bottom: 75px !important;
  }
  .mr75_sp {
    margin-right: 75px !important;
  }
  .ml75_sp {
    margin-left: 75px !important;
  }
  .mt80_sp {
    margin-top: 80px !important;
  }
  .mb80_sp {
    margin-bottom: 80px !important;
  }
  .mr80_sp {
    margin-right: 80px !important;
  }
  .ml80_sp {
    margin-left: 80px !important;
  }
  .mt85_sp {
    margin-top: 85px !important;
  }
  .mb85_sp {
    margin-bottom: 85px !important;
  }
  .mr85_sp {
    margin-right: 85px !important;
  }
  .ml85_sp {
    margin-left: 85px !important;
  }
  .mt90_sp {
    margin-top: 90px !important;
  }
  .mb90_sp {
    margin-bottom: 90px !important;
  }
  .mr90_sp {
    margin-right: 90px !important;
  }
  .ml90_sp {
    margin-left: 90px !important;
  }
  .mt95_sp {
    margin-top: 95px !important;
  }
  .mb95_sp {
    margin-bottom: 95px !important;
  }
  .mr95_sp {
    margin-right: 95px !important;
  }
  .ml95_sp {
    margin-left: 95px !important;
  }
  .mt100_sp {
    margin-top: 100px !important;
  }
  .mb100_sp {
    margin-bottom: 100px !important;
  }
  .mr100_sp {
    margin-right: 100px !important;
  }
  .ml100_sp {
    margin-left: 100px !important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
  TB用、SP用
+++++++++++++++++++++++++++++++++++++++++++ */
.tb_show,
.sp_show {
  display: none;
}
@media (width <= 1023px) {
  .tb_hide {
    display: none;
  }
  .tb_show {
    display: block;
  }
}
@media (width <= 850px) {
  .sp_hide {
    display: none;
  }
  .sp_show {
    display: block;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ clearfix */
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}
/*+++++++++++++++++++++++++++++++++++++++++++
  パーツ（色々なページで使うスタイル）
+++++++++++++++++++++++++++++++++++++++++++ */
.box {
  background: #FFF;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.photoFrame {
  -webkit-box-shadow: 1px 1px 3px #999;
  box-shadow: 1px 1px 3px #999;
}
ul.iBlock {
  display: block;
}
ul.iBlock li {
  display: inline-block;
  margin: 0 15px 5px 0;
}
.btn a {
  background: #FFCD00;
  color: #FFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  max-width: max-content;
  width: 100%;
  min-height: 42px;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 5px 20px;
  border-radius: 5px;
  color: #000;
  box-shadow: 0 3px 0 #cca400;
}
.btn a .arrow {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
}
.btn a:hover {
  opacity: 0.8;
}
.btn2 a {
  background: #FFF;
  color: #FFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  max-width: max-content;
  width: 100%;
  min-height: 52px;
  font-size: 2rem;
  font-weight: bold;
  border: #0F218B 2px solid;
  padding: 5px 20px;
  border-radius: 3px;
  color: #0F218B;
}
.btn2 a .arrow {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
}
.btn2 a:hover {
  opacity: 0.8;
}
.btn2 a:hover {
  opacity: 1;
  background: #0F218B;
  color: #FFF;
}
.columnBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 0;
}
.columnBox .columnItem {
  width: 49%;
}
.columnBox.col3 > * {
  display: block;
  width: 32%;
  max-width: 350px;
}
.columnBox.col3::before,
.columnBox.col3::after {
  content: '';
  order: 1;
  display: block;
  width: 32%;
  max-width: 350px;
}
.columnBox.col4 > * {
  display: block;
  width: 24%;
  max-width: 350px;
}
.columnBox.col4::before,
.columnBox.col4::after {
  content: '';
  order: 1;
  display: block;
  width: 24%;
  max-width: 350px;
}
@media (width <= 850px) {
  .columnBox.col1_sp > * {
    display: block;
    width: 100%;
    max-width: none;
  }
  .columnBox.col1_sp::before,
  .columnBox.col1_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 100%;
    max-width: none;
  }
  .columnBox.col2_sp > * {
    display: block;
    width: 49%;
    max-width: none;
  }
  .columnBox.col2_sp::before,
  .columnBox.col2_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 49%;
    max-width: none;
  }
  .columnBox.col3_sp > * {
    display: block;
    width: 32%;
    max-width: none;
  }
  .columnBox.col3_sp::before,
  .columnBox.col3_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 32%;
    max-width: none;
  }
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
}
.flex.ai_fs {
  align-items: flex-start;
}
.flex.ai_c {
  align-items: center;
}
.flex.ai_fe {
  align-items: flex-end;
}
.flex.jc_fs {
  justify-content: flex-start;
}
.flex.jc_c {
  justify-content: center;
}
.flex .flexText {
  flex: 1;
}
.flex .flexImg {
  text-align: center;
}
.flex .flexRight {
  order: 1;
}
@media (width <= 850px) {
  .flex.sp_column {
    flex-direction: column;
  }
  .flex.sp_column .flexText {
    display: contents;
  }
  .flex.sp_column .flexText hgroup,
  .flex.sp_column .flexText h2,
  .flex.sp_column .flexText h3,
  .flex.sp_column .flexText h4 {
    order: -2;
  }
  .flex.sp_column .flexImg {
    order: -1;
  }
  .flex.sp_block {
    display: block;
  }
}
.fadein {
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
.fadein.fadeRight {
  transform: translate(100px, 0);
}
.fadein.fadeLeft {
  transform: translate(-100px, 0);
}
.fadein.fadeBottom {
  transform: translate(0, 100px);
}
.fadein.fadeScroll {
  opacity: 1;
  transform: translate(0, 0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
