@charset "utf-8";
/*reset*/
body {
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
}
 
html {
  height: -webkit-fill-available;
}
*, *::before, *::after {
  box-sizing: border-box
}
* {
  margin: 0
}
body {
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333333;
  -webkit-font-smoothing: antialiased
}
@media screen and (max-width: 960px) {
  body {
    font-size: calc(100vw * 14 / 375);
  }
}
img, picture, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word
}
#root, #__next {
  isolation: isolate
}
img {
  width: 100%;
}
a {
  color: #E17F70;
  text-decoration: none;
  transition: 0.3s;
  border-bottom: solid 1px #E17F70;
}
@media screen and (min-width: 961px) {
  a:hover {
    color: #E9B884;
  }
}
/*general class*/
.u-is-pc {
  display: block;
}
.u-is-sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .u-is-pc {
    display: none;
  }
  .u-is-sp {
    display: block;
  }
}
.pic-color1 {
  color: #0C7EB4;
}
.pic-color2 {
  color: #891D68;
}
.pic-color3 {
  color: #056889;
}
.pic-color4 {
  color: #A3D4D1;
}
.pic-color5 {
  color: #6DA4AA;
}
.pic-color6 {
  color: #FFFFFF;
}
.pic-color7 {
  color: #955D23;
}
.h-ft-1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 960px) {
  .h-ft-1 {
    font-size: calc(100vw * 28 / 375);
  }
}
.h-ft-2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 960px) {
  .h-ft-2 {
    font-size: calc(100vw * 24 / 375);
  }
}
.h-ft-3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 960px) {
  .h-ft-3 {
    font-size: calc(100vw * 18 / 375);
  }
}
.h-ft-4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 960px) {
  .h-ft-4 {
    font-size: calc(100vw * 16 / 375);
  }
}
.h-ft-5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 960px) {
  .h-ft-5 {
    font-size: calc(100vw * 14 / 375);
  }
}

