@charset "UTF-8";
/*---------------------------------
o-wrap
---------------------------------*/
/* PC */
@media print, screen and (min-width: 769px) {
  .o-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .o-wrap-img {
    width: 365px;
    min-width: 365px;
    margin-left: 34px;
  }
}

/* SP */
@media print, screen and (max-width: 768px) {
  .o-wrap-img {
    margin-top: 30px;
  }
}

/*---------------------------------
o-slider
---------------------------------*/
/* PC */
@media print, screen and (min-width: 769px) {
  .o-slider {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 40px;
  }
  .o-slider__box {
    max-width: 316px;
    width: 33%;
    min-height: 185px;
  }
  .o-slider__box:not(:last-of-type) {
    margin-right: 16px;
  }
}

/* SP */
@media print, screen and (max-width: 768px) {
  .o-slider {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 60px;
    width: 100vw;
    position: relative;
    transform: translate(-50%, 0) !important;
    left: 50%;
  }
  .o-slider__box {
    width: calc(100vw - 100px);
    min-height: 160px;
    margin: 0 2.5px;
  }
}

/*---------------------------------
o-mission
---------------------------------*/
/* PC */
@media print, screen and (min-width: 769px) {
  .o-mission__box {
    display: flex;
    gap: 20px;
  }

  .o-mission__box-item {
    position: relative;
    width: 33%;
    padding: 20px 20px 28px;
    background: #F2F3F0;
  }

  .o-mission__box-item::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #C02 50%, transparent 50%);
  }

  .o-mission__box-head {
    text-align: center;
    color: #C02;
    font-weight: bold;
  }

  .o-mission__box-head-sub {
    display: block;
    font-size: 14px;
  }

  .o-mission__box-head-main {
    display: block;
    font-size: 24px;
  }

  .o-mission__box-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 160px;
  }

  .o-mission__box-body-txt {
    font-size: 16px;
  }

  .o-mission__box-body-list-txt {
    list-style: none;
  }

  .o-mission__box-body-list-txt + .o-mission__box-body-list-txt {
    margin-top: 5px;
  }
}

/* SP */
@media print, screen and (max-width: 768px) {
  .o-mission__box {
    display: flex;
    flex-direction: column;
    gap: 13px;
  }

  .o-mission__box-item {
    position: relative;
    width: 100%;
    padding: 20px 30px 28px;
    background: #F2F3F0;
  }

  .o-mission__box-item::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #C02 50%, transparent 50%);
  }

  .o-mission__box-head {
    text-align: center;
    color: #C02;
    font-weight: bold;
  }

  .o-mission__box-head-sub {
    display: block;
    font-size: 14px;
  }

  .o-mission__box-head-main {
    display: block;
    font-size: 24px;
  }

  .o-mission__box-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .o-mission__box-body-txt {
    font-size: 16px;
  }

  .o-mission__box-body-list-txt {
    list-style: none;
  }

  .o-mission__box-body-list-txt + .o-mission__box-body-list-txt {
    margin-top: 5px;
  }
}

