@charset "UTF-8";
/*
----------
_common.scss
----------
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
html {
  box-sizing: border-box;
  overflow-y: scroll;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #000;
  font-weight: 400;
}

*,
zw :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,
s details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  outline-width: 0;
}

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;
}

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

h1 {
  font-size: 1.9em;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  h1 {
    font-size: 1.4rem;
  }
}

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

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

.mincho {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

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

a {
  color: #2742a6;
  transition: 0.5s;
  cursor: pointer;
  text-decoration: underline;
}

a:hover {
  color: #148cd3;
  text-decoration: none;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

a.hover_img {
  display: inline-block;
  background: #000;
  transition: 0.5s;
}

a.hover_img img {
  display: block;
  transition: 0.5s;
}

a.hover_img:hover img {
  opacity: 0.8;
}

ul {
  list-style: none;
}

/* text */
.u-textlink {
  color: #2742a6;
}

.u-textlink_hover {
  color: #148cd3;
}

.u-white {
  color: #fff;
}

.u-black {
  color: #000;
}

.u-darkgray {
  color: #222;
}

.u-lightblue {
  color: #ecf0f6;
}

.u-blue1 {
  color: #148cd3;
}

.u-blue2 {
  color: #05185e;
}

.u-accent1 {
  color: #9a2c8b;
}

.u-accent2 {
  color: #fdd329;
}

.tx-bold {
  font-weight: bold !important;
}

.u-keycolor {
  color: #9a2c8b;
}

.center {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

.u-block-pc {
  display: block;
}

@media screen and (max-width: 750px) {
  .u-block-sp {
    display: block;
  }
  .u-inline-sp {
    display: inline;
  }
}
/* WIDTH SPACE */
.u-w60 {
  width: 60%;
}

.u-w100 {
  width: 100%;
}

.u-mt0 {
  margin-top: 0 !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-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;
}

/* 表示/非表示 */
@media screen and (min-width: 1200px) {
  .none_pc {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .none_tb {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .none_sp {
    display: none;
  }
}
/* ボタン
------------- */
.btn_wrap {
  margin: 0 auto;
  padding: 2rem 3%;
}

.btn {
  text-decoration: none;
  display: block;
  text-align: center;
  margin: 0 auto;
  padding: 10px;
  width: 90%;
  font-size: 0.9rem;
  line-height: 1.4;
  color: white;
  position: relative;
  background-color: #2742a6;
  border-radius: 6px;
}
.btn:hover {
  background-color: #148cd3;
  color: white;
}

.btn__arw::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../img/common/btn_arw.png) no-repeat;
  background-size: contain;
  margin-right: 8px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -6px;
}
.btn__arw:hover {
  background-color: #148cd3;
}

.btn__contact {
  background: #c535b1;
}
.btn__contact:hover {
  background: #9a2c8b;
}
.btn__contact::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}

@media screen and (max-width: 980px) {
  .btn_wrap {
    padding: 50px 5%;
  }
  .btn_common {
    padding: 1.5rem 1rem;
    font-size: 1rem;
  }
}
/* title
------------- */
.title {
  margin-bottom: 1.75rem;
  margin-right: 3%;
  margin-left: 3%;
}
.title h2 {
  color: #05185e;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.title h2.white {
  color: white;
}
@media screen and (max-width: 980px) {
  .title h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 750px) {
  .title h2 {
    font-size: 1.4rem;
  }
}
.title h3 {
  font-size: 1rem;
  color: #05185e;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .title h3 {
    font-size: 0.85rem;
  }
}
.title p {
  text-align: center;
  margin: 1rem auto;
}

.title_sub {
  text-align: center;
  margin: 1.5rem auto;
  font-size: 1.2rem;
  font-weight: 500;
}

@media screen and (max-width: 980px) {
  .title_sub {
    width: 94%;
    margin: 1rem auto;
    font-size: 1rem;
  }
}
/*
コンテンツ内、各ブロックの上下
------------- */
.l-inner {
  width: 92%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.l-container {
  padding: 100px 0;
}

@media screen and (max-width: 980px) {
  .l-container {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 750px) {
  .l-container {
    padding: 3rem 0;
  }
}
/*
pagetop
------------- */
#pagetop {
  position: fixed;
  bottom: 20px;
  right: 10px;
  background-color: black;
  border-radius: 5px;
  border: #666;
  text-align: center;
  color: white;
  font-size: 0.8rem;
  line-height: 1.4;
  padding: 1.5rem;
  display: block;
  z-index: 2;
}

@media screen and (max-width: 980px) {
  #pagetop {
    bottom: 10px;
    right: 10px;
    padding: 1rem;
  }
}
/* スクロール フェードイン
------------- */
.fadeIn {
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: opacity, transform;
}

.fadeIn-up {
  transform: translate(0, 50px);
}

.fadeIn-down {
  transform: translate(0, -50px);
}

