@charset "UTF-8";
/**************************************
  
  MIXINS

***************************************/
/*  clearfix
-----------------------*/
/*  transition
-----------------------*/
/**************************************
  
  BASE

***************************************/
/* ---------------------------------------------------------
スタイルリセット
----------------------------------------------------------*/
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal; }

h1, h2, h3, h4, h5, h6, td, th, p, ul, li, dt, dd, span {
  font-size: 1em;
  line-height: 1;
  font-weight: 500; }

ul li {
  list-style: none; }

article, header, footer, aside, figure, figcaption, nav, section {
  display: block; }

body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: Helvetica Neue, Helvetica, Arial, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif; }

section {
  line-height: 0; }

img {
  width: 100%;
  -webkit-backface-visibility: hidden; }

a {
  display: block;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  text-decoration: none;
  line-height: 1; }
  a:hover {
    opacity: .7; }

b {
  font-weight: 600; }

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

button {
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

*:focus {
  outline: none; }


/* ---------------------------------------------------------
変数
----------------------------------------------------------*/
/*break point
-----------------------*/
/*color
-----------------------*/
/*color
-----------------------*/
.sp {
  display: none; }

.pc {
  display: block; }

html {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: 62.5%;}

body {
  margin: 0;
  padding: 0;
  font-family: Helvetica Neue, Helvetica, Arial, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  line-height: 100%;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 1050px;
  width:100%;
}

@media screen and (max-width: 768px) {
  body {
    min-width: 320px;
    width:100%;
  }
}

/******************************
    SP
*******************************/
@media screen and (max-width: 768px) {
  .sp {
    display: block; }
  .pc {
    display: none !important; } }

/**************************************
  
  HEADER

***************************************/
header {
  /*position: fixed;*/
  max-width: 105rem;
  /*height: 80px;*/
  /*padding: 0 20px;*/
  background-color:#231815;
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
  margin:0 auto;
}

.hamburger {
  display: none;
  width: 70px;
  height: 50px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  background: #231815;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.hamburger .bar {
  width: 40px;
  height: 3px;
  background: #eee;
  border-radius: 2px;
  display: block;
  position: absolute;
  transition: all 0.3s;
  color: #fff;
}

.hamburger .bar-top {
  transform: translate(0, -12px);
}

.hamburger .bar-bottom {
  transform: translate(0, 12px);
}

.checkbox:checked ~ .hamburger .bar-middle {
  opacity: 0;
}

.checkbox:checked ~ .hamburger .bar-top {
  transform: translate(0, 0) rotate(45deg);
}

.checkbox:checked ~ .hamburger .bar-bottom {
  transform: translate(0, 0) rotate(-45deg);
}

.checkbox {
  display: none;
}

.nav-menu {
  position: static;
  margin:0 auto;
  width: 1050px;
  background-color:#231815;
}
@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    width: 280px;
    height: 100%;
    background: #231815;
    opacity: 0.9;
    color: #fff;
    top: 0;
    left: -150%;
    transition: all 0.5s;
    z-index: 999;
  }
}

.nav-menu ul {
  display: flex;
  padding:20px 0;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .nav-menu ul {
    margin-top: 100px;
    display: block;
  }
}

li {
  color: #fff;
  flex-grow: 1;
  text-align: center;
}

li a {
  color: #fff;
}

li + li {
  border-left: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .nav-menu li {
    margin-bottom: 30px;
    border-left: none;
  }
}

.nav-menu a {
  text-align: center;
  font-size: 16px;
}

.checkbox:checked ~ .nav-menu {
  left: 0;
}

/**************************************
  
  main

***************************************/
.siteContent {
  margin: 0 auto;
  padding-top: 0px;
  width: 100%;
  max-width: 105rem;
  background-color:#fbfaf5;
  overflow: hidden;
}

.secKV {
  margin: 0;
  position: relative;
}

.secKV__figure {
  margin: 0 auto;
  width: 100%;
}

.secKV__figure02 {
  margin: 2rem auto 3.5rem;
  display: flex;
  background-color:#fff;
  max-width: 69rem;
  padding:0.8rem 1rem 1.9rem;
  border-radius:1rem;
}