/*---------------------------------
o-slogan
---------------------------------*/
/* PC */
@media print, screen and (min-width: 769px) {
  .o-slogan {
    position: relative;
  }
  .o-slogan__box {
    position: relative;
    width: 100%;
    max-width: 525px;
    background-color: #F2F3F0;
    padding: 25px 0;
    margin: 0 auto;
  }
  .o-slogan__box::before,
  .o-slogan__box::after {
    position: absolute;
    content: "";
    width: 980px;
    height: 117px;
    background-size: 100% 200%;
    background-position: 0 0;
    transform: translateX(-50%);
    z-index: -1;
  }
  .o-slogan__box::before {
    left: 50%;
    top: -30px;
    background-image: linear-gradient(to right,white 50%,#F8CAB9 50%);
  }

  .o-slogan__box::after {
    left: 50%;
    bottom: -30px;
    background-image: linear-gradient(to left,white 50%,#F8CAB9 50%);
  }
  .o-slogan__box-txt {
    font-weight: bold;
    font-size: 30px;
    line-height: 55px;
    text-align: center;
    line-height: 1.28;
  }
  .o-slogan__box-txt-sub {
    letter-spacing: 3.6px;
  }
  .o-slogan__box-txt-main {
    letter-spacing: 5px;
  }
  .o-slogan__box-txt-bold {
    color: #CC0022;
  }
  .o-slogan__box-txt-bold-large {
    color: #CC0022;
    font-size: 42px;
  }
}

/* SP */
@media print, screen and (max-width: 768px) {
  .o-slogan {
    position: relative;
  }
  .o-slogan__box {
    position: relative;
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    background-color: #F2F3F0;
    padding: 25px 0;
  }
  .o-slogan__box::before,
  .o-slogan__box::after {
    position: absolute;
    content: "";
    width: 100vw;
    height: 80px;
    background-size: 100% 200%;
    background-position: 0 0;
    transform: translateX(-50%);
    z-index: -1;
  }
  .o-slogan__box::before {
    left: 50%;
    top: -30px;
    background-image: linear-gradient(to right,white 50%,#F8CAB9 50%);
  }

  .o-slogan__box::after {
    left: 50%;
    bottom: -30px;
    background-image: linear-gradient(to left,white 50%,#F8CAB9 50%);
  }
  .o-slogan__box-txt {
    font-weight: bold;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    line-height: 1.32;
  }
  .o-slogan__box-txt-sub {
    letter-spacing: .72px;
  }
  .o-slogan__box-txt-main {
    letter-spacing: .93px;
  }
  .o-slogan__box-txt-bold {
    color: #CC0022;
  }
  .o-slogan__box-txt-bold-large {
    color: #CC0022;
    font-size: 42px;
  }
}

/*---------------------------------
rn23-point
---------------------------------*/
/* PC */
@media print, screen and (min-width: 769px) {
  .rn23-point{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .rn23-point__wrap{
    width: calc(34% - 7px);
    max-width: 320px;
    background-color: #F2F3F0;
    padding: 36px 0;
    position: relative;
  }
  .rn23-point__wrap::before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 18px 0 0;
    border-color: #CC0022 transparent transparent transparent;
    position: absolute;
    left: 0;
    top: 0;
  }
  .rn23-point__wrap-txt{
    text-align: center;
    font-size: 18px;
  }
  .rn23-point__wrap-txt-color{
    color: #CC0022;
    font-weight: bold;
  }
}

/* SP */
@media print, screen and (max-width: 768px) {
  .rn23-point__wrap{
    width: 100%;
    background-color: #F2F3F0;
    padding: 18px 0;
    position: relative;
  }
  .rn23-point__wrap:not(:last-of-type){
    margin-bottom: 16px;
  }
  .rn23-point__wrap::before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 18px 0 0;
    border-color: #CC0022 transparent transparent transparent;
    position: absolute;
    left: 0;
    top: 0;
  }
  .rn23-point__wrap-txt{
    text-align: center;
    font-size: 16px;
  }
  .rn23-point__wrap-txt-color{
    color: #CC0022;
    font-weight: bold;
  }
}

/*---------------------------------
o-vision
---------------------------------*/
/* PC */
@media print, screen and (min-width: 769px) {
  .o-vision__lead-ttl {
    margin-bottom: 20px;
  }

  .o-vision__lead-ttl-txt {
    padding-bottom: 5px;
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(transparent 50%, #FCF0EC 50%);
  }

  .o-vision__lead-txt {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
  }

  .o-vision__box {
    display: flex;
    gap: 16px;
  }

  .o-vision__box-item {
    position: relative;
    width: 50%;
    padding: 20px 20px 28px;
    background: #FCF0EC;
  }

  .o-vision__box-item::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #C02 50%, transparent 50%);
  }

  .o-vision__box-head {
    text-align: center;
    color: #C02;
    font-weight: bold;
  }

  .o-vision__box-head-main {
    display: block;
    font-size: 14px;
  }

  .o-vision__box-body-txt {
    font-size: 16px;
  }
}

/* SP */
@media print, screen and (max-width: 768px) {
  .o-vision__lead-ttl {
    margin: 0 0 20px;
  }

  .o-vision__lead-ttl-txt {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(transparent 50%, #FCF0EC 50%);
  }

  .o-vision__lead-txt {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .o-vision__box {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .o-vision__box-item {
    position: relative;
    width: 100%;
    padding: 20px 20px 28px;
    background: #FCF0EC;
  }

  .o-vision__box-item::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #C02 50%, transparent 50%);
  }

  .o-vision__box-head {
    text-align: center;
    color: #C02;
    font-weight: bold;
  }

  .o-vision__box-head-main {
    display: block;
    font-size: 14px;
  }

  .o-vision__box-body-txt {
    font-size: 16px;
  }
}
