@charset "UTF-8";
/*============================================================================================================
  module css
============================================================================================================*/
/*------------------------------------------
  枠内にfitするimg
------------------------------------------*/

.imgFitBox {
  overflow: hidden;
}

.imgFitBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover; object-position: center;";
}

.imgFitBox.contain {
  /* fit = contain */
}

.imgFitBox.contain img {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain; object-position: center;";
}

/*------------------------------------------
  hoverで拡大するimg
------------------------------------------*/
.imgLinkBox {
  display: block;
}

@media screen and (min-width: 701px) {
  .imgLinkBox img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .imgLinkBox:hover {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
  }

  .imgLinkBox:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}

/*------------------------------------------
  スクロールされたらフェードイン
------------------------------------------*/
.fade-in {
  opacity: 0.1;
  -webkit-transform: translate(0, 80px);
  -ms-transform: translate(0, 80px);
  transform: translate(0, 80px);
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
  /* -webkit-transition-timing-function: cubic-bezier(0,0.535,0.07,1); */
  /* older webkit */
  /* -webkit-transition-timing-function: cubic-bezier(0, 0.535, 0.07, 1.46);
  -moz-transition-timing-function: cubic-bezier(0, 0.535, 0.07, 1.46);
  -o-transition-timing-function: cubic-bezier(0, 0.535, 0.07, 1.46);
  transition-timing-function: cubic-bezier(0, 0.535, 0.07, 1.46);
  -webkit-transition-timing-function: cubic-bezier(0,0.535,0.07,1); */
  /* older webkit */
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  /* custom */
}

.fade-in.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.fade-in2-1,
.fade-in2-2,
.fade-in3-1,
.fade-in3-2,
.fade-in3-3,
.fade-in4,
.fade-in5 {
  opacity: 0.1;
  -webkit-transform: translate(0, 80px);
  -ms-transform: translate(0, 80px);
  transform: translate(0, 80px);
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
  -webkit-transition-timing-function: cubic-bezier(0, 0.535, 0.07, 1);
  /* older webkit */
  /* -webkit-transition-timing-function: cubic-bezier(0, 0.535, 0.07, 1.46);
  -moz-transition-timing-function: cubic-bezier(0, 0.535, 0.07, 1.46);
  -o-transition-timing-function: cubic-bezier(0, 0.535, 0.07, 1.46);
  transition-timing-function: cubic-bezier(0, 0.535, 0.07, 1.46); */
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  /* custom */
}

.fade-in2-1.scrollin2,
.fade-in2-2.scrollin2,
.fade-in3-1.scrollin2,
.fade-in3-2.scrollin2,
.fade-in3-3.scrollin2,
.fade-in4.scrollin2,
.fade-in5.scrollin2 {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

@media screen and (max-width: 896px) {
  /*
.fade-in {
  -webkit-transform: translate(0, 80px);
  -ms-transform: translate(0, 80px);
  transform: translate(0, 80px);
}
.fade-in2 {
  -webkit-transform: translate(0, 80px);
  -ms-transform: translate(0, 80px);
  transform: translate(0, 80px);
}*/
}

/*------------------------------------------
  flex set
------------------------------------------*/
.flex00 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* 両端配置 / 高さ100%揃え */
.flex01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* 両端配置 / 水平中央配置 / 高さ要素次第 */
.flex02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* 両端配置 / 上寄せ / 高さ要素次第 */
.flex03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* 左寄せ / 上寄せ / 高さ100%揃え */
.flex04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

/* 左寄せ / 上寄せ / 高さ要素次第 */
.flex05 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* 左寄せ / 水平中央配置 / 高さ要素次第 */
.flex06 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* 中央配置 / 高さ100%揃え */
.flex07 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* 余白均等配置 / 高さ100%揃え */
.flex08 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* 中央配置 / 水平中央配置 / 高さ要素次第 */
.flex0 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

small {
  font-size: 12px;
}

/*------------------------------------------
  loading
------------------------------------------*/
#progress-bar {
  width: 0;
  height: 100vh;
  background: #fff64a;
  position: fixed;
  left: 0;
  top: 0;
  -webkit-transition: 1.5s ease;
  -o-transition: 1.5s ease;
  transition: 1.5s ease;
  z-index: 10003;
}

