@charset "UTF-8";


/*フォント設定*/
html {
/*    font-size: 16px;*/
    font-size: calc((100vw - 320px) / 140 + 16px);
  }
body{
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 1rem;
}
@media screen and (min-width: 320px) {
	html {
/*		font-size: calc(16px + 4 * ((100vw - 320px) / 670));*/
	}
}
@media screen and (min-width: 990px) {
  html {
/*    font-size: 1.25rem;*/
  }
}
@media screen and (min-width: 991px) {
	html {
/*		font-size: calc(20px + 4 * ((100vw - 990px) / 450));*/
	}
}

@media screen and (min-width: 1440px) {
  html {
/*    font-size: 1.5rem;*/
  }
}

/*google fonts 設定*/
body{
    font-family: 'Noto Sans JP', sans-serif;
    /*font-family: 'BIZ UDPGothic', sans-serif;*/
    /*font-family: 'M PLUS 1p', sans-serif;*/
}

/*リセット記述用（仮）*/
body * {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

dl,
dt,
dd {
    list-style: none;
    margin: 0;
    padding: 0;
}


/*（仮）ロゴ位置設定（上辺3%,左辺3%）ロゴサイズ決定後はロゴ縦幅の1/2を基本余白とする*/
/*h1 {
    text-align: left;
    margin:0;
    padding: 3% 0 0 3%;
}*/

/*ロゴ幅設定（ウィンドウサイズの1/3）*/
/*h1 img {
    width: calc(100vw / 3 );
}*/

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

.text-left {
    text-align: left;
}

/*背景設定*/
.bg-gray {
    background-color: #f5f5f5;
}


.bg-content-fv {
    /*background-color: #e7ebee;*/
    background-color: #FFF;
}

.bg-content01 {
    /*background-color: #e7ebee;*/
    background-color: #5A5851;
    box-sizing: border-box;
    padding: 50px 30px 0;
}

.bg-content02 {
    /*background-color: #e7ebee;*/
    background-color: #F0F0F0;
    box-sizing: border-box;
    padding: 110px 30px 70px;
}

/* menu */
.menu{
    height: 20px;
    position: absolute;
    right: 20px;
    top: 25px;
    width: 30px;
    z-index: 99;
    /*background-color: #EEE;*/
}
.menu__line{
    background: #999;
    display: block;
    height: 3px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
}
.menu__line--center{
    top: 9px;
}
.menu__line--bottom{
    bottom: 0;
}
/* jQueryアニメーション用 */
.menu__line--top.active{
    top: 8px;
    transform: rotate(45deg);
}
.menu__line--center.active{
    transform:scaleX(0);
}
.menu__line--bottom.active{
    bottom: 10px;
    transform: rotate(135deg);
}


.nav-box {
/*    margin-top: 69px;*/
    padding-top: 69px;
    display: none;
    width: 100%;
    height: 100vh;
    z-index: 98;
    position: fixed;
    top: 0;
    background: rgba(0,0,0,0.90);
    /*overflow-y: scroll;*/
    overflow: hidden;
}

.nav-box {
    /*background: linear-gradient(270deg, #000000, #2d50b1);*/
    /*background: linear-gradient(rgba(0,0,0,1),rgba(45,80,177,1));*/
    /*background: linear-gradient(270deg, rgba(0,0,0,0.95),rgba(30,62,149,0.95));*/
    background: linear-gradient(270deg, rgba(255,255,255,0.98),rgba(220,220,220,0.95));
    background-size: 400% 400%;

    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.nav-box__wrap {
    padding-top: 40px;
    display: flex;
    /*justify-content: space-around;*/
    justify-content: center;
    align-items:flex-start;
    /*align-items:center;*/
    width: 100%;
    height: 100vh;
    position: absolute;
}

.nav-box__menu__item_left {
    margin: 0 0 20px;
    padding: 15px 15px;
    width: 40%;
    max-width: 700px;
    background-color: #FFF;
}

.nav-box__menu {
    margin: 0 50px 20px;
    padding: 0px 0px;
    /*width: 45%;*/
    max-width: 700px;
}

.nav-box__menu__item_left h4 {
    margin: 0 0 20px;
    padding: 0px 0px;
}

.nav-box__menu__item_left h4 img {
    margin: 0;
    padding: 0px 0;
    width: 300px;
}

.nav-box__menu__item_left iframe {
    box-shadow: 3px 3px 4px #CCC;
}

.nav-box__menu__item {
    margin: 10px 0 10px;
    padding: 0px;
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    /*color: #fff;*/
    color: #000;
    text-decoration: none;
    transition: .5s;
}

.nav-box__menu__item h4 {
    margin: 0 0 20px;
    padding: 0px 0px;
}

.nav-box__menu__item h4 img {
    margin: 0;
    padding: 0px 0;
    width: 300px;
}

.nav-box-txt {
    margin: 5px 0 0px 0px;
    padding: 0px 0px 5px 0;
    /*border-bottom: 1px solid #000;*/
    font-size: 0.86rem;
    font-weight: normal;
}

.nav-box-txt::before {
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    content: '\f101';
    margin: 5px 10px 10px 0px;
    padding: 0px 0px 5px 0;
    color: #F1C253;
    text-align: right;
    font-size: 0.86rem;
    font-weight: bold;
}

.nav-box-txt a {
    color: #000;
    text-decoration: none;
}

.nav-box-txt a:hover {
    color: #444;
    /*text-decoration: underline;*/
}

/*aに実装class*/
/*
.nav-box__menu__item a {
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: .5s;
}
.nav-box__menu__item a:hover {
    color: #666;
}
*/

/*メイン（背景）ビジュアル｜ティザーフルスクリーン用の仮設定*/
.mv-wrap {
/*    height: 100vh;*/
/*    background:url(../img/bg-02.png) no-repeat;
    background-position: 50% 50%;
    background-size: cover;*/
    overflow: hidden;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-flow: column;
/*    border-bottom: 6px solid #ff3939;*/
}

/*ヘッダー｜固定｜キャラクター等のレイヤー重ね順基準値z-index: */
#fixed-header {
	width: 100%;
    height: 70px;
    position: fixed;
    top: -70px;
    transition: .3s;
    z-index: 999;
    background-color: rgba(255,255,255,0.95);
    border-bottom: 1px solid #DDD;
    display: flex;
    justify-content: space-between;

}
#fixed-header.is-show {
    top: 0;
}

