@charset "UTF-8";

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    reset
===================================================================*/
html {
  overflow-x: hidden;
  background: #FFF;
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  min-width: 320px;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  word-wrap: break-word;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
  margin: 0;
  padding: 0;
}

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

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

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

fieldset,
img {
  border: none;
}

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

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

caption,
th {
  text-align: left;
}

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

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

abbr,
acronym {
  border: none;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

a img,
map a {
  border: none;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

embed {
  width: 100%;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img,
object,
embed {
  max-width: 100%;
  height: auto;
}

object,
embed {
  height: 100%;
}

img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

div {
  vertical-align: top;
}

strong {
  font-weight: bold;
}

em {
  font-style: normal;
}

select,
input,
button,
textarea,
button {
  font: 99% arial, sans-serif;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 1;
}

/*  touch
---------------------------------------------*/
a,
img,
button,
input[type=button],
input[type=submit],
.touch-hover {
  -webkit-tap-highlight-color: transparent;
}

/*  box-sizing
---------------------------------------------*/
* {
  box-sizing: border-box;
}

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

/*  table
---------------------------------------------*/
table {
  empty-cells: show;
  font-size: inherit;
  font: 100%;
}

/*  main
---------------------------------------------*/
/* IE10,11対策 main要素の高さと幅を認識させる */
@media all and (-ms-high-contrast: none) {
  main {
    display: block;
  }
}

/*  list
---------------------------------------------*/
li {
  list-style: none;
  line-height: 1;
}

/*  form
---------------------------------------------*/
input {
  line-height: 1;
}

form img,
input,
select {
  vertical-align: middle;
}

textarea {
  resize: none;
}

select {
  padding: 1px;
}

legend {
  display: none;
}

input,
select,
textarea,
button {
  font-size: 1.4rem;
  vertical-align: middle;
  color: #000;
  height: auto;
}

textarea {
  height: auto;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password],
select,
textarea {
  -webkit-appearance: none;
  font-size: 1.4rem;
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #ccc;
  background: #fff;
  font-weight: normal;
  border-radius: 4px;
}

/* ======= outline ======= */
input[type=email],
input[type=text],
input[type=number],
input[type=password],
textarea,
select {
  outline: none;
}

/* ======= label ======= */
/*==================================================================
    utility
===================================================================*/
/* ------------------------------------------------------------------
  Visual utility
-------------------------------------------------------------------*/
/*  display
---------------------------------------------*/
.noDisplay {
  display: none !important;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inlineBlock {
  display: inline-block !important;
}

/* ======= display none ======= */
@media screen and (min-width: 768px) {
  .pcNone {
    display: none !important;
  }
}

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

/*  position
---------------------------------------------*/
.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

/*  float
---------------------------------------------*/
.leftBox {
  float: left;
}

.rightBox {
  float: right;
}

.nofloat {
  float: none !important;
}

.clearfix {
  zoom: 1;
}

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

.clear {
  clear: both !important;
}

/* IE6 */
* html .clearfix {
  zoom: 1;
}

/* IE7 */
*:first-child+html .clearfix {
  zoom: 1;
}

/*  hover
---------------------------------------------*/
.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

/*  .scrollWSp SP時に横幅からはみ出す要素(tableなど)に囲って使用
---------------------------------------------*/
@media screen and (max-width: 768px) {
  .scrollWSp {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

/* .firstload ※初回読み込み時のCSSトランジション防止
------------------------------------------------*/
.firstload {
  transition: 0s !important;
}

/* ------------------------------------------------------------------
  width utility
-------------------------------------------------------------------*/
.w10 {
  width: 10% !important;
}

.w20 {
  width: 20% !important;
}

.w30 {
  width: 30% !important;
}

.w40 {
  width: 40% !important;
}

.w50 {
  width: 50% !important;
}

.w60 {
  width: 60% !important;
}

.w70 {
  width: 70% !important;
}

.w80 {
  width: 80% !important;
}

.w90 {
  width: 90% !important;
}

.w100 {
  width: 100% !important;
}

/* ------------------------------------------------------------------
  BoxModel utility
-------------------------------------------------------------------*/
.mt0 {
  margin-top: 0px !important;
}

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

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

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

.pt0 {
  padding-top: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

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

.mr100 {
  margin-right: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

/* ------------------------------------------------------------------
  border utility
-------------------------------------------------------------------*/
.btNone {
  border-top: none !important;
}

.brNone {
  border-right: none !important;
}

.bbNone {
  border-bottom: none !important;
}

.blNone {
  border-left: none !important;
}

/* ------------------------------------------------------------------
  Text utiity
-------------------------------------------------------------------*/
.bold {
  font-weight: bold !important;
}

.italic {
  font-style: italic !important;
}

.note {
  color: #F8F8F8;
  margin-left: 1em;
  text-indent: -1em;
}

.underline {
  text-decoration: underline !important;
}

.textNoLine {
  text-decoration: none !important;
}

/*  font-family
---------------------------------------------*/
.font1 {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif !important;
}

.font2 {
  font-family: "Red Hat Display", sans-serif !important;
}

/*  font-size+line-height
---------------------------------------------*/
.fzS {
  font-size: 1.2rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .fzS {
    font-size: 1.1rem;
    line-height: 1.3;
  }
}

.fz {
  font-size: 1.4rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .fz {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.fzM {
  font-size: 1.5rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .fzM {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.fzL {
  font-size: 1.8rem;
  line-height: 2.4;
}

@media screen and (max-width: 768px) {
  .fzL {
    font-size: 1.7rem;
    line-height: 1.9;
  }
}

/*  color
---------------------------------------------*/
.white {
  color: #fff;
}

.black {
  color: #000;
}

.g1 {
  color: #F8F8F8;
}

.g2 {
  color: #cccccc;
}

.g3 {
  color: #aaaaaa;
}

.g4 {
  color: #999999;
}

.g5 {
  color: #777777;
}

.g6 {
  color: #666666;
}

.c1 {
  color: #1a385d;
}

.c2 {
  color: #3b608d;
}

.c3 {
  color: #5b85b9;
}

.c4 {
  color: #82c2c5;
}

.c5 {
  color: #36848a;
}

.c6 {
  color: #e0c332;
}

.c-caution {
  color: #e20c0c;
}

/*  align
---------------------------------------------*/
.middle {
  vertical-align: middle !important;
}

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

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

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

/* font-size
---------------------------------------------*/
.fz {
  font-size: 1.4rem;
}

.fz--s {
  font-size: 1.2rem;
  line-height: 1.6;
}

.fz--l {
  font-size: 1.8rem;
  line-height: 2.4;
}

.fz8 {
  font-size: 0.8rem !important;
}

.fz9 {
  font-size: 0.9rem !important;
}

.fz10 {
  font-size: 1rem !important;
}

.fz11 {
  font-size: 1.1rem !important;
}

.fz12 {
  font-size: 1.2rem !important;
}

.fz13 {
  font-size: 1.3rem !important;
}

.fz14 {
  font-size: 1.4rem !important;
}

.fz15 {
  font-size: 1.5rem !important;
}

.fz16 {
  font-size: 1.6rem !important;
}

.fz17 {
  font-size: 1.7rem !important;
}

.fz18 {
  font-size: 1.8rem !important;
}

.fz19 {
  font-size: 1.9rem !important;
}

.fz20 {
  font-size: 2rem !important;
}

.fz21 {
  font-size: 2.1rem !important;
}

.fz22 {
  font-size: 2.2rem !important;
}

.fz23 {
  font-size: 2.3rem !important;
}

.fz24 {
  font-size: 2.4rem !important;
}

.fz25 {
  font-size: 2.5rem !important;
}

.fz26 {
  font-size: 2.6rem !important;
}

.fz27 {
  font-size: 2.7rem !important;
}

.fz28 {
  font-size: 2.8rem !important;
}

.fz29 {
  font-size: 2.9rem !important;
}

.fz30 {
  font-size: 3rem !important;
}

/*==================================================================
    general
===================================================================*/
/* -----------------------------------------------
    font
------------------------------------------------*/
body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1.5rem;
  color: #000;
  font-weight: 400;
  line-height: 1;
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background: #fff;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
    line-height: 1;
  }
}

@font-face {
  font-family: "DIN Alternate Bold";
  font-style: normal;
  font-weight: 700;
  src: url("../webfonts/DIN-Alternate-Bold.woff") format("woff"), url("../webfonts/DIN-Alternate-Bold.eot") format("eot");
}

/* -----------------------------------------------
    hiragino sansのウェイトズレを調整
------------------------------------------------*/
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W0), local(メイリオ);
  font-weight: 100;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W1), local(メイリオ);
  font-weight: 200;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W2), local(メイリオ);
  font-weight: 300;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W3), local(メイリオ);
  font-weight: 400;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W4), local(メイリオ);
  font-weight: 500;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W5), local(メイリオ ボールド);
  font-weight: 600;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W6), local(メイリオ ボールド);
  font-weight: 700;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W7), local(メイリオ ボールド);
  font-weight: 800;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W8), local(メイリオ ボールド);
  font-weight: 900;
}

@font-face {
  font-family: "Hiragino Sans W9";
  src: local(HiraginoSans-W9), local(メイリオ ボールド);
  font-weight: 900;
}

/* -----------------------------------------------
    p
------------------------------------------------*/
p {
  font-size: 1.5rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

p.-leading {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  p.-leading {
    font-size: 1.1rem;
  }
}

/* ======= hiwrite ======= */
::selection {
  background: #ededed;
}

/* ======= テキストの下線スタイル ======= */
.underHiwrite {
  position: relative;
  z-index: 1;
}

.underHiwrite::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 20%;
  background-color: #ff0;
  position: absolute;
  bottom: 2px;
  left: 0;
  z-index: -1;
}

/* ======= 上付き文字、下付き文字 ======= */
.supText {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

.subText {
  font-size: 75.5%;
  vertical-align: bottom;
  position: relative;
  top: 0.1em;
}

/* ======= 注釈 ======= */
.annotation {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .annotation {
    font-size: 1.1rem;
  }
}

.annotation:last-child {
  margin-bottom: 0px;
}

/* -----------------------------------------------
    link
------------------------------------------------*/
a {
  text-decoration: none;
  transition: all 200ms ease;
  color: #000;
}

.pc a:hover {
  text-decoration: none;
}

/*  a img
---------------------------------------------*/
a img {
  transition: all 200ms ease;
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  a[href^="tel:"] {
    pointer-events: visible;
  }
}

/* ======= hover ======= */
a[href^="tel:"]:hover img {
  opacity: 1;
}

/*  .link - decoration underline
---------------------------------------------*/
a.link {
  color: #1a385d;
  text-decoration: underline;
}

.pc a.link:hover {
  text-decoration: none;
  color: #1a385d;
}

/* -----------------------------------------------
    list - ul,ol
------------------------------------------------*/
/*==================================================================
    layout
===================================================================*/
/*  wrapper
---------------------------------------------*/
.wrapper {
  background-image: url(../img/common/bg_head01.svg);
  background-repeat: no-repeat;
  background-size: 90%;
}

main {
  padding-top: 90px;
}

@media screen and (max-width: 991px) {
  main {
    padding-top: 70px;
  }
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 60px;
  }
}