#loader-bg {
  background: #fff;
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 10003;
}

#loader-bg #loader {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  z-index: 10003;
}

#loader-bg #loader img {
  position: absolute;
  top: 0;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
  width: 105px;
  height: auto;
  z-index: 10003;
}

@media screen and (max-width: 896px) {
  #loader-bg #loader img {
  }
}

/*==================
share
====================*/
.inner {
}

.bgY {
  background-color: #ECEEEF;
}

.bgLy {
  background-color: #fff;
}

.contentsBox {
  padding: 100px 0px 100px;
  min-width: 1040px;
}

.btn {
  display: inline-block;
}

.btn a {
  display: block;
  background-color: #000;
  color: #fff;
  padding: 10px 40px;
  min-width: 310px;
  text-align: center;
}

.btn a i {
  display: inline-block;
  margin-right: 5px;
}

.btn a i img {
  vertical-align: middle;
}

.btn a p {
  display: inline-block;
}

.ttl {
  text-align: center;
  margin-bottom: 60px;
}

.ttl h2 {
  margin-bottom: 15px;
}

.ttl h2 img {
}

.ttl h3 {
  font-size: 24px;
}

@media screen and (max-width: 896px) {
  .contentsBox {
    padding: 70px 0px 70px;
    min-width: auto;
  }

  .btn a {
    min-width: auto;
  }

  .ttl {
    margin-bottom: 20px;
  }

  .ttl h3 {
    font-size: 20px;
  }
}

/*==================
header
====================*/
header {
  /* position: fixed; */
  width: 100%;
  z-index: 9999;
  min-width: 1040px;
}

header h1 {
  float: left;
  padding: 20px;
  line-height: 1;
}

header h1 img {
}

header nav {
  float: right;
}

.mainNav {
  display: inline-block;
  margin-right: 10px;
}

.mainNav li {
  display: inline-block;
  padding: 20px 10px;
}

.mainNav li a {
}

.subNav {
  display: inline-block;
  vertical-align: top;
}

.subNav li {
}

.subNav li a {
  background-color: #6dc4c8;
  display: block;
  padding: 20px;
  color: #fff;
}

.subNav li a i {
  margin-right: 10px;
}

.subNav li a i img {
  vertical-align: text-bottom;
}

@media screen and (max-width: 896px) {
  .navBtnOpen {
    /* cursor: pointer; */
    width: 20px;
    height: 20px;
    text-align: center;
    z-index: 9998;
    position: fixed;
    top: 25px;
    right: 15px;
    border: none;
  }

  .navBtnOpen span {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 20px;
    height: 1px;
    background-color: #000;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
  }

  .navBtnOpen span:nth-of-type(1) {
    top: 5px;
  }

  .navBtnOpen span:nth-of-type(2) {
    bottom: 5px;
  }

  .navBtnOpen.onBtn span {
    top: 50%;
    bottom: auto;
    background-color: #fff;
  }

  .navBtnOpen.onBtn span:nth-of-type(1) {
    transform: rotateZ(-135deg);
  }

  .navBtnOpen.onBtn span:nth-of-type(2) {
    transform: rotateZ(135deg);
  }

  header {
    min-width: auto;
  }

  header nav {
    clear: both;
    float: none;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    position: fixed;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    padding: 50px 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: none;
    z-index: 9000;
  }

  .mainNav {
    display: block;
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .mainNav li {
    display: block;
  }

  .mainNav li a {
  }

  .subNav {
    display: block;
    margin: 0 40px;
  }

  .subNav li {
    display: block;
  }

  .subNav li a {
  }

  .subNav li a i {
  }

  .subNav li a i img {
  }
}

/*==================
mainVisual
====================*/
#mainVisual {
  min-width: 1040px;
  height: 775px;
  position: relative;
  overflow: hidden;
}

