@charset "UTF-8";

/*
Theme Name: Shichifuku 2025 RENEW
Author: 株式会社アド広研
Author URI: https://www.adkohken.co.jp/
Description: 【七福建設様 リニューアル】のテーマです。2025年9月作成。
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: theme-textdomain
*/

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

【Outline】

- css variable
- reset / normalize css
- initialization
- parts
- animation of basic

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

/*-------------------------------------
css variable
---------------------------------------*/

:root {
  /* color */
  --color_theme01: #ff7b00;
  --color_font: #281b1b;
  --color_primary_bg: #ede6e6;
  --color_primary_bg2: #1b2825;
  --color_primary_bg3: #262020;
  --color_primary_bl: #281b1b;
  --color_primary_gr: #eaeaea;
  --color_primary_wh: #ffffff;
  --color_border: #efe6e6;

  /* layout */
  --wideW: 1550px;
  --innerW: 1100px;
  --insideW: 900px;
  --innerTBW: 700px;
  --innerSPW: 330px;

  /* font-style */
  --font_en: helvetica-neue-lt-pro, sans-serif;
  --fw-thin: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;

  /* font-size */
  --fs-xs: clamp(10px, 1vw, 12px);
  --fs-s: clamp(13px, 1.4vw, 15px);
  --fs-m: clamp(16px, 2vw, 20px);
  --fs-l: clamp(20px, 2.4vw, 22px);
  --fs-xl: clamp(26px, 2.8vw, 30px);
  --fs-xxl: clamp(28px, 3.5vw, 36px);

  /* line-height */
  --lh-xs: 1.2;
  --lh-sm: 1.4;
  --lh-md: 1.6;
  --lh-lg: 1.8;
  --lh-xl: 2;

  /* Opacity on hover */
  --alpha: 0.7;
  --transition: 0.3s ease-in-out;
  --transition-slow: 1s ease-in-out;
}

/*-------------------------------------
reset / normalize css
---------------------------------------*/

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
input,
textarea,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}
a {
  color: var(--color_font);
  text-decoration: none;
  background-color: transparent;
}
strong {
  font-weight: 700;
}
em {
  font-style: normal;
  font-weight: 500;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border: 0;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  display: table;
  max-width: 100%;
  white-space: normal;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template,
[hidden] {
  display: none;
}
input,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  outline: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #999;
}
input::placeholder,
textarea::placeholder {
  color: #999;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--color_font);
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace;
  font-size: 1em;
}
abbr[title] {
  border-bottom: 0;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}

/*-------------------------------------
initialization
---------------------------------------*/

