@charset "UTF-8";
/* *****************************
 *
 * Import file to Scss or Sass.
 *
 **************************** */
/* -----------------------------------------------------------------
Title: reset.css
Created: 2020-02-20
Last Modified: 2020-03-26
------------------------------------------------------------------ */
/*　目次 
-----------------------------------------------------------------

#01-リセット
#02-基本タグの定義
#03-CSSハック

------------------------------------------------------------------ */
/* -----------------------------------------------------------------

#01　リセット

------------------------------------------------------------------ */
* {
  font-style: normal;
  margin: 0px;
  padding: 0px;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
}

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

caption, th {
  text-align: left;
}

ol, ul, dl {
  list-style: none;
}

fieldset {
  border: 0;
}

img {
  border: 0;
  vertical-align: bottom;
}


.lang {
  display: flex;
  align-items: center;
  position: absolute;
  font-size: 1.4em;
  z-index: 99;
  margin: 0 0 0 5px;
}
.lang p {
  font-size: 1.0em;
}

.lang ul {
  display: flex;
  align-items: center;
  margin: 0 0 0 10px;
}

.lang ul li a {
  text-decoration: underline;
}

.lang ul li:not(:first-child) {
  margin: 0 0 0 5px;
}

/* -----------------------------------------------------------------

#02　基本タグの定義
    font-family: 'Josefin Sans', sans-serif;
    font-family: 'Noto Sans JP', sans-serif;
    font-family: 'Oswald', sans-serif;

------------------------------------------------------------------ */
body {
  color: #000000;
  font-family: "Noto Serif JP", serif;
  font-feature-settings: "palt" 1;
  background-color: #FFFFFF;
  font-weight: 400;
  text-align: left;
  width: auto;
  height: 100%;
  margin: 0px auto;
  background-position: top;
}
body .f_aramond {
  font-family: "Cormorant Garamond", serif;
}
body .f_yugo {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "メイリオ", sans-serif;
}

@media all and (-ms-high-contrast: none) {
  body {
      
  }
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 100;
}

p {
  text-align: left;
  font-size: 1.3em;
}

span {
  font-size: 1em;
  text-align: left;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: 100;
}

a img {
  border-style: none;
  outline: medium none;
}

object {
  border-style: none;
  outline: medium none;
}

/** anchors */
/**************************************/
a {
  font-size: 1em;
  color: #023461;
  text-decoration: none;
  outline: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

a:link {
  outline: medium none;
}

a:visited {
  outline: medium none;
}

/* -----------------------------------------------------------------
@mixin
------------------------------------------------------------------ */
/* -----------------------------------------------------------------
base content
------------------------------------------------------------------ */
p.pagetop:hover {
  opacity: 0.7;
}

.nolink {
  pointer-events: none;
}

@media screen and (max-width: 900px) {
  .pc {
    display: none !important;
  }
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

header .flex .logo {
  position: fixed;
  top: 25px;
  left: 27px;
  z-index: 20;
}
header .flex .logo .log {
  width: 190px;
}
header .flex .icon_box {
  position: fixed;
  top: 24px;
  right: 18px;
  width: 35px;
  z-index: 30;
}
header .flex .icon_box .icon a {
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 11px;
}
header .flex .icon_box .icon a span {
  position: relative;
  top: 0;
  left: 0;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 35px;
  height: 11px;
}
header .flex .icon_box .icon a span::before, header .flex .icon_box .icon a span::after {
  position: absolute;
  left: 0;
  display: block;
  content: "";
  width: 35px;
  height: 2px;
  background: #FFFFFF;
  transition: 0.3s;
}
header .flex .icon_box .icon a span::before {
  top: 0;
}
header .flex .icon_box .icon a span::after {
  bottom: 0;
}
header .flex .icon_box .icon a span.on:before {
  margin-top: -1px;
  top: 48%;
  transform: rotate(-45deg);
}
header .flex .icon_box .icon a span.on:after {
  bottom: 48%;
  transform: rotate(-135deg);
}
header #menu {
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.68);
  width: 0;
  height: 100vh;
  overflow: hidden;
  box-sizing: border-box;
  transition: width 0.3s;
  z-index: 20;
}
header #menu.on {
  width: 750px;
}
header #menu div#menu_list {
  width: 750px;
  height: 100%;
  box-sizing: border-box;
  padding: 81px 0 72px 74px;
}
header #menu div#menu_list .inner {
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  overflow-y: scroll;
}
header #menu div#menu_list .inner h2 {
  width: 267px;
}
header #menu div#menu_list .inner ul li a {
  font-size: 35px;
  line-height: 2.5714285714;
  color: #FFFFFF;
}
header #menu div#menu_list .inner p {
  font-size: 21px;
  line-height: 1.7142857143;
     
}
@media screen and (max-width: 900px) {
  header .flex .logo {
    top: 3.3333333333vw;
    left: 3.6vw;
  }
  header .flex .logo .log {
    width: 25.3333333333vw;
  }
  header .flex .icon_box {
    top: 3.3333333333vw;
    right: 1.8666666667vw;
    width: 7.2vw;
  }
  header .flex .icon_box .icon a {
    width: 7.2vw;
    height: 3.3333333333vw;
  }
  header .flex .icon_box .icon a span {
    width: 7.2vw;
    height: 3.3333333333vw;
  }
  header .flex .icon_box .icon a span::before, header .flex .icon_box .icon a span::after {
    width: 7.2vw;
    height: 0.2666666667vw;
  }
  header .flex .icon_box .icon a span.on:before {
    margin-top: -0.2666666667vw;
  }
  header #menu.on {
    width: 100vw;
  }
  header #menu div#menu_list {
    width: 100vw;
    padding: 10.8vw 0 9.6vw 9.8666666667vw;
  }
  header #menu div#menu_list .inner h2 {
    width: 35.6vw;
  }
  header #menu div#menu_list .inner ul li a {
    font-size: 4.6666666667vw;
  }
  header #menu div#menu_list .inner p {
    font-size: 2.8vw;
  }
}

main {
  position: relative;
  top: 0;
  left: 0;
}
main div.inner {
  position: relative;
  top: 0;
  left: 0;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  main div.inner {
    width: 100%;
  }
}

footer {
  position: relative;
  top: 0;
  left: 0;
  padding: 55px 0 42px 0;
}
footer ul {
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  width: 715px;
  margin: 0 auto 21px auto;
}
footer ul li a {
  color: #FFFFFF;
  font-size: 16px;
}
footer h2 {
  width: 228px;
  margin: 0 auto 8px auto;
}
footer p {
  text-align: center;
  font-size: 15px;
}
@media screen and (max-width: 900px) {
  footer {
    padding: 15.7333333333vw 0 15.7333333333vw 0;
  }
  footer ul {
    display: block;
    border-bottom: 1px solid #FFFFFF;
    width: 72vw;
    margin: 0 auto 7.7333333333vw auto;
    padding: 0 0 4vw 0;
  }
  footer ul li a {
    font-size: 4.9333333333vw;
    line-height: 2.972972973;
  }
  footer ul li a:before {
    content: ">";
    display: inline-block;
    align-items: center;
    font-size: 2.6666666667vw;
    line-height: 5.5;
    padding: 0 3.3333333333vw 0 0;
    vertical-align: bottom;
  }
  footer h2 {
    width: 44.5333333333vw;
    margin: 0 auto 11.0666666667vw auto;
  }
  footer p {
    font-size: 2.6666666667vw;
      
  }
}



/* -----------------------------------------------------------------
640px以下
------------------------------------------------------------------ */
/* -----------------------------------------------------------------
944px以下かつ641px以上
------------------------------------------------------------------ */
/* -----------------------------------------------------------------
944px以下
------------------------------------------------------------------ */
@media screen and (max-width: 999px) {
  header .pc {
    display: none;
  }
  #wrapper {
    font-size: 2.667vw;
  }
}
/* -----------------------------------------------------------------
960px以上
------------------------------------------------------------------ */
@media screen and (min-width: 1000px) {
  /* -----------------------------------------------------------------
  ヘッダー
  ------------------------------------------------------------------ */
}
.nolink {
  pointer-events: none;
}

@media screen and (min-width: 1000px) {
  /* -----------------------------------------------------------------
  float
  ------------------------------------------------------------------ */
  .float_l {
    float: left;
  }
  .float_r {
    float: right;
  }
}
/* -----------------------------------------------------------------
ClearFix
------------------------------------------------------------------ */
.clear:after {
  content: " ";
  height: 0px;
  clear: both;
  visibility: hidden;
  display: block;
}

.clear {
  display: inline-block;
}

* html .clear {
  height: 1%;
}

.clear {
  display: block;
}

/* -----------------------------------------------------------------
margin
------------------------------------------------------------------ */
.ma {
  margin: 0 auto;
}

.mt5 {
  margin-top: 0.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mt5 {
    margin-top: 5px;
  }
}

.mr5 {
  margin-right: 0.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mr5 {
    margin-right: 5px;
  }
}

.mb5 {
  margin-bottom: 0.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mb5 {
    margin-bottom: 5px;
  }
}

.ml5 {
  margin-left: 0.6666666667vw;
}
@media screen and (min-width: 900px) {
  .ml5 {
    margin-left: 5px;
  }
}

.pt5 {
  padding-top: 0.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pt5 {
    padding-top: 5px;
  }
}

.pr5 {
  padding-right: 0.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pr5 {
    padding-right: 5px;
  }
}

.pb5 {
  padding-bottom: 0.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pb5 {
    padding-bottom: 5px;
  }
}

.pl5 {
  padding-left: 0.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pl5 {
    padding-left: 5px;
  }
}

.mt10 {
  margin-top: 1.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mt10 {
    margin-top: 10px;
  }
}

.mr10 {
  margin-right: 1.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mr10 {
    margin-right: 10px;
  }
}

.mb10 {
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mb10 {
    margin-bottom: 10px;
  }
}

.ml10 {
  margin-left: 1.3333333333vw;
}
@media screen and (min-width: 900px) {
  .ml10 {
    margin-left: 10px;
  }
}

.pt10 {
  padding-top: 1.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pt10 {
    padding-top: 10px;
  }
}

.pr10 {
  padding-right: 1.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pr10 {
    padding-right: 10px;
  }
}

.pb10 {
  padding-bottom: 1.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pb10 {
    padding-bottom: 10px;
  }
}

.pl10 {
  padding-left: 1.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pl10 {
    padding-left: 10px;
  }
}

.mt15 {
  margin-top: 2vw;
}
@media screen and (min-width: 900px) {
  .mt15 {
    margin-top: 15px;
  }
}

.mr15 {
  margin-right: 2vw;
}
@media screen and (min-width: 900px) {
  .mr15 {
    margin-right: 15px;
  }
}

.mb15 {
  margin-bottom: 2vw;
}
@media screen and (min-width: 900px) {
  .mb15 {
    margin-bottom: 15px;
  }
}

.ml15 {
  margin-left: 2vw;
}
@media screen and (min-width: 900px) {
  .ml15 {
    margin-left: 15px;
  }
}

.pt15 {
  padding-top: 2vw;
}
@media screen and (min-width: 900px) {
  .pt15 {
    padding-top: 15px;
  }
}

.pr15 {
  padding-right: 2vw;
}
@media screen and (min-width: 900px) {
  .pr15 {
    padding-right: 15px;
  }
}

.pb15 {
  padding-bottom: 2vw;
}
@media screen and (min-width: 900px) {
  .pb15 {
    padding-bottom: 15px;
  }
}

.pl15 {
  padding-left: 2vw;
}
@media screen and (min-width: 900px) {
  .pl15 {
    padding-left: 15px;
  }
}

.mt20 {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mt20 {
    margin-top: 20px;
  }
}

.mr20 {
  margin-right: 2.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mr20 {
    margin-right: 20px;
  }
}

.mb20 {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mb20 {
    margin-bottom: 20px;
  }
}

.ml20 {
  margin-left: 2.6666666667vw;
}
@media screen and (min-width: 900px) {
  .ml20 {
    margin-left: 20px;
  }
}

.pt20 {
  padding-top: 2.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pt20 {
    padding-top: 20px;
  }
}

.pr20 {
  padding-right: 2.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pr20 {
    padding-right: 20px;
  }
}

.pb20 {
  padding-bottom: 2.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pb20 {
    padding-bottom: 20px;
  }
}

.pl20 {
  padding-left: 2.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pl20 {
    padding-left: 20px;
  }
}

.mt25 {
  margin-top: 3.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mt25 {
    margin-top: 25px;
  }
}

.mr25 {
  margin-right: 3.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mr25 {
    margin-right: 25px;
  }
}

.mb25 {
  margin-bottom: 3.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mb25 {
    margin-bottom: 25px;
  }
}

.ml25 {
  margin-left: 3.3333333333vw;
}
@media screen and (min-width: 900px) {
  .ml25 {
    margin-left: 25px;
  }
}

.pt25 {
  padding-top: 3.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pt25 {
    padding-top: 25px;
  }
}

.pr25 {
  padding-right: 3.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pr25 {
    padding-right: 25px;
  }
}

.pb25 {
  padding-bottom: 3.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pb25 {
    padding-bottom: 25px;
  }
}

.pl25 {
  padding-left: 3.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pl25 {
    padding-left: 25px;
  }
}