.secKV__figure02-01 {
  margin: 1.4rem auto 0;
  width: 100%;
  max-width: 30.8rem;
}

.secKV__figure02-02 {
  margin: 1.7rem auto 0;
  width: 100%;
  max-width: 2.6rem;
}

.secKV__figure02-03 {
  margin: 0rem auto 0;
  width: 100%;
  max-width: 28.6rem;
}

.secKV__figure03 {
  margin: 0 auto 5.3rem;
  width: 100%;
  max-width: 68.9rem;
}

.secKV__img01 {
  position: absolute;
  top: 705px;
  left: 820px;
  width: 100%;
  max-width: 17.9rem;
}

@media screen and (max-width: 768px) {
  .secKV__figure02 {
    margin: 1.905vw auto 3.333vw;
    max-width: 65.714vw;
    padding: 0.762vw 0.952vw 1.810vw;
  }

  .secKV__figure02-01 {
    margin: 1.333vw auto 0;
    max-width: 29.333vw;
  }

  .secKV__figure02-02 {
    margin: 1.619vw auto 0;
    max-width: 2.476vw;
  }

  .secKV__figure02-03 {
    margin: 0rem auto 0;
    max-width: 27.238vw;
  }

  .secKV__figure03 {
    margin: 0 auto 5.048vw;
    max-width: 65.619vw;
  }
  
  .secKV__img01 {
    top: 99.5%;
    left: 79%;
    max-width: 17.048vw;
  }
}

.sec01-01, .sec01-02, .sec01-03, .sec01-04, .sec01-05 {
  position: relative;
}

.sec01-01{
  padding-bottom: 5.5rem;
}

.sec01-01__figure01 {
  margin: 7rem 0 2rem 13rem;
  width: 100%;
  max-width: 73.7rem;
}

.sec01-01__figure02 {
  margin: 0 auto 2.4rem;
  width: 100%;
  max-width: 85rem;
}

.sec01-01__img01 {
  position: absolute;
  top: 535px;
  left: 885px;
  width: 100%;
  max-width: 8rem;
}

@media screen and (max-width: 768px) {
  .sec01-01{
    padding-bottom: 5.238vw;
  }
  
  .sec01-01__figure01 {
    margin: 6.667vw 0 1.905vw 12.381vw;
    max-width: 70.190vw;
  }

  .sec01-01__figure02 {
    margin: 0 auto 2.286vw;
    max-width: 80.952vw;
  }
  
  .sec01-01__img01 {
    top: 85%;
    left: 84%;
    max-width: 7.619vw;
  }
}

.sec01-02__figure01 {
  margin: 0 0 2.5rem 12.8rem;
  width: 100%;
  max-width: 79.4rem;
}

.sec01-03__figure01 {
  margin: 0 0 2.5rem 13.3rem;
  width: 100%;
  max-width: 68.7rem;
}

.sec01-04__figure01 {
  margin: 0 0 2.5rem 13.3rem;
  width: 100%;
  max-width: 64.5rem;
}

.sec01-05__figure01 {
  margin: 0 0 2.5rem 13.3rem;
  width: 100%;
  max-width: 73.5rem;
}

.sec01-02__figure02, .sec01-03__figure02, .sec01-04__figure02 {
  margin: 0 auto 4.5rem;
  width: 100%;
  max-width: 46.1rem;
}

.sec01-05__figure02 {
  margin: 0 auto 4.1rem;
  width: 100%;
  max-width: 46.1rem;
}

@media screen and (max-width: 768px) {
  .sec01-02__figure01 {
    margin: 0 0 2.381vw 12.190vw;
    max-width: 75.619vw;
  }
  
  .sec01-03__figure01 {
    margin: 0 0 2.381vw 12.667vw;
    max-width: 65.429vw;
  }
  
  .sec01-04__figure01 {
    margin: 0 0 2.381vw 12.667vw;
    max-width: 61.429vw;
  }
  
  .sec01-05__figure01 {
    margin: 0 0 2.381vw 12.667vw;
    max-width: 70vw;
  }

  .sec01-02__figure02, .sec01-03__figure02, .sec01-04__figure02 {
    margin: 0 auto 4.286vw;
    max-width: 43.905vw;
  }
  
  .sec01-05__figure02 {
    margin: 0 auto 3.905vw;
    max-width: 43.905vw;
  }
}