html {
  font-size: clamp(10px, 0.7vw, 16px);
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  letter-spacing: 0.05em;
  line-height: 2;
  font-feature-settings: "palt" 1;
  box-sizing: border-box;
  background: var(--color_primary_bg);
  color: var(--color_font);
  font-size: var(--fs-s);
  position: relative;
}
h2 {
  font-size: var(--fs-xl);
}
h3 {
  font-size: var(--fs-l);
}
h4 {
  font-size: var(--fs-m);
}
p {
  font-size: var(--fs-s);
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
a,
dt,
dd {
  font-feature-settings: "palt" 1;
}
img {
  max-width: 100%;
  height: auto;
}
.en {
  font-family: var(--font_en);
  font-weight: var(--fw-medium);
}
.ta {
  color: var(--color_theme01);
}
.sp-bl,
.tablet-bl {
  display: none !important;
}
.d-flex-pc {
  display: flex;
}
.inner {
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  width: calc(100% - 60px);
}
.inside {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.opa {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.opa:hover {
  opacity: 0.75;
}
@media (max-width: 1200px) {
  .tablet-bl {
    display: block;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp-bl {
    display: block !important;
  }
  .d-flex-pc {
    display: block;
  }
  .inner {
    width: 87.5%;
    max-width: 550px !important;
    margin-right: auto;
    margin-left: auto;
    position: relative;
  }
  .inner-w {
    max-width: 550px !important;
  }
  .inside {
    width: calc(100% - 40px);
    max-width: var(--insideSPW);
  }
  p {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media (max-width: 400px) {
  .inner {
    max-width: var(--innerSPW);
  }
}

/*-------------------------------------
parts
---------------------------------------*/

/* header  -------  */

header {
  position: relative;
  z-index: 1002;
}
header .h-logo {
  position: fixed;
  width: 50px;
  top: 25px;
  left: 25px;
}
header .h-logo a {
  display: block;
}
header h1 {
  font-size: 12px;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-top: 23px;
}
header .h-insta {
  width: 34px;
  position: fixed;
  top: 20px;
  right: 370px;
}
header .h-contact {
  width: 160px;
  text-align: center;
  background: var(--color_theme01);
  color: var(--color_primary_wh);
  font-size: 14px;
  position: fixed;
  top: 20px;
  right: 190px;
  line-height: 34px;
  border-radius: 20px;
}
@media (max-width: 1150px) {
  header h1 {
    margin-left: 150px;
    margin-right: inherit;
  }
}
@media (max-width: 940px) {
  header h1 {
    display: none;
  }
}
@media (max-width: 768px) {
  header .h-logo {
    width: 95px;
    top: 20px;
    left: 20px;
  }
  header .h-contact {
    width: 110px;
    font-size: 11px;
    top: 15px;
    right: 20px;
    line-height: 28px;
  }
  header .h-insta {
    width: 28px;
    top: 15px;
    right: 140px;
  }
}

/* global menu  -------  */

.gnav-btn {
  position: fixed;
  top: 18px;
  right: 27px;
  cursor: pointer;
  z-index: 1002;
  width: 136px;
  height: 28px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: difference;
}
.gnav-btn:hover {
  opacity: 0.85;
}
.gnav-btn-img {
  display: block;
  width: 100%;
  height: auto;
  background: url(img/common/pc/gnav-menu.png) center;
  background-size: cover;
}
.is-open .gnav-btn-img {
  background: url(img/common/pc/gnav-close.png) center;
  background-size: cover;
}
.gnav-obj {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s ease, opacity 0.5s ease;
  width: 90vw;
  z-index: 1001;
  transform: translateX(20%);
  color: var(--color_primary_bg);
  height: 110vh;
  max-height: fit-content;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  will-change: transform, opacity;
  background-color: rgba(39, 32, 32, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px 0 0 10px;
}
.gnav-obj.is-active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.gnav-obj.is-leaving {
  opacity: 0;
  visibility: visible;
}

.gnav-obj .g-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.gnav-obj .g-info {
  width: 50%;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  order: 1;
}
.gnav-obj .g-item {
  padding: 150px 14% 100px;
}

.gnav-obj .g-logo {
  max-width: 550px;
  margin-bottom: 40px;
}

.gnav-obj .g-table h2 {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: var(--fw-medium);
  color: var(--color_primary_bg);
}
.gnav-obj .g-table dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gnav-obj .g-table dl + dl {
  margin-top: 35px;
}
.gnav-obj .g-table dt {
  width: 150px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 15px;
  font-weight: var(--fw-bold);
}
.gnav-obj .g-table dd {
  font-size: 15px;
  width: calc(100% - 165px);
}

.gnav-obj .g-tel dd {
  margin-top: -3px;
  display: flex;
  flex-wrap: wrap;
}
.gnav-obj .g-tel dd p {
  font-size: 25px;
  line-height: 1.5;
}
.gnav-obj .g-tel dd p a {
  color: var(--color_primary_bg);
}
.gnav-obj .g-tel dd p + p {
  margin-left: 15px;
}

.gnav-obj .g-group dd {
  padding-bottom: 20px;
}
.gnav-obj .g-group dd p {
  font-size: 17px;
  font-weight: var(--fw-medium);
  margin-bottom: 10px;
}
.gnav-obj .g-group dd ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gnav-obj .g-group dd ul li {
  width: 48%;
}

.gnav-obj .g-sns dd .sns-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}
.gnav-obj .g-sns dd .sns-list li {
  width: 45px;
}
.gnav-obj .g-sns dd .sns-list li + li {
  margin-left: 15px;
}

.gnav-obj .g-menu {
  width: 50%;
  order: 2;
}
.gnav-obj .g-menu .g-menu-ttl {
  font-size: clamp(50px, 6.5vw, 108px);
  line-height: 0.9;
  letter-spacing: -4px;
  margin-bottom: 80px;
  color: rgba(255, 255, 255, 0.3);
  margin-left: -4px;
}
.gnav-obj .g-menu .g-menu-list {
  display: flex;
  flex-wrap: wrap;
}
.gnav-obj .g-menu .g-item ul {
  width: 48%;
}
.gnav-obj .g-menu .g-item ul + ul {
  margin-left: 7%;
  width: 45%;
}
.gnav-obj .g-menu .g-item ul li + li {
  margin-top: 25px;
}
.gnav-obj .g-menu .g-item ul li a {
  color: var(--color_primary_bg);
  font-size: clamp(18px, 1.8vw, 34px);
  transition: var(--transition);
  font-weight: var(--fw-medium);
  line-height: 1;
}
.gnav-obj .g-menu .g-item ul li a:hover {
  color: var(--color_theme01);
}

.gnav-obj .g-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.gnav-obj .g-copy .f-links {
  width: 50%;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 2%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.gnav-obj .g-copy .f-links ul {
  display: flex;
  flex-wrap: wrap;
}
.gnav-obj .g-copy .f-links ul li + li {
  margin-left: 20px;
}
.gnav-obj .g-copy .f-links ul li a {
  color: var(--color_primary_wh);
  transition: var(--transition);
  font-size: 13px;
}
.gnav-obj .g-copy .f-links ul li a:hover {
  color: var(--color_theme01);
}
.gnav-obj .g-copy .copyrights {
  text-align: right;
  width: 50%;
  padding-right: 2%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: var(--fw-regular);
  font-size: 13px;
}

@media (max-width: 1600px) {
  .gnav-obj .g-tel dd {
    display: block;
  }
  .gnav-obj .g-tel dd p + p {
    margin-left: 0;
  }
  .gnav-obj .g-group dd ul {
    display: block;
  }
  .gnav-obj .g-group dd ul li {
    width: 100%;
    max-width: 250px;
  }
  .gnav-obj .g-group dd ul li + li {
    margin-top: 20px;
  }
}

@media (max-width: 1200px) {
  .gnav-obj .g-item {
    padding: 100px 12% 80px;
  }
}

@media (max-width: 1000px) {
  .gnav-obj .g-box {
    display: block;
  }
  .gnav-obj .g-menu .g-item ul {
    width: 40%;
  }
  .gnav-obj .g-info .g-item {
    padding-top: 0;
  }
  .gnav-obj .g-info {
    width: 100%;
    border-right: none;
  }
  .gnav-obj .g-logo {
    max-width: 350px;
    margin-bottom: 35px;
  }
  .gnav-obj .g-table dl + dl {
    margin-top: 20px;
  }
  .gnav-obj .g-menu {
    width: 100%;
  }
  .gnav-obj .g-menu .g-menu-ttl {
    letter-spacing: -2px;
  }
  .gnav-obj .g-copy .f-links {
    width: 40%;
    padding-left: 3%;
  }
  .gnav-obj .g-copy .copyrights {
    width: 60%;
    padding-right: 3%;
  }
}

@media (max-width: 768px) {
  .gna-wh-bg {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 122px;
    height: 32px;
    background: var(--color_primary_wh);
    z-index: 1002;
  }
  .gnav-btn {
    width: 100px;
    height: 45px;
    top: inherit;
    right: 30px;
    bottom: 29px;
    mix-blend-mode: inherit;
  }
  .gnav-btn:hover {
    opacity: 1;
  }
  .gnav-btn-img,
  .is-open .gnav-btn-img {
    background: none;
  }
  .gnav-obj {
    width: 95vw;
  }
  .gnav-obj .g-menu .g-menu-ttl {
    font-size: 50px;
    margin-bottom: 40px;
  }
  .gnav-obj .g-menu .g-item {
    padding: 70px 15% 50px;
  }
  .gnav-obj .g-menu .g-menu-list {
    display: block;
  }
  .gnav-obj .g-info .g-item {
    padding-left: 15%;
    padding-right: 7%;
  }
  .gnav-obj .g-menu .g-item ul {
    width: 100%;
  }
  .gnav-obj .g-menu .g-item ul + ul {
    margin-top: 16px;
    margin-left: 0;
    width: 100%;
  }
  .gnav-obj .g-menu .g-item ul li + li {
    margin-top: 15px;
  }
  .gnav-obj .g-menu .g-item ul li a {
    font-size: 20px;
    font-weight: var(--fw-bold);
  }
  .gnav-obj .g-info {
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .gnav-obj .g-logo {
    max-width: 250px;
  }
  .gnav-obj .g-table h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .gnav-obj .g-table dl + dl {
    margin-top: 25px;
  }
  .gnav-obj .g-table dt {
    width: 75px;
    font-size: 10px;
    letter-spacing: 0;
  }
  .gnav-obj .g-table dd {
    font-size: 13px;
    width: calc(100% - 80px);
  }
  .gnav-obj .g-tel dd p {
    font-size: 26px;
    text-decoration: underline;
  }
  .gnav-obj .g-group dd p {
    font-size: 15px;
  }
  .gnav-obj .g-sns dd .sns-list li {
    width: 30px;
  }
  .gnav-obj .g-sns dd .sns-list li + li {
    margin-left: 12px;
  }
  .gnav-obj .g-copy {
    display: block;
  }
  .gnav-obj .g-copy .f-links {
    width: 100%;
    padding-left: 20px;
    padding-top: 15px;
    padding-bottom: 0;
  }
  .gnav-obj .g-copy .f-links ul li a {
    font-size: 10px;
  }
  .gnav-obj .g-copy .copyrights {
    width: 100%;
    padding-right: 0;
    text-align: left;
    padding-left: 20px;
    font-size: 10px;
    padding-top: 5px;
    padding-bottom: 60px;
  }
}

/* main  -------  */

main {
  overflow: clip;
  width: 100%;
  position: relative;
}
section {
  position: relative;
}
.bg-wh {
  background: var(--color_primary_wh);
}
.bg-green {
  background: var(--color_primary_bg2);
  color: var(--color_primary_bg);
}
.r-inside {
  width: 90%;
  margin-left: auto;
}
.dummy-txt {
  color: red !important;
}

.sec {
  border-top: 1px solid var(--color_primary_bl);
  padding-top: 35px;
}
.sec-ttl {
  font-size: 20px;
  color: var(--color_theme01);
  font-weight: var(--fw-bold);
}
.sec-ttl .en {
  font-size: clamp(70px, 8vw, 100px);
  color: var(--color_font);
  display: block;
  line-height: 1;
  margin-left: -2px;
}
.bg-green .sec-ttl,
.bg-green .sec-ttl .en {
  color: var(--color_primary_wh);
}
.sec-tips h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: 25px;
  line-height: 1.3;
}

.cont-ttl {
  font-size: clamp(100px, 11vw, 200px);
  margin-bottom: 130px;
  line-height: 0.9;
  letter-spacing: -5px;
  color: var(--color_primary_wh);
  max-width: fit-content;
  margin-left: 30px;
}
.bg-green .cont-ttl {
  color: var(--color_primary_bg);
}

.side-by-side {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 110px;
}
.side-by-side .sec-ttl {
  width: calc(100% - 990px);
}
.side-by-side .sec-tips {
  width: 930px;
  margin-top: 20px;
}
.side-by-side .sec-tips .txt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.side-by-side .sec-tips .txt p {
  width: calc(100% - 380px);
  max-width: 480px;
}
.side-by-side .more {
  margin-right: 50px;
}
@media (max-width: 1500px) {
  .side-by-side .sec-ttl {
    width: 50%;
  }
  .side-by-side .sec-tips {
    width: 550px;
  }
  .side-by-side .sec-tips .txt {
    display: block;
  }
  .side-by-side .sec-tips .txt p {
    width: 100%;
  }
  .side-by-side .more {
    margin-top: 40px;
    margin-right: 0;
  }
}
@media (max-width: 1000px) {
  .side-by-side {
    display: block;
  }
  .side-by-side .sec-ttl {
    margin-bottom: 35px;
  }
}

.u-line {
  position: relative;
}
.u-line:after {
  content: "";
  display: block;
  width: 100%;
  height: 9px;
  position: absolute;
  bottom: 10px;
  left: 0;
  background: url(img/common/pc/u-line.png) center no-repeat;
  background-size: 100%;
}
.u-line-wh {
  position: relative;
}
.u-line-wh:after {
  content: "";
  display: block;
  width: 100%;
  height: 9px;
  position: absolute;
  bottom: 10px;
  left: 0;
  background: url(img/common/pc/u-line-wh.png) center no-repeat;
  background-size: 100%;
}

.more {
  position: relative;
  background: var(--color_primary_wh);
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--color_theme01);
  height: 60px;
  line-height: 60px;
  display: block;
  width: 230px;
  text-align: center;
  transition: var(--transition);
  border-radius: 50px;
}
.more::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  background: var(--color_primary_wh);
  border-radius: 50%;
  top: 0;
  right: -60px;
  transition: var(--transition);
}
.more .arrow {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  width: 17px;
  height: 3px;
  margin: auto 0;
  right: -38px;
  background-color: var(--color_theme01);
  z-index: 2;
  transition: var(--transition);
}
.more .arrow::before,
.more .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: -1px;
  width: 12px;
  height: 3px;
  background-color: var(--color_theme01);
  transform-origin: calc(100% - 1.5px) 50%;
}
.more .arrow::before {
  transform: rotate(45deg);
}
.more .arrow::after {
  transform: rotate(-45deg);
}
.more:hover {
  background: var(--color_theme01);
  color: var(--color_primary_wh);
}
.more:hover::after {
  right: -75px;
}
.more:hover .arrow {
  right: -57px;
}

.more-simple {
  position: relative;
  font-size: 20px;
  font-weight: var(--fw-medium);
  color: var(--color_primary_bl);
  text-decoration: underline;
  transition: var(--transition);
  width: fit-content;
  display: block;
  padding-right: 40px;
}
.more-simple .arrow {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  width: 17px;
  height: 3px;
  margin: auto 0;
  right: 0;
  background-color: var(--color_theme01);
  z-index: 2;
  transition: var(--transition);
}
.more-simple .arrow::before,
.more-simple .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: -1px;
  width: 12px;
  height: 3px;
  background-color: var(--color_theme01);
  transform-origin: calc(100% - 1.5px) 50%;
}
.more-simple .arrow::before {
  transform: rotate(45deg);
}
.more-simple .arrow::after {
  transform: rotate(-45deg);
}
.more-simple:hover {
  color: var(--color_theme01);
}

.more-btn {
  width: 43px;
  height: 43px;
  background: var(--color_primary_wh);
  border-radius: 50%;
  position: relative;
}
.more-btn .arrow {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 17px;
  height: 3px;
  margin: auto;
  background-color: var(--color_theme01);
  z-index: 2;
  transition: var(--transition);
}
.more-btn .arrow::before,
.more-btn .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: -1px;
  width: 12px;
  height: 3px;
  background-color: var(--color_theme01);
  transform-origin: calc(100% - 1.5px) 50%;
}
.more-btn .arrow::before {
  transform: rotate(45deg);
}
.more-btn .arrow::after {
  transform: rotate(-45deg);
}

.deco-line {
  position: relative;
}
.deco-line::before {
  content: "";
  display: block;
  width: 741px;
  height: 553px;
  position: absolute;
  top: -10vw;
  left: -10vw;
  background: url(img/common/pc/deco-hand-write.png) center;
  background-size: cover;
}
.deco-line::after {
  content: "";
  display: block;
  width: 741px;
  height: 553px;
  position: absolute;
  right: -10vw;
  bottom: -10vw;
  background: url(img/common/pc/deco-hand-write.png) center;
  background-size: cover;
  transform: rotate(180deg);
}

.in-page-link {
  position: fixed;
  left: 20px;
  bottom: 200px;
  transition: var(--transition);
  z-index: 900;
  opacity: 0;
}
.in-page-link.scroll {
  opacity: 1;
}
.in-page-link ul li + li {
  margin-top: 15px;
}
.in-page-link ul li a {
  display: block;
  line-height: 1;
  font-size: 16px;
  color: var(--color_theme01);
  background: var(--color_primary_wh);
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: var(--fw-bold);
  width: fit-content;
  transition: var(--transition);
}
.in-page-link ul li a:hover {
  background: var(--color_theme01);
  color: var(--color_primary_wh);
}
.in-page-link ul li a.is-active {
  background: var(--color_theme01);
  color: var(--color_primary_wh);
}

@media (max-width: 768px) {
  .sec-ttl {
    font-size: 18px;
  }
  .sec-ttl .en {
    font-size: 60px;
    line-height: 0.8;
  }
  .cont-ttl {
    font-size: 60px;
    margin-bottom: 60px;
    letter-spacing: 0px;
  }
  .u-line-wh:after {
    bottom: -12px;
  }
  .sec-tips h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .side-by-side {
    margin-bottom: 50px;
  }
  .side-by-side .sec-ttl {
    margin-bottom: 40px;
  }
  .side-by-side .sec-tips {
    width: 100%;
  }
  .side-by-side .sec-tips .txt p {
    font-size: 15px;
  }
  .more {
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    width: 155px;
  }
  .more::after {
    width: 40px;
    height: 40px;
    right: -40px;
  }
  .more .arrow {
    width: 12px;
    height: 2px;
    right: -27px;
  }
  .more .arrow::before,
  .more .arrow::after {
    top: calc(50% - 1px);
    right: -1px;
    width: 9px;
    height: 2px;
    transform-origin: calc(100% - 1px) 50%;
  }
  .more:hover::after {
    right: -50px;
  }
  .more:hover .arrow {
    right: -37px;
  }
  .more-simple {
    font-size: 15px;
    padding-right: 25px;
  }
  .more-simple .arrow {
    width: 12px;
    height: 2px;
  }
  .more-simple .arrow::before,
  .more-simple .arrow::after {
    top: calc(50% - 1px);
    right: -1px;
    width: 9px;
    height: 2px;
    transform-origin: calc(100% - 1px) 50%;
  }
  .more-btn .arrow {
    width: 12px;
    height: 2px;
  }
  .more-btn .arrow::before,
  .more-btn .arrow::after {
    top: calc(50% - 1px);
    right: -1px;
    width: 9px;
    height: 2px;
    transform-origin: calc(100% - 1px) 50%;
  }
  .deco-line::before {
    width: 350px;
    height: 260px;
    top: -4%;
  }
  .deco-line::after {
    width: 350px;
    height: 260px;
    bottom: -4%;
  }
  .u-line:after {
    bottom: -3px;
  }
  .in-page-link ul li + li {
    margin-top: 5px;
  }
  .in-page-link ul li a {
    font-size: 12px;
    letter-spacing: 0px;
  }
}

/* lower  -------  */

.lower-mv {
  padding-top: 25px;
}
.lower-mv .l-mv-txt {
  overflow: hidden;
  height: clamp(180px, 19vw, 350px);
  margin-bottom: 120px;
  position: relative;
  z-index: 2;
}
.lower-mv .l-mv-txt .slide-vert {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}
.lower-mv .l-mv-txt.is-active .slide-vert {
  opacity: 1;
  transform: translateY(0);
}
.lower-mv.irregular .l-mv-txt {
  height: clamp(240px, 26vw, 420px);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.l-mv-txt .slide-left li {
  color: var(--color_primary_wh);
  font-weight: var(--fw-medium);
  font-size: clamp(220px, 24vw, 440px);
  line-height: 0.8;
  letter-spacing: -0.05em;
}
.lower-mv.irregular .l-mv-txt .slide-left li {
  height: clamp(240px, 26vw, 420px);
  font-size: clamp(220px, 24vw, 430px);
}
.l-mv-txt .slide-left li + li {
  margin-left: 0.3em;
}
.lower-ttl {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 130px;
  position: relative;
  z-index: 2;
}
.lower-ttl p {
  font-size: 18px;
  width: 140px;
  padding-top: 6px;
}
.lower-ttl h2 {
  width: calc(100% - 140px);
  font-weight: var(--fw-bold);
  font-size: clamp(40px, 8vw, 60px);
  line-height: 1.3;
}

.lower-tips {
  margin-bottom: 210px;
  margin-top: -60px;
}
.lower-tips p {
  max-width: 1000px;
  margin-left: auto;
  font-size: var(--fs-m);
  line-height: 1.8;
}

@media (max-width: 940px) {
  .lower-mv {
    padding-top: 65px;
  }
}
@media (max-width: 768px) {
  .lower-mv.irregular .l-mv-txt {
    height: clamp(80px, 26vw, 420px);
    margin-bottom: 40px;
  }
  .lower-mv.irregular .l-mv-txt .slide-left li {
    font-size: clamp(80px, 24vw, 430px);
  }
  .lower-ttl {
    padding-bottom: 55px;
  }
  .lower-ttl p {
    font-size: 10px;
    width: 90px;
  }
  .lower-ttl h2 {
    width: calc(100% - 90px);
    letter-spacing: 1px;
  }
  .lower-tips {
    margin-bottom: 75px;
    margin-top: 0;
  }
  .lower-tips p {
    font-size: 15px;
    line-height: 2;
  }
}

/* footer  -------  */

.foot-contact {
  margin-bottom: 30px;
  border-radius: 10px;
  background: url(img/common/pc/foot-contact.jpg) center;
  background-size: cover;
  height: 560px;
  position: relative;
  display: block;
}
.foot-contact:hover .more {
  background: var(--color_theme01);
  color: var(--color_primary_wh);
}
.foot-contact:hover .more::after {
  right: -75px;
}
.foot-contact:hover .more .arrow {
  right: -57px;
}
.foot-contact .box .sec-ttl {
  color: var(--color_primary_wh);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 120px;
  width: fit-content;
  height: fit-content;
  margin-top: auto;
  margin-bottom: auto;
}
.foot-contact .box .sec-ttl .en {
  color: var(--color_primary_wh);
}
.foot-contact .box p {
  font-size: 36px;
  line-height: 1.6;
  font-weight: var(--fw-bold);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 180px;
  width: fit-content;
  height: fit-content;
  margin-top: auto;
  margin-bottom: auto;
}
.foot-contact .more {
  position: absolute;
  right: 100px;
  bottom: 40px;
}
@media (max-width: 1000px) {
  .foot-contact .box .sec-ttl {
    left: 70px;
  }
  .foot-contact .box p {
    font-size: 30px;
    right: 105px;
  }
}

footer {
  position: relative;
  background: var(--color_primary_bg3);
  padding-top: 260px;
  padding-bottom: 35px;
  color: var(--color_primary_wh);
  z-index: 901;
}
footer .f-content {
  width: 90%;
  max-width: 1740px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 200px;
}

footer .f-logo {
  max-width: 450px;
  margin-bottom: 90px;
}

footer .f-table dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .f-table dl + dl {
  margin-top: 50px;
}
footer .f-table dt {
  width: 150px;
  color: var(--color_theme01);
  font-size: 15px;
  font-weight: var(--fw-bold);
}
footer .f-table dd {
  font-size: 15px;
  width: calc(100% - 165px);
}

footer .f-info {
  width: 34%;
  max-width: 510px;
}
footer .f-info .f-table {
  padding-left: 18.5%;
}
footer .f-info .f-table h2 {
  font-size: 25px;
  margin-bottom: 30px;
}
footer .f-info .f-table .f-tel dd {
  font-size: 25px;
  line-height: 1.5;
  margin-top: -3px;
}
footer .f-info .f-table .f-tel dd a {
  color: var(--color_primary_wh);
}

footer .f-menu {
  width: 27%;
  max-width: 470px;
  margin-left: 6%;
}
footer .f-menu .f-table dd .sns-list {
  display: flex;
  flex-wrap: wrap;
}
footer .f-menu .f-table dd .sns-list li {
  width: 27px;
}
footer .f-menu .f-table dd .sns-list li + li {
  margin-left: 15px;
}
footer .f-menu .f-table dd ul li a {
  display: block;
  color: var(--color_primary_wh);
  font-weight: var(--fw-medium);
  transition: var(--transition);
  width: fit-content;
}
footer .f-menu .f-table dd ul li a:hover {
  color: var(--color_theme01);
}
footer .f-menu .f-table dd .f-contact {
  color: var(--color_primary_wh);
  background: var(--color_theme01);
  font-size: 17px;
  border-radius: 25px;
  width: 100%;
  max-width: 290px;
  line-height: 50px;
  margin-top: 30px;
  display: block;
  text-align: center;
  font-weight: var(--fw-medium);
}

footer .f-group {
  width: 32%;
  max-width: 570px;
}
footer .f-group dd p {
  font-size: 17px;
  font-weight: var(--fw-medium);
  margin-bottom: 30px;
}
footer .f-group dd ul {
}
footer .f-group dd ul li {
  max-width: 290px;
}
footer .f-group dd ul li + li {
  margin-top: 30px;
}
footer .f-group dd ul li a {
  display: block;
}

footer .f-copy {
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .f-copy .f-links {
  width: 50%;
}
footer .f-copy .f-links ul {
  display: flex;
}
footer .f-copy .f-links ul li + li {
  margin-left: 30px;
}
footer .f-copy .f-links ul li a {
  font-size: 14px;
  color: var(--color_primary_wh);
}
footer .f-copy .copyrights {
  width: 50%;
  text-align: right;
  font-weight: var(--fw-regular);
}

@media (max-width: 1600px) {
  footer {
    padding-top: 180px;
  }
  footer .f-content {
    margin-bottom: 100px;
    justify-content: space-between;
  }
  footer .f-info {
    width: 48%;
    max-width: inherit;
  }
  footer .f-info .f-table {
    padding-left: 0;
  }
  footer .f-menu {
    width: 48%;
    max-width: inherit;
    margin-left: 0;
  }
  footer .f-menu .f-table {
    margin-top: 245px;
  }
  footer .f-group {
    width: 48%;
    max-width: inherit;
    margin-top: -113px;
  }
}
@media (max-width: 900px) {
  footer {
    padding-top: 150px;
  }
  footer .f-content {
    display: block;
    max-width: 600px;
  }
  footer .f-logo {
    margin-bottom: 60px;
  }
  footer .f-info {
    width: 100%;
  }
  footer .f-menu {
    width: 100%;
  }
  footer .f-menu .f-table {
    margin-top: 50px;
  }
  footer .f-group {
    width: 100%;
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .foot-contact {
    height: 440px;
    background: url(img/common/sp/foot-contact.png) center;
    background-size: cover;
    margin-bottom: 130px;
  }
  .foot-contact .box .sec-ttl {
    left: 30px;
    bottom: inherit;
    top: 30px;
  }
  .foot-contact .box p {
    font-size: 20px;
    line-height: 1.4;
    right: inherit;
    left: 30px;
    top: 30px;
  }
  .foot-contact .more {
    right: 50px;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    bottom: 40px;
    width: 190px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
  }
  .foot-contact .more::after {
    width: 50px;
    height: 50px;
    right: -50px;
  }
  .more .arrow {
    right: -26px;
  }

  footer {
    padding-top: 115px;
  }
  footer .f-logo {
    margin-bottom: 80px;
    max-width: 290px;
  }
  footer .f-info .f-table h2 {
    margin-bottom: 35px;
  }
  footer .f-table dl + dl {
    margin-top: 30px;
  }
  footer .f-table dt {
    width: 100px;
    font-size: 10px;
  }
  footer .f-table dd {
    font-size: 13px;
    width: calc(100% - 115px);
  }
  footer .f-menu .f-table {
    margin-top: 30px;
  }
  footer .f-menu .f-table dd ul li + li {
    margin-top: 4px;
  }
  footer .f-menu .f-table dd ul li a {
    font-size: 15px;
  }
  footer .f-menu .f-table dd .sns-list li + li {
    margin-left: 13px;
    margin-top: 0;
  }
  footer .f-menu .f-table dd .f-contact {
    font-size: 16px;
    max-width: 235px;
    line-height: 45px;
    margin-top: 25px;
  }
  footer .f-group dd p {
    margin-bottom: 20px;
  }
  footer .f-group dd ul li + li {
    margin-top: 20px;
  }
  footer .f-copy {
    width: 90%;
    display: block;
  }
  footer .f-copy .f-links {
    width: 100%;
  }
  footer .f-copy .f-links ul li + li {
    margin-left: 20px;
  }
  footer .f-copy .f-links ul li a {
    font-size: 11px;
  }
  footer .f-copy .copyrights {
    width: 100%;
    text-align: left;
    font-size: 11px;
  }
}

/*-------------------------------------
animation of basic
---------------------------------------*/

/* fade in */

.sfi {
  visibility: hidden;
}

@-webkit-keyframes simple_fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes simple_fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.simple_fade_in {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: simple_fade_in;
  animation-name: simple_fade_in;
  visibility: visible !important;
  opacity: 0;
}

/* fade in up */

.sfiu {
  visibility: hidden;
}

@-webkit-keyframes simple_fade_in_up {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes simple_fade_in_up {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.simple_fade_in_up {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: simple_fade_in_up;
  animation-name: simple_fade_in_up;
  visibility: visible !important;
  opacity: 0;
}

/*-------------------------------------
zoom-out-blur-slider
---------------------------------------*/

/*vegas.min.css*/
.vegas-overlay,
.vegas-slide,
.vegas-slide-inner,
.vegas-timer,
.vegas-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  border: none;
  padding: 0;
  margin: 0;
}
.vegas-overlay {
  opacity: 0.5;
  background: url(overlays/02.png) center center;
}
.vegas-timer {
  top: auto;
  bottom: 0;
  height: 2px;
}
.vegas-timer-progress {
  width: 0;
  height: 100%;
  background: #fff;
  transition: width ease-out;
}
.vegas-timer-running .vegas-timer-progress {
  width: 100%;
}
.vegas-slide,
.vegas-slide-inner {
  margin: 0;
  padding: 0;
  background: center center no-repeat;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform, opacity;
}
body .vegas-container {
  overflow: hidden !important;
  position: relative;
}
.vegas-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}
body.vegas-container {
  overflow: auto;
  position: static;
  z-index: -2;
}
body.vegas-container > .vegas-overlay,
body.vegas-container > .vegas-slide,
body.vegas-container > .vegas-timer {
  position: fixed;
  z-index: -1;
}
.vegas-transition-blur,
.vegas-transition-blur2 {
  opacity: 0;
  -webkit-filter: blur(32px) brightness(1.01);
  filter: blur(32px) brightness(1.01);
}
.vegas-transition-blur-in,
.vegas-transition-blur2-in {
  opacity: 1;
  -webkit-filter: blur(0) brightness(1.01);
  filter: blur(0) brightness(1.01);
}
.vegas-transition-blur2-out {
  opacity: 0;
}
.vegas-transition-burn,
.vegas-transition-burn2 {
  opacity: 0;
  -webkit-filter: contrast(1000%) saturate(1000%);
  filter: contrast(1000%) saturate(1000%);
}
.vegas-transition-burn-in,
.vegas-transition-burn2-in {
  opacity: 1;
  -webkit-filter: contrast(100%) saturate(100%);
  filter: contrast(100%) saturate(100%);
}
.vegas-transition-burn2-out {
  opacity: 0;
  -webkit-filter: contrast(1000%) saturate(1000%);
  filter: contrast(1000%) saturate(1000%);
}
.vegas-transition-fade,
.vegas-transition-fade2 {
  opacity: 0;
}
.vegas-transition-fade-in,
.vegas-transition-fade2-in {
  opacity: 1;
}
.vegas-transition-fade2-out {
  opacity: 0;
}
.vegas-transition-flash,
.vegas-transition-flash2 {
  opacity: 0;
  -webkit-filter: brightness(25);
  filter: brightness(25);
}
.vegas-transition-flash-in,
.vegas-transition-flash2-in {
  opacity: 1;
  -webkit-filter: brightness(1);
  filter: brightness(1);
}
.vegas-transition-flash2-out {
  opacity: 0;
  -webkit-filter: brightness(25);
  filter: brightness(25);
}
.vegas-transition-negative,
.vegas-transition-negative2 {
  opacity: 0;
  -webkit-filter: invert(100%);
  filter: invert(100%);
}
.vegas-transition-negative-in,
.vegas-transition-negative2-in {
  opacity: 1;
  -webkit-filter: invert(0);
  filter: invert(0);
}
.vegas-transition-negative2-out {
  opacity: 0;
  -webkit-filter: invert(100%);
  filter: invert(100%);
}
.vegas-transition-slideDown,
.vegas-transition-slideDown2 {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.vegas-transition-slideDown-in,
.vegas-transition-slideDown2-in {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.vegas-transition-slideDown2-out {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.vegas-transition-slideLeft,
.vegas-transition-slideLeft2 {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.vegas-transition-slideLeft-in,
.vegas-transition-slideLeft2-in {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.vegas-transition-slideLeft2-out,
.vegas-transition-slideRight,
.vegas-transition-slideRight2 {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.vegas-transition-slideRight-in,
.vegas-transition-slideRight2-in {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.vegas-transition-slideRight2-out {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.vegas-transition-slideUp,
.vegas-transition-slideUp2 {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.vegas-transition-slideUp-in,
.vegas-transition-slideUp2-in {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.vegas-transition-slideUp2-out {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.vegas-transition-swirlLeft,
.vegas-transition-swirlLeft2 {
  -webkit-transform: scale(2) rotate(35deg);
  transform: scale(2) rotate(35deg);
  opacity: 0;
}
.vegas-transition-swirlLeft-in,
.vegas-transition-swirlLeft2-in {
  -webkit-transform: scale(1) rotate(0);
  transform: scale(1) rotate(0);
  opacity: 1;
}
.vegas-transition-swirlLeft2-out,
.vegas-transition-swirlRight,
.vegas-transition-swirlRight2 {
  -webkit-transform: scale(2) rotate(-35deg);
  transform: scale(2) rotate(-35deg);
  opacity: 0;
}
.vegas-transition-swirlRight-in,
.vegas-transition-swirlRight2-in {
  -webkit-transform: scale(1) rotate(0);
  transform: scale(1) rotate(0);
  opacity: 1;
}
.vegas-transition-swirlRight2-out {
  -webkit-transform: scale(2) rotate(35deg);
  transform: scale(2) rotate(35deg);
  opacity: 0;
}
.vegas-transition-zoomIn,
.vegas-transition-zoomIn2 {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}
.vegas-transition-zoomIn-in,
.vegas-transition-zoomIn2-in {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.vegas-transition-zoomIn2-out,
.vegas-transition-zoomOut,
.vegas-transition-zoomOut2 {
  -webkit-transform: scale(2);
  transform: scale(2);
  opacity: 0;
}
.vegas-transition-zoomOut-in,
.vegas-transition-zoomOut2-in {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.vegas-transition-zoomOut2-out {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}
.vegas-animation-kenburns {
  -webkit-animation: kenburns ease-out;
  animation: kenburns ease-out;
}
@-webkit-keyframes kenburns {
  0% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes kenburns {
  0% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.vegas-animation-kenburnsDownLeft {
  -webkit-animation: kenburnsDownLeft ease-out;
  animation: kenburnsDownLeft ease-out;
}
@-webkit-keyframes kenburnsDownLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, -10%);
    transform: scale(1.5) translate(10%, -10%);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}
@keyframes kenburnsDownLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, -10%);
    transform: scale(1.5) translate(10%, -10%);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}
.vegas-animation-kenburnsDownRight {
  -webkit-animation: kenburnsDownRight ease-out;
  animation: kenburnsDownRight ease-out;
}
@-webkit-keyframes kenburnsDownRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, -10%);
    transform: scale(1.5) translate(-10%, -10%);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}
@keyframes kenburnsDownRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, -10%);
    transform: scale(1.5) translate(-10%, -10%);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}
.vegas-animation-kenburnsDown {
  -webkit-animation: kenburnsDown ease-out;
  animation: kenburnsDown ease-out;
}
@-webkit-keyframes kenburnsDown {
  0% {
    -webkit-transform: scale(1.5) translate(0, -10%);
    transform: scale(1.5) translate(0, -10%);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}
@keyframes kenburnsDown {
  0% {
    -webkit-transform: scale(1.5) translate(0, -10%);
    transform: scale(1.5) translate(0, -10%);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}
.vegas-animation-kenburnsLeft {
  -webkit-animation: kenburnsLeft ease-out;
  animation: kenburnsLeft ease-out;
}
@-webkit-keyframes kenburnsLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, 0);
    transform: scale(1.5) translate(10%, 0);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}
@keyframes kenburnsLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, 0);
    transform: scale(1.5) translate(10%, 0);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}
.vegas-animation-kenburnsRight {
  -webkit-animation: kenburnsRight ease-out;
  animation: kenburnsRight ease-out;
}
@-webkit-keyframes kenburnsRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, 0);
    transform: scale(1.5) translate(-10%, 0);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}
@keyframes kenburnsRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, 0);
    transform: scale(1.5) translate(-10%, 0);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}
.vegas-animation-kenburnsUpLeft {
  -webkit-animation: kenburnsUpLeft ease-out;
  animation: kenburnsUpLeft ease-out;
}
@-webkit-keyframes kenburnsUpLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, 10%);
    transform: scale(1.5) translate(10%, 10%);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}
@keyframes kenburnsUpLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, 10%);
    transform: scale(1.5) translate(10%, 10%);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}
.vegas-animation-kenburnsUpRight {
  -webkit-animation: kenburnsUpRight ease-out;
  animation: kenburnsUpRight ease-out;
}
@-webkit-keyframes kenburnsUpRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, 10%);
    transform: scale(1.5) translate(-10%, 10%);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}
