﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap");
/* ====================================================

    ┏───────────────────────┓
    │   Table Of Contents   │
    ┗───────────────────────┛

    1. General
       1-1. Reset
       1-2. Base
       1-3. Utility
    2. Animations
    3. Parts
    4. Block
    5. For IE
    99. Vendor

==================================================== */
/* ====================================

    1. General

==================================== */
/*
  1-1. Reset
==================================== */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700&display=swap&subset=japanese");
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,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: bottom;
}

a {
  outline: none;
  text-decoration: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", "Segoe UI", "Meiryo", sans-serif;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-appearance: none;
}

input:focus,
button:focus,
textarea:focus,
select:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

button {
  line-height: 1;
}

/*
  1-1. Base
==================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 768px) {
  html {
    font-size: calc(100vw / 37.5);
  }
}

body {
  color: #585858;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: system-ui, -apple-system, "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", "Segoe UI", "Meiryo", sans-serif;
  line-height: 1.66667;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
    -webkit-text-size-adjust: 100%;
  }
}

a {
  color: #585858;
}

/*
  1-1. Utility
==================================== */
._md {
  display: none !important;
}

@media screen and (max-width: 768px) {
  ._md {
    display: block !important;
  }
}

._md-flex {
  display: none !important;
}

@media screen and (max-width: 768px) {
  ._md-flex {
    display: -webkit-box !important;
    display: flex !important;
  }
}

._md-inline {
  display: none !important;
}

@media screen and (max-width: 768px) {
  ._md-inline {
    display: inline !important;
  }
}

._md-inb {
  display: none !important;
}

@media screen and (max-width: 768px) {
  ._md-inb {
    display: inline-block !important;
  }
}

._lg {
  display: block;
}

@media screen and (max-width: 768px) {
  ._lg {
    display: none !important;
  }
}

._lg-flex {
  display: none !important;
}

@media screen and (min-width: 769px) {
  ._lg-flex {
    display: -webkit-box !important;
    display: flex !important;
  }
}

._lg-inline {
  display: none !important;
}

@media screen and (min-width: 769px) {
  ._lg-inline {
    display: inline !important;
  }
}

._lg-inb {
  display: none !important;
}

@media screen and (min-width: 769px) {
  ._lg-inb {
    display: inline-block !important;
  }
}

._text-center {
  text-align: center;
}

._text-right {
  text-align: right;
}

._text-tiny {
  font-size: 12px !important;
  font-size: 1.2rem !important;
}

@media screen and (max-width: 768px) {
  ._text-tiny {
    font-size: 10px !important;
    font-size: 1rem !important;
  }
}

._text-small {
  font-size: 14px !important;
  font-size: 1.4rem !important;
}

@media screen and (max-width: 768px) {
  ._text-small {
    font-size: 12px !important;
    font-size: 1.2rem !important;
  }
}

._text-base {
  font-size: 16px !important;
  font-size: 1.6rem !important;
}

@media screen and (max-width: 768px) {
  ._text-base {
    font-size: 14px !important;
    font-size: 1.4rem !important;
  }
}

._text-medium {
  font-size: 18px !important;
  font-size: 1.8rem !important;
}

@media screen and (max-width: 768px) {
  ._text-medium {
    font-size: 16px !important;
    font-size: 1.6rem !important;
  }
}

._text-large {
  font-size: 20px !important;
  font-size: 2rem !important;
}

@media screen and (max-width: 768px) {
  ._text-large {
    font-size: 18px !important;
    font-size: 1.8rem !important;
  }
}

._text-big {
  font-size: 22px !important;
  font-size: 2.2rem !important;
}

@media screen and (max-width: 768px) {
  ._text-big {
    font-size: 20px !important;
    font-size: 2rem !important;
  }
}

._text-primary {
  color: #C12324;
}

._text-secondary {
  color: #ffe420;
}

._text-tertiary {
  color: #f67375;
}

._text-muted {
  color: #585858;
}

._text-dark {
  color: #000;
}

._text-em {
  font-weight: 700;
}

._text-sup {
  font-size: 14px;
  font-size: 1.4rem;
  vertical-align: top;
}

._text-note {
  position: relative;
  padding-left: 1.5em;
}

._text-note span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

[class^='icon'].-light {
  fill: #fff;
}

[class^='icon'].-muted {
  fill: #585858;
}

[class^='icon'].-primary {
  fill: #C12324;
}

[class^='icon'].-secondary {
  fill: #ffe420;
}

