@charset "UTF-8";
/* arguments inittial */
/* font style */
/* site style */
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
@font-face {
  font-family: "cengothic";
  src: url("GOTHIC.woff") format("woff");
}
body {
  font-family: "Noto Sans JP", sans-serif;
  text-size-adjust: 100%;
  counter-reset: number 0;
  color: #040000;
  letter-spacing: 0.05em;
  font-weight: 300;
  /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
  font-size: 14px;
  font-feature-settings: "palt";
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

img {
  max-width: 100%;
  vertical-align: top;
}

.ssp {
  display: block !important;
}
@media screen and (min-width: 360px) {
  .ssp {
    display: none !important;
  }
}

.sp {
  display: block !important;
}
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.pc {
  display: none !important;
}
@media (min-width: 768px) {
  .pc {
    display: block !important;
  }
}

.pcflex {
  display: none !important;
}
@media (min-width: 768px) {
  .pcflex {
    display: flex !important;
  }
}

.spflex {
  display: flex !important;
}
@media (min-width: 768px) {
  .spflex {
    display: none !important;
  }
}

.timesmall {
  font-size: 0.8em;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.wrap-padding {
  padding: 0 15px;
}

.ib {
  display: inline-block;
}

.btn,
.btn-header {
  line-height: 16px;
  box-sizing: border-box;
  padding: 8px;
  border-radius: 10px;
}
@media screen and (min-width: 1080px) {
  .btn,
  .btn-header {
    padding: 10px;
  }
}
.btn:link, .btn:visited,
.btn-header:link,
.btn-header:visited {
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  transition: all 0.5s;
  text-align: center;
}

.btn-header {
  padding: 10px 20px;
}

.btn-header {
  border-radius: 0;
}

.btn-white {
  color: #3a3732;
  background: #fff;
}
.btn-white:after {
  background: rgba(255, 255, 255, 0.7);
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.7);
}

.btn-gold {
  background: #D9D1BE;
  color: #fff;
}
.btn-gold:after {
  background: #D9D1BE;
}
.btn-gold:hover {
  background: #9F8D81;
  color: #fff;
}

.btn-orange {
  background: #FF601E;
  color: #fff;
}
.btn-orange:after {
  background: #FF601E;
}
.btn-orange:hover {
  background: #0075c0;
  color: #fff;
}

.btn-green {
  background: #8be5e0;
  color: #00366c;
}
.btn-green:after {
  background: #8be5e0;
}
.btn-green:hover {
  background: #0075c0;
  color: #fff;
}

.btn-brown {
  background: #9F8D81;
  color: #fff;
}
.btn-brown:after {
  background: #9F8D81;
}
.btn-brown:hover {
  background: #9F8D81;
  color: #fff;
}

.btn-darkred {
  background: #88161D;
  color: #fff;
  transition: all 0.4s ease;
}
.btn-darkred:after {
  background: #88161D;
}
.btn-darkred:hover {
  opacity: 0.6;
  color: #fff;
}

.btn-blue {
  background: #b8f0f2;
  color: #3a3732;
  border-radius: 8px;
}
.btn-blue:after {
  background: #f3fed8;
}
.btn-blue:hover {
  background: #0075c1;
  color: #fff;
}

.btn-underline {
  border-bottom: 2px dashed #3a3732;
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}

.btn-bottom-animation-1 {
  animation: comeFromBottom 1s ease-out 0.8s;
}

@keyframes comeFromBottom {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn::after {
  content: "";
  text-decoration: none;
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  display: inline-block;
  z-index: -1;
  transition: all 0.5s;
}

.btn-animation-1:hover::after {
  transform: scaleX(1.2) scaleY(1.2);
  opacity: 0;
}

.fv {
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-color: #fff;
  height: calc(100vh - 100px);
  min-height: 550px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .fv {
    height: calc(100vh - 100px);
  }
}

.pagetop {
  display: flex;
  position: fixed;
  bottom: 100px;
  right: -61px;
  z-index: 95;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.5s;
}
@media (min-width: 768px) {
  .pagetop {
    width: 60px;
    height: 60px;
    bottom: 10px;
  }
  .pagetop:hover {
    opacity: 0.5;
  }
}
@media print {
  .pagetop {
    display: none;
  }
}

.aozora {
  font-family: "あおぞら明朝 bold";
}

@media (min-width: 768px) {
  .cta {
    padding: 50px 15px;
  }
}
@media print {
  .cta {
    display: none;
  }
}
.cta-flex {
  display: flex;
  flex-direction: column;
  background: url("../img/common/cta-bg.png") no-repeat left center;
  background-size: cover;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 50px 15px;
  position: relative;
  transition: all 0.5s;
}
@media (min-width: 768px) {
  .cta-flex {
    background-size: contain;
  }
}
.cta-flex:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
}
.cta-flex:hover {
  opacity: 0.6;
}
.cta-flex-text {
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .cta-flex-text {
    font-size: 30px;
  }
}
.cta-flex-btn {
  width: 90%;
  max-width: 400px;
  font-size: 24px;
  margin: 0 auto;
  background: linear-gradient(rgb(253, 92, 0) 50%, rgb(253, 60, 0) 50.5%);
  color: #fff;
  padding: 15px;
  text-align: center;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .cta-flex-btn {
    font-size: 35px;
  }
}
.cta-flex-btn:after {
  content: "";
  background: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.marker {
  display: inline;
  position: relative;
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: all 0.5s ease-in-out;
}
.marker.inview {
  background-size: 100% 100%;
}

.notice {
  font-size: 10px;
  padding: 0 15px;
  color: #808080;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.caption {
  font-size: 10px;
  color: #4d4d4d;
  text-align: left;
  letter-spacing: 0;
  font-weight: 400;
}
@media (min-width: 768px) {
  .caption {
    text-align: center;
  }
}

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

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

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

.text-white {
  color: #fff;
}

.sup {
  font-size: 10px;
  vertical-align: top;
  letter-spacing: 0;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) {
  .sup {
    padding-top: 1em;
  }
}

.anchor {
  display: block;
  padding-top: 60px;
  margin-top: -60px;
}
@media (min-width: 768px) {
  .anchor {
    padding-top: 80px;
    margin-top: -80px;
  }
}

.underline-red {
  text-decoration: underline;
  text-decoration-color: #ef7f67;
}

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

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

.roboto {
  font-family: "Roboto", sans-serif;
  font-style: normal;
}
.roboto-bold {
  font-weight: 700;
}

.shippori {
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  font-feature-settings: "palt";
  font-weight: normal;
}
.shippori-bold {
  font-weight: 700;
}

.nserif {
  font-family: "noto Serif JP", sans-serif;
}
.nserif-bold {
  font-weight: 700;
}

.date .week {
  font-size: 0.8em;
}

.small {
  font-size: 0.8em;
}
.small-m {
  font-size: 0.7em;
}

.big {
  font-size: 1.2em;
}
.big-m {
  font-size: 1.5em;
}

.bold {
  font-weight: 700;
}

.text-lightblue {
  color: #b7e7ee;
}

.text-skyblue {
  color: #55cada;
}

/*========= アンダーライン ===============*/
.underline-orange {
  position: relative;
  overflow: hidden;
}
.underline-orange:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 6px;
  left: 0;
  bottom: 0;
  background: #FF601E;
  transition: all 1s;
  transition-delay: 1s;
  transform: translate(-1px, 0);
}
.underline-green {
  position: relative;
  overflow: hidden;
}
.underline-green:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 6px;
  left: 0;
  bottom: 0;
  background: #56b98c;
  transition: all 1s;
  transition-delay: 1s;
  transform: translate(-1px, 0);
}
.underline-move {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.underline-move:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 10px;
  left: 0;
  bottom: 0px;
  background: #fff;
  transition: all 1s;
  transition-delay: 2s;
  transform: translate(-1px, 0);
  z-index: -1;
}