.c-text {
  margin-bottom: 20px;
  line-height: 1.8;
}
.c-caption {
  margin: 5px 0 10px;
  font-size: 0.9em;
  line-height: 1.8;
}
.f-imp {
  font-weight: 700;
}
.align-c {
  text-align: center;
}
@media screen and (max-width: 960px) {
.c-caption.align-c {
  text-align: left;
}
}
.align-r {
  text-align: right;
}
/*margin*/
.mt-10 {
  margin-top: 10px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-40-20 {
  margin-top: 40px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
@media screen and (max-width: 960px) {
.align-c-l {
  text-align: left;
}  
  .mt-10 {
    margin-top: calc(100vw * 10 / 375) !important;
  }
  .mt-20 {
    margin-top: calc(100vw * 20 / 375) !important;
  }
  .mt-40 {
    margin-top: calc(100vw * 40 / 375) !important;
  }
  .mt-40-20 {
    margin-top: calc(100vw * 20 / 375) !important;
  }
  .mt-50 {
    margin-top: calc(100vw * 50 / 375) !important;
  }
}
.btn-o {
  position: relative;
  background: #E1AA70;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 60px;
  border-radius: 30px;
  border-bottom: none;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}
.btn-o:after {
  position: absolute;
  content: '';
  width: 14px;
  height: 22px;
  top: 32%;
  right: 13px;
  background-image: url(/assets/img/icon/arrow_w.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 961px) {
  .btn-o:hover {
    background: #E9B884;
    color: #FFFFFF;
  }
}
@media screen and (max-width: 960px) {
  .btn-o {
    height: calc(100vw * 60 / 375);
    border-radius: calc(100vw * 30 / 375);
    font-size: calc(100vw * 18 / 375);
  }
  .btn-o:after {
    width: calc(100vw * 14 / 375);
    height: calc(100vw * 22 / 375);
    top: calc(100vw * 18 / 375);
    right: calc(100vw * 13 / 375);
  }
}
.layout-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.layout-box-re-1 {
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: stretch;
}
.layout-box-f-r {
  position: relative;
}
.layout-f-r-text {
  position: absolute;
  top: 0;
  left: 0;
}
.layout-f-r-image {
  padding-left: 20%;
}
.layout-2-1 {
  width: 48%;
}
.layout-3-1 {
  width: 31%;
}
.layout-3-1-2 {
  width: 31%;
}
.layout-3-2 {
  width: 62%;
}
.layout-s30 {
  width: 30.18181818181818%;
}
.layout-s41 {
  width: 41.81818181818182%;
}
.layout-s50 {
  width: 50.90909090909091%;
}
.layout-s62 {
  width: 62.54545454545455%;
}
@media screen and (max-width: 960px) {
  .layout-box-re-1 {
    display: block;
  }
  .layout-f-r-text {
    position: relative;
  }
.layout-f-r-image {
  padding-left: 0;
}  
  .layout-2-1, .layout-3-1, .layout-3-2,.layout-s30, .layout-s41, .layout-s50, .layout-s62 {
    width: 100%;
  }

  .layout-2-1 {
    margin-bottom: calc(100vw * 20 / 375);
  }
  .layout-2-1:last-child {
    margin-bottom: 0;
  }
  .layout-3-1 {
    margin-bottom: calc(100vw * 20 / 375);
  }
  .layout-3-1:last-child {
    margin-bottom: 0;
  }
  .layout-3-1-2 {
  width: 48%;
}  
  .layout-3-1-2 {
    margin-bottom: calc(100vw * 20 / 375);
  }
  .layout-3-1-2:last-child {
    margin-bottom: 0;
  }  
  .layout-3-2 {
    margin-bottom: calc(100vw * 20 / 375);
  }
  .layout-3-2:last-child {
    margin-bottom: 0;
  }
  .layout-s30 {
    margin-bottom: calc(100vw * 20 / 375);
}
  .layout-s50 {
    margin-bottom: calc(100vw * 20 / 375);
}  
}
.ol-layout1 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.ol-layout1-item {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.ol-layout1-no {
  width: 28px;
  height: 28px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background: #0C7EB4;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1;
}
.ol-layout1-text {
  width: calc(100% - 38px);
}
@media screen and (max-width: 960px) {
  .ol-layout1-item {
    margin-top: calc(100vw * 20 / 375);
  }
  .ol-layout1-no {
    width: calc(100vw * 28 / 375);
    height: calc(100vw * 28 / 375);
    font-size: calc(100vw * 20 / 375);
  }
  .ol-layout1-text {
    width: calc(100vw * 286 / 375);
  }
}
.contents-wrap li {
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
.contents-wrap li {
  margin-bottom: calc(100vw * 10 / 375);
}
}
/*header*/
.header {
  width: 100%;
  height: calc(100vw * 150 / 1280);
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 100;
}
@media screen and (max-width: 960px) {
  .header {
    height: calc(100vw * 100 / 375);
  }
}
.c-logo {
  position: relative;
  width: calc(100vw * 288 / 1280);
  margin: calc(100vw * 20 / 1280) 0 0 calc(100vw * 30 / 1280);
  padding: 0;
}
@media screen and (max-width: 960px) {
  .c-logo {
    width: calc(100vw * 170 / 375);
    margin: calc(100vw * 15 / 375) 0 0 calc(100vw * 15 / 375);
    padding: 0;
  }
}
.head-list {
  position: relative;
  width: calc(100vw * 670 / 1280);
  list-style: none;
  margin: 0 calc(100vw * 30 / 1280) 0 0;
  padding: 0;
  font-size: calc(100vw * 16 / 1280);
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.3em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 10;
}
.head-list li {
  position: relative;
}
.head-list a {
  display: block;
  padding: calc(100vw * 35 / 1280) 0 0 0.3em;
  color: #FFFFFF;
  transition: 0.3s;
  text-align: center;
  border-bottom: none;
}
.set-list a::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: calc(100vw * 6 / 1280);
  background: #E1AA70;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (min-width: 961px) {
  .list-top a:hover::after, .list-service a:hover::after, .list-project a:hover::after, .list-contribute a:hover::after, .list-safety-environment a:hover::after, .list-qa a:hover::after, .list-topics a:hover::after {
    opacity: 1;
  }
}
#top .list-top a::after, #service .list-service a::after, #project .list-project a::after, #contribute .list-contribute a::after, #safety-environment .list-safety-environment a::after, #qa .list-qa a::after, #topics .list-topics a::after {
  opacity: 1;
}
.kv {
  position: relative;
}
.headText {
  color: #FFFFFF;
  text-shadow: 0px 0px 10px rgba(5, 104, 137, 1);
  font-size: calc(100vw * 56 / 1280);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.headText .s-fonts {
  font-size: calc(100vw * 44 / 1280);
}
@media screen and (max-width: 960px) {
  .headText {
    font-size: calc(100vw * 32 / 375);
    top: 36%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
  }
  .headText .s-fonts {
    font-size: calc(100vw * 28 / 375);
  }
}
.btn-slideMenu-wrap {
  position: fixed;
  width: calc(100vw * 50 / 375);
  height: calc(100vw * 43 / 375);
  z-index: 999;
  top: calc(100vw * 25 / 375);
  right: calc(100vw * 10 / 375);
  display: none;
  background: rgba(12, 126, 180, 0.4);
  border-radius: calc(100vw * 5 / 375);
}
@media screen and (max-width: 960px) {
  .btn-slideMenu-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
}
#btn-slideMenu {
  position: relative;
  width: calc(100vw * 30 / 375);
  height: calc(100vw * 23 / 375);
  cursor: pointer;
}
#btn-slideMenu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: calc(100vw * 3 / 375);
}
#btn-slideMenu, #btn-slideMenu span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
#btn-slideMenu span:nth-of-type(1) {
  top: 0;
}
#btn-slideMenu span:nth-of-type(2) {
  top: calc(100vw * 10 / 375);
}
#btn-slideMenu span:nth-of-type(3) {
  bottom: 0;
}
#btn-slideMenu.active {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
#btn-slideMenu.active span:nth-of-type(1) {
  -webkit-transform: translateY(calc(100vw * 10 / 375)) rotate(-45deg);
  transform: translateY(calc(100vw * 10 / 375)) rotate(-45deg);
}
#btn-slideMenu.active span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
#btn-slideMenu.active span:nth-of-type(3) {
  opacity: 0;
}
.slideMenu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100%;
  height: 100vh;
  background: #056889;
  z-index: 99;
  opacity: 0;
  transition: all .5s;
}
.slideMenu.active {
  right: 0;
  opacity: 1;
}
.slideMenu-inner {
  margin: calc(100vw * 120 / 375) calc(100vw * 40 / 375) 0;
}
.slideMenu-list {
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: calc(100vw * 16 / 375);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  border-bottom: solid 1px #6DA4AA;
}
.slideMenu-list a {
  position: relative;
  display: block;
  color: #FFFFFF;
  padding: calc(100vw * 18 / 375) 0;
  border-top: solid 1px #6DA4AA;
  border-bottom: none;
}
.slideMenu-list a:after {
  position: absolute;
  content: '';
  width: calc(100vw* 9 / 375);
  height: calc(100vw* 14.5 / 375);
  top: 39%;
  right: calc(-1*(100vw* -20 / 1280));
  background-image: url(/assets/img/icon/arrow_g.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.wrap {
  position: relative;
}
.wrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  background-image: linear-gradient(180deg, rgba(240, 240, 240, 1), rgba(255, 255, 255, 1) 90%);
  top: 0;
  left: 0;
  z-index: -1;
}
.contents-wrap {
  max-width: 1220px;
  padding: 0 40px;
  margin: 0 auto;
}
.contents-wrap p {
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .wrap::before {
    height: calc(100vw* 100 / 375);
  }
  .contents-wrap {
    padding: 0 calc(100vw* 20 / 375);
  }
}
/*footer*/
.footer {
  position: relative;
  margin-top: 50px;
}
.footer-menu {
  width: 100%;
  height: calc(100vw* 686 / 1440);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(/assets/img/common/foot-image.jpg);
}
@supports (background-image: url(/assets/img/common/webp/foot-image.webp)) {
  .footer-menu {
    background-image: url(/assets/img/common/webp/foot-image.webp);
  }
}
.footer-menu {
  padding: 13% 40px 0;
}
.footer-menu-list {
  margin: 0 auto;
  padding: 0;
  max-width: 1140px;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.footer-menu-list-item {
  width: 18%;
}
.footer-menu-list-link {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  border-bottom: none;
  color: #056889;
  font-weight: 400;
  text-align: center;
  padding: 55% 8% 10%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
#service .footer-menu-list-item:nth-child(1) .footer-menu-list-link {
  background: rgba(255, 255, 255, 1);
}
#project .footer-menu-list-item:nth-child(2) .footer-menu-list-link {
  background: rgba(255, 255, 255, 1);
}
#contribute .footer-menu-list-item:nth-child(3) .footer-menu-list-link {
  background: rgba(255, 255, 255, 1);
}

