@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400..700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/* @import "_vars.scss"; */
/* font */
/* width */
/* color */
/* mixin */
/* @include circle; */
/* @include absPosition(5px, 20px, 10px, 15px); */
/*
a{
     @include linkColor(#3cf);
}
*/
/* @include bg-gradient; */
/*サイトのメインカラー*/
/**
  @fonts.scss fonts 
--------------------------------------------------------
@include sec-read(); 
@include base-text($size); 

in your CSS
--------------------------------------------------------- */
/*-------------------------------------------
animate.css
----------------------------------------------*/
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

/*-------------------------------------------
animate.css
----------------------------------------------*/
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.zoomin {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }
  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-03s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.animated.delay-05s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.animated.delay-07s {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
@media all and (max-width: 769px) {
  .animated.delay-1s,
  .animated.delay-2s,
  .animated.delay-3s,
  .animated.delay-4s,
  .animated.delay-5s {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
  }
}
/* CSS Document */
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,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1;
}

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

blockquote,
q {
  quotes: none;
}

ul {
  list-style: none;
}

address,
dl,
dt,
dd {
  font-style: normal;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input,
select {
  vertical-align: middle;
}

a img {
  border: none;
}

img {
  vertical-align: bottom;
}

ol {
  padding-left: 2em;
}

/* 

common.css


*/
.none {
  display: none;
}

.clear {
  clear: both;
}

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

.fleft0 {
  float: left;
  display: inline;
}

.fleft1 {
  float: left;
  display: inline;
  margin-right: 10px;
}

.fleft2 {
  float: left;
  display: inline;
  margin-right: 30px;
}

.fright0 {
  float: right;
  display: inline;
  text-align: center;
}

.fright1 {
  float: right;
  display: inline;
  margin-left: 10px;
  text-align: center;
}

.fright2 {
  float: right;
  display: inline;
  margin-left: 20px;
  text-align: center;
}

/* marker */
.marker-c {
  background: linear-gradient(transparent 70%, #5baaff 0%);
  z-index: 0;
}

.marker-m {
  background: linear-gradient(transparent 70%, #ff7c81 0%);
  z-index: 0;
}

.marker-y {
  background: linear-gradient(transparent 70%, #fef36c 0%);
  z-index: 0;
}

.marker-k {
  background: linear-gradient(transparent 70%, #cccccc 0%);
  z-index: 0;
}

.marker-p {
  background: linear-gradient(transparent 70%, #ffd0e1 0%);
  z-index: 0;
}

/* background color */
.bg-orange {
  background-color: #ff6600 !important;
}

.bg-old {
  background-color: #bd312e !important;
}

.bg-purple {
  background-color: #930063 !important;
}

.purple {
  color: #930063 !important;
}

.bg-red {
  background-color: #cc0000 !important;
}

.bg-blue {
  background-color: #00479d !important;
}

.bg-green {
  background-color: #498033 !important;
}

.bg-skyblue {
  background-color: #029fe6 !important;
}

.bg-magenta {
  background-color: #663366 !important;
}

.bg-yellow {
  background-color: #ffd700 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-pink {
  background-color: #ff8ec0 !important;
}

.bg-black {
  background-color: #000000 !important;
}

.bg-111 {
  background-color: #111 !important;
}

.bg-222 {
  background-color: #222 !important;
}

.bg-333 {
  background-color: #333 !important;
}

.bg-aaa {
  background-color: #aaa !important;
}

.bg-bbb {
  background-color: #bbb !important;
}

.bg-ccc {
  background-color: #ccc !important;
}

.bg-ddd {
  background-color: #ddd !important;
}

.bg-eee {
  background-color: #eee !important;
}

/* flink */
.flink0,
.flink1,
.flink2 {
  width: 100%;
  text-align: center;
}

.flink0 ul {
  margin-right: -11px;
}

.flink1 ul {
  margin-right: -11px;
  margin-bottom: -10px;
}

.flink2 ul {
  margin-right: -21px;
  margin-bottom: -20px;
}

.flink0 li {
  float: left;
}

.flink1 li {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.flink2 li {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.tcenter {
  text-align: center;
}

.tcenter_sp {
  text-align: center;
}

.tright {
  text-align: right;
}

.tleft {
  text-align: left;
}

.tinline {
  display: inline-block;
}

.toverflow {
  overflow: hidden;
  zoom: 1;
}

/* img */
.img-r {
  border-radius: 10px;
}

.img-circle {
  border-radius: 1000px;
}

.img-b {
  border: 3px solid #ccc;
}

.img_sd {
  margin: 0 0px 10px 0;
  box-shadow: rgba(189, 49, 46, 0.3) 8px 8px 0;
}

.m5 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.m30 {
  margin: 30px !important;
}

.m40 {
  margin: 40px !important;
}

.m50 {
  margin: 50px !important;
}

.m75 {
  margin: 75px !important;
}

.m100 {
  margin: 100px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.h-m5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.h-m10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.h-m15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.h-m20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.h-m30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.h-m40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.h-m50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.w-m5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

.w-m10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.w-m15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.w-m20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.w-m30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.w-m40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.w-m50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

.p5 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p30 {
  padding: 30px !important;
}

.p40 {
  padding: 40px !important;
}

.p50 {
  padding: 50px !important;
}

.p75 {
  padding: 75px !important;
}

.p100 {
  padding: 100px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.h-p5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.h-p10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.h-p15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.h-p20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.h-p30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.h-p40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.h-p50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.h-p75 {
  padding-top: 75px !important;
  padding-bottom: 75px !important;
}

.h-p100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.w-p5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.w-p10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.w-p15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.w-p20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.w-p30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.w-p40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.w-p50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.w-p75 {
  padding-left: 75px !important;
  padding-right: 75px !important;
}

.w-p100 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

.orange {
  color: #ff6600 !important;
}

.red {
  color: #cc0000 !important;
}

.blue {
  color: #00479d !important;
}

.green {
  color: #498033 !important;
}

.skyblue {
  color: #029fe6 !important;
}

.white {
  color: #fff !important;
}

.pink {
  color: #f0844a !important;
}

.black {
  color: #000000 !important;
}

.yellow {
  color: #ffd700 !important;
}

.old {
  color: #996c34 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* hr */
hr {
  clear: both;
  border: 0;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin: 25px 0;
}

.hr-sl {
  margin: 2em 0;
  height: 12px;
  background: linear-gradient(-70deg, transparent 35%, #aaa 45%, #aaa 55%, transparent 65%);
  background-size: 8px 12px;
  border: none;
}

/* /hr */
/* blink */
.blinking {
  -webkit-animation: blink 0.8s ease-in-out infinite alternate;
  -moz-animation: blink 0.8s ease-in-out infinite alternate;
  animation: blink 0.8s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* /blink *//*# sourceMappingURL=reset.css.map */