/*========= フェードイン ===============*/
.inview .inview {
  transition-delay: 0.4s;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 40px);
  transition: 0.4s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn {
  opacity: 0;
  transition: 0.4s;
}

.fadeIn.is-show {
  opacity: 1;
}

.scale_down {
  transform: scale(1.3) translateY(5px);
  transition: 2s;
  opacity: 0;
}

.scale_down.is-show {
  transform: scale(1);
  opacity: 1;
}

.slidetext, .slidetext2 {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.slidetext:after, .slidetext2:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100.1%;
  height: 100.1%;
  background: #fff;
  z-index: 2;
  transition: all 1s ease-in;
}

.slidetext2:after {
  transition-delay: 1s;
}

/*========= 流れるテキスト ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
  transition: all 0.6s;
  transition-delay: 0.5;
}

.slide-in_inner {
  display: inline-block;
  transition: all 0.6s;
  transition-delay: 0.5;
}

.slide-left .slide-in {
  transform: translateX(-100.1%);
}
.slide-left .slide-in_inner {
  transform: translateX(100.1%);
}

.slide-right .slide-in {
  transform: translateX(100.1%);
}
.slide-right .slide-in_inner {
  transform: translateX(-100.1%);
}

.is-show.slide-left .slide-in {
  transform: translateX(0);
}
.is-show.slide-left .slide-in_inner {
  transform: translateX(0);
}
.is-show.slide-right .slide-in {
  transform: translateX(0);
}
.is-show.slide-right .slide-in_inner {
  transform: translateX(0);
}
.is-show.slidetext:after, .is-show.slidetext2:after {
  transform: translateX(100%);
}
.is-show.underline-move:after, .is-show.underline-orange:after, .is-show.underline-green:after {
  transform: translate(0, 0);
  width: 100%;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.eng {
  font-family: "Century Gothic", "CenturyGothic", "cengothic", "AppleGothic", sans-serif;
}

.stickynote-rb {
  position: relative;
  line-height: 16px;
  box-sizing: border-box;
  padding: 8px;
}
@media screen and (min-width: 1080px) {
  .stickynote-rb {
    padding: 15px 30px;
  }
}
@media print {
  .stickynote-rb {
    display: none;
  }
}
.stickynote-rb:link, .stickynote-rb:visited {
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  transition: all 0.5s;
  text-align: center;
}
.stickynote-rb:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 15px;
}
.stickynote-rb:before {
  width: 100%;
  height: 100%;
  clip-path: polygon(100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 0);
  z-index: -1;
  transition: all 0.5s;
}
.stickynote-rb:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  clip-path: polygon(0 0, 0 20px, 20px 0);
  background-color: rgba(255, 255, 255, 0.7);
}
.stickynote-rb.green {
  color: #fff;
  font-weight: 500;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.6));
}
.stickynote-rb.green:before {
  background-color: #56b386;
}
.stickynote-rb.green:hover {
  transform: translate(-5px, -5px);
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.6));
}
.stickynote-rb-arrow {
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
  gap: 15px;
}
.stickynote-rb-arrow:before {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../img/top/arrow-green.svg") no-repeat center center;
  background-color: #fff;
  background-size: 60% 60%;
  border-radius: 40px;
}
.stickynote-rb-arrow:after {
  content: "";
  width: 10px;
  height: 1px;
}/*# sourceMappingURL=common.css.map */