@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 大枠 */
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: #1C1C1C;
  font-size: 14px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  body.wrap {
    overflow: hidden;
  }
}
body #wrapper {
  height: auto;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 200;
}

@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
/* アクセシビリティ */
.guidance {
  left: -999px;
  position: absolute;
  width: 990px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-box-shadow: #000 0 0 0;
          box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}
@media screen and (max-width: 767px) {
  img {
    /* Windows Chrome 画像ぼやけ防止 */
    image-rendering: -webkit-optimize-contrast;
  }
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {
  display: inline-block;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  opacity: 0.7;
  text-decoration: none !important;
}

.NotoSans {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.NotoSerif {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* ▼ タイトル
--------------------------------------- */
#site_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgb(255, 255, 255)), to(rgba(243, 246, 247, 0)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 60%, rgba(243, 246, 247, 0) 100%);
  width: 50vw;
  height: 80px;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #site_title {
    width: 100%;
    height: 50px;
    background: none;
  }
  #site_title img {
    width: 174px;
  }
}

.area_ttl {
  text-align: center;
  margin-bottom: 25px;
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  header {
    height: 50px;
  }
}
header .container {
  padding: 20px;
}
header .header_inner {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
@media screen and (max-width: 767px) {
  header .header_inner {
    background: #fff;
    height: 50px;
  }
}

.menu {
  display: block;
  width: 60px;
  height: 60px;
  background: #fff;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2000;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .menu {
    border-radius: 50%;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.16);
  }
}
@media screen and (max-width: 767px) {
  .menu {
    height: 50px;
    top: 0;
    right: 0;
  }
}
.menu .icon {
  display: block;
  width: 32px;
  height: 10px;
  position: absolute;
  top: 27px;
  left: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .menu .icon {
    top: 20px;
  }
}
.menu .icon::before, .menu .icon::after {
  content: "";
  width: 32px;
  border-top: 1px solid #CF001A;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
}
.menu .icon::before {
  top: 0;
}
.menu .icon::after {
  bottom: 0;
}
.menu .icon.active {
  border-color: transparent;
}
.menu .icon.active::before {
  -webkit-transform: rotate(-155deg);
  transform: rotate(-155deg);
  top: 4px;
  right: 0;
}
.menu .icon.active::after {
  -webkit-transform: rotate(155deg);
  transform: rotate(155deg);
  bottom: 5px;
  right: 0;
}

/* グローバルナビゲーション */
#gnav {
  background: #F7F5F5;
  overflow: hidden;
  display: block !important;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  float: none;
  width: 375px;
  max-height: 100vh;
  padding: 100px 30px 50px;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  overflow: auto;
}
@media screen and (max-width: 767px) {
  #gnav {
    width: 100%;
    padding: 100px 30px;
  }
}
#gnav.open {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#gnav ul {
  display: block;
  margin-bottom: 90px;
}
#gnav ul > li {
  margin-bottom: 30px;
  text-align: center;
}
#gnav ul > li a {
  display: block;
  text-decoration: none;
}
#gnav ul > li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  #gnav ul > li a:hover {
    text-decoration: none;
    opacity: 1;
  }
}
#gnav .btn {
  margin-bottom: 60px;
}
#gnav .h_bnr {
  margin-bottom: 25px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
  margin: 0 auto;
  clear: both;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .menu_fixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }
}

.btn {
  width: min(100%, 259px);
  margin: 0 auto;
}
.btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  border: 2px solid #CF001A;
  border-radius: 40px;
  height: 58px;
  color: #CF001A;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}
.btn a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 9px;
  border-color: transparent transparent transparent #CF0010;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 20px;
}

.bnr_txt {
  margin-bottom: 10px;
  color: #000;
  text-align: center;
}
.bnr_txt::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #000 transparent transparent transparent;
  margin-left: 5px;
}

.bnr {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: min(100%, 315px);
  margin: 0 auto;
}

