/*--------------------------------------------------------------
  Header
--------------------------------------------------------------*/
body {
	font-family: "Roboto" , "Helvetica Neue" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "HiraginoKakuGothic Pro" , "ヒラギノ角ゴ ProN W3" , "Hiragino Kaku Gothic ProN", "HiraKakuProN-W3", "ＭＳ ゴシック" , "ＭＳ Ｐゴシック" , "MS Gothic" , sans-serif;
}
img {
    height: auto;
    max-width: 100%;
}
a {
    color: #444;
}
a:hover {
    color: #b3b3b3;
}

header {
    position: fixed;
    z-index: 100;
    width: 100%;
    top: 0;
    background: #fff;
}
.header-contents {
    display:-webkit-box;
    display:-ms-flexbox;
    display: -webkit-flex;
    display:flex;
    -ms-flex-wrap:npwrap;
    -moz-flex-wrap:nowrap;
    -webkit-flex-wrap:nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:flex-end;/*--- safari（PC）用 ---*/
    justify-content:flex-end;
}

.header-contents h1 {
    text-align: center;
    margin: 0.5em 0.5em 0 0.5em;
    width: 12%;
}

.menu {
	font-family: "Roboto" , "Helvetica Neue" , "ヒラギノ角ゴ Pro W6" , "Hiragino Kaku Gothic Pro" , "HiraginoKakuGothic Pro", "HiraKakuPro-W6" , "ヒラギノ角ゴ ProN W6" , "Hiragino Kaku Gothic ProN", "HiraKakuProN-W6", "ＭＳ ゴシック" , "ＭＳ Ｐゴシック" , "MS Gothic" , sans-serif;
    width: 85%;
}
.menu-info-box {
    background-color: #291f1e;
}
.menu-list-box{
    background-color: #0044aa;
}
ul.menu-info,
ul.menu-list {
    display:-webkit-box;
    display:-ms-flexbox;
    display: -webkit-flex;
    display:flex;
    padding: 1em 0 1em 1em;
    margin-bottom: 0;
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:flex-end;/*--- safari（PC）用 ---*/
    justify-content:flex-end;
    max-width: 52em;
    -ms-flex-align: center; /*IE10*/
    -webkit-box-align: center; /* Android4.3以下、Safari3.1〜6.0 */
    -webkit-align-items: center; /* Safari6.1以降 */
    align-items:center;
}

ul.menu-info li,
ul.menu-list li {
    list-style: none;
    padding-right: 2em;
}
ul.menu-info li:after {
    content: "|";
    color: #fff;
    padding-left: 2em;
}