/*  container
---------------------------------------------*/
.container {
  width: 100%;
  max-width: 1280px;
  padding-right: 60px;
  padding-left: 60px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

@media screen and (max-width: 991px) {
  .container {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media screen and (max-width: 768px) {
  .container {
    max-width: unset;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.container.-large {
  max-width: 1310px;
}

.container.-small {
  max-width: 1020px;
}

.container.-Xlarge {
  max-width: 1920px;
}

.container.-min {
  max-width: 690px;
}

.container.-fluid {
  max-width: unset;
  padding-right: 0;
  padding-left: 0;
}

.container--fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

.movie-wrap {
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

.movie-wrap.smartphone {
  padding-bottom: 177.7777%;
}

.movie-wrap iframe,
.movie-wrap video {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  transform: scale(1.02);
}

/*==================================================================
    .pagettl
===================================================================*/
.pagettl {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .pagettl {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

/*==================================================================
    .h01 //pageTitle
===================================================================*/
.h01 {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 30px;
  font-family: "Red Hat Display", sans-serif;
}

@media screen and (max-width: 768px) {
  .h01 {
    font-size: 2.2rem;
  }
}

.h01 span {
  font-family: "Red Hat Display", sans-serif;
  font-size: 1.6rem;
  display: block;
  line-height: 1;
  color: #666666;
  padding-top: 15px;
}

@media screen and (max-width: 768px) {
  .h01 span {
    font-size: 1.3rem;
  }
}

/*==================================================================
    .h02
===================================================================*/
.h02 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #82c2c5;
  margin-bottom: 50px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .h02 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.h02 span {
  font-family: "Red Hat Display", sans-serif;
  font-size: 1.6rem;
  display: block;
  line-height: 1;
  color: #666666;
  padding-top: 15px;
}

@media screen and (max-width: 768px) {
  .h02 span {
    font-size: 1.3rem;
  }
}

/*==================================================================
    .h03
===================================================================*/
.h03 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .h03 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

.h03 span {
  font-family: "Red Hat Display", sans-serif;
  font-size: 1.6rem;
  display: block;
  line-height: 1;
  color: #666666;
  padding-top: 15px;
}

@media screen and (max-width: 768px) {
  .h03 span {
    font-size: 1.3rem;
  }
}

.leadbox-head {
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  .leadbox-head {
    padding: 40px 0;
  }
}

.paragraphbox-head {
  position: relative;
  padding: 120px 0;
}

@media screen and (max-width: 768px) {
  .paragraphbox-head {
    padding: 40px 0;
  }
}

.paragraphbox-head.categorybox {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .paragraphbox-head.categorybox {
    margin-top: 40px;
  }
}

.paragraphbox-head .container::before {
  content: "";
  width: min(800px, 80% + 80px);
  height: calc(100% + 200px);
  background-color: #203aaf;
  display: block;
  position: absolute;
  left: -40px;
  top: -100px;
  z-index: 0;
  transform: skewX(-10deg);
}

@media screen and (max-width: 768px) {
  .paragraphbox-head .container::before {
    height: calc(100% + 160px);
    top: -80px;
  }
}

.paragraphbox-head h2,
.paragraphbox-head p {
  position: relative;
  z-index: 1;
}

.paragraphbox-img {
  width: 40%;
  max-width: 600px;
  position: absolute;
  right: 60px;
  top: -140px;
}

@media screen and (max-width: 991px) {
  .paragraphbox-img {
    right: 40px;
  }
}

@media screen and (max-width: 768px) {
  .paragraphbox-img {
    width: 55%;
    right: -10%;
    top: -100px;
  }
}

.pagettl01 {
  font-size: min(3vw, 1.6rem);
  font-weight: 700;
}

.pagettl01 span {
  margin-top: 10px;
  display: inline-block;
  font-size: 4rem;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  overflow: hidden;
  line-height: 1;
}

.pagettl01 em {
  display: inline-block;
  overflow: hidden;
}

.pagettl01+p {
  margin-top: 20px;
}

.pagettl02 {
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  padding-left: 80px;
}

@media screen and (max-width: 768px) {
  .pagettl02 {
    padding-left: 50px;
  }
}

.pagettl02::after {
  content: "";
  width: 70px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
}

@media screen and (max-width: 768px) {
  .pagettl02::after {
    width: 40px;
  }
}

.pagettl02.-w {
  color: #fff;
}

.pagettl02.-w::after {
  background-color: #fff;
}

.pagettl02 span {
  margin-top: 10px;
  display: inline-block;
  font-size: 3rem;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  overflow: hidden;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .pagettl02 span {
    font-size: 3rem;
  }
}

.pagettl02 em {
  display: inline-block;
  overflow: hidden;
}

.pagettl02+p {
  margin-top: 20px;
}

.pagettl03 {
  font-size: 2rem;
  font-weight: 700;
}

.pagettl03 span {
  margin-top: 10px;
  display: inline-block;
  font-size: 6rem;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  overflow: hidden;
  line-height: 1;
}

.pagettl03 em {
  display: inline-block;
  overflow: hidden;
}

.pagettl03+p {
  margin-top: 20px;
}

.pagettl04 {
  font-size: min(2.4vw, 1.6rem);
  font-weight: 700;
  position: relative;
  padding-left: 80px;
}

@media screen and (max-width: 768px) {
  .pagettl04 {
    padding-left: 50px;
  }
}

.pagettl04::after {
  content: "";
  width: 70px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
}

@media screen and (max-width: 768px) {
  .pagettl04::after {
    width: 40px;
  }
}

.pagettl04.-w {
  color: #fff;
}

.pagettl04.-w::after {
  background-color: #fff;
}

.pagettl04 span {
  margin-top: 10px;
  display: inline-block;
  font-size: 3rem;
  text-transform: uppercase;
  overflow: hidden;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .pagettl04 span {
    font-size: 2.4rem;
  }
}

.pagettl04 em {
  display: inline-block;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.pagettl04+p {
  margin-top: 20px;
}

p.boxed {
  background-color: rgba(255, 255, 255, 0.8);
}

/*==================================================================
    .btn01
===================================================================*/
a.btn01,
input[type=button].btn01,
input[type=submit].btn01,
button[type=button].btn01,
button[type=submit].btn01 {
  width: 100%;
  height: 60px;
  color: #fff;
  border-radius: 30px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: all 200ms ease;
}

@media screen and (max-width: 768px) {

  a.btn01,
  input[type=button].btn01,
  input[type=submit].btn01,
  button[type=button].btn01,
  button[type=submit].btn01 {
    height: 50px;
    font-size: 1.4rem;
  }
}

a.btn01::before,
input[type=button].btn01::before,
input[type=submit].btn01::before,
button[type=button].btn01::before,
button[type=submit].btn01::before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 18px;
  background-size: 20px 18px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-right: 10px;
}

a.btn01:hover,
input[type=button].btn01:hover,
input[type=submit].btn01:hover,
button[type=button].btn01:hover,
button[type=submit].btn01:hover {
  background-color: #1a385d;
  color: #fff;
}

a.btn01.-mail::before,
input[type=button].btn01.-mail::before,
input[type=submit].btn01.-mail::before,
button[type=button].btn01.-mail::before,
button[type=submit].btn01.-mail::before {
  background-image: url(../img/common/icon-envelop-white.svg);
}

a.btn01.-mail:hover::before,
input[type=button].btn01.-mail:hover::before,
input[type=submit].btn01.-mail:hover::before,
button[type=button].btn01.-mail:hover::before,
button[type=submit].btn01.-mail:hover::before {
  transition: all 200ms ease;
}

/*==================================================================
    .btn02
===================================================================*/
a.btn02,
input[type=button].btn02,
input[type=submit].btn02,
button[type=button].btn02,
button[type=submit].btn02 {
  width: 100%;
  height: 50px;
  border: solid 1px #1a385d;
  color: #1a385d;
  border-radius: 30px;
  background-color: #fff;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: all 200ms ease;
}

@media screen and (max-width: 768px) {

  a.btn02,
  input[type=button].btn02,
  input[type=submit].btn02,
  button[type=button].btn02,
  button[type=submit].btn02 {
    height: 40px;
    font-size: 1.4rem;
  }
}

a.btn02::before,
input[type=button].btn02::before,
input[type=submit].btn02::before,
button[type=button].btn02::before,
button[type=submit].btn02::before {
  display: inline-block;
  content: "";
  width: 30px;
  height: 30px;
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-right: 10px;
}

a.btn02:hover,
input[type=button].btn02:hover,
input[type=submit].btn02:hover,
button[type=button].btn02:hover,
button[type=submit].btn02:hover {
  background-color: #1a385d;
  color: #fff;
}

a.btn02.-shop::before,
input[type=button].btn02.-shop::before,
input[type=submit].btn02.-shop::before,
button[type=button].btn02.-shop::before,
button[type=submit].btn02.-shop::before {
  background-image: url(../img/common/icon-shopopen-orange.svg);
}

a.btn02.-shop:hover::before,
input[type=button].btn02.-shop:hover::before,
input[type=submit].btn02.-shop:hover::before,
button[type=button].btn02.-shop:hover::before,
button[type=submit].btn02.-shop:hover::before {
  background-image: url(../img/common/icon-shopopen-white.svg);
  transition: all 200ms ease;
}

a.btn02.-bloglist::before,
input[type=button].btn02.-bloglist::before,
input[type=submit].btn02.-bloglist::before,
button[type=button].btn02.-bloglist::before,
button[type=submit].btn02.-bloglist::before {
  background-image: url(../img/common/icon-bloglist-orange.svg);
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
}

a.btn02.-bloglist:hover::before,
input[type=button].btn02.-bloglist:hover::before,
input[type=submit].btn02.-bloglist:hover::before,
button[type=button].btn02.-bloglist:hover::before,
button[type=submit].btn02.-bloglist:hover::before {
  background-image: url(../img/common/icon-bloglist-white.svg);
  transition: all 200ms ease;
}

/*==================================================================
    .btn03
===================================================================*/
a.btn03,
input[type=button].btn03,
input[type=submit].btn03,
button[type=button].btn03,
button[type=submit].btn03 {
  width: 100%;
  height: 40px;
  border: solid 1px #1a385d;
  color: #1a385d;
  border-radius: 30px;
  background-color: #fff;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: all 200ms ease;
}

@media screen and (max-width: 768px) {

  a.btn03,
  input[type=button].btn03,
  input[type=submit].btn03,
  button[type=button].btn03,
  button[type=submit].btn03 {
    height: 40px;
    font-size: 1.4rem;
  }
}

/*==================================================================
    .btn04
===================================================================*/
a.btn04,
input[type=button].btn04,
input[type=submit].btn04,
button[type=button].btn04,
button[type=submit].btn04 {
  display: block;
  width: 100%;
  height: 70px;
  background: #C25662;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #914C53;
  border-radius: 35px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 70px;
  transition: all 200ms ease;
}

@media screen and (max-width: 768px) {

  a.btn04,
  input[type=button].btn04,
  input[type=submit].btn04,
  button[type=button].btn04,
  button[type=submit].btn04 {
    height: 50px;
    border-radius: 25px;
    font-size: 1.3rem;
    line-height: 48px;
  }
}

a.btn04:hover,
input[type=button].btn04:hover,
input[type=submit].btn04:hover,
button[type=button].btn04:hover,
button[type=submit].btn04:hover {
  background: #fff;
  color: #5b85b9;
}

a.btn04.-back,
input[type=button].btn04.-back,
input[type=submit].btn04.-back,
button[type=button].btn04.-back,
button[type=submit].btn04.-back {
  background: #666;
  border: 1px solid #333;
}

a.btn04.-back:hover,
input[type=button].btn04.-back:hover,
input[type=submit].btn04.-back:hover,
button[type=button].btn04.-back:hover,
button[type=submit].btn04.-back:hover {
  background: #fff;
  color: #666;
}

a.btn04.-phone,
input[type=button].btn04.-phone,
input[type=submit].btn04.-phone,
button[type=button].btn04.-phone,
button[type=submit].btn04.-phone {
  background: #1a385d;
  border: #1a385d;
  cursor: pointer;
}

a.btn04.-phone:hover,
input[type=button].btn04.-phone:hover,
input[type=submit].btn04.-phone:hover,
button[type=button].btn04.-phone:hover,
button[type=submit].btn04.-phone:hover {
  opacity: 0.8;
}

a.btn04.-line,
input[type=button].btn04.-line,
input[type=submit].btn04.-line,
button[type=button].btn04.-line,
button[type=submit].btn04.-line {
  background: #00B900;
  border: #1a385d;
  cursor: pointer;
}

a.btn04.-line:hover,
input[type=button].btn04.-line:hover,
input[type=submit].btn04.-line:hover,
button[type=button].btn04.-line:hover,
button[type=submit].btn04.-line:hover {
  opacity: 0.8;
}

a.btn04.-mail,
input[type=button].btn04.-mail,
input[type=submit].btn04.-mail,
button[type=button].btn04.-mail,
button[type=submit].btn04.-mail {
  background: #82c2c5;
  border: #1a385d;
  cursor: pointer;
}

a.btn04.-mail:hover,
input[type=button].btn04.-mail:hover,
input[type=submit].btn04.-mail:hover,
button[type=button].btn04.-mail:hover,
button[type=submit].btn04.-mail:hover {
  opacity: 0.8;
}

.btn {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45px;
  background: linear-gradient(to left, #1a385d 0%, #55749b 100%);
  border-radius: 3px;
  border: none;
  outline: none;
  font-size: 1.4rem;
  line-height: normal;
  font-weight: bold;
  color: #fff;
  position: relative;
}

.btn_wrap {
  padding: 50px 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -15px;
}

@media screen and (max-width: 768px) {
  .btn_wrap {
    padding: 40px 0;
  }
}

.btn_box {
  max-width: 360px;
  width: 100%;
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .btn_box {
    padding: 0px 15px;
    margin-bottom: 15px;
    max-width: none;
  }
}

.btn:hover {
  opacity: 0.8;
}

.btn:nth-child(2) {
  margin-top: 20px;
}

.btn.-grad01 {
  background: linear-gradient(to right, #870237 0%, #5f0020 100%);
}

.btn.-gray {
  background: #6d7583;
}

.btn.-gold {
  background: #8e7d3b;
}

.btn.-green {
  background: #195120;
}

.btn.-lhl {
  height: 60px !important;
}

@media screen and (max-width: 768px) {
  .btn.-lhl {
    height: 46px !important;
  }
}

.btn.-lhxl {
  height: 70px !important;
}

@media screen and (max-width: 768px) {
  .btn.-lhxl {
    height: 55px !important;
  }
}

.btn.-lhxxl {
  height: 90px !important;
}

@media screen and (max-width: 768px) {
  .btn.-lhxxl {
    height: 55px !important;
  }
}

.btn.-fs-mid {
  font-size: 1.6rem !important;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .btn.-fs-mid {
    font-size: 1.4rem !important;
  }
}

.btn.-fs-big {
  flex-flow: column nowrap;
  font-size: 1.8rem !important;
  letter-spacing: 0;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .btn.-fs-big {
    font-size: 1.6rem !important;
  }
}

.btn.-fs-big span {
  font-size: 1rem;
  display: block;
}

.btn.-fs-big span.phonenum {
  font-size: 2.2rem;
  font-family: "Roboto Condensed", sans-serif;
}

@media screen and (max-width: 768px) {
  .btn.-fs-big span.phonenum {
    display: none;
  }
}

.btn:disabled {
  opacity: 0.3;
}

.btn.-check .icon {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.btn.-check .icon::before {
  display: block;
  content: "";
  width: 24px;
  height: 17px;
  background-image: url(../../img/common/icon_btn_check.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-right: 0.8em;
}

.btn.-cancel .icon {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.btn.-cancel .icon::before {
  display: block;
  content: "";
  width: 23px;
  height: 23px;
  background-image: url(../../img/common/icon_btn_cross.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-right: 0.8em;
}

.btn.-right-arrow::before {
  display: block;
  content: "";
  width: 8px;
  height: 13px;
  background-image: url(../../img/common/icon_btn_arrow-right.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/*==================================================================
    .tbl01
===================================================================*/
.tbl01 {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto 5px;
}

.tbl01 th {
  background-color: #ddd;
}

.tbl01 th,
.tbl01 td {
  border: solid 1px #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 768px) {

  .tbl01 th,
  .tbl01 td {
    font-size: 1.3rem;
  }
}

.tbl01 thead th,
.tbl01 thead td {
  padding: 10px 15px;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 768px) {

  .tbl01 thead th,
  .tbl01 thead td {
    font-size: 1.3rem;
  }
}

.tbl01 thead th:first-child {
  width: 140px;
}

.tbl01 tbody th,
.tbl01 tbody td {
  padding: 15px 15px;
}

.tbl01 tbody td {
  border: solid 1px #ddd;
  text-align: center;
  font-size: 2.3rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.tbl01 tbody td:first-child {
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
}

.tbl01 tbody td span {
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  display: block;
}

@media screen and (max-width: 768px) {
  .tbl01 tbody td span {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

.tbl01.-photo thead th {
  color: #fff;
  font-size: 1.6rem;
}

.tbl01.-photo thead th:nth-child(2) {
  background-color: #1a385d;
}

.tbl01.-photo thead th:nth-child(3) {
  background-color: #3b608d;
}

.tbl01.-photo thead th:last-child {
  background-color: #5b85b9;
}

.tbl01.-movie thead th {
  color: #fff;
  font-size: 1.6rem;
}

.tbl01.-movie thead th:nth-child(2) {
  background-color: #82c2c5;
}

.tbl01.-movie thead th:last-child {
  background-color: #36848a;
}

.tbl01.-studio thead th {
  color: #fff;
  font-size: 1.6rem;
  width: 33.3333333333% !important;
}

@media screen and (max-width: 768px) {
  .tbl01.-studio thead th {
    font-size: 1.3rem;
  }
}

.tbl01.-studio thead th:nth-child(1) {
  background-color: #1a385d;
}

.tbl01.-studio thead th:nth-child(2) {
  background-color: #3b608d;
}

.tbl01.-studio thead th:last-child {
  background-color: #5b85b9;
}

.tbl01.-studio thead th:first-child {
  width: unset;
}

.tbl01.-studio tbody td {
  border: solid 1px #ddd;
  text-align: center;
  font-size: 2.3rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.tbl01.-studio tbody td span {
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  display: block;
}

@media screen and (max-width: 768px) {
  .tbl01.-studio tbody td span {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

@media screen and (max-width: 768px) {
  .tbl_wrap {
    overflow-x: scroll;
    white-space: nowrap;
    margin-bottom: 20px;
  }

  .tbl_wrap::-webkit-scrollbar {
    height: 3px;
  }

  .tbl_wrap::-webkit-scrollbar-track {
    background: #F1F1F1;
  }

  .tbl_wrap::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}

/*==================================================================
    .tbl03 オプション
===================================================================*/
.tbl03 {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto 5px;
}

.tbl03 th {
  background-color: #ebe8e8;
}

.tbl03 thead th {
  padding: 20px 15px;
  text-align: center;
  font-weight: bold;
  font-weight: 2rem;
  background-color: #1a385d;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .tbl03 thead th {
    font-size: 1.3rem;
  }
}

.tbl03 thead th:first-child {
  width: 140px;
}

.tbl03 tbody th,
.tbl03 tbody td {
  padding: 10px;
  line-height: 1.5;
}

.tbl03 tbody th {
  border: solid 1px #ddd;
  text-align: center;
  font-size: 1.4rem;
  width: 15%;
}

@media screen and (max-width: 768px) {
  .tbl03 tbody th {
    width: 100%;
    display: block;
    border: none;
    padding: 5px;
    text-align: left;
  }
}

.tbl03 tbody td {
  width: 30%;
  border: solid 1px #ddd;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .tbl03 tbody td {
    width: 100%;
    display: block;
    border: none;
    padding: 5px 5px 15px;
    text-align: left;
  }
}

.tbl03 tbody td span {
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .tbl03 tbody td span {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

.tbl03 tbody tr:first-child th {
  border-top: none;
}

/*==================================================================
    .tbl04 キャンセルテーブル
===================================================================*/
.tbl04 {
  border-collapse: collapse;
  width: 100%;
  margin: 20px auto 5px;
}

.tbl04 tbody th {
  padding: 20px 15px;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  background-color: #333;
  color: #fff;
  border: solid 1px #fff;
  width: 33.3333333333%;
}

.tbl04 tbody td {
  border: solid 1px #ddd;
  text-align: center;
  font-size: 1.5rem;
  padding: 10px;
  line-height: 1.5;
  width: 33.3333333333%;
  min-width: 33.3333333333%;
}

.cancel_list {
  display: flex;
  flex-flow: row wrap;
}

@media screen and (max-width: 768px) {
  .cancel_list {
    flex-flow: column;
  }
}

.cancel_item {
  width: 33.3333333333%;
  margin-left: 1px;
  background: #fff;
}

.cancel_item h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #1a385d;
  line-height: 1.5;
}

/*==================================================================
  .header
===================================================================*/
.header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  transition: 0.4s all;
}

@media screen and (max-width: 768px) {
  .header {
    background: #fff;
    height: 60px;
  }
}

.header_menu {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  transition: all 200ms ease;
}

@media screen and (max-width: 991px) {
  .header_menu {
    opacity: 0;
    display: none;
  }
}

.header_menu.active {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1001;
  background: #1a385d;
  color: #fff;
  display: block;
  transition: all 200ms ease;
  opacity: 1;
  padding-top: 60px;
  overflow-y: auto;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.header_logo {
  width: 200px;
  padding: 17px;
}

@media screen and (max-width: 991px) {
  .header_logo {
    width: 150px;
  }
}

@media screen and (max-width: 768px) {
  .header_logo {
    width: 120px;
  }
}

.header_logo a {
  position: relative;
  width: 100%;
  height: 100%;
}

.header_logo a img {
  width: 100%;
}

.header .nav_list {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  height: 90px;
}

@media screen and (max-width: 991px) {
  .header .nav_list {
    flex-flow: column;
  }
}

.header .nav li {
  padding: 0px 1.3vw;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
}

@media screen and (max-width: 991px) {
  .header .nav li {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding: 0px 20px;
  }
}

.header .nav li:nth-child(7) {
  background: #1a385d;
}

.header .nav li:nth-child(7) a {
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .header .nav li.enhance {
    display: none;
  }
}

.header .nav li a {
  font-weight: bold;
  color: #000;
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  line-height: 1.4;
  font-size: 1.3rem;
}

@media screen and (max-width: 991px) {
  .header .nav li a {
    color: #fff;
    width: 100%;
    line-height: 50px;
    text-align: left;
    justify-content: left;
    align-items: flex-start;
  }
}

.header .nav li a:hover {
  transform: translateY(-4px);
}

@media screen and (max-width: 991px) {
  .header .nav li a:hover {
    transform: none;
  }
}

.header .nav li a span {
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Red Hat Display", sans-serif;
}

@media screen and (max-width: 991px) {
  .header .nav li a span {
    display: none;
  }
}

.header .nav li ul {
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0s;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .header .nav li ul {
    display: none;
  }
}

.header .nav li:hover ul {
  visibility: visible;
  opacity: 1;
}

.header .nav li ul li {
  width: 100%;
  height: 50px;
  padding: 0px;
}

.header .nav li ul li a {
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  padding: 0px;
  border-top: 1px solid #fff;
  border-left: none;
  background: #333;
  text-align: center;
  color: #fff;
  height: 50px;
  line-height: 50px;
  font-size: 1.2rem;
  width: 100%;
}

.header .nav li ul li a:hover {
  background: #fff;
  color: #333;
}

@media screen and (max-width: 991px) {
  .header .nav li ul li a {
    visibility: visible;
    opacity: 1;
  }
}

.header .nav li:hover ul li a {
  visibility: visible;
  opacity: 1;
}

.header .sub {
  background: #3b608d;
  padding: 0px 1vw;
  color: #fff;
  height: 80px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .header .sub {
    padding: 30px 0px;
    display: block;
  }
}

.header .sub_inner {
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .header .sub_inner {
    margin-bottom: 20px;
  }
}

.header .sub dl {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

@media screen and (max-width: 991px) {
  .header .sub dl {
    display: none;
  }
}

.header .sub dl dt {
  font-size: 1.2rem;
  font-weight: bold;
}

.header .sub dl dd a {
  display: block;
  border-radius: 10px;
  background: #82c2c5;
  font-size: 1.2rem;
  color: #fff;
  line-height: 16px;
  padding: 0px 0.5em;
}

/*==================================================================
  .menu-trigger
===================================================================*/
.trigger {
  display: none;
  width: 70px;
  height: 70px;
  background-color: #1a385d;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 9999;
  transition: all 200ms ease;
}

@media screen and (max-width: 991px) {
  .trigger {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .trigger {
    width: 60px;
    height: 60px;
  }
}

.trigger .menu-trigger,
.trigger .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.trigger .menu-trigger {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 24px;
  left: 20px;
}

@media screen and (max-width: 768px) {
  .trigger .menu-trigger {
    top: 20px;
    left: 16px;
  }
}

.trigger .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.trigger .menu-trigger span:nth-of-type(1) {
  top: 0;
}

.trigger .menu-trigger span:nth-of-type(2) {
  top: 9px;
}

.trigger .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.trigger .menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-315deg);
  transform: translateY(9px) rotate(-315deg);
}

.trigger .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.trigger .menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(315deg);
  transform: translateY(-9px) rotate(315deg);
}

.anchornavi {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .anchornavi {
    padding-bottom: 30px;
  }
}

.anchornavi-list-wrap {
  white-space: nowrap;
  overflow-x: auto;
}

.anchornavi-list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  margin: 0px auto 10px;
}

@media screen and (max-width: 768px) {
  .anchornavi-list {
    margin: 0px auto 10px;
  }
}

.anchornavi li {
  min-width: 280px;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .anchornavi li {
    padding: 0 5px;
  }
}

.anchornavi li a {
  display: block;
  width: 100%;
  height: 70px;
  border-radius: 35px;
  background: linear-gradient(135deg, #f1f1f1 0%, #e0e0e0 100%);
  border: 1px solid #fff;
  box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.2);
  transition: all 200ms ease;
}

.anchornavi li a:hover {
  transition: all 200ms ease;
  box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(4px);
}

.anchornavi li dl {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 15px;
}

.anchornavi li dl dt {
  width: 80px;
  padding-right: 10px;
}

.anchornavi li dl dd {
  font-size: 1.6rem;
  white-space: nowrap;
}

.anchornavi li dl dd span {
  display: block;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  padding-top: 7px;
  color: #8c8c8c;
}

/* ------------------------------------------------------------------
  footcontact
-------------------------------------------------------------------*/
.footcontact {
  padding: 50px 0;
  background-image: url(../../img/common/bg_contact.jpg);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.footcontact .activity h4 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.footcontact .activity ul {
  margin-bottom: 20px;
}

.footcontact .activity ul li a {
  width: 100%;
  padding: 10px 50px 10px 20px;
  line-height: 1.8rem;
  border-bottom: 1px solid #ccc;
  display: inline-block;
  text-decoration: none !important;
  color: #333;
  background-color: #fff;
  position: relative;
}

.footcontact .activity ul li:first-child a {
  border-top: 1px solid #ccc;
}

.footcontact .activity ul li a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  transition: all 0.2s;
  content: "\f105";
  display: block;
  font-family: fontawesome;
}

.footcontact .activity ul li a.external::after {
  content: "\f08e";
}

.footcontact .activity ul li a:hover {
  background-color: #2d2b47;
  color: #fff;
  cursor: pointer;
}

.footcontact .activity ul li a:hover::after {
  color: #fff;
  right: 20px;
}

.footcontact .overview_box {
  padding: 5%;
  background-color: white;
  margin-bottom: 15px;
}

.footcontact .overview h4 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.footcontact .overview_list {
  display: flex;
  flex-flow: row nowrap;
  margin: 0px -15px;
}

@media screen and (max-width: 768px) {
  .footcontact .overview_list {
    flex-flow: row wrap;
    margin: 0px -5px;
  }
}

.footcontact .overview_list li {
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .footcontact .overview_list li {
    padding: 5px;
    width: 100%;
  }
}

.footer {
  background-color: #f8f8f8;
  color: #000;
  padding: 60px 0px 0px;
}

.footer_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer_list {
    flex-flow: column;
    justify-content: center;
  }
}

.footer_item {
  width: 50%;
  padding: 0px 30px 30px;
}

@media screen and (max-width: 991px) {
  .footer_item {
    padding: 0px 0px 30px;
    width: 100%;
  }
}

.footer_item.-menu {
  display: flex;
  flex-flow: row nowrap;
}

@media screen and (max-width: 991px) {
  .footer_item.-menu {
    flex-flow: column;
  }
}

.footer_item.-menu .link {
  padding: 0px 10px;
}

@media screen and (max-width: 991px) {
  .footer_item.-menu .link {
    padding: 0px;
    margin: 0px -15px;
  }
}

.footer_item.-menu .link li {
  font-size: 100%;
  display: inline-block;
  vertical-align: text-top;
  width: 100%;
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .footer_item.-menu .link li {
    font-size: 1.2rem;
    display: block;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 0px;
  }
}

.footer_item.-menu .link li a {
  display: block;
  position: relative;
  line-height: 1.4;
}

@media screen and (max-width: 991px) {
  .footer_item.-menu .link li a {
    line-height: 40px;
    padding-left: 10px;
  }
}

.footer_item.-menu .link li i {
  font-weight: bold;
  margin-right: 8px;
  margin-top: 2px;
}

@media screen and (max-width: 991px) {
  .footer_item.-logo {
    text-align: center;
  }
}

.footer_item.-logo .logo img {
  margin-bottom: 15px;
  width: 200px;
}

.footer_item.-logo p {
  line-height: 1.4;
}

@media screen and (max-width: 991px) {
  .footer_item.-logo p {
    font-size: 1.2rem;
  }
}

.footer_item.-logo .info {
  margin-top: 20px;
}

.footer_item.-logo .info li {
  margin-bottom: 5px;
}

@media screen and (max-width: 991px) {
  .footer_item.-logo .info li {
    font-size: 1.2rem;
  }
}

.copyright {
  padding: 4px;
  color: #fff;
  background-color: #1a385d;
  font-size: 1.2rem;
}

#orderPage .footer {
  padding-bottom: 80px;
}

/*==================================================================
    .mainView
===================================================================*/
.mainView {
  position: relative;
  width: 100vw;
}

.mainView img {
  width: 100%;
}

.mainView .slick-slide:not(.slick-center) {
  filter: none !important;
}

.mainView.-ul {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.mainView.-ul.-photo {
  background: url(../../../../img/top/img-keyv.png);
  background-size: cover;
}

.mainView .nolink {
  touch-action: none;
  pointer-events: none;
}

#top .news {
  background: #1a385d;
  display: flex;
  justify-content: center;
  height: 50px;
  align-items: center;
}

#top .news dl {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-flow: row nowrap;
}

#top .news dl dt {
  background: #fff;
  color: #1a385d;
  font-family: "Red Hat Display", sans-serif;
  font-size: 1.2rem;
  text-align: center;
  padding: 0px 1em;
  line-height: 30px;
}

@media screen and (max-width: 768px) {
  #top .news dl dt {
    font-size: 1rem;
    line-height: 20px;
  }
}

#top .news dl dd {
  padding-left: 10px;
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
  #top .news dl dd {
    font-size: 1.1rem;
  }
}

#top .news dl dd a {
  color: #fff;
}

/*==================================================================
    .subView
===================================================================*/
.subView {
  position: relative;
  margin-bottom: 50px;
  margin-top: 40px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .subView {
    margin-bottom: 30px;
    height: 120px;
  }
}

.subView.-photo {
  background-image: url(/img/common/bg_contact.jpg);
}

.subView.-case {
  background-image: url(/img/common/bg_contact.jpg);
}

.subView_inner {
  background: #fff;
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  height: 150px;
}

@media screen and (max-width: 768px) {
  .subView_inner {
    height: 120px;
  }
}

.subView_inner .ttl {
  width: 30%;
  background: #333;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

@media screen and (max-width: 768px) {
  .subView_inner .ttl {
    padding-left: 20px;
  }
}

.subView_inner .right {
  width: 70%;
  position: relative;
}

.subView_inner .right::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
  border-style: solid;
  border-width: 150px 50px 0 0;
  border-color: #333 transparent transparent transparent;
}

@media screen and (max-width: 768px) {
  .subView_inner .right::before {
    border-width: 120px 50px 0 0;
  }
}

.subView_inner .right.-photo {
  background-image: url(/img/common/bg_contact.jpg);
}

.subView_inner .right.-case {
  background-image: url(/img/common/bg_contact.jpg);
}

.subView_inner h2 {
  font-weight: bold;
  font-size: 2.4rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .subView_inner h2 {
    font-size: 1.6rem;
  }
}

.subView_inner h2 span {
  font-size: 1.2rem;
  display: block;
  margin-top: 10px;
  font-weight: normal;
  font-family: "Red Hat Display", sans-serif;
  white-space: nowrap;
}

.slick-dots {
  display: none !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.slick-track {
  padding-bottom: 0 !important;
}

.slick-list::before {
  content: "";
  position: absolute;
  left: 25%;
  top: 0;
  width: 220px;
  height: 220px;
  background-image: url(/asset/img/top/img-renewal-eyecatch.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  z-index: 4;
}

@media screen and (max-width: 1919px) {
  .slick-list::before {
    left: 20%;
  }
}

@media screen and (max-width: 1599px) {
  .slick-list::before {
    left: 15%;
  }
}

@media screen and (max-width: 1399px) {
  .slick-list::before {
    left: 10%;
  }
}

@media screen and (max-width: 1199px) {
  .slick-list::before {
    left: 5%;
  }
}

@media screen and (max-width: 767px) {
  .slick-list::before {
    width: 32%;
    left: 0;
  }
}

.hero {
  padding: 40px 0 20px;
  background-image: url(../img/common/bg_grid.svg);
}

@media screen and (max-width: 768px) {
  .hero {
    padding: 60px 0 10px;
  }
}

.hero .slider {
  opacity: 0;
  transition: 0.4s all;
}

.hero .slider_item {
  padding: 0 10px;
}

@media screen and (max-width: 991px) {
  .hero .slider_item {
    width: 100vw;
    padding: 0;
  }

  .hero .slider_item picture,
  .hero .slider_item img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .hero .slick-dotted.slick-slider {
    margin-bottom: 15px;
  }
}

.hero .slick-dots {
  bottom: -30px;
}

@media screen and (max-width: 768px) {
  .hero .slick-dots {
    bottom: -20px;
  }
}

.hero .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .hero .slick-dots li {
    margin: 0 5px;
  }
}

.hero .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
}

.hero .slick-dots li button::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #928f8e;
  border-radius: 5px;
  font-size: 0;
  line-height: 0;
  opacity: 1;
}

.hero .slick-dots li.slick-active button::before {
  opacity: 1;
  background-color: #1a385d;
}

.hero .slick-prev,
.hero .slick-next {
  width: 72px;
  height: 72px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 72px 72px;
  text-indent: -9999px;
  z-index: 2;
  transition: all 200ms ease;
}

@media screen and (max-width: 768px) {

  .hero .slick-prev,
  .hero .slick-next {
    width: 36px;
    height: 36px;
    background-size: 36px 36px;
  }
}

.hero .slick-prev:hover,
.hero .slick-next:hover {
  opacity: 0.6;
}

.hero .slick-prev {
  left: 25%;
  background-image: url(../img/common/icon_slider_prev.png);
}

@media screen and (max-width: 1920px) {
  .hero .slick-prev {
    left: 20%;
  }
}

@media screen and (max-width: 1600px) {
  .hero .slick-prev {
    left: 15%;
  }
}

@media screen and (max-width: 1400px) {
  .hero .slick-prev {
    left: 10%;
  }
}

@media screen and (max-width: 1200px) {
  .hero .slick-prev {
    left: 5%;
  }
}

@media screen and (max-width: 991px) {
  .hero .slick-prev {
    left: 0;
  }
}

.hero .slick-next {
  right: 25%;
  background-image: url(../img/common/icon_slider_next.png);
}

@media screen and (max-width: 1920px) {
  .hero .slick-next {
    right: 20%;
  }
}

@media screen and (max-width: 1600px) {
  .hero .slick-next {
    right: 15%;
  }
}

@media screen and (max-width: 1400px) {
  .hero .slick-next {
    right: 10%;
  }
}

@media screen and (max-width: 1200px) {
  .hero .slick-next {
    right: 5%;
  }
}

@media screen and (max-width: 991px) {
  .hero .slick-next {
    right: 0;
  }
}

.hero .slick-slide img {
  display: block;
  width: 100%;
}

.blur {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

.blur.-fast {
  animation-duration: 1s;
}

@keyframes blurAnime {
  from {
    filter: blur(50px);
    transform: scale(1.1);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.isplay {
  animation-name: play;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  opacity: 1 !important;
}

.isplay::before {
  animation-name: maskOut;
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: "";
  position: absolute;
  top: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: black;
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

.maskbox {
  overflow: hidden;
}

.maskbox-inner {
  opacity: 0;
}

/*==================================================================
    .maincta
===================================================================*/
.maincta {
  padding: 60px 0 100px;
}

@media screen and (max-width: 768px) {
  .maincta {
    padding: 30px 0 80px;
  }
}

.maincta-list {
  max-width: 960px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -20px;
}

@media screen and (max-width: 991px) {
  .maincta-list {
    margin: 0 -10px;
  }
}

@media screen and (max-width: 768px) {
  .maincta-list {
    flex-flow: column;
    max-width: 480px;
    margin: 0px auto;
  }
}

.maincta-item {
  width: 50%;
  padding: 0 20px;
}

@media screen and (max-width: 991px) {
  .maincta-item {
    padding: 0 10px;
  }
}

@media screen and (max-width: 768px) {
  .maincta-item {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }

  .maincta-item:last-child {
    margin-bottom: 0;
  }
}

/* ------------------------------------------------------------------
  cadrelink
-------------------------------------------------------------------*/
.cadrelink {
  padding: 50px 0;
  background-image: url(/asset/img/common/bg-cadrelink-7studio.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .cadrelink {
    padding: 40px 0;
  }
}

.cadrelink a {
  background-color: #fff;
  padding: 40px;
  max-width: 640px;
  width: 100%;
  margin: 0px auto;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  display: block;
  width: 100%;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .cadrelink a {
    padding: 25px;
  }
}

.cadrelink a:hover img {
  opacity: 0.7;
}

/*==================================================================
    animation
===================================================================*/
/*  setting
---------------------------------------------*/
.animate {
  visibility: hidden;
  transition: all 200ms ease;
  animation-duration: 1500ms;
  animation-fill-mode: both;
}

.animate.animated {
  visibility: visible;
}

.aInfinite {
  animation-iteration-count: infinite;
}

.aEx {
  transform: translate3d(0, 0, 0);
}

/*  duration
---------------------------------------------*/
.a0 {
  animation-duration: 0s;
  animation-fill-mode: both;
}

.a1 {
  animation-duration: 0.1s;
  animation-fill-mode: both;
}

.a2 {
  animation-duration: 0.2s;
  animation-fill-mode: both;
}

.a3 {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.a4 {
  animation-duration: 0.4s;
  animation-fill-mode: both;
}

.a5 {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.a6 {
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

.a7 {
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

.a8 {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.a9 {
  animation-duration: 0.9s;
  animation-fill-mode: both;
}

.a10 {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.a11 {
  animation-duration: 1.1s;
  animation-fill-mode: both;
}

.a12 {
  animation-duration: 1.2s;
  animation-fill-mode: both;
}

.a13 {
  animation-duration: 1.3s;
  animation-fill-mode: both;
}

.a14 {
  animation-duration: 1.4s;
  animation-fill-mode: both;
}

.a15 {
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

.a16 {
  animation-duration: 1.6s;
  animation-fill-mode: both;
}

.a17 {
  animation-duration: 1.7s;
  animation-fill-mode: both;
}

.a18 {
  animation-duration: 1.8s;
  animation-fill-mode: both;
}

.a19 {
  animation-duration: 1.9s;
  animation-fill-mode: both;
}

.a20 {
  animation-duration: 2s;
  animation-fill-mode: both;
}

.a21 {
  animation-duration: 2.1s;
  animation-fill-mode: both;
}

.a22 {
  animation-duration: 2.2s;
  animation-fill-mode: both;
}

.a23 {
  animation-duration: 2.3s;
  animation-fill-mode: both;
}

.a24 {
  animation-duration: 2.4s;
  animation-fill-mode: both;
}

.a25 {
  animation-duration: 2.5s;
  animation-fill-mode: both;
}

.a26 {
  animation-duration: 2.6s;
  animation-fill-mode: both;
}

.a27 {
  animation-duration: 2.7s;
  animation-fill-mode: both;
}

.a28 {
  animation-duration: 2.8s;
  animation-fill-mode: both;
}

.a29 {
  animation-duration: 2.9s;
  animation-fill-mode: both;
}

.a30 {
  animation-duration: 3s;
  animation-fill-mode: both;
}

.a31 {
  animation-duration: 3.1s;
  animation-fill-mode: both;
}

.a32 {
  animation-duration: 3.2s;
  animation-fill-mode: both;
}

.a33 {
  animation-duration: 3.3s;
  animation-fill-mode: both;
}

.a34 {
  animation-duration: 3.4s;
  animation-fill-mode: both;
}

.a35 {
  animation-duration: 3.5s;
  animation-fill-mode: both;
}

.a36 {
  animation-duration: 3.6s;
  animation-fill-mode: both;
}

.a37 {
  animation-duration: 3.7s;
  animation-fill-mode: both;
}

.a38 {
  animation-duration: 3.8s;
  animation-fill-mode: both;
}

.a39 {
  animation-duration: 3.9s;
  animation-fill-mode: both;
}

.a40 {
  animation-duration: 4s;
  animation-fill-mode: both;
}

.a41 {
  animation-duration: 4.1s;
  animation-fill-mode: both;
}

.a42 {
  animation-duration: 4.2s;
  animation-fill-mode: both;
}

.a43 {
  animation-duration: 4.3s;
  animation-fill-mode: both;
}

.a44 {
  animation-duration: 4.4s;
  animation-fill-mode: both;
}

.a45 {
  animation-duration: 4.5s;
  animation-fill-mode: both;
}

.a46 {
  animation-duration: 4.6s;
  animation-fill-mode: both;
}

.a47 {
  animation-duration: 4.7s;
  animation-fill-mode: both;
}

.a48 {
  animation-duration: 4.8s;
  animation-fill-mode: both;
}

.a49 {
  animation-duration: 4.9s;
  animation-fill-mode: both;
}

.a50 {
  animation-duration: 5s;
  animation-fill-mode: both;
}

/*  delay
---------------------------------------------*/
.aD0 {
  animation-delay: 0s;
}

.aD1 {
  animation-delay: 0.1s;
}

.aD2 {
  animation-delay: 0.2s;
}

.aD3 {
  animation-delay: 0.3s;
}

.aD4 {
  animation-delay: 0.4s;
}

.aD5 {
  animation-delay: 0.5s;
}

.aD6 {
  animation-delay: 0.6s;
}

.aD7 {
  animation-delay: 0.7s;
}

.aD8 {
  animation-delay: 0.8s;
}

.aD9 {
  animation-delay: 0.9s;
}

.aD10 {
  animation-delay: 1s;
}

.aD11 {
  animation-delay: 1.1s;
}

.aD12 {
  animation-delay: 1.2s;
}

.aD13 {
  animation-delay: 1.3s;
}

.aD14 {
  animation-delay: 1.4s;
}

.aD15 {
  animation-delay: 1.5s;
}

.aD16 {
  animation-delay: 1.6s;
}

.aD17 {
  animation-delay: 1.7s;
}

.aD18 {
  animation-delay: 1.8s;
}

.aD19 {
  animation-delay: 1.9s;
}

.aD20 {
  animation-delay: 2s;
}

.aD21 {
  animation-delay: 2.1s;
}

.aD22 {
  animation-delay: 2.2s;
}

.aD23 {
  animation-delay: 2.3s;
}

.aD24 {
  animation-delay: 2.4s;
}

.aD25 {
  animation-delay: 2.5s;
}

.aD26 {
  animation-delay: 2.6s;
}

.aD27 {
  animation-delay: 2.7s;
}

.aD28 {
  animation-delay: 2.8s;
}

.aD29 {
  animation-delay: 2.9s;
}

.aD30 {
  animation-delay: 3s;
}

.aD31 {
  animation-delay: 3.1s;
}

.aD32 {
  animation-delay: 3.2s;
}

.aD33 {
  animation-delay: 3.3s;
}

.aD34 {
  animation-delay: 3.4s;
}

.aD35 {
  animation-delay: 3.5s;
}

.aD36 {
  animation-delay: 3.6s;
}

.aD37 {
  animation-delay: 3.7s;
}

.aD38 {
  animation-delay: 3.8s;
}

.aD39 {
  animation-delay: 3.9s;
}

.aD40 {
  animation-delay: 4s;
}

.aD41 {
  animation-delay: 4.1s;
}

.aD42 {
  animation-delay: 4.2s;
}

.aD43 {
  animation-delay: 4.3s;
}

.aD44 {
  animation-delay: 4.4s;
}

.aD45 {
  animation-delay: 4.5s;
}

.aD46 {
  animation-delay: 4.6s;
}

.aD47 {
  animation-delay: 4.7s;
}

.aD48 {
  animation-delay: 4.8s;
}

.aD49 {
  animation-delay: 4.9s;
}

.aD50 {
  animation-delay: 5s;
}

.effect01 {
  transition: all 200ms ease;
  position: relative;
  overflow: hidden;
}

.effect01::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: white;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 3;
  animation: effect01-b 0.8s ease-out 0s 1 alternate forwards running;
}

.effect01::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  animation: effect-a 0.8s ease-out 0.6s 1 alternate forwards running;
}

@keyframes effect01-b {
  0% {
    left: -100%;
  }

  40% {
    left: 0;
  }

  60% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

@keyframes effect-a {
  0% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

.puyon {
  animation: puyon 2s linear 0s infinite;
}

@keyframes puyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }

  20% {
    transform: scale(1, 1) translate(0%, 0%);
  }

  40% {
    transform: scale(0.95, 1.2) translate(0%, -10%);
  }

  50% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }

  60% {
    transform: scale(0.95, 1.05) translate(0%, -3%);
  }

  70% {
    transform: scale(1.05, 0.95) translate(0%, 3%);
  }

  80% {
    transform: scale(1, 1) translate(0%, 0%);
  }

  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

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

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

/*==================================================================
    #top .lead
===================================================================*/
#top .lead {
  padding: 80px 0px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #top .lead {
    padding: 40px 0px;
    margin-bottom: 0px;
  }
}

#top .lead_box {
  text-align: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  #top .lead_box {
    margin-bottom: 50px;
  }
}

#top .lead_box p {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  #top .lead_box p {
    font-size: 2rem;
  }
}

#top .lead_point h2 {
  display: block;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #top .lead_point h2 {
    margin-bottom: 20px;
  }
}

#top .lead_point h2 span {
  border: 1px solid #1a385d;
  padding: 10px 2em;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

#top .lead .point_list {
  display: flex;
  flex-flow: row wrap;
}

#top .lead .point_item {
  width: 33.3333333333%;
  padding: 25px;
  margin-left: -1px;
}

@media screen and (max-width: 768px) {
  #top .lead .point_item {
    width: 100%;
    margin: 0px auto 20px;
    padding: 25px 15px;
  }
}

#top .lead .point_item h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #1a385d;
}

@media screen and (max-width: 768px) {
  #top .lead .point_item h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}

/*==================================================================
    #top .service
===================================================================*/
#top .service {
  padding: 80px 0px;
  position: relative;
  background-color: #f2f8fb;
}

@media screen and (max-width: 768px) {
  #top .service {
    padding: 40px 0px;
  }
}

#top .service .h01 {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  #top .service .h01 {
    margin-bottom: 30px;
  }
}

#top .service .point_list {
  display: flex;
  flex-flow: row wrap;
}

#top .service .point_item {
  width: 33.3333333333%;
  border: 1px solid #f7f7f7;
  background-color: #fff;
  padding: 30px;
}

@media screen and (max-width: 991px) {
  #top .service .point_item {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  #top .service .point_item {
    width: 100%;
    margin: 0px auto;
    padding: 20px;
  }
}

#top .service .point_item a {
  padding: 20px;
  width: 100%;
  height: 100%;
  display: block;
}

#top .service .point_item a img {
  max-width: 200px;
  margin: 0px auto 15px;
  display: block;
}

