@charset "utf-8";

/* ----------------------------------------------------
    reset
---------------------------------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, hr, 
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, select, button {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}
img {
    display: block;
    margin: 0px;
    padding: 0px;
    border: 0px;
    vertical-align: baseline;
    width: 100%;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
      object-fit: cover;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
    display: block;
}
iframe {
    max-width: 100%;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
input, 
textarea,
select,
button{
    outline: none;
}
a img,
:link img,
:visited img{
    border: none;
}
a[href^="tel:"] {
  pointer-events: auto;
}
a {
    color: #434343;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
    a:hover {
        text-decoration: none;
    }
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  /* デフォルトで非表示 */
}
body {
    color: #434343;
    font-family: "Zen Kaku Gothic New","Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Meiryo", "メイリオ", "Osaka", "MS PGothic", arial, helvetica, sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    word-wrap: break-word;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
    /* フォントのアンチエイリアスを滑らかに表示（主にMac向け） */
    -webkit-font-smoothing: antialiased;
    /* Chrome, Safari（WebKit系） */
    -moz-osx-font-smoothing: grayscale;
    /* Firefox on macOS */
    background-color: #f6f6f6;
    overflow-x: clip;
}
@media screen and (min-width: 768px) {
    a:hover {
        opacity: 0.7;
        filter: alpha( opacity=70 );
    }
}
@media (min-width: 768px) and (max-width: 1240px) {
  html {
    font-size: 1.2903225806vw;
  }
}
/* ----------------------------------------------------
    PC/SP
---------------------------------------------------- */
.sp,
.sp480 {
    display: none!important;
}
@media screen and (max-width: 767px) {
    .sp {
        display: block!important;
    }
    .pc {
        display: none!important;
    }
    a:hover {
        opacity: unset;
        filter: unset;
        -ms-filter: unset;
    }
    img {
        width: 100%;
        height: auto;
    }
    a img,
    :link img,
    :visited img{
        opacity: 1;
    }
}
@media screen and (max-width: 480px) {
    .sp480 {
        display: block!important;
    }
}

/*------------------------------
　　common style
------------------------------*/
p {
    text-align: justify;
    margin: 0;
    padding: 0;
}
ol, ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.txt-c {
    text-align: center;
}
@media screen and (max-width: 767px) {
  .txt-c-sp {
    text-align: center;
  }
}
.cts-start,
.page-cts-start {
    margin-top: 60px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
@media screen and (min-width: 1001px) {
    .cts-start {
        margin-top: 120px;
    }
    .page-cts-start {
        margin-top: 160px;
    }
}
.inner {
  max-width: 650px;
  padding-inline: 0.9375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1220px;
    padding-inline: 1.25rem;
  }
}
.txt-strong {
  font-weight: 700;
}
.txt-color-blue {
  color: #339FE6;
}

/*------------------------------
　　clearfix
------------------------------*/
.clearfix {
    zoom: 1;
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: 0;
    line-height: 0;
}

/*------------------------------
　　btn
------------------------------*/
.btn a {
    position: relative;
    text-decoration: none;
    display: block;
    color: #fff;
    background-color: #339FE6;
    font-weight: 700;
    white-space: normal;
    font-size: 1rem;
    text-align: center;
    height: 3.75rem;
    line-height: 3.75rem;
    border-radius: 1.875rem;
}
.btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.9375rem;
  background-color: #fff;
  mask-image: url("../img/common/button_icon.webp");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-image: url("../img/common/button_icon.webp");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
    .btn a:hover {
        opacity: unset;
        filter: unset;
        color: #339FE6;
        border: 1px solid #339FE6;
        background-color: #fff;
    }
    .btn a:hover::after {
        background-color: #339FE6;
    }
}