.inner {
  width: min(100%, 500px);
  padding: 60px 30px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.txt_link {
  text-decoration: underline !important;
}
.txt_link:hover {
  text-decoration: none !important;
}

.notes {
  font-size: 12px;
}

/* ▼▼▼ main
======================================================*/
#mainVisual {
  background: url(../img/mv_bg02.png) no-repeat center top/100%, url(../img/mv_bg01.jpg) no-repeat center/cover;
  width: 50vw;
  min-height: 100vh;
  height: 100%;
  padding: 100px 0 45px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#mainVisual::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  #mainVisual {
    background: url(../img/mv_bg_sp.jpg) no-repeat center top/auto 100%;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0 0 36px;
    margin-top: 50px;
    position: relative;
    overflow: visible;
  }
}
#mainVisual .animation_wrap {
  width: 53%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 120px;
  left: 50%;
}
@media screen and (max-width: 767px) {
  #mainVisual .animation_wrap {
    width: 93vw;
    top: 16vw;
  }
}
#mainVisual .animation_wrap svg {
  width: 100%;
}
#mainVisual .svg_all {
  width: 55%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 18%;
  left: 50%;
}
#mainVisual .mv_wrap, #mainVisual .mv, #mainVisual #path_01, #mainVisual #path_02, #mainVisual #path_03, #mainVisual #txt {
  opacity: 0;
}
#mainVisual .mv_wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #mainVisual .mv_wrap {
    width: 100%;
  }
}
#mainVisual .mv_txt {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 18%;
  left: 50%;
}
#mainVisual .btn {
  margin-top: 25px;
}
#mainVisual .btn a {
  padding-bottom: 13px;
}
#mainVisual .btn a::before {
  content: "";
  background: url(../img/btn_bg.svg) no-repeat center top/100%;
  width: 92%;
  height: 100%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -35px;
  left: 50%;
  pointer-events: none;
}
#mainVisual .btn a::after {
  border-width: 9px 7.5px 0 7.5px;
  border-color: #CF001A transparent transparent transparent;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: auto;
  left: 50%;
  bottom: 8px;
  right: auto;
}
@media screen and (max-width: 767px) {
  #mainVisual .btn {
    margin-top: 0;
  }
}
#mainVisual .lead {
  margin-top: 20px;
  text-align: center;
  letter-spacing: 1.71;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #mainVisual .lead {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.55;
  }
}
#mainVisual .lead span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(195, 154, 90, 0.4)));
  background: linear-gradient(transparent 60%, rgba(195, 154, 90, 0.4) 60%);
  line-height: 1;
}
#mainVisual .lead strong {
  margin-right: 0.2em;
  font-size: 21px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #mainVisual .lead strong {
    font-size: 16px;
  }
}

.contents_wrap {
  width: 50vw;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contents_wrap {
    width: 100%;
    z-index: 15;
  }
}

.slide {
  position: relative;
  z-index: 1;
}
.slide .slide_wrap {
  width: 400%;
  height: 100vh;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  will-change: auto;
}
.slide .slide_wrap.bg01 .slide_item::before {
  background: url(../img/item_bg01.png) no-repeat center/22%;
}
.slide .slide_wrap.bg02 .slide_item::before {
  background: url(../img/item_bg02.png) no-repeat center/22%;
}
.slide .slide_wrap.bg03 .slide_item::before {
  background: url(../img/item_bg03.png) no-repeat center/22%;
}
.slide .slide_wrap.bg04 .slide_item::before {
  background: url(../img/item_bg04.png) no-repeat center/22%;
}
.slide .slide_wrap .slide_item {
  background: url(../img/item_bg.png) no-repeat center/22%;
  width: 100%;
  height: 100%;
  position: relative;
}
.slide .slide_wrap .slide_item::before {
  background: url(../img/item_bg01.png) no-repeat center/22%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100%;
  z-index: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  will-change: transition;
}
@media screen and (max-width: 767px) {
  .slide .slide_wrap .slide_item {
    background-size: 38.4vw !important;
    z-index: 20;
  }
  .slide .slide_wrap .slide_item::before {
    background-size: 38.4vw !important;
    width: 100vw;
  }
  .slide .slide_wrap .slide_item::after {
    background: url(../img/slide_bg01.png) no-repeat center/100%;
    content: "";
    position: absolute;
    top: 5vw;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 1;
  }
}

.item {
  background: #fff;
  border-radius: 15px;
  padding: 40px 40px 20px;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  position: relative;
}
.item a {
  display: block;
}

.box {
  background: #fff;
  border: 1px solid currentColor;
  border-radius: 20px;
  width: min(100%, 315px);
  padding: 10px;
  margin: 0 auto;
  color: #C39A5A;
  text-align: center;
  line-height: 1.71;
}