#top .service .point_item a h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #1a385d;
}

#top .service .point_item a h3 span {
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.3rem;
  display: block;
  padding-top: 10px;
}

/*==================================================================
    #top .photo
===================================================================*/
#top .photo {
  padding: 80px 0px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #top .photo {
    padding: 40px 0px;
  }
}

#top .photo .point_list {
  display: flex;
  flex-flow: row wrap;
}

#top .photo .point_item {
  width: 33.3333333333%;
  border: 1px solid #f7f7f7;
}

@media screen and (max-width: 991px) {
  #top .photo .point_item {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  #top .photo .point_item {
    width: 90%;
    margin: 0px auto;
  }
}

#top .photo .point_item a {
  padding: 20px;
  width: 100%;
  height: 100%;
  display: block;
}

#top .photo .point_item a img {
  max-width: 200px;
  margin: 0px auto 15px;
  display: block;
}

#top .photo .point_item a h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #1a385d;
}

#top .photo .point_item a h3 span {
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.3rem;
  display: block;
  padding-top: 10px;
}

/*==================================================================
    #top .case
===================================================================*/
#top .case {
  padding: 80px 0px;
  position: relative;
  background-color: #1a385d;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #top .case {
    padding: 40px 0px;
  }
}

#top .case .h01 {
  color: #fff;
}

