@charset "UTF-8";
/*
==========

_base.css

==========
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800&display=swap");
html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  overflow-y: scroll;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #000;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
}

*,
:before,
:after {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:before,
:after {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

hr {
  overflow: visible;
}

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

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table,
table th,
table td {
  border-spacing: 0;
  word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

ul li {
  list-style: none;
}

img {
  max-width: 100%;
  transition: 0.2s;
}

/*
==========

_title.css

==========
*/
/* 基本の見出し */
h1 {
  font-size: 1.9em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 1.4rem;
  }
}

h2 {
  font-size: 1.6em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.3rem;
  }
}

h3 {
  font-size: 1.2em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.1rem;
  }
}

p {
  text-align: justify;
  word-wrap: break-word;
  margin-bottom: 1rem;
}

/*
==========

_footer.css

==========
*/
footer .footer__head {
  padding: 3rem 3rem;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 400;
  column-gap: 4rem;
  justify-content: center;
}
footer .footer__head img.footer_logo {
  width: 180px;
  height: auto;
  margin-right: 60px;
}
footer .footer__head p {
  margin-bottom: 0;
}
footer .footer__bottom {
  padding: 2rem 2rem;
  display: flex;
  background-image: linear-gradient(90deg, #0076b9, #0054a7);
  color: white;
}
footer .footer__bottom .footer_menu {
  width: 40%;
  margin: 0;
}
footer .footer__bottom .footer_menu a {
  color: white;
  font-size: 0.85em;
}
footer .footer__bottom .footer_menu a:hover {
  color: rgba(255, 255, 255, 0.8);
}
footer .footer__bottom .copyright {
  width: 60%;
  font-size: 12px;
  text-align: right;
  margin: 0;
}

@media screen and (max-width: 1000px) {
  footer .footer__head {
    padding: 2rem 1rem;
    flex-direction: column;
    column-gap: 0;
    align-items: stretch;
  }
  footer .footer__head img.footer_logo {
    max-width: 150px;
    margin: 1rem auto;
  }
  footer .footer__head p {
    text-align: left;
  }
  footer .footer__bottom {
    flex-direction: column;
  }
  footer .footer__bottom .footer_menu {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  footer .footer__bottom .copyright {
    width: 100%;
    text-align: center;
  }
}
/*
==========

_main.css

==========
*/
/* ==============
LAYOUT
 ============== */
body {
  background-color: #e6f2ff;
  position: relative;
  z-index: -2;
}

.l-wrap {
  position: relative;
  overflow: hidden;
}

.l-content {
  max-width: 1000px;
  width: 94%;
  margin-right: auto;
  margin-left: auto;
}

/* ==============
BTN
 ============== */
.c-sidebtn {
  z-index: 4;
  position: fixed;
  top: 60vh;
  right: 0;
  background-color: #e2445d;
  writing-mode: vertical-rl;
  color: white;
  padding: 1.5rem 1rem;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); /* 影の設定 */
  text-decoration: none;
}
.c-sidebtn img {
  width: 1.2rem;
  margin-bottom: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center center; /* 中心を軸に拡大 */
}
.c-sidebtn:hover {
  background-color: #ffb700;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform: translateY(-10px);
  color: white;
}
.c-sidebtn:hover img {
  transform: translate(4px, -5px) scale(1.3);
}

@media screen and (max-width: 1000px) {
  .c-sidebtn {
    top: inherit;
    bottom: 10px;
    right: 0;
    padding: 1.25rem 0.5rem;
    font-size: 1rem;
  }
  .c-sidebtn img {
    width: 1rem;
    margin-bottom: 3px;
  }
  .c-sidebtn:hover {
    transform: translateY(0);
  }
  .c-sidebtn:hover img {
    transform: translate(0, 0) scale(1);
  }
}
/* pagetop  */
a#pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 1.25rem 1rem;
  display: block;
  z-index: 2;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.7);
}
a#pagetop:hover {
  background-color: #438ce4;
}

@media screen and (max-width: 1000px) {
  a#pagetop {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  a#pagetop {
    display: none !important;
  }
}
/* ==============
align
 ============== */
.u-center {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.u-tx-center {
  text-align: center !important;
}

.u-tx-left {
  text-align: left !important;
}

.u-tx-right {
  text-align: right !important;
}

/* ==============
font color
 ============== */
.u-tx-white {
  color: #fff;
}

.u-tx-black {
  color: #000;
}

.u-tx-yellow {
  color: #ffff00;
}

.u-tx-orange {
  color: #ffb700;
}

.u-tx-red {
  color: #e2445d;
}

.u-tx-blue1 {
  color: #0054a7;
}

.u-tx-blue2 {
  color: #438ce4;
}

/* ==============
font
 ============== */
/* font weight */
.u-tx-400 {
  font-weight: 400 !important;
}

.u-tx-500 {
  font-weight: 500 !important;
}

.u-tx-600 {
  font-weight: 600 !important;
}

.u-tx-700 {
  font-weight: 700 !important;
}

.u-tx-800 {
  font-weight: 800 !important;
}

/* font size */
.u-tx-xl {
  font-size: 1.3em !important;
}

.u-tx-l {
  font-size: 1.15em !important;
}

.u-tx-s {
  font-size: 0.9em !important;
}

.u-tx-xs {
  font-size: 0.7em !important;
}

.u-tx-notice {
  font-size: 0.85rem !important;
  line-height: 1.5;
}

.u-tx-18_13 {
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .u-tx-18_13 {
    font-size: 1.3rem;
  }
}
/* ==============
link
 ============== */
a {
  cursor: pointer;
  transition: all 0.3s;
  color: #0054a7;
}

a:hover {
  transition: all 0.3s;
  color: #438ce4;
}

.u-hover_img img:hover {
  opacity: 0.8;
}

.u-textlink {
  color: #0054a7;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-left: 1rem;
}
.u-textlink:hover {
  color: #438ce4;
}
.u-textlink:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #0054a7;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.u-icon__blank:after {
  content: "";
  background-image: url(../../assets/images/icon_outlink.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.9em;
  height: 0.9em;
  display: inline-block;
  margin-left: 5px;
}

/* marker */
.u-marker_yel {
  background: linear-gradient(transparent 70%, #ff0 70%);
}

/* ==============
space
 ============== */
.u-mt0 {
  margin-top: 0 !important;
}

.u-mt05 {
  margin-top: 0.5em !important;
}

.u-mt10 {
  margin-top: 1em !important;
}

.u-mt20 {
  margin-top: 2em !important;
}

.u-mt30 {
  margin-top: 3em !important;
}

.u-mr10 {
  margin-right: 1em !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb10 {
  margin-bottom: 1em !important;
}

.u-mb20 {
  margin-bottom: 2em !important;
}

.u-mb30 {
  margin-bottom: 3em !important;
}

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

.u-pd10 {
  padding: 1em;
}

/* ==============
表示/非表示
 ============== */
/* 初期は非表示にしておく */
.u-only-pc, .u-only-tb, .u-only-sp {
  display: none;
}

/* PC表示 */
@media screen and (min-width: 1001px) {
  .u-only-pc {
    display: block;
  }
}
/* TB表示 */
@media screen and (max-width: 1000px) {
  .u-only-tb {
    display: block;
  }
}
/* SP表示 */
@media screen and (max-width: 767px) {
  .u-only-sp {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
