@charset "UTF-8";
.color-orange {
  color: #ee7602;
}

.color-yellow {
  color: #fcc827;
}

.color-red {
  color: #D83232;
}

.bg-color-orange {
  background-color: #ee7602;
}

.bg-color-yellow {
  background-color: #fcc827;
}

.bg-color-yellow-light {
  background-color: rgba(255, 238, 186, 0.38);
}

.border-color-orange {
  border-color: #ee7602;
}

.border-color-yellow {
  border-color: #fcc827;
}

/*****************************************
fontアイコンをmixinに登録
*****************************************/
/****************************************
角丸ボタン
デフォルトは背景白、
.round-btn-yellowも追加で背景黄色になる
*****************************************/
@media screen and (max-width: 768px) {
  .round-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 225px;
    height: 45px;
    background-color: white;
    border-radius: 23px;
    font-size: 15px;
    font-weight: 500;
  }
  .round-btn.round-btn-yellow {
    background-color: #fcc827;
  }
}

@media screen and (min-width: 769px) {
  .round-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 70px;
    background-color: white;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color .2s;
  }
  .round-btn.round-btn-yellow {
    background-color: #fcc827;
  }
  .round-btn.round-btn-orange {
    background-color: #ee7602;
  }
  .round-btn.round-btn-orange:hover {
    background-color: #fcc827;
  }
  .round-btn:hover {
    background-color: #ee7602;
  }
}

/****************************************
タイトル
*****************************************/
@media screen and (max-width: 768px) {
  .ttl_bgY {
    width: 100%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 45px;
    background-color: #fcc827;
    font-size: 15px;
  }
}

@media screen and (min-width: 769px) {
  .ttl_bgY {
    width: 100%;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 70px;
    background-color: #fcc827;
  }
}

/****************************************
センタリング
*****************************************/
.center {
  text-align: center;
}

input[type="text"],
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  color: black;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/************************************************************
COMMON screen
*************************************************************/
section.ancor {
  margin-top: 70px;
}

section.ancor ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  height: 82px;
}

section.ancor ul li a {
  text-align: center;
  display: block;
  width: 140px;
  height: 50px;
  line-height: 50px;
  background: #F3F3F3;
  border-radius: 100px;
  position: relative;
}

section.ancor ul li a:hover {
  opacity: 0.8;
}

section.ancor ul li a:after {
  content: "";
  display: block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: translateY(-25%) rotate(135deg);
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
}

/************************************************************
SMALL screen
*************************************************************/
@media screen and (max-width: 768px) {
  section.ancor {
    margin-top: 30px;
  }
  section.ancor ul {
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
  }
  section.ancor ul li {
    margin: 0 5px 35px;
  }
  section.ancor ul li a {
    width: 90px;
    height: 35px;
    line-height: 35px;
    background: #F3F3F3;
    border-radius: 40px;
  }
  section.ancor ul li a:hover {
    opacity: 0.8;
  }
  section.ancor ul li a:after {
    width: 10px;
    height: 10px;
    bottom: -15px;
  }
}

/************************************************************
LARGE screen
*************************************************************/
@media screen and (min-width: 769px) {
  section.ancor ul li a:hover:after {
    transition: 0.1s;
    bottom: -25px;
  }
}

/************************************************************
COMMON screen
*************************************************************/
.content {
  width: 1000px;
  margin: 50px auto 120px;
}

@media screen and (max-width: 768px) {
  .content {
    width: 86vw;
    margin: 0 auto 80px;
  }
}

.kv-b {
  padding: 30px 0;
}

@media screen and (max-width: 768px) {
  .kv-b {
    padding: 20px 0;
  }
}

.kv-b h2 {
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .kv-b h2 {
    font-size: 16px;
  }
}

.ancor_livecamera .content {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .ancor_livecamera .content {
    margin: 0 auto 50px;
  }
}

.ancor_livecamera ul {
  justify-content: center !important;
}

@media screen and (max-width: 768px) {
  .ancor_livecamera ul {
    justify-content: space-between !important;
  }
}

.ancor_livecamera ul li {
  width: 240px;
  margin: 0 20px;
}

@media screen and (max-width: 768px) {
  .ancor_livecamera ul li {
    width: 48%;
    margin: 0 !important;
  }
}

.ancor_livecamera ul li a {
  width: 100% !important;
}

.ancor_livecamera ul li a.active {
  background-color: #fcc827;
}

@media screen and (max-width: 768px) {
  .company_livecamera-box .content {
    margin: 20px auto 80px;
  }
}

.company_livecamera-box .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 920px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .company_livecamera-box .box {
    width: 100%;
    display: block;
  }
}

.company_livecamera-box .box .item {
  width: 420px;
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .company_livecamera-box .box .item {
    width: 100%;
    margin-top: 30px;
  }
}

.company_livecamera-box .box .item h4 {
  width: 150px;
  height: 40px;
  background-color: #F3F3F3;
  line-height: 40px;
  border-radius: 40px;
  margin: 0 auto 20px;
  font-weight: 500;
}

/************************************************************
SMALL screen
*************************************************************/
@media screen and (max-width: 768px) {
  .content {
    width: 86vw;
    margin: 60px auto 80px;
  }
}

/************************************************************
LARGE screen
*************************************************************/
/************************************************************
COMMON screen
*************************************************************/
/************************************************************
SMALL screen
*************************************************************/
/************************************************************
LARGE screen
*************************************************************/
