@charset "utf-8";


/* RESET
----------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
html {
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 16px;
  line-height: 1.8em;
  color: #000;
  height: 100%;
  font-family: 'Noto Sans JP',"Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  position: relative;
  font-feature-settings: "palt";
}

.en {
  font-family: 'Jost', sans-serif;;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}
main {
  display: block;
  position: relative;
}

a {
  outline:none;
  color: #000;
}

a:hover {
  text-decoration: none;
}

a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}

@media only screen and ( max-width : 767px ) {
  img {
    image-rendering: optimizeQuality;
    -webkit-interpolation-mode: bicubic;
  }
}

/* -----------------------------------------------
 * COMMON
----------------------------------------------- */
input[type=text]:focus {
    outline: none;
}
#main {
  overflow: hidden;
}
section {
  position: relative;
}

@media only screen and ( max-width : 991px ) {
}
@media only screen and ( max-width : 767px ) {
  .section {
    padding: 30px 0;
  }
  .box {
    margin-bottom: 60px;
  }
  .br_pc {
    display: none;
  }
}
@media print, screen and ( min-width : 768px ) {
  .section {
    padding: 60px 0;
  }
  .box {
    margin-bottom: 100px;
  }
  .br_sp {
    display: none;
  }
}
@media print, screen and ( min-width : 992px ) {
  .section {
    padding: 100px 0;
  }
  .br_tb {
    display: none;
  }
}


/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: rgba(255,255,255,0);
  transition: .3s;
}

#h_logo span {
  text-indent: -9999px;
  display: block;
  font-size: 0;
}
#h_logo img {
  display: block;
}
#menu_btn {
  top: 0;
  right: 20px;
  transition: .3s;
  cursor: pointer;
  position: fixed;
  z-index: 9999;
  width: 40px;
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}
#main {
  height: 100%;
  transition: all .5s;
}
.menu-trigger {
  display: inline-block;
  width: 40px;
  height: 15px;
  vertical-align: middle;
  text-align: center;
  position: relative;
}
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all .5s;
}
#header.header_fixed .menu-trigger span {
  background-color: #022E76;
}
#menu_btn.active .menu-trigger span {
  background-color: #022E76;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(3) {
}
#menu_btn.active .menu-trigger span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
  width: 80%;
  top: 10px;
}
.menu-trigger span:nth-of-type(2) {
  top: 7px;
}
#menu_btn.active .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
#menu_btn.active .menu-trigger span:nth-of-type(3) {
  transform: translateY(-7px) rotate(45deg);
  width: 80%;
  bottom: -10px;
}
nav#gNav {
  width: 300px;
  height: 100%;
  overflow: auto;
  padding: 90px 0 40px;
  background: rgba(255,255,255,.95);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  right: -300px;
  /*transform: translate(300px);*/
  transition: all .3s;
}
/*nav#gNav.open {
  transform: translateZ(0);
}*/
nav#gNav li {
  border-bottom: 1px solid #ccc;
}
nav#gNav li a {
  position: relative;
  padding: 15px 20px;
  display: block;
  font-size: 16px;
  color: #022E76;
}
nav#gNav li.nav_contact {
  border-bottom: none;
  padding: 0 20px;
  margin-top: 30px;
}
nav#gNav li.nav_contact .nav_contact_cta {
  background: #022E76;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  margin-bottom: 15px;
  color: #fff;
}
nav#gNav li.nav_contact .nav_contact_cta:after {
  content: "";
  background: url(../img/btn_arrow.png) no-repeat center / 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 20px;
  height: 20px;
}
nav#gNav li.nav_contact .nav_contact_cta span {
  text-align: center;
  line-height: 1.3;
}

#gNav ul li a {
  position: relative;
  font-weight: 700;
}


@media only screen and ( max-width : 991px ) {
  #header {
    padding: 15px;
  }
  #h_logo {
    max-width: 80px;
  }
  
}
@media print, screen and ( min-width : 992px ) {
  #header {
    padding: 50px;
  }
  #h_logo {
    max-width: 120px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer {
  background: #F5F5F5;
  position: relative;
  color: #022E76;
}
.footer_nav li:last-child {
  margin-right: 0;
}
.f_copy {
  font-size: 13px;
}

