@charset "UTF-8";
/* Scss Document */
/*
明るさ
color:darken(#333333, 20%);
color: lighten($color_text, 20%);

彩度
color: desaturate($color_text, 50%);
*/
/* sacc BASE*/
/*----------------PC・スマホ共通----基本定義----------------------------------------*/
/*エンジ rgba(128, 15, 47, 1.0)*/
/*あか rgba(201, 24, 74, 1.0)*/
/*あか rgba(201, 24, 74, 1.0)*/
/*ピンク rgba(255, 77, 109, 1.0)*/
/*--------------------------------------------------------------------------*/
body {
  /*rem指定*/
  font-family: heisei-maru-gothic-std, sans-serif;
  line-height: 1.9;
  letter-spacing: 0.15em;
  color: #333333;
  font-size: 62.5%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative; }

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

@font-face {
  font-family: heisei-maru-gothic-std, sans-serif;
  font-style: normal;
  font-weight: 400; }
/*基本：欧文フォント*/
@font-face {
  font-family: open-san-b;
  src: url("../fonts/OpenSans-Bold.ttf") format("truetype"); }
@font-face {
  font-family: open-san-l;
  src: url("../fonts/OpenSans-Light.ttf") format("truetype"); }
@font-face {
  font-family: open-san-r;
  src: url("../fonts/OpenSans-Regular.ttf") format("truetype"); }
@font-face {
  font-family: oswald-l;
  src: url("../fonts/Oswald-Light.ttf") format("truetype"); }
@font-face {
  font-family: oswald-r;
  src: url("../fonts/Oswald-Regular.ttf") format("truetype"); }
@font-face {
  font-family: arapey;
  src: url("../fonts/Arapey-Regular.ttf") format("truetype"); }
/*-----------　基本リンク-----------------*/
a:link {
  color: #800f2f;
  transition-property: all;
  transition: 0.3s linear; }

a:visited {
  color: #000; }

a:hover {
  text-decoration: none;
  color: #ff4d6d; }

a:active {
  color: #800f2f; }

/*BiggerLink*/
.bgl:hover {
  cursor: pointer;
  filter: alpha(opacity=80);
  -moz-opacity: 0.85;
  opacity: 0.85;
  transition: 0.3s linear; }

/* PCで電話番号リンクを無効に */
@media (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none; } }
/*-----------PCとスマホの表示/非表示-----------------*/
.spDisplay {
  display: none;
  height: 0; }

.pcDisplay {
  display: block; }

.hidden {
  display: none; }

/*-----------他ユーティリティ-----------------*/
a img.btn {
  background: none !important; }

a:hover img.btn {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha( opacity=80 )";
  background: none !important; }

ul, li {
  margin: 0;
  padding: 0; }

li {
  list-style: none; }

/*テーブル*/
table {
  width: 100%;
  font-size: 14px;
  margin-top: 20px; }

table th, table td {
  border: 1px solid #cccccc;
  padding: 7px 10px; }

/*両側のライン取る*/
table th:first-child, table td:first-child {
  border-left: none; }

table th:last-child, table td:last-child {
  border-right: none; }

table th {
  vertical-align: middle;
  font-weight: bold;
  color: #555555;
  padding: 7px 5px; }

table td, table th {
  text-align: left; }

/*ページトップへのボタン*/
/*========================================
●必要ファイル
scroll.js
========================================*/
#page-top {
  position: fixed;
  right: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px); }
  #page-top.UpMove {
    animation: UpAnime 0.5s forwards; }
  #page-top a {
    display: block;
    color: #ffcc66;
    font-size: 4.5rem;
    transition: all 0.3s; }
    #page-top a:hover {
      color: #666; }

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
#page-top.DownMove {
  animation: DownAnime 0.5s forwards; }

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0); }
  to {
    opacity: 1;
    transform: translateY(100px); } }