/*
#mainVisual:after {
  content: "";
  position: absolute;
    bottom: 0;
  left: 0;

  z-index: 1;
  background: url("../img/bg_line.jpg") no-repeat bottom left;
  width: 2275px;
  height: 150px;
  display: block;

  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 110px 100vw;
  border-color: transparent transparent #ffff6f transparent;
  min-width: 1040px;
}
*/

#mainVisual .inner {
  position: relative;
}

.ttlMvBox {
  position: relative;
  z-index: 3;
  padding-top: 150px;
}

.ttlMvBox h2 {
  margin-bottom: 20px;
}

.ttlMvBox h2 img {
}

.ttlMvBox h3 {
  margin-bottom: 60px;
}

.ttlMvBox h3 img {
}

.ttlMvBox .txt {
  margin-bottom: 20px;
}

.ttlMvBox .txt img {
}

.ttlMvBox .btn {
}

.imgMvBox {
  position: absolute;
  top: 60px;
  right: -250px;
  z-index: 2;
  width: 1000px;
  height: 700px;
}

.imgMvBox figure {
  position: relative;
  z-index: 2;
}

.imgMvBox figure img {
}

.imgMvBox:after {
  content: "";
  position: absolute;
  bottom: -44px;
  left: -1000px;
  z-index: 1;
  background: url(../img/bg_line.jpg) no-repeat bottom left;
  width: 2275px;
  height: 150px;
  display: block;
}

@media screen and (max-width: 896px) {
  #mainVisual {
    min-width: auto;
    height: auto;
  }

  .ttlMvBox {
    text-align: center;
    padding-top: 200px;
    padding-bottom: 80px;
  }

  .ttlMvBox h2 img {
    max-width: 316px;
    height: auto;
    width: 100%;
  }

  .ttlMvBox h3 img {
    max-width: 313px;
    height: auto;
    width: 100%;
  }

  .ttlMvBox .txt img {
    max-width: 305px;
    height: auto;
    width: 100%;
  }

  .imgMvBox {
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    z-index: 2;
    width: 100%;
    height: auto;
  }

  .imgMvBox img {
    width: 100%;
    height: auto;
  }

  .imgMvBox:after {
    display: none;
  }
}

/*==================
contentsWhats
====================*/
#contentsWhats {
}

.wrapperWhats {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

.imgWhatsBox {
  width: 45%;
}

.imgWhatsBox ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

.imgWhatsBox ul li {
  width: 200px;
  height: 200px;
  background-color: #fff;
  border-radius: 50%;
  /*display: flex;
  justify-content: center;
  align-items: center;*/
  margin-bottom: 50px;
}

.imgWhatsBox ul li img {
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.txtWhatsBox {
  width: 48%;
}

.txtWhatsBox dl {
}

.txtWhatsBox dl dt {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.6em;
  margin-bottom: 40px;
}

.txtWhatsBox dl dd {
  font-weight: bold;
  margin-bottom: 40px;
}

.txtWhatsBox ul {
}

.txtWhatsBox ul li {
  color: #ff5c5c;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  background: url(../img/line.png) repeat-x bottom left;
  background-size: 7px;
  display: inline-block;
}

@media screen and (max-width: 896px) {
  #contentsWhats .ttl h2 img {
    width: 100%;
    max-width: 343px;
    height: auto;
  }

  .wrapperWhats {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .imgWhatsBox {
    width: 100%;
  }

  .imgWhatsBox ul {
    justify-content: space-around;
  }

  .txtWhatsBox {
    width: 100%;
  }

  .txtWhatsBox dl dt {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .txtWhatsBox dl dd {
    margin-bottom: 20px;
  }

  .txtWhatsBox ul li {
    padding-bottom: 10px;
  }
}

/*==================
contentsAbout
====================*/
#contentsAbout {
}

.listAbout {
  padding: 30px 0px;
}

.listAbout li {
  background-color: #fff;
  width: calc(25% - 40px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  font-weight: bold;
}

.listAboutBox01 {
  background: url("../img/anime_1.gif") no-repeat top left 40px;
  background-size: 350px 250px;
  display: flex;
  justify-content: flex-end;
  margin-left: -40px;
}

.listAboutBox01 li {
  margin-left: 40px;
}

.listAboutBox01 li:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 20px 10px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  top: calc(50% - 10px);
  left: -20px;
}

.listAboutBox02 {
  background: url("../img/anime_2.gif") no-repeat top right 40px;
  background-size: 350px 250px;
  display: flex;
  justify-content: flex-start;
  margin-right: -40px;
}

.listAboutBox02 li {
  margin-right: 40px;
}

.listAboutBox02 li:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0px 10px 20px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: calc(50% - 10px);
  right: -20px;
}

.listAboutBox03 {
  background: url("../img/anime_3.gif") no-repeat top left 40px;
  background-size: 350px 250px;
  display: flex;
  justify-content: flex-end;
  margin-left: -40px;
  margin-bottom: 60px;
}

.listAboutBox03 li {
  margin-left: 40px;
}

.listAboutBox03 li:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 20px 10px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  top: calc(50% - 10px);
  left: -20px;
}

