@charset "UTF-8";
/*! minireset.css v0.0.2 | MIT License | github.com/jgthms/minireset.css */
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

iframe {
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

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

img, embed, object, audio, video {
  border: 0;
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

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

td, th {
  padding: 0;
  text-align: left;
  font-weight: normal;
}

.clearfix:after {
  clear: both;
  display: block;
  content: '';
}

main {
  display: block;
}

.fadeIn {
  opacity: 0;
}

.fadeInUp {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.loadFadeIn {
  opacity: 0;
}

.loadFadeInUp {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: loadFadeInUp;
  animation-name: loadFadeInUp;
}

@-webkit-keyframes loadFadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes loadFadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media only screen and (min-width: 801px) {
  .anm-img-zoom__img-wrap {
    overflow: hidden;
  }
  .anm-img-zoom img {
    -webkit-transition: .7s;
    transition: .7s;
  }
  .anm-img-zoom:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
}

/*
#overview
【Setting】
*/
/* ----------------------------------------------------
margin
---------------------------------------------------- */
/*
#styleguide
マージン
※それぞれ50まで設定してあります。
※頭文字のmをpに変えるとpaddingになります。
```
<p class="mt00">margin-top:  0px;</p>
<p class="mt05">margin-top:  5px;</p>
<p class="mt20">margin-top:  20px;</p>

<p class="mb00">margin-bottom:  0px;</p>
<p class="mb05">margin-bottom:  5px;</p>
<p class="mb20">margin-bottom:  20px;</p>

<p class="ml00">margin-left:  0px;</p>
<p class="ml05">margin-left:  5px;</p>
<p class="ml20">margin-left:  20px;</p>

<p class="mr00">margin-right:  0px;</p>
<p class="mr05">margin-right:  5px;</p>
<p class="mr20">margin-right:  20px;</p>
```

*/
.mt00 {
  margin-top: 0px !important;
}

.mt05 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr00 {
  margin-right: 0px !important;
}

.mr05 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mb00 {
  margin-bottom: 0px !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml00 {
  margin-left: 0px !important;
}

.ml05 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mt {
  /*
  #styleguide
  マージン（PCのみ）
  ※SP&タブレット時はすべて0になります。
  ※頭文字のmをpに変えるとpaddingになります。
  ```
  <p class="mt-pc-10">margin-top:  10px;</p>
  <p class="mt-pc-20">margin-top:  20px;</p>

  <p class="mb-pc-10">margin-bottom:  10px;</p>
  <p class="mb-pc-20">margin-bottom:  20px;</p>

  <p class="ml-pc-10">margin-left:  10px;</p>
  <p class="ml-pc-20">margin-left:  20px;</p>

  <p class="mr-pc-10">margin-right:  10px;</p>
  <p class="mr-pc-20">margin-right:  20px;</p>

  ```

  */
  /*
  #styleguide
  マージン（SPのみ）
  ※PC時はすべて0になります。
  ※頭文字のmをpに変えるとpaddingになります。
  ```
  <p class="mt-sp-10">margin-top:  10px;</p>
  <p class="mt-sp-20">margin-top:  20px;</p>

  <p class="mb-sp-10">margin-bottom:  10px;</p>
  <p class="mb-sp-20">margin-bottom:  20px;</p>

  <p class="ml-sp-10">margin-left:  10px;</p>
  <p class="ml-sp-20">margin-left:  20px;</p>

  <p class="mr-sp-10">margin-right:  10px;</p>
  <p class="mr-sp-20">margin-right:  20px;</p>

  ```

  */
}

@media only screen and (min-width: 801px) {
  .mt-pc-10 {
    margin-top: 10px !important;
  }
  .mt-pc-15 {
    margin-top: 15px !important;
  }
  .mt-pc-20 {
    margin-top: 20px !important;
  }
  .mt-pc-25 {
    margin-top: 25px !important;
  }
  .mt-pc-30 {
    margin-top: 30px !important;
  }
  .mt-pc-35 {
    margin-top: 35px !important;
  }
  .mt-pc-40 {
    margin-top: 40px !important;
  }
  .mt-pc-45 {
    margin-top: 45px !important;
  }
  .mt-pc-50 {
    margin-top: 50px !important;
  }
  .mt-pc-60 {
    margin-top: 60px !important;
  }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .mt-sp-05 {
    margin-top: 5px !important;
  }
  .mt-sp-10 {
    margin-top: 10px !important;
  }
  .mt-sp-15 {
    margin-top: 15px !important;
  }
  .mt-sp-20 {
    margin-top: 20px !important;
  }
  .mt-sp-25 {
    margin-top: 25px !important;
  }
  .mt-sp-30 {
    margin-top: 30px !important;
  }
  .mt-sp-35 {
    margin-top: 35px !important;
  }
  .mt-sp-40 {
    margin-top: 40px !important;
  }
  .mt-sp-45 {
    margin-top: 45px !important;
  }
  .mt-sp-50 {
    margin-top: 50px !important;
  }
}

@media only screen and (min-width: 801px) {
  .mr-pc-10 {
    margin-right: 10px !important;
  }
  .mr-pc-15 {
    margin-right: 15px !important;
  }
  .mr-pc-20 {
    margin-right: 20px !important;
  }
  .mr-pc-25 {
    margin-right: 25px !important;
  }
  .mr-pc-30 {
    margin-right: 30px !important;
  }
  .mr-pc-35 {
    margin-right: 35px !important;
  }
  .mr-pc-40 {
    margin-right: 40px !important;
  }
  .mr-pc-45 {
    margin-right: 45px !important;
  }
  .mr-pc-50 {
    margin-right: 50px !important;
  }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .mr-sp-10 {
    margin-right: 10px !important;
  }
  .mr-sp-15 {
    margin-right: 15px !important;
  }
  .mr-sp-20 {
    margin-right: 20px !important;
  }
  .mr-sp-25 {
    margin-right: 25px !important;
  }
  .mr-sp-30 {
    margin-right: 30px !important;
  }
  .mr-sp-35 {
    margin-right: 35px !important;
  }
  .mr-sp-40 {
    margin-right: 40px !important;
  }
  .mr-sp-45 {
    margin-right: 45px !important;
  }
  .mr-sp-50 {
    margin-right: 50px !important;
  }
}

@media only screen and (min-width: 801px) {
  .mb-pc-10 {
    margin-bottom: 10px !important;
  }
  .mb-pc-15 {
    margin-bottom: 15px !important;
  }
  .mb-pc-20 {
    margin-bottom: 20px !important;
  }
  .mb-pc-25 {
    margin-bottom: 25px !important;
  }
  .mb-pc-30 {
    margin-bottom: 30px !important;
  }
  .mb-pc-35 {
    margin-bottom: 35px !important;
  }
  .mb-pc-40 {
    margin-bottom: 40px !important;
  }
  .mb-pc-45 {
    margin-bottom: 45px !important;
  }
  .mb-pc-50 {
    margin-bottom: 50px !important;
  }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .mb-sp-10 {
    margin-bottom: 10px !important;
  }
  .mb-sp-15 {
    margin-bottom: 15px !important;
  }
  .mb-sp-20 {
    margin-bottom: 20px !important;
  }
  .mb-sp-25 {
    margin-bottom: 25px !important;
  }
  .mb-sp-30 {
    margin-bottom: 30px !important;
  }
  .mb-sp-35 {
    margin-bottom: 35px !important;
  }
  .mb-sp-40 {
    margin-bottom: 40px !important;
  }
  .mb-sp-45 {
    margin-bottom: 45px !important;
  }
  .mb-sp-50 {
    margin-bottom: 50px !important;
  }
}

@media only screen and (min-width: 801px) {
  .ml-pc-10 {
    margin-left: 10px !important;
  }
  .ml-pc-15 {
    margin-left: 15px !important;
  }
  .ml-pc-20 {
    margin-left: 20px !important;
  }
  .ml-pc-25 {
    margin-left: 25px !important;
  }
  .ml-pc-30 {
    margin-left: 30px !important;
  }
  .ml-pc-35 {
    margin-left: 35px !important;
  }
  .ml-pc-40 {
    margin-left: 40px !important;
  }
  .ml-pc-45 {
    margin-left: 45px !important;
  }
  .ml-pc-50 {
    margin-left: 50px !important;
  }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .ml-sp-10 {
    margin-left: 10px !important;
  }
  .ml-sp-15 {
    margin-left: 15px !important;
  }
  .ml-sp-20 {
    margin-left: 20px !important;
  }
  .ml-sp-25 {
    margin-left: 25px !important;
  }
  .ml-sp-30 {
    margin-left: 30px !important;
  }
  .ml-sp-35 {
    margin-left: 35px !important;
  }
  .ml-sp-40 {
    margin-left: 40px !important;
  }
  .ml-sp-45 {
    margin-left: 45px !important;
  }
  .ml-sp-50 {
    margin-left: 50px !important;
  }
}

/* ----------------------------------------------------
padding
---------------------------------------------------- */
.pt00 {
  padding-top: 0px !important;
}

.pt05 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pr00 {
  padding-right: 0px !important;
}

.pr05 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pb00 {
  padding-bottom: 0px !important;
}

.pb05 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pl00 {
  padding-left: 0px !important;
}

.pl05 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pl50 {
  padding-left: 50px !important;
}

@media only screen and (min-width: 801px) {
  .pt-pc-10 {
    padding-top: 10px !important;
  }
  .pt-pc-15 {
    padding-top: 15px !important;
  }
  .pt-pc-20 {
    padding-top: 20px !important;
  }
  .pt-pc-25 {
    padding-top: 25px !important;
  }
  .pt-pc-30 {
    padding-top: 30px !important;
  }
  .pt-pc-35 {
    padding-top: 35px !important;
  }
  .pt-pc-40 {
    padding-top: 40px !important;
  }
  .pt-pc-45 {
    padding-top: 45px !important;
  }
  .pt-pc-50 {
    padding-top: 50px !important;
  }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .pt-sp-05 {
    padding-top: 5px !important;
  }
  .pt-sp-10 {
    padding-top: 10px !important;
  }
  .pt-sp-15 {
    padding-top: 15px !important;
  }
  .pt-sp-20 {
    padding-top: 20px !important;
  }
  .pt-sp-25 {
    padding-top: 25px !important;
  }
  .pt-sp-30 {
    padding-top: 30px !important;
  }
  .pt-sp-35 {
    padding-top: 35px !important;
  }
  .pt-sp-40 {
    padding-top: 40px !important;
  }
  .pt-sp-45 {
    padding-top: 45px !important;
  }
  .pt-sp-50 {
    padding-top: 50px !important;
  }
}

@media only screen and (min-width: 801px) {
  .pr-pc-10 {
    padding-right: 10px !important;
  }
  .pr-pc-15 {
    padding-right: 15px !important;
  }
  .pr-pc-20 {
    padding-right: 20px !important;
  }
  .pr-pc-25 {
    padding-right: 25px !important;
  }
  .pr-pc-30 {
    padding-right: 30px !important;
  }
  .pr-pc-35 {
    padding-right: 35px !important;
  }
  .pr-pc-40 {
    padding-right: 40px !important;
  }
  .pr-pc-45 {
    padding-right: 45px !important;
  }
  .pr-pc-50 {
    padding-right: 50px !important;
  }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .pr-sp-10 {
    padding-right: 10px !important;
  }
  .pr-sp-15 {
    padding-right: 15px !important;
  }
  .pr-sp-20 {
    padding-right: 20px !important;
  }
  .pr-sp-25 {
    padding-right: 25px !important;
  }
  .pr-sp-30 {
    padding-right: 30px !important;
  }
  .pr-sp-35 {
    padding-right: 35px !important;
  }
  .pr-sp-40 {
    padding-right: 40px !important;
  }
  .pr-sp-45 {
    padding-right: 45px !important;
  }
  .pr-sp-50 {
    padding-right: 50px !important;
  }
}

@media only screen and (min-width: 801px) {
  .pb-pc-10 {
    padding-bottom: 10px !important;
  }
  .pb-pc-15 {
    padding-bottom: 15px !important;
  }
  .pb-pc-20 {
    padding-bottom: 20px !important;
  }
  .pb-pc-25 {
    padding-bottom: 25px !important;
  }
  .pb-pc-30 {
    padding-bottom: 30px !important;
  }
  .pb-pc-35 {
    padding-bottom: 35px !important;
  }
  .pb-pc-40 {
    padding-bottom: 40px !important;
  }
  .pb-pc-45 {
    padding-bottom: 45px !important;
  }
  .pb-pc-50 {
    padding-bottom: 50px !important;
  }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .pb-sp-10 {
    padding-bottom: 10px !important;
  }
  .pb-sp-15 {
    padding-bottom: 15px !important;
  }
  .pb-sp-20 {
    padding-bottom: 20px !important;
  }
  .pb-sp-25 {
    padding-bottom: 25px !important;
  }
  .pb-sp-30 {
    padding-bottom: 30px !important;
  }
  .pb-sp-35 {
    padding-bottom: 35px !important;
  }
  .pb-sp-40 {
    padding-bottom: 40px !important;
  }
  .pb-sp-45 {
    padding-bottom: 45px !important;
  }
  .pb-sp-50 {
    padding-bottom: 50px !important;
  }
}

@media only screen and (min-width: 801px) {
  .pl-pc-10 {
    padding-left: 10px !important;
  }
  .pl-pc-15 {
    padding-left: 15px !important;
  }
  .pl-pc-20 {
    padding-left: 20px !important;
  }
  .pl-pc-25 {
    padding-left: 25px !important;
  }
  .pl-pc-30 {
    padding-left: 30px !important;
  }
  .pl-pc-35 {
    padding-left: 35px !important;
  }
  .pl-pc-40 {
    padding-left: 40px !important;
  }
  .pl-pc-45 {
    padding-left: 45px !important;
  }
  .pl-pc-50 {
    padding-left: 50px !important;
  }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .pl-sp-10 {
    padding-left: 10px !important;
  }
  .pl-sp-15 {
    padding-left: 15px !important;
  }
  .pl-sp-20 {
    padding-left: 20px !important;
  }
  .pl-sp-25 {
    padding-left: 25px !important;
  }
  .pl-sp-30 {
    padding-left: 30px !important;
  }
  .pl-sp-35 {
    padding-left: 35px !important;
  }
  .pl-sp-40 {
    padding-left: 40px !important;
  }
  .pl-sp-45 {
    padding-left: 45px !important;
  }
  .pl-sp-50 {
    padding-left: 50px !important;
  }
}

html {
  background: #FFF;
  font-size: 62.5%;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  html {
    font-size: calc(100vw / 64);
  }
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  html {
    font-size: calc(100vw / 32);
  }
}

body {
  background: #FCFCE3;
  font-size: 1.6rem;
  color: #000;
  line-height: 1.8;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  body {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

svg {
  max-width: 100%;
  vertical-align: middle;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

a {
  text-decoration: none;
}

a:hover img {
  opacity: .6;
}

input:not([type="radio"]):not([type="checkbox"]),
button,
select,
textarea {
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}

.sp {
  display: none;
}

@media only screen and (min-width: 801px) {
  .pc {
    display: block !important;
  }
}

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

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .sp {
    display: block;
  }
}

.wrapper {
  position: relative;
  z-index: 20;
}

.inner, .inner--s, .inner--m {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .inner, .inner--s, .inner--m {
    padding: 0 3.125%;
  }
}

.inner--s {
  max-width: 880px;
}

.inner--m {
  max-width: 1000px;
}

.footer {
  padding-bottom: 50px;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .footer {
    padding-bottom: 3vw;
  }
}

.footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .footer-info {
    font-size: 1.2rem;
  }
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .footer-info {
    display: block;
  }
}

.footer-info__item {
  -ms-flex-preferred-size: 48%;
  flex-basis: 48%;
  max-width: 48%;
  padding: 60px 20px 90px;
  border: 1px solid #BAB9B9;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .footer-info__item {
    padding: 3vw 1vw 7vw;
  }
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .footer-info__item {
    max-width: none;
  }
  .footer-info__item + .footer-info__item {
    margin-top: 12vw;
  }
}

.footer-info__ttl {
  margin: 40px 0 30px;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .footer-info__ttl {
    margin: 2.5vw 0 1.5vw;
  }
}

.footer-info__sec + .footer-info__sec {
  margin-top: 40px;
}

.footer-contact {
  margin-top: 10px;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .footer-contact {
    margin-top: 1.5vw;
  }
}

.footer-contact__link {
  margin-left: 20px;
  font-weight: bold;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .footer-contact__link {
    margin-left: 1em;
  }
}

.footer-contact__tel {
  color: #000;
  font-weight: bold;
  font-size: 2.8rem;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .footer-contact__tel {
    font-size: 2.0rem;
  }
}

.footer-contact__tel:hover {
  text-decoration: underline;
}

.footer-contact__email {
  color: #005FAC;
  font-size: 1.8rem;
  text-decoration: underline;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .footer-contact__email {
    font-size: 1.4rem;
  }
}

.footer-contact__email:hover {
  text-decoration: none;
}

.footer-contact__website {
  color: #005FAC;
  font-weight: bold;
  font-size: 1.8rem;
  text-decoration: underline;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .footer-contact__website {
    font-size: 1.4rem;
  }
}

.footer-contact__website:hover {
  text-decoration: none;
}

.footer-copyright {
  margin-top: 140px;
  font-size: 1.1rem;
  text-align: center;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .footer-copyright {
    margin-top: 12vw;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
  margin: 0 auto;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./../img/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
  outline: none;
  z-index: 50;
  -webkit-transition: .5s;
  transition: .5s;
  opacity: 0;
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .slick-prev,
  .slick-next {
    width: 14px;
    height: 14px;
    margin-top: -7px;
  }
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 0;
  border-top: 2px solid #bdbdbd;
  border-left: 2px solid #bdbdbd;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.slick-next {
  right: 0;
  border-top: 2px solid #bdbdbd;
  border-right: 2px solid #bdbdbd;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: 15px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 10px;
  width: 10px;
  outline: none;
  background: #CCC;
  border-radius: 100%;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li.slick-active button {
  background: #444;
}

.ttl-primary {
  margin-bottom: 60px;
  font-size: 4.0rem;
  text-align: center;
}

.ttl-primary__inner {
  position: relative;
  padding: 0 27px;
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .ttl-primary__inner {
    padding: 0 3vw;
  }
}

.ttl-primary__inner:before, .ttl-primary__inner:after {
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 center;
  content: '';
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .ttl-primary__inner:before, .ttl-primary__inner:after {
    width: 12vw;
  }
}

.ttl-primary__inner:before {
  right: 100%;
  background-image: url(../img/bg_ttl02_01.png);
}

.ttl-primary__inner:after {
  left: 100%;
  background-image: url(../img/bg_ttl02_02.png);
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .ttl-primary {
    margin-bottom: 4vw;
    font-size: 3.0rem;
  }
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .ttl-primary {
    font-size: 2.2rem;
  }
}

.ttl-secondary, .ttl-secondary--double {
  margin-bottom: 40px;
  font-size: 3.2rem;
  line-height: 1;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .ttl-secondary, .ttl-secondary--double {
    margin-bottom: 2.5vw;
    font-size: 2.6rem;
  }
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .ttl-secondary, .ttl-secondary--double {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

@media only screen and (min-width: 641px) {
  .ttl-secondary--double {
    position: relative;
    padding-left: 55px;
  }
}

.ttl-secondary__ico, .ttl-secondary__ico--double {
  margin-right: 15px;
  vertical-align: middle;
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .ttl-secondary__ico, .ttl-secondary__ico--double {
    width: 7vw;
    margin-right: 2vw;
  }
}

@media only screen and (min-width: 641px) {
  .ttl-secondary__ico--double {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-right: 0;
  }
}

.btn-cmn, .btn-cmn--studio {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 65px;
  max-width: 400px;
  margin: 0 auto;
  background: #25346D;
  border: 1px solid #25346D;
  color: #FFF;
  font-size: 1.8rem;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .btn-cmn, .btn-cmn--studio {
    font-size: 1.2rem;
  }
}

.btn-cmn:hover, .btn-cmn--studio:hover {
  background: #FFF;
  color: #25346D;
}

.btn-cmn--studio {
  margin: 0;
  background: #ff7f00;
  border: 1px solid transparent;
}

.btn-cmn--studio:hover {
  border: 1px solid #ff7f00;
  color: #ff7f00;
}

/*
#overview
【List】
*/
.list-cmn__item + .list-cmn__item {
  margin-top: 70px;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .list-cmn__item + .list-cmn__item {
    margin-top: 35px;
  }
}

.list-half {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .list-half {
    display: block;
  }
}

.list-half__item {
  -ms-flex-preferred-size: 46%;
  flex-basis: 46%;
}

.list-number {
  padding-left: 2rem;
}

.list-number-brackets {
  list-style-type: none;
}

.list-number-brackets__item {
  position: relative;
  padding-left: 2rem;
}

.list-number-brackets__number {
  position: absolute;
  top: 0;
  left: 0;
}

.list-style--none {
  list-style-type: none;
}

.list-bnr {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.list-bnr__item {
  -ms-flex-preferred-size: 32%;
  flex-basis: 32%;
  margin-top: 20px;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .list-bnr__item {
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
    margin-top: 15px;
  }
}

.grid {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid--just-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.grid--wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.grid--center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.grid--between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.grid--flex-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.grid02, .grid02--align-center {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.grid02--align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.grid02__item {
  -ms-flex-preferred-size: 47.8%;
  flex-basis: 47.8%;
}

.grid02__item:nth-child(2n) {
  margin-left: 4.4%;
}

.grid02__item:nth-child(n + 3) {
  margin-top: 2.3%;
}

.grid03, .grid03--flex-start {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.grid03--flex-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.grid03__item {
  -ms-flex-preferred-size: 31%;
  flex-basis: 31%;
  margin-right: 3.5%;
}

.grid03__item:nth-child(3n) {
  margin-right: 0;
}

.grid03__item:nth-child(n + 4) {
  margin-top: 3.2%;
}

.grid04 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.grid04__item {
  -ms-flex-preferred-size: 19%;
  flex-basis: 19%;
  margin-right: 1.25%;
}

.grid04__item:nth-child(5n) {
  margin-right: 0;
}

.grid05 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.grid05__item {
  -ms-flex-preferred-size: 18.5%;
  flex-basis: 18.5%;
  margin-right: 1.875%;
}

.grid05__item:nth-child(5n) {
  margin-right: 0;
}

.grid06 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.grid06__item {
  -ms-flex-preferred-size: 15.11%;
  flex-basis: 15.11%;
  margin-right: 1.868%;
}

.grid06__item:nth-child(6n) {
  margin-right: 0;
}

.grid06__item:nth-child(n + 7) {
  margin-top: 3.2%;
}

.grid-flex {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -.35em;
}

.grid-flex__item {
  margin-top: .35em;
  margin-right: .5em;
}

.bread-crumb {
  padding: 15px 0;
  border-top: 1px solid #EDEDED;
  background: #fafafa;
  background: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#ffffff));
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#ffffff',GradientType=0 );
}

.bread-crumb ul {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.2rem;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .bread-crumb {
    display: none;
  }
}

.bread-crumb li + li:before {
  margin: 0 10px;
  content: '>';
}

.table-cmn-01 {
  width: 100%;
}

.table-cmn-01 tr {
  border-bottom: 1px solid #EEE;
}

.table-cmn-01 th,
.table-cmn-01 td {
  padding: 35px 20px;
  font-size: 1.4rem;
  vertical-align: top;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .table-cmn-01 th,
  .table-cmn-01 td {
    font-size: 1.0rem;
  }
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .table-cmn-01 th,
  .table-cmn-01 td {
    display: block;
    padding: 12px;
  }
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .table-cmn-01 th {
    padding-bottom: 0;
  }
}

.table-layout {
  display: table;
  width: 100%;
}

.table-layout + .table-layout {
  margin-top: 40px;
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .table-layout + .table-layout {
    margin-top: 25px;
  }
}

.table-layout__item {
  display: table-cell;
  vertical-align: top;
}

/*
#overview
【Block】
*/
.section-cmn {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-cmn + .section-cmn {
  padding-top: 0;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .section-cmn {
    padding-top: 14vw;
    padding-bottom: 18vw;
  }
}

.section-border {
  padding: 12px 0;
  border-top: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
}

.box-label {
  padding: 7px 3px;
  color: #FFF;
  font-size: 1.6rem;
  text-align: center;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .box-label {
    padding: .5em 0;
    font-size: .533rem;
  }
}

.box-label.black {
  background-color: #000;
}

.box-label.brown {
  background-color: #753C35;
}

.box-border-red {
  padding: 50px 40px;
  border: 2px solid #d24a6b;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .box-border-red {
    padding: 25px 20px;
  }
}

.box-border-gray, .box-border-gray--sm {
  padding: 25px 30px;
  border: 1px solid #DDD;
}

.box-border-gray--sm {
  padding: 25px 20px;
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .box-border-gray--sm {
    padding: 20px 15px;
  }
}

.display-block {
  display: block;
}

.display-inline-block {
  display: inline-block;
}

.display-inline {
  display: inline;
}

.circles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.circles-item {
  position: fixed;
  z-index: 10;
  opacity: 0;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 6s;
  animation-duration: 6s;
  -webkit-animation-name: circle-move;
  animation-name: circle-move;
}

@-webkit-keyframes circle-move {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes circle-move {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.circles-item-01 {
  top: -50px;
  left: 0;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 6.2s;
  animation-duration: 6.2s;
}

.circles-item-02 {
  right: -20px;
  bottom: -130px;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-duration: 8s;
  animation-duration: 8s;
}

.circles-item-03 {
  top: -30px;
  left: 350px;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
}

.circles-item-04 {
  top: 270px;
  right: 20px;
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
}

.circles-item-05 {
  top: -190px;
  right: 160px;
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
  -webkit-animation-duration: 3.5s;
  animation-duration: 3.5s;
}

.circles-item-06 {
  bottom: 20px;
  left: -250px;
  -webkit-animation-delay: 2.6s;
  animation-delay: 2.6s;
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
}

.college {
  max-width: 840px;
  margin: 0 auto;
  padding: 30px 20px 40px;
  background: #FFF;
  border: 1px solid #25346D;
  text-align: center;
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .college {
    padding: 6vw 4vw;
  }
}

.college-cv__txt {
  margin-top: 30px;
  font-size: 112.5%;
}

.college-cv__btn {
  margin-top: 25px;
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .college-cv__btn {
    margin-top: 5vw;
  }
}

.related-site {
  margin-bottom: 70px;
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .related-site {
    margin-bottom: 6vw;
  }
}

.bnr-list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 840px;
  margin: 80px auto 0;
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .bnr-list {
    display: block;
    margin-top: 12vw;
  }
}

.bnr-list__item {
  -ms-flex-preferred-size: 47.61%;
  flex-basis: 47.61%;
  max-width: 47.61%;
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .bnr-list__item {
    max-width: none;
  }
}

.bnr-list__item + .bnr-list__item {
  margin-left: 4.78%;
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .bnr-list__item + .bnr-list__item {
    margin: 4vw 0 0 0;
  }
}

.bnr-list__link {
  display: block;
}

.bnr-list__txt {
  margin-top: 10px;
  font-size: 1.4rem;
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .bnr-list__txt {
    font-size: 1.2rem;
  }
}

.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1040px;
  margin: 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 640px) {
  .sns {
    margin-top: 30px;
  }
}

.sns > * {
  width: calc(50% - 20px) !important;
  max-width: 500px !important;
}

@media screen and (max-width: 640px) {
  .sns > * {
    width: 80% !important;
    max-width: 100% !important;
  }
}

.sns > *:first-of-type * {
  width: 100% !important;
}

/*
#overview
【Other】
*/
.font-red {
  color: #D80000;
}

.font-bold {
  font-weight: bold;
}

.font-black {
  color: #333;
}

.font-white {
  color: #FFF;
}

.font-gray {
  color: #999;
}

.font-gold {
  color: #D99B31;
}

.font-ex-sm {
  font-size: 1.0rem;
}

.font-sm {
  font-size: 1.2rem;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .font-sm {
    font-size: .7rem;
  }
}

.font-normal-sm {
  font-size: 1.3rem;
}

.font-md {
  font-size: 1.6rem;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .font-md {
    font-size: 1.0rem;
  }
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .font-md {
    font-size: 1.2rem;
  }
}

.font-big {
  font-size: 2.0rem;
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .font-big {
    font-size: 1.6rem;
  }
}

.font-ex-big {
  font-size: 5.0rem;
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .font-ex-big {
    font-size: 3.0rem;
  }
}

.txt-attention {
  position: relative;
  padding-left: 1em;
}

.txt-attention:before {
  position: absolute;
  left: 0;
  top: 0;
}

.txt-attention:before {
  content: '※';
}

.txt-disc {
  position: relative;
  padding-left: 1em;
}

.txt-disc:before {
  position: absolute;
  left: 0;
  top: 0;
}

.txt-disc:before {
  content: '・';
}

.txt-cube, .txt-cube--black {
  position: relative;
  padding-left: 1em;
}

.txt-cube:before, .txt-cube--black:before {
  position: absolute;
  left: 0;
  top: 0;
}

.txt-cube:before, .txt-cube--black:before {
  top: 3px;
  width: 13px;
  height: 13px;
  background: #000;
  content: '';
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .txt-cube:before, .txt-cube--black:before {
    top: 7px;
  }
}

.txt-cube--black:before {
  background: #333;
}

.txt-ico {
  position: relative;
  padding-left: 1em;
}

.txt-ico:before {
  position: absolute;
  left: 0;
  top: 0;
}

.txt-ico:before {
  top: 0;
  content: attr(data-txt);
}

.txt-link, .txt-link--blue {
  text-decoration: none;
  color: inherit;
}

.txt-link:hover, .txt-link--blue:hover,
.txt-link:hover span,
.txt-link--blue:hover span {
  text-decoration: underline;
}

.txt-link--blue {
  color: #1361ba;
}

.txt-link--disabled {
  cursor: text;
}

.txt-link--disabled:hover {
  text-decoration: none;
}

.txt-underline {
  text-decoration: underline;
}

.txt-underline:hover {
  text-decoration: none;
}

.txt-nav-md {
  display: inline-block;
  color: #000;
  font-size: 1.6rem;
  line-height: 1;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .txt-nav-md {
    font-size: 1.2rem;
  }
}

.txt-nav-sm {
  display: inline-block;
  margin-top: 8px;
  color: #999;
  font-size: 1.2rem;
  line-height: 1;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .txt-nav-sm {
    font-size: 1.0rem;
  }
}

@media only screen and (min-width: 801px) {
  .float-left {
    float: left;
  }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .float-left {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (min-width: 801px) {
  .float-right {
    float: right;
  }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .float-right {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.valign-top {
  vertical-align: top !important;
}

.valign-middle {
  vertical-align: middle !important;
}

.valign-bottom {
  vertical-align: bottom !important;
}

.valign-baseline {
  vertical-align: baseline !important;
}

.border {
  padding: 0 5px;
  border: 1px solid #7f7f7f;
}

.border-bottom {
  border-bottom: 1px solid #7f7f7f;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.display-block {
  display: block;
}

.display-inline-block {
  display: inline-block;
}

.display-inline {
  display: inline;
}

.mv {
  position: relative;
  text-align: center;
}

.mv-inner {
  position: relative;
  max-width: 1140px;
}

.mv-logo {
  position: absolute;
  left: 0;
  top: 37px;
  width: 100%;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .mv-logo {
    top: 10px;
  }
  .mv-logo img {
    max-width: 300px;
  }
}

@media only screen and (min-width: 1px) and (max-width: 640px) {
  .mv-logo img {
    max-width: 65%;
  }
}

.mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_header.png) center top no-repeat;
  background-size: 100%;
  content: '';
}

.business-intro {
  font-size: 2.0rem;
  text-align: center;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .business-intro {
    font-size: 1.5rem;
  }
}

.business-list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
}

@media only screen and (min-width: 801px) {
  .business-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .business-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 10vw;
    text-align: center;
  }
}

@media only screen and (min-width: 801px) {
  .business-list__txt, .business-list__txt--right, .business-list__txt--left {
    -ms-flex-preferred-size: 58.4%;
    flex-basis: 58.4%;
    max-width: 58.4%;
  }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .business-list__txt, .business-list__txt--right, .business-list__txt--left {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .business-list__txt p, .business-list__txt--right p, .business-list__txt--left p {
    text-align: left;
  }
}

@media only screen and (min-width: 801px) {
  .business-list__txt--right {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 801px) {
  .business-list__txt--left {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}

@media only screen and (min-width: 801px) {
  .business-list__photo, .business-list__photo--right, .business-list__photo--left {
    -ms-flex-preferred-size: 37%;
    flex-basis: 37%;
    max-width: 37%;
  }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .business-list__photo, .business-list__photo--right, .business-list__photo--left {
    margin-top: 6vw;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 801px) {
  .business-list__photo--right {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 801px) {
  .business-list__photo--left {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}

.business-list__bnr {
  margin-top: 40px;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .business-list__bnr {
    margin-top: 2vw;
  }
}

.business-summary {
  margin-top: 30px;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .business-summary {
    margin-top: 6vw;
  }
}

.intro-name {
  font-size: 2.8rem;
  line-height: 1;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .intro-name {
    font-size: 1.8rem;
    text-align: center;
  }
}

@media only screen and (min-width: 801px) {
  .intro-wrap {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
  }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .intro-wrap {
    margin-top: 3vw;
  }
}

@media only screen and (min-width: 801px) {
  .intro-wrap__photo {
    -ms-flex-preferred-size: 24%;
    flex-basis: 24%;
    max-width: 24%;
  }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .intro-wrap__photo {
    text-align: center;
  }
}

@media only screen and (min-width: 801px) {
  .intro-wrap__txt {
    -ms-flex-preferred-size: 76%;
    flex-basis: 76%;
    max-width: 76%;
    padding-left: 50px;
  }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .intro-wrap__txt {
    margin-top: 5vw;
  }
}

.intro-wrap__paragraph {
  margin-top: 30px;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {
  .intro-wrap__paragraph {
    margin-top: 6vw;
  }
}

/*# sourceMappingURL=style.css.map */