#top .case_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -5px;
}

#top .case_item {
  width: 25%;
  padding: 5px;
}

@media screen and (max-width: 991px) {
  #top .case_item {
    width: 33.3333333333%;
  }
}

@media screen and (max-width: 768px) {
  #top .case_item {
    width: 50%;
  }
}

#top .case_item a {
  display: block;
  height: 100%;
  width: 100%;
  color: #000;
  outline: none;
  transition: 0.4s all;
  position: relative;
}

#top .case_item a:hover figcaption {
  opacity: 1;
  transition: 0.4s all;
}

#top .case_item span {
  font-size: 1.1rem;
  display: block;
}

#top .case_img {
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}

#top .case_img figcaption {
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  top: 0px;
  padding: 20px;
}

#top .case_img figcaption span {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}

#top .case_box {
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*==================================================================
    #top .movie
===================================================================*/
#top .movie {
  padding: 80px 0px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #top .movie {
    padding: 40px 0px;
  }
}

#top .movie .point_list {
  display: flex;
  flex-flow: row wrap;
}

#top .movie .point_item {
  width: 33.3333333333%;
  border: 1px solid #f7f7f7;
}

@media screen and (max-width: 991px) {
  #top .movie .point_item {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  #top .movie .point_item {
    width: 90%;
    margin: 0px auto;
  }
}