.mt30 {
  margin-top: 4vw;
}
@media screen and (min-width: 900px) {
  .mt30 {
    margin-top: 30px;
  }
}

.mr30 {
  margin-right: 4vw;
}
@media screen and (min-width: 900px) {
  .mr30 {
    margin-right: 30px;
  }
}

.mb30 {
  margin-bottom: 4vw;
}
@media screen and (min-width: 900px) {
  .mb30 {
    margin-bottom: 30px;
  }
}

.ml30 {
  margin-left: 4vw;
}
@media screen and (min-width: 900px) {
  .ml30 {
    margin-left: 30px;
  }
}

.pt30 {
  padding-top: 4vw;
}
@media screen and (min-width: 900px) {
  .pt30 {
    padding-top: 30px;
  }
}

.pr30 {
  padding-right: 4vw;
}
@media screen and (min-width: 900px) {
  .pr30 {
    padding-right: 30px;
  }
}

.pb30 {
  padding-bottom: 4vw;
}
@media screen and (min-width: 900px) {
  .pb30 {
    padding-bottom: 30px;
  }
}

.pl30 {
  padding-left: 4vw;
}
@media screen and (min-width: 900px) {
  .pl30 {
    padding-left: 30px;
  }
}

.mt35 {
  margin-top: 4.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mt35 {
    margin-top: 35px;
  }
}

.mr35 {
  margin-right: 4.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mr35 {
    margin-right: 35px;
  }
}

.mb35 {
  margin-bottom: 4.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mb35 {
    margin-bottom: 35px;
  }
}

.ml35 {
  margin-left: 4.6666666667vw;
}
@media screen and (min-width: 900px) {
  .ml35 {
    margin-left: 35px;
  }
}

.pt35 {
  padding-top: 4.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pt35 {
    padding-top: 35px;
  }
}

.pr35 {
  padding-right: 4.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pr35 {
    padding-right: 35px;
  }
}

.pb35 {
  padding-bottom: 4.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pb35 {
    padding-bottom: 35px;
  }
}

.pl35 {
  padding-left: 4.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pl35 {
    padding-left: 35px;
  }
}

.mt40 {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mt40 {
    margin-top: 40px;
  }
}

.mr40 {
  margin-right: 5.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mr40 {
    margin-right: 40px;
  }
}

.mb40 {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mb40 {
    margin-bottom: 40px;
  }
}

.ml40 {
  margin-left: 5.3333333333vw;
}
@media screen and (min-width: 900px) {
  .ml40 {
    margin-left: 40px;
  }
}

.pt40 {
  padding-top: 5.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pt40 {
    padding-top: 40px;
  }
}

.pr40 {
  padding-right: 5.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pr40 {
    padding-right: 40px;
  }
}

.pb40 {
  padding-bottom: 5.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pb40 {
    padding-bottom: 40px;
  }
}

.pl40 {
  padding-left: 5.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pl40 {
    padding-left: 40px;
  }
}

.mt45 {
  margin-top: 6vw;
}
@media screen and (min-width: 900px) {
  .mt45 {
    margin-top: 45px;
  }
}

.mr45 {
  margin-right: 6vw;
}
@media screen and (min-width: 900px) {
  .mr45 {
    margin-right: 45px;
  }
}

.mb45 {
  margin-bottom: 6vw;
}
@media screen and (min-width: 900px) {
  .mb45 {
    margin-bottom: 45px;
  }
}

.ml45 {
  margin-left: 6vw;
}
@media screen and (min-width: 900px) {
  .ml45 {
    margin-left: 45px;
  }
}

.pt45 {
  padding-top: 6vw;
}
@media screen and (min-width: 900px) {
  .pt45 {
    padding-top: 45px;
  }
}

.pr45 {
  padding-right: 6vw;
}
@media screen and (min-width: 900px) {
  .pr45 {
    padding-right: 45px;
  }
}

.pb45 {
  padding-bottom: 6vw;
}
@media screen and (min-width: 900px) {
  .pb45 {
    padding-bottom: 45px;
  }
}

.pl45 {
  padding-left: 6vw;
}
@media screen and (min-width: 900px) {
  .pl45 {
    padding-left: 45px;
  }
}

.mt50 {
  margin-top: 6.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mt50 {
    margin-top: 50px;
  }
}

.mr50 {
  margin-right: 6.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mr50 {
    margin-right: 50px;
  }
}

.mb50 {
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mb50 {
    margin-bottom: 50px;
  }
}

.ml50 {
  margin-left: 6.6666666667vw;
}
@media screen and (min-width: 900px) {
  .ml50 {
    margin-left: 50px;
  }
}

.pt50 {
  padding-top: 6.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pt50 {
    padding-top: 50px;
  }
}

.pr50 {
  padding-right: 6.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pr50 {
    padding-right: 50px;
  }
}

.pb50 {
  padding-bottom: 6.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pb50 {
    padding-bottom: 50px;
  }
}

.pl50 {
  padding-left: 6.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pl50 {
    padding-left: 50px;
  }
}

.mt55 {
  margin-top: 7.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mt55 {
    margin-top: 55px;
  }
}

.mr55 {
  margin-right: 7.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mr55 {
    margin-right: 55px;
  }
}

.mb55 {
  margin-bottom: 7.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mb55 {
    margin-bottom: 55px;
  }
}

.ml55 {
  margin-left: 7.3333333333vw;
}
@media screen and (min-width: 900px) {
  .ml55 {
    margin-left: 55px;
  }
}

.pt55 {
  padding-top: 7.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pt55 {
    padding-top: 55px;
  }
}

.pr55 {
  padding-right: 7.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pr55 {
    padding-right: 55px;
  }
}

.pb55 {
  padding-bottom: 7.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pb55 {
    padding-bottom: 55px;
  }
}

.pl55 {
  padding-left: 7.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pl55 {
    padding-left: 55px;
  }
}

.mt60 {
  margin-top: 8vw;
}
@media screen and (min-width: 900px) {
  .mt60 {
    margin-top: 60px;
  }
}

.mr60 {
  margin-right: 8vw;
}
@media screen and (min-width: 900px) {
  .mr60 {
    margin-right: 60px;
  }
}

.mb60 {
  margin-bottom: 8vw;
}
@media screen and (min-width: 900px) {
  .mb60 {
    margin-bottom: 60px;
  }
}

.ml60 {
  margin-left: 8vw;
}
@media screen and (min-width: 900px) {
  .ml60 {
    margin-left: 60px;
  }
}

.pt60 {
  padding-top: 8vw;
}
@media screen and (min-width: 900px) {
  .pt60 {
    padding-top: 60px;
  }
}

.pr60 {
  padding-right: 8vw;
}
@media screen and (min-width: 900px) {
  .pr60 {
    padding-right: 60px;
  }
}

.pb60 {
  padding-bottom: 8vw;
}
@media screen and (min-width: 900px) {
  .pb60 {
    padding-bottom: 60px;
  }
}

.pl60 {
  padding-left: 8vw;
}
@media screen and (min-width: 900px) {
  .pl60 {
    padding-left: 60px;
  }
}

.mt65 {
  margin-top: 8.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mt65 {
    margin-top: 65px;
  }
}

.mr65 {
  margin-right: 8.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mr65 {
    margin-right: 65px;
  }
}

.mb65 {
  margin-bottom: 8.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mb65 {
    margin-bottom: 65px;
  }
}

.ml65 {
  margin-left: 8.6666666667vw;
}
@media screen and (min-width: 900px) {
  .ml65 {
    margin-left: 65px;
  }
}

.pt65 {
  padding-top: 8.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pt65 {
    padding-top: 65px;
  }
}

.pr65 {
  padding-right: 8.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pr65 {
    padding-right: 65px;
  }
}

.pb65 {
  padding-bottom: 8.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pb65 {
    padding-bottom: 65px;
  }
}

.pl65 {
  padding-left: 8.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pl65 {
    padding-left: 65px;
  }
}

.mt70 {
  margin-top: 9.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mt70 {
    margin-top: 70px;
  }
}

.mr70 {
  margin-right: 9.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mr70 {
    margin-right: 70px;
  }
}

.mb70 {
  margin-bottom: 9.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mb70 {
    margin-bottom: 70px;
  }
}

.ml70 {
  margin-left: 9.3333333333vw;
}
@media screen and (min-width: 900px) {
  .ml70 {
    margin-left: 70px;
  }
}

.pt70 {
  padding-top: 9.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pt70 {
    padding-top: 70px;
  }
}

.pr70 {
  padding-right: 9.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pr70 {
    padding-right: 70px;
  }
}

.pb70 {
  padding-bottom: 9.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pb70 {
    padding-bottom: 70px;
  }
}

.pl70 {
  padding-left: 9.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pl70 {
    padding-left: 70px;
  }
}

.mt75 {
  margin-top: 10vw;
}
@media screen and (min-width: 900px) {
  .mt75 {
    margin-top: 75px;
  }
}

.mr75 {
  margin-right: 10vw;
}
@media screen and (min-width: 900px) {
  .mr75 {
    margin-right: 75px;
  }
}

.mb75 {
  margin-bottom: 10vw;
}
@media screen and (min-width: 900px) {
  .mb75 {
    margin-bottom: 75px;
  }
}

.ml75 {
  margin-left: 10vw;
}
@media screen and (min-width: 900px) {
  .ml75 {
    margin-left: 75px;
  }
}

.pt75 {
  padding-top: 10vw;
}
@media screen and (min-width: 900px) {
  .pt75 {
    padding-top: 75px;
  }
}

.pr75 {
  padding-right: 10vw;
}
@media screen and (min-width: 900px) {
  .pr75 {
    padding-right: 75px;
  }
}

.pb75 {
  padding-bottom: 10vw;
}
@media screen and (min-width: 900px) {
  .pb75 {
    padding-bottom: 75px;
  }
}

.pl75 {
  padding-left: 10vw;
}
@media screen and (min-width: 900px) {
  .pl75 {
    padding-left: 75px;
  }
}

.mt80 {
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mt80 {
    margin-top: 80px;
  }
}

.mr80 {
  margin-right: 10.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mr80 {
    margin-right: 80px;
  }
}

.mb80 {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mb80 {
    margin-bottom: 80px;
  }
}

.ml80 {
  margin-left: 10.6666666667vw;
}
@media screen and (min-width: 900px) {
  .ml80 {
    margin-left: 80px;
  }
}

.pt80 {
  padding-top: 10.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pt80 {
    padding-top: 80px;
  }
}

.pr80 {
  padding-right: 10.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pr80 {
    padding-right: 80px;
  }
}

.pb80 {
  padding-bottom: 10.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pb80 {
    padding-bottom: 80px;
  }
}

.pl80 {
  padding-left: 10.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pl80 {
    padding-left: 80px;
  }
}

.mt85 {
  margin-top: 11.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mt85 {
    margin-top: 85px;
  }
}

.mr85 {
  margin-right: 11.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mr85 {
    margin-right: 85px;
  }
}

.mb85 {
  margin-bottom: 11.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mb85 {
    margin-bottom: 85px;
  }
}

.ml85 {
  margin-left: 11.3333333333vw;
}
@media screen and (min-width: 900px) {
  .ml85 {
    margin-left: 85px;
  }
}

.pt85 {
  padding-top: 11.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pt85 {
    padding-top: 85px;
  }
}

.pr85 {
  padding-right: 11.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pr85 {
    padding-right: 85px;
  }
}

.pb85 {
  padding-bottom: 11.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pb85 {
    padding-bottom: 85px;
  }
}

.pl85 {
  padding-left: 11.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pl85 {
    padding-left: 85px;
  }
}

.mt90 {
  margin-top: 12vw;
}
@media screen and (min-width: 900px) {
  .mt90 {
    margin-top: 90px;
  }
}

.mr90 {
  margin-right: 12vw;
}
@media screen and (min-width: 900px) {
  .mr90 {
    margin-right: 90px;
  }
}

.mb90 {
  margin-bottom: 12vw;
}
@media screen and (min-width: 900px) {
  .mb90 {
    margin-bottom: 90px;
  }
}

.ml90 {
  margin-left: 12vw;
}
@media screen and (min-width: 900px) {
  .ml90 {
    margin-left: 90px;
  }
}

.pt90 {
  padding-top: 12vw;
}
@media screen and (min-width: 900px) {
  .pt90 {
    padding-top: 90px;
  }
}

.pr90 {
  padding-right: 12vw;
}
@media screen and (min-width: 900px) {
  .pr90 {
    padding-right: 90px;
  }
}

.pb90 {
  padding-bottom: 12vw;
}
@media screen and (min-width: 900px) {
  .pb90 {
    padding-bottom: 90px;
  }
}

.pl90 {
  padding-left: 12vw;
}
@media screen and (min-width: 900px) {
  .pl90 {
    padding-left: 90px;
  }
}

.mt95 {
  margin-top: 12.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mt95 {
    margin-top: 95px;
  }
}

.mr95 {
  margin-right: 12.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mr95 {
    margin-right: 95px;
  }
}

.mb95 {
  margin-bottom: 12.6666666667vw;
}
@media screen and (min-width: 900px) {
  .mb95 {
    margin-bottom: 95px;
  }
}

.ml95 {
  margin-left: 12.6666666667vw;
}
@media screen and (min-width: 900px) {
  .ml95 {
    margin-left: 95px;
  }
}