[class^='icon'].-mirror {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

._mt-0 {
  margin-top: 0px !important;
}

@media screen and (max-width: 768px) {
  ._mt-0 {
    margin-top: 0vw !important;
  }
}

._mr-0 {
  margin-right: 0px !important;
}

@media screen and (max-width: 768px) {
  ._mr-0 {
    margin-right: 0vw !important;
  }
}

._mb-0 {
  margin-bottom: 0px !important;
}

@media screen and (max-width: 768px) {
  ._mb-0 {
    margin-bottom: 0vw !important;
  }
}

._ml-0 {
  margin-left: 0px !important;
}

@media screen and (max-width: 768px) {
  ._ml-0 {
    margin-left: 0vw !important;
  }
}

._mt-5 {
  margin-top: 5px !important;
}

@media screen and (max-width: 768px) {
  ._mt-5 {
    margin-top: 0.66667vw !important;
  }
}

._mr-5 {
  margin-right: 5px !important;
}

@media screen and (max-width: 768px) {
  ._mr-5 {
    margin-right: 0.66667vw !important;
  }
}

._mb-5 {
  margin-bottom: 5px !important;
}

@media screen and (max-width: 768px) {
  ._mb-5 {
    margin-bottom: 0.66667vw !important;
  }
}

._ml-5 {
  margin-left: 5px !important;
}

@media screen and (max-width: 768px) {
  ._ml-5 {
    margin-left: 0.66667vw !important;
  }
}

._mt-10 {
  margin-top: 10px !important;
}

@media screen and (max-width: 768px) {
  ._mt-10 {
    margin-top: 1.33333vw !important;
  }
}

._mr-10 {
  margin-right: 10px !important;
}

@media screen and (max-width: 768px) {
  ._mr-10 {
    margin-right: 1.33333vw !important;
  }
}

._mb-10 {
  margin-bottom: 10px !important;
}

@media screen and (max-width: 768px) {
  ._mb-10 {
    margin-bottom: 1.33333vw !important;
  }
}

._ml-10 {
  margin-left: 10px !important;
}

@media screen and (max-width: 768px) {
  ._ml-10 {
    margin-left: 1.33333vw !important;
  }
}

._mt-15 {
  margin-top: 15px !important;
}

@media screen and (max-width: 768px) {
  ._mt-15 {
    margin-top: 2vw !important;
  }
}

._mr-15 {
  margin-right: 15px !important;
}

@media screen and (max-width: 768px) {
  ._mr-15 {
    margin-right: 2vw !important;
  }
}

._mb-15 {
  margin-bottom: 15px !important;
}

@media screen and (max-width: 768px) {
  ._mb-15 {
    margin-bottom: 2vw !important;
  }
}

._ml-15 {
  margin-left: 15px !important;
}

@media screen and (max-width: 768px) {
  ._ml-15 {
    margin-left: 2vw !important;
  }
}

._mt-20 {
  margin-top: 20px !important;
}

@media screen and (max-width: 768px) {
  ._mt-20 {
    margin-top: 2.66667vw !important;
  }
}

._mr-20 {
  margin-right: 20px !important;
}

@media screen and (max-width: 768px) {
  ._mr-20 {
    margin-right: 2.66667vw !important;
  }
}

._mb-20 {
  margin-bottom: 20px !important;
}

@media screen and (max-width: 768px) {
  ._mb-20 {
    margin-bottom: 2.66667vw !important;
  }
}

._ml-20 {
  margin-left: 20px !important;
}

@media screen and (max-width: 768px) {
  ._ml-20 {
    margin-left: 2.66667vw !important;
  }
}

._mt-25 {
  margin-top: 25px !important;
}

@media screen and (max-width: 768px) {
  ._mt-25 {
    margin-top: 3.33333vw !important;
  }
}

._mr-25 {
  margin-right: 25px !important;
}

@media screen and (max-width: 768px) {
  ._mr-25 {
    margin-right: 3.33333vw !important;
  }
}

._mb-25 {
  margin-bottom: 25px !important;
}

@media screen and (max-width: 768px) {
  ._mb-25 {
    margin-bottom: 3.33333vw !important;
  }
}

._ml-25 {
  margin-left: 25px !important;
}

@media screen and (max-width: 768px) {
  ._ml-25 {
    margin-left: 3.33333vw !important;
  }
}

._mt-30 {
  margin-top: 30px !important;
}

@media screen and (max-width: 768px) {
  ._mt-30 {
    margin-top: 4vw !important;
  }
}

._mr-30 {
  margin-right: 30px !important;
}

@media screen and (max-width: 768px) {
  ._mr-30 {
    margin-right: 4vw !important;
  }
}

._mb-30 {
  margin-bottom: 30px !important;
}

@media screen and (max-width: 768px) {
  ._mb-30 {
    margin-bottom: 4vw !important;
  }
}

._ml-30 {
  margin-left: 30px !important;
}

@media screen and (max-width: 768px) {
  ._ml-30 {
    margin-left: 4vw !important;
  }
}

._mt-35 {
  margin-top: 35px !important;
}

@media screen and (max-width: 768px) {
  ._mt-35 {
    margin-top: 4.66667vw !important;
  }
}

._mr-35 {
  margin-right: 35px !important;
}

@media screen and (max-width: 768px) {
  ._mr-35 {
    margin-right: 4.66667vw !important;
  }
}

._mb-35 {
  margin-bottom: 35px !important;
}

@media screen and (max-width: 768px) {
  ._mb-35 {
    margin-bottom: 4.66667vw !important;
  }
}

._ml-35 {
  margin-left: 35px !important;
}

@media screen and (max-width: 768px) {
  ._ml-35 {
    margin-left: 4.66667vw !important;
  }
}

._mt-40 {
  margin-top: 40px !important;
}

@media screen and (max-width: 768px) {
  ._mt-40 {
    margin-top: 5.33333vw !important;
  }
}

._mr-40 {
  margin-right: 40px !important;
}

@media screen and (max-width: 768px) {
  ._mr-40 {
    margin-right: 5.33333vw !important;
  }
}

._mb-40 {
  margin-bottom: 40px !important;
}

@media screen and (max-width: 768px) {
  ._mb-40 {
    margin-bottom: 5.33333vw !important;
  }
}

._ml-40 {
  margin-left: 40px !important;
}

@media screen and (max-width: 768px) {
  ._ml-40 {
    margin-left: 5.33333vw !important;
  }
}

._mt-45 {
  margin-top: 45px !important;
}

@media screen and (max-width: 768px) {
  ._mt-45 {
    margin-top: 6vw !important;
  }
}

._mr-45 {
  margin-right: 45px !important;
}

@media screen and (max-width: 768px) {
  ._mr-45 {
    margin-right: 6vw !important;
  }
}

._mb-45 {
  margin-bottom: 45px !important;
}

@media screen and (max-width: 768px) {
  ._mb-45 {
    margin-bottom: 6vw !important;
  }
}

._ml-45 {
  margin-left: 45px !important;
}

@media screen and (max-width: 768px) {
  ._ml-45 {
    margin-left: 6vw !important;
  }
}

._mt-50 {
  margin-top: 50px !important;
}

@media screen and (max-width: 768px) {
  ._mt-50 {
    margin-top: 6.66667vw !important;
  }
}

._mr-50 {
  margin-right: 50px !important;
}

@media screen and (max-width: 768px) {
  ._mr-50 {
    margin-right: 6.66667vw !important;
  }
}

._mb-50 {
  margin-bottom: 50px !important;
}

@media screen and (max-width: 768px) {
  ._mb-50 {
    margin-bottom: 6.66667vw !important;
  }
}

._ml-50 {
  margin-left: 50px !important;
}

@media screen and (max-width: 768px) {
  ._ml-50 {
    margin-left: 6.66667vw !important;
  }
}

._mt-55 {
  margin-top: 55px !important;
}

@media screen and (max-width: 768px) {
  ._mt-55 {
    margin-top: 7.33333vw !important;
  }
}

._mr-55 {
  margin-right: 55px !important;
}

@media screen and (max-width: 768px) {
  ._mr-55 {
    margin-right: 7.33333vw !important;
  }
}

._mb-55 {
  margin-bottom: 55px !important;
}

@media screen and (max-width: 768px) {
  ._mb-55 {
    margin-bottom: 7.33333vw !important;
  }
}

._ml-55 {
  margin-left: 55px !important;
}

@media screen and (max-width: 768px) {
  ._ml-55 {
    margin-left: 7.33333vw !important;
  }
}

._mt-60 {
  margin-top: 60px !important;
}

@media screen and (max-width: 768px) {
  ._mt-60 {
    margin-top: 8vw !important;
  }
}

._mr-60 {
  margin-right: 60px !important;
}

@media screen and (max-width: 768px) {
  ._mr-60 {
    margin-right: 8vw !important;
  }
}

._mb-60 {
  margin-bottom: 60px !important;
}

@media screen and (max-width: 768px) {
  ._mb-60 {
    margin-bottom: 8vw !important;
  }
}

._ml-60 {
  margin-left: 60px !important;
}

@media screen and (max-width: 768px) {
  ._ml-60 {
    margin-left: 8vw !important;
  }
}

._mt-65 {
  margin-top: 65px !important;
}

@media screen and (max-width: 768px) {
  ._mt-65 {
    margin-top: 8.66667vw !important;
  }
}

._mr-65 {
  margin-right: 65px !important;
}

@media screen and (max-width: 768px) {
  ._mr-65 {
    margin-right: 8.66667vw !important;
  }
}

._mb-65 {
  margin-bottom: 65px !important;
}

@media screen and (max-width: 768px) {
  ._mb-65 {
    margin-bottom: 8.66667vw !important;
  }
}

._ml-65 {
  margin-left: 65px !important;
}

@media screen and (max-width: 768px) {
  ._ml-65 {
    margin-left: 8.66667vw !important;
  }
}

._mt-70 {
  margin-top: 70px !important;
}

@media screen and (max-width: 768px) {
  ._mt-70 {
    margin-top: 9.33333vw !important;
  }
}

._mr-70 {
  margin-right: 70px !important;
}

@media screen and (max-width: 768px) {
  ._mr-70 {
    margin-right: 9.33333vw !important;
  }
}

._mb-70 {
  margin-bottom: 70px !important;
}

@media screen and (max-width: 768px) {
  ._mb-70 {
    margin-bottom: 9.33333vw !important;
  }
}

._ml-70 {
  margin-left: 70px !important;
}

@media screen and (max-width: 768px) {
  ._ml-70 {
    margin-left: 9.33333vw !important;
  }
}

._mt-75 {
  margin-top: 75px !important;
}

@media screen and (max-width: 768px) {
  ._mt-75 {
    margin-top: 10vw !important;
  }
}

._mr-75 {
  margin-right: 75px !important;
}

@media screen and (max-width: 768px) {
  ._mr-75 {
    margin-right: 10vw !important;
  }
}

._mb-75 {
  margin-bottom: 75px !important;
}

@media screen and (max-width: 768px) {
  ._mb-75 {
    margin-bottom: 10vw !important;
  }
}

._ml-75 {
  margin-left: 75px !important;
}

@media screen and (max-width: 768px) {
  ._ml-75 {
    margin-left: 10vw !important;
  }
}

._mt-80 {
  margin-top: 80px !important;
}

@media screen and (max-width: 768px) {
  ._mt-80 {
    margin-top: 10.66667vw !important;
  }
}

._mr-80 {
  margin-right: 80px !important;
}

@media screen and (max-width: 768px) {
  ._mr-80 {
    margin-right: 10.66667vw !important;
  }
}

._mb-80 {
  margin-bottom: 80px !important;
}

@media screen and (max-width: 768px) {
  ._mb-80 {
    margin-bottom: 10.66667vw !important;
  }
}

._ml-80 {
  margin-left: 80px !important;
}

@media screen and (max-width: 768px) {
  ._ml-80 {
    margin-left: 10.66667vw !important;
  }
}

._mt-85 {
  margin-top: 85px !important;
}

@media screen and (max-width: 768px) {
  ._mt-85 {
    margin-top: 11.33333vw !important;
  }
}

._mr-85 {
  margin-right: 85px !important;
}

@media screen and (max-width: 768px) {
  ._mr-85 {
    margin-right: 11.33333vw !important;
  }
}

._mb-85 {
  margin-bottom: 85px !important;
}

@media screen and (max-width: 768px) {
  ._mb-85 {
    margin-bottom: 11.33333vw !important;
  }
}

._ml-85 {
  margin-left: 85px !important;
}

@media screen and (max-width: 768px) {
  ._ml-85 {
    margin-left: 11.33333vw !important;
  }
}

._mt-90 {
  margin-top: 90px !important;
}

@media screen and (max-width: 768px) {
  ._mt-90 {
    margin-top: 12vw !important;
  }
}

._mr-90 {
  margin-right: 90px !important;
}

@media screen and (max-width: 768px) {
  ._mr-90 {
    margin-right: 12vw !important;
  }
}

._mb-90 {
  margin-bottom: 90px !important;
}

@media screen and (max-width: 768px) {
  ._mb-90 {
    margin-bottom: 12vw !important;
  }
}

._ml-90 {
  margin-left: 90px !important;
}

@media screen and (max-width: 768px) {
  ._ml-90 {
    margin-left: 12vw !important;
  }
}

._mt-95 {
  margin-top: 95px !important;
}

@media screen and (max-width: 768px) {
  ._mt-95 {
    margin-top: 12.66667vw !important;
  }
}

._mr-95 {
  margin-right: 95px !important;
}

@media screen and (max-width: 768px) {
  ._mr-95 {
    margin-right: 12.66667vw !important;
  }
}

._mb-95 {
  margin-bottom: 95px !important;
}

@media screen and (max-width: 768px) {
  ._mb-95 {
    margin-bottom: 12.66667vw !important;
  }
}

._ml-95 {
  margin-left: 95px !important;
}

@media screen and (max-width: 768px) {
  ._ml-95 {
    margin-left: 12.66667vw !important;
  }
}

._mt-100 {
  margin-top: 100px !important;
}

@media screen and (max-width: 768px) {
  ._mt-100 {
    margin-top: 13.33333vw !important;
  }
}

._mr-100 {
  margin-right: 100px !important;
}

@media screen and (max-width: 768px) {
  ._mr-100 {
    margin-right: 13.33333vw !important;
  }
}

._mb-100 {
  margin-bottom: 100px !important;
}

@media screen and (max-width: 768px) {
  ._mb-100 {
    margin-bottom: 13.33333vw !important;
  }
}

._ml-100 {
  margin-left: 100px !important;
}

@media screen and (max-width: 768px) {
  ._ml-100 {
    margin-left: 13.33333vw !important;
  }
}

._pt-0 {
  padding-top: 0px !important;
}

@media screen and (max-width: 768px) {
  ._pt-0 {
    padding-top: 0vw !important;
  }
}

._pr-0 {
  padding-right: 0px !important;
}

@media screen and (max-width: 768px) {
  ._pr-0 {
    padding-right: 0vw !important;
  }
}

._pb-0 {
  padding-bottom: 0px !important;
}

@media screen and (max-width: 768px) {
  ._pb-0 {
    padding-bottom: 0vw !important;
  }
}

._pl-0 {
  padding-left: 0px !important;
}

@media screen and (max-width: 768px) {
  ._pl-0 {
    padding-left: 0vw !important;
  }
}

._pt-5 {
  padding-top: 5px !important;
}

@media screen and (max-width: 768px) {
  ._pt-5 {
    padding-top: 0.66667vw !important;
  }
}

._pr-5 {
  padding-right: 5px !important;
}

@media screen and (max-width: 768px) {
  ._pr-5 {
    padding-right: 0.66667vw !important;
  }
}

._pb-5 {
  padding-bottom: 5px !important;
}

@media screen and (max-width: 768px) {
  ._pb-5 {
    padding-bottom: 0.66667vw !important;
  }
}

._pl-5 {
  padding-left: 5px !important;
}

@media screen and (max-width: 768px) {
  ._pl-5 {
    padding-left: 0.66667vw !important;
  }
}

._pt-10 {
  padding-top: 10px !important;
}

@media screen and (max-width: 768px) {
  ._pt-10 {
    padding-top: 1.33333vw !important;
  }
}

._pr-10 {
  padding-right: 10px !important;
}

@media screen and (max-width: 768px) {
  ._pr-10 {
    padding-right: 1.33333vw !important;
  }
}

._pb-10 {
  padding-bottom: 10px !important;
}

@media screen and (max-width: 768px) {
  ._pb-10 {
    padding-bottom: 1.33333vw !important;
  }
}

._pl-10 {
  padding-left: 10px !important;
}

@media screen and (max-width: 768px) {
  ._pl-10 {
    padding-left: 1.33333vw !important;
  }
}

._pt-15 {
  padding-top: 15px !important;
}

@media screen and (max-width: 768px) {
  ._pt-15 {
    padding-top: 2vw !important;
  }
}

._pr-15 {
  padding-right: 15px !important;
}

@media screen and (max-width: 768px) {
  ._pr-15 {
    padding-right: 2vw !important;
  }
}

._pb-15 {
  padding-bottom: 15px !important;
}

@media screen and (max-width: 768px) {
  ._pb-15 {
    padding-bottom: 2vw !important;
  }
}

._pl-15 {
  padding-left: 15px !important;
}

@media screen and (max-width: 768px) {
  ._pl-15 {
    padding-left: 2vw !important;
  }
}

._pt-20 {
  padding-top: 20px !important;
}

@media screen and (max-width: 768px) {
  ._pt-20 {
    padding-top: 2.66667vw !important;
  }
}

._pr-20 {
  padding-right: 20px !important;
}

@media screen and (max-width: 768px) {
  ._pr-20 {
    padding-right: 2.66667vw !important;
  }
}

._pb-20 {
  padding-bottom: 20px !important;
}

@media screen and (max-width: 768px) {
  ._pb-20 {
    padding-bottom: 2.66667vw !important;
  }
}

._pl-20 {
  padding-left: 20px !important;
}

@media screen and (max-width: 768px) {
  ._pl-20 {
    padding-left: 2.66667vw !important;
  }
}

._pt-25 {
  padding-top: 25px !important;
}

@media screen and (max-width: 768px) {
  ._pt-25 {
    padding-top: 3.33333vw !important;
  }
}

._pr-25 {
  padding-right: 25px !important;
}

@media screen and (max-width: 768px) {
  ._pr-25 {
    padding-right: 3.33333vw !important;
  }
}

._pb-25 {
  padding-bottom: 25px !important;
}

@media screen and (max-width: 768px) {
  ._pb-25 {
    padding-bottom: 3.33333vw !important;
  }
}

._pl-25 {
  padding-left: 25px !important;
}

@media screen and (max-width: 768px) {
  ._pl-25 {
    padding-left: 3.33333vw !important;
  }
}

._pt-30 {
  padding-top: 30px !important;
}

@media screen and (max-width: 768px) {
  ._pt-30 {
    padding-top: 4vw !important;
  }
}

._pr-30 {
  padding-right: 30px !important;
}

@media screen and (max-width: 768px) {
  ._pr-30 {
    padding-right: 4vw !important;
  }
}

._pb-30 {
  padding-bottom: 30px !important;
}

@media screen and (max-width: 768px) {
  ._pb-30 {
    padding-bottom: 4vw !important;
  }
}

._pl-30 {
  padding-left: 30px !important;
}

@media screen and (max-width: 768px) {
  ._pl-30 {
    padding-left: 4vw !important;
  }
}

._pt-35 {
  padding-top: 35px !important;
}

@media screen and (max-width: 768px) {
  ._pt-35 {
    padding-top: 4.66667vw !important;
  }
}

._pr-35 {
  padding-right: 35px !important;
}

@media screen and (max-width: 768px) {
  ._pr-35 {
    padding-right: 4.66667vw !important;
  }
}

._pb-35 {
  padding-bottom: 35px !important;
}

@media screen and (max-width: 768px) {
  ._pb-35 {
    padding-bottom: 4.66667vw !important;
  }
}

._pl-35 {
  padding-left: 35px !important;
}

@media screen and (max-width: 768px) {
  ._pl-35 {
    padding-left: 4.66667vw !important;
  }
}

._pt-40 {
  padding-top: 40px !important;
}

@media screen and (max-width: 768px) {
  ._pt-40 {
    padding-top: 5.33333vw !important;
  }
}

._pr-40 {
  padding-right: 40px !important;
}

@media screen and (max-width: 768px) {
  ._pr-40 {
    padding-right: 5.33333vw !important;
  }
}

._pb-40 {
  padding-bottom: 40px !important;
}

@media screen and (max-width: 768px) {
  ._pb-40 {
    padding-bottom: 5.33333vw !important;
  }
}

._pl-40 {
  padding-left: 40px !important;
}

@media screen and (max-width: 768px) {
  ._pl-40 {
    padding-left: 5.33333vw !important;
  }
}

._pt-45 {
  padding-top: 45px !important;
}

@media screen and (max-width: 768px) {
  ._pt-45 {
    padding-top: 6vw !important;
  }
}

._pr-45 {
  padding-right: 45px !important;
}

@media screen and (max-width: 768px) {
  ._pr-45 {
    padding-right: 6vw !important;
  }
}

._pb-45 {
  padding-bottom: 45px !important;
}

@media screen and (max-width: 768px) {
  ._pb-45 {
    padding-bottom: 6vw !important;
  }
}

._pl-45 {
  padding-left: 45px !important;
}

@media screen and (max-width: 768px) {
  ._pl-45 {
    padding-left: 6vw !important;
  }
}

._pt-50 {
  padding-top: 50px !important;
}

@media screen and (max-width: 768px) {
  ._pt-50 {
    padding-top: 6.66667vw !important;
  }
}

._pr-50 {
  padding-right: 50px !important;
}

@media screen and (max-width: 768px) {
  ._pr-50 {
    padding-right: 6.66667vw !important;
  }
}

._pb-50 {
  padding-bottom: 50px !important;
}

@media screen and (max-width: 768px) {
  ._pb-50 {
    padding-bottom: 6.66667vw !important;
  }
}

._pl-50 {
  padding-left: 50px !important;
}

@media screen and (max-width: 768px) {
  ._pl-50 {
    padding-left: 6.66667vw !important;
  }
}

._pt-55 {
  padding-top: 55px !important;
}

@media screen and (max-width: 768px) {
  ._pt-55 {
    padding-top: 7.33333vw !important;
  }
}

._pr-55 {
  padding-right: 55px !important;
}

@media screen and (max-width: 768px) {
  ._pr-55 {
    padding-right: 7.33333vw !important;
  }
}

._pb-55 {
  padding-bottom: 55px !important;
}

@media screen and (max-width: 768px) {
  ._pb-55 {
    padding-bottom: 7.33333vw !important;
  }
}

._pl-55 {
  padding-left: 55px !important;
}

@media screen and (max-width: 768px) {
  ._pl-55 {
    padding-left: 7.33333vw !important;
  }
}

._pt-60 {
  padding-top: 60px !important;
}

@media screen and (max-width: 768px) {
  ._pt-60 {
    padding-top: 8vw !important;
  }
}

._pr-60 {
  padding-right: 60px !important;
}

@media screen and (max-width: 768px) {
  ._pr-60 {
    padding-right: 8vw !important;
  }
}

._pb-60 {
  padding-bottom: 60px !important;
}

@media screen and (max-width: 768px) {
  ._pb-60 {
    padding-bottom: 8vw !important;
  }
}

._pl-60 {
  padding-left: 60px !important;
}

@media screen and (max-width: 768px) {
  ._pl-60 {
    padding-left: 8vw !important;
  }
}

._pt-65 {
  padding-top: 65px !important;
}

@media screen and (max-width: 768px) {
  ._pt-65 {
    padding-top: 8.66667vw !important;
  }
}

._pr-65 {
  padding-right: 65px !important;
}

@media screen and (max-width: 768px) {
  ._pr-65 {
    padding-right: 8.66667vw !important;
  }
}

._pb-65 {
  padding-bottom: 65px !important;
}

@media screen and (max-width: 768px) {
  ._pb-65 {
    padding-bottom: 8.66667vw !important;
  }
}

._pl-65 {
  padding-left: 65px !important;
}

@media screen and (max-width: 768px) {
  ._pl-65 {
    padding-left: 8.66667vw !important;
  }
}

._pt-70 {
  padding-top: 70px !important;
}

@media screen and (max-width: 768px) {
  ._pt-70 {
    padding-top: 9.33333vw !important;
  }
}

._pr-70 {
  padding-right: 70px !important;
}

@media screen and (max-width: 768px) {
  ._pr-70 {
    padding-right: 9.33333vw !important;
  }
}

._pb-70 {
  padding-bottom: 70px !important;
}

@media screen and (max-width: 768px) {
  ._pb-70 {
    padding-bottom: 9.33333vw !important;
  }
}

._pl-70 {
  padding-left: 70px !important;
}

@media screen and (max-width: 768px) {
  ._pl-70 {
    padding-left: 9.33333vw !important;
  }
}

._pt-75 {
  padding-top: 75px !important;
}

@media screen and (max-width: 768px) {
  ._pt-75 {
    padding-top: 10vw !important;
  }
}

._pr-75 {
  padding-right: 75px !important;
}

@media screen and (max-width: 768px) {
  ._pr-75 {
    padding-right: 10vw !important;
  }
}

._pb-75 {
  padding-bottom: 75px !important;
}

@media screen and (max-width: 768px) {
  ._pb-75 {
    padding-bottom: 10vw !important;
  }
}

._pl-75 {
  padding-left: 75px !important;
}

@media screen and (max-width: 768px) {
  ._pl-75 {
    padding-left: 10vw !important;
  }
}

._pt-80 {
  padding-top: 80px !important;
}

@media screen and (max-width: 768px) {
  ._pt-80 {
    padding-top: 10.66667vw !important;
  }
}

._pr-80 {
  padding-right: 80px !important;
}

@media screen and (max-width: 768px) {
  ._pr-80 {
    padding-right: 10.66667vw !important;
  }
}

._pb-80 {
  padding-bottom: 80px !important;
}

@media screen and (max-width: 768px) {
  ._pb-80 {
    padding-bottom: 10.66667vw !important;
  }
}

._pl-80 {
  padding-left: 80px !important;
}

@media screen and (max-width: 768px) {
  ._pl-80 {
    padding-left: 10.66667vw !important;
  }
}

._pt-85 {
  padding-top: 85px !important;
}

@media screen and (max-width: 768px) {
  ._pt-85 {
    padding-top: 11.33333vw !important;
  }
}

._pr-85 {
  padding-right: 85px !important;
}

@media screen and (max-width: 768px) {
  ._pr-85 {
    padding-right: 11.33333vw !important;
  }
}

._pb-85 {
  padding-bottom: 85px !important;
}

@media screen and (max-width: 768px) {
  ._pb-85 {
    padding-bottom: 11.33333vw !important;
  }
}

._pl-85 {
  padding-left: 85px !important;
}

@media screen and (max-width: 768px) {
  ._pl-85 {
    padding-left: 11.33333vw !important;
  }
}

._pt-90 {
  padding-top: 90px !important;
}

@media screen and (max-width: 768px) {
  ._pt-90 {
    padding-top: 12vw !important;
  }
}

._pr-90 {
  padding-right: 90px !important;
}

@media screen and (max-width: 768px) {
  ._pr-90 {
    padding-right: 12vw !important;
  }
}

._pb-90 {
  padding-bottom: 90px !important;
}

@media screen and (max-width: 768px) {
  ._pb-90 {
    padding-bottom: 12vw !important;
  }
}

._pl-90 {
  padding-left: 90px !important;
}

@media screen and (max-width: 768px) {
  ._pl-90 {
    padding-left: 12vw !important;
  }
}

._pt-95 {
  padding-top: 95px !important;
}

@media screen and (max-width: 768px) {
  ._pt-95 {
    padding-top: 12.66667vw !important;
  }
}

._pr-95 {
  padding-right: 95px !important;
}

@media screen and (max-width: 768px) {
  ._pr-95 {
    padding-right: 12.66667vw !important;
  }
}

._pb-95 {
  padding-bottom: 95px !important;
}

@media screen and (max-width: 768px) {
  ._pb-95 {
    padding-bottom: 12.66667vw !important;
  }
}

._pl-95 {
  padding-left: 95px !important;
}

@media screen and (max-width: 768px) {
  ._pl-95 {
    padding-left: 12.66667vw !important;
  }
}

._pt-100 {
  padding-top: 100px !important;
}

@media screen and (max-width: 768px) {
  ._pt-100 {
    padding-top: 13.33333vw !important;
  }
}

._pr-100 {
  padding-right: 100px !important;
}

@media screen and (max-width: 768px) {
  ._pr-100 {
    padding-right: 13.33333vw !important;
  }
}

._pb-100 {
  padding-bottom: 100px !important;
}

@media screen and (max-width: 768px) {
  ._pb-100 {
    padding-bottom: 13.33333vw !important;
  }
}

._pl-100 {
  padding-left: 100px !important;
}

@media screen and (max-width: 768px) {
  ._pl-100 {
    padding-left: 13.33333vw !important;
  }
}

/* ====================================

    3. Parts

==================================== */
/*
  3-1. Heading
==================================== */
.page-title-primary {
  position: relative;
  margin-bottom: 1.5em;
  padding-bottom: 1em;
  border-bottom: 1px solid #BCBCBC;
  color: #000;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .page-title-primary {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: .8em;
    padding-bottom: .5em;
    border-bottom-width: 0.26667vw;
  }
}