#pageTop{
  position: fixed;
  z-index: 98;
  display: none;
}
@media only screen and ( max-width : 767px ) {
  #footer {
    padding: 30px 0;
  }
  #pageTop {
    width: 60px;
    bottom: 10px;
    right: 10px;
  }
  .footer_nav li {
    width: 48%;
    margin-right: 4%;
    text-align: center;
  }
  .f_copy {
    text-align: center;
    margin-top: 30px;
  }
}

@media print, screen and ( min-width : 768px ) {
  #footer {
    padding: 60px 0;
  }
  .footer_nav li {
    margin-right: 40px;
  }
  #pageTop {
    width: 80px;
    bottom: 20px;
    right: 40px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   CONTENTS

--------------------------------------------------------------------------------------------- */

.sec_tit {
  text-align: center;
}
.sec_tit span {
  display: block;
  letter-spacing: .2em;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #022E76;
  color: #fff;
  font-weight: bold;
  border-radius: 100px;
}
.btn span {
  text-align: center;
}
.btn:after {
  content: "";
  background: url(../img/btn_arrow.png) no-repeat center / 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 20px;
  height: 20px;
}
.gra_box {
  background: #6936f2;
  background: -moz-linear-gradient(-45deg,  #6936f2 0%, #6f54b9 50%, #a31bf8 100%);
  background: -webkit-linear-gradient(-45deg,  #6936f2 0%,#6f54b9 50%,#a31bf8 100%);
  background: linear-gradient(135deg,  #6936f2 0%,#6f54b9 50%,#a31bf8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6936f2', endColorstr='#a31bf8',GradientType=1 );
  position: relative;
  padding: 10px;
}
.gra_box .point_num {
  position: absolute;
}
.gra_box h3 {
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gra_box h3 span {
  line-height: 1.2;
  text-align: center;
}
.point_body {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.point_body p {
  text-align: center;
  font-weight: bold;
}
.point_body p sup {
  vertical-align: top;
  font-size: 70%;
  font-weight: 400;
}
.point_body p span {
  color: #880FD4;
  font-weight: 900;
}
.step_body {
  background: #fff;
  padding: 20px;
}
@media only screen and ( max-width : 991px ) {
  .point_num {
    top: -34px;
    left: -10px;
    width: 70px;
  }
}
@media only screen and ( max-width : 767px ) {
  .sec_tit {
    margin-bottom: 20px;
    font-size: 26px;
  }
  .sec_tit span {
    font-size: 15px;
  }
  .btn {
    font-size: 17px;
    height: 70px;
  }
  .gra_box {
    margin-top: 50px;
  }
  .gra_box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    padding: 10px 0;
  }
  .point_body {
    font-size: 17px;
    min-height: 140px;
  }
  .point_body p small {
    font-size: 12px;
  }
  .point_body p span {
    font-size: 28px;
  }
  .point_body p span small {
    font-size: 20px;
  }
}
@media only screen and ( max-width : 320px ) {
  .point_body {
    padding: 15px;
  }
}
@media print, screen and ( min-width : 768px ) {
  .sec_tit {
    margin-bottom: 70px;
    font-size: 36px;
  }
  .sec_tit span {
    font-size: 18px;
  }
  .btn {
    font-size: 20px;
    height: 80px;
  }
  .gra_box {
    min-height: 260px;
    margin-top: 100px;
  }
  #flow .gra_box {
    margin-top: 50px;
    min-height: 290px;
  }
  .point_body {
    height: 130px;
    font-size: 15px;
  }
  .point_body p small {
    font-size: 10px;
  }
  .point_body p span {
    font-size: 20px;
  }
  .point_body p span small {
    font-size: 20px;
  }
  .step_body {
    height: 166px;
  }
  .step_body p {
    font-size: 14px;
  }
  .gra_box h3 {
    font-size: 26px;
    height: 110px;
  }
  #flow .gra_box h3 {
    font-size: 22px;
    height: 104px;
  }
}
@media print, screen and ( min-width : 992px ) {
  .gra_box {
    min-height: 290px;
    margin-top: 100px;
  }
  #flow .gra_box {
    margin-top: 50px;
    min-height: 290px;
  }
  .point_num {
    top: -54px;
    left: -15px;
    width: 100px;
  }
  .gra_box h3 {
    font-size: 32px;
    height: 140px;
  }
  .point_body {
    height: 130px;
    font-size: 18px;
  }
  .point_body p small {
    font-size: 12px;
  }
  .point_body p span {
    font-size: 26px;
  }
  .gra_box h3 {
    height: 140px;
  }
  #flow .gra_box h3 {
    font-size: 26px;
    height: 104px;
  }
  .step_body p {
    font-size: 16px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   MV

--------------------------------------------------------------------------------------------- */
#mv h1 {
  text-align: center;
}
#mv h1 span {
  display: block;
  height: 0;
  text-indent: -9999px;
}
@media only screen and ( max-width : 767px ) {
  #mv {
    background: url(../img/mv_img.jpg) no-repeat center / cover;
    height: 110vw;
    padding-top: 95px;
  }
  #mv h1 img {
    max-width: 94%;
  }
}
@media print, screen and ( min-width : 768px ) {
  #mv {
    background: url(../img/mv_img.jpg) no-repeat center / cover;
    height: 56vw;
    max-height: 100vh;
  }
  #mv h1 img {
    max-width: 70%;
  }
}
@media print, screen and ( min-width : 992px ) {
  #mv h1 img {
    max-width: 80%;
  }
}
@media print, screen and ( min-width : 1200px ) {
  #mv h1 img {
    max-width: 100%;
  }
}