#safety-environment .footer-menu-list-item:nth-child(4) .footer-menu-list-link {
  background: rgba(255, 255, 255, 1);
}

#qa .footer-menu-list-item:nth-child(5) .footer-menu-list-link {
  background: rgba(255, 255, 255, 1);
}
@media screen and (min-width: 961px) {
  .footer-menu-list-link:hover {
    background: rgba(255, 255, 255, 1);
  }
}
.footer-menu-list-link::after {
  position: absolute;
  content: '';
  width: 38%;
  height: 38%;
  top: 10%;
  left: 31%;
  background-size: contain;
  background-repeat: no-repeat;
}
.foter-menu-service .footer-menu-list-link::after {
  background-image: url(/assets/img/icon/icon_service.svg);
}
.foter-menu-project .footer-menu-list-link::after {
  background-image: url(/assets/img/icon/icon_project.svg);
}
.foter-menu-contribute .footer-menu-list-link::after {
  background-image: url(/assets/img/icon/icon_contribute.svg);
}
.foter-menu-safety-environment .footer-menu-list-link::after {
  background-image: url(/assets/img/icon/icon_environment.svg);
}


.foter-menu-qa .footer-menu-list-link::after {
  background-image: url(/assets/img/icon/icon_qa.svg);
}
.footer-menu-list-title {
  font-size: clamp(0.688rem, -0.763rem + 2.579vw, 1.3rem);
  font-weight: 500;
}
.footer-menu-list-text {
  width: 100%;
  margin: 0 auto;
  font-size: clamp(0.625rem, 0.033rem + 1.053vw, 0.875rem);
  letter-spacing: 0;
  padding-top: 2%;
  height: 3.5em;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.foot-bottom {
  background: #003A4D;
  height: 400px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
}
.footlist {
  position: relative;
  width: calc(100vw * 740 / 1280);
  list-style: none;
  margin: 0 calc(100vw * 30 / 1280) 0 0;
  padding: 0;
  font-size: calc(100vw * 16 / 1280);
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.3em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 10;
}
.footlist li {
  position: relative;
}
.footlist a {
  display: block;
  padding: calc(100vw * 39 / 1280) 0 0 0.3em;
  color: #FFFFFF;
  transition: 0.3s;
  text-align: center;
  border-bottom: none;
}
.footlist a::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: calc(100vw * 6 / 1280);
  background: #E1AA70;
  opacity: 0;
  transition: 0.3s;
}
.to-top {
  position: fixed;
  width: 60px;
  opacity: 0.8;
  transition: 0.3s;
  right: 30px;
  bottom: 40px;
  opacity: 0;
}
.is-bnrHide {
  visibility: hidden;
  opacity: 0 !important;
}
.is-bnrShow {
  visibility: visible;
  opacity: 1 !important;
}
@media screen and (min-width: 961px) {
  .to-top:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 960px) {
  .footer {
    margin-top: calc(100vw* 50 / 375);
  }
  .footer-menu {
    width: 100%;
    height: calc(100vw* 830 / 375);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(/assets/img/common/foot-image_sp.jpg);
  }
  @supports (background-image: url(/assets/img/common/webp/foot-image_sp.webp)) {
    .footer-menu {
      background-image: url(/assets/img/common/webp/foot-image_sp.webp);
    }
  }
  .footer-menu {
    padding: calc(100vw* 53 / 375) calc(100vw* 20 / 375) 0;
  }
  .footer-menu-list {
    display: block;
  }
  .footer-menu-list-item {
    width: 100%;
    margin-bottom: calc(100vw* 20 / 375);
  }
  .footer-menu-list-link {
    border-radius: calc(100vw* 5 / 375);
    padding: calc(100vw* 15 / 375) calc(100vw* 15 / 375) calc(100vw* 15 / 375) calc(100vw* 90 / 375);
    display: block;
    height: calc(100vw* 100 / 375);
  }
  .footer-menu-list-link::after {
    width: calc(100vw* 60 / 375);
    height: calc(100vw* 60 / 375);
    top: calc(100vw* 20 / 375);
    left: calc(100vw* 15 / 375);
  }
  .footer-menu-list-title {
    font-size: calc(100vw* 20 / 375);
    text-align: left;
  }
  .footer-menu-list-text {
    font-size: calc(100vw* 14 / 375);
    padding-top: 0;
    height: auto;
    display: block;
    text-align: left;
    line-height: 1.3;
  }
  .foot-bottom {
    height: calc(100vw* 210 / 375);
  }
  .to-top {
    width: calc(100vw* 40 / 375);
    right: calc(100vw* 167.5 / 375);
    bottom: calc(100vw* 10 / 375);
    margin: calc(100vw* 116 / 375) auto 0;
  }
}
/*news*/
.news-list {
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
  border-top: solid 1px #CCCCCC;
}
.news-list-item {
  border-bottom: solid 1px #CCCCCC;
}
.news-list-item-link {
  position: relative;
  padding: 16px 100px 20px 15px;
  border: none;
  color: #333333;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.news-list-item-link:after {
  position: absolute;
  content: '';
  width: 14px;
  height: 22px;
  top: 40%;
  right: 13px;
  background-image: url(/assets/img/icon/arrow_o.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.news-date {
  width: 100px;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.news-title {
  width: calc(100% - 110px);
}
.news-title-tug {
  line-height: 1;
  font-size: 0;
}
.notice-tug {
  display: inline-block;
  color: #FFFFFF;
  background: #F34D4A;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin: 0 10px 10px 0;
  padding: 3px 6px 4px;
  border: solid 1px #F34D4A;
}
.hush-tug {
  display: inline-block;
  color: #E76463;
  background: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin: 0 10px 10px 0;
  padding: 3px 6px 4px;
  border: solid 1px #D9D9D9;
}
.news-title p {
  margin-bottom: 0;
}
.news-btn {
  width: 250px;
  margin: 40px auto 0;
}

.contents-head-btn {
    position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;  
    bottom: 40px;
    width: 300px;
}
@media screen and (max-width: 960px) {
  .news-list {
    margin: calc(100vw* 40 / 375) 0 0;
  }
  .news-list-item-link {
    padding: calc(100vw* 10 / 375) calc(100vw* 30 / 375) calc(100vw* 10 / 375) calc(100vw* 7 / 375);
    display: block;
  }
  .news-list-item-link:after {
    width: calc(100vw* 10 / 375);
    height: calc(100vw* 17 / 375);
    top: 43%;
    right: calc(100vw* 7 / 375);
  }
  .news-date {
    width: 100%;
    margin-right: 0;
    margin-bottom: calc(100vw* 5 / 375);
    font-size: calc(100vw* 14 / 375);
  }
  .news-title {
    width: 100%;
  }
  .notice-tug {
    font-size: calc(100vw* 13 / 375);
    font-weight: 400;
    margin: 0 calc(100vw* 10 / 375) calc(100vw* 10 / 375) 0;
    padding: calc(100vw* 3 / 375) calc(100vw* 6 / 375) calc(100vw* 4 / 375);
  }
  .hush-tug {
    font-size: calc(100vw* 13 / 375);
    font-weight: 400;
    margin: 0 calc(100vw* 10 / 375) calc(100vw* 10 / 375) 0;
    padding: calc(100vw* 3 / 375) calc(100vw* 6 / 375) calc(100vw* 4 / 375);
  }
  .news-btn {
    width: calc(100vw* 250 / 375);
    margin: calc(100vw* 50 / 375) auto 0;
  }
.contents-head-btn {
    bottom: calc(100vw* 40 / 375);
    width: calc(100vw* 300 / 375);
}  
}
.news-column {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.news-detail-column {
  flex-direction: row;
}
.news-column .news-box {
  width: calc(100% - 310px);
  margin: 0;
}
.news-column .news-detail {
  width: calc(100% - 310px);
  margin: 0;
}
.news-tug-list {
  position: relative;
  width: 250px;
  padding: 15px;
  background: #F5F5F5;
}
.news-tug-list-title {
  position: relative;
  width: 100%;
  font-size: 20px;
  line-height: 1;
  padding: 10px 0;
  text-align: center;
  z-index: 1;
}
.news-tug-box {
  width: 100%;
  padding-top: 20px;
  transition: 1s;
}
.news-tug-btn {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-tug-btn li {
  width: 100%;
  margin-bottom: 20px;
}
.all-tug {
  display: block;
  width: 100%;
  padding: 10px 0;
  background: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  color: #333333;
  font-weight: 700;
  text-align: center;
  border: none;
}
.news-tug-btn .notice-tug {
  display: block;
  width: 100%;
  padding: 10px 0;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  border: none;
}
.news-hush-tug-btn {
  position: relative;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
.news-hush-tug-btn .hush-tug {
  border: solid 1px #E76463;
}
.news-detail-title-head {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}
.news-detail-title-head .news-date {
  width: 130px;
  padding-top: 1px;
  font-size: 18px;
  line-height: 1em;
}
.news-detail-title-head .notice-tug {
  padding: 4px 6px 5px;
  margin: 0;
}
.news-detail-title-text {
  font-size: 32px;
  line-height: 1.3;
  color: #056889;
  letter-spacing: 0.1em;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #CCCCCC;
}
.news-detail-contents {
  padding: 20px 0;
}
.news-detail-contents h2 {
  margin-bottom: 0;
  font-size: 28px;
  color: #6DA4AA;
}
.news-detail-contents h3 {
  margin-bottom: 0;
  font-size: 24px;
  color: #0C7EB4;
}
.news-detail-contents h4 {
  margin-bottom: 0;
  font-size: 20px;
  color: #056889;
}
.news-list-page {
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
  	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.news-list-page a {
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: #E17F70;
  border-bottom: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;  
}
.news-list-page a.active {
  color: #FFFFFF;
  background: #E17F70;
}
@media screen and (min-width: 961px) {
  .news-tug-list .notice-tug:hover {
    color: #FFFFFF;
    background: #E9B884;
  }
  .news-hush-tug-btn .hush-tug:hover {
    border: solid 1px #E9B884;
  }
  .news-list-page a:hover {
    color: #E9B884;
  }
  .news-list-page a.active:hover {
    color: #FFFFFF;
    background: #E9B884;
  }  
}
.js-news-tug-box {
  transition: 5000ms height ease;
}
.js-news-tug-box.active {
  display: block !important;
  height: auto;
}
.news-detail .h-ft-1, .news-detail .h-ft-2, .news-detail .h-ft-3, .news-detail .h-ft-4, .news-detail .h-ft-5 {
  margin: 30px 0 10px;
}
@media screen and (max-width: 960px) {
  .news-column {
    display: block;
  }
  .news-column .news-box {
    width: 100%;
    margin-top: calc(100vw* 20 / 375);
  }
  .news-column .news-detail {
    width: 100%;
  }
  .news-tug-list {
    width: 100%;
    padding: calc(100vw* 15 / 375);
  }
  .news-tug-list::after {
    content: '';
    position: absolute;
    display: block;
    width: calc(100vw* 30 / 375);
    height: calc(100vw* 30 / 375);
    background: #E17F70;
    top: calc(100vw* 15 / 375);
    right: calc(100vw* 15 / 375);
  }
  .news-tug-list-title {
    font-size: calc(100vw* 20 / 375);
    padding: calc(100vw* 5 / 375) 0;
  }
  .news-tug-list-title::after, .news-tug-list-title::before {
    display: block;
    content: "";
    position: absolute;
    right: calc(100vw* 6 / 375);
    top: calc(100vw* 14 / 375);
    width: calc(100vw* 18 / 375);
    height: 2px;
    background-color: #FFFFFF;
    transition: all 0.3s;
  }
  .news-tug-list-title::after {
    transform: rotate(90deg);
  }
  .news-tug-list-title.active::before {
    opacity: 0;
  }
  .news-tug-list-title.active::after {
    transform: rotate(540deg) !important;
  }
  .js-news-tug-box {
    display: none;
  }
  .news-tug-box {
    padding-top: calc(100vw* 20 / 375);
  }
  .news-tug-btn li {
    margin-bottom: calc(100vw* 20 / 375);
  }
  .all-tug {
    padding: calc(100vw* 10 / 375) 0;
    font-size: calc(100vw* 14 / 375);
  }
  .news-tug-btn .notice-tug {
    padding: calc(100vw* 10 / 375) 0;
    font-size: calc(100vw* 14 / 375);
  }
  .news-hush-tug-btn {
    margin: calc(100vw* 20 / 375) 0 0;
  }
.news-detail-title-head .news-date {
  width: calc(100vw* 120 / 375);
  padding-top: calc(100vw* 1 / 375);
  font-size: calc(100vw* 18 / 375);
}
.news-detail-title-head .notice-tug {
      padding: calc(100vw* 4 / 375) calc(100vw* 6 / 375) calc(100vw* 5 / 375);
}
.news-detail-title-text {
  font-size: calc(100vw* 24 / 375);
    margin-top: calc(100vw* 20 / 375);
  padding-bottom: calc(100vw* 20 / 375);
}
.news-detail-contents {
  padding: calc(100vw* 20 / 375) 0;
}
.news-detail-contents h2 {
  margin-bottom: 0;
  font-size: calc(100vw* 20 / 375);  
}
.news-detail-contents h3 {
  margin-bottom: 0;
  font-size: calc(100vw* 18 / 375);
}
.news-detail-contents h4 {
  font-size: calc(100vw* 16 / 375);
}  
  .news-detail-column .news-tug-list {
    margin-top: calc(100vw* 30 / 375);
  }  
  .news-list-page {
  margin: calc(100vw* 50 / 375) 0 0;
}
.news-list-page a {
  width: calc(100vw* 40 / 375);
  height: calc(100vw* 40 / 375);
  font-size: calc(100vw* 16 / 375);
}
}
/*vision*/
.vision {
  position: relative;
  margin: 140px auto 0;
  padding: 5% 0 5% 37%;
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/assets/img/top/webp/vision.jpg);
}
@supports (background-image: url(/assets/img/top/webp/vision.webp)) {
  .vision {
    background-image: url(/assets/img/top/webp/vision.webp);
  }
}
.vision-text-wrap {
  position: relative;
  width: 100%;
  background: #F9FAFB;
  border-top: solid 20px #0C7EB4;
  border-radius: 5px 0 0 5px;
  padding: 2% 0 4% 4%;
}
.vision-text-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}
.vision-text-subtitle {
  display: block;
  font-size: 48px;
  font-weight: 300;
}
.vision-text-inner {
  max-width: 740px;
  padding-right: calc(100vw* 40 / 1280);
}
@media screen and (min-width: 1280px) {
  .vision-text-inner {
    max-width: 740px;
    padding-right: 0;
  }
}
.vision-text {
  margin-top: calc(100vw* 18 / 1280);
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 960px) {
  .vision {
    margin: calc(100vw* 150 / 375) 0 0 0;
    padding: calc(100vw* 279 / 375) calc(100vw* 20 / 375) 0;
  }
  .vision-text-wrap {
    border-top: solid calc(100vw* 15 / 375) #0C7EB4;
    border-radius: calc(100vw* 5 / 375);
    padding: calc(100vw* 26 / 375) calc(100vw* 20 / 375);
  }
  .vision-text-title {
    font-size: calc(100vw* 20 / 375);
  }
  .vision-text-subtitle {
    font-size: calc(100vw* 32 / 375);
  }
  .vision-text-inner {
    padding-right: 0;
  }
  .vision-text {
    margin-top: calc(100vw* 20 / 375);
    font-size: calc(100vw* 16 / 375);
    letter-spacing: 0;
  }
  .vision-text.align-r {
    text-align: center;
  }
}
/*about*/
.about {
  position: relative;
  margin-top: 140px;
}
.about-text-title {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.about-text-subtitle {
  display: block;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0;
}
.about-text {
  margin-top: calc(100vw* 18 / 1280);
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.about-image {
  width: 59%;
  margin-left: 41%;
  padding-top: 6%;
}
.about-text-inner {
  position: absolute;
  width: 48%;
  top: 0;
  left: 40px;
}
@media screen and (max-width: 960px) {
  .about {
    margin-top: 0;
  }
  .about-text-title {
    font-size: calc(100vw* 36 / 375);
  }
  .about-text-subtitle {
    font-size: calc(100vw* 32 / 375);
  }
  .about-image {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
  }
  .about-text-inner {
    position: relative;
    width: 100%;
    left: 0;
    margin-top: calc(100vw* 18 / 375);
  }
}
/*contents-layers2*/
.contents-head {
  position: relative;
}
.contents-headText {
  color: #FFFFFF;
  text-shadow: 0px 0px 10px rgba(5, 104, 137, 1);
  font-size: calc(100vw * 36 / 1280);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.3em;
  white-space: nowrap;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.contents-headText h1 {
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .contents-headText {
    font-size: calc(100vw * 26 / 375);
    letter-spacing: 0.2em;
    top: 36%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
  }
}
.contents-layers2 {
  padding-top: 210px;
}
.contents-layers2-mt {
  margin-top: 70px;
}
@media screen and (max-width: 960px) {
  .contents-layers2 {
    padding-top: calc(100vw* 90 / 375);
  }
  .contents-layers2-mt {
    margin-top: calc(100vw* 40 / 375);
  }
}
.c-list {
  margin: 0;
  padding: 0;
}
.c-list li {
  margin: 0 0 0.25em 1em;
  padding: 0;
}
.c-list li:last-child {
  margin-bottom: 0;
}
.c-list-no {
  list-style: none;
}
.c-list-no li {
  margin: 0 0 0.25em 0;
  padding: 0;
}
.c-table {
  border-top: solid 1px #A3D4D1;
}
.c-table p {
  margin-bottom: 0;
}
.c-table th, .c-table td {
  border-bottom: solid 1px #A3D4D1;
  padding: 35px 0 30px 5px;
  vertical-align: top;
  text-align: left;
}
.c-table th {
  padding-right: 60px;
  white-space: nowrap;
}
.c-table p {
  padding-right: 50px;
}
@media screen and (max-width: 960px) {
  .c-table th, .c-table td {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: calc(100vw* 20 / 375) 0;
  }
  .c-table th .h-ft-3, .c-table td .h-ft-3 {
    font-size: calc(100vw* 16 / 375);
  }
  .c-table th {
    border-bottom: none;
  }
  .c-table td {
    padding-top: 0;
  }
  .c-table p {
    padding-right: 0;
  }
  .sp-text-l {
    text-align: left;
  }
  .c-table .c-list {
    text-align: left;
  }
}
.c-table-min {}
.c-table-min th, .c-table-min td {
  padding: 10px 10px 10px 0;
  vertical-align: top;
  text-align: left;
}
@media screen and (max-width: 960px) {
  .c-table-min th {
    white-space: nowrap;
  }
  .c-table-min th, .c-table-min td {
    padding: calc(100vw* 10 / 375) calc(100vw* 10 / 375) calc(100vw* 10 / 375) 0;
  }
}
.c-table-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-table-list li {
  padding: 30px 0;
  border-bottom: solid 1px #A3D4D1;
}
.c-table-list li:first-child {
  padding-top: 0;
}
.c-table-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.c-table-list-title {
  display: inline-block;
  width: 200px;
}
.c-table-list-value {
  display: inline-block;
  padding-right: 50px;
}
@media screen and (max-width: 960px) {
  .c-table-list {
    text-align: left;
  }
  .c-table-list li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
  }
  .c-table-list-title {
    width: calc(100vw* 120 / 375);
  }
  .c-table-list-text {
    width: calc(100vw* 216 / 375);
  }
  .c-table-list-notice {
    display: block;
    font-size: calc(100vw* 12 / 375);
  }
}
.c-box {
  position: relative;
  margin-top: 80px;
  padding: 60px;
  border-radius: 5px;
}
.c-box2 {
  position: relative;
  margin-top: 30px;
  padding: 70px;
  border-radius: 5px;
}
.c-box3 {
  position: relative;
  max-width: 930px;
  margin: 30px auto 0;
  padding: 40px 95px;
  border-radius: 5px;
}
.c-box-gray {
  background: #F9FAFB;
}
.c-box-white {
  background: #FFFFFF;
}
.c-box-green {
  background: #A3D4D1;
}
.c-box-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}
.contents-wrap .c-box-list-item {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}
.c-box-list-item:last-child {
  margin-bottom: 0;
}
.c-box-list-item:after {
  position: absolute;
  content: '';
  width: 64px;
  height: 58px;
  left: calc(50% - 32px);
  bottom: -70px;
  background-image: url(/assets/img/icon/arrow_g_u.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.c-box-list-item:last-child::after {
  background-image: none;
}
.c-box-number {
  font-size: 48px;
  line-height: 1;
}
.c-box-text {
  width: calc(100% - 60px);
  line-height: 1.8;
}
.system-box {
  position: relative;
  margin-top: 116px;
  background: #F5F5F5;
}
.c-box-head-lv1 {
  position: relative;
  width: 560px;
  height: 124px;
  margin: -122px auto 0;
  font-size: 24px;
  color: #FFFFFF;
  font-weight: 700;
  background: #056889;
  border-radius: 62px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.c-box-head-lv1 span {
  position: absolute;
  width: 90px;
  height: 90px;
  background: #FFFFFF;
  border-radius: 50%;
  font-size: 20px;
  color: #056889;
  font-weight: 400;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.c-box-head-lv2 {
  position: relative;
  width: 240px;
  height: 40px;
  margin: 0 auto;
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 700;
  background: #0C7EB4;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.c-box-head-lv3 {
  font-size: 22px;
  font-weight: 700;
  margin: 25px auto 0;
  text-align: center;
}
.c-box-head-lv3 .notice {
  display: block;
  font-size: 16px;
  font-weight: 400;
}
.c-box-head-lv4 {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin: 25px auto 0;
  text-align: center;
}
.c-box-head-lv5 {
  font-size: 16px;
  font-weight: 400;
  margin: 12px auto 0;
  text-align: center;
}
.c-box-brlist {
  width: 590px;
  margin: 10px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.c-box-brlist li {
  margin-top: 20px;
  padding: 0 20px;
}
.c-box-brlist li:last-child {
  width: 100%;
  text-align: center;
}
.c-box-flow {
  position: relative;
  width: 68px;
  height: 95px;
  margin: 24px auto 0;
}
.c-box-flow-text {
  position: absolute;
  top: -5px;
  right: -107px;
  white-space: nowrap;
}
.system-box1 {
  margin-top: 126px;
}
.system-box2 {
  margin-top: 24px;
  padding: 30px 80px 70px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.system-box3 {
  margin-top: 56px;
  width: 47%;
  min-height: 170px;
  padding: 47px 20px 20px;
}
.system-box3:first-child {
  width: 100%;
}
.system-box3 .c-box-head-lv2 {
  margin: -63px auto 0;
}
@media screen and (max-width: 960px) {
  .c-box {
    margin-top: calc(100vw* 70 / 375);
    padding: calc(100vw* 30 / 375) calc(100vw* 15 / 375);
  }
  .c-box3 {
  margin: calc(100vw* 30 / 375) auto 0;
  padding: calc(100vw* 40 / 375) calc(100vw* 20 / 375) calc(100vw* 20 / 375);
}
  .c-box-list {
    margin: calc(100vw* 20 / 375) 0 0;
  }
  .contents-wrap .c-box-list-item {
    margin-bottom: calc(100vw* 107 / 375);
  }
  .c-box-number {
    font-size: calc(100vw* 48 / 375);
  }
  .c-box-text {
    width: calc(100vw* 250 / 375);
  }
  .c-box-list-item:after {
    width: calc(100vw* 64 / 375);
    height: calc(100vw* 58 / 375);
    left: calc(100vw* 136 / 375);
    bottom: calc(-1*(100vw* 85 / 375));
  }
  .c-box-head-lv1 {
    width: calc(100vw* 295 / 375);
    height: calc(100vw* 66 / 375);
    margin: calc(-1*(100vw* 85 / 375)) auto 0;
    font-size: calc(100vw* 18 / 375);
    border-radius: calc(100vw* 33 / 375);
    padding-left: calc(100vw* 50 / 375);
  }
  .c-box-head-lv2 {
    width: calc(100vw* 215 / 375);
    height: calc(100vw* 40 / 375);
    font-size: calc(100vw* 16 / 375);
    border-radius: calc(100vw* 20 / 375);
  }
  .c-box-head-lv3 {
    font-size: calc(100vw* 18 / 375);
    margin: calc(100vw* 20 / 375) auto 0;
  }
  .c-box-head-lv3 .notice {
    font-size: calc(100vw* 16 / 375);
  }
  .c-box-head-lv4 {
    font-size: calc(100vw* 14 / 375);
    margin: calc(100vw* 13 / 375) auto 0;
  }
  .c-box-head-lv5 {
    font-size: calc(100vw* 14 / 375);
    margin: calc(100vw* 4 / 375) auto 0;
  }
  .c-box-brlist {
    display: block;
    width: 100%;
    margin: calc(100vw* 10 / 375) auto 0;
  }
  .c-box-head-lv1 span {
    width: calc(100vw* 53 / 375);
    height: calc(100vw* 53 / 375);
    font-size: calc(100vw* 14 / 375);
    top: calc(100vw* 7 / 375);
    left: calc(100vw* 7 / 375);
  }
  .system-box1 {
    padding: calc(100vw* 55 / 375) calc(100vw* 15 / 375);
  }
  .c-box2 {
    margin-top: calc(100vw* 25 / 375);
    padding: calc(100vw* 40 / 375) calc(100vw* 15 / 375);
  }
  .c-box-flow {
    width: calc(100vw* 39 / 375);
    height: calc(100vw* 60 / 375);
    margin: calc(100vw* 20 / 375) auto 0;
  }
  .system-box2 {
    margin-top: calc(100vw* 10 / 375);
    padding: 0 calc(100vw* 15 / 375) calc(100vw* 40 / 375);
  }
  .system-box3 {
    margin-top: calc(100vw* 55 / 375);
    width: 100%;
    padding: calc(100vw* 70 / 375) 0 calc(100vw* 25 / 375);
  }
  .system-box3 .c-box-head-lv2 {
    margin: calc(-1*(100vw* 90 / 375)) auto 0;
  }
}

.l-box {
  position: relative;
  padding: 30px 30px 10px;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}

@media screen and (max-width: 960px) {
  .l-box {
    padding: calc(100vw* 15 / 375) calc(100vw* 20 / 375) calc(100vw* 5 / 375);
  }
}
.qa {
  border-top: solid 1px #CCCCCC;
}
.question {
  position: relative;
  min-height: 115px;
  padding: 50px 20px 15px 85px;
  color: #955D23;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.question::after {
  position: absolute;
  content: "Q";
  width: 56px;
  height: 56px;
  background: #E9B884;
  border-radius: 5px;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 700;
  line-height: 49px;
  display: block;
  text-align: center;
  top: 45px;
  left: 0;
}
.answer {
  position: relative;
  min-height: 115px;
  border-bottom: solid 1px #CCCCCC;
  padding: 25px 20px 50px 85px;

  color: #056889;  
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.answer::after {
  position: absolute;
  content: "A";
  width: 56px;
  height: 56px;
  background: #0C7EB4; 
  border-radius: 5px;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 700;
  line-height: 53px;
  display: block;
  text-align: center;
  top: 20px;
  left: 0;
}
@media screen and (max-width: 960px) {
  .question {
    position: relative;
    min-height: auto;
    padding: calc(100vw* 35 / 375) calc(100vw* 10 / 375) calc(100vw* 10 / 375) calc(100vw* 50 / 375);
    font-size: calc(100vw* 14 / 375);
  }
  .question::after {
    width: calc(100vw* 40 / 375);
    height: calc(100vw* 40 / 375);
    font-size: calc(100vw* 24 / 375);
    line-height: calc(100vw* 35 / 375);
    top: calc(100vw* 29 / 375);
  }
  .answer {
    position: relative;
    min-height: auto;
    border-bottom: solid 1px #CCCCCC;
    padding: calc(100vw* 10 / 375) calc(100vw* 10 / 375) calc(100vw* 35 / 375) calc(100vw* 50 / 375);
    font-size: calc(100vw* 14 / 375);
  }
  .answer::after {
    width: calc(100vw* 40 / 375);
    height: calc(100vw* 40 / 375);
    font-size: calc(100vw* 24 / 375);
    line-height: calc(100vw* 40 / 375);
    top: calc(100vw* 5 / 375);
  }
}