﻿@charset "UTF-8";
/*
z-index
*/
/*
layout
*/
/*
color
*/
/*
pxをvwに変換

ウインドウ幅1400pxに対して要素幅50pxの場合
getvw(50,1400)となる
*/
/*
メディアクエリ
記述例
@use "../_component/mixin" as mixin;
body{
  @include mixin.ms-w('max',1200){
    background-color: red;
  }
}
*/
/*
フォント
*/
/*
mixin
*/
/************************************************************
SCREEN ALL
*************************************************************/
.page-top-shape {
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width:768px) {
  .page-top-shape {
    width: 940px;
  }
}
@media only screen and (max-width:767px) {
  .page-top-shape {
    width: clamp(0px, 100vw, 600px);
  }
}
.page-top-shape svg {
  width: 100%;
}

main:has(.page-top-shape) {
  position: relative;
}

section.page-top {
  position: relative;
}
@media only screen and (min-width:768px) {
  section.page-top {
    padding-top: 180px;
  }
}
@media only screen and (max-width:767px) {
  section.page-top {
    padding-top: 140px;
  }
}
section.page-top .page-top-title-en {
  /*
  weight
  Regular:400
  semiBold:600
  Bold:700
  */
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0;
  font-weight: 600;
  line-height: 1.1em;
  color: #388DCA;
}
@media only screen and (min-width:768px) {
  section.page-top .page-top-title-en {
    font-size: 100px;
  }
}
@media only screen and (max-width:767px) {
  section.page-top .page-top-title-en {
    font-size: 50px;
  }
}
section.page-top .page-top-title-ja {
  margin-top: 10px;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}
@media only screen and (min-width:768px) {
  section.page-top .page-top-title-ja {
    font-size: 24px;
  }
}
@media only screen and (max-width:767px) {
  section.page-top .page-top-title-ja {
    font-size: 16px;
  }
}
@media only screen and (min-width:768px) {
  section.page-top .page-top-title + .page-top-txt-01 {
    margin-top: 30px;
  }
}
@media only screen and (max-width:767px) {
  section.page-top .page-top-title + .page-top-txt-01 {
    margin-top: 40px;
  }
}
section.page-top .page-top-txt-01 {
  font-size: 16px;
  line-height: 2em;
}