/* ---------------------------------------------------------------------------------------------

　   INTRO

--------------------------------------------------------------------------------------------- */
#about {
  text-align: center;
  font-weight: bold;
}

#intro {
  background: #F5F5F5;
}
#intro h2 {
  text-align: center;
}
#intro_top {
  position: relative;
  z-index: 2;
}
#intro_top li {
  background: #000;
  color: #fff;
  border: 2px solid #F5F5F5;
  border-radius: 50px;
  position: relative;
  font-weight: bold;
}
#intro_top li:last-child {
  margin-bottom: 0;
}
#intro_top li:before {
  content: "";
  background: url(../img/check.png) no-repeat center / 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#intro_bottom {
  background: url(../img/arrow.jpg) no-repeat top left / 100% #393939;
  position: relative;
  z-index: 1;
}
.intro_bottom_lead_t {
  text-align: center;
  font-weight: bold;
}
#intro_bottom .intro_bottom_lead_t {
  color: #fff;
}
.intro_sub_lead_t {
  background: #fff;
  border-radius: 50px;
  text-align: center;
  margin: 0 auto;
  color: #6F54B9;
  font-weight: 900;
  position: relative;
}
.intro_sub_lead_t:before {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 0;
    width: 0;
    border-style: solid;
    border-color: transparent;
    border-top-color: #fff;
    border-width: 8px;
    content: "";
}
.intro_sub_lead_t span {
  line-height: 1;
}
.point_lead_box {
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.point_lead_box p span {
  color: #F5FD00;
}
.point_lead_small_t {
  font-weight: 400;
}
@media only screen and ( max-width : 767px ) {
  #about {
    padding: 30px 0;
    font-size: 20px;
  }
  #intro_top li {
    font-size: 16px;
    padding: 10px 10px 10px 45px;
    margin-bottom: 10px;
  }
  #intro_top li:before {
    width: 20px;
    height: 20px;
    left: 15px;
  }
  #intro_bottom {
    padding: 18vw 0 30px;
    margin-top: -8vw;
  }
  #intro_bottom li {
    margin-bottom: 20px;
  }
  #intro_bottom li:last-child {
    margin-bottom: 0;
  }


  #intro_bottom .intro_bottom_lead_t {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .intro_sub_lead_t {
    padding: 5px 20px;
    font-size: 16px;
    margin: 30px auto 0;
  }
  .intro_sub_lead_t span {
    font-size: 24px;
  }
  .point_lead_box {
    font-size: 17px;
    margin: 30px auto 0;
  }
  .point_lead_box p span {
    font-size: 26px;
  }
  .point_lead_box p span small {
    font-size: 22px;
  }
  .point_lead_small_t {
    font-size: 14px;
  }
}
@media only screen and ( max-width : 575px ) {
  #about {
    padding: 5vw 0;
    font-size: 4.2vw;
  }
}
@media only screen and ( max-width : 320px ) {
  #intro_top li {
    font-size: 3.8vw;
  }
}