.btn.purchase a {
  color: #339fe6;
  background-color: #fff;
  border: 1px solid #339fe6;
  padding-left: 1rem;
}
.btn.purchase a::after {
  background-color: #339fe6;
}
.btn.purchase .cart-icon {
    position: absolute;
    top: calc(50% - 0.65rem);
    margin-left: -2rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #339fe6;
    mask-image: url(../img/common/shopping-cart.webp);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url(../img/common/shopping-cart.webp);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
.btn.docs a {
  background-color: #e68c33;
}
.btn.trial a {
  background-color: #003676;
}
.btn.ama a {
  background-color: #333E48;
}
.btn.raku a {
  background-color: #BF0000;
}
@media screen and (min-width: 768px) {
    .btn.purchase a:hover {
        color: #fff;
        background-color: #339fe6;
    }
    .btn.purchase a:hover::after {
        background-color: #fff;
    }
    .btn.purchase a:hover .cart-icon {
        background-color: #fff;
    }
    .btn.docs a:hover {
        color: #e68c33;
        background-color: #fff;
        border: 1px solid #e68c33
    }
    .btn.docs a:hover::after {
        background-color: #e68c33;
    }
    .btn.trial a:hover {
        color: #003676;
        background-color: #fff;
        border: 1px solid #003676;
    }
    .btn.trial a:hover::after {
        background-color: #003676;
    }
    .btn.ama a:hover {
        color: #333E48;
        background-color: #fff;
        border: 1px solid #333E48;
    }
    .btn.ama a:hover::after {
        background-color: #333E48;
    }
    .btn.raku a:hover {
        color: #BF0000;
        background-color: #fff;
        border: 1px solid #BF0000;
    }
    .btn.raku a:hover::after {
        background-color: #BF0000;
    }
}

/* ボタンエリア */
.btn-nav-area {
  display: flex;
  column-gap: 2%;
  width: 90%;
  max-width: 920px;
  margin: auto;
  align-items: center;
  justify-content: center;
}
.btn-nav-area .btn {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .btn-nav-area {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.btn-nav-area-ttl {
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.8rem;
}

/*===============================
　　header
===============================*/
.sp-header {
    display: none!important;
}
#top-head {
    top: -100px;
    position: absolute;
    width: 100%;
    margin: 100px auto 0;
    line-height: 1;
    z-index: 999;
    box-sizing: border-box;
    background: rgba(255, 255, 255, .85);
}
.header-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 0 0 25px;
}
#top-head .logo a {
    display: block;
    width: 110px;
}
#top-head .logo a img {
    width: 100%;
}
.nav-area {
    display: flex;
    align-items: center;
}
.nav-tel {
    font-size: 12px;
    text-align: right;
    margin-bottom: 15px;
    margin-right: 1em;
    display: flex;
    align-items: center;
    justify-content: end;
}
.nav-tel-txt-01 {
    padding-right: 8px;
}
.number {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.nav-tel .number {
    font-size: 15px;
    padding-top: 2px;
    padding-left: 18px;
    padding-right: 8px;
    position: relative;
    top: 1px;
    left: -1px;
}
.nav-tel .number:before {
    position: absolute;
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(../img/common/icon_nav_tel.webp) no-repeat;
    background-size: contain;
    top: 0;
    left: 0;
}
.nav-link-list {
    display: flex;
    font-size: 16px;
    font-weight: 700;
}
.nav-link-list li a {
    position: relative;
    margin: 0 20px;
    opacity: unset;
    transition: 0.3s;
}
.nav-info a {
    display: block;
    color: #fff;
    background-color: #339FE6;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    line-height: 90px;
    width: 220px;
    height: 90px;
}
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    height: 70px;
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
    height: 64px;
}
#top-head.fixed .header-inner {
    padding: 10px;
    box-sizing: border-box;
}
#top-head.fixed .logo a {
    width: 90px;
}
#top-head.fixed .nav-tel {
    margin-bottom: 9px;
}
#top-head.fixed .nav-info a {
    font-size: 15px;
    line-height: 40px;
    width: 200px;
    height: 40px;
    border-radius: 25px;
}
#top-head.fixed .nav-link-list li a {
    font-size: 14px;
    margin: 0 14px;
}
@media screen and (min-width: 1001px) {
    .nav-link-list li a::after {
      content: "";
      position: absolute;
      bottom: 0px;
      left: 0;
      width: 100%;
      height: 1px;
      background: #434343;
      opacity: 0;
      transition: 0.3s;
    }
    .nav-link-list li a:hover::after {
      opacity: 1;
    }
    #top-head.fixed .nav-link-list li a:hover {
        opacity: unset;
    }
}
@media screen and (min-width: 768px) {
    .nav-info a:hover {
        opacity: unset;
        filter: unset;
        color: #339FE6;
        border: 1px solid #339FE6;
        background-color: #fff;
    }
}

/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 44px;
    height: 44px;
    background-color: #fff;
}
#nav-toggle span {
    display: block;
    position: relative;
    height: 2px;
    width: 14px;
    background: #434343;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 16px;
}
#nav-toggle span:nth-child(2) {
    top: 19px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}

@media screen and (max-width: 1180px) {
    .nav-link-list li a {
        font-size: 14px;
        margin: 0 14px;
    }
    .nav-info a {
        width: 200px;
    }
}