ul.menu-info li a,
ul.menu-list li a {
    color: #fff;
    font-weight: bold;
    position: relative;
    transition: color .2s ease;    
    -webkit-transition: color .2s ease;
	font-size: 0.8em;
}
ul.menu-info li a:hover,
ul.menu-list li a:hover {
    text-decoration: none;
}
ul.menu-info li a:hover {
    color: #e42c34;
}
ul.menu-list li a:hover {
    color: #291f1e;
}
ul.menu-info li a:hover:after,
ul.menu-info li a:hover:before,
ul.menu-list li a:hover:after,
ul.menu-list li a:hover:before {
    width: 100%;
    left: 0;
}
ul.menu-info li a:after,
ul.menu-info li a:before,
ul.menu-list li a:after,
ul.menu-list li a:before {
    content: ""; 
    position: absolute;
    top: calc(100% + 5px);
    width: 0;
    right: 0;
    height: 3px;
}
ul.menu-info li a:before,
ul.menu-list li a:before {
    -webkit-transition: width .4s cubic-bezier(0.51, 0.18, 0, 0.88) .1s;
    transition: width .4s cubic-bezier(0.51, 0.18, 0, 0.88) .1s;
}
ul.menu-info li a:before {
    background: #e42c34;
}
ul.menu-list li a:before {
    background: #291f1e;
}
ul.menu-info li a:after,
ul.menu-list li a:after {
    transition: width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
    -webkit-transition: width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
}
ul.menu-info li a:after,
ul.menu-list li a:after {
    background: #fff;
}
ul.menu-info li > ul {
    padding-left: 0;
}
ul.menu-info li > ul li {
    display: inline-block;
    padding-right: 0.3em;
}
ul.menu-info li:last-child:after,
ul.menu-info li > ul li:after {
    content: none;
}
.sp-header-contents {
    display: none;
}
ul.menu-info li > ul li a:before,
ul.menu-info li > ul li a:after {
    content: none;
}
/*--------------------------------------------------------------
  Top
--------------------------------------------------------------*/
.content-area {
    padding-top: 7em;
}
[data-scroll] {
  opacity: 0;
  will-change: transform, scale, opacity;
  -webkit-transform: translateY(6rem) scale(0.93);
          transform: translateY(6rem) scale(0.93);
  transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-scroll="in"] {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.splitting .char {
  color: transparent;
}
.splitting .char:after {
  visibility: visible;
  color: #0044aa;
  opacity: 0;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: calc(.2s + (.04s * var(--char-index) ) );
}

[data-scroll="in"] .char:after {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.main-visual {
    margin: 2em auto;
    max-width: 1200px;
}
.contents {
    position: relative;
}
.contents-box01:before {
    background:url("../img/top/figure.png") no-repeat;
    content: "";
    position: absolute;
    top: -109px;
    left: -30px;
    width: 238px;
    height: 273px;
    background-size: contain;
    z-index: 99;
}
.contents-box02:before,
.contents-box03:before {
    background:url("../img/top/figure_r.png") no-repeat;
    content: "";
    position: absolute;
    top: -135px;
    right: 0;
    width: 161px;
    height: 296px;
    background-size: contain;
    z-index: 99;
}
.contents-area {
    background: url(../img/top/bg1.png) repeat;
    padding: 3em 0 7em;
}
.contents-box02 .contents-area,
.contents-box04 .contents-area {
    background: #e2e2e2;
}
.contents-box03 .contents-area {
    background: none;
}
.contents-area h2.title-en,
.column-box h2.title-en,
.page-title h2.title-en {
    font-style: italic;
    font-size: 3rem;
    color: #e42c34;
    font-weight: bold;
    text-align: center;
}
.contents-area h2.title-jp,
.column-box h2.title-jp,
.page-title h2.title-jp {
    position: relative;
    font-size: 1.4rem;
    margin-bottom: 2em;
    text-align: center;
}
.contents-area h2.title-jp:before,
.column-box h2.title-jp:before,
.page-title h2.title-jp:before {
    content: "";
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 60px;
    height: 5px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    background-color: #0044aa;
}
.contents-txt-box {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2em;
    -webkit-box-shadow: 0 10px 15px rgba(0,0,0,0.19), 0 4px 4px rgba(0,0,0,0.23);
    -moz-box-shadow: 0 10px 15px rgba(0,0,0,0.19), 0 4px 4px rgba(0,0,0,0.23);
    box-shadow: 0 10px 15px rgba(0,0,0,0.19), 0 4px 4px rgba(0,0,0,0.23);
    border-radius: 2px;
    position: relative;
    color: #444;
    letter-spacing: 0.1em;
    line-height: 1.8;
}
.contents-txt-box:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 29px solid #1d8dd2;
    border-right: 29px solid transparent;
    position: absolute;
    top: 0;
    left: 0;
}
.contents-txt-box p {
    word-wrap: break-word;
    margin: 0 auto;
    padding: 0.5em 0;
    box-sizing: content-box;
    text-align: center;
    line-height: 1.8em;
}
.contents-txt-box h3 {
    text-align: center;
    margin-top: 1em;
}
.btn-more,
.youtube-btn-more {
    text-align: center;
    max-width: 320px;
    margin: 1em auto;
}
.btn-more a,
.youtube-btn-more a,
.btn-contact a {
    position: relative;
    display: block;
    color: #fff;
    font-size: 1.5rem;
    padding: 0.5em 2em;
    font-style: italic;
    text-transform: uppercase;
    background-size: 200% auto;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.btn-more a {
    background-image: linear-gradient(to right, #0044aa 0%, #0099cc 50%, #0044aa 100%);
}
.youtube-btn-more a {
    background-image: linear-gradient(to right, #0c120c 0%, #4d4d4d 50%, #0c120c 100%);
}
.btn-contact a {
    background-image: linear-gradient(to right, #fff 0%, #e6e6e6 50%, #fff 100%);
    color: #0044aa;
}
.btn-more a:after,
.youtube-btn-more a:after,
.btn-contact a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    position: absolute;
    right: 20px;
    font-style: normal;
}
.btn-more a:hover,
.youtube-btn-more a:hover,
.btn-contact a:hover {
    background-position: right center;
}

/* Door of The Future */
h2.title-en-door {
    position: relative;
    padding: 5px 5px 5px 80px;
    background: #0044aa;
    font-style: italic;
    font-size: 3rem;
    color: white;
    z-index: 10;
    max-width: 1000px;
    overflow: hidden;
}
h2.title-en-door:before {
    position: absolute;
    content: "";
    right: -2px;
    top: -2px;
    border: none;
    border-right: solid 50px #fff;
    border-bottom: solid 87px transparent;
    z-index:0;
}
span.title-jp-door {
    font-size: 1.4rem;
    margin-left: 1em;
    vertical-align: middle;
    font-style: normal;
}
.youtube-area {
    max-width: 1009px;
    margin: 3em auto;

}
/* Contact */
.contents-box05 .contents-area {
    background: #1d8dd2 url(../img/top/bg_wht.png) repeat;
    padding: 3em 0;
}
.contents-box05 .splitting .char:after {
  color: #fff;
}

.contents-box05 h2.title-jp:before {
    background-color: #fff;
}
.contant-box {
    max-width: 1120px;
    margin: 5em auto 2em;
    display:-webkit-box;
    display:-ms-flexbox;
    display: -webkit-flex;
    display:flex;
    -ms-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:space-around;/*--- safari（PC）用 ---*/
    justify-content:space-around;
}
.tel {
}
.tel p,
.tel p a {
    font-size: 2.375rem;
    color: #fff;
}
.btn-contact {
    text-align: center;
    max-width: 320px;
    width: 100%;
}
/* FAQ Company */
.column-box {
    display:-webkit-box;
    display:-ms-flexbox;
    display: -webkit-flex;
    display:flex;
    -ms-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:center;/*--- safari（PC）用 ---*/
    justify-content:center;
    text-align: center;
    height: 300px;
    -ms-flex-align: center; /*IE10*/
    -webkit-box-align: center; /* Android4.3以下、Safari3.1〜6.0 */
    -webkit-align-items: center; /* Safari6.1以降 */
    align-items:center;
    list-style: none;
    padding-left: 0;
}
.column-box li {
    width: 50%;
    overflow: hidden;
}

a.faq-area,
a.company-area {
    background-size: cover;
    height: 300px;
    display: table;
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
a.faq-area {
    background-image:url("../img/top/q&a_bg.jpg");
}
a.company-area {
    background-image:url("../img/top/company_bg.jpg");
}
a.faq-area:hover,
a.company-area:hover {
    bottom: -36px;
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    text-decoration: none;
}

.title-box {
    display: table-cell;
    vertical-align: middle;
}
.title-box span.title-en {
    color: #fff;
    display: block;
    font-style: italic;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
}
.title-box span.title-jp {
    color: #fff;
    display: block;
    position: relative;
    font-size: 1.4rem;
    margin-bottom: 2em;
    text-align: center;
}
.title-box span.title-jp:before {
    background-color: #fff;
    content: "";
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 60px;
    height: 5px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
}

/*--------------------------------------------------------------
  Page
--------------------------------------------------------------*/
.page-title {
    padding: 2em 0 0;
	background: url(../img/top/bg1.png) repeat;
}
.content-main {
    background-color: #e2e2e2;
    padding: 2em 0;
    position: relative;
}
.content-main:after {
    background:url("../img/top/figure.png") no-repeat;
    content: "";
    position: absolute;
    bottom: -60px;
    right: 0;
    width: 212px;
    height: 296px;
}
.content-wrap {
    max-width: 1200px;
    margin: 2em auto;
    padding: 2em 3em 4em;
    background-color: #fff;
    -webkit-box-shadow: 0 10px 15px rgba(0,0,0,0.19), 0 4px 4px rgba(0,0,0,0.23);
    -moz-box-shadow: 0 10px 15px rgba(0,0,0,0.19), 0 4px 4px rgba(0,0,0,0.23);
    box-shadow: 0 10px 15px rgba(0,0,0,0.19), 0 4px 4px rgba(0,0,0,0.23);
    letter-spacing: 0.1em;
    position: relative;
}
.content-wrap:before {
    background:url("../img/top/figure_r.png") no-repeat;
    content: "";
    position: absolute;
    top: 0;
    left: -161px;
    width: 161px;
    height: 296px;
}

.content-wrap h3 {
    text-transform: uppercase;
    font-size: 1.8rem;
    line-height: 1.4;
    padding:0.25em 1em;
    display: inline-block;
    position: relative;
    margin: 1em 0;
}
.content-wrap h3:before,
.content-wrap h3:after {
    content:"";
    width: 20px;
    height: 30px;
    position: absolute;
    display: inline-block;
}
.content-wrap h3:before {
    border-left: solid 3px #0044aa;
    border-top: solid 3px #0044aa;
    top:0;
    left: 0;
}
.content-wrap h3:after {
    border-right: solid 3px #0044aa;
    border-bottom: solid 3px #0044aa;
    bottom:0;
    right: 0;
} 
.content-wrap h3.contact-title {
    margin: 1em 0 0;
}
.content-wrap h4 {
    font-size: 1.3rem;
    margin-bottom: 2.5em;
    margin-top: 1em;
    line-height: 1.6;
}
.content-wrap h4.business-title {
    font-size: 1.5rem;
    margin-top: 2em;
    position: relative;
    padding-left: 2em;
    margin-bottom: 0;
}
.content-wrap h4.business-title:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: black;
}
.content-wrap h4.business-title span.number {
    font-size: 3rem;
    color: #0044aa;
    vertical-align: middle;
    font-style: italic;
    margin-right: 0.1em;
}
.content-wrap h5 {
    margin: 2em 0 1em;
    position: relative;
    line-height: 1.4;
    padding:0.25em 1em;
    display: inline-block;
    top:0;
    font-size: 1.3rem;
}
.content-wrap h5:before,
.content-wrap h5:after {
    position: absolute;
    top: 0;
    content:"";
    width: 8px;
    height: 100%;
    display: inline-block;
}
.content-wrap h5:before {
    border-left: solid 3px #0044aa;
    border-top: solid 3px #0044aa;
    border-bottom: solid 3px #0044aa;
    left: 0;
}
.content-wrap h5:after {
    content: "";
    border-top: solid 3px #0044aa;
    border-right: solid 3px #0044aa;
    border-bottom: solid 3px #0044aa;
    right: 0;
}
.content-wrap h6 {
    font-size: 1rem;
    color: #e42c34;
    border-bottom: 1px solid;
    margin-top: 3em;
}
.content-wrap h6.first-title {
    margin-top: 0;
}
p span.txt-bold {
    font-weight: bold;
    font-size: 1.1rem;
}
.content-wrap p span.txt-red,
.contents-txt-box p span.txt-red {
    color: #e42c34;
}

ul.list-partner {
    list-style: none;
    padding-left: 0.5em;
}

ul.list-partner li {
    margin-bottom: 1em;
    border-bottom: 1px dashed #b3b3b3;
    padding-bottom: 0.5em;
    font-weight: bold;

}

ul.list-partner li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 0.3em;
    content: "\f00c";
    color: #0044aa;
}

ul.list-partner li2:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 0.3em;
    content: "\f00c";
    color: maroon;
}


.business-box {
    padding-left: 3em;
}
.business-box a {
    color: #000;
}
.business-box p i {
    margin-left: 0.3em;
}

/* Animation */
.has-animation {
    position: relative;
}

.has-animation p {
    color: #444;
    line-height: 1.8;
}
.has-animation p, 
.has-animation img,
.has-animation.animate-in .content-main {
    opacity: 0;
}
.has-animation.animate-in p, 
.has-animation.animate-in img,
.has-animation.animate-in .content-main {
    animation: textHidden 0.1s 1.1s forwards;
}
.has-animation.animate-in:before, 
.has-animation.animate-in:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 10;
}
.has-animation.animate-in:before {
    background-color: #0044aa;
}
.has-animation.animate-in:after {
    background-color: #0044aa;
    animation-delay: .5s;
}
.has-animation.animation-ltr.animate-in:before {
    animation: textanimation-left 1.8s ease;
}
.has-animation.animation-ltr.animate-in:after {
    animation: textanimation-left 1s .6s ease;
}
.has-animation.animation-rtl.animate-in:before {
    animation: textanimation-right 1.8s ease;
}
.has-animation.animation-rtl.animate-in:after {
    animation: textanimation-right 1s .6s ease;
}
@keyframes textanimation-right {
  0% {
    width: 0;
    right: 0;
  }
  65% {
    width: 100%;
    right: 0;
  }
  100% {
    width: 0;
    right: 100%;
  }
}
@-webkit-keyframes textanimation-right {
  0% {
    width: 0;
    right: 0;
  }
  65% {
    width: 100%;
    right: 0;
  }
  100% {
    width: 0;
    right: 100%;
  }
}
@keyframes textanimation-left {
  0% {
    width: 0;
    left: 0;
  }
  65% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@-webkit-keyframes textanimation-left {
  0% {
    width: 0;
    left: 0;
  }
  65% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes textHidden {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes textHidden {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.char {
  display: inline-block;
  -webkit-animation-delay: calc(0.25s + var(--char-index) * 0.1s);
          animation-delay: calc(0.25s + var(--char-index) * 0.1s);
  transition: all 0.25s calc(0.25s + var(--char-index) * 0.1s);
}
.text--blocks [data-scroll='out'] .char {
  visibility: hidden;
}
.text--blocks [data-scroll='in'] {
  overflow: hidden;
  position: relative;
}
.text--blocks [data-scroll='in'] .char {
  transition-delay: 0.5s;
}
.text--blocks [data-scroll='in']:after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #e42c34;
  -webkit-animation: block 0.5s 0.25s both;
          animation: block 0.5s 0.25s both;
}
@-webkit-keyframes block {
  0% {
    -webkit-transform: translate(-110%, 0);
            transform: translate(-110%, 0);
  }
  45%, 55% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(110%, 0);
            transform: translate(110%, 0);
  }
}
@keyframes block {
  0% {
    -webkit-transform: translate(-110%, 0);
            transform: translate(-110%, 0);
  }
  45%, 55% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(110%, 0);
            transform: translate(110%, 0);
  }
}
/* services */
.services-list {
    display:-webkit-box;
    display:-ms-flexbox;
    display: -webkit-flex;
    display:flex;
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:space-around;/*--- safari（PC）用 ---*/
    justify-content:space-around;
    margin-top: 2em;
}
.services-list-box  {
}

.services-list-box ul {
    list-style: none;
    padding-left: 0;
}
.services-list-box ul li {
    margin-bottom: 0.5em;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.5em;
}
.services-list-box ul li a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f13a";
    margin-right: 0.3em;
    color: #e42c34;
}
.services-list-number01:before,
.services-list-number02:before,
.services-list-number03:before {
    color: rgba(228,44,52,0.6);
    font-size: 3.5rem;
}  
.services-list-number01:before {
    content: "1";
}
.services-list-number02:before {
    content: "2";
}
.services-list-number03:before {
    content: "3";
}
.services-list-number01 {
    -webkit-flex-basis: 200px;
    -ms-flex-basis    : 200px;
    flex-basis        : 200px;
}
.services-list-box h4 {
    position: relative;
    margin-bottom: 0;
}
.services-list-box h4 span {
    position: absolute;
    top: -61px;
}
ul.image-list {
    list-style: none;
    padding-left: 0;
    display:-webkit-box;
    display:-ms-flexbox;
    display: -webkit-flex;
    display:flex;
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
    justify-content:space-between;
}
ul.image-list li {

}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
    ul.image-list li img {width: 352px;}
}

