@charset "UTF-8";
@font-face {
  font-display: swap;
  font-family: "DIN_Alternate";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/A-OTFRyuminProEH-KL.otf);
}
@font-face {
  font-display: swap;
  font-family: "ZenKakuGothicAntique";
  font-weight: bold;
  src: url(../fonts/ZenKakuGothicAntique-Bold.ttf);
}
@font-face {
  font-display: swap;
  font-family: "ZenKakuGothicAntiqueMid";
  font-weight: normal;
  src: url(../fonts/ZenKakuGothicAntique-Medium.ttf);
}
.medium {
  font-family: ZenKakuGothicAntiqueMid, sans-serif;
}

.en {
  font-family: "DIN Alternate", sans-serif;
}

.title_area {
  text-align: center;
}
.title_area h2 {
  color: #0d9dbf;
  display: inline-block;
  font-family: "lato", sans-serif;
  font-size: 2.8rem;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .title_area h2 {
    font-size: 2.4rem;
  }
}
.title_area h2::after {
  background-color: #0d9dbf;
  bottom: 33px;
  content: "";
  display: inline-block;
  height: 1px;
  position: absolute;
  right: -60px;
  transform: rotate(-55deg);
  width: 56px;
}
@media screen and (max-width: 768px) {
  .title_area h2::after {
    bottom: 26px;
    right: -39px;
    width: 40px;
  }
}

#achievement,
#company {
  padding-top: 30px;
}

@-webkit-keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.cta_btn {
  margin: 100px 0 0;
}
@media screen and (max-width: 768px) {
  .cta_btn {
    margin: 60px 0 0;
  }
}
.cta_btn a {
  align-items: center;
  background-color: #f5b437;
  border-radius: 10px;
  box-shadow: 2px 2px 4px 1px rgb(195, 195, 195);
  color: #0f3c71;
  display: flex;
  font-size: 3.5rem;
  height: 117px;
  justify-content: center;
  margin: 0 auto;
  max-width: 876px;
  position: relative;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .cta_btn a {
    font-size: 2.4rem;
    height: 80px;
    width: 90%;
  }
}
.cta_btn a::before {
  background: url(../image/cta_copy.png) no-repeat center center/contain;
  content: "";
  height: 50px;
  left: 50%;
  position: absolute;
  top: -30px;
  transform: translateX(-50%);
  width: 80%;
}
@media screen and (max-width: 768px) {
  .cta_btn a::before {
    background: url(../image/cta_copy_sp.png) no-repeat center center/contain;
  }
}
.cta_btn a span {
  position: relative;
}
.cta_btn a span::after {
  background: url(../image/arrow.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  height: 40px;
  position: absolute;
  right: -20%;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.5s;
  width: 40px;
}
@media screen and (max-width: 768px) {
  .cta_btn a span::after {
    height: 30px;
    right: -25%;
    width: 30px;
  }
}
.cta_btn a:hover {
  background-color: #fac867;
}
.cta_btn a:hover span::after {
  right: -23%;
}

.mask {
  overflow: hidden;
  position: relative;
}
.mask.block img {
  opacity: 1 !important;
}

.mask::after {
  background: #0d9dbf;
  bottom: 0;
  content: "";
  display: none;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, 100%);
}

.mask img {
  opacity: 0;
}

.mask.is-animated img {
  -webkit-animation: mask-image 1.2s cubic-bezier(0.8, 0, 0.17, 1);
  animation: mask-image 1.2s cubic-bezier(0.8, 0, 0.17, 1);
}

@-webkit-keyframes mask-image {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  61% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes mask-image {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  61% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.mask.is-animated::after {
  -webkit-animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.17, 1);
  animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.17, 1);
  display: block;
}

@-webkit-keyframes mask-bg {
  0% {
    transform: translate(-100%, 0);
  }
  40%, 60% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}

@keyframes mask-bg {
  0% {
    transform: translate(-100%, 0);
  }
  40%, 60% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
main {
  overflow: hidden;
  position: relative;
}

.back_btn {
  position: fixed;
}

/* ローディング画面のスタイル */
#loading-screen {
  align-items: center;
  background-color: #f2f2f2;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

/* ローディング画像のスタイル */
#loading-gif {
  height: 250px;
  mix-blend-mode: darken;
  width: 250px;
}
@media screen and (max-width: 768px) {
  #loading-gif {
    height: 150px;
    width: 150px;
  }
}