#area02 {
  background: url(../img/area02_bg.jpg) no-repeat center/cover;
  position: relative;
}
#area02 .inner {
  padding-bottom: 80px;
}
#area02 .detail_wrap {
  background: #fff;
  padding: 25px;
  margin-bottom: 40px;
  height: 294px;
  font-size: 12px;
  overflow-y: scroll;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#area02 .detail_wrap::-webkit-scrollbar {
  display: none;
}

.simplebar-track {
  background: #F0ECEC;
  border-radius: 10px;
}

.simplebar-track.simplebar-vertical {
  width: 2px;
  margin: 10px;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.simplebar-track .simplebar-scrollbar::before {
  background: #CF001A;
  width: 2px;
  left: 0;
  right: auto;
}

#area03 {
  background: #F7F5F5;
}
#area03 .lead {
  color: #4D4D4D;
}
#area03 .item_list {
  margin-bottom: 40px;
}
#area03 .item_list .item {
  padding: 40px 40px 20px;
  margin-top: 50px;
  position: relative;
}
#area03 .item_list .item h3 {
  position: absolute;
  top: -25px;
  left: -24px;
}
#area03 .item_list .item ul {
  font-weight: 500;
}
#area03 .item_list .item ul li {
  background: url(../img/dots.svg) no-repeat left 9px/auto;
  padding-left: 1em;
}
#area03 .item_list .item ul li span {
  font-size: 16px;
  padding: 0 0 0 0.2em;
}
#area03 .item_list .item ul li:not(:last-child) {
  margin-bottom: 10px;
}
#area03 .img {
  text-align: center;
}
#area03 .img:last-of-type {
  margin-top: 20px;
}
#area03 .img ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 17px;
  margin-top: 10px;
}
#area03 .img ul li {
  color: #4D4D4D;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

#area04 {
  background: url(../img/area04_bg.jpg) repeat-y center top/100%;
  position: relative;
}
#area04 .inner {
  position: relative;
  z-index: 2;
}
#area04 .item {
  padding: 25px 30px;
  margin-bottom: 20px;
  color: #000;
}
#area04 .item h3 {
  background: url(../img/ttl_line.svg) no-repeat center bottom/auto;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #CF001A;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
#area04 .item dl dt {
  background: url(../img/dots_line.svg) no-repeat center bottom/auto;
  padding-bottom: 14px;
  margin-bottom: 17px;
}
#area04 .item dl dd span {
  font-weight: 500;
}
#area04 .notes {
  margin-bottom: 35px;
}
#area04 .box {
  margin-top: 35px;
}

.accordion {
  background: #fff;
  border: 1px solid #707070;
  margin-top: 15px;
}
.accordion dt {
  padding: 10px 30px;
  color: #4D4D4D;
  text-align: center;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}
.accordion dt::before, .accordion dt.open::after {
  content: "";
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
.accordion dt::before {
  border-top: 1px solid #707070;
  width: 13px;
  right: 10px;
}
.accordion dt.open::after {
  border-left: 1px solid #707070;
  height: 13px;
  right: 16px;
}
.accordion dd {
  display: none;
  padding: 0 20px 20px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .accordion dd {
    padding: 0 10px 20px;
  }
}

#area05 {
  background: #F7F5F5;
  position: relative;
}
#area05 .inner {
  position: relative;
}
#area05 .red {
  color: #CF001A;
  text-decoration: underline;
}
#area05 .notes {
  margin-top: 20px;
}
#area05 .contact_area {
  padding-bottom: 165px;
}

/* 結果発表 */
.result_ttl {
  background-image: url(../img/card03_ttl_bg_l.svg), url(../img/card03_ttl_bg_r.svg);
  background-position: left center, right center;
  background-repeat: no-repeat;
  background-size: auto, auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px 25px;
  font-size: 18px;
  text-align: center;
  font-weight: normal;
  line-height: 1.56;
}
@media screen and (max-width: 767px) {
  .result_ttl {
    min-height: 61px;
  }
}
.result_ttl span {
  text-align: center;
}