@keyframes kenburnsUpRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, 10%);
    transform: scale(1.5) translate(-10%, 10%);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}
.vegas-animation-kenburnsUp {
  -webkit-animation: kenburnsUp ease-out;
  animation: kenburnsUp ease-out;
}
@-webkit-keyframes kenburnsUp {
  0% {
    -webkit-transform: scale(1.5) translate(0, 10%);
    transform: scale(1.5) translate(0, 10%);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}
@keyframes kenburnsUp {
  0% {
    -webkit-transform: scale(1.5) translate(0, 10%);
    transform: scale(1.5) translate(0, 10%);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

/* custom css */

body .vegas-container {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  margin: auto;
}
.zoom-out-blur-slider {
  width: 100%;
  height: 100% !important;
}
/* .vegas-overlay {
  background: url(../img/home/pc/zoom-out-blur-slider-overlay.png) center;
  background-size: auto;
} */
/*.vegas-timer {
  bottom: 10%;
  height: 2px;
  width: 200px;
  background-color: var(--color_primary_bl);
  right: 10%;
  left: inherit;
}*/

.custom-timer-wrap {
  position: absolute;
  bottom: 10%;
  right: 100px;
  width: 250px;
  z-index: 10;
  opacity: 0;
}
.custom-timer {
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: var(--color_primary_bl);
  width: 50px;
}
.custom-timer:before {
  content: "";
  display: block;
  height: 2px;
  background-color: var(--color_primary_wh);
  transition: width 10s ease-out;
  width: 0;
}
.custom-timer.active:before {
  width: 100%;
}
.custom-timer.timer-bar1 {
  top: 0;
}
.custom-timer.timer-bar2 {
  left: 80px;
  top: 0;
}
.custom-timer.timer-bar3 {
  left: 160px;
  top: 0;
}
.custom-timer.filled:before {
  width: 100%;
  transition: width 10s ease-out;
}
.custom-timer.hidden:before {
  display: none;
}

@media (max-width: 768px) {
  .custom-timer-wrap {
    width: 145px;
    bottom: 15%;
    right: 40px;
  }
  .custom-timer {
    width: 35px;
  }
  .custom-timer.timer-bar2 {
    left: 55px;
  }
  .custom-timer.timer-bar3 {
    left: 110px;
  }
}