/* custom */
.flow-box {
    display:-webkit-box;
    display:-ms-flexbox;
    display: -webkit-flex;
    display:flex;
    -ms-flex-align: center; /*IE10*/
    -webkit-box-align: center; /* Android4.3以下、Safari3.1〜6.0 */
    -webkit-align-items: center; /* Safari6.1以降 */
    align-items:center;
    margin-bottom: 2em;
    border-bottom: 3px solid;
    position: relative;
}
.flow-box:after {
    position: absolute;
    content: "";
    top: 100%;
    left: 43px;
    border: 15px solid transparent;
    border-top: 15px solid #291f1e;
    width: 0;
    height: 0
}
.flow-number {
    background-color: #291f1e;
    color: #fff;
    font-size: 1.5rem;
    padding: 0.5em;
}

.flow-number span {
    font-size: 2.5rem;
    margin-left: 0.1em;
    vertical-align: middle;
}
.flow-txt {
    padding: 0 2em;
}
.flow-txt h4 {
    margin-bottom: 0;
}
.flow-color-box {
    border-bottom: 3px solid #e42c34;
}
.flow-color-box:after {
    border-top: 15px solid #e42c34;
}
.flow-color {
    background-color: #e42c34;
}
.box,
.custom-box {
    display:-webkit-box;
    display:-ms-flexbox;
    display: -webkit-flex;
    display:flex;
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
    justify-content:space-between;
    -ms-flex-align: center; /*IE10*/
    -webkit-box-align: center; /* Android4.3以下、Safari3.1〜6.0 */
    -webkit-align-items: center; /* Safari6.1以降 */
    align-items:center;
}
.custom-txt-box {
    margin-top: 1em;
    max-width: 50%;
}
.txt-box {
    width: 57%;
    margin-right: 1em;
}
/* future */
.content-wrap h3.soon {
    display: block;
    font-size: 3.5rem;
    text-align: center;
    font-style: italic;
    margin-top: 0.5em;
}
.splitting.soon .char:after {
    color: #291f1e;
}
.content-wrap h3.soon:before,
.content-wrap h3.soon:after {
    content: none;
}
/* first */
.content-wrap h3.logo-img {
    margin: 2em 0;
}