.sec01-02__img01 {
  position: absolute;
  top: 150px;
  left: 75px;
  width: 100%;
  max-width: 17.6rem;
}

.sec01-02__img02 {
  position: absolute;
  top: 165px;
  left: 820px;
  width: 100%;
  max-width: 17.9rem;
}

.sec01-02__img03 {
  position: absolute;
  top: 395px;
  left: 782px;
  width: 100%;
  max-width: 11.2rem;
}

.sec01-03__img01 {
  position: absolute;
  top: 150px;
  left: 48px;
  width: 100%;
  max-width: 17.9rem;
}

.sec01-03__img02 {
  position: absolute;
  top: 295px;
  left: 143px;
  width: 100%;
  max-width: 10.9rem;
}

.sec01-03__img03 {
  position: absolute;
  top: 353px;
  left: 782px;
  width: 100%;
  max-width: 11.7rem;
}

.sec01-04__img01 {
  position: absolute;
  top: 183px;
  left: 147px;
  width: 100%;
  max-width: 10.3rem;
}

.sec01-04__img02 {
  position: absolute;
  top: 140px;
  left: 820px;
  width: 100%;
  max-width: 17.9rem;
}

.sec01-04__img03 {
  position: absolute;
  top: 374px;
  left: 784px;
  width: 100%;
  max-width: 11.3rem;
}

.sec01-05__img01 {
  position: absolute;
  top: 145px;
  left: 48px;
  width: 100%;
  max-width: 17.9rem;
}

.sec01-05__img02 {
  position: absolute;
  top: 363px;
  left: 152px;
  width: 100%;
  max-width: 9rem;
}

.sec01-05__img03 {
  position: absolute;
  top: 129px;
  left: 853px;
  width: 100%;
  max-width: 8rem;
}

.sec01-05__img04 {
  position: absolute;
  top: 346px;
  left: 785px;
  width: 100%;
  max-width: 11.1rem;
}

@media screen and (max-width: 768px) {
  .sec01-02__img01 {
    top: 34%;
    left: 6.5%;
    max-width: 16.762vw;
  }

  .sec01-02__img02 {
    top: 35%;
    left: 79%;
    max-width: 17.048vw;
  }

  .sec01-02__img03 {
    top: 86%;
    left: 77%;
    max-width: 10.667vw;
  }
  
  .sec01-03__img01 {
    top: 34%;
    left: 4%;
    max-width: 17.048vw;
  }

  .sec01-03__img02 {
    top: 66%;
    left: 12%;
    max-width: 10.381vw;
  }

  .sec01-03__img03 {
    top: 78%;
    left: 77%;
    max-width: 11.143vw;
  }
  
  .sec01-04__img01 {
    top: 41%;
    left: 13%;
    max-width: 9.810vw;
  }

  .sec01-04__img02 {
    top: 32%;
    left: 79%;
    max-width: 17.048vw;
  }

  .sec01-04__img03 {
    top: 78%;
    left: 77%;
    max-width: 10.762vw;
  }
  
  .sec01-05__img01 {
    top: 20%;
    left: 4%;
    max-width: 17.048vw;
  }

  .sec01-05__img02 {
    top: 50%;
    left: 14%;
    max-width: 8.571vw;
  }

  .sec01-05__img03 {
    top: 18%;
    left: 81%;
    max-width: 7.619vw;
  }
  
  .sec01-05__img04 {
    top: 48%;
    left: 76.5%;
    max-width: 10.571vw;
  }
}

.sec01-05__figure03 {
  margin: 0 auto 5rem;
  width: 100%;
  max-width: 79.2rem;
}

.sec01-05__arrow {
  margin: 0 auto 1.7rem;
  width: 100%;
  max-width: 14.3rem;
}

.sec01-05__figure04 {
  margin: 0 auto 7.5rem;
  width: 100%;
  max-width: 79.5rem;
}

