@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
:root {
  --view-size: 1440;
}

@media screen and (max-width: 768px) {
  :root {
    --view-size: 375;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: calc(16 / var(--view-size) * 100vw);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* パンくずリスト */
.bread {
  width: 100%;
}
.bread .inner {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}
.bread ul {
  display: flex;
}
.bread ul li {
  padding: calc(5 / var(--view-size) * 100vw);
}
.bread ul li a {
  transition: 0.15s;
}
@media (max-width: 768px) {
  .bread ul li a {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.bread ul li a:hover {
  opacity: 0.7;
}
.bread ul li:after {
  content: ">";
  margin-left: calc(10 / var(--view-size) * 100vw);
  margin-right: calc(10 / var(--view-size) * 100vw);
}
.bread ul li:last-child:after {
  content: "";
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* inner */
.inner {
  width: calc(1000 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .inner {
    width: calc(345 / var(--view-size) * 100vw);
  }
}

/* display */
@media (max-width: 768px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 768px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

/* ============================================
   HEADER STYLES
   ============================================ */
header {
  background-color: #fff;
  padding: calc(20 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw);
  box-shadow: 0 calc(2 / var(--view-size) * 100vw) calc(8 / var(--view-size) * 100vw) rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  header {
    padding: calc(15 / var(--view-size) * 100vw) calc(15 / var(--view-size) * 100vw);
  }
}

.header_logo {
  max-width: calc(200 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header_logo {
    max-width: calc(150 / var(--view-size) * 100vw);
  }
}
.header_logo img {
  display: block;
  height: auto;
}

/* footer */
/* ============================================
   TOP PAGE STYLES
   ============================================ */
main {
  padding: calc(40 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw);
  max-width: calc(1200 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  main {
    padding: calc(30 / var(--view-size) * 100vw) calc(15 / var(--view-size) * 100vw);
  }
}

/* タイトルエリア */
.top_ttlarea {
  text-align: center;
  margin-bottom: calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_ttlarea {
    margin-bottom: calc(30 / var(--view-size) * 100vw);
  }
}

.top_ttl {
  font-size: calc(32 / var(--view-size) * 100vw);
  font-weight: bold;
  line-height: 1.6;
  color: #333;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .top_ttl {
    font-size: calc(24 / var(--view-size) * 100vw);
    line-height: 1.5;
  }
}

/* テキストエリア */
.top_textarea {
  text-align: center;
  margin-bottom: calc(50 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_textarea {
    margin-bottom: calc(40 / var(--view-size) * 100vw);
  }
}

.top_text {
  font-size: calc(18 / var(--view-size) * 100vw);
  line-height: 1.8;
  color: #666;
}
@media (max-width: 768px) {
  .top_text {
    font-size: calc(16 / var(--view-size) * 100vw);
    line-height: 1.7;
  }
}

/* ボタンエリア */
.top_btnarea {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(200 / var(--view-size) * 100vw), 1fr));
  gap: calc(20 / var(--view-size) * 100vw);
  max-width: calc(1000 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .top_btnarea {
    grid-template-columns: 1fr;
    gap: calc(15 / var(--view-size) * 100vw);
  }
}

.top_btn {
  display: block;
  height: calc(80 / var(--view-size) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #014099;
  color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: calc(16 / var(--view-size) * 100vw);
  font-weight: 600;
  border-radius: calc(8 / var(--view-size) * 100vw);
  box-shadow: 0 calc(2 / var(--view-size) * 100vw) calc(8 / var(--view-size) * 100vw) rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .top_btn {
    padding: calc(18 / var(--view-size) * 100vw) calc(15 / var(--view-size) * 100vw);
    font-size: calc(15 / var(--view-size) * 100vw);
    border-radius: calc(6 / var(--view-size) * 100vw);
  }
}
.top_btn:hover {
  background-color: #012b66;
  transform: translateY(calc(-2 / var(--view-size) * 100vw));
  box-shadow: 0 calc(4 / var(--view-size) * 100vw) calc(12 / var(--view-size) * 100vw) rgba(0, 0, 0, 0.15);
  opacity: 1;
}
.top_btn:active {
  transform: translateY(0);
  box-shadow: 0 calc(1 / var(--view-size) * 100vw) calc(4 / var(--view-size) * 100vw) rgba(0, 0, 0, 0.1);
}

.copyright {
  margin-top: calc(40 / var(--view-size) * 100vw);
  text-align: center;
  font-size: calc(12 / var(--view-size) * 100vw);
  color: #666;
  padding-bottom: calc(20 / var(--view-size) * 100vw);
}

.fadein {
  opacity: 0;
  transform: translateY(3%);
}
.fadein.active {
  animation: 0.8s forwards fadein;
}

.fadein2 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein2.active {
  animation: 0.8s forwards 0.1s fadein;
}

.leftin {
  transform: translateX(-100%);
  overflow: hidden;
}
.leftin.active {
  animation: 0.5s forwards leftin;
}

.rightin {
  transform: translateX(100%);
  overflow: hidden;
}
.rightin.active {
  animation: 0.5s forwards rightin;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(3%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */