@charset "utf-8";

/*ADOBEフォントちらつき対策ここから*/
body {
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
/*ADOBEフォントちらつき対策ここまで*/
*, *::before, *::after{box-sizing: border-box;}
html {font-size: 62.5%; height: 100%; position: relative;}
body {
    color:#1c1c1c;
    font-size: 1.4rem;
    font-family: 'heisei-kaku-gothic-std', 'ivypresto-headline', 'a-otf-ud-reimin-pr6n',
    游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic',sans-serif;
    margin: 0 auto; line-height: 1.4;position:relative;
}
img {
    max-width: 100%;
    height: auto;
}
main{overflow: hidden;}
iframe {max-width: 100%;width: 100%;height: auto;}
a{text-decoration: none;color: #1c1c1c;cursor: pointer;}
button {cursor: pointer;}
/*デバイス切り替えここから*/
@media screen and (max-width: 1024px) {
	.pc {display:none !important;}
}
@media print,screen and (min-width: 1025px) {
	.sp {display:none !important;}
}

figure.sweep_img.active:before {
    width: 0;
}
figure.sweep_img:before {
    content: "";
    background: #e8e8e6;
    width: 100%;
    height: 100%;
    position: absolute;
    display: inline-block;
    top: 0;
    right: 0;
    z-index: 2;
    transition: 1s cubic-bezier(0.5, 0, 0.175, 1);
}

/*デバイス切り替えここまで*/
/*
  ページャー
---------------------------------*/
.pager {
}
.pager_list {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pager_item {
    width: 55px;
    height: 60px;
    margin: 0 4px;
}
.pager_item a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-family: "ivypresto-headline";
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    background-color: #e6e6e6;
}
.pager_item .current {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-family: "ivypresto-headline";
    font-size: 1.4rem;
    font-weight: 600;
}
.pager_item .pre,
.pager_item .after {
}
.pager_item .pre::after {
    content: "";
    width: 8px;
    height: 8px;
    border-bottom: 3px solid #333333;
    border-left: 3px solid #333333;
    -webkit-transform: translateX(25%) rotate(45deg);
    transform: translateX(25%) rotate(45deg);
}
.pager_item .next::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 3px solid #333333;
    border-right: 3px solid #333333;
    -webkit-transform: translateX(-25%) rotate(45deg);
    transform: translateX(-25%) rotate(45deg);
}
@media screen and (max-width:1024px) {
    .pager {
        margin-bottom: 30px;
    }
    .pager_item {
        width: 35px;
        height: 35px;
    }
}
/*---------------------------------
| button
---------------------------------*/
.btn {
    font-family: 'ivypresto-headline';
    font-weight: 600;
    font-size: 14px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: #333;
    line-height: 1;
    padding: 14px 0;
    width: 300px;
    text-align: center;
    vertical-align: center;
    transition: 0.3s all;
    border: solid 1px #333;
}
.btn .bar {
    position: relative;
    margin-left: 10px;
}
.btn .bar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 1px;
  background: #333;
}
.btn .bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 1px;
  background: #fff;
}
.btn .bar::after {
  animation: btn 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes btn {
  0% {
    transform: scale(0, 1);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 100% 0;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: 100% 0;
  }
}
@media print,screen and (max-width: 1024px) {
    .btn {
        font-size: 1.2rem;
    }
}
/* .btn::after { */
/*     content: ""; */
/*     position: absolute; */
/*     top: 45%; */
/*     right: 20px; */
/*     width: 8px; */
/*     height: 8px; */
/*     border-top: 2px solid #fff; */
/*     border-right: 2px solid #fff; */
/*     -webkit-transform: rotate(45deg); */
/*     transform: rotate(45deg); */
/* } */
/*
| button theme
-----------------*/
.btn.white {
    background-color: transparent;
    border: #fff solid 2px;
    color: #fff;
}
.btn.orange {
    background-color: #e7ac3a;
}
.btn.black {
    background-color: #333;
    color: #fff;
    border: #333 solid 1px;
}
/*
| button hover
-----------------*/
.btn:hover {
    background-color: #333;
    color: #fff;
    /* border: none; */
}
.btn.black:hover {
    background-color: #f39800;
    color: #fff;
    border: #f39800 solid 1px;
}
.btn.white:hover {
    background-color: #f39800;
    color: #fff;
    border: #f39800 solid 2px;
}
.btn.black:hover .bar::before {
  background: #f39800;
}
/*---------------------------------
| inner : section,header等の共通inner
---------------------------------*/
.inner {
    position: relative;
    max-width: 1100px;
    padding: 75px 0;
    margin: 0 auto;
    z-index: 2;
}
/*
| flex section
-----------------*/
.inner.flex {
    display: flex;
    justify-content: flex-start;
}
.inner.flex .title {
    width: 200px;
}
.inner.trim {
    padding-top: 0;
    padding-bottom: 0;
}
.inner.trim-top {
    padding-top: 0;
}
.inner.trim-bottom {
    padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
    .inner.flex {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .inner.flex .title {
        width: auto;
    }
    .inner{
        width: 96%;
        margin:0 auto;
        padding: 35px 0;
    }
}
/*---------------------------------
| oval : セクションの縁を円弧型にする
|  - oval-top : 上部を円弧にする
|  - oval-bottom : 下部を円弧にする
|
|  [use example]
|     <section>
|        <div class="oval oval-top"></div>
|     </section
---------------------------------*/
.oval {
    position: absolute;
    left: 50%;
    width: 130vw;
    height: 100px;
    background: #transparent;
    overflow: hidden;
    transform: translateX(-50%);
    z-index: 1;
}
.oval::before {
    content: "";
    display: block;
    width: 100%;
    height: 500px;
    background: #fff;
    border-radius: 50%;
}
.oval.oval-top {
    top: -100px;
}
.oval.oval-bottom {
    bottom: -100px;
    transform: translateX(-50%) rotateZ(180deg);
}
@media screen and (max-width:1024px) {
    .oval::before {
        height: 300px;
    }
}
/*---------------------------------
| section
---------------------------------*/
section {
    position: relative;
}
/*
| last section
-----------------*/
section.lastsec {
    margin-bottom: 45px;
}
/*
| section theme
-----------------*/
section.black {
    background-color: #333333;
}
section.gray {
    background-color: #f2f2f2;
}
section.blue {
    background-color: #eef6fa;
}
section.cyan {
    background-color: #46add9;
}
/*---------------------------------
| section title
---------------------------------*/
section .title {
    margin-bottom: 20px;
    color: #333;
    text-align: left;
    line-height: 1;
}
section .title .heading {
    font-size: 3.8rem;
    font-family: 'ivypresto-headline';
    font-weight: 600;
}
section .title .heading > span {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
}
section .title p {
    display: block;
    margin-top: 20px;
    font-size: 1.8rem;
    line-height: 1.7;
    text-align: center;
}
section .title .btn {
    margin: 20px auto 0;
}
@media screen and (max-width: 1024px) {
    section .title {
        text-align: center;
    }
    section .title .heading {
        font-size: 2.1rem;
    }
    section .title .heading > span {
        font-size: 1.2rem;
    }
}
/*
| title theme
-----------------*/
section .title.title-white .heading {
    letter-spacing: 10px;
}
section .title.title-white .heading > span {
    letter-spacing: normal;
}
section .title.title-white .heading,
section .title.title-white .heading > span,
section .title.title-white p {
    color: #fff;
}
/*---------------------------------
| under_mv : 下層ページMV
---------------------------------*/
.under_mv {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: flex-start;
    margin-top: 90px;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.under_mv_bg {
    position: absolute;
    width: 1100px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 0;
}
.under_mv_bg1 {
    position: absolute;
    top: 0;
    left: -200px;
}
.under_mv_bg2 {
    position: absolute;
    top: 0;
    right: -200px;
}
.under_mv h2 {
    position: relative;
    width: 1100px;
    margin: 0 auto;
    letter-spacing: 5px;
    font-family: 'ivypresto-headline';
    font-weight: 600;
    font-size: 6.0rem;
    line-height: 1;
    color: #333;
    z-index: 1;
}
.under_mv h2:first-letter {
    color: #f39800;
}
.under_mv span {
    display: inline-block;
    margin-top: 4px;
    letter-spacing: normal;
    font-size: 1.8rem;
}
@media screen and (max-width:1024px) {
    .under_mv {
        margin-top: 45px;
        height: 200px;
        overflow: hidden;
    }
    .under_mv_bg {
        width: 100%;
        top: 50%;
    }
    .under_mv h2 {
        padding-left: 20px;
        font-size: 4.2rem;
    }
    .under_mv span {
        display: block;
        font-size: 1.4rem;
    }
    .under_mv_bg1 {
        transform: translateY(-50%);
        left: 0;
        width: 50%;
    }
    .under_mv_bg2 {
        transform: translateY(-50%);
        right: 0;
        width: 30%;
    }

}
/*---------------------------------
| arrow : セクションに下向き矢印を付与する
|  [use example]
|     <section class="arrow">
|     </section
---------------------------------*/
.arrow {
    position: relative;
    margin-bottom: 0;
}
.arrow::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 50%;
    margin-left: -50px;
    border: 50px solid transparent;
    border-top: 50px solid #fff;
    z-index: 2;
}
/*
| arrow theme
-----------------*/
.arrow.blue::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 50%;
    margin-left: -50px;
    border: 50px solid transparent;
    border-top: 50px solid #eef6fa;
    z-index: 2;
}
.arrow.cyan::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 50%;
    margin-left: -50px;
    border: 50px solid transparent;
    border-top: 50px solid #46add9;
    z-index: 2;
}
/*---------------------------------
| case : 事例リスト用共通部品
|        (サイト固有の汎用部品)
---------------------------------*/
.case_study .case {
    position: relative;
    margin-top: 50px;
}
.case_study .case h4 {
    max-width: 100%;
    padding: 10px 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: #1978c1; /* Old browsers */
    background: -moz-linear-gradient(left,  #1978c1 0%, #70dff0 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #1978c1 0%,#70dff0 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #1978c1 0%,#70dff0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1978c1', endColorstr='#70dff0',GradientType=1 ); /* IE6-9 */
    box-shadow: 6px 6px 0px 0px #2a2d72 ;
    margin-bottom: 40px;
}
.case_study .case h4::before {
    content: '';
    position: relative;
    top: -8px;
    display: inline-block;
    width: 30px;
    height: 1px;
    margin-right: 4px;
    background-color: #fff;
}
.case_study .case ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.case_study .case.others ul {
    margin-bottom: 0;
}
.case_study .case ul li {
    width: calc((1100px / 3) - 20px);
    margin-right: 20px;
    margin-bottom: 20px;
}
.case_study .case ul li h5 {
    position: relative;
    padding: 30px 20px;
    font-size: 1.8rem;
    background-color: #fff;
    border-bottom: #46add9 solid 5px;
}
@media screen and (max-width:1024px) {
    .case_study .case ul {
        margin-bottom: 0;
    }
    .case_study .case ul li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .case_study .case ul li img {
        width: 100%;
    }
}
/*---------------------------------
| header
---------------------------------*/
header {
    position: fixed;
    width: 100%;
    height: 90px;
    display: flex;
    z-index: 9999;
    justify-content: space-between;
    padding: 5px;
    transition: all 0.8s;
    background-color: #000;
}
header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
}
header .logo a {
    position: relative;
    display: block;
    padding-right: 10px;
}
header .logo img {
    height: 50px;
}
header .logo .info {
    padding: 10px;
}
header .logo .info .info_title {
    font-size: 1.2rem;
    font-weight: 700;
}
header .logo .info .info_text {
    font-size: 1.2rem;
}
@media screen and (max-width:1024px) {
    header.sp {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        height: 45px;
        padding: 10px;
    }
    header .logo {
        width: 100px;
        height: 100%;
        margin: 0 auto;
    }
    header .logo a {
        justify-content: center;
        align-items: center;
        width: auto;
        margin: 0;
    }
    header .logo a::after {
        height: 36px;
    }
    header .logo a svg {
        margin-left: 0;
    }
    header .logo a img {
        width: 130px;
        height: auto;
        margin-left: 0;
    }
    header .logo .info .info_title {
        font-size: 1.0rem;
        font-weight: 700;
    }
    header .logo .info .info_text {
        font-size: 1.0rem;
        transform: scale(0.8);
        transform-origin: left;
    }
    nav .drawer-menu .info {
        padding: 0;
        padding-left: 10;
        color: #000;
    }
    nav .drawer-menu .info .info_title {
        font-weight: 700;
        color: #000;
    }
    nav .drawer-menu .info .info_text {
        padding: 0;
        transform: none;
    }
    /*
    | hamburger
    -----------------*/
    header.sp button.drawer-hamburger {
        left: unset;
        right: 0;
        width: 45px;
        height: 45px;
        background-color: #000;
    }
    header.sp .drawer-hamburger-icon,
    header.sp .drawer-hamburger-icon:after,
    header.sp .drawer-hamburger-icon:before {
        width: 20px;
        height: 1px;
    }
    header.sp .drawer-hamburger-icon:after {
        top: 5px;
    }
    header.sp .drawer-hamburger-icon:before {
        top: -5px;
    }
    .drawer-open header.sp .drawer-hamburger-icon:before,
    .drawer-open header.sp .drawer-hamburger-icon:after {
        top: -3px;
        left: -2px;
    }
    header.sp .drawer-hamburger span.menu {
        position: relative;
        display: block;
        bottom: -8px;
        font-family: 'ivypresto-headline';
        font-weight: 600;
        font-size: 1.0rem;
        line-height: 1;
        color: #fff;
        transform: scale(0.7);
    }
    /*
    | drawer
    -----------------*/
    .drawer--right header .drawer-nav {
        right: -60rem;
    }
    header nav.drawer-nav {
        background-color: #fff;
        background: #fff;
    }
    /*
    | header mail
    -----------------*/
    header .header_mail {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70px;
        height: 70px;
        background-color: #46add9;
    }
    header .header_mail img {
        width: 45px;
    }
}
/*---------------------------------
| nav
---------------------------------*/
nav {
    display: flex;
    justify-content: flex-end;
}
nav > ul {
    display: flex;
    align-items: center;
    padding: 20px;
}
nav > ul li {
    position: relative;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
nav > ul li a {
    font-weight: 700;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 0 24px;
    vertical-align: center;
    transition: all 0.2s;
}
nav > ul li a .title {
    position: relative;
    font-family: 'ivypresto-headline';
    font-weight: 600;
    color: #fff;
}
nav > ul li a .sub {
    display: block;
    font-size: 1.0rem;
    color: #c4c4c4;
}
nav > ul li > a::after {
    content: '';
    position: absolute;
    left: 10px;
    display: inline-block;
    width: 1px;
    height: 33px;
    background-color: #fff;
    transform: rotate(20deg);
}
nav > ul li a:hover {
    transform: scale(1.1);
}
/*---------------------------------
| nav child
---------------------------------*/
nav .nav_child {
    /* display: none; */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    height: 0;
    color: #fff;
    background-color: #2a2d72;
    overflow: hidden;
    transition: 0.3s all;
}
nav .nav_child_inner {
    display: flex;
    justify-content: center;
    padding: 30px;
    padding-right: 0;
    align-items: center;
    height: 200px;
}
nav .nav_child_inner a p {
    display: block;
    padding-bottom: 20px;
    margin-left: 20px;
    width: 300px;
    border-bottom: 1px #fff solid;
}
nav .nav_child_inner a p::after {
    content: "";
    position: absolute;
    top: 45%;
    right: 30px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);

}
#case_study:hover,
#method:hover {
    background-color: #2a2d72;
}
#case_study:hover > span,
#method:hover > span {
    color: #fff;
}
#case_study:hover > span::after,
#method:hover > span::after {
    content: none;
}
#case_study:hover .nav_child,
#method:hover .nav_child {
    height:200px;
}
#case_study:hover .nav_child p,
#method:hover .nav_child p {
    color: #fff;
}
/*---------------------------------
| nav 請求書
---------------------------------*/
nav .nav_invoice img {
    width: 30px;
}
nav .nav_invoice {
    padding: 0 24px;
    color: #fff;
    background-color: #46add9;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
nav .nav_invoice img {
    display: block;
    margin: 0 auto 8px;
}
/*---------------------------------
| nav 電話番号
---------------------------------*/
nav .nav_tel img {
    width: 30px;
}
nav .nav_tel {
    padding: 0 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav .nav_tel .number {
    display: block;
    font-size: 3.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav .nav_tel .time {
    display: block;
    font-size: 1.3rem;
}
@media screen and (max-width:1024px) {
    nav .drawer-menu {
        width: 100%;
        background-color: #000;
    }
    nav .drawer-menu h2 {
        padding: 0;
        margin-bottom: 10px;
        background-color: #000;
        height: 60px;
    }
    nav .drawer-menu h2 img {
        margin: 0 auto;
        display: block;
    }
    nav .drawer-menu ul li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #fff;
    }
    nav .drawer-menu ul li a .title {
        font-family: 'ivypresto-headline';
        font-weight: 600;
        font-size: 1.8rem;
        font-weight: 700;
    }
    nav .drawer-menu ul li a .sub {
        display: inline-block;
        text-align: right;
        color: #c4c4c4;
    }
    header .header_sitemap {
        flex-direction: column;
        justify-content: space-around;
        border-top: none;
        margin: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    header .header_sitemap .link::after {
        content: "";
        position: absolute;
        top:42%;
        right: 20px;
        width: 12px;
        height: 12px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    header .header_sitemap .link {
        position: relative;
        display: block;
        width: 100%;
        margin-bottom: -1px;
        font-weight: 400;
        line-height: 1;
        padding: 20px;
        border-top: solid 1px #fff;
        border-bottom: solid 1px #fff;
    }
    header .header_sitemap li {
        width: 90%;
        border-bottom: solid 1px #c4c4c4;
        margin: 0 auto;
    }
    header .header_sitemap li a {
        display: block;
        width: 100%;
        padding: 15px 15px 8px;
    }
    header .header_sitemap .sublink {
        font-size: 1.6rem;
        color: #fff;
        display: block;
        width: 100%;
        padding-top: 0;
        padding-left: 30px;
        line-height: 1;
    }
    header .header_sitemap li:not(:last-of-type) .sublink {
        margin-bottom: 10px;
    }
    .header_method::after,
    .header_case::after {
        transition: 0.3s all;
    }
    header .header_method.is-active::after,
    header .header_case.is-active::after {
        transform: rotate(135deg);
    }
    .header_method_sub,
    .header_case_sub {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 0;
        overflow: hidden;
        transition: 0.3s all;
    }
    .header_method_sub.is-active,
    .header_case_sub.is-active {
        height: 80px;
    }
}
/*
about
---------------------------------*/
#banner {
    background-color: #000;
    padding: 30px 0;
}
.about {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.about_info,
.about_banner {
    width: calc(1200px / 2);
}
.about_info {
    padding-right: 30px;
}
.about_title {
    margin-bottom: 20px;
}
.banner_list {
    margin-top: 40px;
    max-width: 500px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.banner_item {
    margin-bottom: 20px;
}
.banner_item:nth-of-type(n+2) {
    width: 48%;
}
@media screen and (max-width: 1024px) {
    .about_info {
        padding-right: 0;
    }
    .banner_item:not(:first-of-type) {
        width: calc(50% - 5px);
    }
}
/*---------------------------------
| footer
---------------------------------*/
footer {
    position: relative;
    background:url('../img/common/footer_bg.png');
    background-repeat:no-repeat;
    background-size: contain;
    background-position: bottom right;
    background-color: #2D2D2D;
}
footer .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    width: 1200px;
    padding-top: 20px;
    margin: 0 auto;
}
@media screen and (max-width:1024px) {
    footer .inner {
        width: 100%;
        margin: 0 auto;
        padding-top: 20px;
        padding-bottom: 80px;
    }
}
/*---------------------------------
| footer_info
---------------------------------*/
footer .footer_info {
    color: #fff;
}
footer .footer_info .name {
    font-size: 1.6rem;
}
footer .footer_info .catch {
    font-size: 1.0rem;
}
footer .footer_info img,
footer .footer_info svg {
    /* logo size */
    width: 190px;
    margin-top: 10px;
    margin-bottom: 20px;
}
footer .sns_list {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
}
footer .sns_list li {
    margin-right: 15px;
}
footer .sns_list iframe {
    max-width: unset;
    width: 80px;
    height: 30px;
}
@media screen and (max-width:1024px) {
    footer .footer_info {
        margin: 0 auto;
        text-align: center;
    }
    footer .footer_info img, footer .footer_info svg {
        width: 100px;
        margin-bottom: 10px;
    }
    footer .sns_list {
        width: 100%;
        padding: 0 10px;
        justify-content: center;
    }
}
/*---------------------------------
| footer sitemap
---------------------------------*/
.footer_sitemap > ul {
    display: flex;
    align-items: center;
    padding: 20px;
}
.footer_sitemap > ul li {
    position: relative;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.footer_sitemap > ul li a {
    font-weight: 700;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 0 24px;
    vertical-align: center;
    transition: all 0.2s;
}
.footer_sitemap > ul li a .title {
    position: relative;
    font-family: 'ivypresto-headline';
    font-weight: 600;
    color: #fff;
}
.footer_sitemap > ul li a .sub {
    display: block;
    font-size: 1.0rem;
    color: #c4c4c4;
}
.footer_sitemap > ul li > a::after {
    content: '';
    position: absolute;
    left: 10px;
    display: inline-block;
    width: 1px;
    height: 33px;
    background-color: #fff;
    transform: rotate(20deg);
}
.footer_sitemap > ul li a:hover {
    transform: scale(1.1);
}
.footer_sitemap .btn {
    width: 90%;
    padding: 30px 0;
    margin: 20px 0 20px 20px;
}
.footer_sitemap .btn img {
    margin-right: 10px;
}
.footer_sitemap .tel {
    display: block;
    color: #fff;
    font-family: 'ivypresto-headline';
    font-weight: 600;
    font-size: 1.8rem;
    text-align: center;
}
.footer_sitemap .tel strong {
    font-family: 'ivypresto-headline';
    font-weight: 600;
    font-size: 2.4rem;
    margin: 0 20px 0 10px;
}
.footer_sitemap .tel small {
    font-family: 'heisei-kaku-gothic-std';
    font-size: 1.2rem;
}
@media screen and (max-width:1024px) {
    footer .footer_sitemap {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    footer .footer_sitemap ul {
        flex-direction: column;
        justify-content: space-around;
        border-top: none;
        margin: 0;
        padding: 0;
    }
    footer .footer_sitemap ul li:not(:last-of-type) {
        border-right: none;
    }
    footer .footer_sitemap ul a::after {
        content: "";
        position: absolute;
        top:42%;
        left: unset;
        right: 20px;
        display: block;
        width: 12px;
        height: 12px;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        background-color: transparent;
    }
    footer .footer_sitemap ul a {
        position: relative;
        display: block;
        width: 100%;
        margin-bottom: -1px;
        font-weight: 400;
        line-height: 1;
        padding: 20px;
        border-top: solid 1px #ccc;
        border-bottom: solid 1px #ccc;
    }
    .footer_sitemap > ul li a .sub {
        display: inline-block;
        margin-left: 10px;
        font-size: 1.2rem;
    }
    footer .footer_sitemap ul li {
        width: 100%;
        height: fit-content;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        padding: 0;
    }
    footer .address {
        margin: 40px auto;
    }
    footer .footer_sitemap a.access {
        margin: 20px auto;
    }
    footer .footer_sitemap .btn {
        padding: 20px 0;
        margin-bottom: 40px;
        border-width: 1px;
    }
    .footer_sitemap .tel {
        font-size: 1.4rem;
        line-height: 1.7;
    }
    .footer_sitemap .tel strong {
        font-size: 2.0rem;
        margin-right: 0;
    }
}
/*---------------------------------
| footer_copyright
---------------------------------*/
footer .footer_copyright {
    max-width: 1100px;
    line-height: 1;
    text-align: left;
    color: #fff;
    padding: 6px 0;
    margin: 0 auto;
    font-family: 'ivypresto-headline';
    font-weight: 600;
    font-size: 1rem;
}
@media screen and (max-width:1024px) {
    footer .footer_copyright {
        padding-bottom: 25px;
        text-align: center;
    }
}
/*---------------------------------
| button pagetop
---------------------------------*/
footer .pagetop {
    position: fixed;
    bottom: 0;
    right: 0;
    display: block;
    width: 80px;
    height: 80px;
    background-color: #333333;
    z-index: 9998;
}
footer .pagetop::after {
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 0px;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 20px;
    height: 20px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/*
スマホ用固定メニュー
---------------------------------*/
.fixd_menu{
    width: 100%;
    height: 56px;
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 9999;
    text-align: center;
}
.fixd_menu ul{
    display: -webkit-flex;
    display: flex;
    -moz-box-orient: horizontal;
    -webkit-box-orient: horizontal;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -moz-box-pack: justify;
    -ms-box-pack: justify;
    box-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    background-color: transparent;
    padding: 0;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    border-top: 0;
}
.fixd_menu ul li{
    width: 34%;
    text-align: center;
    color: #fff;
    background-color: #1c8acc;
}
.fixd_menu ul li:nth-child(2){
    background-color: #004067;
}
.fixd_menu ul li{
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}
.fixd_menu ul li a{
    position: relative;
    display:block;
    justify-content: center;
    align-items: center;
    padding: 8% 0 3%;
}
.fixd_menu ul li p{
    color: #fff;
    font-weight: bold;
    font-size:1.2rem;
    line-height: 1;
}
.fixd_menu ul li svg {
    width: 18%;
}
.fixd_menu ul li img{
    width: 20%;
    margin-right: 0;
    margin-bottom: 4%;
}
@media screen and (max-width:375px) {
    .fixd_menu ul li a{
        padding: 8% 0 3%;
    }
}
/*---------------------------------
page top
---------------------------------*/
footer .scroll {
    display: inline-block;
    position: absolute;
    right: 40px;
    bottom: 0;
    z-index: 999;
    padding: 110px 10px 10px;
    overflow: hidden;
    font-family: 'ivypresto-headline';
    font-weight: 600;
    color: #fff;
    line-height: 1;
    text-decoration: none;
    writing-mode: vertical-lr;
}
footer .scroll::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background: #fff;
}
footer .scroll::before {
    animation: pt 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@media print,screen and (max-width: 1024px) {
    footer .scroll {
        right: 20px;
        bottom: 20px;
        padding: 60px 10px 10px;
        font-size: 1.1rem;
    }
    footer .scroll::before {
        height: 50px;
    }
}
@keyframes pt {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
    50% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
}
/*---------------------------------
パンくずリスト
---------------------------------*/
.bread_wrap{
    position: absolute;
    width: 1100px;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: right;
}
.bread_wrap a,.bread_wrap a:visited{
    display:inline;
}
.bread_wrap ol{
    font-family: 'ivypresto-headline';
    font-weight: 600;
    font-size: 1.4rem;
    max-width: 1200px;
    margin: 0 auto;
}
.bread_wrap ol li:first-child{
    padding-left: 20px;
    margin-left: 10px;
    list-style: none;
}
.bread_wrap ol li{
    display: inline-block;
}
.bread_wrap ol li:after{
    content: " - ";
    color: #333;
}
.bread_wrap ol li:last-child:after{
    content:"";
}
.bread_wrap ol li span{
    font-size: 1.4rem;
    color: #333;
}
@media print,screen and (max-width: 1024px) {
    .bread_wrap {
        width: 100%;
        padding: 10px;
    }
    .bread_wrap ol li span{
        display: inline-block;
        font-size: 1.2rem;
    }
}