/* qa */
.qa-list dt {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 2em;
    padding: 0.5em;
    cursor: pointer;
    background-color: #f2f2f2;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,.1);
}
.qa-list dt span,
.qa-list dd span {
    font-size: 2.3rem;
    margin-right: 0.3em;
}
.qa-list dd span.a-title {
    color: #ff3300;
}
.qa-list dt:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    font-size: 1.5em;
    margin-left: 0.3em;
    vertical-align: middle; 
}
.qa-list dt.active:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f077"; 
    font-size: 1.5em;
    margin-left: 0.3em;
    vertical-align: middle;
}
.qa-list dd {
    color: #333;
    display: none;
    font-size: 1rem;
    padding: 1em;
    border-right: 1px solid #f2f2f2;
    border-left: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}
.qa-list dd h3.place {
    margin: 0 0 1em;
    padding: 0;
    font-size: 1rem;
    border-bottom: 1px solid;
}
.qa-list dd h3.place:before,
.qa-list dd h3.place:after {
    content: none;
}
.qa-list dd p {
    margin-bottom: 0.5em;
    opacity: 1;
}
.info-box {
    margin: 1em;
    border: 1px solid #ccc;
    padding: 1em;
}
.qa-list dd p.tel,
.qa-list dd p.fax {
    display: inline-block;
    margin-right: 1em;
    font-size: 1.3rem;
}
.qa-list dd p.website {
    margin-bottom: 0;
}
.qa-list dd p i {
    margin: 0 0.3em;
}
.qa-list dd ul li {
    margin-bottom: 1em;
    font-weight: bold;
}
.qa-list dd ul li > ul li:first-child {
    margin-top: 1em;
}
.qa-list dd ul li > ul li,
.qa-list dd ul li p {
    font-weight: normal;
}
.flow-box-area {
    padding: 0 2.5em;
    margin-top: 2em;
}
/* company */
table.campany-box,
table.contact-box {
    width: 100%;
}
table.campany-box th,
table.campany-box td {
    padding: 10px; 
    border: 1px solid #ddd;
}
table.campany-box th {
    background: #f4f4f4;
    width: 30%; 
    text-align: left;
}
h4.business {
    margin-top: 3em;
}