.fv {
  background: url(../image/fv_bg.jpg) no-repeat center center/cover;
  height: auto;
  padding: 0 0 13%;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv {
    padding: 0 0 20%;
  }
}
.fv .inner {
  height: 100%;
  margin: 0 auto;
  max-width: 1600px;
  padding-top: 100px;
  position: relative;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .fv .inner {
    max-width: 500px;
    padding-top: 80px;
    width: 90%;
  }
}
.fv .main_visual {
  background-color: #f2f2f2;
  border-radius: 16px 16px 16px 116px;
  padding: 10% 8%;
}
@media screen and (max-width: 768px) {
  .fv .main_visual {
    padding: 12% 8% 18%;
  }
}
.fv .main_visual figure {
  margin: 0 auto;
  max-width: 876px;
}
.fv .scroll_bar {
  bottom: 50px;
  display: flex;
  left: 0;
  max-height: 160px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .fv .scroll_bar {
    bottom: 0px;
    max-height: 120px;
  }
}
.fv .scroll_bar img {
  height: 100%;
  width: auto;
}
.fv .scroll_bar img:first-child {
  -webkit-animation: slide1 200s -100s linear infinite;
  animation: slide1 200s -100s linear infinite;
}
.fv .scroll_bar img:last-child {
  -webkit-animation: slide2 200s linear infinite;
  animation: slide2 200s linear infinite;
  margin-right: 60px;
}

.about {
  background-color: #f2f2f2;
}
.about .inner {
  padding: 122px 0;
}
@media screen and (max-width: 768px) {
  .about .inner {
    padding: 90px 0;
  }
}
.about .inner .block {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 876px;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .about .inner .block {
    flex-direction: column;
    width: 86%;
  }
}
.about .inner .adlil_image {
  margin-right: 8%;
  max-width: 350px;
}
@media screen and (max-width: 768px) {
  .about .inner .adlil_image {
    margin-bottom: 50px;
    margin-right: 0;
    max-width: 213px;
  }
}
.about .inner .text_area {
  letter-spacing: 0.2em;
}
.about .inner .text_area h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .about .inner .text_area h1 {
    font-size: 2.5rem;
  }
}
.about .inner .text_area h1 span {
  color: #0d9dbf;
}
.about .inner .text_area p {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .about .inner .text_area p {
    white-space: normal;
  }
}