#contentsAbout h2 {
  text-align: center;
  font-size: 30px;
}

@media screen and (max-width: 896px) {
  #contentsAbout .inner {
    padding: 0px;
  }

  .listAboutBox01 {
    background: url(../img/anime_1.gif) no-repeat top center;
    background-size: 350px 250px;
    display: block;
    margin-left: 0px;
    padding-top: 250px;
    padding-bottom: 0px;
  }

  .listAbout li {
    width: auto;
    display: block;
    padding: 20px;
    margin-bottom: 20px;
  }

  .listAboutBox01 li {
    margin-right: 20px;
  }

  .listAboutBox02 {
    background: url(../img/anime_2.gif) no-repeat top center;
    background-size: 350px 250px;
    display: block;
    margin-right: 0px;
    padding-top: 250px;
    padding-bottom: 0px;
  }

  .listAboutBox02 li {
    margin-left: 20px;
  }

  .listAboutBox03 {
    background: url(../img/anime_3.gif) no-repeat top center;
    background-size: 350px 250px;
    display: block;
    margin-left: 0px;
    padding-top: 250px;
    padding-bottom: 0px;
    margin-bottom: 30px;
  }

  .listAboutBox03 li {
    margin-right: 20px;
  }

  #contentsAbout h2 {
    text-align: left;
    font-size: 20px;
    padding: 0 20px;
  }
}

/*==================
contentsBenefits
====================*/
#contentsBenefits {
}

#contentsBenefits h4 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 60px;
}

.wrapperBenefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

.wrapperBenefits dl {
  width: 32%;
  background-color: #fff;
  box-sizing: border-box;
}

.wrapperBenefits dt {
  text-align: center;
  padding: 30px 20px 0px;
  font-size: 18px;
  font-weight: bold;
}

.wrapperBenefits dt:after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: #000;
  margin: 15px auto;
}

.wrapperBenefits dd span {
  padding: 10px 30px 30px;
  display: block;
  font-weight: 900;
}

.wrapperBenefits dd figure {
  text-align: center;
}

.wrapperBenefits dd figure img {
}

@media screen and (max-width: 896px) {
  #contentsBenefits .ttl h2 img {
    width: 100%;
    max-width: 219px;
    height: auto;
  }

  #contentsBenefits h4 {
    font-size: 20px;
    font-feature-settings: "palt";
    margin-bottom: 20px;
  }

  .wrapperBenefits dl {
    width: 100%;
    margin-bottom: 10px;
  }

  .wrapperBenefits dt {
    padding: 30px 0px 0px;
  }

  .wrapperBenefits dd figure img {
    max-width: 310px;
    height: auto;
    width: 100%;
  }
}

/*==================
contentsItem
====================*/
#contentsItem {
}

.listItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.listItem li {
  width: 15.7%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  padding: 40px 0px 50px;
  margin: 8px 4px 0;
  /* margin-bottom: 10px; */
  position: relative;
}
.listItem li figure {
}

.listItem li figure img {
}

.listItem li figure figcaption {
  font-size: 12px;
  letter-spacing: 0;
  font-weight: bold;
  position: absolute;
  bottom: 10px;
  left: 0px;
  display: block;
  width: 100%;
}

.wrapperItem {
  background-color: #fff;
  padding: 30px 60px 20px;
  margin-bottom: 30px;
}

.boxItem {
  float: none;
  margin: 10px 0px;
}

.boxItem dt {
  float: left;
  font-size: 18px;
  font-weight: bold;
}

.boxItem dd {
  margin-left: 200px;
  font-size: 18px;
}

.txtNotice {
  text-align: center;
  font-weight: bold;
  margin-bottom: 60px;
}

.wrapperService {
  border: #000 2px solid;
}

.wrapperService h4 {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: normal;
  padding: 10px;
}

.wrapperService dl {
  padding: 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.boxService {
  border-left: #000 1px solid;
  flex: 1;
  box-sizing: border-box;
  padding: 20px 30px;
}

.boxService:first-child {
  border-left: none;
}

.boxService dt {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.boxService dd {
}

@media screen and (max-width: 896px) {
  #contentsItem .ttl h2 img {
    width: 100%;
    max-width: 107px;
    height: auto;
  }

  .listItem {
    margin-bottom: 10px;
    justify-content: space-between;
  }

  .listItem li {
    width: 48%;
    height: 132px;
    margin: 0 0 10px;
  }

  .wrapperItem {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
  }

  .boxItem dt {
    float: none;
  }

  .boxItem dd {
    margin-left: 0px;
    font-size: 14px;
  }

  .txtNotice {
    text-align: left;
    margin-bottom: 30px;
  }

  .wrapperService h4 {
    font-size: 20px;
  }

  .wrapperService dl {
    display: block;
    padding: 20px 10px;
  }

  .boxService {
    border-left: none;
    border-top: #000 1px solid;
    padding: 20px 10px;
  }

  .boxService:first-child {
    border-left: none;
    border-top: none;
  }
}

/*==================
contentsFlow
====================*/
#contentsFlow {
}

#contentsFlow p {
}

#contentsFlow img {
}

@media screen and (max-width: 896px) {
  #contentsFlow .ttl h2 img {
    width: 100%;
    max-width: 122px;
    height: auto;
  }

  #contentsFlow p {
    text-align: center;
  }

  #contentsFlow img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}

/*==================
contentsPlan
====================*/
#contentsPlan {
  text-align: center;
}

.wrapperPlan {
  background-color: #fff;
  text-align: center;
  padding: 40px 40px 20px;
  margin-bottom: 60px;
}

.wrapperPlan dt {
  margin-bottom: 20px;
}

.wrapperPlan dt img {
}

.wrapperPlan dd {
  font-size: 25px;
}

#contentsPlan .btn {
  margin-bottom: 60px;
}

#contentsPlan .btn a p {
  font-size: 20px;
}

#contentsPlan h4 {
  font-size: 18px;
  margin-bottom: 60px;
}

.wrapperRule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  text-align: left;
}

.boxRule {
  width: 49%;
  margin-bottom: 20px;
  border-style: solid;
  border-width: 1.5px;
  border-image-source: url("../img/line2.png");
  border-image-slice: 4;
  border-image-repeat: repeat;
  border-image-width: 1.5px 1.5px;
  box-sizing: border-box;
  padding: 30px;
  position: relative;
}

.boxRule dl {
}

.boxRule dl dt {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6em;
  margin-bottom: 40px;
}

.boxRule dl .text_s-n {
  font-size: 22px;
}

.boxRule dl dd {
}

.boxRule figure {
  position: absolute;
  top: 0;
  right: 0;
}

.boxRule figure img {
}

.plan01.boxRule figure {
  top: -40px;
}

.plan02.boxRule figure {
  top: -40px;
}