/* contact */
.content-wrap h4.phone {
    margin-bottom: 0.5em;
    font-size: 1.8rem;
}
span.time {
    font-size: 1rem;
    vertical-align: middle;
    margin-left: 0.5em;
}
table.contact-box th,
table.contact-box td {
    padding: 1em;
    border-bottom: 1px solid #ccc;
}
table.contact-box th {
    width: 20%;
    text-align: right;
}
table.contact-box tr:first-child th,
table.contact-box tr:first-child td {
    border-top: 1px solid #ccc;
}
.form-contant {
    border: 1px solid #291f1e;
}
.form-contant dl {
    width: 100%;
    margin-bottom: 0;
    display:-webkit-box;
    display:-ms-flexbox;
    display: -webkit-flex;
    display:flex;
    -ms-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}
.form-contant dl dt,
.form-contant dl dd {
    width: 100%;
    padding: 1em;
    margin: 0px;
    border-top: 1px solid #999;
    word-break: break-all;
}
.form-contant dl dt.form-top,
.form-contant dl dd.form-top {
    border-top: none;
}
.form-contant dl dt {
    background-color: #e6e6e6;
}
.form-contant dl dd {

}
span.re-enter {
    font-size: 0.9rem;
    color: #e42c34;
}
span.label-danger {
    color: #e42c34;
}
.privacy-box {
    height: 150px;
    overflow: auto;
    border: 1px solid #999999;
    padding: 1em;
    background-color: #F7F5F5;
    margin-bottom: 1em;
}
.privacy-box h4.privacy-title {
    font-size: 1rem;
}
.privacy-box p {
    font-size: 0.9rem;
}
p.checkbox-txt {
    font-size: 1.2rem;
    font-weight: bold;
}
p.checkbox-txt input[type=checkbox] {
    margin-right: 0.3em;
}
textarea {
    border: solid 1px #aaa;
    border-radius:5px;
    padding: 10px;
    height: 160px;
    font-size: 15px;
    width: 70%;
}
input[type="text"],
input[type="tel"],
input[type="email"]  {
    width: 70%;
    border: 1px solid #bebebe;
    text-indent: 0.7em;
    padding: 5px;
}
label {
    margin-bottom: 0;
}
.confirm-btn {
    margin: 2em auto;
}
.confirm-btn ul {
    list-style: none;
    display:-webkit-box;
    display:-ms-flexbox;
    display: -webkit-flex;
    display:flex;
}
.confirm-btn ul li:first-child {
    margin-right: 2em;
}
[type="submit"],
[type="button"],
[type="reset"] {
    position: relative;
    color: #fff;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    padding: 0.5em 2em;
    text-transform: uppercase;
    /*background-size: 200% auto;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    background-image: linear-gradient(to right, #e9565d 0%, #ed757b 50%, #e42c34 100%);*/
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    /*margin: 0 auto;*/
}
[type="submit"]:hover,
[type="button"]:hover,
.form-btn input:hover {
    background-position: right center;
}
.form-btn input {
    margin-right: 1em;
    background-size: 200% auto;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    background-image: linear-gradient(to right, #e9565d 0%, #ed757b 50%, #e42c34 100%);
}
.form-btn input.form-btn-off {
    cursor: default;
    background-color: #ccc;
    background-image: none;
}
.form-btn input.form-btn-off:hover {
    background-color: #ccc;
    color: #fff;
}
.form-btn-area {
    margin-top: 2em;
}
.form-btn input.correct {
    background-image: linear-gradient(to right, #291f1e 0%, #544c4b 50%, #7f7978 100%);
}

/* F T I */
.social-area {
    padding: 4em 4em 4em;
}
ul.social-list {
    padding-left: 0;
    max-width: 500px;
    margin: 0 auto;
    list-style: none;
    display:-webkit-box;
    display:-ms-flexbox;
    display: -webkit-flex;
    display:flex;
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:space-around;/*--- safari（PC）用 ---*/
    justify-content:space-around;
}
ul.social-list li {

}

/* Privacy Policy */
.privacy-area p {
    letter-spacing: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}
h4.privacy-title {
    margin: 1.5em 0 0.5em;
}
.privacy-area p.contact-txt {
    margin-bottom: 0;
}
.privacy-area p.contact-mail {
    font-size: 1.2rem;
    margin-bottom: 0.5em;
}


/*--------------------------------------------------------------
  Footer
--------------------------------------------------------------*/
.footer-contets {
    display:-webkit-box;
    display:-ms-flexbox;
    display: -webkit-flex;
    display:flex;
    -ms-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
    justify-content:space-between;
    margin: 4em auto;
    max-width: 1120px;
    -ms-flex-align: center; /*IE10*/
    -webkit-box-align: center; /* Android4.3以下、Safari3.1〜6.0 */
    -webkit-align-items: center; /* Safari6.1以降 */
    align-items:center;
}
.info-area h1 {
    margin-bottom: 1em;
}
.info-area p {
    margin-bottom: 0.5em;
    font-size: 1.1em;
}
.info-area p.footer-tel {
    font-size: 1.5em;
}
.footer-menu ul {
    display: inline-block;
    list-style: none;
    padding-left: 0;
    margin-right: 7em;
}
.footer-menu ul:last-child {
    margin-right: 0;
}
.footer-menu ul li {
    margin-bottom: 1em;
}
.footer-menu ul li a {
    color: #4d4d4d;
    font-weight: bold;
    font-size: 0.875rem;
}
.footer-menu ul li > ul li {
    display: inline-block;
}
#fixedTop:before {
    font-family: "Font Awesome 5 Free";
    content: "\f30c";
    font-weight: 900;
}
#fixedTop {
    right: 10px;
    bottom: 50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    background: rgba(29,141,210,0.8);
    position: fixed;
    z-index: 9999;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    transform: scale(0);
    text-decoration: none;
}