@media screen and (max-width: 1000px) {
    .sp-header {
        display: block!important;
    }
    .pc-header {
        display: none;
    }
    .nav-link-list li a,
    #top-head.fixed .nav-link-list li a {
        margin: 0;
    }
    #top-head, .header-inner {
        width: 100%;
        padding: 0;
    }
    #top-head.fixed .header-inner {
        padding: 0;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
        background: transparent;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile-head {
        display: flex;
        align-items: center;
        background: transparent;
        width: 100%;
        height: 44px;
        z-index: 999;
        position: relative;
    }
    #top-head.fixed .logo, #top-head .logo {
        margin-left: 16px;
    }
    #top-head.fixed .logo a, #top-head .logo a {
        width: 70px;
        height: auto;
    }
    #top-head .nav-link-list,
    #top-head.fixed .nav-link-list {
        flex-direction: column;
        font-size: 16px;
        box-sizing: border-box;
        padding: 0;
        border-bottom: 1px solid #969696;
    }
    #top-head .nav-link-list li.hdr-sp-menu a,
    #top-head.fixed .nav-link-list li.hdr-sp-menu a {
        width: 100%;
        display: block;
        color: #434343;
        box-sizing: border-box;
        padding: 20px 3.5%;
        font-weight: 700;
        line-height: 1;
        text-align: left;
        border-top: 1px solid #969696;
        position: relative;
        font-size: 14px;
        box-sizing: border-box;
    }
    #top-head .nav-link-list li.hdr-sp-menu a:after,
    #top-head.fixed .nav-link-list li.hdr-sp-menu a:after {
        content: '';
        width: 6px;
        height: 6px;
        border: 0;
        border-top: solid 1px #434343;
        border-right: solid 1px #434343;
        transform: rotate(45deg);
        position: absolute;
        top: 0;
        right: 25px;
        bottom: 0;
        margin: auto;
    }
    #top-head.fixed .nav-link-list li a:visited, {
        color: #434343;
    }
    #global-nav {
        /* 開いてないときは画面外に配置 */
        position: absolute;
        top: 0;
        right: 0;
        background: #fff;
        width: 100vw;
        height: 100vh;
        text-align: center;
        padding: 44px 0 0;
        background-color: #e2e2e2;
        transition: .5s ease-in-out;
        transform: translateX(100vw);
        box-sizing: border-box;
    }
    #nav-toggle {
        display: block;
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        transform: translateX(0px);
        overflow-y: auto;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span {
        width: 19px;
    }
    .open #nav-toggle span:nth-child(1) {
        top: 21px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    .open #nav-toggle span:nth-child(2) {
        display: none;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 19px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
    #top-head.fixed .nav-info a,
    .nav-info a {
        font-size: 16px;
        width: 90%;
        max-width: 400px;
        height: 70px;
        line-height: 70px;
        border-radius: 35px;
        margin: 26px auto;
    }
    .nav-tel {
        flex-direction: column;
        row-gap: 8px;
    }
    .nav-tel-txt-01 {
        padding-right: 0;
        font-size: 14px;
    }
    .nav-tel .number {
        font-size: 32px;
        padding-top: 0;
        padding-left: 34px;
        padding-right: 0;
        top: 0;
        left: 0;
    }
    .nav-tel .number:before {
        width: 30px;
        height: 30px;
        left: -2px;
    }
}

@media screen and (max-width: 480px) {
    #top-head.fixed .logo, #top-head .logo {
        margin-left: 12px;
    }
    #top-head.fixed .logo a, #top-head .logo a {
        width: 57px;
        height: auto;
    }
}

/*SPアコーディオン*/
.hdr-sp-ac_btn a {
    color: #434343;
    box-sizing: border-box;
    font-weight: 700;
    line-height: 1;
    text-align: left;
    position: relative;
    font-size: 14px;
}
.hdr-sp-ac-inner a {
    width: 100%;
    display: block;
    color: #434343;
    box-sizing: border-box;
    padding: 20px;
    font-weight: 700;
    line-height: 1;
    text-align: left;
    border-top: 1px solid #b4b4b4;
    position: relative;
    font-size: 14px;
    box-sizing: border-box;
}
.hdr-sp-ac-inner a:after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 1px #434343;
    border-right: solid 1px #434343;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 26px;
    bottom: 0;
    margin: auto;
    }
.hdr-sp-ac-inner {
    display: none;
    background-color: #fff;
    width: 100%;
    text-align: left;
    padding: 0 0 0 3.5%;
    box-sizing: border-box;
}
.hdr-sp-ac_btn {
    width: 100%;
    position: relative;
    cursor: pointer;
    margin-top: 2px;
    padding: 20px 3.5%;
    border-top: 1px solid #b4b4b4;
    text-align: left;
    box-sizing: border-box;
    font-size: 14px;
}
.hdr-sp-ac_btn .icon {
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  right: 18px;
}
.hdr-sp-ac_btn .icon:before, .hdr-sp-ac_btn .icon:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #434343;
}
.hdr-sp-ac_btn .icon:before {
  width: 1px;
  height: 13px;
}
.hdr-sp-ac_btn .icon:after {
  width: 13px;
  height: 1px;
}
.hdr-sp-ac_btn.open .icon:before {
  display: none;
}



/* ==========================================
    footer-cta
   ========================================== */

.footer-cta {
  padding-bottom: 0.9375rem;
}