@media screen and (max-width: 768px) {
  .sec01-05__figure03 {
    margin: 0 auto 4.762vw;
    max-width: 75.429vw;
  }
  
  .sec01-05__arrow {
    margin: 0 auto 1.619vw;
    max-width: 13.619vw;
  }
  
  .sec01-05__figure04 {
    margin: 0 auto 7.143vw;
    max-width: 75.714vw;
  }
}

.sec02-01, .sec02-02, .sec02-03 {
  position: relative;
}

.sec02-01__figure01 {
  margin: 0 auto;
  width: 100%;
  max-width: 89.2rem;
}

.sec02-01__figure02 {
  margin: -2rem auto 5.3rem;
  width: 100%;
  max-width: 29.6rem;
}

.sec02-01__figure03 {
  margin: 0 auto 5.8rem;
  width: 100%;
  max-width: 25.5rem;
}

.sec02-01__figure04 {
  margin: 0 auto 4.2rem;
  width: 100%;
  max-width: 75.2rem;
}

.sec02-01__img01 {
  position: absolute;
  top: 60px;
  left: 80px;
  width: 100%;
  max-width: 17.9rem;
}

.sec02-01__img02 {
  position: absolute;
  top: 318px;
  left: 48px;
  width: 100%;
  max-width: 17.9rem;
}

.sec02-01__img03 {
  position: absolute;
  top: 160px;
  left: 820px;
  width: 100%;
  max-width: 17.9rem;
}

.sec02-01__img04 {
  position: absolute;
  top: 458px;
  left: 712px;
  width: 100%;
  max-width: 12rem;
}

.sec02-01__container {
  margin: 4rem auto 4.8rem;
  display: flex;
  max-width: 66rem;
}

.sec02-01__figure05 {
  margin: 0 auto 0;
  width: 100%;
  max-width: 25.9rem;
}

.sec02-01__figure06 {
  margin: 1.6rem auto 0;
  width: 100%;
  max-width: 15rem;
}

.sec02-01__figure07 {
  margin: 1.9rem auto 0;
  width: 100%;
  max-width: 15.9rem;
}

.sec02-01__container02 {
  margin: 0 auto 6rem;
  display: flex;
  max-width: 84rem;
}

.sec02-01__figure08, .sec02-01__figure09 {
  margin: 0 auto;
  width: 100%;
  max-width: 37.8rem;
}

@media screen and (max-width: 768px) {
  .sec02-01__figure01 {
    margin: 0 auto;
    max-width: 84.952vw;
  }

  .sec02-01__figure02 {
    margin: -1.905vw auto 5.048vw;
    max-width: 28.190vw;
  }

  .sec02-01__figure03 {
    margin: 0 auto 5.524vw;
    max-width: 24.286vw;
  }

  .sec02-01__figure04 {
    margin: 0 auto 4vw;
    max-width: 71.619vw;
  }
  
  .sec02-01__img01 {
    top: 6%;
    left: 7%;
    max-width: 17.048vw;
  }

  .sec02-01__img02 {
    top: 29%;
    left: 4%;
    max-width: 17.048vw;
  }

  .sec02-01__img03 {
    top: 15%;
    left: 78%;
    max-width: 17.048vw;
  }

  .sec02-01__img04 {
    top: 44%;
    left: 68.5%;
    width: 100%;
    max-width: 11.429vw;
  }
  
  .sec02-01__container {
    margin: 3.810vw auto 4.571vw;
    max-width: 62.857vw;
  }

  .sec02-01__figure05 {
    max-width: 24.667vw;
  }

  .sec02-01__figure06 {
    margin: 1.524vw auto 0;
    max-width: 14.286vw;
  }

  .sec02-01__figure07 {
    margin: 1.810vw auto 0;
    max-width: 15.143vw;
  }

  .sec02-01__container02 {
    margin: 0 auto 5.714vw;
    max-width: 80vw;
  }

  .sec02-01__figure08, .sec02-01__figure09 {
    max-width: 36vw;
  }
}

.sec02-02__figure01 {
  margin: 0 auto 2.5rem;
  width: 100%;
  max-width: 45.1rem;
}

.sec02-02__figure02 {
  margin: 0 auto 4.5rem;
  width: 100%;
  max-width: 60rem;
}