#top .movie .point_item a {
  padding: 20px;
  width: 100%;
  height: 100%;
  display: block;
}

#top .movie .point_item a img {
  max-width: 200px;
  margin: 0px auto 15px;
  display: block;
}

#top .movie .point_item a h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #1a385d;
}

#top .movie .point_item a h3 span {
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.3rem;
  display: block;
  padding-top: 10px;
}

/*==================================================================
    #top .custom
===================================================================*/
#top .custom {
  padding: 0px 0px 80px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #top .custom {
    padding: 0px 0px 40px;
  }
}

#top .custom_list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

#top .custom_img {
  width: 50%;
}

@media screen and (max-width: 768px) {
  #top .custom_img {
    width: 100%;
    max-width: 520px;
    margin: 0px auto 30px;
  }
}

#top .custom_txt {
  width: 50%;
  padding-left: 50px;
}

@media screen and (max-width: 768px) {
  #top .custom_txt {
    width: 100%;
    padding-left: 0px;
  }
}

/*==================================================================
    #top .blog
===================================================================*/
#top .blog {
  padding: 80px 0px;
  position: relative;
  background: url(../../../img/common/img-dot-skyblue.svg);
}

@media screen and (max-width: 768px) {
  #top .blog {
    padding: 40px 0px;
  }
}