.head-wrap {
	width: 100%;
    height: 70px;
/*    position: fixed;*/
    z-index: 999;
    /*align-items: flex-start;
    display: flex;*/
/*    background-color: #FFF;*/
    background-color: rgba(255,255,255,0);
    display: flex;
/*    justify-content: center;*/
    justify-content: space-between;

}

.head-wrap h1 {
    margin: 0;
    padding: 0 20px;
    height: 70px;
    line-height: 70px;
    display: flex;
    align-items: center;
}
.head-wrap h1 img {
    height: 45px;
}

:root {
	--primary-width:100vw;/*MV基準値（％）*/
/*	--primary-width:100%;*/
}

/*キャラクタービジュアル｜キャラクター等のレイヤー重ね順基準値z-index: 88*/
.chr-v-wrap {
    margin: 0px;
    margin-top: -70px;
    padding: 0;
    background-image: url(../img/mv_pc01.png);
    background-size: cover;
    background-position: center;
    width:  var(--primary-width);
    height: calc(var(--primary-width) * 0.438);
    /*max-width: ;*/
    /*height: calc(100vh - 50px);*/

    /*position: relative;*/
    /*位置調整用仮設定計算式*/
    /*width: 75%;*/
    /*width: calc(100vw * 0.50 );*/
    /*height: calc(100vh * 0.95 );*/
    /*position: absolute;*/
    /*位置調整用仮設定計算式*/
    /*bottom: 0;
    right: 10vw;*/
    /*top: 0;*/
    z-index: 88;
    /*align-items: flex-start;
    display: flex;*/
}



.chr-v-wrap img {
    margin: 0;
    padding: 0;
    width: 100%;
    object-fit: cover;
/*    max-width: 48vw;
    line-height: 1.0;
    vertical-align: bottom;*/
}

.chr-v-wrap .mv-info {
    position: absolute;
    bottom: 1vw;
    right: 1vw;
    margin: 0;
    padding: 10px 5px;
    width: 50%;
    height: auto;
    display: flex;
    flex-basis: auto;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
/*    border: 1px solid #F00;*/
    background-color: rgba(255,255,255,0.90);
/*    max-width: 48vw;
    line-height: 1.0;
    vertical-align: bottom;*/
}

