@charset "UTF-8";
/*
font-family: 'Montserrat', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
*/
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-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  line-height: 1;
}

.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
}

/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clear {
  clear: both;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  color: #000;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

a {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}

/*------------------------------------------
  サービス別レスポンシブ
------------------------------------------*/
/*youtube*/
.youtubeWrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtubeWrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*googlemap*/
.ggmapWrapper {
  position: relative;
  /*padding-bottom: 56.25%;*/
  height: 480px;
  overflow: hidden;
}

.ggmapWrapper iframe,
.ggmapWrapper object,
.ggmapWrapper embed {
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: 600px;
}

.ggmapWrapper iframe {
  height: 800px;
}

/*------------------------------------------
  color
------------------------------------------*/
/*------------------------------------------
  cmn
------------------------------------------*/
.hoverBtn {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.loopSlide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 208px;
  overflow: hidden;
  position: relative;
}

.loopSlide:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.loopSlide img {
  min-width: calc(3214px / 2);
  max-width: calc(3214px / 2);
  height: calc(500px / 2);
}

.loopSlide img:first-child {
  -webkit-animation: slide1 120s -60s linear infinite;
          animation: slide1 120s -60s linear infinite;
}

.loopSlide img:last-child {
  -webkit-animation: slide2 120s linear infinite;
          animation: slide2 120s linear infinite;
}

@-webkit-keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

@keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

@media screen and (max-width: 768px) {
  .loopSlide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: calc(500px / 3);
    overflow: hidden;
  }
  .loopSlide img {
    min-width: calc(3214px / 3);
    max-width: calc(3214px / 3);
    height: calc(500px / 3);
  }
  .loopSlide img:first-child {
    -webkit-animation: slide1 120s -60s linear infinite;
            animation: slide1 120s -60s linear infinite;
  }
  .loopSlide img:last-child {
    -webkit-animation: slide2 120s linear infinite;
            animation: slide2 120s linear infinite;
  }
}

/*------------------------------------------
  body
------------------------------------------*/
@media screen and (max-width: 768px) {
  #wrapper {
    padding: 60px 0 0 0;
  }
}

/*------------------------------------------
  header nav
------------------------------------------*/
/*PC*/
header {
  width: 100%;
  height: 96px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header .headerInner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

header .headerInner .logoBox {
  height: 100%;
  margin-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1000;
}

header .headerInner .logoBox img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 1149px) {
  header .headerInner .logoBox img {
    width: 30vw;
  }
}