#top .blog_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -10px;
}

@media screen and (max-width: 768px) {
  #top .blog_list {
    margin: 0px -5px;
  }
}

#top .blog_item {
  width: 25%;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  #top .blog_item {
    width: 50%;
    padding: 5px;
  }
}

#top .blog_item a {
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #f7f7f7;
  background-color: #fff;
  border-radius: 5px;
}

#top .blog_item a dl dt {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

#top .blog_item a dl dd {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
  padding: 15px;
}

#top .blog_item a dl dd:last-child {
  font-size: 1rem;
  margin-bottom: 0px;
}

/*==================================================================
    #photo .business
===================================================================*/
#photo .business {
  padding: 0px 0px 100px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #photo .business {
    padding: 40px 0px 40px;
  }
}

/*==================================================================
    #photo .memorial
===================================================================*/
#photo .memorial {
  padding: 0px 0px 100px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #photo .memorial {
    padding: 40px 0px 40px;
  }
}

/*==================================================================
    #photo .periodically
===================================================================*/
#photo .periodically {
  padding: 0px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #photo .periodically {
    padding: 40px 0px 0px;
  }
}

/*==================================================================
    #photo .point
===================================================================*/
#photo .point {
  padding: 80px 0px;
  background: #f7f7f7;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #photo .point {
    padding: 60px 0px 40px;
    margin-bottom: 20px;
  }
}