.chr-v-wrap .mv-info img {
    vertical-align: bottom;
}

.chr-v-wrap .mv-info-banner01 {
    margin: 0;
    padding: 0 5px;
    width: 40%;
    flex-grow: 1;
}

.chr-v-wrap .mv-info-banner01 a {
    margin: 0;
    padding: 0;
    display: inline-block;
}



/*見出し設定*/
#case h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px auto 30px;
    width: 96%;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #222222;
}


#case h2 .gradation {
    flex-grow: 1;
}

#case h2 .midashi_h2_01 {
    display: block;
    margin: 0px 10px;
}

#case h3 {
    margin: 30px auto 0px;
    padding: 15px;
    width: 96%;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: #555555;
    background-color: #EBEBEB;
}

#document h2 {
    margin: 5px auto 30px;
    width: 96%;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #222222;
}

#document h2 {
    display: flex;
    align-items: center;
}
 
#document h2:before,
#document h2:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #868686;
}
 
#document h2:before {
    margin-right: 1rem;
}
 
#document h2:after {
    margin-left: 1rem;
}

#blog h2 {
    margin: 5px auto 30px;
    width: 96%;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #222222;
}

#blog h2 {
    display: flex;
    align-items: center;
}
 
#blog h2:before,
#blog h2:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #868686;
}
 
#blog h2:before {
    margin-right: 1rem;
}
 
#blog h2:after {
    margin-left: 1rem;
}

/*サブコンテンツ*/
.content-wrap01 {
/*    background-color: #EFEFEF;*/
    background-position: 50% 50%;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.content-wrap02 {
    background-color: #EFE;
    background-position: 50% 50%;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.content-wrap03 {
    background-color: #FFF;
    background-position: 50% 50%;
    background-size: cover;
    overflow: hidden;
    position: relative;
}


.jirei-wrap {
    margin: 0 auto 0;
/*    background-color: #FFF;*/
/*    background-image: url(../img/bg-jirei-01.png),url(../img/bg-jirei-02.png);*/
    background-repeat: no-repeat, no-repeat;
    background-size: 200px, 200px;
    background-position: left top, right bottom;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.jirei-wrap h4 {
    margin: 15px auto 15px;
    padding: 0 40px;
    width: 96%;
    max-width: 1440px;
    font-size: 0.86rem;
    font-weight: normal;
    text-align: left;
}

#company .jirei-inner {
    margin: 0px 10px;
    padding: 0;
    width: 45%;
    max-width: 700px;
    background-color: #FAFAFA;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}


#case .jirei-read {
    text-align: center;
    /*border-bottom: 2px solid #CCC;
    border-top: 2px solid #CCC;*/
    margin:20px auto 60px;
    font-size: 1.1rem;
/*    font-weight: bold;*/
}

#case .jirei-read p {
    padding: 0;
    margin: 0 auto;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 2.4rem;
    color: #FFF;
}

#case .jirei-read p.main-txt {
    width: 96%;
    font-size: 1.6rem;
    line-height: 3.0rem;
}

#case .jirei-read strong {
    color: #000;
    /*font-size: 1.2rem;*/
}

#company .jirei-box-title {
    margin: 0 auto 0;
    padding: 20px 40px 20px;
    width: 96%;
    display: flex;
/*    justify-content: center;*/
    align-items: center;
/*    background-color: inherit;*/
    background-color: #FAFAFA;
/*    border-top: 1px solid #8f8f8f;
    border-bottom: 1px solid #8f8f8f;*/
}

#company .jirei-inner h4 {
    margin: 0;
    padding: 0 20px;
    font-size:1.0rem;
    font-weight: normal;
    /*font-size:min(3.6vw,1.2em);*/
    color: #2f1f37;
}

#company .jirei-inner h4 span {
    color: #F05656;
}

#company .jirei-box {
    margin: 0px auto;
    padding: 0 40px;
    width: 96%;
    display: flex;
/*    background-color: inherit;*/
    background-color: #FAFAFA;
    /*border: 1px solid #EEE;
    box-shadow: 2px 2px 4px #DDD;*/
}

#company .jirei-box-txt {
    margin:0 auto;
    padding: 0 30px 0 0;
    width: 100%;
    line-height: 1.7;
    font-size: 0.7rem;
}