header .headerInner .headerTop {
  display: block;
  position: absolute;
  right: 43px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1000;
  width: 35px;
  height: 35px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header .headerInner nav {
  height: 100%;
  width: 100%;
  display: none;
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 900;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .headerInner nav .navInner {
  min-width: 100%;
}

header .headerInner nav .navInner .bottomMenu {
  padding: 0;
  background: none;
}

@media screen and (max-width: 1070px) {
  header .headerInner nav .navInner .bottomMenu {
    padding: 0;
  }
}

header .headerInner nav .navInner .bottomMenu .links {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .headerInner nav .navInner .bottomMenu .links li {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

header .headerInner nav .navInner .bottomMenu .links li:not(:last-child):after {
  content: "｜";
  display: inline-block;
  padding: 0 1em;
}

header .headerInner nav .navInner .bottomMenu .links li.clearList {
  display: none;
}

header .headerInner nav .navInner .bottomMenu .links li a {
  color: #000;
}

header .headerInner nav .navInner .bottomMenu .links li a:hover {
  text-decoration: underline;
}

header .headerInner nav .navInner .bottomMenu .btnInqWrapper {
  margin-bottom: 50px;
}

header .headerInner nav .navInner .bottomMenu .btnWrapper {
  padding: 50px 0;
  background: #B1B1B1;
}

header .headerInner nav .navInner .bottomMenu .btn {
  max-width: 975px;
  padding: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1000px) {
  header .headerInner nav .navInner .bottomMenu .btn {
    padding: 0 2.5%;
  }
}

header .headerInner nav .navInner .bottomMenu .btn li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 298px;
}

header .headerInner nav .navInner .bottomMenu .btn li a {
  width: 100%;
  max-width: 298px;
  height: 130px;
  border: 5px solid #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 18px;
  color: #FFF;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header .headerInner nav .navInner .bottomMenu .btn li a:hover {
  border-color: #E46B57;
}

header .headerInner nav .navInner .bottomMenu .btn li:nth-child(2) {
  margin: 0 10px;
}

header .headerInner nav .navInner .bottomMenu .btn li:nth-child(1) a {
  background: url("../img/top/footer_btn_img_01.jpg") no-repeat center center/cover;
}

header .headerInner nav .navInner .bottomMenu .btn li:nth-child(2) a {
  background: url("../img/top/footer_btn_img_02.jpg") no-repeat center center/cover;
}

header .headerInner nav .navInner .bottomMenu .btn li:nth-child(3) a {
  background: url("../img/top/footer_btn_img_03.jpg") no-repeat center center/cover;
}

header.fix {
  height: 60px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}

header.fix .logoBox img {
  width: 250px;
}

/*SP*/
@media screen and (max-width: 768px) {
  header {
    height: 60px;
    background: #FFF;
  }
  header .headerInner {
    position: relative;
  }
  header .headerInner:before {
    content: "";
    width: 100%;
    height: 60px;
    display: block;
    background: #FFF;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
  }
  header .headerInner .logoBox {
    margin-left: 5%;
  }
  header .headerInner .logoBox img {
    width: auto;
    max-width: 195px;
  }
  header .headerInner .headerTop {
    right: 5%;
    top: 50%;
  }
  header .headerInner nav .navInner {
    height: 100%;
    padding: 0;
    overflow-y: auto;
  }
  header .headerInner nav .navInner .bottomMenu {
    padding: 100px 0 0 0;
  }
  header .headerInner nav .navInner .bottomMenu .links {
    display: block;
    padding: 20px 0;
    margin: 0 2.5% 30px 2.5%;
    text-align: center;
    border-top: 2px solid #E46B57;
    border-bottom: 2px solid #E46B57;
  }
  header .headerInner nav .navInner .bottomMenu .links li {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
  }
  header .headerInner nav .navInner .bottomMenu .links li:not(:last-child) {
    margin-bottom: 20px;
  }
  header .headerInner nav .navInner .bottomMenu .links li:not(:last-child):after {
    content: none;
    display: inline-block;
    padding: 0 0;
  }
  header .headerInner nav .navInner .bottomMenu .links li a:hover {
    text-decoration: underline;
  }
}

@media screen and (max-width: 768px) and (max-width: 500px) {
  header .headerInner nav .navInner .bottomMenu .links li:nth-child(3):after {
    content: "" !important;
  }
  header .headerInner nav .navInner .bottomMenu .links li.clearList {
    display: block;
    min-width: 100% !important;
    margin: 0;
  }
  header .headerInner nav .navInner .bottomMenu .links li.clearList:after {
    content: none;
  }
}

@media screen and (max-width: 768px) {
  header .headerInner nav .navInner .bottomMenu .btnInqWrapper {
    margin-bottom: 30px;
    padding: 2.5%;
  }
  header .headerInner nav .navInner .bottomMenu .btnInq {
    width: 100%;
    max-width: 590px;
    height: 50px !important;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: url("../img/arrow_right_circle_02.svg") no-repeat right 15px center/30px, #E46B57;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: #FFF;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header .headerInner nav .navInner .bottomMenu .btnInq:hover {
    background-color: #322C2E;
  }
  header .headerInner nav .navInner .bottomMenu .btnWrapper {
    padding: 30px 0;
    background: #B1B1B1;
  }
  header .headerInner nav .navInner .bottomMenu .btn {
    margin: 0 0 0 0;
    padding: 0 2.5%;
    display: block;
  }
  header .headerInner nav .navInner .bottomMenu .btn li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 298px;
    margin: 0 auto 20px auto;
  }
  header .headerInner nav .navInner .bottomMenu .btn li a {
    width: 100%;
    max-width: 298px;
    height: 130px;
    border: 5px solid #FFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-size: 16px;
    color: #FFF;
    letter-spacing: 0.05em;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header .headerInner nav .navInner .bottomMenu .btn li a:hover {
    border-color: #E46B57;
  }
  header .headerInner nav .navInner .bottomMenu .btn li:nth-child(2) {
    margin: 0 auto 20px auto;
  }
  header .headerInner nav .navInner .bottomMenu .btn li:last-child {
    margin-bottom: 0;
  }
}

/*------------------------------------------
  menuTrigger
------------------------------------------*/
.menuBtn {
  width: 100%;
  height: 100%;
  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;
  cursor: pointer;
}

.menu-trigger,
.menu-trigger span {
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.menu-trigger {
  position: relative;
  width: 35px;
  height: 35px;
}

.menu-trigger span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #707070;
  -webkit-transform: translate(0%, 0%) rotate(0deg);
          transform: translate(0%, 0%) rotate(0deg);
}

.menu-trigger span:nth-of-type(1) {
  top: calc(50% - 4px);
  left: 0%;
}

.menu-trigger span:nth-of-type(2) {
  bottom: calc(50% - 4px);
  right: 0%;
}

.menu-trigger.active span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: rotate(45deg) translate(0%, -50%);
          transform: rotate(45deg) translate(0%, -50%);
}

.menu-trigger.active span:nth-of-type(2) {
  bottom: 50%;
  -webkit-transform: rotate(-45deg) translate(0%, 50%);
          transform: rotate(-45deg) translate(0%, 50%);
}

/*------------------------------------------
  #cmn
------------------------------------------*/
.innerBox {
  max-width: 975px;
  margin: 0 auto;
}

/*------------------------------------------
  #mv
------------------------------------------*/
@media screen and (max-width: 768px) {
  .mvWrapper .mv .sp {
    display: block;
  }
  .mvWrapper .mv .pc {
    display: none;
  }
}

/*------------------------------------------
  #cmn
------------------------------------------*/
.ttlBox > h2,
.ttlBox > h3 {
  text-align: center;
  position: relative;
  font-size: large;
}

.ttlBox > h2 span,
.ttlBox > h3 span {
  display: block;
}

.ttlBox > h2 span.en,
.ttlBox > h3 span.en {
  font-size: 26px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #E46B57;
}

.ttlBox > h2 span.jp,
.ttlBox > h3 span.jp {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #322C2E;
}

.ttlBox > h2 span.jp ruby rp,
.ttlBox > h2 span.jp ruby rt,
.ttlBox > h3 span.jp ruby rp,
.ttlBox > h3 span.jp ruby rt {
  font-size: 14px;
}

.ttlBox > h2.line::before,
.ttlBox > h3.line::before {
  content: "";
  width: 1px;
  height: 108px;
  display: block;
  background: #707070;
  position: absolute;
  right: 50%;
  top: -115px;
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
}

.ttlBox > h3 {
  text-align: left;
}

.ttlBox > h3 span.en {
  font-size: 16px;
}

.ttlBox > h3 span.jp {
  font-size: 26px;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .ttlBox > h2 span.en {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #E46B57;
  }
  .ttlBox > h2 span.jp {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #322C2E;
  }
  .ttlBox > h2 span.jp ruby rp,
  .ttlBox > h2 span.jp ruby rt {
    font-size: 10px;
  }
  .ttlBox > h2.line::before {
    content: "";
    width: 1px;
    height: 100px;
    display: block;
    background: #707070;
    position: absolute;
    right: 50%;
    top: -100px;
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }
  .ttlBox > h3 {
    text-align: left;
  }
  .ttlBox > h3 span.en {
    font-size: 18px;
  }
  .ttlBox > h3 span.jp {
    font-size: 24px;
  }
}

/*------------------------------------------
  #contents_01
------------------------------------------*/
#topPage .contents_bg_01 {
  margin: 0 0 110px 0;
  position: relative;
}

#topPage .contents_bg_01::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: #F0F0F0;
  border-bottom: 5px solid #E46B57;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

#topPage .contents_bg_01::before {
  content: "";
  width: 2000px;
  height: 100%;
  display: block;
  background: #FFF;
  position: absolute;
  right: 50%;
  top: 0;
  z-index: 2;
  -webkit-transform: translate(-30%, 0);
          transform: translate(-30%, 0);
}