@media print, screen and ( min-width : 768px ) {
  #about {
    padding: 50px 0;
    font-size: 22px;
  }
  #intro_top ul {
    max-width: 1000px;
    margin: 0 auto;
  }
  #intro_top li {
    font-size: 20px;
    padding: 15px 15px 15px 75px;
    margin-bottom: 15px;
  }
  #intro_top li:before {
    width: 24px;
    height: 24px;
    left: 30px;
  }
  #intro_bottom {
    padding: 18vw 0 100px;
    margin-top: -100px;
  }
  #intro_bottom ul {
    max-width: 1000px;
    margin: 0 auto;
  }
  #intro_bottom li {
    width: 31%;
  }
  #intro_bottom .intro_bottom_lead_t {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .intro_sub_lead_t {
    width: 570px;
    padding: 10px 20px;
    font-size: 22px;
    margin: 70px auto 0;
  }
  .intro_sub_lead_t span {
    font-size: 30px;
  }
  .point_lead_box {
    font-size: 28px;
    max-width: 1000px;
    margin: 60px auto 0;
  }
  .point_lead_box p span {
    font-size: 36px;
  }
  .point_lead_box p span small {
    font-size: 28px;
  }
  .point_lead_small_t {
    font-size: 22px;
  }
}
@media print, screen and ( min-width : 992px ) {
  #intro_top li {
    font-size: 24px;
  }
}
/* ---------------------------------------------------------------------------------------------

　   うれしい機能

--------------------------------------------------------------------------------------------- */
#functions {
  background: url(../img/bg.jpg) no-repeat left bottom / 100%;
}
#functions h2 {
  text-align: center;
  font-weight: 900;
}
.functions_box {
  background: url(../img/gra01.png) no-repeat top left / cover;
  color: #fff;
  position: relative;
}
.functions_box:last-child {
  margin-bottom: 0;
}
.functions_box:nth-child(even) {
  background: url(../img/gra02.png) no-repeat top left / cover;
}
.functions_body h4 {
  background: #fff;
  border-radius: 50px;
  color: #744AE4;
  margin-top: 1em;
}
.functions_body h4:first-of-type {
  margin-top: 0;
}
.functions_box .functions_body p {
  line-height: 1.8em;
}
.functions_box li {
  margin-left: 1em;
  list-style: disc;
  line-height: 1.8em;
}
.functions_box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 1;
}
.functions_box:nth-child(1):before {
  background-image: url(../img/01.png);
}
.functions_box:nth-child(2):before {
  background-image: url(../img/02.png);
}
.functions_box:nth-child(3):before {
  background-image: url(../img/03.png);
}
.functions_box:nth-child(4):before {
  background-image: url(../img/04.png);
}
.functions_img {
  position: relative;
  z-index: 2;
  text-align: center;
}
@media only screen and ( max-width : 767px ) {
  #functions h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .functions_box {
    margin-bottom: 20px;
    padding: 20px;
    font-size: 15px;
  }
  .functions_box:before {
    width: 200px;
    height: 200px;
  }
  .functions_img {
    margin-bottom: 20px;
  }
  .functions_img img {
    max-width: 80%;
  }
  .functions_body h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
  }
  .functions_body h4 {
    font-size: 15px;
    padding: 5px 20px;
    margin-bottom: 10px;
  }
}
@media only screen and ( max-width : 320px ) {
  .functions_box:before {
    width: 150px;
    height: 150px;
  }
}