#fixedTop:hover {
    opacity: 0.8;
}
#fixedTop.show {
    transform: scale(1);
    -webkit-transform: translateZ(0);
}

/*--------------------------------------------------------------
 Media Queries
--------------------------------------------------------------*/
@media screen and (max-width: 1110px) {
.contents-box01:before {
    width: 180px;
}
.contents-box02:before,
.contents-box03:before {
    width: 120px;
    top: -100px;
}
}
@media screen and (max-width: 1089px) {
ul.image-list {
    display: block;
    text-align: center;
}
ul.image-list li {
    margin-bottom: 1em;
}
}
@media screen and (max-width: 1000px) {
.content-main {
    padding: 2em;
}
.content-wrap {
    padding: 2em 3em 4em;
}
.content-main:after {
    width: 161px;
    bottom: -110px;
}
}
@media screen and (max-width: 960px) {
header {
    padding: 0.5em 0;
}
.header-contents {
    display: block;
}
.menu {
    display: none;
}
.header-contents h1 {
    margin: 0 0 0 0.3em;
    max-width: 180px;
    width: 100%;
}
/* sp-menu */
.sp-header-contents {
    display: block;
}
.button_container {
    position: fixed;
    top: 3%;
    right: 2%;
    height: 27px;
    width: 40px;
    cursor: pointer;
    z-index: 200;
    transition: opacity .25s ease;
}
.button_container:hover {
    opacity: .7;
}
.button_container.active .top {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
            transform: translateY(11px) translateX(0) rotate(45deg);
    background: #FFF;
}
.button_container.active .middle {
    opacity: 0;
    background: #FFF;
}
.button_container.active .bottom {
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
            transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #FFF;
}
.button_container span {
    background: #0044aa;
    border: none;
    height: 5px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
}
.button_container span:nth-of-type(2) {
    top: 11px;
}
.button_container span:nth-of-type(3) {
    top: 22px;
}

.overlay {
    position: fixed;
    background: #1889d7;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
}
.overlay.open {
    opacity: .9;
    visibility: visible;
    height: 100%;
    z-index: 100;
}
.overlay.open li {
    -webkit-animation: fadeInDown .5s ease forwards;
            animation: fadeInDown .5s ease forwards;
    -webkit-animation-delay: .35s;
            animation-delay: .35s;
}
.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .4s;
            animation-delay: .4s;
}
.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
            animation-delay: .45s;
}
.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
            animation-delay: .50s;
}
.overlay nav {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;
}
.overlay ul {
    list-style: none;
    margin: 0 auto;
    position: relative;
    height: 100%;
    padding: 0;
}
.overlay ul li {
    display: block;
    height: 25%;
    height: calc(100% / 9);
    min-height: 50px;
    position: relative;
    opacity: 0;
}
.overlay ul li a {
    display: block;
    position: relative;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
    padding-top: 1em;
}
.overlay ul li a:hover:after, 
.overlay ul li a:focus:after, 
.overlay ul li a:active:after {
    width: 100%;
}
.overlay ul li a:after {
    content:"";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 3px;
    background: #FFF;
    transition: .35s;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    top: 0;
  }
  100% {
    opacity: 1;
    top: 40%;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    top: 0;
  }
  100% {
    opacity: 1;
    top: 40%;
  }
}
ul.sp-menu-info li a {
    color: #291f1e;
}
ul.sp-menu-list li a {
    font-size: 1.2rem;
    font-weight: bold;
}
ul.sp-menu-info li > ul li {
    display: inline-block;    
}
.content-area {
    padding-top: 4em;
}
.footer-contets {
    padding: 0 1em;
}
.services-list {
    display: block;
}
}
@media screen and (max-width: 948px) {
.footer-contets {
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:center;/*--- safari（PC）用 ---*/
    justify-content:center;
}
.info-area {
    margin-bottom: 2em;
}
}
@media screen and (max-width: 768px) {
.contents-area {
    padding: 3em 2em 7em;
}
.contents-box01:before {
    top: -50px;
}
.contents-box03 .contents-area {
    padding: 0;
}
.youtube-area {
    padding: 0 1em;
}
.box,
.custom-box {
    display: block;
}
.txt-box,
.custom-txt-box {
    width: 100%;
    max-width: 100%;
}
.imag-box,
.custom-img-box {
    text-align: center;
}
input[type="text"], 
input[type="tel"], 
input[type="email"] {
    width: 100%;
}
.form-btn input {
    margin-bottom: 1em;   
}
}