.plan03.boxRule figure {
}

.plan04.boxRule figure {
  top: -10px;
}

@media screen and (max-width: 896px) {
  #contentsPlan .ttl h2 img {
    width: 100%;
    max-width: 114px;
    height: auto;
  }

  #contentsPlan h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .wrapperPlan {
    padding: 30px 20px 20px;
    margin-bottom: 20px;
  }

  .wrapperPlan dt img {
    width: 100%;
    height: auto;
    max-width: 428px;
  }

  .wrapperPlan dd {
    font-size: 20px;
  }

  #contentsPlan .btn a p {
    font-size: 15px;
  }

  .wrapperRule {
    display: block;
  }

  .boxRule {
    width: 100%;
    padding: 20px;
  }

  .boxRule dl dt {
    margin-top: -20px;
    margin-bottom: 10px;
  }

  .boxRule figure {
    position: relative;
    top: auto;
    right: 0px;
    text-align: center;
  }

  .plan01.boxRule figure {
    top: -30px;
  }

  .plan02.boxRule figure {
    top: -30px;
    right: -20px;
    text-align: right;
  }

  .plan03.boxRule figure {
    top: -20px;
  }

  .plan04.boxRule figure {
    top: -30px;
  }
}

/*==================
contentsFaq
====================*/
#contentsFaq {
}

.wrapperFaq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

.boxFaq {
  margin-bottom: 50px;
  width: 49%;
  background-color: #fff;
}

.boxFaq dt {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  background-color: #ECEEEF;
}

.boxFaq dt i {
  float: left;
}

.boxFaq dt span {
  margin-left: 10px;
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6em;
}

.boxFaq dd {
  clear: both;
  padding: 20px 30px 30px 0px;
}

.boxFaq dd i {
  float: left;
  width: 60px;
  text-align: center;
}

.boxFaq dd span {
  margin-left: 70px;
  display: block;
}

@media screen and (max-width: 896px) {
  #contentsFaq .ttl h2 img {
    width: 100%;
    max-width: 114px;
    height: auto;
  }

  .boxFaq {
    width: 100%;
  }

  .boxFaq:last-child {
    margin-bottom: 0px;
  }

  .boxFaq dt {
    display: block;
    align-items: normal;
    padding-bottom: 20px;
    background-color: #ECEEEF;
    text-align: center;
  }

  .boxFaq dt i {
    float: none;
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .boxFaq dt span {
    margin-left: 0px;
    display: block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6em;
  }

  .boxFaq dd {
    clear: both;
    padding: 20px 30px 30px 30px;
  }

  .boxFaq dd i {
    float: none;
    width: 60px;
    text-align: center;
    display: block;
    margin: 0 auto 10px;
  }

  .boxFaq dd span {
    margin-left: 0px;
  }
}

/*==================
contentsContact
====================*/
#contentsContact {
  text-align: center;
  background-color: #fff;
}

#contentsContact .txt {
  margin-bottom: 60px;
}

#contentsContact .btn {
  margin-bottom: 20px;
}

#contentsContact .btn a {
  padding: 20px 40px;
}

#contentsContact .btn a p {
  font-size: 24px;
}

.txtOpen {
}

.txtOpen dt {
  display: inline-block;
  font-weight: bold;
  margin-right: 20px;
}

.txtOpen dd {
  display: inline-block;
}

@media screen and (max-width: 896px) {
  #contentsContact .btn a p {
    font-size: 15px;
  }

  #contentsContact .txt {
    margin-bottom: 20px;
  }
}

.privacy.contentsBox {
  padding: 200px 0px 100px;
  min-width: 1040px;
  min-height: calc(100vh - 115px);
}

.privacy.contentsBox.contact {
  padding: 200px 0px 100px;
}

.contentsBox.contactPlan {
  padding: 100px 0px 40px;
}

.contentsBox.contactPlan .wrapperPlan {
  margin-bottom: 0px;
}

.privacy h1 {
  margin-bottom: 20px;
  font-size: 40px;
  display: inline-block;
  width: 100%;
}

