@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
*************************************************************/
.content {
  width: 1000px;
  margin: 50px auto 120px;
}

@media screen and (max-width: 768px) {
  .content {
    width: 86vw;
    margin: 30px 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: 14px;
  }
}

.box_intoroduction {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .box_intoroduction {
    margin-top: 20px;
  }
}

.box_intoroduction .box {
  margin-top: 60px;
  position: relative;
}

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

.box_intoroduction .box .item {
  position: relative;
  height: 400px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .box_intoroduction .box .item {
    height: 110vw;
  }
}

.box_intoroduction .box .item .imgArea {
  width: 600px;
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width: 768px) {
  .box_intoroduction .box .item .imgArea {
    width: 100%;
  }
}

.box_intoroduction .box .item .imgArea img {
  border-top-left-radius: 20px;
}

.box_intoroduction .box .item .txtArea {
  width: 530px;
  background-color: #fff;
  border-top-right-radius: 20px;
  position: relative;
  z-index: 1;
  padding: 40px 40px 0 0;
  top: 50px;
  min-height: 350px;
}

@media screen and (max-width: 768px) {
  .box_intoroduction .box .item .txtArea {
    width: 90%;
    padding: 6% 6% 0 0;
    min-height: 30vw;
    top: 45vw;
  }
}

.box_intoroduction .box .item .txtArea h3 {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .box_intoroduction .box .item .txtArea h3 {
    font-size: 16px;
  }
}

.box_intoroduction .box .item .txtArea p {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .box_intoroduction .box .item .txtArea p {
    margin-top: 10px;
  }
}

.box_intoroduction .box .item_txtArea p {
  margin-top: 20px;
}

.box_intoroduction .btn {
  text-align: center;
}

.box_intoroduction .btn a {
  margin: 50px auto 80px;
}

.box_intoroduction.intoroduction02 .item {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .box_intoroduction.intoroduction02 .item {
    margin-bottom: 0;
    height: 140vw;
  }
}

.box_intoroduction.intoroduction02 .item .imgArea {
  left: 0;
  right: auto;
}

.box_intoroduction.intoroduction02 .item .imgArea img {
  border-top-left-radius: 0px;
  border-top-right-radius: 20px;
}

.box_intoroduction.intoroduction02 .item .txtArea {
  position: absolute;
  right: 0;
  border-top-right-radius: 0px;
  border-top-left-radius: 20px;
  padding: 40px 0 0 40px;
}

@media screen and (max-width: 768px) {
  .box_intoroduction.intoroduction02 .item .txtArea {
    padding: 6% 0 0 6%;
  }
}

@media screen and (max-width: 768px) {
  .box_intoroduction.intoroduction02 .item:nth-child(2) {
    margin-bottom: 0;
    height: 100vw;
  }
}

.box_intoroduction.intoroduction02 .item:nth-child(2) .imgArea {
  left: auto;
  right: 0;
}

.box_intoroduction.intoroduction02 .item:nth-child(2) .imgArea img {
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
}

.box_intoroduction.intoroduction02 .item:nth-child(2) .txtArea {
  position: absolute;
  left: 0;
  border-top-right-radius: 20px;
  border-top-left-radius: 0px;
  padding: 40px 40px 0 0;
}

@media screen and (max-width: 768px) {
  .box_intoroduction.intoroduction02 .item:nth-child(2) .txtArea {
    padding: 6% 0 0 6%;
  }
}

.company_intoroduction-gallery .content {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .company_intoroduction-gallery .content {
    margin-bottom: 40px;
  }
}

.company_intoroduction-gallery .wrapper {
  max-width: 800px;
  margin: 50px auto 0;
}

@media screen and (max-width: 768px) {
  .company_intoroduction-gallery .wrapper {
    margin: 20px auto 0;
  }
}

.company_intoroduction-gallery .slide-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ddd;
}

.company_intoroduction-gallery .main-swiper .slide-content {
  height: 300px;
}

.company_intoroduction-gallery .thumb-swiper {
  margin-top: 20px;
}

.company_intoroduction-gallery .thumb-swiper .swiper-slide {
  width: 100px;
  cursor: pointer;
}

.company_intoroduction-gallery .thumb-swiper .slide-content {
  height: 50px;
}

.company_intoroduction-btnArea .btn {
  text-align: center;
}

.company_intoroduction-btnArea .btn a {
  margin: 50px auto 0;
}

@media screen and (max-width: 768px) {
  .company_intoroduction-btnArea .btn a {
    margin: 30px auto 0;
  }
}

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