@charset "UTF-8";
/**scss共通***/
img {
  /* width: 100%; */
}

img.climg {
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (max-width: 800px) {
  img.climg {
    image-rendering: auto;
  }
}

/* .test {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  -webkit-transition: all 0.4s ease-out 0.01s;
  transition: all 0.4s ease-out 0s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: scale(1);
  transform: rotate(-45deg);
  border-radius: 50%;
  animation: Flash1 1s infinite;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(90deg, rgb(0, 72, 110) 0%, rgb(0, 120, 155) 100%);
} */

@keyframes Flash1 {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.test {
  content: "\f105";
  font-family: FontAwesome;
}

.shadow {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4), 1px 3px 3px rgba(0, 0, 0, 0.4),
    1px 2px 3px rgba(0, 0, 0, 0.4);
}

/**scss共通ここまで***/
.onmouse {
  -webkit-transition: all 0.4s ease-out 0.01s;
  transition: all 0.4s ease-out 0.01s;
}

.onmouse:hover {
  opacity: 0.6;
}
@media screen and (max-width: 800px) {
  .onmouse:hover {
    opacity: 1;
  }
}

html {
  overflow-y: scroll;
}

/* html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
} */

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

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

nav ul {
  list-style: none;
}

ul li {
  list-style: none;
}

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

.clearfix {
  zoom: 1;
  clear: both;
}

.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
}

/* link_nomal */
/* a {
  text-decoration: none;
  color: #333;
} */

/* a:link {
  text-decoration: none;
  color: #333;
} */

/* a:visited {
  text-decoration: none;
  color: #333;
} */

a:hover {
  text-decoration: none;
  /* color: #333; */
}

a:active {
  text-decoration: none;
  color: #333;
}

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

/**テキスト揃え**/
.text-center {
  text-align: center;
}

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

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

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.pc_only_inline {
  display: inline-block;
}

.sp_only_inline {
  display: none;
}

@media screen and (max-width: 800px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .pc_only_inline {
    display: none;
  }
  .sp_only_inline {
    display: inline-block;
  }
}
.fade__up {
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: translate(0%, 30px);
}
.fade__up.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__up_start {
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: translate(0%, 30px);
}
@media screen and (max-width: 800px) {
  .fade__up_start {
    opacity: 1;
    transform: translate(0%, 0px);
  }
}
.fade__up_start.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__up_start2 {
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: translate(0%, 30px);
}
@media screen and (max-width: 800px) {
  .fade__up_start2 {
    opacity: 0;
    transform: translate(0%, 0px);
  }
}
.fade__up_start2.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__in {
  -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: translate(0%, 0px);
}
.fade__in.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__in_start {
  -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: translate(0%, 0px);
}
.fade__in_start.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__big {
  -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: scale(1.1);
}
.fade__big.active {
  opacity: 1;
  transform: scale(1);
}

.fade__side1 {
  -webkit-transition: all 1s cubic-bezier(0.25, 1, 0.5, 1) 0.01s;
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1) 0.01s;
  opacity: 0;
  transform: translate(30px, 0px);
}
.fade__side1.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__side2 {
  -webkit-transition: all 1s cubic-bezier(0.25, 1, 0.5, 1) 0.01s;
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1) 0.01s;
  opacity: 0;
  transform: translate(-30px, 0px);
}
.fade__side2.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.anime_a_time1 {
  clip-path: inset(0% 0% 100% 0 round 0px);
  transition: clip-path 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
}
@media screen and (max-width: 800px) {
  .anime_a_time1 {
    transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
  }
}
.anime_a_time1.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.anime_a_time2 {
  clip-path: inset(0% 100% 0% 0 round 0px);
  transition: clip-path 1.5s cubic-bezier(0.45, 0, 0.55, 1) 0.01s;
}
@media screen and (max-width: 800px) {
  .anime_a_time2 {
    transition: clip-path 1s cubic-bezier(0.45, 0, 0.55, 1) 0.01s;
  }
}
.anime_a_time2.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.anime_a_time3 {
  clip-path: inset(0% 0% 0% 100% round 0px);
  transition: clip-path 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
}
@media screen and (max-width: 800px) {
  .anime_a_time3 {
    transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
  }
}
.anime_a_time3.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.delay1 {
  transition-delay: 0s;
}