.sec02-02__img01 {
  position: absolute;
  top: 18px;
  left: 48px;
  width: 100%;
  max-width: 17.9rem;
}

.sec02-02__img02 {
  position: absolute;
  top: 288px;
  left: 86px;
  width: 100%;
  max-width: 10.3rem;
}

.sec02-02__img03 {
  position: absolute;
  top: 59px;
  left: 867px;
  width: 100%;
  max-width: 9rem;
}

@media screen and (max-width: 768px) {
  .sec02-02__figure01 {
    margin: 0 auto 2.381vw;
    max-width: 42.952vw;
  }

  .sec02-02__figure02 {
    margin: 0 auto 4.286vw;
    max-width: 57.143vw;
  }
  
  .sec02-02__img01 {
    top: 5%;
    left: 4%;
    max-width: 17.048vw;
  }

  .sec02-02__img02 {
    top: 53%;
    left: 6%;
    max-width: 9.810vw;
  }

  .sec02-02__img03 {
    top: 12%;
    left: 84%;
    width: 100%;
    max-width: 8.571vw;
  }
}

.sec02-03__figure01 {
  margin: 0 auto 2.5rem;
  width: 100%;
  max-width: 45.1rem;
}

.sec02-03__figure02 {
  margin: 0 auto 9rem;
  width: 100%;
  max-width: 60rem;
}

.sec02-03__img01 {
  position: absolute;
  top: 180px;
  left: 85px;
  width: 100%;
  max-width: 10.9rem;
}

.sec02-03__img02 {
  position: absolute;
  top: 25px;
  left: 820px;
  width: 100%;
  max-width: 17.9rem;
}

.sec02-03__img03 {
  position: absolute;
  top: 356px;
  left: 867px;
  width: 100%;
  max-width: 9rem;
}

@media screen and (max-width: 768px) {
  .sec02-03__figure01 {
    margin: 0 auto 2.381vw;
    max-width: 42.952vw;
  }

  .sec02-03__figure02 {
    margin: 0 auto 8.571vw;
    max-width: 57.143vw;
  }
  
  .sec02-03__img01 {
    top: 30%;
    left: 6%;
    max-width: 10.381vw;
  }
    
  .sec02-03__img02 {
    top: 6%;
    left: 80%;
    max-width: 17.048vw;
  }  
  
  .sec02-03__img03 {
    top: 63%;
    left: 84%;
    max-width: 8.571vw;
  }
}

.sec03-01 {
  position: relative;
}

.sec03-01__figure01 {
  margin: 0 auto;
  width: 100%;
  max-width: 89.2rem;
}

.sec03-01__figure02 {
  margin: -2rem auto 4.6rem;
  width: 100%;
  max-width: 29.6rem;
}

.sec03-01__figure03 {
  margin: 0 auto 5.2rem;
  width: 100%;
  max-width: 37.5rem;
}

.sec03-01__figure04 {
  margin: 0 auto 4.5rem;
  width: 100%;
  max-width: 46rem;
}

.sec03-01__figure05 {
  margin: 0 auto 6rem;
  width: 100%;
  max-width: 46rem;
}

.sec03-01__img01 {
  position: absolute;
  top: 60px;
  left: 80px;
  width: 100%;
  max-width: 17.9rem;
}

.sec03-01__img02 {
  position: absolute;
  top: 248px;
  left: 130px;
  width: 100%;
  max-width: 17.4rem;
}

.sec03-01__img03 {
  position: absolute;
  top: 617px;
  left: 50px;
  width: 100%;
  max-width: 17.9rem;
}

.sec03-01__img04 {
  position: absolute;
  top: 170px;
  left: 740px;
  width: 100%;
  max-width: 21.1rem;
}

.sec03-01__img05 {
  position: absolute;
  top: 420px;
  left: 820px;
  width: 100%;
  max-width: 17.9rem;
}

.sec03-01__img06 {
  position: absolute;
  top: 680px;
  left: 803px;
  width: 100%;
  max-width: 13rem;
}

