@charset "UTF-8";
/* Add font files for Yu Gothic */
@font-face {
  font-family: "Yu Gothic";
  src: url("fonts/yu-gothic.woff2") format("woff2"), url("fonts/yu-gothic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
:root {
  --font-family-yu-gothic:"Yu Gothic", sans-serif;
  --color-main: #00AAEB;
  --mynavi-main: rgb(0,170,238);
}

html {
  scroll-behavior: smooth;
}

/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: #171717;
  font-size: 16px;
  line-height: 2em;
  font-family: var(--font-family-yu-gothic);
}

a {
  color: #097ACA;
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

.h3 {
  position: relative;
  padding: 0 20px 8px 0;
  margin-bottom: 20px;
  font-size: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.h3::before {
  position: absolute;
  display: inline-block;
  content: "";
  left: 0;
  bottom: -4px;
  width: 5%;
  height: 2px;
  border-radius: 20px;
  background-color: #FC8C45;
  z-index: 99;
}
.h3::after {
  position: absolute;
  display: inline-block;
  content: "";
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 20px;
  background-color: #E6E6E6;
}
@media screen and (max-width: 768px) {
  .h3 {
    padding: 0 10px 4px 0;
  }
}

.h4 {
  position: relative;
  padding-left: 16px;
  margin: 30px 0 12px 0;
  font-size: 24px;
}
.h4::before {
  position: absolute;
  display: inline-block;
  content: "";
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  border-radius: 20px;
  background-color: #FFDC78;
}

.sec02 .h4 {
  display: none;
}

.pc {
  display: inherit;
}

.sp {
  display: none;
}

.underline {
  position: relative;
  z-index: 5;
}
.underline::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 16px;
  background-color: #FFDC78;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 13px;
  }
  .h3 {
    padding-bottom: 4px;
    margin-bottom: 24px;
    font-size: 21px;
  }
  .h4 {
    position: relative;
    padding-left: 16px;
    margin: 30px 0 12px 0;
    font-size: 24px;
  }
  .h4::before {
    position: absolute;
    display: inline-block;
    content: "";
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    border-radius: 20px;
    background-color: #FFDC78;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: inherit;
  }
  .underline::after {
    z-index: -1;
    width: 100%;
    height: 8px;
    background-color: #FFDC78;
  }
}
/*flex*/
.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flexBox.bet {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flexBox.aro {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.flexBox.break {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flexBox.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content-w {
  max-width: 690px;
  padding: 0 16px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .content-w {
    padding: 0 16px;
  }
}
/*header*/
.l-header {
  text-align: center;
  padding: 10px 120px 0;
}
.l-header-inner {
  max-width: 1080px;
}
.l-header__logo {
  width: 136px;
}

/*mv*/
.l-mv {
  position: relative;
  text-align: center;
  background-color: var(--color-main);
  overflow: hidden;
}

.l-mv-imgBox img {
  display: block;
  height: auto;
  margin: 0 auto;
}

.sec {
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  .sec {
    padding: 30px 0;
  }
}
/*sec01*/
.horizontal-arrow {
  text-align: center;
}

.area-contents {
  margin-bottom: 60px;
}

/* ステップ画面のスタイル */
.kodawari-step {
  width: min(100%, 400px);
  padding: 0;
  border: 1px solid var(--color-main);
  background-color: #fff;
  border-radius: 8px;
  margin: 0 auto 60px auto;
  border-radius: 20px;
  position: relative;
}

.step-icon {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 54px;
  height: 54px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .step-icon {
    right: 0;
  }
  .kodawari-step{
    margin-top: 30px;
  }
}

.step-bottom-icon {
  position: absolute;
  bottom: -30px;
  right: -10px;
  width: 66px;
  height: 104px;
  z-index: 5;
}

.kodawari-step.step-transitioning {
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.kodawari-step.slide-out-left {
  -webkit-animation: slideOutLeft 0.3s ease-in-out forwards;
          animation: slideOutLeft 0.3s ease-in-out forwards;
}

.kodawari-step.slide-out-right {
  -webkit-animation: slideOutRight 0.3s ease-in-out forwards;
          animation: slideOutRight 0.3s ease-in-out forwards;
}

.kodawari-step.slide-in-right {
  -webkit-animation: slideInRight 0.3s ease-in-out forwards;
          animation: slideInRight 0.3s ease-in-out forwards;
}

.kodawari-step.slide-in-left {
  -webkit-animation: slideInLeft 0.3s ease-in-out forwards;
          animation: slideInLeft 0.3s ease-in-out forwards;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.kodawari-step-imgBox {
  text-align: center;
  margin-top: 20px;
}

.step-title {
  border-radius: 20px 20px 0 0;
  padding: 24px 40px;
  background-color: var(--color-main);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.step-buttons {
  padding: 24px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.step-button {
  padding: 12px 12px;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #171717;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.step-button:hover {
  background-color: #F4F7F8;
  border-color: var(--color-main);
}
.step-button.selected {
  background-color: #FFDC78;
  border-color: #F08C5A;
}

.step-condition-button.selected {
  background-color: #00AAEB;
  color: #fff;
  border-color: #00AAEB;
}

.step-select-container {
  margin-bottom: 20px;
  padding: 24px 24px 0;
}

.step-next-button {
  padding: 16px 32px;
  background-color: #FFDC78;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  margin: 20px auto;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: calc(100% - 48px);
}
.step-next-button:hover {
  background-color: #0099d6;
  color: #fff;
}
.step-next-button:focus {
  outline: none;
}

.step-select {
  width: 100%;
  max-width: 400px;
  padding: 12px 40px 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("images/ico_arrow03.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px auto;
}
.step-select:focus {
  outline: none;
  border-color: #00AAEB;
}

.step-skip-link {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000;
  text-decoration: underline;
  font-size: 15px;
  cursor: pointer;
  font-weight: normal;
}
.step-skip-link:hover {
  opacity: 0.8;
}

.step-search-button {
  padding: 16px 32px;
  background-color: #FFDC78;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: block;
  margin: 20px auto 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: calc(100% - 48px);
}
.step-search-button:hover {
  background-color: #0099d6;
  color: #fff;
}

.step-back-button {
  padding: 12px 24px;
  font-size: 16px;
  color: #4B4B4B;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  background: none;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: underline;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}
.step-back-button:hover {
  opacity: 0.8;
}
.step-back-button:focus {
  outline: none;
}

@media screen and (max-width: 768px) {
  .step-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .step-button {
    width: 100%;
  }
  .step-select {
    width: 100%;
    max-width: 100%;
  }
}
.sec01__lead {
  margin-bottom: 8px;
}

.sec01__contents {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .sec01__contents {
    position: relative;
    z-index: 1;
  }
}
/*sec02*/
.sec02 {
  position: relative;
  background: #EFFBFF;
}

.sec02__bg {
  position: absolute;
  height: auto;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
}

.sec02__contents {
  position: relative;
  z-index: 1;
}

.sec02__bg--top {
  top: 0;
}

.sec02__bg--bottom {
  bottom: 0;
}

.global-city-search {
  position: relative;
  width: 100%;
  padding: 16px 20px 16px 44px;
  border-radius: 8px;
  border: 1px solid #00AAEE;
  margin-bottom: 12px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .global-city-search {
    font-size: 15px;
    padding: 16px 20px 16px 36px;
    margin-bottom: 4px;
    background-size: 20px auto;
    background-position: 12px center;
  }
}
/*JS 検索部分*/
.search-box {
  position: relative;
}
.search-box::before {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 10;
  top: 17px;
  left: 16px;
  width: 16px;
  height: 16px;
  background-image: url(./images/ico_search.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* .search-container {
  margin-bottom: 60px;
} */

@media screen and (max-width: 768px) {
  .search-container {
    margin-bottom: 30px;
  }
}
button.clearBtn {
  background-color: rgba(0, 0, 0, 0);
  border: none;
}

.clearBtn {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 16px;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  padding: 0;
  z-index: 10;
  background-color: transparent;
  border: none;
}
.clearBtn::before, .clearBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #666;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.clearBtn::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.clearBtn::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.clearBtn:hover {
  opacity: 0.8;
}
.clearBtn:hover::before, .clearBtn:hover::after {
  background-color: #171717;
}
.clearBtn:active {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .clearBtn {
    top: 45%;
    right: 14px;
    width: 16px;
    height: 16px;
  }
  .clearBtn::before, .clearBtn::after {
    width: 16px;
    height: 2px;
  }
}
.city-link {
  margin: 2px 14px 2px 0;
}

.area-link {
  display: inline-block;
  text-align: center;
  padding: 5px 6px;
  margin-bottom: 16px;
  background-color: #FFDC78;
  border-radius: 8px;
  border: 1px solid #F08C5A;
  cursor: pointer;
  font-size: 15px;
  text-decoration: none;
  font-weight: 700;
  color: #171717;
  width: calc(20% - 14px);
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.area-link::after {
  height: 0;
  width: calc(20% - 42px);
}
.area-link:hover {
  opacity: 0.8;
}
.area-link.active {
  opacity: 1;
  background-color: #FFDC78;
}
.area-link.empty {
  height: 0;
  padding: 0;
  border: none;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .area-link {
    width: 100%;
    margin-bottom: 0;
  }
}

/*tab*/
.tab-buttons {
  display: none;
  margin-bottom: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}
.tab-buttons:last-of-type {
  margin-top: 30px;
}

#tab-set-2 {
  margin-top: 20px;
}

.tab-buttons::after {
  display: inline-block;
  content: "";
  height: 0;
  width: calc(33.3333333333% - 8px);
}

@media screen and (max-width: 768px) {
  .category-group {
    display: none;
  }
  .category-group.active {
    display: block;
  }
  .category-group.group1, .category-group.group2 {
    width: 100%;
  }
  .region-buttons.pc {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .tab-buttons {
    display: none !important;
  }
  #content-2 {
    display: none;
  }
}
#content-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#content-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#content-2::after {
  content: "";
  display: block;
  width: calc(33.3333333333% - 12px);
}

.category-group {
  display: none;
}
.category-group.active {
  display: block;
}
.category-group.group1 {
  width: 100%;
}
.category-group.group2 {
  width: 100%;
}

.pref-btn {
  background: none;
  border: none;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  color: #000;
}
.pref-btn:hover {
  opacity: 0.8;
}

.area-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.area {
  background: none;
  border: none;
  font-size: 1em;
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 100%;
  background: #fff url("./images/ico_arrow01.svg") no-repeat right 20px center/7px;
  border: 2px solid #000;
  padding: 10px 2px 10px 16px;
  border-radius: 48px;
  text-decoration: none;
  color: #000;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .tab-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .category-group {
    display: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .category-group.active {
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .area-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .area {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.sec02__bg--bottom {
  bottom: 0;
}

/*anime*/
.js-fade-in-element {
  opacity: 0;
  /* 初期状態は透明 */
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  /* 下から出現するために少し下に移動 */
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  /* アニメーションの設定 */
}

.js-fade-in {
  opacity: 1;
  /* 表示状態 */
  -webkit-transform: translateY(0);
          transform: translateY(0);
  /* 元の位置に戻す */
}

.js-bubble-element {
  opacity: 0;
  /* 初期状態は透明 */
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  /* 初期状態は小さく */
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  /* アニメーションの設定 */
}

.js-bubble-pop {
  opacity: 1;
  /* 表示状態 */
  -webkit-transform: scale(1);
          transform: scale(1);
  /* 元のサイズに戻す */
}

.js-slide-in-right {
  opacity: 0;
  /* 初期状態は透明 */
  -webkit-transform: translateX(500px);
          transform: translateX(500px);
  /* 右から出てくるために右に移動 */
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  /* アニメーションの設定 */
}

.js-slide-in-right-active {
  opacity: 1;
  /* 表示状態 */
  -webkit-transform: translateX(0);
          transform: translateX(0);
  /* 元の位置に戻す */
}

.js-slide-in-left {
  opacity: 0;
  /* 初期状態は透明 */
  -webkit-transform: translateX(-500px);
          transform: translateX(-500px);
  /* 左から出てくるために左に移動 */
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  /* アニメーションの設定 */
}

.js-slide-in-left-active {
  opacity: 1;
  /* 表示状態 */
  -webkit-transform: translateX(0);
          transform: translateX(0);
  /* 元の位置に戻す */
}

/*footer 追加*/
.pagePathWrap .pagePathParent ul {
  list-style: none;
}

/*
＝＝＝以下の記述はfooterに関連したcssです＝＝＝
*/
/* パンくず */
.pagePathParent {
  width: 100%;
  display: inline-block;
  /* font-size: var(--px11); */
  background-color: rgb(0, 170, 238);
  overflow: hidden;
}

/* パンくずリスト */
.pagePathParent > ul {
  margin-left: 20px;
  float: left;
}

/* パンくずリスト項目 */
.pagePathParent > ul > li {
  float: left;
}

/* パンくずリスト内ホームアイコン */
.pagePathParent > ul > li > img {
  width: 15px;
  margin-right: 5px;
  padding-top: 11px;
}

/* １パンくずのあとに＞表示 */
.pagePath::after {
  content: ">";
  margin: 0 3px;
  color: #fff;
}

/* 最後の子の場合は＞非表示 */
.pagePath:last-child::after {
  display: none;
}

/* パンくずリンク */
.pagePathLink {
  display: inline-block;
  text-decoration: underline;
  color: #fff;
  line-height: 40px;
}

/* 現在地表示場所 */
.pagePathChild01 {
  width: auto;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px 0 25px;
  float: left;
  position: relative;
  z-index: 1;
}

/* リボンデザイン */
.pagePathChild01::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 6px;
  left: -16px;
  border-width: 15px 15px 15px 15px;
  border-color: transparent rgb(0, 170, 238) rgb(0, 170, 238) transparent;
  border-style: solid;
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.18);
          box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.18);
}

.pagePathChild01::after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
  top: -15px;
  right: -15px;
  border-width: 15px 15px 15px 15px;
  border-color: transparent transparent rgb(0, 170, 238) transparent;
  border-style: solid;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* box-shadow: 0 2px 2px -2px var(--shadow); */
}

.pagePathChild02 {
  float: left;
  position: relative;
}

.pagePathChild02::after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
  bottom: -15px;
  right: -35px;
  border-width: 15px 15px 15px 15px;
  border-color: transparent transparent transparent rgb(0, 170, 238);
  border-style: solid;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

/* 現在地 */
.nowHere {
  color: var(--mynavi-main);
}

/*--------------------
  パンくず下関連サイト
----------------------*/
/*パンくず下囲み*/
.simpleRelationFooter {
  width: 100%;
  background-color: rgb(238, 238, 238);
  margin-top: -2px;
  padding: 32px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 780px) {
  .simpleRelationFooter {
    padding: 28px 0;
  }
  /* パンくず */
  .pagePathWrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .pagePathParent {
    display: inline-block;
    font-size: var(--px11);
    background-color: var(--mynavi-main);
    width: 800px;
  }
  /* パンくずリスト */
  .pagePathParent > ul {
    margin-left: 20px;
    float: left;
  }
  /* パンくずリスト項目 */
  .pagePathParent > ul > li {
    float: left;
  }
}
/*コンテンツ幅囲み*/
.contentWidthWrap {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contentWidthWrap {
    max-width: 1034px;
    padding: 0 17px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
  }
}
/*マイナビロゴ*/
.simpleRelationFooterMynaviLogo {
  width: 62px;
  height: auto;
  float: left;
  margin-right: 20px;
}

@media (min-width: 768px) {
  .simpleRelationFooterMynaviLogo {
    width: 82px;
    height: auto;
    margin-right: 0;
  }
}
/*関連サイト囲み*/
.simpleRelationSiteWrap {
  float: left;
  width: calc(100% - 82px);
}

@media (min-width: 768px) {
  .simpleRelationSiteWrap {
    max-width: calc(100% - 154px);
    text-align: center;
  }
}
/*関連サイト*/
.simpleRelationSite {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .simpleRelationSite {
    margin-bottom: 8px;
  }
}
/*関連サイト項目*/
.simpleRelationSiteItem {
  display: inline;
  font-size: var(--px10);
  line-height: var(--px16);
}

@media (min-width: 768px) {
  .simpleRelationSiteItem {
    font-size: var(--px11);
  }
}
/* 項目区切り線 */
.simpleRelationSiteItem::after {
  content: "|";
  display: inline;
  margin: 0 5px;
}

/* 最後の項目時項目区切り線非表示 */
.simpleRelationSiteItem:last-child::after {
  display: none;
}

/* コピーライター */
.copyright {
  font-size: var(--px10);
}

@media (min-width: 768px) {
  .copyright {
    float: none;
    font-size: var(--px11);
  }
}
/*プライバシーマーク*/
.privacyLink,
.privacyMark {
  display: none;
}

@media (min-width: 768px) {
  .privacyLink,
  .privacyMark {
    display: block;
    float: right;
    width: 72px;
    height: 72px;
  }
  .privacyLink img {
    width: 72px;
  }
}
/* 企業向けリンク \*/
.linkForKigyo {
  text-decoration: none;
  margin: 5px 0px 10px 0px;
  text-align: center;
  font-weight: 400;
}

.linkForKigyo a {
  text-decoration: none;
  color: #000;
}

.linkForKigyo a:hover {
  font-weight: bold;
  color: #00aaee;
}

/*
＝＝＝このページにかかわるcssは以下に記述＝＝＝
*/
/*# sourceMappingURL=styles.css.map */