#result {
  background: #F7F5F5;
  position: relative;
}
#result .area_ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #result .area_ttl {
    margin-bottom: 30px;
  }
}
#result .card:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #result .card:not(:last-child) {
    margin-bottom: 30px;
  }
}
#result .card .item {
  padding: 65px 33px 30px 33px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #result .card .item {
    padding: 65px 30px 30px 30px;
  }
}
#result .card .item h3 {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -30px;
  left: 50%;
}
@media screen and (max-width: 767px) {
  #result .card .item h3 {
    top: -22px;
  }
}
@media screen and (max-width: 767px) {
  #result .card .result_ttl {
    max-width: 255px;
    margin: 0 auto;
  }
}
#result .card .img {
  margin-bottom: 10px;
  text-align: center;
}
#result .card.card01 .result_ttl {
  background-image: url(../img/card01_ttl_bg_l.svg), url(../img/card01_ttl_bg_r.svg);
}
@media screen and (max-width: 767px) {
  #result .card.card01 .result_ttl {
    background-size: 36px, 36px;
    max-width: calc(100vw - 80px);
    width: 274px;
    min-height: 67px;
    position: relative;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
    margin: 0;
  }
}
#result .card.card02 .result_ttl {
  background-image: url(../img/card02_ttl_bg_l.svg), url(../img/card02_ttl_bg_r.svg);
  letter-spacing: 0.4em;
}
@media screen and (max-width: 767px) {
  #result .card.card02 .result_ttl {
    background-size: 32px, 32px;
    min-height: 61px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  #result .card.card03 {
    padding-top: 10px;
  }
}
#result .card.card03 h3 {
  margin-bottom: 10px;
  text-align: center;
}
#result .card.card03 .result_ttl {
  background-image: url(../img/card03_ttl_bg_l.svg), url(../img/card03_ttl_bg_r.svg);
  background-position: left top, right bottom;
  padding: 7px 15px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #result .card.card03 .result_ttl {
    background-size: 20px, 20px;
    min-height: 43px;
  }
}
#result .card.card03 .item {
  padding: 20px 33px 25px 33px;
}
@media screen and (max-width: 767px) {
  #result .card.card03 .item {
    padding: 20px 30px 25px 30px;
  }
  #result .card.card03 .item .img {
    width: 85%;
    margin: 0 auto 10px;
  }
}
#result .card.card03 .name {
  margin-bottom: 5px;
}
#result .card ul li:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #result .card ul li:not(:last-child) {
    margin-bottom: 15px;
  }
}
#result .btn {
  margin: 33px auto 35px;
}

.name {
  margin-bottom: 15px;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
}
.name span {
  font-size: 10px;
}

.more {
  display: table;
  margin: 6px 0 0 auto;
}
.more span {
  display: block;
  border-bottom: 1px solid currentColor;
  color: #CF001A;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.more span::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 7px;
  border-color: transparent transparent transparent #CF001A;
  margin-left: 10px;
}

/* モーダル */
.modal_inner {
  padding: 40px 30px;
}
.modal_inner .result_ttl {
  background-position: left top, right bottom;
}
.modal_inner .name {
  margin-bottom: 20px;
}
.modal_inner .txt {
  line-height: 1.71;
}

#cboxOverlay {
  background: #A0B4BA;
  z-index: 99999;
}

#colorbox {
  z-index: 99999;
}
#colorbox .simplebar-content-wrapper {
  position: static;
}

#cboxContent {
  background: none;
}

#cboxLoadedContent {
  border: 1px solid #C39A5A;
  background: url(../img/modal_bg.jpg) no-repeat center top/100%, #fff;
  margin: 0;
}
#cboxLoadedContent .simplebar-track.simplebar-vertical {
  margin-top: 40px !important;
}

#cboxClose {
  display: none;
}

.btn_close {
  width: 21px;
  height: 21px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .btn_close {
    top: 10px;
    right: 10px;
  }
}
.btn_close::before, .btn_close::after {
  content: "";
  width: 28px;
  border-radius: 5px;
  border-top: 2px solid #C39A5A;
  position: absolute;
  top: 10px;
  left: -4px;
}
.btn_close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.btn_close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* アニメーション */
.svg-trigger01, .svg-trigger02, .svg-trigger03, .svg-trigger04, .svg-trigger05, .svg-trigger06, .svg-trigge07 {
  position: absolute;
  pointer-events: none;
}
.svg-trigger01 svg, .svg-trigger02 svg, .svg-trigger03 svg, .svg-trigger04 svg, .svg-trigger05 svg, .svg-trigger06 svg, .svg-trigge07 svg {
  width: 100%;
  height: auto;
}