/*
ブレイクポイントを指定
---------------------------

@include tab {
    要素を書く
  }

*/
/*ボタン01→アンダーライン
<p class="btn-style01"><a href="#">Botton01</p>
.btn-style01 {
  @include btn-underline();
font-size: 3em;
}
*/
/*ボタン02→hoverで左から黒になる
HTML: <a href="#" class="btn-style02"><span>Botton01</span>

SCSS: .btn-style02 {
  @include btn-bgleft();
}
*/
/*== ボタン共通設定 */
/*ボタン03→hoverで上から黒になる
HTML: <a href="#" class="btn-style03"><span>Botton03</span>

SCSS: .btn-style03 {
  @include btn-bgleft();
}
*/
/*== ボタン共通設定 */
/*dlの横並び
---------------
*/
/* Sass Document */
/*========================================
●必要ファイル
nav.js
========================================*/
/*バーガーボタン全体の形状*/
.openbtn1 {
  display: none;
  position: fixed;
  top: 00;
  right: 0;
  z-index: 999;
  background: #666;
  cursor: pointer;
  width: 70px;
  height: 70px; }
  .openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 15px;
    height: 3px;
    background-color: #fff;
    width: 58%; }
    .openbtn1 span:nth-of-type(1) {
      top: 22px; }
    .openbtn1 span:nth-of-type(2) {
      top: 31px; }
    .openbtn1 span:nth-of-type(3) {
      top: 40px; }
  .openbtn1.active span:nth-of-type(1) {
    top: 24px;
    left: 21px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%; }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0; }
  .openbtn1.active span:nth-of-type(3) {
    top: 36px;
    left: 21px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%; }

.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block; }

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/*ヘッダーナビゲーション*/
#header {
  height: 68px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #333;
  color: #fff;
  text-align: center; }
  #header h1 {
    font-size: 1.2rem;
    padding-left: 20px; }
  #header.dnone #g-navi {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: all 0.4s; }
  #header.dnone.panelactive #g-navi {
    opacity: 1;
    z-index: 3;
    background: #eee; }
  #header.dnone.panelactive #g-navi ul {
    display: block; }

/*全画面の時のリストの形状*/
#header.dnone.panelactive #g-navi li a {
  color: #333;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  transition: all 0.3s;
  font-size: 1rem; }

/*ナビ　横並びのための設定*/
.gnavi {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 0; }
  .gnavi li {
    margin-bottom: 0; }
    .gnavi li a {
      display: block;
      padding: 19px 50px;
      font-size: 1rem;
      font-weight: 600;
      color: #ffffff;
      position: relative;
      z-index: 10; }
      .gnavi li a::after {
        content: '';
        position: absolute;
        z-index: -1;
        bottom: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: #0481A2;
        transition: all .5s;
        opacity: 0; }
  .gnavi li.current a::after,
  .gnavi li a:hover::after {
    width: 100%;
    opacity: 1; }
  .gnavi li.current a,
  .gnavi li a:hover {
    color: #cccccc; }

@media screen and (max-width: 768px) {
  #g-navi {
    display: none; } }
/* Sass Document */
/*========================================
●必要ファイル
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/Modaal/0.4.4/css/modaal.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/Modaal/0.4.4/js/modaal.min.js"></script>
modaal.js
========================================*/
#modal-box {
  width: 30%;
  margin: 50px auto;
  font-size: 1rem; }
  #modal-box li, #modal-box section, #modal-box p {
    margin-bottom: 15px; }

/*モーダル表示 */
.hide-area {
  display: none; }

.modaal-close:after,
.modaal-close:before {
  background: #ccc; }

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666; }

#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0; }

.modaal-video .modaal-inner-wrapper {
  padding: 0; }

.gallery-list li {
  max-width: 300px;
  display: inline-block; }
  .gallery-list li img {
    width: 100%;
    height: auto; }

.zoomIn {
  width: 70%;
  margin: 0 auto; }

.zoomIn img {
  transform: scale(1);
  transition: .3s ease-in-out; }

.zoomIn a:hover img {
  transform: scale(1.2); }

.mask {
  display: block;
  line-height: 0;
  overflow: hidden; }

/* Sass Document */
/*========================================
●必要ファイル

========================================*/
/*スクロールパララックス*/
#header-bottom {
  width: 100%;
  height: 100vh;
  position: relative; }
  #header-bottom:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: #cccccc url("../P7031170-1.jpg") no-repeat center;
    background-size: cover; }

#container {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 100px 0; }

/* Sass Document */
/*========================================
●必要ファイル
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css">
<script src="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>
slide.js
========================================*/
/*スライダーのための*/
.slider {
  width: 94%;
  margin: 50px auto; }
  .slider img {
    width: 100%;
    height: auto; }
  .slider .slick-slide {
    margin: 0 10px; }

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  top: 42%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  height: 15px;
  width: 15px; }

.slick-prev {
  left: -1.5%;
  transform: rotate(-135deg); }