@media screen and (max-width: 768px) {
  .sec03-01__figure01 {
    margin: 0 auto;
    max-width: 84.952vw;
  }

  .sec03-01__figure02 {
    margin: -1.905vw auto 4.381vw;
    max-width: 28.190vw;
  }
  
  .sec03-01__figure03 {
    margin: 0 auto 4.952vw;
    max-width: 35.714vw;
  }

  .sec03-01__figure04 {
    margin: 0 auto 4.286vw;
    max-width: 43.810vw;
  }

  .sec03-01__figure05 {
    margin: 0 auto 7vw;
    max-width: 43.810vw;
  }
  
  .sec03-01__img01 {
    top: 7.5%;
    left: 7%;
    max-width: 17.048vw;
  }
  
  .sec03-01__img02 {
    top: 32.5%;
    left: 12%;
    max-width: 16.571vw;
  }
  
  .sec03-01__img03 {
    top: 78%;
    left: 4%;
    max-width: 17.048vw;
  }
  
  .sec03-01__img04 {
    top: 22%;
    left: 72%;
    max-width: 20.095vw;
  }
  
  .sec03-01__img05 {
    top: 54%;
    left: 78%;
    max-width: 17.048vw;
  }
  
  .sec03-01__img06 {
    top: 86%;
    left: 78%;
    max-width: 12.381vw;
  }
}

.sec04-01 {
  margin: 0 auto;
  padding: 3rem 0 4rem;
  width: 100%;
  /*max-width: 105rem;*/
  background-color:#758b4e;
  position: relative;
}

.sec04-01__figure01 {
  margin: 0 auto 1.9rem;
  width: 100%;
  max-width: 72.7rem;
}

.sec04-01__figure02 {
  margin: 0 auto 2.4rem;
  width: 100%;
  max-width: 81.1rem;
}

.sec04-01__figure03 {
  margin: 0 auto 3rem;
  width: 100%;
  max-width: 82.6rem;
}

@media screen and (max-width: 768px) {
  .sec04-01 {
    padding: 3vw 0 4vw;
  }

  .sec04-01__figure01 {
    margin: 0 auto 1.810vw;
    max-width: 69.238vw;
  }

  .sec04-01__figure02 {
    margin: 0 auto 2.286vw;
    max-width: 75.093vw;
  }

  .sec04-01__figure03 {
    margin: 0 auto 2.857vw;
    max-width: 78.667vw;
  }
}

.secHC {
  margin: 0 auto;
  width: 100%;
  max-width: 96rem;
  background-color: #fff;
  padding: 3rem 1rem 3.5rem;
  border-radius: 2rem;
}

.secHC__ttl  {
  margin: 0 auto;
  max-width: 89.6rem;
  background-color:#9e9f9f;
}

.secHC__ttl__figure {
  margin: 0 auto;
  width: 100%;
  max-width: 38.4rem;
}

.secHC__container {
  margin: 0 auto;
  padding-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  max-width: 89.6rem;
  background-color:#eee;
}

.secHC__figure {
  margin: 0 0 2.2rem 6rem;
  width: 100%;
  max-width: 21.8rem;
}

.sec04-02__arrow {
  margin: 2.8rem auto 1.7rem;
  width: 100%;
  max-width: 14.3rem;
}

.sec04-02__figure01 {
  margin: 0 auto 2rem;
  width: 100%;
  max-width: 79.5rem;
}

.sec04-02__figure02 {
  margin: 0 auto;
  width: 100%;
  max-width: 79.5rem;
}

.sec04-02__img01 {
  position: absolute;
  top: 805px;
  left: 835px;
  width: 100%;
  max-width: 14.2rem;
}

@media screen and (max-width: 768px) {
  .secHC {
    max-width: 91.429vw;
    padding: 2.857vw 0.952vw 3.5vw;
    border-radius: 2rem;
  }

  .secHC__ttl  {
    max-width: 85.333vw;
  }

  .secHC__ttl__figure {
    max-width: 36.571vw;
  }
  
  .secHC__container {
    padding-top: 2.095vw;
    max-width: 85.333vw;
  }

  .secHC__figure {
    margin: 0 0 2.095vw 5.714vw;
    max-width: 20.762vw;
  }

  .sec04-02__arrow {
    margin: 2.667vw auto 1.619vw;
    max-width: 13.619vw;
  }
  
  .sec04-02__figure01 {
    margin: 0 auto 2vw;
    max-width: 75.714vw;
  }

  .sec04-02__figure02 {
    max-width: 75.714vw;
  }
  
  .sec04-02__img01 {
    top: 84%;
    left: 81%;
    max-width: 13.524vw;
  }
}