#company .jirei-button a {
    display: inline-block;
    margin:0 auto;
    padding: 20px 20px;
    width: 80%;
    background-color: #666;
    color: #FFF;
    line-height: 1.0;
    text-decoration: none;
}

#company .jirei-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    color: #333333;
    font-size: 18px;
    border-radius: 0px;
/*    width: 200px;
    height: 40px;*/
    font-weight: bold;
    border: 2px solid #333333;
    transition: 0.3s;
    box-shadow: 5px 5px 0px 0px rgba(51, 51, 51, 1);
    background-color: #FAFFAD;
  }
  
#company .jirei-button a:hover {
    box-shadow: 0 0 #333;
    color: #333;
    background-color: #F7FF7E;
  }



  #company .jirei-button-big a {
    display: inline-block;
    margin:0 auto;
    padding: 20px 20px;
    width: 80%;
    background-color: #CCC;
    color: #FFF;
    line-height: 1.0;
    text-decoration: none;
}

#company .jirei-button-big a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    color: #333333;
    font-size: 1.1rem;
    border-radius: 0px;
/*    width: 200px;
    height: 40px;*/
    font-weight: bold;
    border: 2px solid #DDD;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 5px 5px 0px 0px rgba(220, 220, 220, 1);
    background-color: #FFFFFF;
  }
  
#company .jirei-button-big a:hover {
    box-shadow: 0 0 #888888;
    color: #fff;
    background-color: #EFEFEF;
/*    background-color: #fffde6;*/
  }

#company .jirei-button-big a span {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    color: #2779b1;
}

#company .jirei-button-big a span.sub-txt {
    padding: 15px 0 0;
    font-size: 0.8rem;
    font-weight: normal;
    color: #666;
}

#company .jirei-box-img {
    margin:0 auto;
    padding: 0;
    width: 65%;
}

#company .jirei-box-img img {
    width: 100%;
}


#company .jirei-box-img iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
}



.jirei-wrap02 {
    margin: 0 auto 0px;
    padding: 0 40px;
    width: 96%;
    max-width: 1440px;
    /*background-image: url(../img/bg-jirei-01.png),url(../img/bg-jirei-02.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 200px, 200px;
    background-position: left top, right bottom;*/
}

.jirei-wrap02  h4 {
    margin: 15px auto 15px;
    padding: 0 20px 0;
    width: 100%;
    font-size: 0.86rem;
    font-weight: normal;
    text-align: left;
}

#jirei .jirei-inner02 {
    margin: 0px auto 60px;
    padding: 0;
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
}

#company .jirei-inner03 {
    margin: 0px auto 60px;
    padding: 0;
    width: 100%;
    max-width: 1280px;
}

/*
#company .jirei-inner02 h4 {
    margin: 0 auto 0;
    padding: 0 20px 20px 0;
    width: 100%;
    font-size: 1.0rem;
    font-weight: normal;
    text-align: center;
}
*/

#company .jirei-inner02 p {
    /*width: 32%;
    display: flex;*/
}


#jirei .jirei-button-big02 {
    display: flex;
/*    flex: 1;*/
    width: 31%;
    margin-bottom: 50px;
}

#jirei .jirei-button-big02 dl {
    width: 100%;
    margin:0 10px 0;
    padding: 0;
/*    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;*/
    line-height: 1.4;
    text-decoration: none;
    color: #333333;
/*    border-radius: 0px;
    font-weight: bold;
    border: 1px solid #032234;
    transition: 0.3s;
    background-color: #032234;*/
  }

  #jirei .jirei-button-big02 dt {
    width: 100%;
    text-align: left;
    font-size: 0.82rem;
    font-weight: bold;
    color: #FFF;
    padding: 5px 0 5px 10px;
    border-left: 10px solid #F1C253;
}

#jirei .jirei-button-big02 dd.sub-txt {
    padding: 20px 0px 0 20px;
    font-size: 0.7rem;
    color: #FFF;
    text-align: left;
    font-weight: normal;
    min-height: 26%;
}



#company .jirei-button-big02 a:hover {
    transform: scale(1.05);
}

#company .jirei-button-big02 a span.sub-txt {
    padding: 10px 20px;
    font-size: 0.7rem;
    color: #FFF;
    text-align: left;
    font-weight: normal;
    min-height: 26%;
}