.path-item {
  opacity: 0;
}
.path-item.active {
  -webkit-animation: fadeIn 0.5s ease-out 0.3s forwards;
          animation: fadeIn 0.5s ease-out 0.3s forwards;
}

.cls-1 {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7px;
}

.svg-trigger01 {
  opacity: 0;
  top: -8vw;
  left: -1vw;
  width: 11.5vw;
}
@media screen and (max-width: 767px) {
  .svg-trigger01 {
    width: 43.5vw;
    top: -38vw;
    left: -23vw;
  }
}

.svg-trigger02 {
  bottom: -23%;
  left: 39vw;
  width: 12vw;
}
@media screen and (max-width: 767px) {
  .svg-trigger02 {
    bottom: -29vh;
    left: 70vw;
    width: 42vw;
  }
}
.svg-trigger02.first {
  opacity: 0;
}

.svg-trigger03 {
  bottom: -20.1vw;
  left: 0;
  width: 11.26vw;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .svg-trigger03 {
    bottom: calc(-70vw - 60px);
    left: -15vw;
    width: 39vw;
  }
}

.svg-trigger04 {
  bottom: -11.34vw;
  right: 0;
  width: 11.2vw;
}
@media screen and (max-width: 767px) {
  .svg-trigger04 {
    bottom: calc(-26vw - 60px);
    right: -8vw;
    width: 38vw;
  }
}

.svg-trigger05 {
  top: -7.6vw;
  left: 0;
  width: 9.95vw;
}
@media screen and (max-width: 767px) {
  .svg-trigger05 {
    top: calc(-8vw - 60px);
    left: -15vw;
    width: 38vw;
  }
}

.svg-trigger06 {
  top: -4vw;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .svg-trigger06 {
    top: -10vw;
  }
}

@-webkit-keyframes bgLeft {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes bgLeft {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
.svg-trigge07 {
  bottom: 30px;
  right: -3vw;
  width: 27vw;
}
@media screen and (max-width: 767px) {
  .svg-trigge07 {
    right: 0;
    width: 95vw;
  }
}
.svg-trigge07::before {
  content: "";
  background: #F7F5F5;
  width: 100%;
  height: calc(100% + 2px);
  position: absolute;
  top: 0;
  right: 0;
}
.svg-trigge07.animate.active::before {
  -webkit-animation: bg 0.5s ease-out 0.8s forwards;
          animation: bg 0.5s ease-out 0.8s forwards;
}
.svg-trigge07 svg {
  width: 100%;
}

@-webkit-keyframes bg {
  0% {
    right: 0;
  }
  100% {
    right: 100%;
  }
}
@keyframes bg {
  0% {
    right: 0;
  }
  100% {
    right: 100%;
  }
}
@media screen and (max-width: 767px) {
  .circle_01, .circle_02 {
    opacity: 0;
    position: absolute;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
  }
  .circle_01.active, .circle_02.active {
    -webkit-animation: fadeIn 0.5s ease-out forwards;
            animation: fadeIn 0.5s ease-out forwards;
  }
  .circle_01 {
    bottom: -33px;
  }
  .circle_02 {
    bottom: -53px;
  }
  .circle_02.active {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animate.fadeInUp, .animate.fadeInLeft {
  opacity: 0;
}

.animate.fadeInUp.active {
  -webkit-animation: fadeInUp 0.5s ease-out forwards;
          animation: fadeInUp 0.5s ease-out forwards;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.animate.fadeInLeft.active {
  -webkit-animation: fadeInLeft 0.5s ease-out forwards;
          animation: fadeInLeft 0.5s ease-out forwards;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(60%);
            transform: translateX(60%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(60%);
            transform: translateX(60%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* ▼▼▼ フッター
===================================== */
footer {
  width: 100%;
  padding: 20px 30px 15px;
  clear: both;
  overflow: hidden;
}
footer .logo {
  width: min(100%, 112px);
  text-align: center;
  margin: 0 auto 15px;
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  padding-top: 23px;
  font-size: 13px;
  text-align: center;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
  position: fixed;
  cursor: pointer;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}
.pagetop::after {
  content: "";
  width: 6px;
  height: 6px;
  border-left: #000 1px solid;
  border-top: #000 1px solid;
  position: absolute;
  top: 15px;
  left: calc(50% - 3px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ▼ コピーライト
--------------------------------------- */
#copyright {
  font-size: 9px;
  color: #000;
  text-align: center;
}