@media screen and (max-width: 480px) {
.header-contents h1 img {
    max-width: 170px;
}
.contents-area {
    padding: 3em 1em 7em;
}
.contents-box01:before {
    top: -43px;
    width: 100px;
}
.contents-box02:before,
.contents-box03:before {
    width: 69px;
    top: -63px;
}
.contents-area h2.title-en,
.page-title h2.title-en {
    line-height: 1.2em;
    font-size: 2rem;
}
.contents-txt-box {
    margin: 2em auto 0;
    padding: 2em 1.5em;
}
.contents-txt-box h3,
.contents-txt-box p {
    text-align: left;
}
h2.title-en-door {
    font-size: 2rem;
    padding: 5px 5px 5px 27px;
}
h2.title-en-door:before {
    border-bottom: solid 96px transparent;
}
span.title-jp-door {
    display: block;
    margin-left: 0;
}
.tel p {
    margin-bottom: 1em;
}
.column-box {
    height: auto;
}
.faq, 
.company {
    width: 100%;
    height: 300px;
}
.column-box h2.title-en {
    margin-top: 2em;
}
.page-title {
    padding: 1em 0;
}
.contents-area h2.title-jp, 
.column-box h2.title-jp, 
.page-title h2.title-jp {
    margin-bottom: 1em;
}
.content-main {
    padding: 1em;
}
.content-wrap {
    padding: 1em 1.5em 4em;
}
.content-main:after {
    content: none;
}
.content-wrap h3 {
    font-size: 1.3rem;
    margin: 1em 0;
}
.content-wrap h4 {
    font-size: 1rem;
    margin-top: 1em;
}
.flow-box h4 {
    margin-top: 0;
}
.flow-txt {
    padding: 0 1em;
}
.content-wrap h4.business-title {
    padding-left: 0;
    font-size: 1.2rem;
}
.content-wrap h4.business-title:before {
    content: none;
}
.content-wrap h4.business-title span.number {
    font-size: 2rem;
}
.content-wrap h4.business-title span.number2 {
    font-size: 1rem;
}

.business-box {
    padding-left: 0;
}
.flow-number {
    font-size: 1rem;
}
.flow-number span {
    font-size: 2rem;
}
.content-wrap h3.soon {
    padding: 1em 0 0;
    font-size: 2rem;
}
.qa-list dt {
    font-size: 1rem;
}
.qa-list dd {
    padding: 0.3em;
}
.qa-list dt span, 
.qa-list dd span {
    font-size: 1.8rem;
}
.info-box {
    margin: 0 0 0.5em;
}
.qa-list dd ul {
    padding-left: 1.5em;
}
.qa-list dd ul li > ul {
    padding-left: 1em;
}
.flow-box {
    margin-top: 2em;
}
.flow-box-area {
    padding: 0;
}
table.campany-box th,
table.campany-box td,
table.contact-box th,
table.contact-box td {
    width: 100%;
    display: block;
    border-top: none;
}
table.campany-box tr:first-child th {
    border-top: 1px solid #ddd;
}
table.contact-box th {
    text-align: left;
    border-bottom: none;
    padding-bottom: 0;
}
span.time {
    display: block;
}
table.contact-box td {
    padding-top: 0;
}
input[type="text"],
textarea {
    width: 100%;
}
.social-area {
    padding: 4em 1.5em 4em;
}
ul.social-list li {
    max-width: 80px;
}
.services-list-box ul {
    margin-top: -38px;
}
.column-box {
    display: block;
}
.column-box li {
    width: 100%;
}
.image-box {
    margin-bottom: 2em;
}
/*.content-wrap p span.txt-red {
    font-size: 2rem;
}*/
}
@media screen and (min-width: 768px) {
.form-contant dl dt,
.form-contant dl dd {
        text-align: left;
}
.form-contant dl dt,
.form-contant dl dd {
    display:-webkit-box;
    display:-ms-flexbox;
    display: -webkit-flex;
    display:flex;
    -ms-flex-align: center; /*IE10*/
    -webkit-box-align: center; /* Android4.3以下、Safari3.1〜6.0 */
    -webkit-align-items: center; /* Safari6.1以降 */
    align-items:center;
}
.form-contant dl dt {
    width: 30%;
}
.form-contant dl dd {
    width: 70%;
    border-left: 1px solid #999;
}
}
@media screen and (min-width:1280px) {
.header-contents h1 {
    width: 30%;
}
.header-contents h1 img {
    width: 55%;
}

/* 追加 */

ol {
  padding-left: 30px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px
  
  /*↑padding: 10px 10px 10px 30pxと
  まとめて書くこともできますね。*/
  /*背景色などのCSSは省略*/
}