#company .jirei-button-big02 a span.button {
min-height: 2rem;
}


.jirei-wrap03 {
    margin: 0 auto 0px;
    background-color: #bde8ff;
}

#company .jirei-inner03 {
    margin: 0px auto 60px;
    padding: 0;
    width: 100%;
    max-width: 1280px;
}

#company .jirei-inner03 h4 {
    margin: 0 auto 0;
    padding: 5px 20px 5px 20px;
    width: 100%;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: left;
    color: #936B25;
    border-left: 10px solid #F1C253;
}

#company .jirei-inner03 p.main-txt {
    width: 96%;
    margin-bottom: 0;
    font-size: 1.0rem;
    font-weight: bold;
    line-height: 3.0rem;
}

#company .jirei-inner03 p {
    padding: 0;
    margin: 0 auto;
    margin-bottom: 20px;
    width: 96%;
    font-weight: normal;
    font-size: 0.7rem;
    line-height: 1.1rem;
    color: #333;
}

#company .jirei-inner03 table {
    border-collapse: collapse;
    margin: 40px auto 0;
    width: 96%;
    max-width: 1440px;
}

#company .jirei-inner03 table th {
    border-collapse: collapse;
    padding: 15px 10px;
    font-weight: normal;
    font-size: 0.7rem;
    color: #FFF;
    border: 1px solid #DCDCDC;
    background-color: #5A5851;
}

#company .jirei-inner03 table td {
    border-collapse: collapse;
    padding: 15px 15px;
    font-weight: normal;
    font-size: 0.7rem;
    color: #333;
    border: 1px solid #DCDCDC;
    background-color: #FFF;
}

#company .jirei-button-big03 a {
    display: inline-block;
    margin:0 auto;
    padding: 20px 20px;
    width: 96%;
    background-color: #666;
    color: #FFF;
    line-height: 1.4;
    text-decoration: none;
}

#company .jirei-button-big03 a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    text-decoration: none;
    color: #333333;
    font-size: 18px;
    border-radius: 0px;
/*    width: 200px;
    height: 40px;*/
    font-weight: bold;
    border: 2px solid #285077;
    transition: 0.3s;
    box-shadow: 5px 5px 0px 0px rgba(255, 255, 255, 1);
    background-color: #023260;
  }
  
#company .jirei-button-big03 a:hover {
    box-shadow: 0 0 #EEEEEE;
    color: #fff;
    background-color: #04294c;
  }

#company .jirei-button-big03 a span {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 22px;
    color: #ebffcf;
}

#company .jirei-button-big03 a span.sub-txt {
    padding: 15px 0 0;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    font-weight: normal;
}



#form .jirei-read {
    text-align: center;
    /*border-bottom: 2px solid #CCC;
    border-top: 2px solid #CCC;*/
    margin:20px auto 60px;
    font-size: 1.1rem;
/*    font-weight: bold;*/
}

#form .jirei-read p {
    padding: 0;
    margin: 0 auto;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 2.4rem;
    color: #FFF;
}

#form .jirei-read p.main-txt {
    width: 96%;
    font-size: 1.6rem;
    line-height: 3.0rem;
}

#form .jirei-read strong {
    color: #000;
    /*font-size: 1.2rem;*/
}


#form .jirei-button-big02 {
    display: flex;
/*    flex: 1;*/
    width: 31%;
    margin-bottom: 0px;
}


  #form .jirei-button-big02 a {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 0.82rem;
    font-weight: bold;
    color: #FFF;
    padding: 5px 0 5px 10px;
    border-left: 10px solid #F1C253;
}

#form .jirei-inner02 {
    margin: 0px auto 60px;
    padding: 0;
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
}

.form-wrap02 {
    margin: 0 auto 0px;
    padding: 0 40px;
    width: 96%;
    max-width: 1440px;
    /*background-image: url(../img/bg-jirei-01.png),url(../img/bg-jirei-02.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 200px, 200px;
    background-position: left top, right bottom;*/
}