.footer-cta__primary-list {
  padding-top: 1.875rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.25rem;
  border-top: 0.0625rem solid #707070;
}

.footer-cta__lead {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #393939;
}

.footer-cta__btn {
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.975rem;
     -moz-column-gap: 0.975rem;
          column-gap: 0.975rem;
  border-radius: 6.25rem;
  padding: 0.875rem 1.5rem;
  border: 0.0625rem solid transparent;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
  position: relative;
}

.footer-cta__btn--docs {
  background-color: #e68c33;
  padding: 0.875rem 1.25rem 0.875rem 2rem;
}

.footer-cta__icon-wrapper--docs {
  position: relative;
  background-color: #fff;
  mask-image: url("../img/common/file_icon.webp");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-image: url("../img/common/file_icon.webp");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 1.25rem;
  height: 1.6875rem;
}

.footer-cta__icon-wrapper--mail {
  position: relative;
  background-color: #fff;
  mask-image: url("../img/common/mail_icon.webp");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-image: url("../img/common/mail_icon.webp");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  margin-top: 0.9375rem;
  width: 1.75rem;
  height: 1.3125rem;
}

.footer-cta__btn-text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.4;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer-cta__btn--mail {
  background-color: #339fe6;
  padding: 0.5625rem 1.1875rem;
}

.footer-cta__btn-main {
  display: block;
}