#topPage .contents_bg_01 .contents_01 {
  position: relative;
  z-index: 3;
  padding: 110px 0 120px 0;
}

#topPage .contents_bg_01 .contents_01 .boxLR {
  margin: 0 0 70px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#topPage .contents_bg_01 .contents_01 .boxLR .ttlBox {
  text-align: left;
  padding: 0 0 0 55px;
  margin-right: 100px;
}

#topPage .contents_bg_01 .contents_01 .boxLR .boxR {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

#topPage .contents_bg_01 .contents_01 .boxLR .boxR .txtBox p {
  font-size: 18px;
  line-height: 2;
}

@media screen and (max-width: 900px) {
  #topPage .contents_bg_01 .contents_01 .boxLR .boxR .txtBox {
    padding-right: 2.5%;
  }
}

#topPage .contents_bg_01 .contents_01 .imgBox {
  text-align: center;
}

@media screen and (max-width: 768px) {
  #topPage .contents_bg_01 {
    margin: 0 0 100px 0;
    position: relative;
  }
  #topPage .contents_bg_01 .contents_01 {
    padding: 50px 5% 50px 5%;
  }
  #topPage .contents_bg_01 .contents_01 .boxLR {
    margin: 0 0 50px 0;
    display: block;
  }
  #topPage .contents_bg_01 .contents_01 .boxLR .ttlBox {
    text-align: center;
    padding: 0;
    margin: 0 0 50px 0;
  }
  #topPage .contents_bg_01 .contents_01 .boxLR .ttlBox span.en {
    margin-bottom: 30px;
    display: block;
  }
  #topPage .contents_bg_01 .contents_01 .boxLR .boxR {
    width: 100%;
  }
  #topPage .contents_bg_01 .contents_01 .boxLR .boxR .txtBox {
    padding: 0;
  }
  #topPage .contents_bg_01 .contents_01 .boxLR .boxR .txtBox p {
    font-size: 14px;
    line-height: 2;
  }
  #topPage .contents_bg_01 .contents_01 .boxLR .boxR .txtBox p:not(:last-child) {
    margin-bottom: 1em;
  }
}

/*------------------------------------------
  #contents_02
------------------------------------------*/
#topPage .contents_bg_02 {
  padding: 70px 0 110px 0;
  background: url("../img/top/bg_con_02.jpg") no-repeat center center/cover;
}

#topPage .contents_bg_02 .contents_02 .ttlBox {
  margin-bottom: 45px;
  max-width: 500px;
  font-size: 20px;
}


/*
#topPage .contents_bg_02 .contents_02 .twitterBox {
  max-width: 700px;
  height: 500px;
  padding: 0px 5px;
  margin: 0 auto;
  border: 1px solid #707070;
  overflow-y: scroll;
  background: #FFF;
}*/

/*-------------------------------------------------
#topPage .contents_bg_02 .contents_02 .twitterBox {
  max-width: 535px;
  height: 700px;
  padding: 0px 5px;
  margin: 0 auto;
  border: 1px solid #707070;
  overflow-y: scroll;
  background: #FFF;
}
-----------------------------------------------------*/

@media screen and (max-width: 768px) {
  #topPage .contents_bg_02 {
    padding: 50px 2.5% 50px 2.5%;
    background: url("../img/top/bg_con_02.jpg") no-repeat center center/cover;
  }
  #topPage .contents_bg_02 .contents_02 .ttlBox {
    margin-bottom: 50px;
  }
  #topPage .contents_bg_02 .contents_02 .twitterBox {
    max-width: 535px;
    height: 350px;
    padding: 0px 5px;
    margin: 0 auto;
    overflow-y: scroll;
    background: #FFF;
  }
}

/*------------------------------------------
  #contents_03
------------------------------------------*/
#topPage .contents_bg_03 {
  padding: 110px 0;
}

#topPage .contents_bg_03 .contents_03 .ttlBox {
  text-align: center;
}


@media screen and (max-width: 1000px) {
  #topPage .contents_bg_03 {
    padding: 110px 2.5%;
  }
}
#topPage .contents_bg_03 .contents_03 .ttlBox {
  margin-bottom: 165px;
}

#topPage .contents_bg_03 .contents_03 .boxWrapper .box {
  max-width: 1180px;
  margin: 0 auto;
  padding: 255px 0 45px 0;
  background: #F0F0F0;
  border-bottom: 5px solid #E46B57;
  position: relative;
}

@media screen and (max-width: 768px) {
  #topPage .contents_bg_03 .contents_03 .boxWrapper .box {
    padding: 22vw 2.5% 45px 2.5%;
  }
}

#topPage .contents_bg_03 .contents_03 .boxWrapper .box:not(:last-child) {
  margin-bottom: 205px;
}

#topPage .contents_bg_03 .contents_03 .boxWrapper .box .imgBox {
  width: 100%;
  max-width: 975px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: -108px;
}