.instagram-post iframe {
  margin-left: auto!important;
  margin-right: auto!important;
}


.hc__area{
	width: 855px;
	padding-bottom: 3.0%;
	background-color: #efefef;}
	
.hc_btn {
	width: 218px; }
	
.hc_btn img {
    width: 100%; }

.hc__btn__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 22px 5.3% 0;}
    
.section__area{
    width: 93.877%;
    margin-left: 3.0%;
    margin-bottom:  10.204%;}
    
.section__area .section__inner{
    padding-top: 2.244%;
    background-color: #eef2fb;}
    
.area__btn__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0px 2.5% 2.244%;}
    
.area__btn {
    width: 23%; }
    
.area__btn img {
    width: 100%;
    -webkit-backface-visibility: hidden; }
    
.foot__btn__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0px 3.3% 22px;}
    
.foot_banner {
    width: 30.43%; }
    
.foot_banner img {
    width: 100%;
    -webkit-backface-visibility: hidden; }
    
.main .section__head__banners {
    margin-bottom:10.204%; }
    
.main .section__banners,
.main .section__recommend,
.main .section__recommend2{
    margin-bottom:7.148%; }
    
.main .section__head__banners .section__inner,
.main .section__banners .section__inner,
.main .section__recommend2 .section__inner {
	width: 93.877%;
    margin-left: 3.0%; }

.main .section__recommend2 .section__inner:first-child {
	margin-bottom:3%; }

.main .section__recommend .section__inner {
	width: 100%; }
    
.secContent__list {
  margin-top: 25px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .secContent__list {
    max-width: -webkit-calc(100vw - 0px);
    max-width: -moz-calc(100vw - 0px);
    max-width: calc(100vw - 0px);
    margin: 13px auto 0;
  }
}

.secContent__listItem {
  display: block;
  max-width: 48.3696vw;
  margin-bottom: 1.04vw;
  -webkit-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .secContent__listItem {
    max-width: -webkit-calc(97% / 2);
    max-width: -moz-calc(97% / 2);
    max-width: calc(97% / 2);
    margin-bottom: 0.5vw;
  }
}

.main .section__search {
    margin-bottom:10.204%;
    /*width: 980px;
    margin:0 auto 10.204%;*/ }

.main .section__search .section__inner {
    width: 79.387%;
    margin-left: 10.306%; }

.main .section__hc {
	width: 855px;
    margin:0 auto 10.204%;
    background: #9fa0a0;}
    
.main .section__hc .ttl{
    margin: 0 auto;
    width: 671px;}
    
.main .section__hc .ttl img{
    width: 100%;}


.copy{width: 100%;background: #231815;
}

.copyright {
    width: 1050px;
    margin:0 auto;
    padding:40px 0;
    text-align:center;
    font-size: 14px;
    line-height: 2.5; }

.copyright p {
    line-height: 1.7; }


.footer__link{
    margin-bottom:10px;
}

/******************************
  SP
*******************************/
@media screen and (max-width: 768px) {
	.main {
    	width: 100%;
    	margin: 0 auto; }
    
    .footer__ad{
    	width: 100%;
        margin: 0 auto;}
        
    .copyright{
    	width: 100%;
    	padding:30px 0; }
}

/******************************
  page_top
*******************************/

#page_top{
  width: 100px;
  height: 100px;
  position: fixed;
  right: 20px;
  bottom: 40px;
  /*opacity: 0.8;*/
  border-radius: 50%;
}

#page_top a{
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
}

#page_top a::before{
  position: absolute;
  width: 50px;
  height: 50px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

@media screen and (max-width: 768px) {
	#page_top{
	  width: 50px;
	  height: 50px;
	  /*opacity: 0.9;*/
	}

	#page_top a{
	  width: 50px;
	  height: 50px;
	}

	#page_top a::before{
	  width: 25px;
	  height: 25px;
	}

}