.footer-cta__btn-sub {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-left: 0.125rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer-cta__tel {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #393939;
}

.footer-cta__tel-label {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.footer-cta__tel-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.69375rem;
     -moz-column-gap: 0.69375rem;
          column-gap: 0.69375rem;
}

.footer-cta__tel-icon-wrapper {
  width: 2.1875rem;
}

.footer-cta__tel-icon-img {
  aspect-ratio: 1/1;
}

.footer-cta__tel-number {
  font-family: "Poppins", sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: #393939;
}

.footer-cta__tel-hours {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-left: 4rem;
}

.footer-cta__purchase {
  margin-top: 1.25rem;
}

.footer-cta__purchase-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.125rem;
     -moz-column-gap: 1.125rem;
          column-gap: 1.125rem;
  background-color: #f6f6f6;
  border-radius: 6.25rem;
  border: 0.0625rem solid #339fe6;
  padding: 0.625rem 0.9375rem;
  -webkit-transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.footer-cta__cart-icon-wrapper {
  position: relative;
  width: 1.75rem;
  height: 1.5525rem;
  background-color: #339fe6;
  mask-image: url("../img/common/shopping-cart.webp");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-image: url("../img/common/shopping-cart.webp");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.footer-cta__purchase-text {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #339fe6;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 370px) {
    .footer-cta__tel-number {
        font-size: 2rem;
    }
    .footer-cta__tel-hours {
        font-size: 0.8rem;
        margin-left: 1rem;
    }
}

/* ==========================================
    footer
   ========================================== */

.footer {
  padding: 0.9375rem 0 1.25rem;
}

.footer__inner {
  padding-inline: 1.875rem;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}

.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5rem;
}

.footer-nav__link,
.footer-products__link,
.footer-usecase__link {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #393939;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: inline-block;
}

.footer-products__link,
.footer-usecase__link {
  width: auto;
}

.footer-nav__link,
.footer-products__link,
.footer-usecase__link {
  text-decoration-color: transparent;
  text-underline-offset: 0.1875rem;
  -webkit-transition: background-color 0.3s, text-decoration-color 0.3s;
  transition: background-color 0.3s, text-decoration-color 0.3s;
}

@media screen and (min-width: 768px) {
    .footer-nav__link:hover,
    .footer-products__link:hover,
    .footer-usecase__link:hover {
        text-decoration: underline;
    }
}


.footer-products__title,
.footer-usecase__title {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #393939;
}

.footer-products__list {
  margin-top: 0.625rem;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(7, auto);
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.footer-usecase__list {
  margin-top: 0.625rem;
  display: grid;
  /*grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);*/
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.footer__bottom {
  margin-top: 1.875rem;
}

.footer__logo-wrapper {
  width: 9.375rem;
  margin-inline: auto;
  position: relative;
  left: -0.625rem;
}

.footer__logo-link {
  display: block;
}

.footer__legal-list {
  margin-top: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__legal-link {
  display: block;
  font-size: 0.75rem;
  line-height: 1.2;
  color: #393939;
  padding-inline: 0.6875rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.1875rem;
  -webkit-transition: color 0.3s, text-decoration-color 0.3s;
  transition: color 0.3s, text-decoration-color 0.3s;
}

.footer__legal-item + .footer__legal-item {
  border-left: 0.0625rem solid #393939;
}

.footer__copyright {
  margin-top: 0.9375rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #393939;
  text-align: center;
}

/* ==========================================
    ページトップボタン
   ========================================== */

.page-top {
  position: fixed;
  right: 0.9375rem;
  bottom: 4.375rem;
  width: 3.125rem;
  height: 3.125rem;
  background-color: #627a8b;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.0625rem solid #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
  z-index: 1000;
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.page-top::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 0.3125rem;
}

/* ==========================================
    固定CTA
   ========================================== */

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.fixed-cta.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fixed-cta__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #fff!important;
  height: 3.75rem;
}

.fixed-cta__link--docs {
  background-color: #e68c33;
}

.fixed-cta__link--contact {
  background-color: #339fe6;
}

.fixed-cta__icon {
  width: 1.25rem;
}

.fixed-cta__icon--contact {
  width: 1.625rem;
}
@media screen and (min-width: 768px){
  .fixed-cta {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }

  .footer-cta {
    padding-bottom: 1.5625rem;
  }

  .footer-cta__primary-list {
    padding-top: 5.625rem;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 5.625rem;
       -moz-column-gap: 5.625rem;
            column-gap: 5.625rem;
    padding-inline: 2.8125rem;
  }

  .footer-cta__lead {
    font-size: 1.75rem;
    line-height: 1.4285714286;
  }

  .footer-cta__btn {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-top: 1.25rem;
    padding: 1.6875rem 2.75rem 1.6875rem 4rem;
  }

  .footer-cta__icon-wrapper--docs {
    width: 1.640625rem;
    height: 2.1875rem;
  }

  .footer-cta__icon-wrapper--mail {
    margin-top: 0.625rem;
    width: 2.25rem;
    height: 1.6875rem;
  }

  .footer-cta__btn-text {
    font-size: 1.875rem;
    line-height: 1.4666666667;
  }

  .footer-cta__btn--mail {
    padding: 0.875rem 4.9375rem 0.875rem 5.1875rem;
  }

  .footer-cta__btn-sub {
    margin-left: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }

  .footer-cta__tel {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 2.8125rem;
    -webkit-column-gap: 2.5625rem;
       -moz-column-gap: 2.5625rem;
            column-gap: 2.5625rem;
  }

  .footer-cta__tel-label {
    font-size: 1.75rem;
    line-height: 1.4285714286;
  }

  .footer-cta__tel-icon-wrapper {
    width: 2.9375rem;
  }

  .footer-cta__tel-number {
    font-size: 3.375rem;
    line-height: 1.4074074074;
  }

  .footer-cta__tel-hours {
    font-size: 1.1875rem;
    line-height: 1.4210526316;
    margin-left: 0.625rem;
  }

  .footer-cta__purchase {
    margin-top: 1.5rem;
  }

  .footer-cta__purchase-link {
    width: 37.5rem;
    margin-inline: auto;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    padding: 1rem 1.25rem 0.9375rem;
  }

  .footer-cta__cart-icon-wrapper {
    width: 2rem;
    height: 1.7775rem;
  }

  .footer-cta__purchase-text {
    font-size: 1.625rem;
    line-height: 1.4230769231;
  }

  .footer {
    padding: 1.4375rem 0 1.1125rem;
  }

  .footer__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10.625rem;
  }

  .safari .footer__top {
    gap: 7.5rem;
  }

  .footer-nav {
    width: 20rem;
  }

  .footer-products {
    width: 25.1875rem;
  }

  .footer-usecase {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .footer-nav__list {
    row-gap: 0.9375rem;
  }

  .footer-nav__link,
  .footer-products__link,
  .footer-usecase__link {
    font-size: 0.9375rem;
    line-height: 1.3333333333;
  }

  .footer-products__link,
  .footer-usecase__link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .footer-usecase__link {
    width: auto;
  }

  .footer-products__title,
  .footer-usecase__title {
    font-size: 0.9375rem;
    line-height: 1.3333333333;
  }

  .footer-products__list {
    margin-top: 1rem;
    grid-auto-flow: column;
    grid-template-rows: repeat(5, auto);
    gap: 0.9375rem 1.875rem;
    margin-left: 0.375rem;
  }

  .footer-usecase__list {
    margin-top: 0.9375rem;
    /*grid-auto-flow: column;
    grid-template-rows: repeat(3, auto);*/
    gap: 0.875rem 1.9375rem;
    margin-left: 0.75rem;
    display: flex;
    flex-direction: column;
    width: 13rem;
  }

  .footer__bottom {
    margin-top: 5.5625rem;
    max-width: 1006px;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer__logo-wrapper {
    width: 10.285625rem;
    left: 0;
    margin-inline: 0;
  }

  .footer__legal-list {
    margin-top: 0;
    margin-left: 13rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .safari .footer__legal-list {
    margin-left: 11.25rem;
  }

  .footer__legal-link {
    font-size: 0.75rem;
    line-height: 1.2;
    padding-inline: 1.125rem;
  }

  .footer__copyright {
    margin-top: 0;
    margin-left: 1.6875rem;
    font-size: 0.75rem;
    line-height: 1.4166666667;
    text-align: left;
  }

  .page-top {
    right: 1.875rem;
    bottom: 1.875rem;
    width: 3.75rem;
    height: 3.75rem;
  }

  .page-top::before {
    width: 0.9375rem;
    height: 0.9375rem;
    border-top: 0.1875rem solid #fff;
    border-right: 0.1875rem solid #fff;
    margin-top: 0.4375rem;
  }
}
@media screen and (min-width: 1200px) {
  .footer__top {
    padding-right: 1.0625rem;
  }
}

@media (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }

  .footer-cta__btn:hover {
    opacity: 1;
  }

  .footer-cta__btn--docs:hover {
    background-color: #fff;
    border-color: #e68c33;
  }

  .footer-cta__btn--docs:hover .footer-cta__btn-text,
  .footer-cta__btn--docs:hover .footer-cta__btn-sub {
    color: #e68c33;
  }

  .footer-cta__btn--mail:hover {
    background-color: #fff;
    border-color: #339fe6;
  }

  .footer-cta__btn--mail:hover .footer-cta__btn-text,
  .footer-cta__btn--mail:hover .footer-cta__btn-sub {
    color: #339fe6;
  }

  .footer-cta__btn--docs:hover .footer-cta__icon-wrapper--docs {
    background-color: #e68c33;
  }

  .footer-cta__btn--mail:hover .footer-cta__icon-wrapper--mail {
    background-color: #339fe6;
  }

  .footer-cta__purchase-link:hover {
    opacity: 1;
    background-color: #339fe6;
    border-color: #fff;
  }

  .footer-cta__purchase-link:hover .footer-cta__purchase-text {
    color: #fff;
  }

  .footer-cta__purchase-link:hover .footer-cta__cart-icon-wrapper {
    background-color: #fff;
  }

  .footer-usecase__title a:hover,
  .footer-nav__link:hover,
  .footer-products__link:hover,
  .footer-usecase__link:hover {
    opacity: 1;
    color: #003676;
    text-decoration-color: #003676;
    text-decoration: underline;
  }

  .footer__legal-link:hover {
    opacity: 1;
    color: #003676;
    text-decoration-color: #003676;
  }

  .page-top:hover {
    opacity: 0.5;
  }
}

@media (min-width: 768px) and (max-width: 910px) {
    .footer-cta__btn-text {
        font-size: 1.8rem;
    }
    .footer-cta__tel-label {
        font-size: 1.7rem;
    }
}

/*========================================
  フェードインアニメーション（.js-fade-in）
========================================*/

.js-fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 1.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1.6s cubic-bezier(0.19, 1, 0.22, 1), transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1.6s cubic-bezier(0.19, 1, 0.22, 1), transform 1.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.js-fade-in.delay-200 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.js-fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*========================================
  パンくず
========================================*/

.breadcrumb {
  font-size: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5rem;
}
.breadcrumb a,
.breadcrumb a:visited {
  color: #969696;
}

/*========================================
  下層ページ
========================================*/

.page-main {
  position: relative;
  overflow-x: clip;
}
.page-ttl-area {
  margin: 4.375rem auto;
}
.page-ttl {
  font-size: 2.5rem;
  font-weight: 700;
}
.page-ttl-en {
  color: #339FE6;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
.page-sub-ttl {
  margin-top: 0.8rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.page-cts-ttl-en {
  color: #339FE6;
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
  text-align: center;
}
.page-cts-ttl {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
}
.page-cts-txt {
  font-size: 1.125rem;
  margin: 1.5rem auto;
  text-align: center;
  line-height: 1.88;
}
@media screen and (max-width: 767px) {
  .page-ttl-area {
      margin: 2rem auto;
  }
  .page-ttl {
    font-size: 2rem;
    line-height: 1.3;
  }
  .page-ttl-en {
    margin-top: 1rem;
  }
  .page-sub-ttl {
    font-size: 0.95rem;
  }
  .page-cts-ttl {
    font-size: 1.5rem;
  }
  .page-cts-txt {
    text-align: left;
    font-size: 1rem;
  }
}
@media screen and (max-width: 360px) {
  .page-cts-ttl {
    font-size: 1.2rem;
  }
}
.page_mv__circle {
  position: absolute;
  z-index: -1;
  top: -11.5rem;;
  right: -6.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page_mv__circle {
    top: -38.5rem;
    right: -19.25rem;
    width: 90.8333333333%;
    max-width: 81.75rem;
  }
}
.page_mv_figure {
    /*width: 100%;*/
    height: 570px;
    box-sizing: border-box;
    border-radius: 1.875rem 0 0 1.875rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: clip;
    margin-right: calc(50% - 50vw);
}
.page_mv_figure img {
    height: 100%;
}
@media screen and (min-width: 768px) {
  .page_mv_figure {
    border-radius: 2.5rem 0 0 2.5rem;
  }
}
@media screen and (max-width: 1000px) {
    .page_mv_figure {
        /*width: 92%;*/
        margin-left: 8%;
        margin-bottom: 2rem;
        height: 480px;
    }
}
.page-ttl-hr {
  height: 1px; 
  color: #707070;
  background-color: #707070;
  border: 0 none;
  margin: 1.5rem auto;
  width: 100%;
}

/* contact-onlineshop */
.page-contact-area {
  margin: 2rem auto;
}
.page-contact-area .contact-inner-cts {
  width: 100%;
  border-radius: 30px;
  background-color: #fff;
  padding: 3rem 0;
  margin: 3rem auto;
}
.page-contact-area .contact-inner-ttl {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.on-cts-area {
  padding: 3rem 0 1rem;
  position: relative;
  width: 100%;
  max-width: 1180px;
  background-color: #ECEFF0;
  border-radius: 1.875rem;
  margin: 2rem auto;
}
.on-cts-area__inner {
  position: relative;
  z-index: 1;
}
.on-cts-inner-cts {
  max-width: 920px;
  width: 100%;
  border-radius: 30px;
  background-color: #fff;
  padding: 3rem 1rem;
  margin: 3rem auto;
}
.on-cts-inner-ttl {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.on-cts-cts-txt {
    font-size: 1.125rem;
    margin: 1.5rem auto;
    text-align: center;
    line-height: 1.88;
}
@media screen and (min-width: 768px) {
  .page-contact-area,
  .on-cts-area {
    margin: 5.625rem auto;
  }
  .on-cts-area {
    padding: 3.75rem 0 3.75rem;
    border-radius: 5rem;
  }
  .on-cts-area .btn.purchase {
    margin: auto;
    max-width: 440px;
  }
  .on-cts-inner-cts {
    max-width: 60rem;
    margin-inline: auto;
  }
}

/*========================================
  ページネーション
========================================*/

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
    column-gap: 10px;
}
.pagination .page-numbers {
    display: flex;
    width: 3rem;
    height: 3rem;
    border: 1px solid #ddd;
    background-color: #fff;
    align-items: center;
    justify-content: center;
}
.pagination .page-numbers.current {
    border: 1px solid #627A8B;
    background-color: #627A8B;
    color: #fff;
}
@media screen and (min-width: 768px) {
  .pagination a.page-numbers:hover {
    opacity: 1;
    filter: unset;
    color: #fff;
    background-color: #627A8B;
  }
}

/*========================================
  タグ表示
========================================*/

.entry-tags-box {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
  margin-top: 1rem;
}
.entry-tags a {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  background-color: #627A8B;
  border: 1px solid #627A8B;
  padding: 2px 8px 3px;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .entry-tags a:hover {
    opacity: 1;
    filter: unset;
    color: #627A8B;
    background-color: #fff;
  }
}

/*========================================
  SCENE
========================================*/

.scene {
  padding: 1.875rem 0 1.875rem;
  overflow-x: clip;
  position: relative;
}
.scene__inner {
  position: relative;
  z-index: 1;
}
.scene__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.875rem;
  max-width: 1180px;
  column-gap: 2%;
  width: 100%;
}
.scene__item {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  width: 48%;
}
.scene__item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(57, 57, 57, 0.5);
  z-index: 2;
}
.scene__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.scene__img-wrapper {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.scene__img {
  aspect-ratio: 1/1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.scene__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.scene__ja,
.scene__en {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  text-align: center;
  margin-left: 0.625rem;
}
.scene__arrow-icon {
  width: 1rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.scene__en {
  margin-top: 1.875rem;
  margin-left: -0.1875rem;
}

@media screen and (min-width: 768px) {
  .scene {
    padding: 7.5rem 0 7.5rem;
  }
  .scene__list {
    margin-top: 2.53125rem;
    position: relative;
    row-gap: 24px;
    column-gap: 2%;
  }
  .scene__list li {
    width: 23.5%;
  }
  .scene__item {
    border-radius: 1.875rem;
    width: 23.5%;
  }
  .scene__item_btn {
    width: 23.5%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .scene__ja,
  .scene__en {
    font-size: 1.1rem;
    line-height: 1.3214285714;
    -webkit-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
    column-gap: 0.4rem;
    margin-left: 1rem;
  }
  .scene__ja {
    margin-top: -0.8125rem;
  }
  .scene__arrow-icon {
    width: 1.3rem;
  }
  .scene__en {
    margin-top: 2.0625rem;
    margin-left: -1.0625rem;
  }
  .scene__link:hover {
    opacity: 1;
  }
  .scene__link:hover .scene__arrow-icon {
    -webkit-transform: translateX(0.4rem);
            transform: translateX(0.4rem);
  }
  .scene__link:hover .scene__img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media screen and (max-width: 767px) {
  .scene {
    padding: 1.875rem 0 3rem;
  }
  .scene__item {
    width: 49%;
  }
  .scene__list {
    justify-content: space-between;
    row-gap: 1rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .scene__list {
    row-gap: 0.5rem;
  }
}
.scene__circle {
  position: absolute;
  z-index: -1;
  top: -13.625rem;
  right: -6.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .scene__circle {
    top: -25rem;
    right: -13rem;
    width: 90.8333333333%;
    max-width: 81.75rem;
  }
}

/*========================================
  PICK UP
========================================*/

.related_area {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 3rem;
  flex-direction: column;
  margin-top: 3rem;
}
.related_block_fig {
  border-radius: 30px;
  aspect-ratio: 376 / 250;
  overflow: hidden;
}
.related_block_fig img {
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.related_block_ttl {
    margin-top: 1rem;
    font-size: 1.38rem;
    line-height: 1.4;
    font-weight: 700;
      height: auto;
}
.cts-date-time {
  margin: 0.5rem auto;
}
@media screen and (min-width: 768px) {
  .related_area {
    flex-direction: row;
  }
  .related_link {
      min-width: 32%;
      width: 32%;
  }
  .related_link a:hover {
      opacity: unset;
      filter: unset;
  }
  .related_link a:hover img {
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
  }
  .related_block_ttl {
    height: 2.7em;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .related_block_fig {
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .related_area {
    margin-top: 2rem;
  }
}

/*-------------------------------
    page-bnrnav-area
-------------------------------*/
.page-bnrnav-area {
    padding: 4rem 0.9375rem;
    margin: 4rem auto;
    background-color: #627A8B;
}
.page-bnrnav-area .page-cts-ttl,
.page-bnrnav-area .page-cts-txt {
    color: #fff;
    text-align: center;
}
.page-bnrnav-area .page-bnrnav-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 1180px;
    margin: 2rem auto;
    justify-content: start;
    column-gap: 1.2rem;
    row-gap: 1.4rem;
}
.page-bnrnav-area .page-bnrnav-item {
    width: 48%;
}
.page-bnrnav-area .page-bnrnav-link {
    width: 100%;
    display: flex;
    border-radius: 0.875rem;
    background-color: #fff;
    overflow: clip;
    align-items: stretch;
}
.page-bnrnav-area .page-bnrnav-item-img,
.page-bnrnav-area .page-bnrnav-item-txt-area {
    width: 50%;
    overflow: clip;
    transition: transform 0.3s, -webkit-transform 0.3s;
}
.page-bnrnav-area .page-bnrnav-item-img img {
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.page-bnrnav-area .page-bnrnav-item-txt-area {
    padding: 1rem;
}
.page-bnrnav-area .page-bnrnav-item-ttl {
    font-size: 1.2rem;
    font-weight: 500;
}
.page-bnrnav-area .page-bnrnav-item-txt {
    font-size: 0.8125rem;
    text-align: left;
}
.page-bnrnav-area .page-bnrnav-link{
    position: relative;
}
.page-bnrnav-area .page-bnrnav-link:after {
    content: "";
    position: absolute;
    bottom: 0rem;
    right: 0.75rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background: url(../img/common/bnrnav_icon.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  a.page-bnrnav-link:hover {
      opacity: unset;
      filter: unset;
  }
  a.page-bnrnav-link:hover img {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
  }
  .page-bnrnav-area {
    padding: 6rem 0.9375rem;
    margin: 8rem auto;
  }
  .page-bnrnav-area .page-bnrnav-item {
    width: 23.75rem;
  }
  .page-bnrnav-area .page-bnrnav-link {
    border-radius: 1.25rem;
  }
  .page-bnrnav-area .page-bnrnav-link:hover:after {
      right: 0.5rem;
  }
  .page-bnrnav-area .page-bnrnav-item-ttl {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 620px) {
  .page-bnrnav-area .page-bnrnav-item {
      width: 100%;
  }
}

/*-------------------------------
    mv-form
-------------------------------*/
.mv-form-area {
    width: 424px;
    border-radius: 2.5rem;
    background-color: #fff;
    overflow: clip;
}
.mv-form-ttl {
    color: #fff;
    background-color: #003676;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    height: 60px;
    line-height: 60px;
}
.mv-form-inner {
    padding: 0 15px 16px;
}
.mv-form-caution {
    font-size: 10px;
}
.mv-form-caution a {
    text-decoration: underline;
}
.mv-form-tel {
    margin-top: 10px;
}
.mv-form-area iframe .fb-custom--title-layout {
    padding-top: 0;
}