.delay2 {
  transition-delay: 0.25s;
}
@media screen and (max-width: 800px) {
  .delay2 {
    transition-delay: 0s;
  }
}

.delay3 {
  transition-delay: 0.5s;
}
@media screen and (max-width: 800px) {
  .delay3 {
    transition-delay: 0s;
  }
}

.delay4 {
  transition-delay: 0.75s;
}
@media screen and (max-width: 800px) {
  .delay4 {
    transition-delay: 0s;
  }
}

.delay5 {
  transition-delay: 0.9s;
}
@media screen and (max-width: 800px) {
  .delay5 {
    transition-delay: 0s;
  }
}

html.no-webp .backgrond_webp {
  background-image: url(../images/pc.jpg);
}
@media screen and (max-width: 800px) {
  html.no-webp .backgrond_webp {
    background-image: url(../images/sp.jpg);
  }
}

.backgrond_webp {
  width: 100%;
  max-width: 680px;
  height: 420px;
  background-image: url(../images/pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 800px) {
  .backgrond_webp {
    background-image: url(../images/sp.webp);
  }
}

/*****************************************/
.f60 {
  font-size: 60px;
  line-height: 125%;
}
@media screen and (max-width: 800px) {
  .f60 {
    font-size: 7.2vw;
  }
}

.f50 {
  font-size: 50px;
  line-height: 125%;
}
@media screen and (max-width: 800px) {
  .f50 {
    font-size: 8vw;
  }
}

.f40 {
  font-size: 40px;
  line-height: 135%;
}
@media screen and (max-width: 800px) {
  .f40 {
    font-size: 7.5vw;
  }
}

.f38 {
  font-size: 38px;
  line-height: 115%;
}
@media screen and (max-width: 800px) {
  .f38 {
    font-size: 7vw;
  }
}

.f36 {
  font-size: 36px;
  line-height: 115%;
}
@media screen and (max-width: 800px) {
  .f36 {
    font-size: 6.5vw;
  }
}

.f34 {
  font-size: 34px;
  line-height: 140%;
}
@media screen and (max-width: 800px) {
  .f34 {
    font-size: 6vw;
  }
}

.f32 {
  font-size: 32px;
  line-height: 140%;
}
@media screen and (max-width: 800px) {
  .f32 {
    font-size: 5.7vw;
  }
}

.f30 {
  font-size: 30px;
  line-height: 140%;
}
@media screen and (max-width: 800px) {
  .f30 {
    font-size: 5vw;
  }
}

.f28 {
  font-size: 28px;
  line-height: 140%;
}
@media screen and (max-width: 800px) {
  .f28 {
    font-size: 4.9vw;
  }
}

.f26 {
  font-size: 26px;
  line-height: 140%;
}
@media screen and (max-width: 800px) {
  .f26 {
    font-size: 4.8vw;
  }
}

.f24 {
  font-size: 24px;
  line-height: 140%;
}
@media screen and (max-width: 800px) {
  .f24 {
    font-size: 4.6vw;
  }
}

.f22 {
  font-size: 22px;
  line-height: 140%;
}
@media screen and (max-width: 800px) {
  .f22 {
    font-size: 4.5vw;
  }
}

.f20 {
  font-size: 20px;
  line-height: 140%;
}
@media screen and (max-width: 800px) {
  .f20 {
    font-size: 4.4vw;
  }
}

.f18 {
  font-size: 18px;
  line-height: 140%;
}
@media screen and (max-width: 800px) {
  .f18 {
    font-size: 4.2vw;
  }
}

.f16 {
  font-size: 16px;
  line-height: 140%;
}
@media screen and (max-width: 800px) {
  .f16 {
    font-size: 3.6vw;
  }
}

.f14 {
  font-size: 14px;
  line-height: 140%;
}
@media screen and (max-width: 800px) {
  .f14 {
    font-size: 3.4vw;
  }
}

.f12 {
  font-size: 12px;
  line-height: 125%;
}
@media screen and (max-width: 800px) {
  .f12 {
    font-size: 2.8vw;
  }
}

.f10 {
  font-size: 10px;
  line-height: 125%;
}
@media screen and (max-width: 800px) {
  .f10 {
    font-size: 2.4vw;
  }
}

.f9 {
  font-size: 10px;
  line-height: 125%;
}
@media screen and (max-width: 800px) {
  .f9 {
    font-size: 2vw;
  }
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
} /*# sourceMappingURL=style.css.map */
