@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
*************************************************************/
/************************************************************
SMALL screen
*************************************************************/
@media screen and (max-width: 768px) {
  .content {
    width: 86vw;
    margin: 60px auto 80px;
  }
  .linkList {
    text-align: center;
    margin-top: 30px;
  }
  .linkList li {
    width: 100%;
    height: 58vw;
    background: url("/assets/images/company/index/bg_img01.jpg") 0 0;
    background-size: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #fff;
    padding-top: 10vw;
  }
  .linkList li p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .linkList li p.font-quest {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .linkList li .btn a {
    display: block;
    height: 40px;
    width: 250px;
    border-radius: 100px;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    margin: 0 auto 10px;
    line-height: 40px;
  }
  .linkList li .btn a.more {
    width: 100px;
    font-family: "Questrial", sans-serif;
  }
  .linkList li .btn a:hover {
    background-color: #fcc827;
  }
  .linkList li:nth-child(2) {
    background: url("/assets/images/company/index/bg_img02.jpg") 0 0;
    background-size: cover;
    padding-top: 6vw;
  }
  .linkList li:nth-child(3) {
    background: url("/assets/images/company/index/bg_img03.jpg") 0 0;
    background-size: cover;
  }
  .linkList li:nth-child(4) {
    background: url("/assets/images/company/index/bg_img04.jpg") 0 0;
    background-size: cover;
  }
  .linkList li:nth-child(5) {
    background: url("/assets/images/company/index/bg_img05.jpg") 0 0;
    background-size: cover;
  }
}

/************************************************************
LARGE screen
*************************************************************/
@media screen and (min-width: 769px) {
  .content {
    width: 1000px;
    margin: 0 auto 120px;
  }
  .linkList {
    margin-top: 100px;
    text-align: center;
  }
  .linkList ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    flex-wrap: wrap;
  }
  .linkList li {
    width: 460px;
    height: 350px;
    background: url("/assets/images/company/index/bg_img01.jpg") 0 0;
    background-size: cover;
    border-radius: 15px;
    margin-bottom: 80px;
    color: #fff;
    padding-top: 100px;
  }
  .linkList li p {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
  }
  .linkList li p.font-quest {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .linkList li .btn a {
    display: block;
    height: 40px;
    width: 250px;
    border-radius: 100px;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    margin: 0 auto 10px;
    line-height: 40px;
    transition: .2s;
  }
  .linkList li .btn a.more {
    width: 100px;
    font-family: "Questrial", sans-serif;
  }
  .linkList li .btn a:hover {
    background-color: #fcc827;
  }
  .linkList li:nth-child(2) {
    background: url("/assets/images/company/index/bg_img02.jpg") 0 0;
    background-size: cover;
  }
  .linkList li:nth-child(3) {
    background: url("/assets/images/company/index/bg_img03.jpg") 0 0;
    background-size: cover;
  }
  .linkList li:nth-child(4) {
    background: url("/assets/images/company/index/bg_img04.jpg") 0 0;
    background-size: cover;
  }
  .linkList li:nth-child(5) {
    background: url("/assets/images/company/index/bg_img05.jpg") 0 0;
    background-size: cover;
  }
}

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

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;
}

.company_info-box {
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  .company_info-box {
    padding-top: 50px;
  }
}

.company_info-box .txt_lead {
  line-height: 1.8;
  text-align: center;
  margin: 40px 0;
}

#company01 .icon {
  background-color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  padding-top: 18px;
  line-height: 1em;
}

@media screen and (max-width: 768px) {
  #company01 .icon {
    width: 16vw;
    height: 16vw;
    padding-top: 3vw;
  }
}

#company01 .icon span {
  display: block;
}

#company01 .icon span:last-child {
  display: inline-block;
  border-top: 1px solid #000;
  font-family: "Questrial", sans-serif;
  margin-top: 8px;
  padding-top: 8px;
}

#company01 .imgPiano {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}

#company01 .imgPiano img {
  width: 340px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#company01 .imgPiano:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -25px;
  width: 100%;
  height: 150px;
  background-color: #FFDB89;
}

#company01 .imgHeart {
  width: 790px;
  margin: 80px auto;
}

@media screen and (max-width: 768px) {
  #company01 .imgHeart {
    width: 100%;
  }
}

