@charset "UTF-8";
/*===============================
scss 変数ファイル
================================*/
/*
カラー
================================*/
/*
メディアクエリ
================================*/
/*===============================
reset
================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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;
  vertical-align: baseline;
  font-size: 100%;
}

body {
  line-height: 1;
}

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

button {
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

ol,
ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  color: #20427B;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

blockquote,
q {
  quotes: none;
}

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

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

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*===============================
base
================================*/
html {
  font-size: 62.5%;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.8em;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  position: relative;
  z-index: 100;
  font-size: 1.4rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

main {
  max-width: 1920px;
  margin: auto;
}

.overflow {
  overflow: hidden;
}

.pointerNone {
  pointer-events: none;
}

.wrap-s,
.wrap,
.wrap-l {
  width: calc(100% - 60px);
  margin: auto;
}
@media screen and (min-width: 1500px) {
  .wrap-s,
.wrap,
.wrap-l {
    width: 100%;
  }
}

.wrap-s {
  max-width: 1000px;
}

.wrap {
  max-width: 1200px;
}

.wrap-l {
  max-width: 1500px;
}

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

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

.grecaptcha-badge {
  visibility: hidden;
}

/*===============================
layout
================================*/
/*
header
================================*/
.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 15px 30px;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 20px 50px;
  }
}
.l-header__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__container__logo a img {
  max-width: 50px;
}
@media screen and (min-width: 768px) {
  .l-header__container__logo a img {
    max-width: 70px;
  }
}
.l-header__container__menuList {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__container__menuList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__container__menuList {
    font-size: 1.4rem;
  }
}
.l-header__container__menuList .item:not(:first-child) {
  margin-left: 30px;
}
@media screen and (min-width: 1024px) {
  .l-header__container__menuList .item:not(:first-child) {
    margin-left: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__container__menuList .item:not(:first-child) {
    margin-left: 50px;
  }
}
.l-header__container__menuList .item a {
  font-weight: 900;
  color: #000;
}
.l-header__container__menuList .contact a {
  display: inline-block;
  padding: 15px 20px;
  background: #20427B;
  color: #fff;
}
.l-header__container__btn {
  position: relative;
  width: 40px;
  height: 40px;
  background: #20427B;
  border-radius: 50%;
  z-index: 100;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-header__container__btn {
    display: none;
  }
}
.l-header__container__btn span {
  position: absolute;
  z-index: 110;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
  height: 2px;
  background: #fff;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.l-header__container__btn span:first-child {
  margin-top: -5px;
}
.l-header__container__btn span:last-child {
  margin-top: 5px;
}
.l-header__container .btnActive {
  background: #fff;
}
.l-header__container .btnActive span {
  background: #20427B;
}
.l-header__container .btnActive span:first-child {
  margin-top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.l-header__container .btnActive span:nth-child(2) {
  opacity: 0;
}
.l-header__container .btnActive span:last-child {
  margin-top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.l-header .l-header__nav {
  position: fixed;
  z-index: 95;
  top: 0;
  right: -100%;
  background: #20427B;
  width: 250px;
  height: 100%;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .l-header .l-header__nav {
    display: none;
  }
}
.l-header .l-header__nav:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("../../images/common/header_logo-w.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 80px;
  height: 49.5023px;
  opacity: 0.2;
}
.l-header .l-header__nav__list {
  padding: 60px 0 60px 50px;
}
.l-header .l-header__nav__list .item {
  overflow: hidden;
}
.l-header .l-header__nav__list .item:not(:first-child) {
  margin-top: 40px;
}
.l-header .l-header__nav__list .item a {
  color: #fff;
  font-weight: 900;
  font-size: 1.6rem;
}
.l-header .l-header__nav__list .item a span {
  display: inline-block;
  -webkit-transform: translateY(101%);
          transform: translateY(101%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-header .l-header__nav__list .showItem a span {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.l-header .navActive {
  right: 0;
}

/*
footer
================================*/
.l-footer {
  background: #20427B;
}
.l-footer__contact__note {
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 1.4em;
}
.l-footer__contact__choiceList {
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__contact__choiceList {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__contact__choiceList .item {
    width: calc(50% - 25px);
    margin-right: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__contact__choiceList .item {
    width: calc(50% - 40px);
    margin-right: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer__contact__choiceList .item {
    width: calc(50% - 50px);
    margin-right: 100px;
  }
}
.l-footer__contact__choiceList .item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .l-footer__contact__choiceList .item:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__contact__choiceList .item:nth-child(2n) {
    margin-right: 0;
  }
}
.l-footer__contact__choiceList .item a .block {
  padding: 30px;
  background: #fff;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-footer__contact__choiceList .item a .block {
    padding: 40px 0;
  }
}
.l-footer__contact__choiceList .item a .block__img {
  overflow: hidden;
}
.l-footer__contact__choiceList .item a .block__img span {
  display: inline-block;
}
.l-footer__contact__choiceList .item a .block__img span i {
  font-size: 3.4rem;
}
@media screen and (min-width: 1024px) {
  .l-footer__contact__choiceList .item a .block__img span i {
    font-size: 3.8rem;
  }
}
.l-footer__contact__choiceList .item a .block__heading {
  margin-top: 20px;
  font-weight: 900;
  font-size: 2rem;
}
@media screen and (min-width: 1024px) {
  .l-footer__contact__choiceList .item a .block__heading {
    font-size: 2.2rem;
  }
}
.l-footer__contact__choiceList .item a .block__text {
  margin-top: 25px;
}
.l-footer__contact__choiceList .item a .block__text p {
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .l-footer__contact__choiceList .item a .block__text p {
    font-size: 1.4rem;
  }
}
.l-footer__contact__choiceList .item a .block__text p:not(:first-child) {
  margin-top: 15px;
}
.l-footer__menu {
  position: relative;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-footer__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__menu__left {
    width: 230px;
    margin-right: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__menu__left {
    width: 345px;
    margin-right: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer__menu__left {
    margin-right: 100px;
  }
}
.l-footer__menu__left__logo img {
  max-width: 50px;
}
@media screen and (min-width: 768px) {
  .l-footer__menu__left__logo img {
    max-width: 70px;
  }
}
.l-footer__menu__left__address {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .l-footer__menu__left__address {
    margin-top: 35px;
  }
}
.l-footer__menu__left__address .address {
  margin-top: 10px;
}
.l-footer__menu__left__number {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .l-footer__menu__left__number {
    margin-top: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__menu__left__number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.l-footer__menu__left__number .item:not(:first-child) {
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .l-footer__menu__left__number .item:not(:first-child) {
    margin-top: 0;
    margin-left: 30px;
  }
}
.l-footer__menu__left__number .item span {
  display: inline-block;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  margin: 0 10px;
}
@media screen and (min-width: 768px) {
  .l-footer__menu__right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 20px;
  }
}
.l-footer__menu__right__menuList {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-footer__menu__right__menuList {
    margin-top: -8%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__menu__right__menuList .item {
    margin-top: 8%;
    width: 25%;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer__menu__right__menuList .item {
    width: 20%;
  }
}
.l-footer__menu__right__menuList .item a {
  color: #fff;
  font-weight: 900;
}
.l-footer__menu .topBack {
  position: absolute;
  top: 0;
  right: 0;
}
.l-footer__menu .topBack a {
  display: block;
  position: relative;
}
.l-footer__menu .topBack a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: #fff;
}
.l-footer__menu .topBack a img {
  padding-top: 50px;
  width: 18px;
}
.l-footer__other {
  margin-top: 50px;
  font-size: 1rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .l-footer__other {
    font-size: 1.2rem;
  }
}
.l-footer__other .privacy a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

/*===============================
module
================================*/
/*
space
================================*/
.pad_tb {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .pad_tb {
    padding: 80px 0;
  }
}
@media screen and (min-width: 1024px) {
  .pad_tb {
    padding: 100px 0;
  }
}

.pad_b {
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .pad_b {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .pad_b {
    padding-bottom: 100px;
  }
}

.mar_tb {
  margin: 50px 0;
}
@media screen and (min-width: 768px) {
  .mar_tb {
    margin: 80px 0;
  }
}
@media screen and (min-width: 1024px) {
  .mar_tb {
    margin: 100px 0;
  }
}

.mar_t {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .mar_t {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .mar_t {
    margin-top: 100px;
  }
}

.mar_b {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .mar_b {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .mar_b {
    margin-bottom: 100px;
  }
}

/*
control
================================*/
.minus--lh {
  margin-top: -10px;
}

/*
font
================================*/
.ja {
  font-family: "Noto Sans JP", sans-serif;
}

.en {
  font-family: "Anton", sans-serif;
}

/*
color
================================*/
.c--main {
  color: #20427B;
}

.c--white {
  color: #fff;
}

/*
heading-style
================================*/
.heading-style1 {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .heading-style1 {
    margin-bottom: 50px;
  }
}
.heading-style1 h2 {
  font-size: 6rem;
  opacity: 0.2;
}
@media screen and (min-width: 768px) {
  .heading-style1 h2 {
    font-size: 8rem;
  }
}
.heading-style1 p {
  position: absolute;
  top: 50%;
  font-weight: 900;
  font-size: 2rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .heading-style1 p {
    font-size: 2.6rem;
  }
}

.heading-style1--main {
  color: #20427B;
}

.heading-style1--white {
  color: #fff;
}

.heading-style1--center {
  text-align: center;
}
.heading-style1--center p {
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.heading-style1--left {
  text-align: left;
}
.heading-style1--left p {
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.pageHeading {
  position: relative;
  padding: 40px 0 39px;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 640px) {
  .pageHeading {
    padding: 50px 0 49px;
  }
}
@media screen and (min-width: 768px) {
  .pageHeading {
    padding: 80px 0 79px;
  }
}
@media screen and (min-width: 1024px) {
  .pageHeading {
    padding: 100px 0 99px;
  }
}
.pageHeading:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: #20427B;
  opacity: 0.8;
  width: 100%;
  height: 100%;
}
.pageHeading .heading-style1 {
  position: relative;
  z-index: 10;
  margin-bottom: 0;
}

/*
btn-style
================================*/
.btn-style1 {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .btn-style1 {
    margin-top: 50px;
  }
}
.btn-style1 a {
  position: relative;
  display: inline-block;
  font-weight: 900;
  padding: 20px 0;
  border: 3px solid #20427B;
  width: 100%;
  max-width: 250px;
  font-size: 1.8rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .btn-style1 a {
    max-width: 300px;
  }
}
.btn-style1 a:after {
  position: absolute;
  top: calc(50% - 9px);
  right: 20px;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #20427B;
  font-size: 2rem;
}

/*
paragraph
================================*/
.paragraph {
  line-height: 2.4em;
}
.paragraph:not(:first-child) {
  margin-top: 15px;
}

/*
breadcrumb
================================*/
.breadcrumb {
  border-bottom: 1px solid #ccc;
  overflow: hidden;
  white-space: nowrap;
  font-size: 1.4rem;
}
.breadcrumb .wrap {
  overflow-x: auto;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumb span {
  display: block;
}
.breadcrumb span a {
  font-weight: bold;
  color: #20427B;
}
.breadcrumb span .home {
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
@media screen and (min-width: 1024px) {
  .breadcrumb span .home {
    display: block;
  }
  .breadcrumb span .home:hover {
    opacity: 0.7;
  }
}
.breadcrumb span .home span img {
  max-width: 16px;
}
.breadcrumb .separate {
  margin: 0 10px;
  color: #ccc;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
@media screen and (min-width: 768px) {
  .breadcrumb .separate {
    margin: 0 15px;
  }
}

/*
pagination
================================*/
.pagination {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 50px;
  }
}
.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pagination ul li:not(:last-child) {
  border-left: 1px solid #ccc;
}
.pagination ul li:last-child {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.pagination ul li span,
.pagination ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .pagination ul li span,
.pagination ul li a {
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .pagination ul li span,
.pagination ul li a {
    width: 60px;
    height: 60px;
  }
}
.pagination ul li .current {
  background-color: #20427B;
  color: #fff;
}
.pagination ul li a,
.pagination ul li .dots {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}