.page-title-primary::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 70px;
  height: 1px;
  background: #C12324;
  content: '';
}

@media screen and (max-width: 768px) {
  .page-title-primary::after {
    width: 18.66667vw;
    bottom: -0.26667vw;
    height: 0.26667vw;
  }
}

.page-title-primary[id^="anc_"] {
  padding-top: 120px;
  margin-top: -120px;
}

.page-title-primary.-color1::after {
  background-color: #0B62AA;
}

.page-title-primary.-color2::after {
  background-color: #0A6033;
}

.page-title-primary.-color3::after {
  background-color: #912322;
}

.page-title-primary.-color4::after {
  background-color: #0B62AA;
}

.page-title-primary.-color5::after {
  background-color: #8C7429;
}

.page-title-primary.-color6::after {
  background-color: #585858;
}

.page-title-primary.-lead {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
}

.section-title-primary {
  margin-bottom: 57px;
  font-size: 22px;
  font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
  .section-title-primary {
    margin-bottom: 7.6vw;
  }
}

.section-title-primary[id^="asia"],
.section-title-primary[id^="se_asia"],
.section-title-primary[id^="ns_america"],
.section-title-primary[id^="europe"]{
  padding-top: 120px;
  margin-top: -120px;
}

.section-title-primary span {
  display: inline-block;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #C12324;
}

.section-title-secondary {
  margin-bottom: 30px;
  color: #000;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .section-title-secondary {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 4vw;
  }
}

/*
  3-2. Button
==================================== */
.button-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .button-list {
    margin-top: 8vw;
  }
}

@media screen and (max-width: 768px) {
  .button-list > .button {
    width: calc(50% - 2vw);
  }
}

.button-list > .button + .button {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .button-list > .button + .button {
    margin-left: 4vw;
  }
}

.button-round {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 280px;
  height: 40px;
  border: 1px solid #C12324;
  border-radius: 6px;
}

.card-primary_add .button-round {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 330px;
  height: 40px;
  border: 1px solid #C12324;
  border-radius: 6px;
}

@media screen and (max-width: 768px) {
  .button-round {
    width: 69.33333vw;
    height: 10.66667vw;
    border-width: 0.26667vw;
    border-radius: 1.6vw;
  }
}

@media screen and (min-width: 769px) {
  .button-round {
    -webkit-transition: background-color .4s ease-out;
    transition: background-color .4s ease-out;
  }
  .button-round > .label {
    -webkit-transition: color .4s ease-out;
    transition: color .4s ease-out;
  }
  .button-round:hover:not(.-fill) {
    background-color: #C12324;
  }
  .button-round:hover:not(.-fill) > .label {
    color: #fff;
  }
  .button-round:hover:not(.-fill).-arrow::before {
    border-top-color: #fff;
    border-right-color: #fff;
  }
}

.button-round > .label {
  color: #C12324;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .button-round > .label {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.button-round.-arrow {
  position: relative;
}

.button-round.-arrow::before {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "";
  width: 15px;
  height: 15px;
  margin-top: -7.5px;
  border-top: 1px solid #C12324;
  border-right: 1px solid #C12324;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: margin-top .4s ease, -webkit-transform .4s ease;
  transition: margin-top .4s ease, -webkit-transform .4s ease;
  transition: transform .4s ease, margin-top .4s ease;
  transition: transform .4s ease, margin-top .4s ease, -webkit-transform .4s ease;
}

@media screen and (max-width: 768px) {
  .button-round.-arrow::before {
    right: 3.73333vw;
    width: 2.4vw;
    height: 2.4vw;
    margin-top: -1.2vw;
    border-top-width: 0.26667vw;
    border-right-width: 0.26667vw;
  }
}

.button-round.-arrow.-small::before {
  right: 14px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
}