@media screen and (max-width: 1000px) {
  #topPage .contents_bg_03 .contents_03 .boxWrapper .box .imgBox {
    width: 95%;
  }
}

#topPage .contents_bg_03 .contents_03 .boxWrapper .box .imgBox .img_01 {
  margin-right: 27px;
}

#topPage .contents_bg_03 .contents_03 .boxWrapper .box .txtBox {
  margin: 0 0 25px 0;
  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;
}

#topPage .contents_bg_03 .contents_03 .boxWrapper .box .txtBox .logoBox {
  width: 100%;
  min-width: 240px;
  max-width: 310px;
  margin: 0 20px 0 0;
  text-align: center;
}

#topPage .contents_bg_03 .contents_03 .boxWrapper .box .txtBox p {
  max-width: 638px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 400;
  line-height: 1.8;
}

#topPage .contents_bg_03 .contents_03 .boxWrapper .box .linkBox {
  text-align: right;
}

@media screen and (max-width: 1000px) {
  #topPage .contents_bg_03 .contents_03 .boxWrapper .box .linkBox {
    padding-right: 2.5%;
  }
}

#topPage .contents_bg_03 .contents_03 .boxWrapper .box .linkBox a {
  width: 158px;
  height: 42px;
  margin-left: auto;
  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;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #322C2E;
  position: relative;
}

#topPage .contents_bg_03 .contents_03 .boxWrapper .box .linkBox a::before {
  content: "";
  width: 0px;
  height: 2px;
  display: block;
  background: #E46B57;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#topPage .contents_bg_03 .contents_03 .boxWrapper .box .linkBox a::after {
  content: "";
  width: 42px;
  height: 42px;
  display: block;
  background: url("../img/arrow_right_circle_01.svg") no-repeat center center;
}

#topPage .contents_bg_03 .contents_03 .boxWrapper .box .linkBox a:hover::before {
  width: 100px;
}

@media screen and (max-width: 768px) {
  #topPage .contents_bg_03 {
    padding: 50px 2.5%;
  }
  #topPage .contents_bg_03 .contents_03 .ttlBox {
    margin-bottom: 22vw;
  }
  #topPage .contents_bg_03 .contents_03 .boxWrapper .box {
    padding: 20vw 0 30px 0;
    background: #F0F0F0;
    border-bottom: 5px solid #E46B57;
    position: relative;
  }
  #topPage .contents_bg_03 .contents_03 .boxWrapper .box:not(:last-child) {
    margin-bottom: 25vw;
  }
  #topPage .contents_bg_03 .contents_03 .boxWrapper .box .imgBox {
    width: 100%;
    max-width: 975px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: absolute;
    top: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  #topPage .contents_bg_03 .contents_03 .boxWrapper .box .imgBox .img_01 {
    margin-right: 10px;
  }
  #topPage .contents_bg_03 .contents_03 .boxWrapper .box .txtBox {
    margin: 0 0 25px 0;
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #topPage .contents_bg_03 .contents_03 .boxWrapper .box .txtBox .logoBox {
    width: 100%;
    min-width: 240px;
    max-width: inherit;
    margin: 0 0 20px 0;
    text-align: center;
  }
  #topPage .contents_bg_03 .contents_03 .boxWrapper .box .txtBox .logoBox img {
    max-width: 180px;
  }
  #topPage .contents_bg_03 .contents_03 .boxWrapper .box .txtBox p {
    padding: 0 2.5%;
    font-size: 14px;
  }
  #topPage .contents_bg_03 .contents_03 .boxWrapper .box .linkBox {
    text-align: right;
  }
  #topPage .contents_bg_03 .contents_03 .boxWrapper .box .linkBox a {
    width: 158px;
    height: 42px;
    margin-left: auto;
    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;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: #322C2E;
    position: relative;
  }
  #topPage .contents_bg_03 .contents_03 .boxWrapper .box .linkBox a::before {
    content: "";
    width: 0px;
    height: 2px;
    display: block;
    background: #E46B57;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #topPage .contents_bg_03 .contents_03 .boxWrapper .box .linkBox a::after {
    content: "";
    width: 42px;
    height: 42px;
    display: block;
    background: url("../img/arrow_right_circle_01.svg") no-repeat center center;
  }
  #topPage .contents_bg_03 .contents_03 .boxWrapper .box .linkBox a:hover::before {
    width: 100px;
  }
}

/*------------------------------------------
  #contents_04
------------------------------------------*/
#topPage .contents_bg_04 {
  padding: 65px 0 110px 0;
  margin: 0 0 110px 0;
  background: url("../img/top/bg_con_04.jpg") no-repeat center center/cover;
}

#topPage .contents_bg_04 .contents_04 .ttlBox {
  margin-bottom: 75px;
}

#topPage .contents_bg_04 .contents_04 .boxWrapper .box {
  max-width: 720px;
  margin: 0 auto;
  padding: 54px 54px 44px 54px;
  background: #FFF;
  position: relative;
}

#topPage .contents_bg_04 .contents_04 .boxWrapper .box:not(:last-child) {
  margin-bottom: 55px;
}

#topPage .contents_bg_04 .contents_04 .boxWrapper .box h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0px;
  -webkit-transform: translate(0, -40%);
          transform: translate(0, -40%);
}

#topPage .contents_bg_04 .contents_04 .boxWrapper .box h3 .icon {
  margin-right: 10px;
}

#topPage .contents_bg_04 .contents_04 .boxWrapper .box h3 .num {
  font-size: 60px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #E46B57;
  line-height: 1;
  letter-spacing: 0.1em;
}

#topPage .contents_bg_04 .contents_04 .boxWrapper .box h4 {
  margin-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #1A1311;
  background: url("../img/top/icon_con_04_check.svg") no-repeat right top;
}

#topPage .contents_bg_04 .contents_04 .boxWrapper .box h4::before {
  content: "";
  width: 54px;
  height: 35.5px;
  display: block;
}

