/*-------------------------------------------------------
  base
-------------------------------------------------------*/
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 80%;
  scroll-behavior: smooth;
}

body {
  color: #000;
  font-family: "Open Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;

  margin-bottom: 0px;
  background-color: #26b7bc;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: underline;
  color: #fff;
}

a:hover {
  text-decoration: underline;
  opacity: 0.6;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  background-color: #fff;
  color: #363c49;
  font-family: "Open Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

strong {
  color: #fff;
  font-weight: bold;
}

/* ===== SP ===== */

.mainContents {
  width: 100%;
}

.mainContents__wrapper {
  display: block;
  margin: 40px 0 64px;
  padding: 0 20px;
}

.mainContents__title-wrapper {
  margin-bottom: 12px;
}

.mainContents__title {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  font-weight: bold;
  color: #000;
  text-align: left;
  background-color: transparent;
  padding: 0;
}

.mainContents__title-sub {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 8px;
  color: #fff;
  text-align: left;
}

.mainContents__text-wrapper {
  margin-bottom: 32px;
}

.mainContents__text {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 16px;
}

.titLv2__wrapper {
  margin-bottom: 32px;
}

.titLv2__title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  color: #000;
  text-align: left;
  border-bottom: 2px solid #fff;
  padding-bottom: 16px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.titLv2__text {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 16px;
}

.orderedList__brackets {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 16px;
  margin-left: 3em;
}

.orderedList__brackets {
  counter-reset: cnt;
}

.orderedList__brackets>li {
  list-style-type: none;
  counter-increment: cnt;
  margin-bottom: 8px;
  position: relative;
}

.orderedList__brackets>li::before {
  content: '(' counter(cnt) ')';
  display: inline-block;
  margin-left: -3.5em;
  width: 3em;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
}

.orderedList__circle {
  font-size: 14px;
  counter-reset: cnt;
  list-style: none;
  padding: 0;
  margin: 0;
}

.orderedList__circle>li {
  line-height: 2;
  padding-left: 1.5em;
  position: relative;
}

.orderedList__circle>li::before {
  content: counter(cnt);
  counter-increment: cnt;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.4em;
  width: 1.4em;
  color: #000;
  font-size: 85%;
  line-height: 2;
  position: absolute;
  padding-top: 1px;
  top: 0.4em;
  left: 0;
}

.unorderedList__default {
  font-size: 14px;
  list-style-type: disc;
  line-height: 2;
  padding-left: 1.5em;
}

.orderedList__default {
  counter-reset: cnt;
}

.orderedList__default>li {
  list-style-type: none;
  counter-increment: cnt;
  margin-bottom: 8px;
  position: relative;
}

.orderedList__default>li::before {
  content: counter(cnt) '.';
  display: inline-block;
  margin-left: -3.5em;
  width: 3em;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
}

.orderedList__default {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 16px;
  margin-left: 3em;
}



.breadCrumb {
  margin-bottom: 12px;
}

.breadCrumb__wrapper {
  padding: 0 20px;
}

.breadCrumb__item {
  font-size: 12px;
  line-height: 2;
  display: inline;
}

li.breadCrumb__item:first-child::before {
  display: inline-block;
  vertical-align: middle;
  margin-top: 0.3em;
  margin-right: 0.5em;
  content: url(/image/common/icon_home.svg);
}

.breadCrumb__item a {
  text-decoration: none;
}

li.breadCrumb__item::after {
  display: inline-block;
  vertical-align: middle;
  margin-top: 0.3em;
  margin-left: 0.5em;
  content: url(/image/common/icon_breadcrumb.svg);
}

li.breadCrumb__item:last-child::after {
  content: none;
}

.table__default,
.table__default td,
.table__default th,
.table__default th {
  border: #000 solid 1px;
  padding: 10px;
  vertical-align: middle;
}

.table__default th {
  background-color: #eff0f3;
}

.textNotes__text {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
  line-height: 1.8;
  color: #686f86;
  margin-bottom: 8px;
}

#btnPagetop {
  width: 48px;
  height: 48px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 10;
}

.btnPagetop__a {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  text-decoration: none;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0.8;
}

.btnPagetop__a:before {
  content: url("/image/common/icon_pagetop.svg");
  position: absolute;
  top: 13px;
  left: 14px;
  width: 20px;
  height: 20px;
  margin: 0 auto;
}

.btnNext {
  display: block;
  width: 200px;
  height: 48px;
  line-height: 48px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #000;
  font-weight: bold;
  margin: 0 auto;
  background-image: url(/image/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: 48px 48px;
  background-position: right 20px top 50%;
}

a.btnNext {
  text-decoration: none;
}

.btnNext__text {
  margin-left: 36px;
}

.news__day {
  font-size: 13px;
  margin-right: 16px;
  font-weight: bold;
  color: #fff;
}

.btnContact__area {
  padding: 60px 0;
  background-image: url(/image/common/bg_btncontact_area_sp.avif);
  background-repeat: no-repeat;
  background-size: cover;
}

.btnContact__wrapper {
  margin: 0 20px;
  padding: 32px 20px;
  border: 1px solid #cccfd9;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  ;
}

.btnContact__area-title {
  font-size: 24px;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.btnContact__area-text {
  font-size: 17px;
  line-height: 2;
  margin-bottom: 20px;
}


.btnContact {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-evenly;
  width: 280px;
  padding: 16px 0;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  background: #ff6600;
  border-radius: 40px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.btnContact::before {
  content: "";
  background-image: url(/image/common/icon_mail.svg);
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  margin: 0 8px 0 4px;
  display: inline-block;
}

.btnContact::after {
  content: "";
  background-image: url(/image/common/icon_window_white.svg);
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  margin: 0 4px 0 8px;
  display: inline-block;
}

a.btnContact {
  text-decoration: none;
}

/* ===== tablet ===== */
@media screen and (min-width:768px) {
  body {
    background-position: right top;
    background-size: 830px 896px;
  }

  .mainContents__title-wrapper {
    margin-bottom: 32px;
  }

  .mainContents__title {
    font-size: 28px;
  }

  .mainContents__title-sub {
    font-size: 14px;
  }

  .titLv2__title {
    font-size: 24px;
  }

  .breadCrumb {
    margin-bottom: 48px;
  }

  .btnContact__area {
    background-color: #fff;
    padding: 60px 0;
    background-image: url(/image/common/bg_btncontact_area_pc.avif);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
  }

  .btnContact__area-text {
    text-align: center;
  }

  .btnContact__wrapper {
    width: 750px;
    margin: 0 auto;
  }
}

/* ===== PC ===== */
@media screen and (min-width:1024px) {
  .mainContents {
    width: 1000px;
    margin: 0 auto;
    background-color: transparent;
  }

  .mainContents__wrapper {
    padding: 0;
    margin-top: 0;
  }

  .breadCrumb {
    margin-bottom: 56px;
  }

  .breadCrumb__wrapper {
    width: 1000px;
    margin: 0 auto;
    padding: 0;
  }

  .mainContents__title {
    font-size: 32px;
  }

  .mainContents__title-sub {
    font-size: 16px;
  }

  .textNotes__text {
    font-size: 14px;
  }

  #btnPagetop {
    right: 24px;
    bottom: 24px;
  }
}