/************************************************************
SCREEN SP
*************************************************************/
/************************************************************
SCREEN PC
*************************************************************/
/************************************************************
SCREEN ALL
*************************************************************/
/************************************************************
SCREEN SP
*************************************************************/
/************************************************************
SCREEN PC
*************************************************************/
/************************************************************
SCREEN ALL
*************************************************************/
section.post {
  position: relative;
  /*
  テスト表示用
  */
}
@media only screen and (min-width:768px) {
  section.post {
    padding-top: 180px;
  }
}
@media only screen and (max-width:767px) {
  section.post {
    padding-top: 114px;
  }
}
section.post .page-title {
  letter-spacing: 0;
  /*
  weight
  Regular:400
  semiBold:600
  Bold:700
  */
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0;
  font-weight: 500;
  color: #388DCA;
}
@media only screen and (min-width:768px) {
  section.post .page-title {
    font-size: 28px;
  }
}
@media only screen and (max-width:767px) {
  section.post .page-title {
    font-size: 30px;
  }
}
section.post .post-head {
  border-bottom: 1px solid #D0D0D0;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width:768px) {
  section.post .post-head {
    padding-top: 20px;
  }
}
@media only screen and (max-width:767px) {
  section.post .post-head {
    padding-top: 45px;
  }
}
@media only screen and (min-width:768px) {
  section.post .post-head {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width:767px) {
  section.post .post-head {
    padding-bottom: 55px;
  }
}
section.post .post-head-desc {
  font-weight: 600;
  line-height: 1.5em;
}
@media only screen and (min-width:768px) {
  section.post .post-head-desc {
    font-size: 40px;
  }
}
@media only screen and (max-width:767px) {
  section.post .post-head-desc {
    font-size: 28px;
  }
}
@media only screen and (max-width:767px) {
  section.post .post-head-desc {
    order: 2;
  }
}
section.post .post-head-tags {
  display: flex;
  gap: 10px;
}
@media only screen and (min-width:768px) {
  section.post .post-head-tags {
    margin-top: 20px;
  }
}
@media only screen and (max-width:767px) {
  section.post .post-head-tags {
    order: 1;
    margin-bottom: 10px;
  }
}
section.post .post-head-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid #D0D0D0;
  font-weight: 600;
  line-height: 1.7em;
  white-space: nowrap;
  transition: 0.2s;
}
@media only screen and (min-width:768px) {
  section.post .post-head-tag {
    font-size: 14px;
    padding: 3px 20px;
  }
}
@media only screen and (max-width:767px) {
  section.post .post-head-tag {
    font-size: 11px;
    padding: 3px 10px;
  }
}
@media (hover: hover) {
  section.post .post-head-tag:hover {
    color: #1893EC;
  }
  section.post .post-head-tag:hover.-blue {
    color: white;
    background-color: #1893EC;
    border: 1px solid #1893EC;
  }
}
section.post .post-head-tag.-blue {
  color: white;
  background-color: #388DCA;
  border: 1px solid #388DCA;
}
section.post .post-head-date {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 12px;
  line-height: 1.5em;
}
@media only screen and (min-width:768px) {
  section.post .post-head-date {
    margin-top: -14px;
  }
}
@media only screen and (max-width:767px) {
  section.post .post-head-date {
    margin-top: 20px;
    order: 3;
  }
}
section.post .post-head-lastupdate, section.post .post-head-releasedate {
  font-size: 12px;
  /*
  weight
  Regular:400
  semiBold:600
  Bold:700
  */
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0;
  font-weight: 300;
}
section.post .post-head-pic {
  overflow: hidden;
}
@media only screen and (min-width:768px) {
  section.post .post-head-pic {
    margin-top: 55px;
  }
}
@media only screen and (max-width:767px) {
  section.post .post-head-pic {
    margin-top: 40px;
  }
}
@media only screen and (min-width:768px) {
  section.post .post-head-pic {
    border-radius: 20px;
  }
}
@media only screen and (max-width:767px) {
  section.post .post-head-pic {
    border-radius: 10px;
  }
}
@media only screen and (max-width:767px) {
  section.post .post-head-pic {
    order: 4;
  }
}
@media only screen and (min-width:768px) {
  section.post .post-body {
    padding: 60px 0;
  }
}
@media only screen and (max-width:767px) {
  section.post .post-body {
    padding: 15px 0;
  }
}
section.post .post-cta-contact {
  margin: 40px auto 0;
  border-radius: 10px;
  padding: 60px 0;
  background-color: #F0F7FB;
}
@media only screen and (min-width:768px) {
  section.post .post-cta-contact {
    width: 900px;
  }
}
section.post .post-cta-contact-txt-01 {
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  text-align: center;
}
@media only screen and (min-width:768px) {
  section.post .post-cta-contact-txt-01 {
    font-size: 28px;
  }
}
@media only screen and (max-width:767px) {
  section.post .post-cta-contact-txt-01 {
    font-size: 24px;
    padding: 0 1em;
  }
}
@media only screen and (min-width:768px) {
  section.post .post-cta-contact-linkbtns {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 0 20px;
  }
}
@media only screen and (max-width:767px) {
  section.post .post-cta-contact-linkbtns {
    margin-top: 37px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px 0;
  }
}
section.post .post-cta-contact-linkbtn {
  width: 280px;
  height: 60px;
  font-size: 16px;
}
section.post .demo-columns {
  display: flex;
  gap: 10%;
}

/************************************************************
SCREEN SP
*************************************************************/
/************************************************************
SCREEN PC
*************************************************************/
/************************************************************
SCREEN ALL
*************************************************************/
@media only screen and (min-width:768px) {
  section.related {
    padding-top: 150px;
    padding-bottom: 200px;
  }
}
@media only screen and (max-width:767px) {
  section.related {
    padding-top: 120px;
    padding-bottom: 150px;
  }
}
@media only screen and (min-width:768px) {
  section.related .common-sec-title-ja {
    font-size: 42px;
  }
}
@media only screen and (max-width:767px) {
  section.related .common-sec-title-ja {
    font-size: 28px;
  }
}
@media only screen and (max-width:767px) {
  section.related .related-boxes-wrapper {
    width: 100%;
  }
}
@media only screen and (min-width:768px) {
  section.related .related-boxes {
    margin-top: 60px;
  }
}
@media only screen and (max-width:767px) {
  section.related .related-boxes {
    margin-top: 80px;
  }
}
@media only screen and (max-width:767px) {
  section.related .related-boxes .swiper {
    padding: 0 5.1282051282vw;
  }
}
@media only screen and (min-width:768px) {
  section.related .related-boxes .swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
@media only screen and (max-width:767px) {
  section.related .related-box {
    padding: 0 2.5641025641vw;
  }
}

/************************************************************
SCREEN SP
*************************************************************/
/************************************************************
SCREEN PC
*************************************************************/