.button-round.-arrow.-turn::before {
  right: auto;
  left: 24px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

@media screen and (max-width: 768px) {
  .button-round.-arrow.-turn::before {
    left: 3.73333vw;
  }
}

.button-round.-arrow.-bottom::before {
  margin-top: -12px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media screen and (max-width: 768px) {
  .button-round.-arrow.-bottom::before {
    margin-top: -1.6vw;
  }
}

.button-round.-color1 {
  border-color: #581A86;
}

@media screen and (min-width: 769px) {
  .button-round.-color1:hover {
    background-color: #581A86;
  }
}

.button-round.-color1 > .label {
  color: #581A86;
}

.button-round.-color1.-arrow::before {
  border-top-color: #581A86;
  border-right-color: #581A86;
}

.button-round.-color2 {
  border-color: #0A6033;
}

@media screen and (min-width: 769px) {
  .button-round.-color2:hover {
    background-color: #0A6033;
  }
}

.button-round.-color2 > .label {
  color: #0A6033;
}

.button-round.-color2.-arrow::before {
  border-top-color: #0A6033;
  border-right-color: #0A6033;
}

.button-round.-color3 {
  border-color: #912322;
}

@media screen and (min-width: 769px) {
  .button-round.-color3:hover {
    background-color: #912322;
  }
}

.button-round.-color3 > .label {
  color: #912322;
}

.button-round.-color3.-arrow::before {
  border-top-color: #912322;
  border-right-color: #912322;
}

.button-round.-color4 {
  border-color: #0B62AA;
}

@media screen and (min-width: 769px) {
  .button-round.-color4:hover {
    background-color: #0B62AA;
  }
}

.button-round.-color4 > .label {
  color: #0B62AA;
}

.button-round.-color4.-arrow::before {
  border-top-color: #0B62AA;
  border-right-color: #0B62AA;
}

.button-round.-color5 {
  border-color: #8C7429;
}

@media screen and (min-width: 769px) {
  .button-round.-color5:hover {
    background-color: #8C7429;
  }
}

.button-round.-color5 > .label {
  color: #8C7429;
}

.button-round.-color5.-arrow::before {
  border-top-color: #8C7429;
  border-right-color: #8C7429;
}

.button-round.-color6 {
  border-color: #585858;
}

@media screen and (min-width: 769px) {
  .button-round.-color6:hover {
    background-color: #585858;
  }
}

.button-round.-color6 > .label {
  color: #585858;
}

.button-round.-color6.-arrow::before {
  border-top-color: #585858;
  border-right-color: #585858;
}

.button-round.-muted {
  background-color: #fff;
  border-color: #585858;
}

@media screen and (min-width: 769px) {
  .button-round.-muted:hover:not(.-fill) {
    background-color: #585858;
  }
}

.button-round.-muted > .label {
  color: #585858;
}

.button-round.-muted.-arrow::before {
  border-top-color: #585858;
  border-right-color: #585858;
}

.button-round.-fill {
  background-color: #C12324;
}

.button-round.-fill > .label {
  color: #fff;
}

.button-round.-flexible {
  display: -webkit-inline-box;
  display: inline-flex;
  width: auto !important;
  height: auto;
  min-height: 40px;
  padding-left: 35px;
  padding-right: 45px;
}

@media screen and (max-width: 768px) {
  .button-round.-flexible {
    height: auto;
    min-height: 10.66667vw;
    padding-left: 5.33333vw;
    padding-right: 5.33333vw;
  }
}

.button-round.-flexible.-small {
  min-height: 25px;
  padding-left: 25px;
  padding-right: 25px;
}

@media screen and (max-width: 768px) {
  .button-round.-flexible.-small {
    min-height: 6.66667vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

.button-round.-small {
  width: 190px;
  height: 28px;
}

@media screen and (max-width: 768px) {
  .button-round.-small {
    width: 50.66667vw;
    height: 7.46667vw;
  }
}

.button-round.-small > .label {
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .button-round.-small > .label {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.button-round.-large {
  width: 360px;
  height: 58px;
}

@media screen and (max-width: 768px) {
  .button-round.-large {
    width: 60vw;
    height: 15.46667vw;
  }
}

.button-round.-large > .label {
  font-size: 17px;
  font-size: 1.7rem;
}

@media screen and (max-width: 768px) {
  .button-round.-large > .label {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.button-round.-full {
  width: auto;
}

.button-round.-center {
  margin-left: auto;
  margin-right: auto;
}

/*
  3-2. Link and Hover Effects
==================================== */
.link-primary {
  color: #C12324;
}

.link-muted {
  color: #585858;
}

.link-underline {
  color: inherit;
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  .link-underline:hover {
    text-decoration: none;
  }
}

@media screen and (min-width: 769px) {
  .header-content > .kind > .langs > .item, .header-content > .kind > .item, .top-news .news-list > .item > .title {
    -webkit-transition: color .4s ease-out;
    transition: color .4s ease-out;
  }
  .header-content > .kind > .langs > .item > .icon, .header-content > .kind > .item > .icon, .top-news .news-list > .item > .title > .icon {
    -webkit-transition: fill .4s ease-out;
    transition: fill .4s ease-out;
  }
  .header-content > .kind > .langs > .item:hover, .header-content > .kind > .item:hover, .top-news .news-list > .item > .title:hover {
    color: #C12324;
  }
  .header-content > .kind > .langs > .item:hover > .icon, .header-content > .kind > .item:hover > .icon, .top-news .news-list > .item > .title:hover > .icon {
    fill: #C12324;
  }
}

@media screen and (min-width: 769px) {
  .link-primary:hover, .link-muted:hover, .hover-underline:hover, .footer-group > .list > .item > .link:hover, .ir-newslist > .item > .title:hover {
    text-decoration: underline;
  }
}

@media screen and (min-width: 769px) {
  .hover-opacity, .header-content > .logo, .footer-kindinner > .logo, .footer-kindinner > .youtube, .footer-kindinner > .list > .item, .top-highlight .highlight-list > .item, .pickup-slide {
    -webkit-transition: opacity .4s ease-out;
    transition: opacity .4s ease-out;
  }
  .hover-opacity:hover, .header-content > .logo:hover, .footer-kindinner > .logo:hover, .footer-kindinner > .youtube:hover, .footer-kindinner > .list > .item:hover, .top-highlight .highlight-list > .item:hover, .pickup-slide:hover {
    opacity: .6;
  }
}

.news-article > .body a {
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  .news-article > .body a:hover {
    text-decoration: none;
  }
}

/*
  3-3. Card-primary
==================================== */
.card-primary {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding: 30px;
  border: 1px solid #BCBCBC;
}

@media screen and (max-width: 768px) {
  .card-primary {
    padding: 4vw;
  }
}

.card-primary .card-title {
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #C12324;
  font-size: 22px;
  font-size: 2.2rem;
}

.card-primary .card-text {
  margin-bottom: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.66667;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .card-primary .card-text {
    margin-bottom: 8vw;
  }
}

.card-primary .button {
  margin-top: auto;
}

.card-primary .button + .button {
  margin-top: 17px;
}

@media screen and (max-width: 768px) {
  .card-primary .button + .button {
    margin-top: 4vw;
  }
}

@media screen and (min-width: 769px) {
  .card-primary .button._long {
    width: 320px;
  }
}

@media screen and (min-width: 769px) {
  .card-layout .card-primary {
    width: calc((100% - 40px) / 2);
  }
}

@media screen and (min-width: 769px) {
  .card-layout .card-primary:not(:nth-child(1)):not(:nth-child(2)) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .card-layout .card-primary:not(:first-child) {
    margin-top: 5.33333vw;
  }
}



/*
  3-3_01. Card-primary
==================================== */
.card-primary_add {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding: 30px;
 
}

@media screen and (max-width: 768px) {
  .card-primary_add {
    padding: 4vw;
  }
}

.card-primary_add .card-title {
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #C12324;
  font-size: 22px;
  font-size: 2.2rem;
}

.card-primary_add .card-text {
  margin-bottom: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.66667;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .card-primary_add .card-text {
    margin-bottom: 8vw;
  }
}

.card-primary_add .button {
  margin-top: auto;
}

.card-primary_add .button + .button {
  margin-top: 17px;
}

@media screen and (max-width: 768px) {
  .card-primary_add .button + .button {
    margin-top: 4vw;
  }
}

@media screen and (min-width: 769px) {
  .card-primary_add .button._long {
    width: 320px;
  }
}

@media screen and (min-width: 769px) {
  .card-layout .card-primary_add {
    width: calc((100% - 40px) / 2);
  }
}

@media screen and (min-width: 769px) {
  .card-layout .card-primary_add:not(:nth-child(1)):not(:nth-child(2)) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .card-layout .card-primary_add:not(:first-child) {
    margin-top: 5.33333vw;
  }
}
/*
  3-9. Define List
==================================== */
.page-define {
  border-top: 1px solid #BCBCBC;
  border-bottom: 1px solid #BCBCBC;
}

@media screen and (max-width: 768px) {
  .page-define {
    border-top-width: 0.26667vw;
    border-bottom-width: 0.26667vw;
  }
}

.page-define > .item {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .page-define > .item {
    display: block;
    padding-top: 4vw;
    padding-bottom: 4vw;
  }
}

.page-define > .item + .item {
  border-top: 1px solid #BCBCBC;
}

@media screen and (max-width: 768px) {
  .page-define > .item + .item {
    border-top-width: 0.26667vw;
  }
}

.page-define > .item > .label {
  width: 130px;
  padding-left: 10px;
  padding-right: 10px;
  color: #000;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .page-define > .item > .label {
    width: 100%;
    margin-bottom: 0.66667vw;
    padding-left: 2.66667vw;
    padding-right: 2.66667vw;
  }
}

.page-define > .item > .detail {
  -webkit-box-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: flex;
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 768px) {
  .page-define > .item > .detail {
    display: block;
    padding-left: 2.66667vw;
    padding-right: 2.66667vw;
  }
}

.page-define > .item > .detail > .button {
  margin-left: 25px;
}

@media screen and (max-width: 768px) {
  .page-define > .item > .detail > .button {
    margin-left: 0;
    margin-top: 2.66667vw;
  }
}

.page-define > .item > .detail > .button.-access {
  padding-left: 30px;
}

@media screen and (max-width: 768px) {
  .page-define > .item > .detail > .button.-access {
    padding-left: 8vw;
  }
}

.page-define > .item > .detail > .button.-access::before {
  right: auto;
  left: 10px;
}

@media screen and (max-width: 768px) {
  .page-define > .item > .detail > .button.-access::before {
    left: 2.66667vw;
  }
}

.page-define_s {
  width: 100%;
}

.page-define_s > .item {
  display: -webkit-box;
  display: flex;
}

.page-define_s > .item > .label {
  width: 35%;
}

.page-define_s > .item > .label_l {
  width: 47%;
}

@media screen and (max-width: 768px) {
  .page-define_s > .item > .label {
    width: 45%;
  }
}

.page-define_s > .item > .detail {
  -webkit-box-flex: 1;
          flex: 1;
}

/*
  3-2. List
==================================== */
.common-list.-number {
  counter-reset: number 0;
}

.common-list.-number.-brackets > .item::before {
  content: "(" counter(number) ")";
}

.common-list.-number > .item {
  position: relative;
  padding-left: 2em;
}

.common-list.-number > .item + .item {
  margin-top: .2em;
}

.common-list.-number > .item::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number 1;
  content: counter(number) ".";
}

.common-list.-dot > .item {
  position: relative;
  padding-left: 1em;
}

.common-list.-dot > .item + .item {
  margin-top: 1em;
}

.common-list.-dot > .item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

/*
  3-1. Form
==================================== */
.form-input {
  width: 100%;
  height: 34px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
  font-size: 1.6rem;
  background-color: #F1F1F1;
  line-height: 34px;
}

@media screen and (max-width: 768px) {
  .form-input {
    height: 9.06667vw;
    padding-right: 4vw;
    padding-left: 4vw;
    line-height: 9.06667vw;
  }
}

.form-input:focus {
  background-color: #F5E9E9;
}

.form-input::-webkit-input-placeholder {
  color: #999;
}

.form-input::-moz-placeholder {
  color: #999;
}

.form-input:-ms-input-placeholder {
  color: #999;
}

.form-input::-ms-input-placeholder {
  color: #999;
}

.form-input::placeholder {
  color: #999;
}

.form-input.-zip {
  width: 228px;
}

@media screen and (max-width: 768px) {
  .form-input.-zip {
    width: 100%;
  }
}

.form-radio {
  position: relative;
}

.form-radio input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.form-radio input[type="radio"]:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

.form-radio label {
  position: relative;
}

.form-radio .mwform-radio-field-text {
  display: inline-block;
  cursor: pointer;
  padding-left: 32px;
}

@media screen and (max-width: 768px) {
  .form-radio .mwform-radio-field-text {
    padding-left: 8.53333vw;
  }
}

.form-radio .mwform-radio-field-text::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border: 1px solid #BCBCBC;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .form-radio .mwform-radio-field-text::before {
    width: 5.33333vw;
    height: 5.33333vw;
    margin-top: -2.66667vw;
    border-top-width: 0.26667vw;
  }
}

.form-radio .mwform-radio-field-text::after {
  position: absolute;
  top: 50%;
  left: 4px;
  content: "";
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background-color: #C12324;
  opacity: 0;
  border-radius: 50%;
  -webkit-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
}

@media screen and (max-width: 768px) {
  .form-radio .mwform-radio-field-text::after {
    left: 1.06667vw;
    width: 3.2vw;
    height: 3.2vw;
    margin-top: -1.6vw;
  }
}

.form-textarea {
  width: 100%;
  height: 156px;
  padding: 15px;
  font-size: 14px;
  font-size: 1.4rem;
  background-color: #F1F1F1;
  resize: none;
}

@media screen and (max-width: 768px) {
  .form-textarea {
    height: 41.6vw;
  }
}

.form-selsect {
  position: relative;
  width: 228px;
  height: 34px;
}

.form-selsect::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 17px;
  width: 0;
  height: 0;
  margin-top: -3px;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #BCBCBC transparent transparent transparent;
  pointer-events: none;
}

.form-selsect select {
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #585858;
  padding-left: 15px;
  padding-right: 50px;
  font-size: 16px;
  font-size: 1.6rem;
  background-color: #F1F1F1;
}

/* ====================================

    4. Block

==================================== */
/*
  4-0. Container
==================================== */
.page {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .page {
    padding-top: 18.66667vw;
  }
}

.content {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .content {
    width: auto;
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

/*
  4-1. Header
==================================== */
@media screen and (min-width: 769px) {
  .is-header-fixed {
    padding-top: 105px;
  }
}

.header {
  background-color: #fff;
}

@media screen and (min-width: 769px) {
  .header.is-fixed {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 105px;
  }
  .header.is-fixed .header-content > .logo {
    width: 117px;
  }
  .header.is-fixed .gnav-content {
    height: 43px;
  }
}

.header-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  height: 60px;
}

@media screen and (max-width: 768px) {
  .header-content {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    -webkit-box-align: center;
            align-items: center;
    width: 100%;
    height: 18.66667vw;
    padding-left: 4vw;
    padding-right: 4vw;
    background-color: #fff;
    border-bottom: 0.53333vw solid #C12324;
  }
}

.header-content > .logo {
  width: 135px;
  padding-top: 17px;
}

@media screen and (max-width: 768px) {
  .header-content > .logo {
    width: 29.33333vw;
    height: 8.53333vw;
    padding-top: 0;
  }
  .header-content > .logo img {
    width: 100%;
    vertical-align: top;
  }
}

@media screen and (min-width: 769px) {
  .header-content > .logo {
    -webkit-transition: width .4s ease-out;
    transition: width .4s ease-out;
  }
  .header-content > .logo img {
    width: 100%;
  }
}

.header-content > .kind {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding-top: 20px;
  padding-bottom: 12px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .header-content > .kind {
    display: none;
  }
}

.header-content > .kind > .button {
  margin-top: 0;
  margin-bottom: auto;
}

.header-content > .kind > .langs {
  display: -webkit-box;
  display: flex;
  margin-left: 35px;
}

.header-content > .kind > .langs > .item + .item {
  margin-left: 20px;
}

.header-content > .kind > .item {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-left: 15px;
  padding-left: 15px;
}

.header-content > .kind > .item::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  height: 25px;
  margin-top: -12.5px;
  border-left: 1px solid #585858;
}

.header-content > .kind > .item > .icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: #585858;
}

.header-hamburger {
  display: none;
}

@media screen and (max-width: 768px) {
  .header-hamburger {
    position: relative;
    display: block;
    width: 8vw;
    height: 5.33333vw;
  }
  .header-hamburger > .item {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.8vw;
    background-color: #C12324;
    -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .header-hamburger > .item:nth-of-type(1) {
    top: 0;
  }
  .header-hamburger > .item:nth-of-type(2) {
    top: 2.13333vw;
  }
  .header-hamburger > .item:nth-of-type(3) {
    bottom: 0;
  }
}

.header-menu {
  display: none;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .header-menu {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 18.66667vw;
    left: 0;
    width: 100%;
    height: calc(100vh - 18.66667vw);
    padding-bottom: 6.66667vw;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: scroll;
    opacity: 1;
  }
  .header-menu > .item {
    display: block;
  }
  .header-menu > .item + .item {
    border-top: 0.26667vw solid #B5B5B5;
  }
  .header-menu > .item > .label {
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 2.66667vw 5.33333vw;
  }
  .header-menu > .item > .label.-toggle {
    position: relative;
  }
  .header-menu > .item > .label.-toggle::before, .header-menu > .item > .label.-toggle::after {
    position: absolute;
    content: "";
    width: 0.53333vw;
    height: 4.8vw;
    background-color: #C12324;
  }
  .header-menu > .item > .label.-toggle::before {
    top: 50%;
    right: 6.66667vw;
    margin-top: -2.4vw;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
  }
  .header-menu > .item > .label.-toggle::after {
    top: 50%;
    right: 6.66667vw;
    margin-top: -2.4vw;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .header-menu > .item > .label.is-visible::before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  .header-menu > .item > .label.is-visible > .toggles {
    position: relative;
  }
  .header-menu > .item > .label.is-visible > .toggles::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    border-top: 0.26667vw solid #B5B5B5;
  }
  .header-menu > .item > .toggles {
    display: none;
    padding-left: 10.66667vw;
  }
  .header-menu > .item > .toggles > .item {
    display: block;
  }
  .header-menu > .item > .toggles > .item + .item {
    border-top: 0.26667vw solid #B5B5B5;
  }
  .header-menu > .item > .toggles > .item > .label {
    color: #fff;
    padding: 2.66667vw 5.33333vw;
  }
}

@media screen and (max-width: 768px) {
  .header-langs {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    width: 100%;
    padding-top: 8vw;
    border-top: 0.26667vw solid #B5B5B5;
  }
  .header-langs > .item {
    color: #fff;
    margin-left: 2vw;
    margin-right: 2vw;
    padding: 2vw 2.66667vw;
    font-size: 12px;
    font-size: 1.2rem;
    border: 0.26667vw solid #fff;
  }
  .header-langs > .item.-current {
    color: #000;
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .is-navopen .header-hamburger > .item:nth-of-type(1) {
    top: 2.26667vw;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .is-navopen .header-hamburger > .item:nth-of-type(2) {
    opacity: 0;
    -webkit-transform: translateX(4vw);
            transform: translateX(4vw);
  }
  .is-navopen .header-hamburger > .item:nth-of-type(3) {
    bottom: 2.26667vw;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

/*
  4-2. Gnav
==================================== */
.gnav-container {
  background-color: #F1F1F1;
  border-bottom: 2px solid #C12324;
}

@media screen and (max-width: 768px) {
  .gnav-container {
    display: none;
  }
}

.gnav-content {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  flex-wrap: wrap;
  height: 55px;
}

@media screen and (min-width: 769px) {
  .gnav-content {
    -webkit-transition: height .4s ease-out;
    transition: height .4s ease-out;
  }
}

.gnav-content > .item {
  -webkit-box-flex: 1;
          flex: 1;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 100%;
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
}

.gnav-content > .item:nth-of-type(3) {
  -webkit-box-flex: 0;
          flex: none;
  width: 230px;
}

.gnav-content > .item::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  height: 40px;
  border-left: 1px solid #B5B5B5;
  margin-top: -20px;
}

.gnav-content > .item:last-of-type::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  height: 40px;
  border-right: 1px solid #B5B5B5;
  margin-top: -20px;
}

.gnav-content > .bar {
  position: absolute;
  bottom: 0;
  height: 5px;
  background-color: #C12324;
  opacity: 0;
}

@media screen and (min-width: 769px) {
  .gnav-content > .bar {
    -webkit-transition: opacity .4s ease-out, left .5s ease, width .5s ease;
    transition: opacity .4s ease-out, left .5s ease, width .5s ease;
  }
  .gnav-content > .bar.is-visible {
    opacity: 1;
  }
}

/*
  4-4. Conversion
==================================== */
.conversion-bar {
  margin-top: 160px;
}

@media screen and (max-width: 768px) {
  .conversion-bar {
    margin-top: 0;
  }
}

.conversion-bar > .button {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100%;
  height: 60px;
  background-color: #C12324;
}

@media screen and (max-width: 768px) {
  .conversion-bar > .button {
    height: 13.33333vw;
  }
}

.conversion-bar > .button > .label {
  color: #fff;
  font-size: 26px;
  font-size: 2.6rem;
}

@media screen and (max-width: 768px) {
  .conversion-bar > .button > .label {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/*
  4-5. Pagetop
==================================== */
.pagetop-button {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  opacity: 0;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

@media screen and (max-width: 768px) {
  .pagetop-button {
    position: static !important;
    margin-top: 5.33333vw;
    margin-left: auto;
    margin-right: auto;
    width: 13.33333vw;
    height: 13.33333vw;
  }
}

.pagetop-button.is-absolute {
  position: absolute;
}

.pagetop-button.is-visible {
  opacity: 1;
}

.pagetop-button > .circle {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #585858;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .pagetop-button > .circle {
    background-color: #D8D8D8;
  }
}

.pagetop-button > .circle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 15px;
  height: 15px;
  margin-top: -3px;
  margin-left: -7.5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .pagetop-button > .circle::before {
    width: 4vw;
    height: 4vw;
    margin-top: -0.8vw;
    margin-left: -2vw;
    border-top-width: 0.26667vw;
    border-right-width: 0.26667vw;
    border-top-color: #585858;
    border-right-color: #585858;
  }
}

/*
  4-6. Footer
==================================== */
.footer-container {
  background-color: #585858;
}

.footer-content {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .footer-content {
    display: block;
  }
}

.footer-content.-main {
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .footer-content.-main {
    padding-top: 5.33333vw;
    padding-bottom: 5.33333vw;
  }
}

.footer-content.-sub {
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .footer-content.-sub {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .footer-content > .column + .column {
    margin-top: 4vw;
  }
}

@media screen and (max-width: 768px) {
  .footer-group {
    text-align: center;
  }
}

.footer-group + .footer-group {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .footer-group + .footer-group {
    margin-top: 4vw;
  }
}

.footer-group > .label {
  display: inline-block;
  margin-bottom: 15px;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .footer-group > .label {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .footer-group > .list {
    display: none;
  }
}

.footer-group > .list > .item {
  font-size: 14px;
  font-size: 1.4rem;
}

.footer-group > .list > .item + .item {
  margin-top: 5px;
}

.footer-group > .list > .item > .link {
  color: #fff;
}

.footer-kind {
  padding-top: 30px;
  padding-bottom: 20px;
  border-top: 1px solid #BCBCBC;
}

@media screen and (max-width: 768px) {
  .footer-kind {
    padding-top: 5.33333vw;
    padding-bottom: 2.66667vw;
    border-top-width: 0.26667vw;
  }
}

.footer-kindinner > .logo {
  margin-right: 60px;
}

@media screen and (max-width: 768px) {
  .footer-kindinner > .logo {
    display: block;
    margin-right: 0;
  }
}

.footer-kindinner > .youtube {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer-kindinner > .youtube {
    display: block;
    margin-top: 5.33333vw;
    margin-bottom: 5.33333vw;
  }
}

.footer-kindinner > .youtube > .lead {
  margin-bottom: 5px;
  color: #D8D8D8;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .footer-kindinner > .youtube > .lead {
    margin-bottom: 1.33333vw;
  }
}

.footer-kindinner > .list {
  display: -webkit-box;
  display: flex;
  margin-right: 0;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .footer-kindinner > .list {
    flex-wrap: wrap;
    -webkit-box-pack: center;
            justify-content: center;
  }
}

.footer-kindinner > .list > .item {
  position: relative;
  color: #C9C9C9;
  font-size: 14px;
  font-size: 1.4rem;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .footer-kindinner > .list > .item {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .footer-kindinner > .list > .item:nth-of-type(2) {
    margin-right: 0;
  }
  .footer-kindinner > .list > .item:nth-of-type(2)::after {
    display: none;
  }
}

.footer-kindinner > .list > .item:last-of-type {
  margin-right: 0;
}

.footer-kindinner > .list > .item:last-of-type::after {
  display: none;
}

.footer-kindinner > .list > .item::after {
  position: absolute;
  top: 50%;
  right: -15px;
  content: "";
  height: 10px;
  margin-top: -5px;
  border-right: 1px solid #C9C9C9;
}

.footer-copy {
  margin-top: 30px;
  color: #D8D8D8;
  font-size: 11px;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .footer-copy {
    margin-top: 4vw;
  }
}

/*
  4-7. Page-Section
==================================== */
.page-section + .page-section {
  margin-top: 90px;
}

@media screen and (max-width: 768px) {
  .page-section + .page-section {
    margin-top: 18.66667vw;
  }
}

.page-section.-lower + .page-section {
  margin-top: 75px;
}

@media screen and (max-width: 768px) {
  .page-section.-lower + .page-section {
    margin-top: 13.33333vw;
  }
}

.page-section.interview .bnr {
  display: inline-block;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .page-section.interview .bnr {
    margin-top: 4vw;
  }
}

.page-section.interview .bnr img {
  max-width: 100%;
}

.page-section-figure {
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page-section-figure {
    margin-top: 6.66667vw;
  }
}

.page-section-figure + .page-section-figure {
  margin-top: 65px;
}

@media screen and (max-width: 768px) {
  .page-section-figure + .page-section-figure {
    margin-top: 10.66667vw;
  }
}

.page-section-figure.-column > .inner {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.page-section-figure.-column > .inner > .item {
  text-align: center;
}

.page-section-figure.-column > .inner > .item > .caption {
  margin-top: 10px;
  color: #000;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .page-section-figure.-column > .inner > .item > .caption {
    margin-top: 2.66667vw;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.page-section-figure.-column.-column2 > .inner {
  position: relative;
  margin-top: -60px;
}

@media screen and (max-width: 768px) {
  .page-section-figure.-column.-column2 > .inner {
    margin-top: -8vw;
  }
}

.page-section-figure.-column.-column2 > .inner > .item {
  width: calc( 50% - 20px);
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .page-section-figure.-column.-column2 > .inner > .item {
    width: 48%;
    margin-top: 8vw;
  }
}

.page-section-figure.-column.-column3 > .inner {
  position: relative;
  margin-top: -40px;
}

@media screen and (max-width: 768px) {
  .page-section-figure.-column.-column3 > .inner {
    margin-top: -5.33333vw;
  }
}

.page-section-figure.-column.-column3 > .inner::after {
  display: block;
  content: "";
  width: calc( (100% - 76px) / 3);
}

@media screen and (max-width: 768px) {
  .page-section-figure.-column.-column3 > .inner::after {
    width: 31%;
  }
}

.page-section-figure.-column.-column3 > .inner > .item {
  width: calc( (100% - 76px) / 3);
  margin-top: 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page-section-figure.-column.-column3 > .inner > .item {
    width: 31%;
    margin-top: 5.33333vw;
  }
}

.page-section-figure.-column.-column3 > .inner > .item > .caption {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .page-section-figure.-column.-column3 > .inner > .item > .caption {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.page-section-figure.-column.-column4 > .inner {
  position: relative;
  -webkit-box-pack: start;
          justify-content: flex-start;
  margin-top: -35px;
}

@media screen and (max-width: 768px) {
  .page-section-figure.-column.-column4 > .inner {
    -webkit-box-pack: justify;
            justify-content: space-between;
    margin-top: -4.66667vw;
  }
}

.page-section-figure.-column.-column4 > .inner::after {
  display: block;
  content: "";
  width: calc( (100% - (16px*3)) / 4);
}

@media screen and (max-width: 768px) {
  .page-section-figure.-column.-column4 > .inner::after {
    width: 31%;
  }
}

.page-section-figure.-column.-column4 > .inner > .item {
  width: calc( (100% - (16px*3)) / 4);
  margin-top: 35px;
  margin-right: 16px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page-section-figure.-column.-column4 > .inner > .item {
    width: 31%;
    margin-top: 5.33333vw;
    margin-right: 0;
  }
}

.page-section-figure.-column.-column4 > .inner > .item:nth-of-type(4n) {
  margin-right: 0;
}

.page-section-figure.-column.-column4 > .inner > .item > .caption {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .page-section-figure.-column.-column4 > .inner > .item > .caption {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.page-section-figure > .inner > .item > .caption {
  letter-spacing: 0;
}

.page-section-figure > .inner > .item > .lead {
  margin-top: 15px;
  text-align: left;
}

.page-section-figure img {
  max-width: 100%;
}

/*
  4-7. Page-visual
==================================== */
.page-visual {
  position: relative;
  height: 200px;
  background: url(../images/common/page-visual.jpg) no-repeat center/cover;
}

.page-visual.-contact {
  background-image: url(../images/pages/contact/page-visual.jpg);
}

.page-visual.-ir {
  background-image: url(../images/pages/ir/page-visual.jpg);
}

.page-visual.-service {
  background-image: url(../images/pages/service/page-visual.jpg);
}

.page-visual.-technology {
  background-image: url(../images/pages/technology/page-visual.jpg);
}

.page-visual.-product {
  background-image: url(../images/pages/product/page-visual.jpg);
}

.page-visual.-news {
  background-image: url(../images/pages/news/page-visual.jpg);
}

@media screen and (max-width: 768px) {
  .page-visual {
    height: 40vw;
  }
}

.page-visual > .content {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  height: 100%;
}

.page-heading {
  position: relative;
  color: #fff;
  font-size: 28px;
  font-size: 2.8rem;
}

@media screen and (max-width: 768px) {
  .page-heading {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.page-heading::before {
  position: absolute;
  top: 0;
  right: -1.5em;
  width: 100vw;
  height: 1.75em;
  background: rgba(0, 0, 0, 0.5);
  content: "";
}

@media screen and (max-width: 768px) {
  .page-heading::before {
    right: -0.75em;
    height: auto;
    bottom: 0;
  }
}

.page-heading span {
  position: relative;
}

.page-visual-conversion {
  position: absolute;
  top: 24px;
  right: calc(50vw - 500px);
}

@media screen and (max-width: 768px) {
  .page-visual-conversion {
    top: 50%;
    right: 2.66667vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.page-visual-conversion > .item {
  position: relative;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  width: 220px;
  height: 70px;
  padding-left: 25px;
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid #C12324;
}

@media screen and (max-width: 768px) {
  .page-visual-conversion > .item {
    width: 46.66667vw;
    height: 16vw;
    padding-left: 5.33333vw;
    border-width: 0.53333vw;
  }
}

.page-visual-conversion > .item::before {
  position: absolute;
  content: "";
  left: 10px;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 2px;
  background-color: #C12324;
}

@media screen and (max-width: 768px) {
  .page-visual-conversion > .item::before {
    left: 2.66667vw;
    top: 3.2vw;
    bottom: 3.2vw;
    width: 1.06667vw;
    border-radius: 0.53333vw;
  }
}

.page-visual-conversion > .item + .item {
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .page-visual-conversion > .item + .item {
    margin-top: 1.86667vw;
  }
}

.page-visual-conversion > .item + .item > .main {
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .page-visual-conversion > .item + .item > .main {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.page-visual-conversion > .item > .label {
  margin-bottom: 5px;
  color: #000;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .page-visual-conversion > .item > .label {
    margin-bottom: 1.33333vw;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.page-visual-conversion > .item > .main {
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .page-visual-conversion > .item > .main {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*
  4-8. Bread-nav
==================================== */
.bread-nav-wrap {
  background: #F1F1F1;
}

.bread-nav {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (min-width: 769px) {
  .bread-nav {
    flex-wrap: wrap;
    min-height: 38px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .bread-nav {
    height: 8vw;
    overflow: auto;
    white-space: nowrap;
  }
}

.bread-nav .item {
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .bread-nav .item {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.bread-nav .item + .item {
  margin-left: 1em;
}

.bread-nav .item + .item::before {
  content: ">";
  margin-right: 1em;
}

.bread-nav .item:last-of-type {
  color: #000;
  font-weight: 700;
}

.bread-nav .item:last-of-type::before {
  color: initial;
  font-weight: initial;
}

/*
  4-9. Page-content
==================================== */
.page-content {
  padding-top: 4em;
}

@media screen and (max-width: 768px) {
  .page-content {
    margin-bottom: 21.33333vw;
    padding-top: 9.73333vw;
  }
}

@media screen and (min-width: 769px) {
  .page-content.-column {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 768px) {
  .page-content.-column {
    margin-bottom: 0;
  }
}

.page-content.-column > .main {
  -webkit-box-flex: 1;
          flex: 1;
}

.page-content.-column > .sidebar {
  width: 210px;
  margin-left: 40px;
}

@media screen and (max-width: 768px) {
  .page-content.-column > .sidebar {
    width: auto;
    margin-left: -4vw;
    margin-right: -4vw;
    margin-top: 18.66667vw;
  }
}

@media screen and (min-width: 769px) {
  .page-content.-column > .sidebar > .wrapper {
    width: 210px;
    position: -webkit-sticky;
    position: sticky;
    top: calc(4em + 105px);
  }
}

.page-sidebar > .item {
  border-bottom: 1px solid #BCBCBC;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .page-sidebar > .item {
    border-width: 0.26667vw;
  }
}

.page-sidebar-toggles > .item {
  border-bottom: 1px solid #BCBCBC;
}

@media screen and (max-width: 768px) {
  .page-sidebar-toggles > .item {
    border-width: 0.26667vw;
  }
}

.page-sidebar-toggles > .toggles > .item {
  border-bottom: 1px solid #BCBCBC;
}

@media screen and (max-width: 768px) {
  .page-sidebar-toggles > .toggles > .item {
    border-width: 0.26667vw;
  }
}

.page-sidebar-button {
  display: block;
  padding: 15px 15px 15px 22px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (min-width: 769px) {
  .page-sidebar-button:hover:not(.-parent) {
    background-color: #C12324;
  }
  .page-sidebar-button:hover:not(.-parent) > .label {
    color: #fff;
  }
  .page-sidebar-button:hover:not(.-parent) > .label::before {
    border-top-color: #fff;
    border-right-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .page-sidebar-button {
    padding: 2.66667vw 4vw 2.66667vw 8vw;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.page-sidebar-button.-parent {
  padding-left: 15px;
  border-top: 2px solid #BCBCBC;
  border-bottom: 2px solid #BCBCBC;
  background-color: #F1F1F1;
}

@media screen and (max-width: 768px) {
  .page-sidebar-button.-parent {
    padding-left: 4vw;
    border-top-width: 0.53333vw;
    border-bottom-width: 0.53333vw;
  }
}

.page-sidebar-button.-parent > .label {
  font-weight: 700;
}

.page-sidebar-button.-lower {
  padding: 10px 15px 10px 30px;
}

@media screen and (max-width: 768px) {
  .page-sidebar-button.-lower {
    padding: 1.86667vw 4vw 1.86667vw 13.33333vw;
  }
}

.page-sidebar-button.-current {
  background-color: #C12324;
}

.page-sidebar-button.-current > .label {
  color: #fff;
}

.page-sidebar-button.-current > .label::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

.page-sidebar-button.-trigger {
  position: relative;
  cursor: pointer;
}

.page-sidebar-button.-trigger::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  width: 19px;
  height: 19px;
  margin-top: -9.5px;
  background: url(../images/common/icon_toggle.svg) no-repeat left top;
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .page-sidebar-button.-trigger::before {
    right: 4vw;
    width: 5.06667vw;
    height: 5.06667vw;
    margin-top: -2.53333vw;
  }
}

.page-sidebar-button.-trigger::after {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "";
  width: 1px;
  height: 11px;
  margin-top: -5px;
  background-color: #BCBCBC;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

@media screen and (max-width: 768px) {
  .page-sidebar-button.-trigger::after {
    right: 6.4vw;
    width: 0.26667vw;
    height: 2.93333vw;
    margin-top: -1.46667vw;
  }
}

.page-sidebar-button.-trigger.is-visible::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
}

.page-sidebar-button > .label {
  position: relative;
  color: #636363;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .page-sidebar-button > .label {
    padding-left: 5.33333vw;
  }
}

.page-sidebar-button > .label::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-top: 1px solid #636363;
  border-right: 1px solid #636363;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .page-sidebar-button > .label::before {
    width: 2.13333vw;
    height: 2.13333vw;
    margin-top: -1.06667vw;
    border-top-width: 0.26667vw;
    border-right-width: 0.26667vw;
  }
}

.page-sidebar-tel {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100%;
  height: 72px;
  margin-top: 30px;
  border-radius: 8px;
  background-color: #F1F1F1;
}

@media screen and (max-width: 768px) {
  .page-sidebar-tel {
    height: 16vw;
    -webkit-box-align: center;
            align-items: center;
    margin-top: 0;
    border-radius: 0;
  }
}

.page-sidebar-tel > .label {
  color: #636363;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .page-sidebar-tel > .label {
    margin-right: 2.66667vw;
  }
}

.page-sidebar-tel > .main {
  color: #636363;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 700;
}

.page-video {
}

@media screen and (max-width: 768px) {
  .page-video {
  }
}

.page-video > iframe {
  width: 100%;
  height: 422px;
}

@media screen and (max-width: 768px) {
  .page-video > iframe {
    height: 56.26667vw;
  }
}

.page-buttons {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .page-buttons {
  }
}

.page-buttons > .item {
  width: calc(50% - 15px);
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .page-buttons > .item {
    width: 100%;
    margin-top: 2.66667vw;
  }
}

.page-lead {
  margin-bottom: 70px;
  color: #000;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .page-lead {
    margin-bottom: 9.33333vw;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/*
  4-10. Card-layout
==================================== */
@media screen and (min-width: 769px) {
  .card-layout {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
}

.page-lead + .card-layout {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .page-lead + .card-layout {
    margin-top: 5.33333vw;
  }
}

/*
  4-8. Modal
==================================== */
.modal-wrapper {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.modal-wrapper > .check.-check1:checked ~ .modal-content.-modal1 {
  opacity: 1;
  pointer-events: auto;
}

.modal-wrapper > .check.-check2:checked ~ .modal-content.-modal2 {
  opacity: 1;
  pointer-events: auto;
}

.modal-wrapper > .check.-check3:checked ~ .modal-content.-modal3 {
  opacity: 1;
  pointer-events: auto;
}

.modal-wrapper > .check.-check4:checked ~ .modal-content.-modal4 {
  opacity: 1;
  pointer-events: auto;
}

.modal-wrapper > .check.-check5:checked ~ .modal-content.-modal5 {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity .4s ease-out;
  transition: opacity .4s ease-out;
}

.modal-content > .main {
  position: relative;
  z-index: 1;
  width: 1080px;
  padding: 65px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .modal-content > .main {
    width: 88vw;
    padding: 5.33333vw;
  }
}

.modal-content > .main > .close {
  position: absolute;
  top: 35px;
  right: 35px;
  width: 57px;
  height: 57px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .modal-content > .main > .close {
    top: 2.93333vw;
    right: 4.53333vw;
    width: 8vw;
    height: 8vw;
  }
}

.modal-content > .main > .close::before, .modal-content > .main > .close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 1px;
  height: 57px;
  margin-top: -28.5px;
  background-color: #585858;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .modal-content > .main > .close::before, .modal-content > .main > .close::after {
    width: 0.26667vw;
    height: 8vw;
    margin-top: -2.66667vw;
  }
}

.modal-content > .main > .close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal-content > .main > .close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.modal-content > .main > .close > label {
  display: block;
  width: 100%;
  height: 100%;
}

.modal-content > .overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(112, 112, 112, 0.7);
  width: 100%;
  height: 100%;
}

.modal-content > .overlay > label {
  display: block;
  width: 100%;
  height: 100%;
}

/*
  4-8. Box
==================================== */
.common-box {
  margin-top: 50px;
  padding: 25px;
  background-color: #F1F1F1;
}

@media screen and (max-width: 768px) {
  .common-box {
    margin-top: 5.33333vw;
    padding: 5.33333vw;
  }
}

.common-box > .text {
  color: #000;
}

.common-box > .text + .text {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .common-box > .text + .text {
    margin-top: 4vw;
  }
}

/* ====================================

    5. Pages

==================================== */
/*
  5-1. Top
==================================== */
/*

  Container

*/
.top-content + .top-content {
  margin-top: 140px;
}

@media screen and (max-width: 768px) {
  .top-content + .top-content {
    margin-top: 18.66667vw;
  }
}

@media screen and (max-width: 768px) {
  .top-content + .conversion-bar {
    margin-top: 21.33333vw;
  }
}

.top-content.-column {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .top-content.-column {
    display: block;
  }
}

.top-content.-column.-right > .main {
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .top-content.-column.-right > .main {
    margin-right: 0;
  }
}

.top-content.-column.-right > .figure {
  margin-right: calc( (50vw - 500px) / -2);
}

@media screen and (max-width: 768px) {
  .top-content.-column.-right > .figure {
    margin-right: 0;
  }
}

.top-content.-column.-left > .main {
  margin-left: 40px;
}

@media screen and (max-width: 768px) {
  .top-content.-column.-left > .main {
    margin-left: 0;
  }
}

.top-content.-column.-left > .figure {
  margin-left: calc( (50vw - 500px) / -2);
}

@media screen and (max-width: 768px) {
  .top-content.-column.-left > .figure {
    margin-left: 0;
  }
}

.top-content.-column > .main {
  width: 500px;
}

@media screen and (max-width: 768px) {
  .top-content.-column > .main {
    width: auto;
  }
}

.top-content.-column > .main > .figure {
  display: none;
}

@media screen and (max-width: 768px) {
  .top-content.-column > .main > .figure {
    display: block;
    margin-bottom: 4vw;
  }
  .top-content.-column > .main > .figure img {
    width: 100%;
  }
}

.top-content.-column > .main > .lead {
  font-weight: 300;
}

.top-content.-column > .main > .lead + .button {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .top-content.-column > .main > .lead + .button {
    margin-top: 8vw;
  }
}

.top-content.-column > .figure {
  -webkit-box-flex: 1;
          flex: 1;
}

@media screen and (max-width: 768px) {
  .top-content.-column > .figure {
    display: none;
  }
}

.top-content.-column > .figure img {
  width: 100%;
  max-width: 640px;
}

.top-content > .lead {
  margin-bottom: 30px;
  color: #585858;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .top-content > .lead {
    margin-bottom: 4vw;
  }
}

.top-content > .button {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .top-content > .button {
    margin-top: 5.33333vw;
  }
}

/*

  Heading

*/
.top-heading {
  margin-bottom: 35px;
  color: #636363;
  font-size: 22px;
  font-size: 2.2rem;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .top-heading {
    margin-bottom: 9.33333vw;
  }
}

.top-heading.-border {
  margin-bottom: 15px;
  padding-bottom: 20px;
  border-bottom: 2px solid #C12324;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .top-heading.-border {
    margin-bottom: 4vw;
    padding-bottom: 5.33333vw;
    border-bottom-width: 0.53333vw;
  }
}

/*

  visual

*/
.top-visual {
  width: 100%;
  height: 600px;
  margin-bottom: 75px;
  background-color: #000;
  overflow: hidden;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .top-visual {
    height: 54.25vw;
    margin-bottom: 10vw;
  }
  .top-visual img {
    width: 100%;
    height: auto;
  }
}

.top-visual > video {
  position: relative;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  height: 600px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .top-visual > video {
    height: 54.25vw;
  }
}

/*

  news

*/
.top-news .news-list {
  padding: 25px 158px;
  border-top: 1px solid #BCBCBC;
  border-bottom: 1px solid #BCBCBC;
}

@media screen and (min-width: 769px) {
  .top-news .news-list {
    margin-top: -25px;
  }
}

@media screen and (max-width: 768px) {
  .top-news .news-list {
    padding: 4vw 0;
    border-top-width: 0.26667vw;
    border-bottom-width: 0.26667vw;
  }
}

.top-news .news-list > .item {
  display: -webkit-box;
  display: flex;
}

@media screen and (min-width: 769px) {
  .top-news .news-list > .item {
    font-size: 19px;
    font-size: 1.9rem;
    font-weight: 300;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.top-news .news-list > .item + .item {
  margin-top: 20px;
}

@media screen and (min-width: 769px) {
  .top-news .news-list > .item + .item {
    margin-top: 10px;
    border-top: none;
    border-bottom: none;
  }
}

@media screen and (max-width: 768px) {
  .top-news .news-list > .item + .item {
    margin-top: 2.66667vw;
  }
}

.top-news .news-list > .item > .date {
  width: auto;
  color: #585858;
}

@media screen and (min-width: 769px) {
  .top-news .news-list > .item > .date {
    margin-right: 90px;
    font-weight: 300;
  }
}

@media screen and (max-width: 768px) {
  .top-news .news-list > .item > .date {
    width: 30%;
  }
}

.top-news .news-list > .item > .title {
  color: #585858;
}

/*

  Tec

*/
.top-tec .tec-figure {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .top-tec .tec-figure img {
    width: 100%;
  }
}

/*

  Highlight

*/
.top-highlight .highlight-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .top-highlight .highlight-list {
    display: block;
  }
}

.top-highlight .highlight-list > .item {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .top-highlight .highlight-list > .item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
  }
  .top-highlight .highlight-list > .item:nth-of-type(even) > .figure {
    -webkit-box-ordinal-group: 3;
            order: 2;
    margin-right: 0;
    margin-left: 2.66667vw;
  }
  .top-highlight .highlight-list > .item:nth-of-type(even) > .label {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .top-highlight .highlight-list > .item + .item {
    margin-top: 2.66667vw;
    padding-top: 2.66667vw;
    border-top: 0.26667vw solid #dfdfdf;
  }
}

.top-highlight .highlight-list > .item > .figure {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  min-height: 270px;
}

@media screen and (max-width: 768px) {
  .top-highlight .highlight-list > .item > .figure {
    width: 37.33333vw;
    min-height: initial;
    margin-right: 2.66667vw;
  }
  .top-highlight .highlight-list > .item > .figure img {
    width: 100%;
  }
}

.top-highlight .highlight-list > .item > .label {
  margin-top: 15px;
  color: #C12324;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.4375;
}

@media screen and (max-width: 768px) {
  .top-highlight .highlight-list > .item > .label {
    -webkit-box-flex: 1;
            flex: 1;
    margin-top: 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*

  Pickup

*/
.pickup-content {
  position: relative;
}

.pickup-arrow {
  position: absolute;
  top: 63px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .pickup-arrow {
    top: 17.73333vw;
  }
}

.pickup-arrow.-prev {
  left: -50px;
}

@media screen and (max-width: 768px) {
  .pickup-arrow.-prev {
    left: 2vw;
  }
}

.pickup-arrow.-next {
  right: -50px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

@media screen and (max-width: 768px) {
  .pickup-arrow.-next {
    right: 2vw;
  }
}

.pickup-arrow > .icon {
  width: 27px;
  height: 44px;
  fill: #C12324;
}

@media screen and (max-width: 768px) {
  .pickup-arrow > .icon {
    width: 5.04vw;
    height: 8.21333vw;
  }
}

@media screen and (max-width: 768px) {
  .pickup-slider {
    margin-left: 6.66667vw;
    margin-right: 6.66667vw;
  }
}

.pickup-slide {
  margin-left: 13px;
  margin-right: 13px;
}

@media screen and (max-width: 768px) {
  .pickup-slide {
    margin-left: 0;
    margin-right: 0;
  }
}

.pickup-slide > .figure img {
  width: 100%;
  height: 100%;
}

.pickup-slide > .label {
  margin-top: 20px;
  color: #C12324;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .pickup-slide > .label {
    margin-top: 2.66667vw;
  }
}

/*
  5-2. Message
==================================== */
@media screen and (min-width: 769px) {
  .message-content {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 769px) {
  .message-content .photo-area {
    width: 224px;
  }
}

@media screen and (max-width: 768px) {
  .message-content .photo-area img {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .message-content .photo-area + .text-area {
    margin-top: 5.33333vw;
  }
}

@media screen and (max-width: 768px) {
  .message-content .photo-wrap {
    text-align: center;
  }
}

@media screen and (min-width: 769px) {
  .message-content .text-area {
    width: calc(100% - (224px + 30px));
  }
}

.message-content .text-area .text + .text {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .message-content .text-area .text + .text {
    margin-top: 4vw;
  }
}

.message-content .text-area .sign-box {
  margin-top: 15px;
  color: #000;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .message-content .text-area .sign-box {
    margin-top: 2vw;
  }
}

.message-content .text-area .sign-box .name {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

/*
  5-2. Network
==================================== */
.network-map {
  position: relative;
  width: 100%;
  height: 360px;
  margin-top: 60px;
  margin-bottom: 40px;
  background: url(../images/pages/network/section-img_map.png) no-repeat center center;
}

@media screen and (max-width: 768px) {
  .network-map {
    height: 43vw;
    margin-top: 8vw;
    margin-bottom: 5.33333vw;
    background-size: cover;
  }
}

.network-map > .button {
  position: absolute;
  display: inline-block;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .network-map > .button {
    pointer-events: none;
    padding: 1.6vw;
    font-size: 11px;
    font-size: 1.1rem;
    border-radius: 1.6vw;
  }
}

.network-map > .button.-button1 {
  top: 129px;
  left: 56px;
  background-color: #581A86;
}

@media screen and (max-width: 768px) {
  .network-map > .button.-button1 {
    top: 14.93333vw;
    left: 8.53333vw;
  }
}

.network-map > .button.-button2 {
  top: 105px;
  left: 244px;
  background-color: #0A6033;
}

@media screen and (max-width: 768px) {
  .network-map > .button.-button2 {
    top: 10.13333vw;
    left: 26.66667vw;
  }
}

.network-map > .button.-button3 {
  top: 193px;
  left: 181px;
  background-color: #912322;
}

@media screen and (max-width: 768px) {
  .network-map > .button.-button3 {
    top: 22.66667vw;
    left: 18.93333vw;
  }
}

.network-map > .button.-button4 {
  top: 132px;
  left: 333px;
  background-color: #0B62AA;
}

@media screen and (max-width: 768px) {
  .network-map > .button.-button4 {
    top: 14.93333vw;
    left: 40.8vw;
  }
}

.network-map > .button.-button5 {
  top: 153px;
  right: 25px;
  background-color: #8C7429;
}

@media screen and (max-width: 768px) {
  .network-map > .button.-button5 {
    top: 10.66667vw;
    right: 0vw;
  }
}

@media screen and (min-width: 769px) {
  .network-button:hover > .label {
    color: #fff !important;
  }
}

.network-button.-button1 {
  border-color: #581A86;
}

@media screen and (min-width: 769px) {
  .network-button.-button1:hover {
    background-color: #581A86;
  }
}

.network-button.-button1 > .label {
  color: #581A86;
}

.network-button.-button2 {
  border-color: #0A6033;
}

@media screen and (min-width: 769px) {
  .network-button.-button2:hover {
    background-color: #0A6033;
  }
}

.network-button.-button2 > .label {
  color: #0A6033;
}

.network-button.-button3 {
  border-color: #912322;
}

@media screen and (min-width: 769px) {
  .network-button.-button3:hover {
    background-color: #912322;
  }
}

.network-button.-button3 > .label {
  color: #912322;
}

.network-button.-button4 {
  border-color: #0B62AA;
}

@media screen and (min-width: 769px) {
  .network-button.-button4:hover {
    background-color: #0B62AA;
  }
}

.network-button.-button4 > .label {
  color: #0B62AA;
}

.network-button.-button5 {
  border-color: #8C7429;
}

@media screen and (min-width: 769px) {
  .network-button.-button5:hover {
    background-color: #8C7429;
  }
}

.network-button.-button5 > .label {
  color: #8C7429;
}

.network-button.-button6 {
  border-color: #585858;
}

@media screen and (min-width: 769px) {
  .network-button.-button6:hover {
    background-color: #585858;
  }
}

.network-button.-button6 > .label {
  color: #585858;
}

.network-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-top: -55px;
}

.network-list::after {
  content: "";
  width: calc(100% / 3);
}

@media screen and (max-width: 768px) {
  .network-list {
    margin-top: -5.33333vw;
  }
}

.network-list > .item {
  width: calc(100% / 3);
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .network-list > .item {
    width: 100%;
    margin-top: 5.33333vw;
  }
}

.network-list > .item > .title {
  color: #000;
}

.network-list > .item > .button {
  width: 160px;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .network-list > .item > .button {
    width: 42.66667vw;
    margin-top: 2vw;
  }
}

.network-list > .item > .button::before {
  right: 15px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
}

@media screen and (max-width: 768px) {
  .network-list > .item > .button::before {
    right: 4vw;
    width: 2.66667vw;
    height: 2.66667vw;
    margin-top: -1.33333vw;
  }
}

.network-video {
  position: relative;
}

.network-video > .switch {
  position: absolute;
  top: 0;
  left: 0;
}

.network-video > .switch:checked ~ .movie {
  display: none;
}

.network-video > .switch.-switch1:checked ~ .movie.-movie1 {
  display: block;
}

.network-video > .switch.-switch1:checked ~ .network-triggers > .item:nth-child(1) > .trigger {
  background-color: #585858;
}

.network-video > .switch.-switch1:checked ~ .network-triggers > .item:nth-child(1) > .trigger > .label {
  color: #fff;
}

.network-video > .switch.-switch2:checked ~ .movie.-movie2 {
  display: block;
}

.network-video > .switch.-switch2:checked ~ .network-triggers > .item:nth-child(2) > .trigger {
  background-color: #585858;
}

.network-video > .switch.-switch2:checked ~ .network-triggers > .item:nth-child(2) > .trigger > .label {
  color: #fff;
}

.network-video > .switch.-switch3:checked ~ .movie.-movie3 {
  display: block;
}

.network-video > .switch.-switch3:checked ~ .network-triggers > .item:nth-child(3) > .trigger {
  background-color: #585858;
}

.network-video > .switch.-switch3:checked ~ .network-triggers > .item:nth-child(3) > .trigger > .label {
  color: #fff;
}

.network-video > .switch.-switch4:checked ~ .movie.-movie4 {
  display: block;
}

.network-video > .switch.-switch4:checked ~ .network-triggers > .item:nth-child(4) > .trigger {
  background-color: #585858;
}

.network-video > .switch.-switch4:checked ~ .network-triggers > .item:nth-child(4) > .trigger > .label {
  color: #fff;
}

.network-video > .switch.-switch5:checked ~ .movie.-movie5 {
  display: block;
}

.network-video > .switch.-switch5:checked ~ .network-triggers > .item:nth-child(5) > .trigger {
  background-color: #585858;
}

.network-video > .switch.-switch5:checked ~ .network-triggers > .item:nth-child(5) > .trigger > .label {
  color: #fff;
}

.network-video > .switch.-switch6:checked ~ .movie.-movie6 {
  display: block;
}

.network-video > .switch.-switch6:checked ~ .network-triggers > .item:nth-child(6) > .trigger {
  background-color: #585858;
}

.network-video > .switch.-switch6:checked ~ .network-triggers > .item:nth-child(6) > .trigger > .label {
  color: #fff;
}

.network-video > .switch.-switch7:checked ~ .movie.-movie7 {
  display: block;
}

.network-video > .switch.-switch7:checked ~ .network-triggers > .item:nth-child(7) > .trigger {
  background-color: #585858;
}

.network-video > .switch.-switch7:checked ~ .network-triggers > .item:nth-child(7) > .trigger > .label {
  color: #fff;
}
.network-video > .switch.-switch8:checked ~ .movie.-movie8 {
  display: block;
}

.network-video > .switch.-switch8:checked ~ .network-triggers > .item:nth-child(8) > .trigger {
  background-color: #0B62AA;
}

@media screen and (min-width: 769px) {
  .network-video > .network-triggers > .item:nth-child(8) > .trigger:hover {
    background-color: #0B62AA;
  }
}

.network-video > .switch.-switch8:checked ~ .network-triggers > .item:nth-child(8) > .trigger > .label {
  color: #fff;
}

.network-video > .movie {
  display: none;
}

.network-triggers > .item > .trigger {
  cursor: pointer;
}

/*
  5-2. Base
==================================== */
.base-section + .base-section {
  margin-top: 116px;
}

@media screen and (max-width: 768px) {
  .base-section + .base-section {
    margin-top: 15.46667vw;
  }
}

.base-section > .block:not(._no-bd) {
  padding-bottom: 50px;
  border-bottom: 1px solid #bcbcbc;
}

@media screen and (max-width: 768px) {
  .base-section > .block:not(._no-bd) {
    padding-bottom: 6.66667vw;
  }
}

.base-section > .block#asia,
.base-section > .block#se_asia,
.base-section > .block#ns_america,
.base-section > .block#europe,
.base-section > .block#asia01,
.base-section > .block#se_asia01,
.base-section > .block#ns_america01,
.base-section > .block#europe01,
.base-section > .block#main_office,
.base-section > .block#fukushima,
.base-section > .block#tokyo_sales,
.base-section > .block#shikoku,
.base-section > .block#tokyo_tc,
.base-section > .block#asuteku{
  padding-top: 120px;
  margin-top: -120px;
}

.base-section > .block#nagasaki,
.base-section > .block#ehime,
.base-section > .block#nagoya_sales,
.base-section > .block#osaka_sales,
.base-section > .block#fukushima_sales,
.base-section > .block#kyushu_sales,
.base-section > .block#motor,
.base-section > .block#yamagata,
.base-section > .block#iino,
.base-section > .block#date,
.base-section > .block#koide,
.base-section > .block#imd,
.base-section > .block#kosei,
.base-section > .block#atsugi,
.base-section > .block#koufu,
.base-section > .block#toyoake01,
.base-section > .block#toyoake02,
.base-section > .block#tottori,
.base-section > .block#shiga,
.base-section > .block[id^="asia"]:not(#asia):not(#asia01),
.base-section > .block[id^="se_asia"]:not(#se_asia):not(#se_asia01),
.base-section > .block[id^="ns_america"]:not(#ns_america):not(#ns_america01),
.base-section > .block[id^="europe"]:not(#europe):not(#europe01) {
  padding-top: 120px;
  margin-top: -70px !important;
}

.base-section > .block + .block {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .base-section > .block + .block {
    margin-top: 6.66667vw;
  }
}

.base-section .button {
  margin-left: 0;
}

.base-section .department {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .base-section .department {
    margin-top: 5.33333vw;
  }
}

.base-section .department .box {
  margin-top: 22px;
}

@media screen and (max-width: 768px) {
  .base-section .department .box {
    margin-top: 2.93333vw;
  }
}

.base-section .department .box .detail {
  margin-top: 0.25em;
}

/*
  5-2. Contact
==================================== */
.contact-lead {
  position: relative;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #BCBCBC;
}

@media screen and (max-width: 768px) {
  .contact-lead {
    margin-bottom: 6.66667vw;
    padding-bottom: 6.66667vw;
    border-bottom-width: 0.26667vw;
  }
}

.contact-lead::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 70px;
  height: 1px;
  background-color: #C12324;
}

@media screen and (max-width: 768px) {
  .contact-lead::before {
    bottom: -0.26667vw;
    width: 18.66667vw;
    height: 0.26667vw;
  }
}

.contact-row {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding-top: 25px;
  padding-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .contact-row {
    display: block;
    padding-top: 5.33333vw;
    padding-bottom: 5.33333vw;
  }
}

.contact-row + .contact-row {
  border-top: 1px solid #BCBCBC;
}

@media screen and (max-width: 768px) {
  .contact-row + .contact-row {
    border-top-width: 0.26667vw;
  }
}

.contact-row > .label {
  width: 295px;
  margin-right: 70px;
  color: #000;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .contact-row > .label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2.66667vw;
  }
}

.contact-row > .input {
  -webkit-box-flex: 1;
          flex: 1;
}

.contact-row > .input > .guide {
  margin-top: 15px;
  padding-left: 80px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .contact-row > .input > .guide {
    padding-left: 0;
    margin-top: 2.66667vw;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.contact-row > .input > .row {
  padding-left: 80px;
}

@media screen and (max-width: 768px) {
  .contact-row > .input > .row {
    padding-left: 21.33333vw;
  }
  .contact-row > .input > .row:not(.-required) {
    padding-left: 0;
  }
}

.contact-row > .input > .row.-required {
  position: relative;
}

.contact-row > .input > .row.-required::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 60px;
  height: 28px;
  margin-top: -14px;
  content: "必須";
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  background-color: #C12324;
}

@media screen and (max-width: 768px) {
  .contact-row > .input > .row.-required::before {
    width: 16vw;
    height: 7.46667vw;
    margin-top: -3.73333vw;
  }
}

.contact-row > .input > .row + .row {
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .contact-row > .input > .row + .row {
    margin-top: 4vw;
  }
}

.contact-row > .input > .row.-error {
  width: 100%;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .contact-row > .input > .row.-error {
    margin-top: 2.66667vw;
  }
}

.contact-row > .input > .row.-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
}

.contact-row > .input > .row.-list:not(.-tel) > * + * {
  margin-left: 70px;
}

@media screen and (max-width: 768px) {
  .contact-row > .input > .row.-list:not(.-tel) > * + * {
    margin-left: 5.33333vw;
  }
}

.contact-row > .input > .row.-list.-tel > .input {
  width: 97px;
}

@media screen and (max-width: 768px) {
  .contact-row > .input > .row.-list.-tel > .input {
    width: 20vw;
  }
}

.contact-row > .input > .row.-list.-tel > .join {
  display: inline-block;
  font-weight: 500;
  margin-left: 15px;
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  .contact-row > .input > .row.-list.-tel > .join {
    margin-left: 2.66667vw;
    margin-right: 2.66667vw;
  }
}

.contact-row > .input > .row.-sets {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .contact-row > .input > .row.-sets {
    display: block;
  }
}

.contact-row > .input > .row.-sets.-set2 > .label {
  -webkit-box-flex: 1;
          flex: 1;
}

.contact-row > .input > .row.-sets.-set2 > .label:nth-of-type(3) {
  margin-left: 15px;
}

.contact-row > .input > .row.-sets.-set2 .input {
  width: 225px;
}

@media screen and (max-width: 768px) {
  .contact-row > .input > .row.-sets.-set2 .input {
    width: 100%;
  }
}

.contact-row > .input > .row.-sets > .label {
  -webkit-box-flex: 1;
          flex: 1;
}

@media screen and (max-width: 768px) {
  .contact-row > .input > .row.-sets > .label {
    margin-bottom: 1.33333vw;
  }
}

.contact-row > .input > .row.-sets .input {
  width: 425px;
}

@media screen and (max-width: 768px) {
  .contact-row > .input > .row.-sets .input {
    width: 100%;
  }
}

.contact-submit {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .contact-submit {
    margin-top: 8vw;
  }
}

.contact-submit > .button {
  margin-left: 15px;
  margin-right: 15px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .contact-submit > .button {
    margin-left: 2.66667vw;
    margin-right: 2.66667vw;
  }
}

.mw_wp_form_confirm .contact-row > .input > .row.-sets > .label,
.mw_wp_form_confirm .contact-row > .input > .guide,
.mw_wp_form_confirm .form-selsect::before {
  display: none;
}

/*
  5-2. Ir
==================================== */
.ir-menulist {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-top: -45px;
}

@media screen and (max-width: 768px) {
  .ir-menulist {
    margin-top: -6.66667vw;
  }
}

.ir-menulist > .box {
  width: 360px;
  margin-top: 45px;
}

@media screen and (max-width: 768px) {
  .ir-menulist > .box {
    width: 48%;
    margin-top: 6.66667vw;
  }
}

.ir-menulist > .box > .ph {
  width: 360px;
  margin-bottom: 30px;
  background-color: #ccc;
}

@media screen and (max-width: 768px) {
  .ir-menulist > .box > .ph {
    width: 100%;
    margin-bottom: 5.33333vw;
  }
  .ir-menulist > .box > .ph img {
    width: 100%;
    height: auto;
  }
}

.ir-menulist > .box > .title {
  margin-bottom: 25px;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .ir-menulist > .box > .title {
    margin-bottom: 2.66667vw;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.ir-menu > .item {
  position: relative;
  padding-left: 1em;
}

.ir-menu > .item + .item {
  margin-top: 7px;
}

@media screen and (max-width: 768px) {
  .ir-menu > .item + .item {
    margin-top: 2vw;
  }
}

.ir-menu > .item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-top: 1px solid #636363;
  border-right: 1px solid #636363;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .ir-menu > .item::before {
    width: 1.6vw;
    height: 1.6vw;
    margin-top: -0.8vw;
    border-top-width: 0.26667vw;
    border-right-width: 0.26667vw;
  }
}

.ir-menu > .item > .link {
  color: #585858;
}

@media screen and (min-width: 769px) {
  .ir-menu > .item > .link:hover {
    text-decoration: underline;
  }
}

.ir-tablist {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  .ir-tablist {
    -webkit-box-pack: center;
            justify-content: center;
    margin-top: -2.66667vw;
    margin-bottom: 8vw;
  }
}

.ir-tablist > .item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 138px;
  height: 35px;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .ir-tablist > .item:hover {
    color: #fff !important;
  }
  .ir-tablist > .item:hover.-tab0 {
    background-color: #0B62AA;
  }
  .ir-tablist > .item:hover.-tab1 {
    background-color: #0A6033;
  }
  .ir-tablist > .item:hover.-tab2 {
    background-color: #912322;
  }
  .ir-tablist > .item:hover.-tab3 {
    background-color: #8C7429;
  }
  .ir-tablist > .item:hover.-tab4 {
    background-color: #581A86;
  }
}

@media screen and (max-width: 768px) {
  .ir-tablist > .item {
    width: calc((100% - 4vw) / 3);
    margin-top: 2.66667vw;
    margin-left: 0.66667vw;
    margin-right: 0.66667vw;
  }
}

.ir-tablist > .item.is-current {
  color: #fff !important;
}

.ir-tablist > .item.is-current.-tab0 {
  background-color: #0B62AA;
}

.ir-tablist > .item.is-current.-tab1 {
  background-color: #0A6033;
}

.ir-tablist > .item.is-current.-tab2 {
  background-color: #912322;
}

.ir-tablist > .item.is-current.-tab3 {
  background-color: #8C7429;
}

.ir-tablist > .item.is-current.-tab4 {
  background-color: #581A86;
}

.ir-tablist > .item.-tab0 {
  color: #0B62AA;
  border-color: #0B62AA;
}

.ir-tablist > .item.-tab1 {
  color: #0A6033;
  border-color: #0A6033;
}

.ir-tablist > .item.-tab2 {
  color: #912322;
  border-color: #912322;
}

.ir-tablist > .item.-tab3 {
  color: #8C7429;
  border-color: #8C7429;
}

.ir-tablist > .item.-tab4 {
  color: #581A86;
  border-color: #581A86;
}

.ir-news {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .ir-news {
    margin-bottom: 8vw;
  }
}

.ir-newslist > .item {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
}

.ir-newslist > .item + .item {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .ir-newslist > .item + .item {
    margin-top: 5.33333vw;
  }
}

.ir-newslist > .item > .tag {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 97px;
  height: 24px;
  color: #fff;
  font-size: 13px;
  font-size: 1.3rem;
  margin-left: 10px;
  margin-right: 17px;
}

@media screen and (max-width: 768px) {
  .ir-newslist > .item > .tag {
    width: 25.86667vw;
    height: 6.4vw;
    font-size: 12px;
    font-size: 1.2rem;
    margin-left: 2.66667vw;
    margin-right: 0;
  }
}

.ir-newslist > .item > .tag.-tag1 {
  background-color: #0A6033;
}

.ir-newslist > .item > .tag.-tag2 {
  background-color: #912322;
}

.ir-newslist > .item > .tag.-tag3 {
  background-color: #8C7429;
}

.ir-newslist > .item > .tag.-tag4 {
  background-color: #581A86;
}

.ir-newslist > .item > .title {
  -webkit-box-flex: 1;
          flex: 1;
  color: #585858;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .ir-newslist > .item > .title {
    -webkit-box-flex: initial;
            flex: initial;
    width: 100%;
    margin-top: 2vw;
  }
}

/*
  5-2. Service
==================================== */
@media screen and (max-width: 768px) {
  .service-table-wrapper {
    overflow: auto;
    white-space: nowrap;
  }
}

.service-table {
  width: 100%;
}

.service-table > .head {
  width: 100%;
}

.service-table > .head > .row {
  width: 100%;
}

.service-table > .head > .row > .label {
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
  font-weight: 700;
  background-color: #636363;
  border-right: 1px solid #BCBCBC;
}

@media screen and (max-width: 768px) {
  .service-table > .head > .row > .label {
    padding: 4vw;
    border-right-width: 0.26667vw;
  }
}

.service-table > .head > .row > .label:nth-of-type(1) {
  width: 220px;
}

.service-table > .head > .row > .label:nth-of-type(2) {
  width: 115px;
}

.service-table > .head > .row > .label:nth-of-type(3) {
  width: 135px;
}

.service-table > .head > .row > .label:nth-of-type(4) {
  width: 150px;
}

.service-table > .head > .row > .label:nth-of-type(5) {
  width: 130px;
  border-right: 0;
}

.service-table > .body {
  width: 100%;
}

.service-table > .body > .row {
  width: 100%;
}

.service-table > .body > .row:nth-of-type(odd) {
  background-color: #F1F1F1;
}

.service-table > .body > .row:last-of-type:not(:nth-of-type(odd)) {
  border-bottom: 1px solid #BCBCBC;
}

.service-table > .body > .row > .detail {
  padding-top: 15px;
  padding-bottom: 15px;
  border-right: 1px solid #BCBCBC;
  letter-spacing: 0;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .service-table > .body > .row > .detail {
    padding: 4vw !important;
    border-right-width: 0.26667vw;
  }
}

.service-table > .body > .row > .detail:nth-of-type(1) {
  padding-left: 20px;
  padding-right: 20px;
}

.service-table > .body > .row > .detail:nth-of-type(2) {
  text-align: center;
}

.service-table > .body > .row > .detail:nth-of-type(3) {
  text-align: center;
}

.service-table > .body > .row > .detail:nth-of-type(4) {
  text-align: center;
}

.service-table > .body > .row > .detail:nth-of-type(5) {
  border-right: 0;
  text-align: center;
}

/*
  5-2. Qa
==================================== */
.qa-section > .lead {
  margin-bottom: 30px;
  color: #000;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .qa-section > .lead {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 4vw;
  }
}

.qa-item {
  padding: 30px 90px 30px 13px;
}

@media screen and (max-width: 768px) {
  .qa-item {
    padding: 4vw 13.33333vw 4vw 1.73333vw;
  }
}

.qa-item:first-of-type {
  border-top: 1px solid #BCBCBC;
}

@media screen and (max-width: 768px) {
  .qa-item:first-of-type {
    border-top-width: 0.26667vw;
  }
}

.qa-item:last-of-type {
  border-bottom: 1px solid #BCBCBC;
}

@media screen and (max-width: 768px) {
  .qa-item:last-of-type {
    border-bottom-width: 0.26667vw;
  }
}

.qa-item > .q {
  position: relative;
  color: #000;
  letter-spacing: 0;
  cursor: pointer;
}

.qa-item > .q::before {
  position: absolute;
  content: "";
  top: 50%;
  right: -80px;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  background: url(../images/common/icon_toggle.svg) no-repeat left top;
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .qa-item > .q::before {
    right: -9.33333vw;
    width: 6.66667vw;
    height: 6.66667vw;
    margin-top: -3.33333vw;
  }
}

.qa-item > .q::after {
  position: absolute;
  top: 50%;
  right: -65px;
  content: "";
  width: 1px;
  height: 16px;
  margin-top: -8px;
  background-color: #BCBCBC;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

@media screen and (max-width: 768px) {
  .qa-item > .q::after {
    right: -6vw;
    width: 0.26667vw;
    height: 3.46667vw;
    margin-top: -1.73333vw;
  }
}

.qa-item > .q.is-visible::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
}

.qa-item > .a {
  margin-top: 35px;
  padding-left: 30px;
  color: #585858;
  letter-spacing: 0;
  border-left: 10px solid #F1F1F1;
}

@media screen and (max-width: 768px) {
  .qa-item > .a {
    margin-top: 4.66667vw;
    padding-left: 4vw;
    border-left-width: 1.33333vw;
  }
}

.qa-item + .qa-item {
  border-top: 1px solid #BCBCBC;
}

@media screen and (max-width: 768px) {
  .qa-item + .qa-item {
    border-top-width: 0.26667vw;
  }
}

/*
  5-2. Technology
==================================== */
.technology-togglebox + .technology-togglebox {
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .technology-togglebox + .technology-togglebox {
    margin-top: 7.33333vw;
  }
}

.technology-box {
  position: relative;
  width: 100%;
  margin-top: 35px;
  padding: 40px;
}

@media screen and (max-width: 768px) {
  .technology-box {
    padding: 4vw;
    margin-top: 4.66667vw;
    margin-bottom: 6.66667vw;
  }
}

.technology-box::before {
  position: absolute;
  top: -22px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 23px 22px 23px;
  border-color: transparent transparent #F1F1F1 transparent;
}

@media screen and (max-width: 768px) {
  .technology-box::before {
    top: -2.93333vw;
    border-width: 0 3.06667vw 2.93333vw 3.06667vw;
  }
}

.technology-box.-box1::before {
  left: 155px;
}

@media screen and (max-width: 768px) {
  .technology-box.-box1::before {
    left: 19.33333vw;
  }
}

.technology-box.-box2::before {
  left: auto;
  right: 155px;
}

@media screen and (max-width: 768px) {
  .technology-box.-box2::before {
    right: 19.33333vw;
  }
}

.technology-box.-box3::before {
  left: 90px;
}

@media screen and (max-width: 768px) {
  .technology-box.-box3::before {
    left: 11.33333vw;
  }
}

.technology-box.-box4::before {
  left: 350px;
}

@media screen and (max-width: 768px) {
  .technology-box.-box4::before {
    left: 43.33333vw;
  }
}

.technology-box.-box5::before {
  left: auto;
  right: 90px;
}

@media screen and (max-width: 768px) {
  .technology-box.-box5::before {
    right: 11.33333vw;
  }
}

.technology-figures {
  margin-top: 0;
}

.technology-figures > .inner > .item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
}

.technology-figures > .inner > .item.is-visible {
  border: 3px solid #C12324;
}

.technology-figures > .inner > .item > .caption {
  font-size: 16px !important;
  font-size: 1.6rem !important;
}

@media screen and (max-width: 768px) {
  .technology-figures > .inner > .item > .caption {
    font-size: 1.3rem !important;
  }
}

.technology-figures > .inner > .item > .buttonwrap {
  width: 160px;
  padding-top: 30px;
  margin-top: auto;
  margin-bottom: 0;
  margin-left: 10px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .technology-figures > .inner > .item > .buttonwrap {
    width: 100%;
    padding-top: 4vw;
    margin-right: 0;
    margin-left: 0;
  }
}

.technology-figures > .inner > .item > .buttonwrap > .button {
  height: 42px;
}

@media screen and (max-width: 768px) {
  .technology-figures > .inner > .item > .buttonwrap > .button {
    -webkit-box-pack: start;
            justify-content: flex-start;
    height: auto;
    padding-left: 3.33333vw;
    padding-top: 2vw;
    padding-bottom: 2vw;
    line-height: 1.3;
  }
}

.technology-figures > .inner > .item > .buttonwrap > .button > .label {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .technology-figures > .inner > .item > .buttonwrap > .button > .label {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: left;
  }
}

.technology-item {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.technology-item + .technology-item {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .technology-item + .technology-item {
    margin-top: 8vw;
  }
}

.technology-item + .technology-section {
  margin-top: 105px;
}

@media screen and (max-width: 768px) {
  .technology-item + .technology-section {
    margin-top: 14vw;
  }
}

.technology-item:last-of-type {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .technology-item:last-of-type {
    margin-bottom: 13.33333vw;
  }
}

@media screen and (max-width: 768px) {
  .technology-item > .ph {
    width: 40%;
    margin-right: 2.66667vw;
  }
  .technology-item > .ph img {
    width: 100%;
  }
}

.technology-item > .detail {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: start;
          align-items: flex-start;
  width: 470px;
  color: #000;
}

@media screen and (max-width: 768px) {
  .technology-item > .detail {
    -webkit-box-flex: 1;
            flex: 1;
    width: auto;
  }
}

.technology-item > .detail.-aligncenter {
  -webkit-box-pack: center;
          justify-content: center;
}

.technology-item > .detail > .fillicon {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 107px;
  height: 36px;
  margin-bottom: 35px;
  color: #fff;
  line-height: 1;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 3px;
  background-color: #C12324;
}

@media screen and (max-width: 768px) {
  .technology-item > .detail > .fillicon {
    width: 25.33333vw;
    margin-bottom: 4vw;
  }
}

.technology-item > .detail > .label {
  margin-bottom: 15px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .technology-item > .detail > .label {
    margin-bottom: 2.66667vw;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.technology-item > .detail > .buttonwrap {
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
}

.technology-item > .detail > .buttonwrap > .item {
  width: calc(50% - 5px);
}

@media screen and (max-width: 768px) {
  .technology-item > .detail > .buttonwrap > .item {
    width: 100%;
  }
}

.technology-row {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .technology-row {
    display: block;
    padding-top: 5.33333vw;
    padding-bottom: 5.33333vw;
  }
}

.technology-row + .technology-row {
  border-top: 1px dotted #BCBCBC;
}

.technology-row:first-of-type {
  position: relative;
  border-top: 1px solid #BCBCBC;
}

@media screen and (max-width: 768px) {
  .technology-row:first-of-type {
    border-top-width: 0.26667vw;
  }
}

.technology-row:first-of-type::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 70px;
  height: 1px;
  background: #C12324;
  content: '';
}

@media screen and (max-width: 768px) {
  .technology-row:first-of-type::after {
    width: 18.66667vw;
    bottom: -0.26667vw;

    height: 0.26667vw;
  }
}

.technology-row:last-of-type {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .technology-row:last-of-type {
    margin-bottom: 13.33333vw;
  }
}

.technology-row > .label {
  width: 150px;
  color: #000;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .technology-row > .label {
    width: auto;
    margin-bottom: 2vw;
  }
}

.technology-row > .detail {
  -webkit-box-flex: 1;
          flex: 1;
  color: #000;
}

.technology-row > .detail > .figure {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: start;
          justify-content: flex-start;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .technology-row > .detail > .figure {
    margin-top: 5.33333vw;
  }
}

.technology-row > .detail > .figure > .ph {
  margin-right: 35px;
}

@media screen and (max-width: 768px) {
  .technology-row > .detail > .figure > .ph {
    width: 40%;
    margin-right: 5.33333vw;
  }
}

.technology-row > .detail > .figure img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .technology-row > .detail > .figure img {
    width: 100%;
    max-width: initial;
  }
}

.technology-table {
  width: 100%;
  border: 1px solid #BCBCBC;
}

@media screen and (max-width: 768px) {
  .technology-table {
    border-width: 0.26667vw;
  }
}

.technology-table > .body > .row + .row {
  border-top: 1px solid #bcbcbc;
}

@media screen and (max-width: 768px) {
  .technology-table > .body > .row + .row {
    border-top-width: 0.26667vw;
  }
}

.technology-table > .body > .row:nth-of-type(even) {
  background-color: #F1F1F1;
}

.technology-table > .body > .row > .head {
  width: 170px;
  color: #fff;
  padding: 15px 20px;
  font-weight: 700;
  background-color: #636363;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .technology-table > .body > .row > .head {
    width: 34%;
    padding: 4vw;
  }
}

.technology-table > .body > .row > .detail {
  padding: 15px;
  letter-spacing: 0;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .technology-table > .body > .row > .detail {
    padding: 4vw;
    word-break: break-all;
  }
}

.technology-section + .technology-section {
  margin-top: 85px;
}

@media screen and (max-width: 768px) {
  .technology-section + .technology-section {
    margin-top: 11.33333vw;
  }
}

.technology-section > .heading {
  position: relative;
  margin-bottom: 45px;
  padding-left: 40px;
  color: #636363;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .technology-section > .heading {
    margin-bottom: 5.33333vw;
    padding-left: 8vw;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.technology-section > .heading::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 28px;
  height: 1px;
  background-color: #BCBCBC;
}

@media screen and (max-width: 768px) {
  .technology-section > .heading::before {
    width: 5.97333vw;
    height: 0.26667vw;
  }
}

.technology-list {
  counter-reset: list 0;
}

.technology-list > .item + .item {
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .technology-list > .item + .item {
    margin-top: 8vw;
  }
}

.technology-list > .item > .label {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 40px;
  color: #000;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .technology-list > .item > .label {
    padding-left: 8vw;
  }
}

.technology-list > .item > .label::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: list 1;
  content: counter(list) ".";
}

.technology-list > .item > .detail {
  color: #585858;
}

.technology-define > .item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px dotted #BCBCBC;
}

@media screen and (max-width: 768px) {
  .technology-define > .item {
    padding-top: 6.66667vw;
    padding-bottom: 6.66667vw;
    border-top-width: 0.26667vw;
  }
}

.technology-define > .item:last-of-type {
  border-bottom: 1px dotted #BCBCBC;
}

@media screen and (max-width: 768px) {
  .technology-define > .item:last-of-type {
    border-bottom-width: 0.26667vw;
  }
}

.technology-define > .item > .label {
  width: 190px;
  color: #000;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .technology-define > .item > .label {
    width: 35%;
  }
}

.technology-define > .item > .detail {
  -webkit-box-flex: 1;
          flex: 1;
}

.technology-section-figure > .inner > .item > img {
  border: 3px solid transparent;
}

@media screen and (max-width: 768px) {
  .technology-section-figure > .inner > .item > img {
    border-width: 0.8vw;
  }
}

.technology-section-figure > .inner > .item.is-visible > img {
  border-color: #C12324;
}

.technology-comparison {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.technology-comparison + .technology-comparison {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .technology-comparison + .technology-comparison {
    margin-top: 10.66667vw;
  }
}

.technology-comparison.-fixedwidth > .item {
  width: 330px;
}

@media screen and (max-width: 768px) {
  .technology-comparison.-fixedwidth > .item {
    width: 100%;
  }
}

.technology-comparison.-alignbottom > .item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.technology-comparison.-alignbottom > .item > *:nth-last-of-type(2) {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .technology-comparison.-alignbottom > .item > *:nth-last-of-type(2) {
    margin-bottom: 5.33333vw;
  }
}

.technology-comparison.-alignbottom > .item > *:last-of-type {
  margin-top: auto !important;
  margin-bottom: 0;
}

.technology-comparison > .item {
  min-width: 330px;
}

@media screen and (max-width: 768px) {
  .technology-comparison > .item {
    width: 100%;
    min-width: initial;
  }
  .technology-comparison > .item + .item {
    margin-top: 6.66667vw;
  }
}

.technology-comparison > .item > .-arrow {
  position: relative;
}

@media screen and (max-width: 768px) {
  .technology-comparison > .item > .-arrow {
    padding-bottom: 14.66667vw;
  }
}

.technology-comparison > .item > .-arrow::before {
  position: absolute;
  top: 50%;
  right: -62px;
  content: "";
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-right: 2px solid #BCBCBC;
  border-top: 2px solid #BCBCBC;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .technology-comparison > .item > .-arrow::before {
    right: 50%;
    top: auto;
    bottom: 0;
    width: 4.8vw;
    height: 4.8vw;
    margin-top: 0;
    margin-right: -2.4vw;
    border-right-width: 0.53333vw;
    border-top-width: 0.53333vw;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}

.technology-comparison > .item > .-arrow::after {
  position: absolute;
  top: 50%;
  right: -62px;
  content: "";
  width: 39px;
  height: 2px;
  margin-top: -1px;
  background-color: #BCBCBC;
}

@media screen and (max-width: 768px) {
  .technology-comparison > .item > .-arrow::after {
    top: auto;
    bottom: 0;
    right: 50%;
    width: 0.53333vw;
    height: 10.4vw;
    margin-right: -0.26667vw;
    margin-top: 0;
  }
}

.technology-comparison > .item > .label {
  width: 100%;
  height: 37px;
  margin-bottom: 10px;
  background-color: #F1F1F1;
  line-height: 37px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .technology-comparison > .item > .label {
    height: auto;
    margin-bottom: 2.66667vw;
    padding: 2.66667vw;
    line-height: 1;
  }
}

.technology-comparison > .item > .ph {
  text-align: center;
}

.technology-comparison > .item > .ph + .detail {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .technology-comparison > .item > .ph + .detail {
    margin-top: 2.66667vw;
  }
}

@media screen and (max-width: 768px) {
  .technology-comparison > .item > .ph img {
    max-width: 100%;
    height: auto;
  }
}

.technology-comparison > .item > .detail {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  color: #000;
}

.technology-comparison > .item > .detail + .detail {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .technology-comparison > .item > .detail + .detail {
    margin-top: 5.33333vw;
  }
}

.technology-comparison > .item > .detail + .ph {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .technology-comparison > .item > .detail + .ph {
    margin-top: 5.33333vw;
  }
}

.technology-comparison > .item > .detail > .main {
  color: #000;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .technology-comparison > .item > .detail > .main {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.technology-comparison > .item > .detail > .main + .sub {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .technology-comparison > .item > .detail > .main + .sub {
    margin-top: 1.33333vw;
  }
}

.technology-comparison > .item > .detail > .sub {
  color: #585858;
  letter-spacing: -.02em;
}

.technology-processing {
  margin-top: 100px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .technology-processing {
    margin-top: 13.33333vw;
    margin-bottom: 5.33333vw;
  }
}

.technology-processing > .label {
  margin-bottom: 25px;
  font-size: 22px;
  font-size: 2.2rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .technology-processing > .label {
    margin-bottom: 4vw;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.technology-processing > .list {
  width: 190px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .technology-processing > .list {
    width: 43.06667vw;
  }
}

.technology-processing > .list > .item + .item {
  margin-top: 0;
}

/*
  5-2. Product
==================================== */
.product-figures > .inner > .item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.product-figures > .inner > .item > .caption {
  font-size: 16px !important;
  font-size: 1.6rem !important;
}

@media screen and (max-width: 768px) {
  .product-figures > .inner > .item > .caption {
    margin-bottom: 4vw;
    font-size: 1.3rem !important;
  }
}

.product-figures > .inner > .item > .buttonwrap {
  padding-top: 30px;
  margin-top: auto;
  margin-bottom: 0;
  margin-left: 10px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .product-figures > .inner > .item > .buttonwrap {
    padding-top: 4vw;
    margin-right: 0;
    margin-left: 0;
  }
}

.product-figures > .inner > .item > .buttonwrap > .button {
  height: 42px;
}

@media screen and (max-width: 768px) {
  .product-figures > .inner > .item > .buttonwrap > .button {
    -webkit-box-pack: start;
            justify-content: flex-start;
    height: auto;
    padding-left: 3.33333vw;
    padding-top: 2vw;
    padding-bottom: 2vw;
    line-height: 1.3;
  }
}

.product-figures > .inner > .item > .buttonwrap > .button > .label {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .product-figures > .inner > .item > .buttonwrap > .button > .label {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: left;
  }
}

.product-togglebox {
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .product-togglebox {
    padding: 2.66667vw;
  }
}

.product-togglebox > .wrapper + .wrapper {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .product-togglebox > .wrapper + .wrapper {
    margin-top: 4vw;
  }
}

.product-togglebox > .wrapper > .triggerlist {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.product-togglebox > .wrapper > .triggerlist > .trigger {
  width: 350px;
  height: 60px;
}

@media screen and (max-width: 768px) {
  .product-togglebox > .wrapper > .triggerlist > .trigger {
    width: 49%;
    height: 16vw;
  }
}

.product-togglebox > .wrapper > .triggerlist > .trigger.is-visible {
  background-color: #C12324;
  border-color: #C12324;
}

.product-togglebox > .wrapper > .triggerlist > .trigger.is-visible::before {
  margin-top: -10.5px;
  border-top-color: #fff;
  border-right-color: #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.product-togglebox > .wrapper > .triggerlist > .trigger.is-visible > .label {
  color: #fff;
}

.product-togglebox > .wrapper > .triggerlist > .trigger > .label {
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .product-togglebox > .wrapper > .triggerlist > .trigger > .label {
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 0;
    text-align: center;
  }
}

.product-togglebox > .wrapper > .bodys {
  -webkit-transition: height .5s ease-out;
  transition: height .5s ease-out;
  overflow: hidden;
}

.product-togglebody {
  width: 100%;
  margin-top: 0 !important;
}

.product-togglebody > .note {
  margin-top: 30px;
  color: #000;
}

.product-table {
  width: 100%;
  margin-top: 35px;
  border: 1px solid #BCBCBC;
  table-layout: fixed;
}

@media screen and (max-width: 768px) {
  .product-table {
    border-width: 0.26667vw;
  }
}

.product-table.-reverse > .body > .row {
  background-color: #F1F1F1;
}

.product-table.-reverse > .body > .row:nth-of-type(even) {
  background-color: #fff;
}

.product-table > .head {
  background-color: #636363;
}

.product-table > .head > .row {
  border-bottom: 1px solid #BCBCBC;
}

@media screen and (max-width: 768px) {
  .product-table > .head > .row {
    border-bottom-width: 0.26667vw;
  }
}

.product-table > .head > .row > .title {
  height: 58px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .product-table > .head > .row > .title {
    height: 10.66667vw;
  }
}

.product-table > .head > .row > .title + .title {
  border-left: 1px solid #BCBCBC;
}

.product-table > .head > .row > .title:first-of-type {
  width: 100px;
}

@media screen and (max-width: 768px) {
  .product-table > .head > .row > .title:first-of-type {
    width: 12%;
  }
}

.product-table > .head > .row > .title:nth-of-type(2) {
  width: 235px;
}

@media screen and (max-width: 768px) {
  .product-table > .head > .row > .title:nth-of-type(2) {
    width: 36%;
  }
}

.product-table > .body > .row + .row {
  border-top: 1px solid #bcbcbc;
}

@media screen and (max-width: 768px) {
  .product-table > .body > .row + .row {
    border-top-width: 0.26667vw;
  }
}

.product-table > .body > .row:nth-of-type(even) {
  background-color: #F1F1F1;
}

.product-table > .body > .row > .head {
  color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 700;
  background-color: #636363;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #bcbcbc;
}

@media screen and (max-width: 768px) {
  .product-table > .body > .row > .head {
    width: 34%;
    padding: 4vw;
    border-right-width: 0.26667vw;
  }
}

.product-table > .body > .row > .detail {
  padding-top: 15px;
  padding-bottom: 15px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .product-table > .body > .row > .detail {
    padding: 4vw;
    font-size: 13px;
    font-size: 1.3rem;
    word-break: break-all;
  }
}

.product-table > .body > .row > .detail + .detail {
  border-left: 1px solid #bcbcbc;
}

@media screen and (max-width: 768px) {
  .product-table > .body > .row > .detail + .detail {
    border-left-width: 0.26667vw;
  }
}

/*
  5-2. News
==================================== */
.news-list {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .news-list {
    margin-top: 6.66667vw;
  }
}

.news-list > .item {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .news-list > .item {
    display: block;
    padding-top: 4vw;
    padding-bottom: 4vw;
  }
}

.news-list > .item + .item {
  border-top: 1px solid #BCBCBC;
}

@media screen and (max-width: 768px) {
  .news-list > .item + .item {
    border-top-width: 0.26667vw;
  }
}

.news-list > .item > .date {
  width: 130px;
  color: #000;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .news-list > .item > .date {
    width: auto;
  }
}

.news-list > .item > .title {
  -webkit-box-flex: 1;
          flex: 1;
}

.news-article > .title {
  margin-bottom: 15px;
  color: #000;
  font-size: 22px;
  font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
  .news-article > .title {
    margin-bottom: 4vw;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.news-article > .date {
  margin-bottom: 60px;
  color: #000;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .news-article > .date {
    margin-bottom: 8vw;
  }
}

.news-article > .body p + p {
  margin-top: 2em;
}

/* ====================================

    5. For IE

==================================== */
/* ====================================

    99. Vendor

==================================== */
/* ====================================

    202305. アヴァンデザイン研究所
　　阿部とも　修正追記　　　　　↓ここから

==================================== */
h2.satori_modify {margin-top:50px;}
div.satori__custom_form {width:100%;}
div.satori_modify input{  -webkit-appearance: auto;}

/* ====================================

    202305. アヴァンデザイン研究所
　　阿部とも　修正追記　　↑　ここまで

==================================== */

/* ====================================

    202305. アヴァンデザイン研究所
　　阿部とも　修正追記　　　　　↓ここから

==================================== */
/*　会社概要の修正　*/
.page-define > .item + .item.bd-non{border-top:none; padding-top:0px;}
.product-togglebox > .wrapper > .triggerlist > .trigger.member{ width: 550px; height: 27px;}
.product-togglebox.member {padding:0px; }
.product-togglebox > .wrapper > .triggerlist > .trigger > .label.member { font-size: 1.3rem; font-weight: normal;}
.button-round.-arrow.member::before {  position: absolute;  top: 60%;  width: 10px;  height: 10px;}
div.inner > table.member {border-collapse: collapse;border-spacing: 0;font-size: 0.8em;margin-top: 20px; width: 99%; }
div.inner > table.member > tbody > tr > th{border: #BCBCBC 1px solid; vertical-align: middle; padding-left: 0.5em; padding-right: 0.5em; }
div.inner > table.member > tbody > tr > td{border: #BCBCBC 1px solid; vertical-align: middle; padding-left: 0.5em; padding-right: 0.5em; }
div.inner > table.member > tbody > tr > th{background-color: #585858; color: #FFFFFF; line-height: 1.3em; padding-top: 0.7em; padding-bottom: 0.7em;}


/* ====================================

    202305. アヴァンデザイン研究所
　　阿部とも　修正追記　　↑　ここまで

==================================== */