#topPage .contents_bg_04 .contents_04 .boxWrapper .box h4.icon_01::before {
  background: url("../img/top/icon_con_04_01.svg") no-repeat left center;
}

#topPage .contents_bg_04 .contents_04 .boxWrapper .box h4.icon_02::before {
  background: url("../img/top/icon_con_04_02.svg") no-repeat left center;
}

#topPage .contents_bg_04 .contents_04 .boxWrapper .box h4.icon_03::before {
  background: url("../img/top/icon_con_04_03.svg") no-repeat left center;
}

#topPage .contents_bg_04 .contents_04 .boxWrapper .box p {
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  #topPage .contents_bg_04 {
    padding: 50px 2.5% 50px 2.5%;
    margin: 0 0 50px 0;
    background: url("../img/top/bg_con_04.jpg") no-repeat center center/cover;
  }
  #topPage .contents_bg_04 .contents_04 .ttlBox {
    margin-bottom: 50px;
  }
  #topPage .contents_bg_04 .contents_04 .boxWrapper .box {
    max-width: 720px;
    margin: 0 auto;
    padding: 50px 2.5% 50px 2.5%;
    background: #FFF;
    position: relative;
  }
  #topPage .contents_bg_04 .contents_04 .boxWrapper .box:not(:last-child) {
    margin-bottom: 55px;
  }
  #topPage .contents_bg_04 .contents_04 .boxWrapper .box h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 0px;
    -webkit-transform: translate(0, -40%);
            transform: translate(0, -40%);
  }
  #topPage .contents_bg_04 .contents_04 .boxWrapper .box h3 .icon {
    margin-right: 10px;
  }
  #topPage .contents_bg_04 .contents_04 .boxWrapper .box h3 .num {
    font-size: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #E46B57;
    line-height: 1;
    letter-spacing: 0.1em;
  }
  #topPage .contents_bg_04 .contents_04 .boxWrapper .box h4 {
    padding-right: 40px;
    margin-bottom: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 20px;
    font-weight: 500;
    color: #1A1311;
    background: url("../img/top/icon_con_04_check.svg") no-repeat right top;
  }
  #topPage .contents_bg_04 .contents_04 .boxWrapper .box h4::before {
    content: "";
    width: 54px;
    height: 35.5px;
    display: block;
  }
  #topPage .contents_bg_04 .contents_04 .boxWrapper .box p {
    font-size: 14px;
  }
}

/*------------------------------------------
  #contents_05
------------------------------------------*/
#topPage .contents_bg_05 {
  padding: 0 0 5px 0;
  margin: 0 0 175px 0;
  position: relative;
}

#topPage .contents_bg_05::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: #F0F0F0;
  border-bottom: 5px solid #E46B57;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

#topPage .contents_bg_05::before {
  content: "";
  width: 2000px;
  height: 100%;
  display: block;
  background: #FFF;
  position: absolute;
  right: 50%;
  top: 0;
  z-index: 2;
  -webkit-transform: translate(-30%, 0);
          transform: translate(-30%, 0);
}

#topPage .contents_bg_05 .contents_05 {
  position: relative;
  z-index: 3;
}

#topPage .contents_bg_05 .contents_05 .boxLR {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 570px;
}

#topPage .contents_bg_05 .contents_05 .boxLR .imgBox {
  min-width: 500px;
  margin-right: 10px;
  position: relative;
}

#topPage .contents_bg_05 .contents_05 .boxLR .imgBox img {
  width: 100%;
  min-width: 500px;
  position: absolute;
  right: 0px;
  bottom: 10px;
}

#topPage .contents_bg_05 .contents_05 .boxLR .txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 64px 30px 110px 0;
}

#topPage .contents_bg_05 .contents_05 .boxLR .txtBox .ttlBox {
  margin-bottom: 55px;
}

#topPage .contents_bg_05 .contents_05 .boxLR .txtBox .ttlBox h2 {
  text-align: right;
}

#topPage .contents_bg_05 .contents_05 .boxLR .txtBox .txt {
  max-width: 540px;
  margin: 0 0 30px auto;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

#topPage .contents_bg_05 .contents_05 .boxLR .txtBox .nameBox {
  text-align: right;
}

#topPage .contents_bg_05 .contents_05 .boxLR .txtBox .nameBox .sTxt {
  margin-right: 1em;
  font-size: 18px;
  letter-spacing: 0.03em;
  display: inline-block;
}

#topPage .contents_bg_05 .contents_05 .boxLR .txtBox .nameBox .name {
  font-size: 30px;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
  #topPage .contents_bg_05 {
    padding: 0 0 5px 0;
    margin: 0 0 150px 0;
    position: relative;
  }
  #topPage .contents_bg_05 .contents_05 .boxLR {
    display: block;
    min-height: inherit;
    padding: 0 2.5%;
  }
  #topPage .contents_bg_05 .contents_05 .boxLR .imgBox {
    min-width: inherit;
    padding: 0 0 0 0;
    margin: 0 0 20px 0;
    position: relative;
    text-align: center;
  }
  #topPage .contents_bg_05 .contents_05 .boxLR .imgBox img {
    width: 100%;
    min-width: inherit;
    max-width: 280px;
    position: inherit;
    right: inherit;
    bottom: inherit;
  }
  #topPage .contents_bg_05 .contents_05 .boxLR .txtBox {
    max-width: 500px;
    margin: 0 auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 50px 2.5% 50px 2.5%;
  }
  #topPage .contents_bg_05 .contents_05 .boxLR .txtBox .ttlBox {
    margin-bottom: 50px;
  }
  #topPage .contents_bg_05 .contents_05 .boxLR .txtBox .ttlBox h2 {
    text-align: center;
  }
  #topPage .contents_bg_05 .contents_05 .boxLR .txtBox .txt {
    max-width: inherit;
    margin: 0 0 30px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
  }
  #topPage .contents_bg_05 .contents_05 .boxLR .txtBox .nameBox {
    text-align: right;
  }
  #topPage .contents_bg_05 .contents_05 .boxLR .txtBox .nameBox .sTxt {
    margin-right: 1em;
    font-size: 14px;
    letter-spacing: 0.03em;
    display: inline-block;
  }
  #topPage .contents_bg_05 .contents_05 .boxLR .txtBox .nameBox .name {
    font-size: 20px;
    letter-spacing: 0.03em;
  }
}