.privacy h2 {
  margin-bottom: 20px;
}

.privacy p {
  margin-bottom: 40px;
}

.privacy ol {
  margin-bottom: 40px;
  list-style: decimal;
  margin-left: 20px;
}

.privacy ul {
  margin-bottom: 40px;
  margin-left: 20px;
}

.privacy ol li {
  list-style: decimal;
  margin-bottom: 10px;
}

.privacy ol ol,
.privacy ol ul {
  margin-top: 20px;
}

.privacy ol ul {
  margin-bottom: 20px;
  margin-left: 20px;
}

.privacy ul li {
  list-style: disc;
  margin-bottom: 10px;
}

.contact th {
  padding-right: 20px;
}

.contact th,
.contact td {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: #b8b8b8 1px solid;
}

.contact td {
  color: #000;
  width: 72%;
}

.formTable {
  /* border-bottom: #333 1px solid; */
  border-top: #b8b8b8 1px solid;
  margin-bottom: 20px;
}

.req {
  background-color: #fff;
  font-size: 10px;
  padding: 8px 10px;
  float: right;
}

input[type="text"] {
  width: 100%;
  max-width: 400px;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select-wrap {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.select-wrap:before {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-55%) translateX(0);
  content: "";
  width: 15px;
  height: 15px;
  content: "▼";
  font-size: 10px;
  color: #333;
  background-size: contain;
}

.select-wrap select {
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 40px;
  padding: 5px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 5px;
}

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

textarea {
  width: 100%;
  height: 300px;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
}

input[type="submit"] {
  border: none;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  padding: 10px;
  border-radius: 5px;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  margin: 0 10px;
}

input[type="reset"],
input[type="button"] {
  border: none;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  padding: 10px;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  font-weight: bold;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  margin: 0 10px;
}

@media screen and (max-width: 896px) {
  .privacy.contentsBox {
    padding: 70px 0px 70px;
    min-width: auto;
  }

  .contact th,
  .contact td {
    display: block;
  }
  .contact td {
    color: #000;
    width: 100%;
  }
  .contact th {
    border-bottom: none;
    padding-right: 0px;
    padding-bottom: 0px;
  }

  input[type="submit"] {
    display: block;
    margin-bottom: 20px;
  }

  input[type="reset"] {
    display: block;
  }
}

/*==================
footer
====================*/
footer {
  padding: 40px 30px;
  min-width: 1040px;
}

footer nav {
  float: left;
}

footer nav ul {
}

footer nav ul li {
  display: inline-block;
  margin-right: 30px;
}

footer nav ul li a {
  font-size: 12px;
}

.copy {
  float: right;
}
.copy small {
}
@media screen and (max-width: 896px) {
  footer {
    padding: 40px 30px;
    min-width: auto;
    text-align: center;
  }

  footer nav {
    float: none;
    margin-bottom: 30px;
  }

  footer nav ul li {
    display: block;
    margin-right: 0px;
  }

  footer nav ul li a {
    display: block;
    padding: 10px;
  }

  .copy {
    float: none;
  }
}

body {
  position: relative;
  /* コメントアウト */
  cursor: none;
}

a {
  cursor: none;
}

.cursor,
.follower {
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
}

.cursor {
  width: 8px;
  height: 8px;
  background-color: #000;
  z-index: 100100;
}

.follower {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  /*background-color: #fdfe00;*/
  background-color: #111;
  /*-webkit-filter: invert(100%);
  filter: invert(100%);*/
  mix-blend-mode: exclusion;
  z-index: 100000;
  transition: transform ease 0.1s;
  text-align: center;
}

.follower span {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  transform: scale(0);
}

.follower.is-active {
  transform: scale(2);
}

@media screen and (max-width: 480px) {
  .cursor,
  .follower {
    display: none;
  }
}

@media screen and (max-width: 320px) {
  .btn_con-n {
    margin: 65px auto 0;
    text-align: center;
    display: block;
    width: 260px;
  }
}