#form .jirei-button-big02 a {
    width: 100%;
    margin:0 0px 0;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    text-decoration: none;
    color: #333333;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    transition: 0.3s;
    background-color: #A8C546;
    cursor: pointer;
  }
  
  #form .jirei-button-big02 a i {
    display: inline-block;
    padding: 0px 5px;
    line-height: 1.0;
    color: #FFF;
  }

    
  #form .jirei-button-big02 a span {
    display: inline-block;
    padding: 0px 5px;
    line-height: 1.0;
    color: #FFF;
  }

  #form .jirei-button-big02 a:hover {
    background-color: #A8C546;
  }

  #form .jirei-button-big02 a:hover {
    transform: scale(1.05);
}

#form .jirei-button-big03 a {
    width: 100%;
    margin:0 0 0;
    padding: 0;
    display: block;
    border: none;
    transition: 0.3s;
    cursor: pointer;
  }

  #form .jirei-button-big03 a img {
    width: 100%;
    margin:0;
    padding: 0px;
  }

.form-wrap {
    background-color: #FFF;
}

#form .form-inner {
    margin: 80px auto 10px;
    padding: 0;
    width: 90vw;
    max-width: 1440px;
}

#form .form-box {
    margin:0 auto;
    padding: 0 0 0 0;
    width: 100%;
    display: flex;
    align-items: stretch;
}

#form .form-box-title {
    display: flex;
    align-items: center;
}

#form .form-inner h3 {
    margin: 20px auto 0;
    padding: 0 0px 0 70px;
    height: 90px;
    line-height: 90px;
    font-size:1.2rem;
    /*font-size:min(3.6vw,1.2em);*/
    color: #111;
}

#form .form-box-img {
    width: 50%;
    border: 1px solid #DDD;
    display: flex;
}

#form .form-box-img a {
    margin: 0;
    padding: 0;
    display: block;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
}

#form .form-box-img a:hover {
    opacity: 0.9;
    transition: 0.3s;
    background-color: #FAFAFA;
}

#form .form-box-img p {
    margin: 0 0;
    padding: 0;
}

#form .form-box-img img {
    margin: 30px 0 -5px;
    padding: 0;
    width: 100%;
}

#form .form-box-txt p {
    margin:0 auto;
    padding: 15px 30px 0;
    width: 100%;
    line-height: 1.6;
    color: #333;
    font-size: 0.86rem;
}

/*
#form .form-box-txt p a {
    margin:0 auto;
    padding: 0px 10px 10px;
    width: 100%;
    display: inline-block;
    text-align: right;
    color: #EC6C6C;
    text-decoration: none;
}

#form .form-box-txt p a:hover {
    color: #EC6C6C;
    text-decoration: underline;
}
*/

#form .form-box-txt p.link-txt {
    margin:0 auto;
    padding: 20px 30px 10px;
    width: 100%;
    display: inline-block;
    text-align: right;
    color: #EC6C6C;
    text-decoration: none;
}

#form .form-box-txt p.link-txt:hover {
    color: #EC6C6C;
    text-decoration: underline;
}




.foot-wrap {
    background-color: #2C2C2C;
}

#foot .foot-inner {
    margin: 80px auto 10px;
    padding: 0;
    width: 90vw;
    max-width: 1440px;
}

#foot .foot-box {
    margin:0 auto;
    padding: 0 0 0 0;
    width: 100%;
}

#foot .foot-box-title {
    display: flex;
    align-items: center;
}

#foot .foot-inner h3 {
    margin: 20px auto 0;
    padding: 0 70px 0 70px;
    width: ;
    height: 90px;
    display: flex;
    justify-content: center;
    line-height: 90px;
    font-size:30px;
    /*font-size:min(3.6vw,1.2em);*/
    color: #FFF;
}

#foot .foot-box-txt {
    padding: 20px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#foot .foot-box-txt p {
    margin:0 auto;
    padding: 15px 30px 0;
    width: 100%;
    font-size: 00.86rem;
    line-height: 1.6;
    color: #FFF;
}

#foot .foot-box-txt-left {
    margin:0 auto;
    padding: 15px 30px 0;
    width: 100%;
    line-height: 1.6;
    color: #FFF;
}

#foot .foot-box-txt-left p{
    padding: 15px 0 0;
}

#foot .foot-box-txt-left h4 {
    margin:0 auto;
    padding: 0px 30px 0 0;
    width: 100%;
    line-height: 1.6;
    color: #FFF;
}

#foot p.foot-box-txt-right {
    padding: 20px 0;
    width: 40%;
}