.pt95 {
  padding-top: 12.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pt95 {
    padding-top: 95px;
  }
}

.pr95 {
  padding-right: 12.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pr95 {
    padding-right: 95px;
  }
}

.pb95 {
  padding-bottom: 12.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pb95 {
    padding-bottom: 95px;
  }
}

.pl95 {
  padding-left: 12.6666666667vw;
}
@media screen and (min-width: 900px) {
  .pl95 {
    padding-left: 95px;
  }
}

.mt100 {
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mt100 {
    margin-top: 100px;
  }
}

.mr100 {
  margin-right: 13.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mr100 {
    margin-right: 100px;
  }
}

.mb100 {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 900px) {
  .mb100 {
    margin-bottom: 100px;
  }
}

.ml100 {
  margin-left: 13.3333333333vw;
}
@media screen and (min-width: 900px) {
  .ml100 {
    margin-left: 100px;
  }
}

.pt100 {
  padding-top: 13.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pt100 {
    padding-top: 100px;
  }
}

.pr100 {
  padding-right: 13.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pr100 {
    padding-right: 100px;
  }
}

.pb100 {
  padding-bottom: 13.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pb100 {
    padding-bottom: 100px;
  }
}

.pl100 {
  padding-left: 13.3333333333vw;
}
@media screen and (min-width: 900px) {
  .pl100 {
    padding-left: 100px;
  }
}

.fs10 {
  font-size: 1em;
}

.fs11 {
  font-size: 1.1em;
}

.fs12 {
  font-size: 1.2em;
}

.fs13 {
  font-size: 1.3em;
}

.fs14 {
  font-size: 1.4em;
}

.fs15 {
  font-size: 1.5em;
}