.message {
  background-color: #fff;
  border-radius: 116px 0 0 0;
  padding-top: 126px;
}
@media screen and (max-width: 768px) {
  .message {
    padding: 93px 0 0;
  }
}
.message .inner {
  margin: 0 auto;
  max-width: 876px;
  padding-bottom: 154px;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .message .inner {
    padding-bottom: 93px;
    width: 86%;
  }
}
.message h2 {
  font-size: 3.5rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .message h2 {
    font-size: 2.8rem;
  }
}
.message p {
  font-size: 1.8rem;
  line-height: 2.6;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .message p {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.message .highlighter {
  position: relative;
}
.message .highlighter::before {
  background: linear-gradient(45deg, transparent 0%, #a9e3eb 0% 40%, transparent 100%);
  content: "";
  height: 80%;
  left: 0;
  position: absolute;
  top: 10%;
  width: 100%;
  z-index: -1;
}
.message .why_ad {
  background-color: #0d9dbf;
  color: #fff;
  display: block;
  letter-spacing: 0.075em;
  padding: 69px 20px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .message .why_ad {
    padding: 33px 0;
  }
}
.message .why_ad .block {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 876px;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .message .why_ad .block {
    align-items: flex-start;
    flex-direction: column;
    width: 86%;
  }
}
.message .why_ad .block .title h2 {
  margin-bottom: -10px;
}
@media screen and (max-width: 768px) {
  .message .why_ad .block .title h2 {
    font-size: 2.4rem;
    margin-bottom: -5px;
  }
}
.message .why_ad .block .title p {
  color: #8bcbd3;
}
@media screen and (max-width: 768px) {
  .message .why_ad .block .more {
    margin: 20px 0 0;
  }
}
.message .why_ad .block .more p {
  color: #fff;
  font-size: 1.8rem;
  text-decoration: underline;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .message .why_ad .block .more p {
    font-size: 1.6rem;
  }
}
.message .why_ad .block .more span {
  position: relative;
}
.message .why_ad .block .more span::after {
  background: url(../image/arrow_white.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  height: 40px;
  position: absolute;
  right: -40%;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.5s;
  width: 40px;
}
@media screen and (max-width: 768px) {
  .message .why_ad .block .more span::after {
    height: 38px;
    right: -45%;
    width: 38px;
  }
}
.message .why_ad:hover {
  background-color: #13aed3;
  transition: all 0.3s;
}
.message .why_ad:hover .more span::after {
  right: -43%;
}

.service .inner {
  padding-bottom: 170px;
  padding-top: 115px;
}
@media screen and (max-width: 768px) {
  .service .inner {
    padding-bottom: 96px;
    padding-top: 70px;
  }
}
.service .inner .title {
  margin-bottom: 70px;
  text-align: center;
}
.service .inner .title h2 {
  font-size: 3.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service .inner .title h2 {
    font-size: 2.8rem;
  }
}
.service .inner .title span {
  bottom: -30px;
  color: #8bcbd3;
  font-size: 2.8rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .service .inner .title span {
    bottom: -20px;
    font-size: 1.8rem;
  }
}
.service .inner .item {
  background-color: #fff;
  border-radius: 16px;
  counter-increment: mycounter;
  margin: 0 auto 58px;
  max-width: 1000px;
  padding: 46px 0;
  position: relative;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .service .inner .item {
    width: 86%;
  }
}
.service .inner .item::before {
  align-items: center;
  background-color: #0d9dbf;
  border-radius: 100%;
  color: #fff;
  content: counter(mycounter, decimal-leading-zero);
  display: flex;
  font-size: 2.7rem;
  height: 60px;
  justify-content: center;
  left: -20px;
  letter-spacing: 0.1em;
  position: absolute;
  top: -20px;
  width: 60px;
}
@media screen and (max-width: 768px) {
  .service .inner .item::before {
    font-size: 2.2rem;
    height: 51px;
    left: -10px;
    top: -10px;
    width: 51px;
  }
}
.service .inner .box {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .service .inner .box {
    flex-direction: column;
    justify-content: center;
  }
}
.service .inner .box .sp-h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.service .inner .box figure {
  margin-right: 20px;
  max-width: 288px;
}
@media screen and (max-width: 768px) {
  .service .inner .box figure {
    margin-right: 0;
    width: 80%;
  }
}
.service .inner .box .text_area {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .service .inner .box .text_area {
    margin-top: 30px;
  }
}
.service .inner .box .text_area h3 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.service .inner .box .text_area p {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .service .inner .box .text_area p {
    line-height: 2;
  }
}

.price {
  background-color: #0d9dbf;
}
.price .inner {
  margin: 0 auto;
  max-width: 1000px;
  padding-bottom: 170px;
  padding-top: 115px;
}
@media screen and (max-width: 768px) {
  .price .inner {
    padding-bottom: 50px;
    padding-top: 68px;
  }
}
.price .inner .title {
  margin-bottom: 70px;
  text-align: center;
}
.price .inner .title h2 {
  color: #fff;
  font-size: 3.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .price .inner .title h2 {
    font-size: 2.8rem;
  }
}
.price .inner .title span {
  bottom: -30px;
  color: #8bcbd3;
  font-size: 2.8rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .price .inner .title span {
    bottom: -20px;
    font-size: 1.8rem;
  }
}
.price .inner .items {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .price .inner .items {
    flex-wrap: nowrap;
  }
}
.price .inner .items::after {
  content: "";
  display: block;
  margin: 0 auto 20px;
  width: calc(33.3333333333% - 15px);
}
.price .inner .item {
  background-color: #fff;
  border-radius: 16px;
  counter-increment: mycounter;
  margin: 0 auto 16px;
  min-height: 450px;
  padding: 30px 0 0;
  position: relative;
  width: calc(33.3333333333% - 15px);
}
@media screen and (max-width: 768px) {
  .price .inner .item {
    width: 88%;
  }
}
.price .inner .box {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 380px;
  justify-content: space-between;
  margin: 0 auto;
  width: 88%;
}
.price .inner .box h3 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  width: 100%;
}
.price .inner .box .sub_title {
  display: inline-block;
  font-size: 1.2rem;
  left: 50%;
  position: absolute;
  top: 40px;
  transform: translateX(-50%);
  width: 100%;
}
.price .inner .box figure {
  margin-bottom: 20px;
  max-width: 254px;
}
.price .inner .box .text_area {
  line-height: 1.4;
}
.price .inner .box .text_area .text {
  font-size: 1.6rem;
  text-align: left;
}
.price .inner .box .text_area .text_small {
  font-size: 1.4rem;
}
.price .inner .box .text_area .bold {
  font-size: 1.8rem;
}
.price .inner .box .text_area .num {
  color: #0d9dbf;
  font-size: 3.5rem;
}
.price .inner .box .text_area .center {
  text-align: center;
}
.price .inner .box .text_area .hp_text {
  line-height: 1.2;
  text-align: right;
}
.price .swiper-button-next,
.price .swiper-button-prev {
  background-color: #0f3c71;
  border: 2px solid transparent;
  border-radius: 100%;
  color: #fff;
  height: 38px;
  opacity: 1;
  width: 38px;
}
.price .swiper-button-next::after,
.price .swiper-button-prev::after {
  font-size: 1.5rem;
}
.price .swiper-button-next.swiper-button-disabled,
.price .swiper-button-prev.swiper-button-disabled {
  background-color: #fff;
  border: 2px solid #0f3c71;
  color: #0f3c71;
  opacity: 1;
}
.price .swiper-wrapper {
  padding: 0 0 20px;
}
.price .swiper-horizontal > .swiper-pagination-bullets,
.price .swiper-pagination-bullets.swiper-pagination-horizontal,
.price .swiper-pagination-custom,
.price .swiper-pagination-fraction {
  align-items: center;
  bottom: 0px;
  display: flex;
  justify-content: center;
}
.price .swiper-pagination-bullet {
  background-color: #fff;
  height: 7px;
  opacity: 1;
  width: 7px;
}
.price .swiper-pagination-bullet-active {
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #fff;
  height: 11px;
  width: 11px;
}

.achievement {
  background-color: #fff;
}
.achievement .inner {
  padding-bottom: 170px;
  padding-top: 115px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .achievement .inner {
    padding-bottom: 120px;
    padding-top: 63px;
  }
}
.achievement .inner .title {
  margin-bottom: 70px;
  text-align: center;
}
.achievement .inner .title h2 {
  font-size: 3.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .achievement .inner .title h2 {
    font-size: 2.8rem;
  }
}
.achievement .inner .title span {
  bottom: -30px;
  color: #8bcbd3;
  font-size: 2.8rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .achievement .inner .title span {
    bottom: -20px;
    font-size: 1.8rem;
  }
}
.achievement .inner .items {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
}
.achievement .inner .items::after {
  content: "";
  display: block;
  margin: 0 auto 20px;
  width: calc(33.3333333333% - 15px);
}
.achievement .inner .item {
  background-color: #fff;
  counter-increment: mycounter;
  margin: 0 auto 50px;
  padding: 46px 0 0;
  position: relative;
  width: 50%;
}
.achievement .inner .item:nth-of-type(odd) {
  border-right: 2px solid #ededed;
}
@media screen and (max-width: 768px) {
  .achievement .inner .item {
    padding: 0px 0 0;
    width: 100%;
  }
  .achievement .inner .item:nth-of-type(odd) {
    border-right: none;
  }
}
.achievement .inner .box {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
  width: 90%;
}
.achievement .inner .box figure {
  margin-bottom: 40px;
  max-width: 288px;
}
.achievement .inner .box .text_area {
  height: 100%;
}
.achievement .inner .box .text_area h3 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  min-height: 90px;
}
@media screen and (max-width: 768px) {
  .achievement .inner .box .text_area h3 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
.achievement .inner .box .text_area p {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .achievement .inner .box .text_area p {
    font-size: 1.4rem;
  }
}
.achievement .inner .more a {
  align-items: center;
  background-color: #0f3c71;
  border-radius: 10px;
  box-shadow: 2px 2px 4px 1px rgb(195, 195, 195);
  color: #fff;
  display: flex;
  font-size: 1.8rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 423px;
  padding: 28px 0;
  transition: all 0.3s;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .achievement .inner .more a {
    font-size: 1.4rem;
    height: 58px;
    width: 80%;
  }
}
.achievement .inner .more span {
  position: relative;
}
.achievement .inner .more span::after {
  background: url(../image/arrow_white.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  height: 40px;
  position: absolute;
  right: -30%;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.5s;
  width: 40px;
}
@media screen and (max-width: 768px) {
  .achievement .inner .more span::after {
    height: 26px;
    right: -18%;
    width: 26px;
  }
}
.achievement .inner .more:hover a {
  background-color: #2c5f9b;
  transition: all 0.3s;
}
.achievement .inner .more:hover span::after {
  right: -33%;
  transition: all 0.3s;
}
.achievement .inner .scroll_bar {
  bottom: 0px;
  display: flex;
  left: 0;
  max-height: 160px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .achievement .inner .scroll_bar {
    max-height: 120px;
  }
}
.achievement .inner .scroll_bar img {
  height: 100%;
  width: auto;
}
.achievement .inner .scroll_bar img:first-child {
  -webkit-animation: slide1 200s -100s linear infinite;
  animation: slide1 200s -100s linear infinite;
}
.achievement .inner .scroll_bar img:last-child {
  -webkit-animation: slide2 200s linear infinite;
  animation: slide2 200s linear infinite;
  margin-right: 60px;
}

.company .inner {
  padding-bottom: 170px;
  padding-top: 115px;
}
@media screen and (max-width: 768px) {
  .company .inner {
    padding-bottom: 120px;
    padding-top: 59px;
  }
}
.company .inner .title {
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .company .inner .title {
    margin-bottom: 40px;
  }
}
.company .inner .title h2 {
  font-size: 3.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .company .inner .title h2 {
    font-size: 2.8rem;
  }
}
.company .inner .title span {
  bottom: -30px;
  color: #8bcbd3;
  font-size: 2.8rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .company .inner .title span {
    bottom: -20px;
    font-size: 1.4rem;
  }
}
.company .inner .commit {
  margin: 60px auto 45px;
  max-width: 876px;
}
@media screen and (max-width: 768px) {
  .company .inner .commit {
    width: 80%;
  }
}
.company .inner .commit .col {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .company .inner .commit .col {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 31px;
  }
}
.company .inner .commit .head {
  color: #0d9dbf;
  font-size: 2.8rem;
  margin-right: 56px;
  width: 120px;
}
@media screen and (max-width: 768px) {
  .company .inner .commit .head {
    font-size: 2.4rem;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.company .inner .commit .text {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .company .inner .commit .text {
    font-size: 1.6rem;
  }
}
.company .inner .info {
  background-color: #fff;
  border-radius: 16px;
  margin: 0 auto;
  max-width: 1000px;
  padding: 48px 0 20px;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .company .inner .info {
    padding: 31px 0 10px;
    width: 86%;
  }
}
.company .inner .info dl {
  margin: 0 auto;
  width: 80%;
}
.company .inner .info div {
  align-items: center;
  border-bottom: 1px solid #ededed;
  display: flex;
  font-size: 1.6rem;
  justify-content: flex-start;
  margin-bottom: 18px;
  padding-bottom: 18px;
}
.company .inner .info div:last-child {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .company .inner .info div {
    align-items: flex-start;
    flex-direction: column;
    font-size: 1.4rem;
  }
}
.company .inner .info div dt {
  width: 163px;
}
@media screen and (max-width: 768px) {
  .company .inner .info div dt {
    margin-bottom: 5px;
    width: auto;
  }
}
.company .inner .info div dd {
  font-family: ZenKakuGothicAntiqueMid, sans-serif;
}
/*# sourceMappingURL=sourcemaps/index.css.map */