#foot .foot-box-img p {
    margin: 0;
    padding: 0;
}

#foot .foot-box-img img {
    margin: 0 0 -5px;
    padding: 0;
    width: 100%;
}

#foot .title-foot span {
    width: ;
    height: 90px;
    line-height: 90px;
    display: inline-block;
}





#footer {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background-color: #BB8A17;
    font-size: 0.72rem;
    font-weight: normal;
    color: #FFF;
}


.swiper-wrap {
  position: relative;
  width: 750px;
  height: 500px;
}

.bg-red{background: #faa;}
.bg-green{background: #afa;}
.bg-blue{background: #aaf;}
.bg-gray01{background: #FFF;}
.bg-gray02{background: #EEE;}


/*button*/

@import url('https://fonts.googleapis.com/css?family=Poppins:900i');

/*
* {
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
*/
/*anime-botton*/
/*base*/
.wrapper {
  display: flex;
  justify-content: center;
}

.cta {
    display: flex;
    align-items: center;
    padding: 10px 45px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    color: white;
    background: #ff4e4e;
/*    background: #6225E6;*/
    transition: 1s;
    box-shadow: 6px 6px 0 black;
    transform: skewX(-15deg);
}

.cta:focus {
   outline: none; 
}

.cta:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 #FBC638;
}

.cta span:nth-child(2) {
    transition: 0.5s;
    margin-right: 0px;
}

.cta:hover  span:nth-child(2) {
    transition: 0.5s;
    margin-right: 45px;
}

.wrapper span {
    transform: skewX(15deg) 
  }

  .wrapper span:nth-child(2) {
    width: 20px;
    margin-left: 30px;
    position: relative;
    top: 12%;
  }
  
/**************SVG****************/

path.one {
    transition: 0.4s;
    transform: translateX(-60%);
}

path.two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.cta:hover path.three {
    animation: color_anim 1s infinite 0.2s;
}

.cta:hover path.one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

.cta:hover path.two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */

@keyframes color_anim {
    0% {
        fill: white;
    }
    50% {
        fill: #FBC638;
    }
    100% {
        fill: white;
    }
}

/*jirei*/

#case .jirei-box-button {
    width: 96%;
    padding: 20px 40px 40px;
    margin: 0 auto;
/*    background-color: inherit;*/
    background-color: #FAFAFA;
  }

#case .wrapper {
    width: 96%;
    display: flex;
    justify-content: center;
  }
  
  #case .cta {
      display: flex;
      align-items: center;
      padding: 10px 25px;
      text-decoration: none;
      font-family: 'Poppins', sans-serif;
      font-size: 0.78rem;
      color: white;
      background: #2779b1;
      /*background: #ff4e4e;*/
  /*    background: #6225E6;*/
      transition: 1s;
      box-shadow: 6px 6px 0 #DDDDDD;
      transform: skewX(-0deg);
  }
  
  #case .cta:focus {
     outline: none; 
  }
  
  #case .cta:hover {
      transition: 0.5s;
      box-shadow: 10px 10px 0 #CCCCCC;
  }
  
  #case .cta span:nth-child(2) {
      transition: 0.5s;
      margin-right: 0px;
  }
  
  #case .cta:hover  span:nth-child(2) {
      transition: 0.5s;
      margin-right: 45px;
  }
  
  #case .wrapper span {
      transform: skewX(0deg) 
    }
  
    #case .wrapper span:nth-child(2) {
      width: 20px;
      margin-left: 30px;
      position: relative;
      top: 12%;
    }
    
  /**************SVG****************/
  
  path.one {
      transition: 0.4s;
      transform: translateX(-60%);
  }
  
  path.two {
      transition: 0.5s;
      transform: translateX(-30%);
  }
  
  .cta:hover path.three {
      animation: color_anim 1s infinite 0.2s;
  }
  
  .cta:hover path.one {
      transform: translateX(0%);
      animation: color_anim 1s infinite 0.6s;
  }
  
  .cta:hover path.two {
      transform: translateX(0%);
      animation: color_anim 1s infinite 0.4s;
  }
  
  /* SVG animations */
  
  @keyframes color_anim {
      0% {
          fill: white;
      }
      50% {
          fill: #f8ff94;
      }
      100% {
          fill: white;
      }
  }