#company01 .box_policy h4 {
  color: #ee7602;
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #company01 .box_policy h4 {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

#company01 .box_policy .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  #company01 .box_policy .box {
    display: block;
  }
}

#company01 .box_policy .box .item {
  width: 480px;
  height: 190px;
  background-color: rgba(255, 238, 186, 0.38);
  border-radius: 15px;
  padding: 35px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #company01 .box_policy .box .item {
    padding: 5%;
    height: auto;
    width: 100%;
    margin-bottom: 20px;
  }
}

#company01 .box_policy .box .item .txtArea {
  width: 310px;
}

@media screen and (max-width: 768px) {
  #company01 .box_policy .box .item .txtArea {
    width: 73%;
  }
}

#company01 .box_policy .box .item .txtArea h5 {
  color: #ee7602;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  #company01 .box_policy .box .item .txtArea h5 {
    font-size: 14px;
  }
}

#company01 .box_plan {
  margin-top: 40px;
}

#company01 .box_plan h4 {
  color: #ee7602;
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #company01 .box_plan h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

#company01 .box_plan .txt_lead {
  text-align: center;
}

#company01 .box_plan .item {
  position: relative;
  background-color: rgba(255, 238, 186, 0.38);
  border-radius: 15px;
  padding: 50px 35px 35px;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  #company01 .box_plan .item {
    padding: 10% 5% 5%;
    margin-top: 40px;
  }
}

#company01 .box_plan .item .ttl {
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  width: 200px;
  height: 50px;
  line-height: 48px;
  background: #FFFFFF;
  border: 1px solid #ee7602;
  border-radius: 100px;
  font-size: 18px;
  color: #ee7602;
}

@media screen and (max-width: 768px) {
  #company01 .box_plan .item .ttl {
    width: 50%;
    height: 40px;
    line-height: 38px;
    font-size: 14px;
    top: -20px;
  }
}

#company01 .box_plan .item .ttl span {
  font-family: "Questrial", sans-serif;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  #company01 .box_plan .item .ttl span {
    font-size: 16px;
  }
}

#company01 .box_plan .item ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #company01 .box_plan .item ul li {
    margin-bottom: 20px;
  }
}

#company01 .box_plan .item ul li .txtArea {
  width: 820px;
}

@media screen and (max-width: 768px) {
  #company01 .box_plan .item ul li .txtArea {
    width: 73%;
  }
}

#company01 .box_plan .item ul li b {
  display: block;
}

#company01 .box_plan .item ul li:last-child {
  margin-bottom: 0;
}

#company02 ul {
  background-color: #F3F3F3;
  padding: 15px 40px;
  border-radius: 10px;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  #company02 ul {
    margin-top: 30px;
    padding: 6%;
  }
}

#company02 ul li {
  display: flex;
  text-align: left;
  border-bottom: 1px solid #C4C4C4;
  padding: 25px 0;
}

@media screen and (max-width: 768px) {
  #company02 ul li {
    padding: 5% 0;
  }
}

#company02 ul li:last-child {
  border-bottom: 0;
}

#company02 ul li .ttl {
  width: 240px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  #company02 ul li .ttl {
    width: 30%;
  }
}

#company02 ul li .detail {
  width: 650px;
  text-align: left;
  display: flex;
}

@media screen and (max-width: 768px) {
  #company02 ul li .detail {
    width: 65%;
    display: block;
  }
}

#company02 ul li .detail span {
  display: block;
}

#company02 ul li .detail span:last-child {
  width: 160px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  #company02 ul li .detail span:last-child {
    margin-left: 0;
    margin-top: 10px;
  }
}

#company03 iframe {
  margin: 50px 0 30px;
}

@media screen and (max-width: 768px) {
  #company03 iframe {
    margin: 30px 0;
    width: 100%;
    height: 250px;
  }
}

#company03 .box {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #company03 .box {
    display: block;
  }
}

#company03 .item {
  width: 50%;
}

@media screen and (max-width: 768px) {
  #company03 .item {
    width: 100%;
  }
}

#company03 .item ul li {
  line-height: 2;
  margin-bottom: 10px;
}

#company03 .item ul li .ttl {
  font-weight: 500;
  color: #ee7602;
}