#photo .point-list {
  display: flex;
  flex-flow: row wrap;
}

@media screen and (max-width: 768px) {
  #photo .point-list {
    flex-flow: column;
  }
}

#photo .point-item {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  background: #fff;
  padding: 30px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #photo .point-item {
    width: 100%;
    max-width: 480px;
    margin: 0px auto 60px;
  }

  #photo .point-item:last-child {
    margin-bottom: 0;
  }
}

#photo .point-item:last-child {
  margin-right: 0px;
}

@media screen and (max-width: 768px) {
  #photo .point-item:last-child {
    margin: 0px auto;
  }
}

#photo .point-item h4 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #1a385d;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #photo .point-item h4 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

#photo .point-item img {
  position: relative;
  margin-top: -100px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #photo .point-item img {
    margin-top: -80px;
    margin-bottom: 15px;
  }
}

#photo .point-item .listup {
  font-weight: bold;
  color: #203aaf;
  margin-bottom: 10px;
  font-size: 1.8rem;
  line-height: 1.5;
}

/*==================================================================
    #photo .price
===================================================================*/
#photo .price {
  padding: 0px 0px 100px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #photo .price {
    padding: 0px 0px 40px;
  }
}

#photo .price-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

#photo .price-img {
  width: 50%;
}

@media screen and (max-width: 768px) {
  #photo .price-img {
    width: 100%;
    max-width: 520px;
    margin: 0px auto 30px;
  }
}

#photo .price-txt {
  width: 50%;
  padding-left: 50px;
}

@media screen and (max-width: 768px) {
  #photo .price-txt {
    width: 100%;
    padding-left: 0px;
  }
}

/*==================================================================
    #top .blog
===================================================================*/
#top .blog {
  padding: 80px 0px;
  position: relative;
  background: url(../../../img/common/img-dot-skyblue.svg);
}

@media screen and (max-width: 768px) {
  #top .blog {
    padding: 40px 0px;
  }
}

#top .blog_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -10px;
}

@media screen and (max-width: 768px) {
  #top .blog_list {
    margin: 0px -5px;
  }
}

#top .blog_item {
  width: 25%;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  #top .blog_item {
    width: 50%;
    padding: 5px;
  }
}

#top .blog_item a {
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #f7f7f7;
  background-color: #fff;
  border-radius: 5px;
}

#top .blog_item a dl dt {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

#top .blog_item a dl dd {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
  padding: 15px;
}

#top .blog_item a dl dd:last-child {
  font-size: 1rem;
  margin-bottom: 0px;
}

/*==================================================================
    #movie .business
===================================================================*/
#movie .business {
  padding: 0px 0px 100px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #movie .business {
    padding: 40px 0px 40px;
  }
}

/*==================================================================
    #movie .memorial
===================================================================*/
#movie .memorial {
  padding: 0px 0px 100px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #movie .memorial {
    padding: 40px 0px 40px;
  }
}

/*==================================================================
    #movie .periodically
===================================================================*/
#movie .periodically {
  padding: 0px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #movie .periodically {
    padding: 40px 0px 0px;
  }
}

/*==================================================================
    #movie .point
===================================================================*/
#movie .point {
  padding: 80px 0px;
  background: #f7f7f7;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  #movie .point {
    padding: 60px 0px;
    margin-bottom: 20px;
  }
}

#movie .point-item {
  width: 100%;
  background: #fff;
  padding: 40px;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

@media screen and (max-width: 991px) {
  #movie .point-item {
    width: 100%;
    max-width: 680px;
    margin: 0px auto 60px;
    flex-flow: column;
  }

  #movie .point-item:last-child {
    margin-bottom: 0;
  }
}

#movie .point-item .txt {
  padding: 0 0 0 40px;
  width: 60%;
}

@media screen and (max-width: 991px) {
  #movie .point-item .txt {
    width: 100%;
    padding: 0;
  }
}

#movie .point-item h4 {
  text-align: left;
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #1a385d;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #movie .point-item h4 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

#movie .point-item img {
  position: relative;
  width: 40%;
}

@media screen and (max-width: 991px) {
  #movie .point-item img {
    width: 100%;
    max-width: 320px;
    margin-top: -80px;
    margin-bottom: 20px;
  }
}

#movie .point-item .listup {
  font-weight: bold;
  color: #203aaf;
  margin-bottom: 10px;
  font-size: 1.8rem;
  line-height: 1.5;
}

/*==================================================================
    #movie .price
===================================================================*/
#movie .price {
  padding: 0px 0px 100px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #movie .price {
    padding: 0px 0px 40px;
  }
}

#movie .price-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

#movie .price-img {
  width: 50%;
}

@media screen and (max-width: 768px) {
  #movie .price-img {
    width: 100%;
    max-width: 520px;
    margin: 0px auto 30px;
  }
}

#movie .price-txt {
  width: 50%;
  padding-left: 50px;
}

@media screen and (max-width: 768px) {
  #movie .price-txt {
    width: 100%;
    padding-left: 0px;
  }
}

/*==================================================================
    #movie .editing
===================================================================*/
#movie .editing {
  padding: 0px 0px 60px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #movie .editing {
    padding: 40px 0px;
  }
}

#movie .editing-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  #movie .editing-list {
    margin-top: 30px;
  }
}

#movie .editing-img {
  width: 45%;
}

@media screen and (max-width: 768px) {
  #movie .editing-img {
    width: 100%;
    max-width: 520px;
    margin: 0px auto 30px;
  }
}

#movie .editing-txt {
  width: 55%;
  padding-left: 50px;
}

@media screen and (max-width: 768px) {
  #movie .editing-txt {
    width: 100%;
    padding-left: 0px;
  }
}

#movie .tbl03 span {
  display: block;
}

/*==================================================================
    #movie .samplemovie
===================================================================*/
#movie .samplemovie {
  padding: 0px;
  position: relative;
}

@media screen and (max-width: 991px) {
  #movie .samplemovie .archive-list {
    flex-flow: column;
  }
}

@media screen and (max-width: 991px) {
  #movie .samplemovie .archive-item {
    width: 100%;
    max-width: 720px;
    margin: 0px auto 30px;
  }
}

/*==================================================================
    #movie .drone
===================================================================*/
#movie .drone {
  padding: 0px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #movie .drone {
    padding: 40px 0px 0px;
  }
}

/*==================================================================
    #studio .single
===================================================================*/
#studio .single {
  padding: 0px 0 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #studio .single {
    padding: 40px 0px;
  }
}

/*==================================================================
    #studio .scene
===================================================================*/
#studio .scene {
  padding: 0px 0px 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #studio .scene {
    padding: 40px 0px;
  }
}

/*==================================================================
    #studio .snsmovie
===================================================================*/
#studio .snsmovie {
  padding: 0px 0px 100px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #studio .snsmovie {
    padding: 40px 0px;
  }
}

/*==================================================================
    #studio .archives
===================================================================*/
#studio .archives {
  padding: 0px 0px 140px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #studio .archives {
    padding: 40px 0px;
  }
}

/*==================================================================
    #studio .contact
===================================================================*/
#studio .contact {
  padding: 100px 0;
  position: relative;
}

@media screen and (max-width: 768px) {
  #studio .contact {
    padding: 40px 0px 80px;
  }
}

/*==================================================================
    #studio .flow
===================================================================*/
#studio .flow {
  padding-bottom: 20px;
}

#studio .flow-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

#studio .flow-item {
  width: calc((100% - 60px) / 4);
  margin-right: 20px;
  position: relative;
  border: 1px solid #f1f1f1;
  padding: 30px 20px;
  border-radius: 5px;
}

@media screen and (max-width: 991px) {
  #studio .flow-item {
    width: calc((100% - 30px) / 2);
    max-width: 350px;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  #studio .flow-item:nth-child(even) {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  #studio .flow-item {
    width: 100%;
    max-width: 380px;
    margin: 0px auto 20px;
  }

  #studio .flow-item:nth-child(even) {
    margin-right: auto;
  }
}

#studio .flow-item:last-child {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  #studio .flow-item:last-child {
    margin-right: auto;
  }
}

#studio .flow-item h4 {
  text-align: center;
  font-size: 1.8rem;
}

#studio .flow-item h4 span {
  font-family: "Roboto", sans-serif;
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 2.8rem;
}