/* -----------------------------------------------------------------
@mixin
------------------------------------------------------------------ */
.ad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  opacity: 0.5;
}
.ad img {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.slide-item1 {
  transform: translate(0, 25px);
  -webkit-transform: translate(0, 25px);
  -moz-transform: translate(0, 25px);
  -ms-transform: translate(0, 25px);
  -o-transform: translate(0, 25px);
  opacity: 0;
  transition: opacity 1s, transform 1.2s, filter 1s;
}
.slide-item1.show {
  transform: translate(0);
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  filter: blur(0);
  opacity: 1;
}

.slide-item2 {
  left: 98vw;
  opacity: 0;
  transition: opacity 1.8s, left 1.2s;
}
.slide-item2.show {
  left: 0;
  opacity: 1;
}

.slide-item3 {
  right: 98vw;
  opacity: 0;
  transition: opacity 1.8s, right 1.2s;
}
.slide-item3.show {
  right: 0;
  opacity: 1;
}

.scroll_icon {
  position: fixed;
  top: 0;
  right: 0;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 72px;
  height: 100vh;
  padding: 0 0 0 0;
  box-sizing: border-box;
  z-index: 15;
}
.scroll_icon span {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 12px;
  padding: 0;
}
.scroll_icon span em {
  position: relative;
  top: 0;
  left: 0;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  width: 2px;
  height: 92px;
  margin: 14px auto 0 auto;
}
.scroll_icon span em::before {
  content: "";
  display: block;
}
.scroll_icon span em:before {
  background: #ffffff;
  width: 2px;
  height: 100%;
  animation: ScrollAnimation 3s infinite;
}
@keyframes ScrollAnimation {
  0% {
    height: 0;
  }
  45% {
    height: 100%;
  }
  55% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
@media screen and (max-width: 900px) {
  .scroll_icon {
    width: 9.6vw;
    height: 100vh;
  }
  .scroll_icon span {
    width: 1.6vw;
  }
  .scroll_icon span em {
    width: 0.2666666667vw;
    height: 12.2666666667vw;
    margin: 1.8666666667vw auto 0 auto;
  }
  .scroll_icon span em:before {
    width: 0.2666666667vw;
  }
}

.side_bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 100%;
  z-index: 10;
  transition: background 1.8s;
}
@media screen and (max-width: 900px) {
  .side_bar {
    width: 9.6vw;
  }
}

.top_index.fixbod {
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.top_index.fixbod #anime {
  position: relative;
  top: 0;
  left: 0;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: url(../images/bg_pc.png) center center no-repeat;
  background-size: cover;
  z-index: 100;
}
.top_index.fixbod #anime::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #000000;
  width: 100%;
  height: 100%;
  transition: opacity 2s;
  transition-delay: 3s;
}
.top_index.fixbod #anime .base {
  position: relative;
  top: 0;
  left: 0;
  width: 332px;
  height: 224px;
}
.top_index.fixbod #anime .base:after {
  content: "";
  position: absolute;
  top: 0;
  right: -50%;
  width: 700%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgb(0, 0, 0) 80%);
  transition: width 1.8s;
  transition-delay: 1s;
}
.top_index.fixbod #anime .base div h1 {
  width: 332px;
}
.top_index.fixbod #anime.on::before {
  opacity: 0;
}
.top_index.fixbod #anime.on .base:after {
  width: 0;
}
.top_index.fixbod #anime.on .base div {
  width: 100%;
  opacity: 1;
}
.top_index.fixbod #anime.off {
  display: none;
}
@media screen and (max-width: 900px) {
  .top_index.fixbod #anime {
    background: url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
  }
  .top_index.fixbod #anime .base {
    width: 44.2666666667vw;
    height: 29.8666666667vw;
  }
  .top_index.fixbod #anime .base div h1 {
    width: 44.2666666667vw;
  }
}
.top_index main {
  width: 100%;
  overflow-x: hidden;
}
.top_index main .clossbox {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  overflow-x: hidden;
}
.top_index main .clossbox:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}
.top_index main .clossbox.show {
  animation: passing-bar 1s ease 0s 1 normal forwards;
}
.top_index main .clossbox.show:after {
  animation: passing-text 0.6s ease 0.5s 1 normal forwards;
}
@keyframes passing-bar {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  51% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}
@keyframes passing-text {
  0% {
    width: 100%;
    opacity: 1;
  }
  99% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
.top_index main #key {
  position: relative;
  top: 0;
  left: 0;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  background: url("../images/key_bg.png") center center no-repeat;
  background-size: auto 100%;
  width: 100%;
  height: 100vh;
  max-height: 665px;
  box-sizing: border-box;
  z-index: 9;
}
.top_index main #key .fixed__btn {
  background: url(../images/btn_img01.jpg);
  height: 205px;
  color: #fff;
  font-size: 12px;
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.5;
  writing-mode: vertical-rl;
  text-align: center;
  font-weight: bold;
  padding: 22px 15px;
  position: fixed;
  z-index: 99999;
  top: 0%;
  right: 0%;
}
.top_index main #key .fixed__btn.fixed02 {
  background: url(../images/btn_img02.jpg);
  top: 249px;
}
.top_index main #key .inner {
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  padding: 152px 0 0 59px;
  margin: 0 auto;
}
.top_index main #key .inner p {
  width: 262px;
  padding: 0 0 0 45px;
}
.top_index main #key .inner h1 {
  width: 319px;
  margin: 53px 0 0 0;
}
@media screen and (max-width: 900px) {
  .top_index main #key {
    background: none;
    height: auto;
    max-height: none;
  }
  .top_index main #key .fixed__btn {
    background: url(../images/btn_img01_sp.jpg);
    height: 20vw;
    width: 50%;
    color: #fff;
    font-size: 4.1333333333vw;
    line-height: 1.3709677419;
    writing-mode: horizontal-tb;
    text-align: center;
    font-weight: bold;
    padding: 0;
    top: auto;
    right: auto;
    bottom: 0%;
    left: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }
  .top_index main #key .fixed__btn.fixed02 {
    background: url(../images/btn_img02_sp.jpg);
    top: auto;
    right: 0%;
    left: auto;
  }
  .top_index main #key ul li {
    position: relative;
    top: 0;
  }
  .top_index main #key ul li img {
    width: 100vw;
  }
}
.top_index main #cont01 {
  background: url("../images/cont01_bg.png") right top no-repeat;
  background-size: 67.5% auto;
}
.top_index main #cont01 .cont01__box {
  position: relative;
  top: 0;
  left: 0;
  max-width: 1280px;
  padding: 113px 0 110px 0;
  margin: 0 auto;
}
.top_index main #cont01 .cont01__box .bg {
  position: absolute;
  top: -2px;
  left: 0;
}
.top_index main #cont01 .cont01__box .bg p {
  transform: translateY(-4px);
  width: 1250px;
}
.top_index main #cont01 .cont01__box .inner .lead {
  /*  */
  padding: 0 0 0 0;
}
.top_index main #cont01 .cont01__box .inner .lead p {
  font-size: 17.5px;
  line-height: 1.7428571429;
  text-align: center;
  color: #868686;
}
.top_index main #cont01 .cont01__box .inner .lead p em {
  color: #ed6c89;
}
.top_index main #cont01 .cont01__box .inner .lead p sup {
  font-size: 11px;
}
.top_index main #cont01 .cont01__box .inner .lead strong {
  display: block;
  text-align: center;
  font-size: 28.5px;
  line-height: 1.5263157895;
  /*  */
  width: 95%;
  max-width: 700px;
  margin: 35px auto 16px auto;
  color: #868686;
}
.top_index main #cont01 .cont01__box .inner .lead strong .lead__text {
  color: #ed6c89;
  font-size: 28.5px;
}
.top_index main #cont01 .cont01__box .inner .lead span {
  display: block;
  text-align: center;
  font-size: 11px;
  color: #868686;
}
.top_index main #cont01 .cont01__box .inner .box {
  position: relative;
  top: 0;
  left: 0;
  background: #ffffff;
  box-shadow: 15px 15px 20px 4px rgba(215, 141, 175, 0.1);
  width: 960px;
  margin: 0 auto 62px auto;
  padding: 77px 0 68px 0;
}
.top_index main #cont01 .cont01__box .inner .box.box2 {
  padding: 77px 0 80px 0;
}
.top_index main #cont01 .cont01__box .inner .box .icon {
  position: absolute;
  top: -68px;
  left: -48px;
  width: 312px;
  z-index: 5;
}
.top_index main #cont01 .cont01__box .inner .box .in {
  width: 722px;
  margin: 0 auto;
}
.top_index main #cont01 .cont01__box .inner .box .in h3 {
  position: relative;
  top: 0;
  left: 0;
  text-align: center;
  font-size: 25px;
    
  width: 100%;
  margin: 0 0 62px 0;
}
.top_index main #cont01 .cont01__box .inner .box .in h3.title {
  text-indent: 85px;
}
.top_index main #cont01 .cont01__box .inner .box .in h3 em {
  color: #ed6c89;
}
.top_index main #cont01 .cont01__box .inner .box .in h3::after {
  content: "";
  display: block;
  background: #000000;
  width: 100%;
  height: 1px;
  margin: 13px 0 0 0;
}
.top_index main #cont01 .cont01__box .inner .box .in .flex {
  display: flex;
  justify-content: space-between;
  margin: 0 0 17px 0;
}
.top_index main #cont01 .cont01__box .inner .box .in .flex .left {
  width: 382px;
  margin: 0 0 0 12px;
}
.top_index main #cont01 .cont01__box .inner .box .in .flex .left.left_item {
  width: 400px;
  margin: -5px 0 0 6px;
}
.top_index main #cont01 .cont01__box .inner .box .in .flex .right {
  width: 294px;
  padding: 9px 0 0 0;
}
.top_index main #cont01 .cont01__box .inner .box .in .flex .right.rightbox {
  padding: 27px 0 0 0;
}
.top_index main #cont01 .cont01__box .inner .box .in .flex .right div {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e66f90;
  border-radius: 27px;
  color: #ffffff;
  font-size: 14px;
   
  width: 213px;
  height: 27px;
  margin: 0 0 10px 0;
}
.top_index main #cont01 .cont01__box .inner .box .in .flex .right h4 {
  font-size: 22px;
  line-height: 1;
   
  margin: 0 0 19px 0;
}
.top_index main #cont01 .cont01__box .inner .box .in .flex .right span {
  display: block;
  font-size: 14px;
  line-height: 1.6428571429;
   
  margin: 0 0 5px 0;
}
.top_index main #cont01 .cont01__box .inner .box .in .flex .right p {
  color: #ed6c89;
  font-size: 24px;
}
.top_index main #cont01 .cont01__box .inner .box .in .flex .right p strong {
  font-size: 30px;
}
.top_index main #cont01 .cont01__box .inner .box .in .flex .right p em {
  font-size: 13px;
   
}
.top_index main #cont01 .cont01__box .inner .box .in .text {
  font-size: 11px;
  line-height: 1.5454545455;
  color: #9b9b9b;
  margin: 0 0 56px 0;
}
.top_index main #cont01 .cont01__box .inner .box .in .link a {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(255, 178, 216);
  background: linear-gradient(90deg, rgb(255, 178, 216) 0%, rgb(255, 173, 191) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffb2d8",endColorstr="#ffadbf",GradientType=1);
  color: #ffffff;
  font-size: 14px;
     
  font-weight: bold;
  width: 511px;
  height: 77px;
  margin: 0 auto;
}
.top_index main #cont01 .cont01__box .inner .box .in .link a::before, .top_index main #cont01 .cont01__box .inner .box .in .link a::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
}
.top_index main #cont01 .cont01__box .inner .box .in .link a:before {
  background: url("../images/link_icon01.png") center center no-repeat;
  background-size: 100% auto;
  width: 22px;
  left: 47px;
}
.top_index main #cont01 .cont01__box .inner .box .in .link a:after {
  background: url("../images/link_icon02.png") center center no-repeat;
  background-size: 100% auto;
  width: 28px;
  right: 27px;
}
.top_index main #cont01 .cont01__box .inner .box .in .link2 a {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  font-weight: bold;
  font-size: 16px;
     
  color: #ed6c89;
  width: 292px;
  margin: 28px auto 0 auto;
}
.top_index main #cont01 .cont01__box .inner .box .in .link2 a::before, .top_index main #cont01 .cont01__box .inner .box .in .link2 a::after {
  content: "";
}
.top_index main #cont01 .cont01__box .inner .box .in .link2 a:before {
  display: block;
  position: absolute;
  top: 8px;
  right: 2px;
  background: url("../images/link_icon03.png") center center no-repeat;
  background-size: 100% auto;
  width: 11px;
  height: 11px;
}
.top_index main #cont01 .cont01__box .inner .box .in .link2 a:after {
  display: block;
  background: #ed6c89;
  width: 100%;
  height: 1px;
  margin: 10px 0 0 0;
}
@media screen and (max-width: 900px) {
  .top_index main #cont01 {
    background-size: cover;
    background-position: 22.6666666667vw 44vw;
    background-size: 78.5333333333vw auto;
    padding: 0;
  }
  .top_index main #cont01 .cont01__box {
    padding: 12vw 0 13.3333333333vw 0;
  }
  .top_index main #cont01 .cont01__box .bg {
    top: -0.8vw;
    left: -1.0666666667vw;
  }
  .top_index main #cont01 .cont01__box .bg p {
    width: 77.3333333333vw;
    transform: translateY(0);
  }
  .top_index main #cont01 .cont01__box .inner .lead p {
    font-size: 3.6vw;
    line-height: 1.9259259259;
    font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .top_index main #cont01 .cont01__box .inner .lead p em {
    font-size: 4.4vw;
    line-height: 1.59375;
     
    font-family: "Noto Serif JP", serif;
  }
  .top_index main #cont01 .cont01__box .inner .lead p sup {
    font-size: 2.1333333333vw;
  }
  .top_index main #cont01 .cont01__box .inner .lead strong {
    font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 3.6vw;
    line-height: 1.9259259259;
    width: 80vw;
     
    margin: 6.6666666667vw auto 3.2vw auto;
  }
  .top_index main #cont01 .cont01__box .inner .lead strong .lead__text {
     font-size: 4.4vw;
    line-height: 1.59375;
     
    width: 80vw;
    margin: 0 auto;
    font-family: "Noto Serif JP", serif;
  }
  .top_index main #cont01 .cont01__box .inner .lead span {
    font-size: 2.6666666667vw;
    line-height: 1.6;
     
    width: 80vw;
    margin: 0 auto;
  }
  .top_index main #cont01 .cont01__box .inner .box {
    box-shadow: 2vw 2vw 2.6666666667vw 0.5333333333vw rgba(215, 141, 175, 0.1);
    width: 84vw;
    margin: 0 auto 13.3333333333vw auto;
    padding: 17.7333333333vw 0 12.4vw 0;
  }
  .top_index main #cont01 .cont01__box .inner .box.box2 {
    padding: 18vw 0 12.6666666667vw 0;
    margin: 0 auto;
  }
  .top_index main #cont01 .cont01__box .inner .box.box2 .in h3 {
    margin: 0 0 10vw 0;
  }
  .top_index main #cont01 .cont01__box .inner .box .icon {
    top: -10vw;
    left: -9.7333333333vw;
    width: 47.7333333333vw;
  }
  .top_index main #cont01 .cont01__box .inner .box .in {
    width: 70.6666666667vw;
  }
  .top_index main #cont01 .cont01__box .inner .box .in h3 {
    font-size: 5.3333333333vw;
    line-height: 1.625;
    width: 100%;
    margin: 0 0 6.6666666667vw 0;
  }
  .top_index main #cont01 .cont01__box .inner .box .in h3.title {
    text-indent: 0;
  }
  .top_index main #cont01 .cont01__box .inner .box .in h3::after {
    width: 70.6666666667vw;
    margin: 4.5333333333vw auto 0 auto;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .flex {
    display: block;
    margin: 0 0 2.1333333333vw 0;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .flex .left {
    width: 62.9333333333vw;
    margin: 0 0 5.3333333333vw 1.6vw;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .flex .left.left_item {
    width: 62.9333333333vw;
    margin: 0 0 5.3333333333vw 1.6vw;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .flex .right {
    width: 70.6666666667vw;
    padding: 0;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .flex .right.rightbox {
    padding: 3.0666666667vw 0 0 0;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .flex .right div {
    border-radius: 7.3333333333vw;
    font-size: 3.7333333333vw;
   
    width: 100%;
    height: 7.3333333333vw;
    margin: 0 0 3.8666666667vw 0;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .flex .right h4 {
    font-size: 5.3333333333vw;
   
    text-align: center;
    margin: 0 0 3.7333333333vw 0;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .flex .right span {
    font-size: 4vw;
    line-height: 1.6666666667;
    text-align: center;
   
    margin: 0 0 -0.2666666667vw 0;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .flex .right p {
     font-size: 4.4vw;
    font-weight: bold;
    text-align: center;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .flex .right p strong {
    font-size: 9.3333333333vw;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .flex .right p em {
    font-size: 3.4666666667vw;
   
  }
  .top_index main #cont01 .cont01__box .inner .box .in .text {
    font-size: 2.6666666667vw;
    line-height: 1.6;
    margin: 5.6vw 0 0 0;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .link a {
    font-size: 4vw;
       
    width: 70.6666666667vw;
    height: 20vw;
    box-sizing: border-box;
    padding: 0 0 0 6.9333333333vw;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .link a:before {
    width: 7.3333333333vw;
    left: 6.2666666667vw;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .link a:after {
    width: 4.1333333333vw;
    right: 4vw;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .link2 a {
    font-size: 4vw;
       
    width: 70.6666666667vw;
    margin: 5.7333333333vw auto 0 auto;
    box-sizing: border-box;
    padding: 0 0 0 2.4vw;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .link2 a:before {
    top: 1.0666666667vw;
    right: 0.2666666667vw;
    background: url("../images/link_icon03.png") center center no-repeat;
    background-size: 100% auto;
    width: 2.9333333333vw;
    height: 4vw;
  }
  .top_index main #cont01 .cont01__box .inner .box .in .link2 a:after {
    margin: 2.9333333333vw 0 0 0;
  }
}
.top_index main #cont11 {
  position: relative;
  top: 0;
  left: 0;
  background: url("../images/cont11_bg.jpg") right top no-repeat;
  background-size: cover;
  padding: 0 0 53px 0;
  margin: 0 auto;
}
.top_index main #cont11 .bg {
  position: absolute;
  top: 0;
  left: 0;
}
.top_index main #cont11 .bg p {
  width: 893px;
}
.top_index main #cont11 .inner .lead {
  text-align: center;
  font-size: 25px;
  line-height: 2.12;
    
  padding: 0 0 64px 0;
}
.top_index main #cont11 .inner .box {
  position: relative;
  top: 0;
  left: 0;
  background: #ffffff;
  box-shadow: 15px 15px 20px 4px rgba(215, 141, 175, 0.1);
  width: 960px;
  margin: 0 auto 62px auto;
  padding: 60px 0 111px 0;
}
.top_index main #cont11 .inner .box.box2 {
  padding: 95px 0 45px 0;
}
.top_index main #cont11 .inner .box .icon {
  position: absolute;
  top: -68px;
  left: -45px;
  width: 312px;
  z-index: 5;
}
.top_index main #cont11 .inner .box .in {
  width: 722px;
  margin: 0 auto;
}
.top_index main #cont11 .inner .box .in h3 {
  position: relative;
  top: 0;
  left: 0;
  text-align: center;
  font-size: 25px;
    
  width: 100%;
  margin: 0 0 62px 0;
}
.top_index main #cont11 .inner .box .in h3.title {
  text-indent: 85px;
}
.top_index main #cont11 .inner .box .in h3 em {
  color: #ed6c89;
}
.top_index main #cont11 .inner .box .in h3::after {
  content: "";
  display: block;
  background: #000000;
  width: 100%;
  height: 1px;
  margin: 13px 0 0 0;
}
.top_index main #cont11 .inner .box .in .flex {
  display: flex;
  justify-content: space-between;
  margin: 0 0 -18px 0;
}
.top_index main #cont11 .inner .box .in .flex.flex02 {
  margin: 0 0 30px 0;
}
.top_index main #cont11 .inner .box .in .flex .left {
  width: 382px;
  margin: 0 0 0 12px;
}
.top_index main #cont11 .inner .box .in .flex .left.left_item {
  width: 400px;
  margin: -5px 0 0 6px;
}
.top_index main #cont11 .inner .box .in .flex .right {
  width: 294px;
  padding: 35px 0 0 0;
}
.top_index main #cont11 .inner .box .in .flex .right.rightbox {
  padding: 8px 0 0 0;
}
.top_index main #cont11 .inner .box .in .flex .right div {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e66f90;
  border-radius: 27px;
  color: #ffffff;
  font-size: 14px;
   
  width: 213px;
  height: 27px;
  margin: 0 0 10px 0;
}
.top_index main #cont11 .inner .box .in .flex .right h4 {
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 19px 0;
  color: #868686;
  padding-bottom: 10px;
  border-bottom: 1.5px solid #868686;
}
.top_index main #cont11 .inner .box .in .flex .right h4 em {
  color: #ff6187;
}
.top_index main #cont11 .inner .box .in .flex .right span {
  display: block;
  font-size: 13.5px;
  line-height: 1.8518518519;
   
  margin: 0 0 5px 0;
  color: #868686;
}
.top_index main #cont11 .inner .box .in .flex .right p {
  color: #ff6187;
  font-size: 24px;
  line-height: 1.9166666667;
   
}
.top_index main #cont11 .inner .box .in .flex .right p strong {
  font-size: 35px;
  line-height: 1.3142857143;
}
.top_index main #cont11 .inner .box .in .flex .right p em {
  font-size: 13px;
  line-height: 1.9230769231;
   
}
.top_index main #cont11 .inner .box .in .text {
  font-size: 11px;
  line-height: 1.5454545455;
  color: #9b9b9b;
  margin: 0 0 56px 0;
}
.top_index main #cont11 .inner .box .in .link a {
  font-family: "Noto Serif JP", serif;
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(237, 108, 137);
  background: linear-gradient(90deg, rgb(237, 108, 137) 0%, rgb(237, 108, 137) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffb2d8",endColorstr="#ffadbf",GradientType=1);
  color: #ffffff;
  font-size: 15px;
   
  font-weight: 400;
  width: 511px;
  height: 77px;
  margin: 0 auto;
  text-align: center;
}
.top_index main #cont11 .inner .box .in .link a.btn02 {
  background: rgb(255, 173, 191);
  background: linear-gradient(90deg, #ffb0d6 0%, #ffabbd 100%);
}
.top_index main #cont11 .inner .box .in .link a::before, .top_index main #cont11 .inner .box .in .link a::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
}
.top_index main #cont11 .inner .box .in .link a:before {
  background: url("../images/link_icon01.png") center center no-repeat;
  background-size: 100% auto;
  width: 22px;
  left: 47px;
}
.top_index main #cont11 .inner .box .in .link a:after {
  background: url("../images/link_icon02.png") center center no-repeat;
  background-size: 100% auto;
  width: 28px;
  right: 27px;
}
.top_index main #cont11 .inner .box .in .link2 a {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  font-weight: bold;
  font-size: 16px;
  color: #ed6c89;
  max-width: 95%;
  width: 450px;
  margin: 28px auto 0 auto;
}
.top_index main #cont11 .inner .box .in .link2 a span {
  padding: 0 0 0 28px;
  display: block;
}
.top_index main #cont11 .inner .box .in .link2 a span em {
  font-size: 16px;
     
  color: #ed6c89;
  font-weight: 700;
}
.top_index main #cont11 .inner .box .in .link2 a::before, .top_index main #cont11 .inner .box .in .link2 a::after {
  content: "";
}
.top_index main #cont11 .inner .box .in .link2 a:before {
  display: block;
  position: absolute;
  top: 7px;
  right: 2px;
  background: url("../images/link_icon03.png") center center no-repeat;
  background-size: 100% auto;
  width: 11px;
  height: 11px;
}
.top_index main #cont11 .inner .box .in .link2 a:after {
  display: block;
  background: #ed6c89;
  width: 100%;
  height: 1.5px;
  margin: 10px 0 0 0;
}
.top_index main #cont11 .inner .box .in .off_img {
  width: 49px;
  position: absolute;
  bottom: 7%;
  left: 24%;
}
@media screen and (max-width: 900px) {
  .top_index main #cont11 {
    background: url("../images/cont11_bg_sp.jpg") right top no-repeat;
    background-size: cover;
    padding: 0vw 0 33.3333333333vw 0;
  }
  .top_index main #cont11 .inner .lead {
    font-size: 5.3333333333vw;
    line-height: 2.125;
   
    padding: 0 0 16.6666666667vw 0;
  }
  .top_index main #cont11 .inner .box {
    box-shadow: 2vw 2vw 2.6666666667vw 0.5333333333vw rgba(215, 141, 175, 0.1);
    width: 84vw;
    margin: 0 auto 8.6666666667vw auto;
    padding: 4vw 0 8vw 0;
  }
  .top_index main #cont11 .inner .box.box2 {
    padding: 8.9333333333vw 0 13.3333333333vw 0;
    margin: 0 auto;
  }
  .top_index main #cont11 .inner .box.box2 .in h3 {
    margin: 0 0 10vw 0;
  }
  .top_index main #cont11 .inner .box .icon {
    top: -10vw;
    left: -9.7333333333vw;
    width: 47.7333333333vw;
  }
  .top_index main #cont11 .inner .box .in {
    width: 70.6666666667vw;
  }
  .top_index main #cont11 .inner .box .in h3 {
    font-size: 5.3333333333vw;
    line-height: 1.625;
    width: 100%;
    margin: 0 0 6.6666666667vw 0;
  }
  .top_index main #cont11 .inner .box .in h3.title {
    text-indent: 0;
  }
  .top_index main #cont11 .inner .box .in h3::after {
    width: 70.6666666667vw;
    margin: 4.5333333333vw auto 0 auto;
  }
  .top_index main #cont11 .inner .box .in .flex {
    display: block;
    margin: 0 0 2.1333333333vw 0;
  }
  .top_index main #cont11 .inner .box .in .flex .left {
    width: 62.9333333333vw;
    margin: 0 0 5.3333333333vw 1.6vw;
  }
  .top_index main #cont11 .inner .box .in .flex .left.left_item {
    width: 70.6666666667vw;
    margin: 0 0 0 0vw;
  }
  .top_index main #cont11 .inner .box .in .flex .right {
    width: 70.6666666667vw;
    padding: 0;
  }
  .top_index main #cont11 .inner .box .in .flex .right.rightbox {
    padding: 3.0666666667vw 0 0 0;
  }
  .top_index main #cont11 .inner .box .in .flex .right div {
    border-radius: 7.3333333333vw;
    font-size: 3.7333333333vw;
   
    width: 100%;
    height: 7.3333333333vw;
    margin: 0 0 3.8666666667vw 0;
  }
  .top_index main #cont11 .inner .box .in .flex .right h4 {
    font-size: 5.3333333333vw;
    line-height: 1.4;
    text-align: center;
    margin: -4.6666666667vw 0 0 0;
    border: none;
  }
  .top_index main #cont11 .inner .box .in .flex .right span {
    font-size: 3.2vw;
    line-height: 2.0833333333;
    text-align: center;
   
    margin: 0 0 -0.2666666667vw 0;
  }
  .top_index main #cont11 .inner .box .in .flex .right p {
     font-size: 4.4vw;
    font-weight: bold;
    text-align: center;
  }
  .top_index main #cont11 .inner .box .in .flex .right p strong {
    font-size: 9.3333333333vw;
    line-height: 1.3285714286;
  }
  .top_index main #cont11 .inner .box .in .flex .right p em {
    font-size: 3.4666666667vw;
   
  }
  .top_index main #cont11 .inner .box .in .text {
    font-size: 2.6666666667vw;
    line-height: 1.6;
    margin: 5.6vw 0 0 0;
  }
  .top_index main #cont11 .inner .box .in .link a {
    font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 3vw;
    width: 70.6666666667vw;
    height: 20vw;
    box-sizing: border-box;
    padding: 0 0 0 6.9333333333vw;
    font-weight: bold;
  }
  .top_index main #cont11 .inner .box .in .link a.btn02 {
    padding: 0 0 0 2vw;
  }
  .top_index main #cont11 .inner .box .in .link a:before {
    width: 7.3333333333vw;
    left: 4.2666666667vw;
  }
  .top_index main #cont11 .inner .box .in .link a:after {
    width: 4.1333333333vw;
    right: 2vw;
  }
  .top_index main #cont11 .inner .box .in .link2 a {
    font-size: 4vw;
       
    width: 70.6666666667vw;
    margin: 6.6666666667vw auto 0 auto;
    box-sizing: border-box;
    padding: 0 0 0 2.4vw;
  }
  .top_index main #cont11 .inner .box .in .link2 a span {
    padding: 0 0 0 11.7333333333vw;
    font-size: 1.5rem;
  }
  .top_index main #cont11 .inner .box .in .link2 a span em {
    display: none;
  }
  .top_index main #cont11 .inner .box .in .link2 a:before {
    top: 3.0666666667vw;
    right: 0.2666666667vw;
    background: url("../images/link_icon03.png") center center no-repeat;
    background-size: 100% auto;
    width: 2.9333333333vw;
    height: 4vw;
  }
  .top_index main #cont11 .inner .box .in .link2 a:after {
    margin: 1.3333333333vw 0 0 0;
  }
  .top_index main #cont11 .inner .box .in .off_img {
    bottom: 12vw;
    left: 6.5333333333vw;
    width: 12.4vw;
  }
}
.top_index main #cont02 {
  position: relative;
  top: 0;
  left: 0;
  padding: 0 0 0 0;
  margin: 0 auto;
}
.top_index main #cont02 .movie {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  margin: 0 0 40px 0;
  width: 100%;
  max-width: 960px;
  height: 540px;
  margin: 0 auto 40px;
}
.top_index main #cont02 a {
  position: relative;
  top: 0;
  left: 0;
  font-family: "Noto Serif JP", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(237, 108, 137);
  background: linear-gradient(90deg, rgb(237, 108, 137) 0%, rgb(237, 108, 137) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffb2d8",endColorstr="#ffadbf",GradientType=1);
  color: #ffffff;
  font-size: 15px;
  width: 511px;
  height: 77px;
  margin: 0 auto;
  text-align: center;
  margin: 0 auto 110px;
}
.top_index main #cont02 a::before, .top_index main #cont02 a::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
}
.top_index main #cont02 a:before {
  background: url("../images/link_icon01.png") center center no-repeat;
  background-size: 100% auto;
  width: 22px;
  left: 20px;
}
.top_index main #cont02 a:after {
  background: url("../images/link_icon02.png") center center no-repeat;
  background-size: 100% auto;
  width: 28px;
  right: 20px;
}
@media screen and (max-width: 900px) {
  .top_index main #cont02 {
    padding: 0 0 0 0;
  }
  .top_index main #cont02 .movie {
    width: 100%;
    height: 56.4vw;
    margin: 0 auto 6.6666666667vw;
  }
  .top_index main #cont02 a {
    position: relative;
    top: 0;
    left: 0;
    font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 4.1333333333vw;
    line-height: 1.3387096774;
    border-radius: 1.3333333333vw;
    width: 84vw;
    height: 20vw;
    margin: 0 auto 12vw;
    font-weight: bold;
  }
  .top_index main #cont02 a::before, .top_index main #cont02 a::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
  }
  .top_index main #cont02 a:before {
    display: none;
  }
  .top_index main #cont02 a:after {
    background: url("../images/link_icon02.png") center center no-repeat;
    background-size: 100% auto;
    width: 4vw;
    right: 27px;
  }
}
.top_index main #cont10 {
  position: relative;
  top: 0;
  left: 0;
  padding: 0 0 105px 0;
}
.top_index main #cont10:before {
  content: "";
  background: url(../images/cont10_bg.jpg) no-repeat left top/cover;
  width: 65.5%;
  height: 427px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.top_index main #cont10 .outer {
  position: relative;
  top: 0;
  left: 0;
  max-width: 1428px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.top_index main #cont10 .bg {
  width: 50%;
  margin-bottom: 50px;
}
.top_index main #cont10 .inner {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  margin: 0;
  max-width: 100%;
}
.top_index main #cont10 .inner .text {
  position: relative;
  top: 0;
  left: 0;
  margin-right: 76px;
}
.top_index main #cont10 .inner .text:last-child {
  margin-bottom: 0px;
}
.top_index main #cont10 .inner .text:last-child::before {
  display: none;
}
.top_index main #cont10 .inner .text span {
  display: block;
  font-size: 16px;
    
  margin: 0 0 28px 0;
}
.top_index main #cont10 .inner .text strong {
  display: block;
  font-size: 30px;
  line-height: 1.5263157895;
  color: #ed6c89;
  /*  */
  margin: 0 0 52px 10px;
}
.top_index main #cont10 .inner .text ul {
      /* padding: 0 0 0 226px; */
      width: 90%;
      max-width: 450px;
      margin: 0 auto;
}
.top_index main #cont10 .inner .text ul li {
  display: flex;
  align-items: center;
  border-bottom: 0.1px solid #868686;
  font-size: 14px;
  color: #868686;
  line-height: 2;
  /* width: 210px; */
  width: 95%;
  margin-right: 0;
  max-width: 370px;
  text-align: initial;
  margin: 0 0 5px;
  padding: 0 0 5px;
}
.top_index main #cont10 .inner .text ul li em {
  display: block;
  width: 11px;
  margin: 0 26px 0 0;
}
@media screen and (max-width: 900px) {
  .top_index main #cont10 {
    padding: 0 0 13.3333333333vw 0;
  }
  .top_index main #cont10:before {
    content: "";
    background: url(../images/cont10_bg.jpg) no-repeat left top/cover;
    width: 85.3333333333vw;
    height: 110.6666666667vw;
  }
  .top_index main #cont10 .outer {
    position: relative;
    top: 0;
    left: 0;
    max-width: 1428px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .top_index main #cont10 .bg {
    width: 100%;
    margin-bottom: 6.6666666667vw;
  }
  .top_index main #cont10 .inner {
    width: 100%;
  }
  .top_index main #cont10 .inner .text {
    margin: 0 8vw;
  }
  .top_index main #cont10 .inner .text strong {
    display: block;
    font-size: 4.1333333333vw;
    line-height: 1.6630434783;
    margin: 0 0 6.9333333333vw 0;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .top_index main #cont10 .inner .text ul {
    padding: 0 0 0 10.6666666667vw;
  }
  .top_index main #cont10 .inner .text ul li {
    font-size: 3.7333333333vw;
    width: 56vw;
    margin-right: 0;
  }
  .top_index main #cont10 .inner .text ul li em {
    width: 3.0666666667vw;
  }
}
.top_index main #cont04 {
  position: relative;
  top: 0;
  left: 0;
  background: url("../images/cont04_bg.png") center center no-repeat;
  background-size: cover;
  padding: 110px 0;
}
.top_index main #cont04 .inner {
  width: 960px;
}
.top_index main #cont04 .inner .bg {
  position: absolute;
  top: -28%;
  left: -15%;
}
.top_index main #cont04 .inner .bg .slide-item {
  transform: translateY(14px);
  width: 1250px;
}
.top_index main #cont04 .inner span {
  display: block;
  width: 227px;
}
.top_index main #cont04 .inner strong {
  display: block;
  text-align: center;
  font-size: 28.5px;
  line-height: 1.5263157895;
  /*  */
  margin: 0 0 15px 0;
  color: #868686;
}
.top_index main #cont04 .inner .lead {
  text-align: center;
  font-size: 16px;
  line-height: 2.5;
  margin: 0 0 40px 0;
  color: #868686;
}
.top_index main #cont04 .inner .lead em {
  color: #ed6c89;
}
.top_index main #cont04 .inner ul {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 40px auto;
}
.top_index main #cont04 .inner ul li {
  position: relative;
  top: 0;
  left: 0;
  background: #d8d8d8;
}
.top_index main #cont04 .inner ul li img {
  display: block;
  position: absolute;
  top: -23px;
  left: 19px;
  width: 88px;
}
.top_index main #cont04 .inner ul li p {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 16.5px;
  line-height: 1.7878787879;
  width: 464px;
  height: 150px;
  color: #868686;
}
.top_index main #cont04 .inner ul li p em {
  font-size: 21.5px;
  line-height: 1.3720930233;
  padding-left: 15px;
}
.top_index main #cont04 .inner ul li p em small {
  font-size: 16.5px;
}
.top_index main #cont04 .inner ul li p span {
  display: inline-block;
}
.top_index main #cont04 .inner ul li:first-child {
  background: #ed6c89;
}
.top_index main #cont04 .inner ul li:first-child p {
  color: #ffffff;
}
.top_index main #cont04 .inner ul li:last-child p span {
  display: inline-block;
}
.top_index main #cont04 .inner .text {
  text-align: center;
  font-size: 16px;
  line-height: 2.125;
  margin: 0;
  color: #868686;
}
.top_index main #cont04 .inner .text em {
  color: #ed6c89;
  font-size: 28.5px;
  line-height: 1.3157894737;
}
@media screen and (max-width: 900px) {
  .top_index main #cont04 {
    padding: 0 0 13.3333333333vw 0;
    background: url("../images/cont04_bg_sp.jpg") center top 1.3333333333vw no-repeat;
    background-size: cover;
  }
  .top_index main #cont04 .inner {
    padding: 12vw 0 0;
    width: 100%;
  }
  .top_index main #cont04 .inner .bg {
    top: 0;
    left: -8.2666666667vw;
  }
  .top_index main #cont04 .inner .bg .slide-item .sp {
    width: 77.2vw;
    transform: translateY(-15px);
  }
  .top_index main #cont04 .inner span {
    width: 30.2666666667vw;
    margin: 0 0 0 -0.4vw;
  }
  .top_index main #cont04 .inner strong {
     font-size: 4.4vw;
    line-height: 1.59375;
    /*  */
    margin: 0 auto 6.6666666667vw auto;
  }
  .top_index main #cont04 .inner strong::after {
    width: 70.6666666667vw;
    height: 0.1333333333vw;
    margin: 3.2vw auto 0 auto;
  }
  .top_index main #cont04 .inner .lead {
    font-size: 4vw;
    line-height: 1.6666666667;
      
    margin: 0 0 9.3333333333vw 0;
  }
  .top_index main #cont04 .inner ul {
    display: flex;
    margin: 0 auto 9.3333333333vw auto;
    -moz-column-gap: 3.7333333333vw;
         column-gap: 3.7333333333vw;
    width: 84vw;
  }
  .top_index main #cont04 .inner ul li {
    width: 40vw;
  }
  .top_index main #cont04 .inner ul li img {
    top: 10.6666666667vw;
    left: 30.6666666667vw;
    width: 9.3333333333vw;
  }
  .top_index main #cont04 .inner ul li p {
    text-align: center;
    font-size: 3.6666666667vw;
    line-height: 1.5272727273;
    width: 100%;
    height: 29.3333333333vw;
    box-sizing: border-box;
    padding: 5.3333333333vw 0 0 0;
    font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .top_index main #cont04 .inner ul li p small {
    font-size: 3.6vw;
    font-weight: bold;
  }
  .top_index main #cont04 .inner ul li p em {
    font-size: 6.6666666667vw;
    line-height: 1.04;
    padding-left: 0px;
    font-family: "Noto Serif JP", serif;
  }
  .top_index main #cont04 .inner ul li p em small {
    font-size: 3.6vw;
    font-weight: bold;
  }
  .top_index main #cont04 .inner .text {
    font-size: 3.6vw;
    line-height: 1.9259259259;
    font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .top_index main #cont04 .inner .text em {
    font-size: 5.3333333333vw;
    line-height: 1.5;
    color: #ed6c89;
    margin: -6.6666666667vw 0 0;
    display: inline-block;
    font-family: "Noto Serif JP", serif;
  }
  .top_index main #cont04 .inner .text em .span {
    font-size: 2.6666666667vw;
  }

}
.top_index main #cont05 {
  position: relative;
  top: 0;
  left: 0;
  padding: 261px 0 417px 0;
}
.top_index main #cont05 .bg p {
  position: absolute;
  top: 76px;
  right: 0;
  width: 525px;
}
.top_index main #cont05 .bg strong {
  display: block;
  position: absolute;
  top: 147px;
  right: 0;
  width: 635px;
}
.top_index main #cont05 .bg span {
  display: block;
  position: absolute;
  top: 647px;
  right: 0;
  width: 1038px;
}
.top_index main #cont05 .inner {
  position: relative;
  top: 0;
  left: 0;
  max-width: 1100px;
}
.top_index main #cont05 .inner .text span {
  display: block;
  width: 153px;
  margin: 0 0 84px 0;
}
.top_index main #cont05 .inner .text p {
  font-size: 18px;
  line-height: 2.6666666667;
  margin: 0 0 24px 0;
}
.top_index main #cont05 .inner .text strong {
  display: block;
  font-size: 30px;
  line-height: 1.9333333333;
}
.top_index main #cont05 .inner .text strong em {
  color: #ed6c89;
}
@media screen and (max-width: 900px) {
  .top_index main #cont05 {
    padding: 151.6vw 0 29.6vw 0;
  }
  .top_index main #cont05 .bg p {
    top: 13.7333333333vw;
    width: 70vw;
  }
  .top_index main #cont05 .bg strong {
    top: 23.0666666667vw;
    width: 84.6666666667vw;
  }
  .top_index main #cont05 .bg span {
    top: 100.4vw;
    right: -0.6666666667vw;
    width: 56.8vw;
  }
  .top_index main #cont05 .inner .text {
    width: 100%;
    box-sizing: border-box;
    padding: 0 0 0 14.8vw;
  }
  .top_index main #cont05 .inner .text span {
    width: 40.9333333333vw;
    margin: 0 0 16.5333333333vw 0;
  }
  .top_index main #cont05 .inner .text p {
    font-size: 5.3333333333vw;
    line-height: 2;
    margin: 0 0 10vw 0;
  }
  .top_index main #cont05 .inner .text strong {
    font-size: 6.6666666667vw;
    line-height: 2;
  }
}
.top_index main #cont06 {
  position: relative;
  top: 0;
  left: 0;
  padding: 0 0 113px 0;
}
.top_index main #cont06 h3 {
  width: 1068px;
  margin: -9px auto 30px;
  position: relative;
  z-index: -1;
}
.top_index main #cont06 .inner {
  max-width: 1100px;
}
.top_index main #cont06 .inner .text {
  display: block;
  text-align: center;
  font-size: 28.5px;
  line-height: 1.5263157895;
  margin: 0 0 10px 0;
  color: #555659;
}
.top_index main #cont06 .inner ul {
  position: relative;
  top: 0;
  left: 0;
}
.top_index main #cont06 .inner ul .slick-arrow {
  position: absolute;
  top: 208px;
  border: none;
  text-indent: -9999px;
  width: 60px;
  height: 60px;
  z-index: 1;
}
.top_index main #cont06 .inner ul .slick-arrow.slick-prev {
  left: 38px;
  top: 258px;
  background: url("../images/icon_left.png") center center no-repeat;
  background-size: 100% auto;
}
.top_index main #cont06 .inner ul .slick-arrow.slick-next {
  right: 38px;
  top: 258px;
  background: url("../images/icon_right.png") center center no-repeat;
  background-size: 100% auto;
}
.top_index main #cont06 .inner ul li {
  padding: 35px 70px 10px;
  width: 1030px;
}
.top_index main #cont06 .inner ul li .border {
  border: 1px solid #ed6c89;
  max-width: 960px;
  margin: 0 auto;
}
.top_index main #cont06 .inner ul li .border .flex {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 93px 120px;
}
.top_index main #cont06 .inner ul li .border .flex .left {
  width: 47%;
  box-sizing: border-box;
}
.top_index main #cont06 .inner ul li .border .flex .left em {
  display: block;
  position: absolute;
  top: 14px;
  left: 19px;
  font-weight: normal;
  color: #7f7f80;
  font-size: 16px;
}
.top_index main #cont06 .inner ul li .border .flex .left strong {
  display: block;
  margin: 0 0 12px 0;
}
.top_index main #cont06 .inner ul li .border .flex .left strong img {
  width: auto;
  height: 35px;
}
.top_index main #cont06 .inner ul li .border .flex .left p {
  font-size: 20px;
  line-height: 2;
  color: #888888;
    
}
.top_index main #cont06 .inner ul li .border .flex .left p sup {
  font-size: 11px;
}
.top_index main #cont06 .inner ul li .border .flex .left p span {
  display: block;
  font-size: 11px;
  line-height: 1.8181818182;
  margin-top: 5px;
  color: #888888;
}
.top_index main #cont06 .inner ul li .border .flex .right {
  position: relative;
  top: 0;
  left: 0;
  width: 50%;
}
.top_index main #cont06 .inner ul li .border .flex .right img {
  display: block;
}
.top_index main #cont06 .inner ul li .border .flex .right p {
  position: absolute;
  top: -120px;
  right: -147px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ed6c89;
  font-size: 17px;
  line-height: 1.7058823529;
   
  font-weight: bold;
  width: 168px;
  height: 168px;
  background: url("../images/cont06_icon.png") center center no-repeat;
  box-shadow: 10px 0px 20px rgba(205, 135, 167, 0.07);
  border-radius: 50%;
  background-size: cover;
}
@media screen and (max-width: 900px) {
  .top_index main #cont06 {
    padding: 0 0 6.6666666667vw 0;
  }
  .top_index main #cont06 h3 {
    width: 100.6666666667vw;
    margin: -1.2vw auto 4vw;
    position: relative;
    top: 0.9333333333vw;
    z-index: -1;
  }
  .top_index main #cont06 .inner .text {
     font-size: 4.4vw;
    line-height: 1.59375;
    text-align: center;
    margin: 0 0 9.3333333333vw 0;
  }
  .top_index main #cont06 .inner .text::after {
    width: 28.4vw;
    margin: -0.2666666667vw auto 0 auto;
  }
  .top_index main #cont06 .inner .text::before {
    display: none;
  }
  .top_index main #cont06 .inner ul {
    padding-left: 4vw;
  }
  .top_index main #cont06 .inner ul .slick-arrow {
    display: none !important;
  }
  .top_index main #cont06 .inner ul .slick-list {
    padding-right: 14.6666666667vw !important;
  }
  .top_index main #cont06 .inner ul li {
    width: initial;
    padding: 0 3.3333333333vw 16vw;
  }
  .top_index main #cont06 .inner ul li .border {
    padding: 6.6666666667vw 6.6666666667vw 13.3333333333vw;
  }
  .top_index main #cont06 .inner ul li .border .flex {
    display: block;
    padding: 0;
  }
  .top_index main #cont06 .inner ul li .border .flex .left {
    width: 100%;
    box-sizing: border-box;
  }
  .top_index main #cont06 .inner ul li .border .flex .left em {
    top: 0vw;
    left: auto;
    right: 1.8666666667vw;
    font-size: 2.6666666667vw;
  }
  .top_index main #cont06 .inner ul li .border .flex .left strong {
    margin: 0 0 3.8666666667vw 0;
  }
  .top_index main #cont06 .inner ul li .border .flex .left strong img {
    height: auto;
    width: 8vw;
  }
  .top_index main #cont06 .inner ul li .border .flex .left strong img.num_img02 {
    height: auto;
    width: 10.6666666667vw;
  }
  .top_index main #cont06 .inner ul li .border .flex .left p {
    text-align: center;
    font-size: 4vw;
    line-height: 1.4333333333;
     
    min-height: 25.6vw;
  }
  .top_index main #cont06 .inner ul li .border .flex .left p.sp_mt {
    padding-top: 2.6666666667vw;
    min-height: 22.9333333333vw;
  }
  .top_index main #cont06 .inner ul li .border .flex .left p sup {
    font-size: 2.6666666667vw;
  }
  .top_index main #cont06 .inner ul li .border .flex .left p span {
    position: absolute;
    bottom: -28vw;
    left: -6.6666666667vw;
    font-size: 2.6666666667vw;
    line-height: 1.5;
   
    font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .top_index main #cont06 .inner ul li .border .flex .right {
    box-sizing: border-box;
    width: 100%;
    margin: -0.9333333333vw 0 0;
  }
  .top_index main #cont06 .inner ul li .border .flex .right p {
    top: 38.6666666667vw;
    bottom: -6.4vw;
    right: -13.3333333333vw;
    font-size: 3.6vw;
    line-height: 1.3888888889;
    width: 28vw;
    height: 28vw;
    font-size: 3vw;
    line-height: 1.303030303;
  }
}
.top_index main #cont03 {
  position: relative;
  top: 0;
  left: 0;
  padding: 0 0 100px 0;
}
.top_index main #cont03 .area01 {
  max-width: 1280px;
  margin: 0 auto;
}
.top_index main #cont03 .inner {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 1280px;
  padding: 237px 0 275px 0;
}
.top_index main #cont03 .inner .bg p {
  position: absolute;
  top: 143px;
  left: 0;
  width: 410px;
}
.top_index main #cont03 .inner .bg strong {
  display: block;
  position: absolute;
  top: 238px;
  left: 0;
  width: 565px;
}
.top_index main #cont03 .inner .bg span {
  display: block;
  position: absolute;
  top: 705px;
  left: 0;
  width: 1160px;
}
.top_index main #cont03 .inner .text {
  position: relative;
  top: 0;
  left: 0;
  width: 50%;
}
.top_index main #cont03 .inner .text .lead {
  display: block;
  width: 161px;
  margin: 0 0 79px 0;
}
.top_index main #cont03 .inner .text p {
  font-size: 20px;
  line-height: 2.65;
    
  margin: 0 0 29px 0;
}
.top_index main #cont03 .inner .text p span {
  color: #ed6c89;
}
.top_index main #cont03 .inner .text em {
  display: block;
  font-size: 11px;
  color: #9b9b9b;
}
@media screen and (max-width: 900px) {
  .top_index main #cont03 {
    padding: 0 0 10vw 0;
  }
}
.top_index main #cont07 {
  position: relative;
  top: 0;
  left: 0;
  padding: 0 0 110px 0;
}
.top_index main #cont07 .inner .title {
  margin: 0 0 100px 0;
}
.top_index main #cont07 .inner .title strong {
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 2.5;
  margin: 0 0 20px 0;
  color: #868686;
}
.top_index main #cont07 .inner .title h2 {
  text-align: center;
  font-size: 28.5px;
  line-height: 1.3157894737;
  color: #ed6c89;
}
.top_index main #cont07 .inner dl {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  margin: 0 0 150px 0;
}
.top_index main #cont07 .inner dl dt {
  position: relative;
  top: 0;
  left: 0;
  width: 50%;
  box-sizing: border-box;
  z-index: 1;
}
.top_index main #cont07 .inner dl dt span {
  display: block;
  margin: 0 0 30px 0;
  font-size: 24px;
}
.top_index main #cont07 .inner dl dt span::after {
  content: "";
  display: block;
  background: #ed6c89;
  width: 80px;
  height: 1px;
  margin: 9px 0 0 0;
}
.top_index main #cont07 .inner dl dt span img {
  width: auto;
  height: 16px;
}
.top_index main #cont07 .inner dl dt strong {
  display: block;
  font-size: 22px;
  line-height: 1.8181818182;
  margin: 0 0 20px 0;
  color: #868686;
}
.top_index main #cont07 .inner dl dt p {
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  line-height: 2.1428571429;
  color: #868686;
}
.top_index main #cont07 .inner dl dd span,
.top_index main #cont07 .inner dl dd p,
.top_index main #cont07 .inner dl dd em {
  display: block;
  position: absolute;
}
.top_index main #cont07 .inner dl.point01 {
  margin: 0 0 100px 0;
}
.top_index main #cont07 .inner dl.point01 dt {
  padding: 0 0 0 158px;
}
.top_index main #cont07 .inner dl.point01 dd span {
  top: -75px;
  right: 0;
  width: 485px;
}
.top_index main #cont07 .inner dl.point01 dd p {
  top: 0;
  right: 160px;
  width: 500px;
}
.top_index main #cont07 .inner dl.point02 {
  flex-direction: row-reverse;
  margin: 0 0 175px 0;
}
.top_index main #cont07 .inner dl.point02 dt {
  padding: 0 0 0 80px;
}
.top_index main #cont07 .inner dl.point02 dd span {
  top: 78px;
  left: 0;
  width: 525px;
}
.top_index main #cont07 .inner dl.point02 dd p {
  top: 37px;
  left: -69px;
  width: 410px;
}
.top_index main #cont07 .inner dl.point02 dd em {
  top: 0;
  left: 207px;
  width: 410px;
}
.top_index main #cont07 .inner dl.point03 {
  margin: 0 0 138px 0;
}
.top_index main #cont07 .inner dl.point03 dt {
  padding: 0 0 0 159px;
}
.top_index main #cont07 .inner dl.point03 dd span {
  top: 0;
  right: 0;
  width: 525px;
}
.top_index main #cont07 .inner dl.point03 dd p {
  top: 0;
  right: 160px;
  width: 500px;
}
.top_index main #cont07 .inner .box {
  position: relative;
  top: 0;
  left: 0;
  border-bottom: 1px solid #ed6c89;
  border-top: 1px solid #ed6c89;
  border-right: 1px solid #ed6c89;
  max-width: 960px;
  margin: 0 auto;
}
.top_index main #cont07 .inner .box strong {
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  width: 67px;
}
.top_index main #cont07 .inner .box .text {
  padding: 106px 0 105px 142px;
}
.top_index main #cont07 .inner .box .text h4 {
  text-align: left;
  font-size: 22px;
  line-height: 1.8181818182;
  margin: 0 0 12px 0;
  color: #868686;
}
.top_index main #cont07 .inner .box .text p {
  font-size: 14px;
  line-height: 2.5;
  color: #868686;
  width: 382px;
}
.top_index main #cont07 .inner .box .img p {
  width: 500px;
}
.top_index main #cont07 .inner .box .img span {
  display: block;
  position: absolute;
  top: 120px;
  right: 136px;
  width: 235px;
}
@media screen and (max-width: 900px) {
  .top_index main #cont07 {
    padding: 0 0 0vw 0;
  }
  .top_index main #cont07 .inner .title {
    margin: 0 0 29.3333333333vw 0;
  }
  .top_index main #cont07 .inner .title strong {
    font-size: 3.6vw;
    line-height: 1.9259259259;
    margin: 0 0 0vw 0;
    font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .top_index main #cont07 .inner .title h2 {
     font-size: 4.4vw;
    line-height: 1.59375;
  }
  .top_index main #cont07 .inner dl {
    display: block;
    margin: 0 0 25.6vw 0;
  }
  .top_index main #cont07 .inner dl dt {
    width: 100%;
  }
  .top_index main #cont07 .inner dl dt span {
    margin: 0 0 9.7333333333vw 0;
  }
  .top_index main #cont07 .inner dl dt span::after {
    width: 21.8666666667vw;
    height: 2px;
    margin: 2.5333333333vw 0 0 0;
  }
  .top_index main #cont07 .inner dl dt span img {
    height: 4.2666666667vw;
  }
  .top_index main #cont07 .inner dl dt strong {
    text-align: center;
    font-size: 5.3333333333vw;
    line-height: 1.75;
    margin: 0 0 6.6666666667vw 0;
  }
  .top_index main #cont07 .inner dl dt strong em {
    font-size: 3.6vw;
    line-height: 1.9259259259;
    font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .top_index main #cont07 .inner dl dt p {
    text-align: left;
    font-size: 4vw;
    line-height: 2;
    padding: 0 4vw;
  }
  .top_index main #cont07 .inner dl.point01 {
    margin: 0 0 24.9333333333vw 0;
  }
  .top_index main #cont07 .inner dl.point01 dt {
    padding: 0 8vw 0;
  }
  .top_index main #cont07 .inner dl.point01 dt span {
    position: absolute;
    top: -10.6666666667vw;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .top_index main #cont07 .inner dl.point01 dd span {
    top: -6.6666666667vw;
    right: 0;
    width: 64.6666666667vw;
  }
  .top_index main #cont07 .inner dl.point01 dd p {
    top: 80vw;
    right: 8vw;
    width: 84vw;
  }
  .top_index main #cont07 .inner dl.point02 {
    margin: 0 0 24.1333333333vw 0;
  }
  .top_index main #cont07 .inner dl.point02 dt {
    padding: 58.9333333333vw 8vw 0;
  }
  .top_index main #cont07 .inner dl.point02 dt span {
    position: absolute;
    top: 49.3333333333vw;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 0 9.8666666667vw 0;
  }
  .top_index main #cont07 .inner dl.point02 dt strong {
     font-size: 5.4vw;
    line-height: 1.7;
  }
  .top_index main #cont07 .inner dl.point02 dt strong em {
    font-size: 3.6vw;
    line-height: 1.9259259259;
  }
  .top_index main #cont07 .inner dl.point02 dd {
    position: relative;
  }
  .top_index main #cont07 .inner dl.point02 dd span {
    top: 18vw;
    left: 21.3333333333vw;
    width: 70vw;
  }
  .top_index main #cont07 .inner dl.point02 dd p {
    top: 26.6666666667vw;
    left: 8vw;
    width: 54.6666666667vw;
  }
  .top_index main #cont07 .inner dl.point02 dd em {
    top: 8vw;
    left: 36.6666666667vw;
    width: 54.6666666667vw;
  }
  .top_index main #cont07 .inner dl.point03 {
    margin: 0 0 0vw 0;
  }
  .top_index main #cont07 .inner dl.point03 dt {
    padding: 80vw 8vw 70.6666666667vw;
  }
  .top_index main #cont07 .inner dl.point03 dt span {
    position: absolute;
    top: 71.3333333333vw;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .top_index main #cont07 .inner dl.point03 dt strong {
     font-size: 5.4vw;
    line-height: 1.4375;
  }
  .top_index main #cont07 .inner dl.point03 dt strong em {
    font-size: 3.6vw;
    line-height: 1.9259259259;
  }
  .top_index main #cont07 .inner dl.point03 dd span {
    top: 0;
    right: 0;
    width: 70vw;
  }
  .top_index main #cont07 .inner dl.point03 dd p {
    top: 153.3333333333vw;
    right: 8vw;
    width: 84vw;
  }
  .top_index main #cont07 .inner .box {
    border: none;
    max-width: 84vw;
    border-right: 1px solid #ed6c89;
    border-left: 1px solid #ed6c89;
    border-bottom: 1px solid #ed6c89;
    margin-bottom: 13.3333333333vw;
  }
  .top_index main #cont07 .inner .box strong {
    top: 0vw;
    left: 0.4vw;
    width: 83.3333333333vw;
  }
  .top_index main #cont07 .inner .box .text {
    padding: 21.7333333333vw 0 0 0;
    margin: 0 0 5.3333333333vw 0;
    text-align: center;
  }
  .top_index main #cont07 .inner .box .text h4 {
    text-align: center;
     font-size: 4.4vw;
    line-height: 1.4375;
    margin: 0 auto 4.6666666667vw auto;
  }
  .top_index main #cont07 .inner .box .text h4 span {
    font-size: 3.6vw;
    line-height: 1.9259259259;
    font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .top_index main #cont07 .inner .box .text p {
    font-size: 4vw;
    line-height: 2;
    width: 70.4vw;
    margin: 0 auto;
  }
  .top_index main #cont07 .inner .box .img p {
    top: 105.2vw;
    right: -14.8vw;
    width: 81.0666666667vw;
  }
  .top_index main #cont07 .inner .box .img span {
    position: relative;
    margin: 0 auto 9.3333333333vw;
    top: 0vw;
    right: 0vw;
    width: 70.4vw;
  }
}
.top_index main #cont08 {
  position: relative;
  top: 0;
  left: 0;
  background: url("../images/cont08_bg.png") center center repeat-x;
  background-size: cover;
  padding: 105px 0 110px 0;
}
.top_index main #cont08 .inner .title {
  margin: 0 0 50px 0;
}
.top_index main #cont08 .inner .title span {
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 2.5;
  margin: 0 0 5px 0;
  color: #868686;
}
.top_index main #cont08 .inner .title strong {
  display: block;
  text-align: center;
  font-size: 28.5px;
  line-height: 1.3157894737;
  color: #ed6c89;
  font-weight: 400;
}
.top_index main #cont08 .inner .box {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 960px;
  margin: 0 auto;
}
.top_index main #cont08 .inner .box .img {
  width: 515px;
}
.top_index main #cont08 .inner .box div {
  position: absolute;
  top: 35px;
  right: 0;
  width: 485px;
}
.top_index main #cont08 .inner .box div strong {
  display: block;
  font-size: 22px;
  line-height: 1.8181818182;
  margin: 0 0 15px 0;
  color: #868686;
}
.top_index main #cont08 .inner .box div strong em {
  font-size: 22px;
  line-height: 1.8181818182;
  color: #868686;
}
.top_index main #cont08 .inner .box div p {
  font-size: 14px;
  line-height: 2.1428571429;
  color: #808080;
  width: 410px;
  margin: 0 0 25px 0;
}
.top_index main #cont08 .inner .box div em {
  display: block;
  font-size: 11px;
  line-height: 1.8181818182;
  color: #9b9b9b;
 
}
@media screen and (max-width: 900px) {
  .top_index main #cont08 {
    background: url("../images/cont08_bg_sp.jpg") center center no-repeat;
    background-size: cover;
    padding: 13.3333333333vw 0 12.6666666667vw 0;
  }
  .top_index main #cont08 .inner .title {
    margin: 0 0 9.3333333333vw 0;
  }
  .top_index main #cont08 .inner .title span {
    font-size: 3.6vw;
    line-height: 1.9259259259;
     
    font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .top_index main #cont08 .inner .title strong {
     font-size: 4.4vw;
    line-height: 1.59375;
      
  }
  .top_index main #cont08 .inner .box {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  .top_index main #cont08 .inner .box .img {
    width: 100%;
  }
  .top_index main #cont08 .inner .box div {
    position: relative;
    top: 0;
    right: 0;
    margin: 9.3333333333vw 8vw 0;
    text-align: center;
    width: 84vw;
  }
  .top_index main #cont08 .inner .box div strong {
     font-size: 4.4vw;
    line-height: 1.59375;
   
    margin: 0 0 4.8vw 0;
  }
  .top_index main #cont08 .inner .box div strong em {
    text-align: center;
    font-size: 4vw;
    line-height: 1.7333333333;
     
    display: block;
    padding: 0;
    font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .top_index main #cont08 .inner .box div p {
    font-size: 4vw;
    line-height: 2;
    width: 100%;
   
    margin: 0 auto 5.7333333333vw auto;
    width: 70.6666666667vw;
  }
  .top_index main #cont08 .inner .box div em {
    color: #868686;
    text-align: left;
    font-size: 2.6666666667vw;
    line-height: 1.775;
       
    padding-left: 6.6666666667vw;
  }
}
.top_index main #cont09 {
  position: relative;
  top: 0;
  left: 0;
  padding: 120px 0 0 0;
}
.top_index main #cont09 .lead {
  position: absolute;
  top: -6px;
  left: -70px;
  width: 100%;
}
.top_index main #cont09 .lead img {
  display: block;
  width: 892px;
  margin: 0 auto;
}
.top_index main #cont09 .inner {
  max-width: 1280px;
}
.top_index main #cont09 .inner .flex {
  display: flex;
  margin: 0 auto;
}
.top_index main #cont09 .inner .flex .left {
  position: relative;
  top: 0;
  left: 0;
  width: 483px;
  box-sizing: border-box;
  padding: 0 0 0 160px;
  z-index: 1;
}
.top_index main #cont09 .inner .flex .left h4 {
  width: 162px;
  margin: 0 0 64px 0;
}
.top_index main #cont09 .inner .flex .left div {
  position: relative;
  top: 0;
  left: 0;
  padding: 0 0 0 68px;
}
.top_index main #cont09 .inner .flex .left div:before {
  display: block;
  position: absolute;
  top: 4.5%;
  left: 42px;
  content: "";
  background: #868686;
  width: 1px;
  height: 96.5%;
}
.top_index main #cont09 .inner .flex .left div strong {
  display: block;
  font-size: 20px;
  line-height: 2;
   
  margin: 0 0 15px 0;
  color: #868686;
}
.top_index main #cont09 .inner .flex .left div p {
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  line-height: 1.75;
  color: #868686;
 
  width: 194px;
}
.top_index main #cont09 .inner .flex .right {
  position: relative;
  top: 0;
  left: 0;
  width: 755px;
  margin: 0 0 0 -45px;
}
.top_index main #cont09 .inner .flex .right::after {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: -50vw;
  background: #ffffff;
  width: 50vw;
  height: 110%;
}
.top_index main #cont09 .inner .flex .right ul {
  position: relative;
  top: 0;
  left: 0;
  padding: 13px 0 0 0;
}
.top_index main #cont09 .inner .flex .right ul .slick-list {
  overflow: inherit;
  overflow-x: clip;
}
.top_index main #cont09 .inner .flex .right ul .slick-arrow {
  position: absolute;
  top: 122px;
  border: none;
  text-indent: -9999px;
  width: 60px;
  height: 60px;
  z-index: 1;
}
.top_index main #cont09 .inner .flex .right ul .slick-arrow.slick-prev {
  left: 15px;
  background: url("../images/icon_left.png") center center no-repeat;
  background-size: 100% auto;
}
.top_index main #cont09 .inner .flex .right ul .slick-arrow.slick-next {
  right: -30px;
  background: url("../images/icon_right.png") center center no-repeat;
  background-size: 100% auto;
}
.top_index main #cont09 .inner .flex .right ul li {
  position: relative;
  top: 0;
  left: 0;
  width: 325px;
  padding: 0 0 0 50px;
}
.top_index main #cont09 .inner .flex .right ul li strong {
  position: absolute;
  top: -19px;
  right: -14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 92px;
  background: #ed6c89;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  width: 92px;
  height: 92px;
}
.top_index main #cont09 .inner .flex .right ul li .text {
  text-align: left;
  display: block;
  color: #808080;
  font-size: 11px;
  line-height: 1.8181818182;
 
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.top_index main #cont09 .inner .flex .right ul li .img {
  position: absolute;
  top: -11px;
  left: 40px;
}
.top_index main #cont09 .inner .flex .right ul li .img img {
  width: auto;
  height: 35px;
}
.top_index main #cont09 .inner .flex .right ul li p {
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  line-height: 2.5;
  margin: 9px 0 0 0;
   
  color: #868686;
}
.top_index main #cont09 .inner .flex .right ul li p em {
  color: #ed6c89;
}
@media screen and (max-width: 900px) {
  .top_index main #cont09 {
    padding: 10.6666666667vw 0 0 0;
  }
  .top_index main #cont09 .lead {
    width: 15.8666666667vw;
    top: -1.6vw;
    left: -10vw;
  }
  .top_index main #cont09 .lead img {
    width: 69.7333333333vw;
    margin-left: 9.3333333333vw;
    transform: translateY(6px);
  }
  .top_index main #cont09 .inner .flex {
    display: block;
    padding: 0 0 0 14.6666666667vw;
  }
  .top_index main #cont09 .inner .flex .left {
    width: 70.6666666667vw;
    box-sizing: border-box;
    padding: 0 0 12vw 0;
  }
  .top_index main #cont09 .inner .flex .left h4 {
    width: 27.0666666667vw;
    margin: 0 0 7.2vw 0;
  }
  .top_index main #cont09 .inner .flex .left div {
    padding: 0;
  }
  .top_index main #cont09 .inner .flex .left div:before {
    display: none;
  }
  .top_index main #cont09 .inner .flex .left div strong {
    text-align: center;
     font-size: 4.4vw;
    line-height: 1.59375;
      
    margin: 0 0 6.4vw 0;
  }
  .top_index main #cont09 .inner .flex .left div p {
    position: relative;
    top: 0;
    left: 0;
    font-size: 2.6666666667vw;
    line-height: 1.775;
      
    width: 100%;
    padding: 0 0 0 4.8vw;
    box-sizing: border-box;
  }
  .top_index main #cont09 .inner .flex .left div p:before {
    position: absolute;
    top: 3%;
    left: 0;
    content: "";
    display: block;
    background: #000000;
    width: 1px;
    height: 94%;
  }
  .top_index main #cont09 .inner .flex .right {
    width: initial;
  }
  .top_index main #cont09 .inner .flex .right ul {
    padding: 0;
  }
  .top_index main #cont09 .inner .flex .right ul .slick-arrow {
    position: absolute;
    top: 122px;
    border: none;
    text-indent: -9999px;
    width: 60px;
    height: 60px;
    z-index: 1;
  }
  .top_index main #cont09 .inner .flex .right ul .slick-arrow.slick-prev {
    display: none !important;
  }
  .top_index main #cont09 .inner .flex .right ul .slick-arrow.slick-next {
    right: 21.3333333333vw;
    top: 55.3333333333vw;
    background: url("../images/icon_right.png") center center no-repeat;
    background-size: 100%;
    width: 7.4666666667vw;
  }
  .top_index main #cont09 .inner .flex .right ul li {
    width: 60vw;
    margin: 0 0 0 9.2vw;
    padding: 0 0 0 5.0666666667vw;
  }
  .top_index main #cont09 .inner .flex .right ul li strong {
    top: -5.2vw;
    right: -5.0666666667vw;
    border-radius: 19.7333333333vw;
    font-size: 3.6vw;
    width: 19.7333333333vw;
    height: 19.7333333333vw;
  }
  .top_index main #cont09 .inner .flex .right ul li .text {
    font-size: 2.6666666667vw;
    line-height: 1.775;
  }
  .top_index main #cont09 .inner .flex .right ul li .img {
    top: -2.6666666667vw;
    left: 5.2vw;
  }
  .top_index main #cont09 .inner .flex .right ul li .img img {
    height: 7.4666666667vw;
  }
  .top_index main #cont09 .inner .flex .right ul li p {
    font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 4vw;
    line-height: 2;
    margin: 7.3333333333vw 0 0 0;
  }
}
.top_index main .inner {
  max-width: 1280px;
  margin: 0 auto;
}
.top_index main .inner .area01 {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: 0 0 25px 0;
}
.top_index main .inner .area01 .bg p {
  position: absolute;
  top: 280px;
  left: 0;
  width: 410px;
}
.top_index main .inner .area01 .bg strong {
  position: absolute;
  top: 0;
  left: 61px;
  width: 560px;
}
.top_index main .inner .area01 .bg span {
  position: absolute;
  top: 587px;
  left: 52px;
  width: 777px;
}
.top_index main .inner .area01 .text {
  position: relative;
  top: 0;
  left: 0;
  left: 55px;
  width: 50%;
  padding: 100px 0 0 0;
}
.top_index main .inner .area01 .text span {
  display: block;
  margin: 0 0 0 0;
}
.top_index main .inner .area01 .text p {
  font-size: 20px;
  line-height: 2.65;
   
  color: #868686;
}
.top_index main .inner .area01 .text p em {
  margin: 0 0 50px 0;
  display: block;
  font-size: 22px;
  line-height: 1.8181818182;
    
  color: #868686;
}
.top_index main .inner .area01 .text p em:last-child {
  margin: 0;
}
.top_index main .inner .area02 {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: 0 0 123px 0;
}
.top_index main .inner .area02 .bg p {
  position: absolute;
  top: -85px;
  left: 0;
  width: 968px;
}
.top_index main .inner .area02 .bg strong {
  position: absolute;
  top: 570px;
  right: 0;
  width: 984px;
}
.top_index main .inner .area02 .text {
  position: relative;
  top: 0;
  left: 0;
  text-align: left;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.top_index main .inner .area02 .text div {
  padding: 160px 0 0 135px;
}
.top_index main .inner .area02 .text div span {
  display: block;
  width: 137px;
  margin: 0 0 88px 0;
}
.top_index main .inner .area02 .text div h4 {
  font-size: 22px;
  line-height: 1.8181818182;
    
  margin: 0 0 57px 0;
  color: #868686;
}
.top_index main .inner .area02 .text div ul {
  padding: 0 0 0 43px;
  border-left: 2px solid #808080;
  height: 136px;
}
.top_index main .inner .area02 .text div ul li:first-child {
  margin: 0 0 15px 0;
}
.top_index main .inner .area02 .text div ul li strong {
  display: block;
  font-size: 20px;
  line-height: 1.55;
    
  color: #868686;
}
.top_index main .inner .area02 .text div ul li strong em {
  color: #ed6c89;
  font-size: 20px;
}
.top_index main .inner .area02 .text div ul li p {
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  line-height: 2.1428571429;
   
  color: #868686;
}
.top_index main .inner .area02 .text div ul li p em {
  color: #ed6c89;
}
.top_index main .inner .area02 .text .img {
  position: absolute;
  top: 80px;
  right: 25px;
  width: 440px;
}
@media screen and (max-width: 900px) {
  .top_index main .inner .area01 {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 0 13.3333333333vw 0;
  }
  .top_index main .inner .area01 .bg span {
    position: absolute;
    top: 0;
    left: 0;
    width: 99.3333333333vw;
  }
  .top_index main .inner .area01 .text {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto;
    padding: 13.3333333333vw 0 0 0;
    width: 100%;
  }
  .top_index main .inner .area01 .text p {
    font-size: 20px;
    line-height: 2.65;
     
    color: #868686;
    text-align: center;
  }
  .top_index main .inner .area01 .text p em {
    margin: 0 0 50px 0;
    display: block;
    font-size: 5.3333333333vw;
    line-height: 1.5;
     
    color: #868686;
  }
  .top_index main .inner .area01 .text p em .span01 {
    margin-bottom: 8vw;
    font-size: 5.3333333333vw;
    line-height: 1.5;
     
    font-family: "Noto Serif JP", serif;
  }
  .top_index main .inner .area01 .text p em span {
    font-size: 4vw;
    line-height: 1.7333333333;
     
    width: 100%;
    text-align: center;
    margin: 0 0 8vw 0;
    font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .top_index main .inner .area01 .text p em:last-child {
    margin: 0;
  }
  .top_index main .inner .area02 {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 0 12vw 0;
    display: block;
    justify-content: flex-end;
  }
  .top_index main .inner .area02 .bg p {
    position: absolute;
    top: -85px;
    left: 0;
    width: 968px;
  }
  .top_index main .inner .area02 .bg strong {
    position: absolute;
    top: 570px;
    right: 0;
    width: 984px;
  }
  .top_index main .inner .area02 .text div {
    padding: 13.3333333333vw 0 0 1.3333333333vw;
  }
  .top_index main .inner .area02 .text div h4 {
    text-align: center;
     font-size: 4.4vw;
    line-height: 1.7386363636;
       
    margin: 0 0 6.6666666667vw 0;
    color: #868686;
  }
  .top_index main .inner .area02 .text div ul {
    padding: 0 0 0 8vw;
    border-left: 2px solid #ed6c89;
    height: 60.6666666667vw;
    margin-left: 9.3333333333vw;
  }
  .top_index main .inner .area02 .text div ul li strong {
    display: block;
    font-size: 5.3333333333vw;
    line-height: 1.55;
   
    color: #868686;
    text-align: left;
  }
  .top_index main .inner .area02 .text div ul li strong em {
    color: #ed6c89;
    font-size: 5.3333333333vw;
    line-height: 1.55;
   
  }
  .top_index main .inner .area02 .text div ul li p {
    font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 4vw;
    line-height: 2;
       
    color: #868686;
  }
  .top_index main .inner .area02 .text div ul li p em {
    color: #ed6c89;
  }
  .top_index main .inner .area02 .text .img {
    position: static;
    margin: 9.3333333333vw auto 0;
    width: 87.3333333333vw;
  }
}
.top_index main .text {
  font-size: 22px;
  line-height: 1.8181818182;
  /*  */
  color: #868686;
  text-align: center;
  margin-bottom: 8px;
}
.top_index main .text:last-child {
  margin-bottom: 110px;
}
.top_index main .text em {
  color: #ed6c89;
  font-size: 28.5px;
  line-height: 1.3157894737;
}
@media screen and (max-width: 900px) {
  .top_index main .text {
    font-size: 5.3333333333vw;
    line-height: 1.5;
      
    margin-bottom: 12vw;
    position: relative;
  }
  .top_index main .text:first-child::before {
    content: "";
    background-repeat: no-repeat;
    background-image: url(../images/text_img.png);
    background-size: 9.3333333333vw;
    background-position: top;
    position: absolute;
    width: 9.3333333333vw;
    height: 3.3333333333vw;
    top: 30vw;
    left: 44.6666666667vw;
  }
  .top_index main .text span {
    font-size: 4vw;
    line-height: 2;
       
    font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .top_index main .text:last-child {
    margin-bottom: 12vw;
  }
  .top_index main .text em {
     font-size: 4.4vw;
    line-height: 1.59375;
     
  }
}
.top_index main .area02_first_img .area02_img_inner {
  max-width: 1280px;
  margin: 0 auto;
}
.top_index main .area02_first_img .area02_img_inner p {
  width: 100%;
}/*# sourceMappingURL=layout.css.map */