.fadeIn-left {
  transform: translate(-50px, 0);
}

.fadeIn-right {
  transform: translate(50px, 0);
}

.scrollIn {
  opacity: 1;
  transform: translate(0, 0);
}

/*
----------
header.scss
----------
*/
/*----------
header
----------*/
.header__inner {
  background-color: white;
}

@media screen and (min-width: 981px) {
  .header__inner {
    padding: 0.5rem 2rem;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__inner #logo {
    width: 250px;
  }
  .header__inner img.logo {
    max-width: 250px;
  }
  .header_btn-contact {
    width: 200px;
  }
  .header__inner__menu {
    width: calc(100% - 250px);
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  nav ul {
    display: flex;
    justify-content: flex-end;
    margin-right: 1.5rem;
    font-size: 16px;
    font-weight: 500;
  }
  nav li {
    margin: 0 10px;
  }
  nav a {
    color: #000;
    text-decoration: none;
  }
  nav a:hover {
    color: #148cd3;
  }
  nav a.selected,
  nav a.selected:visited {
    color: #148cd3;
  }
}
@media screen and (max-width: 980px) {
  .header_btn-contact {
    display: none;
  }
  .header__inner {
    position: relative;
  }
  .header__inner #logo {
    display: block;
    padding: 10px 10px 5px 10px;
  }
  .header__inner img.logo {
    max-width: 70%;
    height: 40px;
    padding: 0;
    margin: 0;
  }
  nav.globalMenuSp {
    position: absolute;
    top: 1.25rem;
    right: 1rem;
  }
  nav.globalMenuSp ul {
    display: flex;
    justify-content: flex-end;
    font-size: 1rem;
    font-weight: 500;
  }
  nav.globalMenuSp li {
    margin: 0 10px;
  }
  nav.globalMenuSp a {
    color: #000;
    text-decoration: none;
  }
  nav.globalMenuSp a.selected,
  nav.globalMenuSp a.selected:visited {
    color: #148cd3;
  }
}
/*
----------
footer.scss
----------
*/
/*----------
footer
----------*/
footer {
  padding: 4rem 0;
  color: #fff;
  font-size: 1.4rem;
  background: #21385b;
}

footer a {
  text-decoration: none;
}

footer .inner {
  margin: 0 4.5%;
  max-width: 2000px;
  min-width: 91%;
  display: flex;
  align-self: flex-end;
}

footer .footId {
  width: 42%;
  vertical-align: bottom;
}

footer .footId .f-logo-mark {
  display: inline-block;
  width: 92px;
}

footer .footId .f-logo-kana {
  display: inline-block;
  width: 128px;
  margin-left: 0.8rem;
}

footer .footId .f-logo-mark img,
footer .footId .f-logo-kana img {
  width: 100%;
}

footer .footId .f-address {
  margin-top: 0;
  font-size: 0.9rem;
}

footer .footId .f-address p {
  display: inline-block;
  margin-right: 1rem;
}

footer .footId .f-address .f-adr-mapBtn {
  font-family: din-2014, sans-serif;
  font-weight: 600;
  font-style: normal;
}

footer .footId .f-address .f-adr-mapBtn a {
  color: #f39800;
}

footer .footId .f-address .f-adr-mapBtn a:hover {
  color: #fff;
  text-decoration: none;
}

footer .footNav {
  width: 58%;
  color: #fff;
  text-align: right;
  vertical-align: bottom;
}

footer nav ul {
  margin-right: 0;
  font-size: 0.9rem;
}

footer .footNav .f-nav-item {
  display: inline-block;
  margin-left: 1.5rem;
}

footer .footNav a,
footer .footNav a:link,
footer .footNav a:visited {
  color: #fff;
}

footer .footNav a:active,
footer .footNav a:hover {
  color: #2a85e8;
}

footer .footNav small {
  display: block;
  margin-top: 1.2rem;
  font-family: din-2014, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.8rem;
}

footer .footNav small span {
  margin-right: 0.2rem;
}

@media screen and (max-width: 980px) {
  footer {
    padding: 3rem 0;
  }
  footer .inner {
    display: block;
    margin: 0 2rem;
    max-width: auto;
    min-width: auto;
  }
  footer .footId {
    width: 100%;
    font-size: 1.2rem;
    vertical-align: bottom;
  }
  footer .footId .f-logo-mark {
    display: inline-block;
    width: 72px;
  }
  footer .footId .f-logo-kana {
    display: inline-block;
    width: 108px;
  }
  footer .footId .f-address {
    margin-top: 0.5rem;
  }
  footer .footNav {
    width: 100%;
    margin-top: 1.75rem;
    color: #fff;
    text-align: left;
    vertical-align: bottom;
  }
  footer .footNav .f-nav-item {
    display: block;
    margin: 0.8rem 0;
    font-size: 0.8rem;
  }
  footer .footNav small {
    margin-top: 1.5rem;
  }
}

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