/*------------------------------------------
  #contents_06
------------------------------------------*/
#topPage .contents_bg_06 {
  margin: 0 0 110px 0;
}

#topPage .contents_bg_06 .contents_06 .ttlBox {
  margin-bottom: 45px;
}

#topPage .contents_bg_06 .contents_06 .frameBox {
  max-width: 950px;
  margin: 0 auto;
  padding: 90px 110px;
  border: 10px solid #F0F0F0;
}

#topPage .contents_bg_06 .contents_06 .frameBox .boxTop {
  margin-bottom: 75px;
}

#topPage .contents_bg_06 .contents_06 .frameBox .boxTop dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#topPage .contents_bg_06 .contents_06 .frameBox .boxTop dl:not(:last-child) {
  margin-bottom: 30px;
}

#topPage .contents_bg_06 .contents_06 .frameBox .boxTop dl dt {
  min-width: 188px;
  height: 30px;
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #E46B57;
  border: 1px solid #E46B57;
}

#topPage .contents_bg_06 .contents_06 .frameBox .boxTop dl dd {
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#topPage .contents_bg_06 .contents_06 .frameBox .btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#topPage .contents_bg_06 .contents_06 .frameBox .btnBox a {
  width: 100%;
  max-width: 276px;
  height: 60px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #FFF;
  background: url("../img/btn_white_arrow.svg") no-repeat right 4px bottom 4px, #322C2E;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#topPage .contents_bg_06 .contents_06 .frameBox .btnBox a:not(:last-child) {
  margin-right: 40px;
}

#topPage .contents_bg_06 .contents_06 .frameBox .btnBox a:hover {
  background-color: #E46B57;
}

@media screen and (max-width: 768px) {
  #topPage .contents_bg_06 {
    margin: 0 2.5% 50px 2.5%;
  }
  #topPage .contents_bg_06 .contents_06 .ttlBox {
    margin-bottom: 50px;
  }
  #topPage .contents_bg_06 .contents_06 .frameBox {
    max-width: 950px;
    margin: 0 auto;
    padding: 50px 2.5%;
    border: 5px solid #F0F0F0;
  }
  #topPage .contents_bg_06 .contents_06 .frameBox .boxTop {
    margin-bottom: 50px;
  }
  #topPage .contents_bg_06 .contents_06 .frameBox .boxTop dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #topPage .contents_bg_06 .contents_06 .frameBox .boxTop dl:not(:last-child) {
    margin-bottom: 30px;
  }
  #topPage .contents_bg_06 .contents_06 .frameBox .boxTop dl dt {
    min-width: 90px;
    height: 30px;
    margin-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1;
    color: #E46B57;
    border: 1px solid #E46B57;
    font-size: 14px;
  }
  #topPage .contents_bg_06 .contents_06 .frameBox .boxTop dl dd {
    letter-spacing: 0.03em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
  }
  #topPage .contents_bg_06 .contents_06 .frameBox .btnBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #topPage .contents_bg_06 .contents_06 .frameBox .btnBox a {
    width: 100%;
    max-width: 276px;
    height: 60px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: #FFF;
    background: url("../img/btn_white_arrow.svg") no-repeat right 4px bottom 4px, #322C2E;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #topPage .contents_bg_06 .contents_06 .frameBox .btnBox a:not(:last-child) {
    margin-right: 20px;
  }
  #topPage .contents_bg_06 .contents_06 .frameBox .btnBox a:hover {
    background-color: #E46B57;
  }
}

/*------------------------------------------
  #contents_07
------------------------------------------*/
#topPage .contents_bg_07 {
  padding: 85px 0;
}

#topPage .btnInq {
  width: 100%;
  max-width: 590px;
  height: 100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url("../img/arrow_right_circle_02.svg") no-repeat right 38px center, #E46B57;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: #FFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#topPage .btnInq:hover {
  background-color: #322C2E;
}

@media screen and (max-width: 768px) {
  #topPage .contents_bg_07 {
    padding: 80px 2.5%;
  }
  #topPage .btnInq {
    width: 100%;
    max-width: 590px;
    height: 80px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: url("../img/arrow_right_circle_02.svg") no-repeat right 15px center/30px, #E46B57;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: #FFF;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #topPage .btnInq:hover {
    background-color: #322C2E;
  }
}

/*------------------------------------------
  footer
------------------------------------------*/
footer {
  position: relative;
}

footer #toTop {
  position: absolute;
  right: 35px;
  top: -48px;
}

footer .bottomBox {
  padding: 30px;
  background: #322C2E;
}

footer .bottomBox .boxLR {
  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;
}

footer .bottomBox .boxLR ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .bottomBox .boxLR ul li {
  font-size: 14px;
  font-weight: 400;
  color: #FFF;
}

footer .bottomBox .boxLR ul li:not(:last-child):after {
  content: "｜";
  display: inline-block;
  padding: 0 1em;
}

footer .bottomBox .boxLR ul li a {
  color: #FFF;
}

footer .bottomBox .boxLR ul li a:hover {
  text-decoration: underline;
}

footer .bottomBox .boxLR #copy small {
  font-size: 12px;
  font-weight: 400;
  color: #FFF;
}