@media print, screen and ( min-width : 768px ) {
  #functions {
    background-attachment: fixed;
  }
  #functions h2 {
    font-size: 40px;
    margin-bottom: 50px;
  }
  .functions_box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 35px;
    min-height: 340px;
  }
  .functions_box:before {
    width: 220px;
    height: 220px;
  }
  .functions_img {
    width: 36%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .functions_body {
    width: 60%;
  }
  .functions_body h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .functions_body h4 {
    font-size: 16px;
    padding: 5px 20px;
    margin-bottom: 15px;
  }
}
@media print, screen and ( min-width : 992px ) {
  .functions_box {
    padding: 35px 100px;
    margin-bottom: 45px;
  }
  .functions_box:before {
    width: 270px;
    height: 270px;
  }
  .functions_body h3 {
    font-size: 38px;
  }
  .functions_body h4 {
    font-size: 18px;
    padding: 5px 30px;
  }
}
/* ---------------------------------------------------------------------------------------------

　   サービス提供エリア

--------------------------------------------------------------------------------------------- */
#area {
  background: url(../img/japan.png) no-repeat center / 366px #fafafa;
}
#area p {
  line-height: 1.8em;
  text-align: center;
  font-weight: bold;
}
#area p small {
  display: block;
  margin-top: .5em;
}
@media only screen and ( max-width : 767px ) {
  #area p small {
    font-size: 13px;
  }
}

@media print, screen and ( min-width : 768px ) {
  #area .container {
    max-width: 1000px;
  }
  #area p {
    font-size: 18px;
  }
  #area p small {
    font-size: 15px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   お申し込みの流れ

--------------------------------------------------------------------------------------------- */
#flow {
  background: #393939;
}
#flow h2 {
  color: #fff;
}
@media only screen and ( max-width : 767px ) {
  .step_arrow {
    text-align: center;
    margin-top: 20px;
    margin-bottom: -30px;
  }
  .step_body {
    min-height: 160px;
  }
}

@media print, screen and ( min-width : 768px ) {
  #flow .container {
    max-width: 1000px;
  }
  #flow .gra_box {
    width: 45%;
  }
  .step_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3%;
    width: 10%;
  }
}

/* ---------------------------------------------------------------------------------------------

　   ご注意事項

--------------------------------------------------------------------------------------------- */
#attention {
  background: url(../img/bg02.jpg) no-repeat center / cover;
  color: #fff;
}
#attention h3 {
  margin-bottom: 1em;
}
#attention h3 span {
  display: inline-block;
  background: #6936f2;
  background: -moz-linear-gradient(-45deg,  #6936f2 0%, #6f54b9 50%, #a31bf8 100%);
  background: -webkit-linear-gradient(-45deg,  #6936f2 0%,#6f54b9 50%,#a31bf8 100%);
  background: linear-gradient(135deg,  #6936f2 0%,#6f54b9 50%,#a31bf8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6936f2', endColorstr='#a31bf8',GradientType=1 );
  padding: .1em .8em;
}
#attention p {
  line-height: 2.2em;
  font-size: 13px;
}
@media only screen and ( max-width : 767px ) {
}

@media print, screen and ( min-width : 768px ) {
  #attention .container {
    max-width: 1000px;
  }
  #attention h3 span {
    font-size: 20px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   CTA

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
  .cta li {
    margin-bottom: 15px;
  }
  .cta li:last-child {
    margin-bottom: 0;
  }
}

@media print, screen and ( min-width : 768px ) {
  .cta .container {
    max-width: 1000px;
  }
  .cta li {
    width: 49%;
    margin-right: 2%;
  }
  .cta li:last-child {
    margin-right: 0;
  }
}
/* ---------------------------------------------------------------------------------------------

　   BANNER

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
  #banner li {
    width: 49%;
    margin-right: 2%;
    margin-top: 2%;
  }
  #banner li:nth-child(2n) {
    margin-right: 0;
  }
}

@media print, screen and ( min-width : 768px ) {
  #banner .container {
    max-width: 1000px;
  }
  #banner li {
    width: 23.5%;
    margin-right: 2%;
  }
  #banner li:nth-child(4n) {
    margin-right: 0;
  }
}
/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
}

@media print, screen and ( min-width : 768px ) {
}