#company04 .box {
  background-color: #F3F3F3;
  padding: 35px;
  margin: 50px auto 0;
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  #company04 .box {
    margin: 30px auto 0;
    padding: 2% 6% 6%;
  }
}

#company04 .list {
  margin: auto;
  padding: 0;
}

#company04 .list li {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #C4C4C4;
}

@media screen and (max-width: 768px) {
  #company04 .list li {
    display: block;
    padding: 5% 0;
  }
}

#company04 .list li .ttl {
  width: 240px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  #company04 .list li .ttl {
    width: 100%;
  }
}

#company04 .list li .detail {
  width: 650px;
}

@media screen and (max-width: 768px) {
  #company04 .list li .detail {
    width: 100%;
  }
}

#company04 .list li.is-hidden {
  display: none;
  opacity: 0;
  height: 0;
  margin: 0;
}

#company04 .more {
  text-align: center;
  margin-top: 20px;
  width: 150px;
  height: 50px;
  line-height: 50px;
  font-family: "Questrial", sans-serif;
  background: #FFFFFF;
  border-radius: 100px;
  margin: 30px auto 0;
  transition: all 0.2s ease 0s;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  #company04 .more {
    margin-top: 20px;
    width: 35%;
    height: 40px;
    line-height: 40px;
  }
}

@media screen and (min-width: 769px) {
  #company04 .more:hover {
    background-color: #fcc827;
  }
}

#company05 .box {
  margin-top: 50px;
  border: 1px solid #fcc827;
  padding: 35px;
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  #company05 .box {
    margin-top: 30px;
    padding: 6%;
  }
}

#company05 .box h4 {
  font-weight: 500;
  font-size: 22px;
  color: #ee7602;
}

@media screen and (max-width: 768px) {
  #company05 .box h4 {
    font-size: 18px;
  }
}

#company05 .box ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#company05 .box ul:after {
  content: "";
  width: 250px;
  height: 0;
}

#company05 .box ul li {
  width: 250px;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  #company05 .box ul li {
    width: 45%;
    margin-top: 20px;
  }
}

#company05 .box ul li p {
  margin-top: 10px;
}

#company05 .box ul li p span {
  display: block;
  font-weight: 500;
}

#company05 .box .item {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  #company05 .box .item {
    display: block;
    margin-top: 20px;
  }
}

#company05 .box .item .imgArea {
  width: 413px;
}

@media screen and (max-width: 768px) {
  #company05 .box .item .imgArea {
    width: 100%;
    margin-bottom: 20px;
  }
}

#company05 .box .item .imgArea img {
  border: 1px solid #E5E5E5;
}

#company05 .box .item .txtArea {
  width: 460px;
}

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

#company05 .box .item .txtArea h5 {
  color: #ee7602;
  font-weight: 500;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  #company05 .box .item .txtArea h5 {
    font-size: 15px;
  }
}

#company05 .box .item .txtArea p {
  margin: 10px 0 20px;
}

#company05 .box .item .txtArea p:last-child {
  margin-bottom: 0;
}

#company06 {
  margin-bottom: 150px;
}

@media screen and (max-width: 768px) {
  #company06 {
    margin-bottom: 100px;
  }
}

#company06 .box {
  margin-top: 50px;
}

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

#company06 .imgArea {
  width: 300px;
  border: 1px solid #E5E5E5;
}

@media screen and (max-width: 768px) {
  #company06 .imgArea {
    width: 60%;
    margin: 0 auto;
  }
}

.modaal-close:hover {
  background-color: #fcc827 !important;
}

.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
  background: #fff !important;
}

/************************************************************
SMALL screen
*************************************************************/
@media screen and (max-width: 768px) {
  .content {
    width: 86vw;
    margin: 0 auto;
  }
  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;
  }
  .company_info-box .txt_lead {
    line-height: 1.8;
    text-align: center;
    margin: 20px 0;
  }
  #company01.company_info-box {
    padding-top: 20px;
  }
  #company01 .imgPiano {
    margin-bottom: 25px;
  }
  #company01 .imgPiano img {
    width: 50%;
  }
  #company01 .imgPiano:after {
    bottom: -25px;
    width: 100%;
    height: 80px;
  }
  #company01 .imgHeart {
    width: 100%;
    margin: 60px auto 40px;
  }
}

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

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