#studio .flow-item dl dt {
  text-align: center;
}

.archive-index {
  padding: 0px 0 100px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .archive-index {
    padding: 0px 0 50px;
  }
}

.archive-list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -15px;
}

@media screen and (max-width: 768px) {
  .archive-list {
    margin: 0px -5px;
  }
}

.archive-list.detail {
  margin: 0 -5px;
}

.archive-item {
  width: 33.3333333333%;
  padding: 15px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .archive-item {
    width: 50%;
    padding: 5px;
    margin-bottom: 10px;
  }
}

.archive-item a {
  display: block;
  height: 100%;
  width: 100%;
  transition: all 200ms ease;
}

.archive-item a:hover img {
  transition: all 200ms ease;
  transform: scale(1.02);
}

.archive-item.detail {
  width: 25%;
  padding: 5px;
  margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
  .archive-item.detail {
    width: 50%;
  }
}

.archive-item.detail.topindex a {
  color: #fff;
}

.archive-item.detail.topindex dl {
  margin-bottom: 30px;
}

.archive-img dt {
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .archive-img dt {
    margin-bottom: 5px;
  }
}

.archive-img dd {
  text-align: center;
  font-size: min(3vw, 1.6rem);
  font-weight: bold;
  line-height: 1.5;
}

.archive-box {
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#flow .flow-index {
  padding: 0px;
  position: relative;
}

#flow .flow-list {
  display: flex;
  flex-flow: column;
}

#flow .flow-item {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
  padding: 30px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

@media screen and (max-width: 991px) {
  #flow .flow-item {
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  #flow .flow-item {
    flex-flow: column-reverse;
  }
}

#flow .flow-item::after {
  content: "";
  width: 1px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 50%;
  bottom: -50px;
}

#flow .flow-item:last-child {
  margin-bottom: 0;
}

#flow .flow-item:last-child::after {
  display: none;
}

#flow .flow-item .img {
  width: 40%;
}

@media screen and (max-width: 768px) {
  #flow .flow-item .img {
    width: 100%;
  }
}

#flow .flow-item .txt {
  width: 60%;
  padding-left: 40px;
}

@media screen and (max-width: 991px) {
  #flow .flow-item .txt {
    padding-left: 30px;
  }
}

@media screen and (max-width: 768px) {
  #flow .flow-item .txt {
    padding: 0px;
    width: 100%;
    margin-bottom: 20px;
  }
}

#flow .flow-item .txt h2 {
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  #flow .flow-item .txt h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

#flow .flow-item .txt h2 span {
  display: inline-block;
  background-color: #1a385d;
  color: #fff;
  border-radius: 3px;
  padding: 0.2em 1em;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  #flow .flow-item .txt h2 span {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 991px) {
  #flow .flow-item .txt p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 991px) {
  #flow .flow-item .txt p {
    font-size: 1.3rem;
  }
}

#flow .flow-item .txt ul {
  padding-top: 15px;
}

#flow .flow-item .txt ul li {
  margin-bottom: 10px;
}

#flow .flow-item .txt ul li span {
  font-weight: bold;
}

#flow .flow-item .txt .btn-box {
  padding-top: 20px;
  max-width: 240px;
  font-size: 1.5rem;
}

#flow .payment-list {
  display: flex;
  flex-flow: row wrap;
}

#flow .payment-item {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
  margin-bottom: 30px;
  padding: 30px;
  background-color: #F8F8F8;
}

#flow .payment-item:nth-child(even) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  #flow .payment-item {
    width: 100%;
    margin-right: 0;
    padding: 30px 20px;
    margin-bottom: 20px;
  }
}

#flow .payment-item ul {
  padding-top: 15px;
}

#flow .payment-item ul li {
  line-height: 1.5;
  margin-bottom: 5px;
}

#flow .delivered-list {
  display: flex;
  flex-flow: row wrap;
}

#flow .delivered-item {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  padding: 30px;
  background-color: #fafaf4;
}

@media screen and (max-width: 768px) {
  #flow .delivered-item {
    width: 100%;
    margin-right: 0;
    padding: 30px 20px;
    margin-bottom: 20px;
  }
}

#flow .delivered-item:last-child {
  margin-right: 0;
}

#flow .delivered-item ul {
  padding-top: 15px;
}

#flow .delivered-item ul li {
  display: inline-block;
  padding: 0.5em;
  background-color: #ddd;
  margin: 0 4px 8px 0;
  line-height: 1;
  font-size: 1.3rem;
}

#flow .delivered-item ul li.request {
  background-color: #add;
}

#flow .delivered-item ul li.card {
  background-color: #bdd;
}

#flow .delivered-item ul li.transfer {
  background-color: #cdd;
}

#flow .delivered-item ul li.delivery {
  background-color: #edd;
}

#company .company-info,
#transaction .transaction-index {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {

  #company .company-info,
  #transaction .transaction-index {
    padding-bottom: 40px;
  }
}

#company .company-info .table,
#transaction .transaction-index .table {
  width: 100%;
}

#company .company-info .table tr,
#transaction .transaction-index .table tr {
  border-top: 1px solid #f1f1f1;
}

#company .company-info .table tr:last-child,
#transaction .transaction-index .table tr:last-child {
  border-bottom: 1px solid #f1f1f1;
}

#company .company-info .table tr th,
#company .company-info .table tr td,
#transaction .transaction-index .table tr th,
#transaction .transaction-index .table tr td {
  padding: 30px 15px;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {

  #company .company-info .table tr th,
  #company .company-info .table tr td,
  #transaction .transaction-index .table tr th,
  #transaction .transaction-index .table tr td {
    width: 100%;
    display: block;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {

  #company .company-info .table tr th,
  #transaction .transaction-index .table tr th {
    background-color: #f5f4f1;
    border-bottom: 1px solid #fff;
    padding: 5px 10px;
  }
}

@media screen and (max-width: 768px) {

  #company .company-info .table tr td,
  #transaction .transaction-index .table tr td {
    padding: 10px 10px 20px 10px;
  }
}

#company .records {
  padding: 0 0 100px;
}

#company .records-list {
  display: flex;
  flex-flow: row wrap;
}

#company .records-item {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
  margin-bottom: 30px;
  padding: 30px;
  background-color: #F8F8F8;
}

#company .records-item:nth-child(even) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  #company .records-item {
    width: 100%;
    margin-right: 0;
    padding: 30px 20px;
    margin-bottom: 20px;
  }
}

#company .records-item ul {
  padding-top: 15px;
}

#company .records-item ul li {
  line-height: 1.5;
  margin-bottom: 5px;
}

#privacy .privacy-info {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  #privacy .privacy-info {
    padding-bottom: 40px;
  }
}

#privacy .privacy-info dl {
  margin-bottom: 40px;
}

#privacy .privacy-info dl dt {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1556a6;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  #privacy .privacy-info dl dt {
    font-size: 1.6rem;
  }
}

#privacy .privacy-info dl dd {
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  #privacy .privacy-info dl dd {
    font-size: 1.3rem;
  }
}

#privacy .privacy-info dl ul {
  padding-left: 1em;
  padding-top: 15px;
}

#privacy .privacy-info dl ul li {
  margin-bottom: 5px;
  line-height: 1.5;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  #privacy .privacy-info dl ul li {
    font-size: 1.3rem;
  }
}

#privacy .privacy-info dl p {
  font-size: 1.4rem;
  margin-bottom: 5px;
  line-height: 1.5;
}

#rules .rules-index {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  #rules .rules-index {
    padding-bottom: 40px;
  }
}

#rules .rules-index h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
}

#rules .rules-index .rules-list {
  margin-bottom: 40px;
}

#rules .rules-index .rules-list li {
  line-height: 1.7;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #rules .rules-index .rules-list li {
    margin-bottom: 20px;
  }
}

#rules .rules-index .rules-list dl {
  margin-top: 15px;
}

#rules .rules-index .rules-list dt {
  margin-bottom: 5px;
  font-weight: bold;
}

#photographers .summary {
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #photographers .summary {
    padding-bottom: 20px;
  }
}

#photographers .summary li {
  margin-bottom: 10px;
  line-height: 1.4;
  padding-left: 30px;
  background-image: url(/asset/img/common/icon-checkmark-single-pink.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 20px;
}

@media screen and (max-width: 768px) {
  #photographers .summary li {
    padding-left: 24px;
    background-size: 16px;
  }
}

#transaction .transaction-index {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  #transaction .transaction-index {
    padding-bottom: 40px;
  }
}

#transaction .transaction-index .table {
  width: 100%;
}

#transaction .transaction-index .table tr {
  border-top: 1px solid #f1f1f1;
}

#transaction .transaction-index .table tr:last-child {
  border-bottom: 1px solid #f1f1f1;
}

#transaction .transaction-index .table tr th,
#transaction .transaction-index .table tr td {
  padding: 30px 15px;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {

  #transaction .transaction-index .table tr th,
  #transaction .transaction-index .table tr td {
    width: 100%;
    display: block;
    font-size: 1.3rem;
  }
}

#transaction .transaction-index .table tr th {
  min-width: 200px;
}

@media screen and (max-width: 768px) {
  #transaction .transaction-index .table tr th {
    background-color: #f5f4f1;
    border-bottom: 1px solid #fff;
    padding: 5px 10px;
  }
}

@media screen and (max-width: 768px) {
  #transaction .transaction-index .table tr td {
    padding: 10px 10px 20px 10px;
  }
}

#transaction .transaction-index .table tr dl {
  margin-bottom: 20px;
}

#transaction .transaction-index .table tr dl dt {
  font-weight: bold;
  margin-bottom: 5px;
}

#transaction .transaction-index .table tr h2 {
  font-weight: bold;
  color: #3b608d;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  #transaction .transaction-index .table tr h2 {
    font-size: 1.5rem;
  }
}

.form .form-group {
  margin-bottom: 20px;
}

.form .form-group label {
  font-weight: bold;
  margin-bottom: 5px !important;
  display: block;
}

.form .form-group .form-control {
  border-radius: 0px !important;
  height: 46px;
  font-size: 16px;
}

.form .form-group .help-block.with-errors {
  font-weight: bold;
}

.required {
  display: inline-block;
  background: #854444;
  font-weight: 700;
  padding: 0.3em;
  font-size: 12px;
  margin-left: 5px;
  color: #fff;
  border-radius: 2px;
}

@media screen and (min-width: 641px) and (max-width: 1920px) {
  .slick-slide:not(.slick-center) {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: 0.2s linear;
  }
}

.slick-track {
  padding-bottom: 20px;
}

.slider_item video {
  width: 100%;
  height: auto;
}