.bottomMenu {
  padding: 75px 0;
  background: #B1B1B1;
}

@media screen and (max-width: 1070px) {
  .bottomMenu {
    padding: 120px 0 75px 0;
  }
}

.bottomMenu .btn {
  margin: 0 0 45px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1000px) {
  .bottomMenu .btn {
    padding: 0 2.5%;
  }
}

.bottomMenu .btn li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 298px;
}

.bottomMenu .btn li a {
  width: 100%;
  max-width: 298px;
  height: 130px;
  border: 5px solid #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 18px;
  color: #FFF;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.bottomMenu .btn li a:hover {
  border-color: #E46B57;
}

.bottomMenu .btn li:nth-child(2) {
  margin: 0 10px;
}

.bottomMenu .btn li:nth-child(1) a {
  background: url("../img/top/footer_btn_img_01.jpg") no-repeat center center/cover;
}

.bottomMenu .btn li:nth-child(2) a {
  background: url("../img/top/footer_btn_img_02.jpg") no-repeat center center/cover;
}

.bottomMenu .btn li:nth-child(3) a {
  background: url("../img/top/footer_btn_img_03.jpg") no-repeat center center/cover;
}

.bottomMenu .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bottomMenu .links li {
  font-size: 14px;
  font-weight: 400;
  color: #FFF;
}

.bottomMenu .links li:not(:last-child):after {
  content: "｜";
  display: inline-block;
  padding: 0 1em;
}

.bottomMenu .links li.clearList {
  display: none;
}

.bottomMenu .links li a {
  color: #FFF;
}

.bottomMenu .links li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  footer #toTop {
    position: absolute;
    right: 35px;
    top: -48px;
  }
  footer .bottomBox {
    padding: 30px 0.25%;
    background: #322C2E;
  }
  footer .bottomBox .boxLR {
    display: block;
    text-align: center;
  }
  footer .bottomBox .boxLR ul {
    margin: 0 0 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .bottomBox .boxLR ul li {
    font-size: 13px;
    font-weight: 400;
    color: #FFF;
  }
  footer .bottomBox .boxLR ul li:not(:last-child) {
    margin-bottom: 0 0 10px 0;
  }
  footer .bottomBox .boxLR ul li:not(:last-child):after {
    content: "｜";
    display: inline-block;
    padding: 0 1em;
  }
}

@media screen and (max-width: 768px) and (max-width: 500px) {
  footer .bottomBox .boxLR ul li {
    min-width: 100%;
    margin: 0;
  }
  footer .bottomBox .boxLR ul li:not(:last-child) {
    margin: 0 0 10px 0;
  }
  footer .bottomBox .boxLR ul li:not(:last-child):after {
    content: none;
  }
}

@media screen and (max-width: 768px) {
  footer .bottomBox .boxLR ul li a {
    color: #FFF;
  }
  footer .bottomBox .boxLR ul li a:hover {
    text-decoration: underline;
  }
  footer .bottomBox .boxLR #copy small {
    font-size: 12px;
    font-weight: 400;
    color: #FFF;
  }
  .bottomMenu {
    padding: 120px 0 50px 0;
  }
  .bottomMenu .btn {
    margin: 0 0 45px 0;
    padding: 0 2.5%;
    display: block;
  }
  .bottomMenu .btn li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 298px;
    margin: 0 auto 20px auto;
  }
  .bottomMenu .btn li a {
    width: 100%;
    max-width: 298px;
    height: 130px;
    border: 5px solid #FFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-size: 16px;
    color: #FFF;
    letter-spacing: 0.05em;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .bottomMenu .btn li a:hover {
    border-color: #E46B57;
  }
  .bottomMenu .btn li:nth-child(2) {
    margin: 0 auto 20px auto;
  }
  .bottomMenu .btn li:last-child {
    margin-bottom: 0;
  }
  .bottomMenu .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 2.5%;
  }
  .bottomMenu .links li {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 400;
    color: #FFF;
  }
  .bottomMenu .links li:not(:last-child):after {
    content: "｜";
    display: inline-block;
    padding: 0 0;
  }
  .bottomMenu .links li a {
    color: #FFF;
  }
  .bottomMenu .links li a:hover {
    text-decoration: underline;
  }
}

@media screen and (max-width: 768px) and (max-width: 500px) {
  .bottomMenu .links li:nth-child(3):after {
    content: "" !important;
  }
  .bottomMenu .links li.clearList {
    display: block;
    min-width: 100% !important;
    margin: 0;
  }
  .bottomMenu .links li.clearList:after {
    content: none;
  }
}

/*------------------------------------------
  モーダル
------------------------------------------*/
.modalContents {
  display: none;
}

.modaal-container {
  max-width: 100%;
  background: none;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
}

.modaal-content-container {
  padding: 0;
}

.modaal-overlay {
  background: rgba(255, 255, 255, 0.9) !important;
  opacity: 1 !important;
  z-index: 1000;
}