.slick-next {
  right: -1.5%;
  transform: rotate(45deg); }

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0; }
  .slick-dots li {
    display: inline-block;
    margin: 0 5px; }
  .slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background: #ccc; }
  .slick-dots .slick-active button {
    background: #333; }

.slider-item01 {
  background: url("images/img-common/ph-vis-home@2x.jpg") no-repeat center center;
  height: 600px;
  background-size: 90% auto; }

.slider-item02 {
  background: url("../images/img-common/ph-vis-home@2x.jpg") no-repeat center center;
  height: 600px;
  background-size: 90% auto; }

.slider-item03 {
  background: url("../images/img-common/ph-vis-home@2x.jpg") no-repeat center center;
  height: 600px;
  background-size: 90% auto; }

/* Sass Document */
/*========================================
●必要ファイル
<script src="scripts/tab.js"></script>
tab.js
========================================*/
/*タブ*/
.wrapper {
  width: 100%;
  max-width: 960px;
  margin: 30px auto;
  background: #fefefe; }

.tab {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #dddddd; }
  .tab li a {
    display: block;
    background: #ddd;
    margin: 0 2px;
    padding: 10px 20px;
    font-size: 1rem; }
  .tab li.active a {
    background: #fff; }

.area {
  display: none;
  opacity: 0;
  background: #fff;
  padding: 50px 0; }
  .area.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards; }
  .area h2 {
    font-size: 1.5rem;
    margin: 0 0 0 10px; }
  .area li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    font-size: 1.0rem; }

@keyframes displayAnime {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.btn-style01 {
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  align-self: center; }
  @media screen and (max-width: 768px) {
    .btn-style01 {
      font-size: 0.875rem; } }
  .btn-style01 a {
    position: relative;
    display: block;
    border-bottom: 1px solid #666;
    color: #666666;
    padding: 0 0.5em; }
    .btn-style01 a::after {
      position: absolute;
      bottom: -1px;
      left: 0;
      content: '';
      width: 100%;
      height: 1px;
      background: #ff4d6d;
      transform: scale(0, 1);
      transform-origin: left top;
      transition: transform .3s; }
    .btn-style01 a:hover::after {
      transform: scale(1, 1); }
    .btn-style01 a:hover {
      color: #000; }
    .btn-style01 a i {
      font-size: 1.5rem;
      padding: 8px 0 0 3em; }

.btn-style02 {
  font-size: 1rem;
  width: 400px;
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #555;
  padding: 10px 30px;
  text-align: center;
  outline: none;
  transition: ease .2s;
  /*== 背景が流れる（左から右） */ }
  @media screen and (max-width: 768px) {
    .btn-style02 {
      width: 80%;
      font-size: 0.875rem; } }
  .btn-style02 span {
    position: relative;
    z-index: 3;
    color: #333; }
  .btn-style02:hover span {
    color: #fff; }
  .btn-style02:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #333;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top; }
  .btn-style02:hover:before {
    transform-origin: left top;
    transform: scale(1, 1); }

.btn-style03 {
  font-size: 1rem;
  width: 400px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #555;
  padding: 10px 30px;
  text-align: center;
  outline: none;
  transition: ease .2s;
  /*ボタン内spanの形状*/
  /*== 背景が流れる（上から下） */ }
  @media screen and (max-width: 768px) {
    .btn-style03 {
      width: 100%;
      font-size: 0.875rem; } }
  .btn-style03 span {
    position: relative;
    z-index: 3;
    color: #333; }
  .btn-style03:hover span {
    color: #fff; }
  .btn-style03:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #333;
    width: 100%;
    height: 0;
    /*アニメーション*/
    transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s; }
  .btn-style03:hover:before {
    height: 100%;
    background-color: #333; }

.dlcss {
  width: 100%;
  margin: 0 auto;
  position: relative;
  border-bottom: solid 1px #ccc;
  width: 500px; }
  @media screen and (max-width: 768px) {
    .dlcss {
      width: 100%; } }
  .dlcss dt {
    font-size: 1rem;
    position: absolute;
    left: 0;
    width: 8em;
    padding-top: 15px; }
    @media screen and (max-width: 768px) {
      .dlcss dt {
        font-size: 0.875rem; } }
  .dlcss dd {
    font-size: 1rem;
    padding-left: 8em;
    border-top: solid 1px #ccc;
    margin-bottom: 15px;
    padding-top: 15px; }
    @media screen and (max-width: 768px) {
      .dlcss dd {
        font-size: 0.875rem; } }
  .dlcss dt {
    font-weight: 600; }

dl.memo {
  width: 700px;
  margin: 0 auto 50px auto;
  border: 1px solid #ccc;
  padding: 30px;
  color: #F20C10; }
  dl.memo dt {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px; }
  dl.memo dd p {
    font-size: 1.0rem; }

#header-bottom {
  position: relative; }
  #header-bottom p {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 460px;
    height: 40px;
    line-height: 1; }