/*.modaal-inner-wrapper{
	padding: 200px 0 100px 0;
}*/
.modalInner .modaal-close.layer {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.modalInner > .box {
  min-width: 950px;
  max-width: 950px;
  margin: 0 auto;
  padding: 0;
}

.modalInner > .box .contents .contentsInner {
  position: relative;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border: 10px solid #F0F0F0;
  background: #FFF;
  padding: 90px 2.5%;
}

.modalInner > .box .contents .contentsInner .btnCloseBoxTop {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
}

.modalInner > .box .contents .contentsInner .btnCloseBoxTop a {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #322C2E;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.modalInner > .box .contents .contentsInner .btnCloseBoxTop a:hover {
  background: rgba(0, 0, 0, 0.3);
}

.modalInner > .box .contents .contentsInner .btnCloseBoxBottom a {
  width: 200px;
  height: 60px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  background: #FFF;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  color: #E46B57;
  border: 1px solid #322C2E;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.modalInner > .box .contents .contentsInner .btnCloseBoxBottom a:hover {
  background: #322C2E;
  color: #FFF;
}

.modalInner > .box .contents .contentsInner .visionBox {
  max-width: 688px;
  margin: 0 auto 80px auto;
}

.modalInner > .box .contents .contentsInner .visionBox .box:not(:last-child) {
  margin-bottom: 100px;
}

.modalInner > .box .contents .contentsInner .visionBox .box .ttlBox {
  margin-bottom: 30px;
}

.modalInner > .box .contents .contentsInner .visionBox .box p {
  padding: 0 0 0 65px;
  position: relative;
  color: #322C2E;
  font-weight: 400;
}

.modalInner > .box .contents .contentsInner .visionBox .box p:before {
  content: "";
  width: 45px;
  height: 1px;
  display: block;
  background: #707070;
  position: absolute;
  left: 0;
  top: 0.8em;
}

.modalInner > .box .contents .contentsInner .historyBox {
  max-width: 688px;
  margin: 0 auto 80px auto;
}

.modalInner > .box .contents .contentsInner .historyBox .ttlBox {
  margin-bottom: 50px;
}

.modalInner > .box .contents .contentsInner .historyBox .list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modalInner > .box .contents .contentsInner .historyBox .list dl:not(:last-child) {
  margin-bottom: 30px;
}

.modalInner > .box .contents .contentsInner .historyBox .list dl dt {
  margin-right: 58px;
}

.modalInner > .box .contents .contentsInner .historyBox .list dl dt span {
  min-width: 76px;
  max-width: 76px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  color: #E46B57;
  border: 1px solid #E46B57;
  position: relative;
}

.modalInner > .box .contents .contentsInner .historyBox .list dl dt span:after {
  content: "";
  width: 42px;
  height: 1px;
  display: block;
  background: #E46B57;
  position: absolute;
  top: 50%;
  right: -42px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.modalInner > .box .contents .contentsInner .historyBox .list dl dd {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.modalInner > .box .contents .contentsInner .historyBox .list dl dd ul li {
  line-height: 1.8;
  position: relative;
}

.modalInner > .box .contents .contentsInner .historyBox .list dl dd ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  background: #E46B57;
  border-radius: 10px;
  position: absolute;
  left: -22px;
  top: 10px;
}

@media screen and (max-width: 768px) {
  .modaal-inner-wrapper {
    padding: 50px 2%;
  }
  .modalInner .modaal-close.layer {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  .modalInner .box {
    min-width: inherit;
    max-width: 980px;
    margin: 0 auto;
    padding: 0;
  }
  .modalInner .box .contents .contentsInner {
    position: relative;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border: 5px solid #F0F0F0;
    background: #FFF;
    padding: 90px 5%;
  }
  .modalInner .box .contents .contentsInner .btnCloseBoxTop {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 2;
  }
  .modalInner .box .contents .contentsInner .btnCloseBoxTop a {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid #322C2E;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .modalInner .box .contents .contentsInner .btnCloseBoxTop a:hover {
    background: rgba(0, 0, 0, 0.3);
  }
  .modalInner .box .contents .contentsInner .btnCloseBoxBottom a {
    width: 200px;
    height: 60px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    background: #FFF;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    color: #E46B57;
    border: 1px solid #322C2E;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .modalInner .box .contents .contentsInner .btnCloseBoxBottom a:hover {
    background: #322C2E;
    color: #FFF;
  }
  .modalInner .box .contents .contentsInner .visionBox {
    max-width: 688px;
    margin: 0 auto 80px auto;
  }
  .modalInner .box .contents .contentsInner .visionBox .box:not(:last-child) {
    margin-bottom: 100px;
  }
  .modalInner .box .contents .contentsInner .visionBox .box .ttlBox {
    margin-bottom: 30px;
  }
  .modalInner .box .contents .contentsInner .visionBox .box p {
    padding: 0 0 0 40px;
    position: relative;
    color: #322C2E;
    font-weight: 400;
    font-size: 14px;
  }
  .modalInner .box .contents .contentsInner .visionBox .box p:before {
    content: "";
    width: 30px;
    height: 1px;
    display: block;
    background: #707070;
    position: absolute;
    left: 0;
    top: 0.8em;
  }
  .modalInner .box .contents .contentsInner .historyBox {
    max-width: 688px;
    margin: 0 auto 80px auto;
  }
  .modalInner .box .contents .contentsInner .historyBox .ttlBox {
    margin-bottom: 30px;
  }
  .modalInner .box .contents .contentsInner .historyBox .list dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .modalInner .box .contents .contentsInner .historyBox .list dl:not(:last-child) {
    margin-bottom: 30px;
  }
  .modalInner .box .contents .contentsInner .historyBox .list dl dt {
    margin-right: 42px;
  }
  .modalInner .box .contents .contentsInner .historyBox .list dl dt span {
    min-width: 60px;
    max-width: 60px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    color: #E46B57;
    border: 1px solid #E46B57;
    position: relative;
  }
  .modalInner .box .contents .contentsInner .historyBox .list dl dt span:after {
    content: "";
    width: 25px;
    height: 1px;
    display: block;
    background: #E46B57;
    position: absolute;
    top: 50%;
    right: -25px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .modalInner .box .contents .contentsInner .historyBox .list dl dd {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .modalInner .box .contents .contentsInner .historyBox .list dl dd ul li {
    line-height: 1.8;
    position: relative;
    font-size: 14px;
  }
  .modalInner .box .contents .contentsInner .historyBox .list dl dd ul li:before {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    background: #E46B57;
    border-radius: 10px;
    position: absolute;
    left: -22px;
    top: 10px;
  }
}
/*# sourceMappingURL=style.css.map */