/*===============================
reset
================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: justify;
}

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

ol,
ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  color: #212121;
  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, td, th {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

/*===============================
base
================================*/
html {
  font-weight: 700;
  color: #212121;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
}

body {
  position: relative;
  z-index: 100;
  font-size: 14px;
}

.wrap {
  width: calc(100% - 60px);
  max-width: 1500px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .wrap {
    width: calc(100% - 100px);
  }
}

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

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

/*===============================
layout
================================*/
/*
loading
================================*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  background: #0B1644;
  width: 100%;
  height: 100%;
  -webkit-transition: top 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.loading .loading-logo {
  position: absolute;
  z-index: 155;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.loading .loading-logo span {
  display: inline-block;
  overflow: hidden;
}
.loading .loading-logo span img {
  width: 200px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (min-width: 768px) {
  .loading .loading-logo span img {
    width: 300px;
  }
}

.is-loading {
  top: -100%;
}
.is-loading .loading-logo span img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*
header
================================*/
.site-header {
  position: fixed;
  z-index: 100;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 30px);
  background: #0B1644;
  border-radius: 10px 10px 10px 10px;
}
@media screen and (min-width: 1024px) {
  .site-header {
    top: 30px;
    width: calc(100% - 60px);
  }
}
.site-header .container {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .site-header .container {
    padding: 30px;
  }
}
.site-header .container .logo img {
  width: 150px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .logo img {
    width: 200px;
  }
}
.site-header .container .hbg {
  position: relative;
  width: 30px;
  height: 12px;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (min-width: 1024px) {
  .site-header .container .hbg {
    display: none;
  }
}
.site-header .container .hbg .line {
  background: #fff;
  position: absolute;
  width: 100%;
  height: 3px;
  -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;
}
.site-header .container .hbg .line:first-child {
  top: 0;
}
.site-header .container .hbg .line:last-child {
  bottom: 0;
}
.site-header .container .drawer {
  position: fixed;
  top: 60.78px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  background: #0B1644;
  padding: 15px 15px 20px;
  border-radius: 0 0 10px 10px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
}
@media screen and (min-width: 1024px) {
  .site-header .container .drawer {
    display: none;
  }
}
.site-header .container .drawer .drawer-list .item:not(:first-child) {
  margin-top: 15px;
}
.site-header .container .drawer .drawer-list .item:last-child a {
  border-bottom: none;
  padding-bottom: 0;
}
.site-header .container .drawer .drawer-list .item a {
  position: relative;
  display: block;
  color: #fff;
  font-weight: 900;
  padding-bottom: 15px;
  border-bottom: 2px solid #fff;
}
.site-header .container .drawer .drawer-list .item a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../../../assets/images/common/icon-arrow.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 15px;
  height: 15px;
}
.site-header .container .menu-list {
  display: none;
}
@media screen and (min-width: 1024px) {
  .site-header .container .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-header .container .menu-list .item:not(:first-child) {
  margin-left: 30px;
}
.site-header .container .menu-list .item a {
  color: #fff;
}

.is-header {
  border-radius: 10px 10px 0 0;
}
.is-header .hbg .line:first-child {
  -webkit-transform: translateY(5px) rotate(45deg);
          transform: translateY(5px) rotate(45deg);
}
.is-header .hbg .line:last-child {
  -webkit-transform: translateY(-4px) rotate(-45deg);
          transform: translateY(-4px) rotate(-45deg);
}
.is-header .drawer {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/*
main
================================*/
.site-main {
  position: relative;
  z-index: 10;
}

.site-main--page {
  margin-top: 75.78px;
}
@media screen and (min-width: 1024px) {
  .site-main--page {
    margin-top: 130.78px;
  }
}

/*
footer
================================*/
.site-footer {
  position: relative;
  overflow: hidden;
  z-index: 5;
}
.site-footer .contact-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px;
  background: #0B1644;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .site-footer .contact-btn a {
    padding: 60px;
  }
}
.site-footer .contact-btn a .contact-btn-title span {
  display: block;
  color: #fff;
}
.site-footer .contact-btn a .contact-btn-title span:first-child {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
  font-size: 30px;
}
@media screen and (min-width: 1024px) {
  .site-footer .contact-btn a .contact-btn-title span:first-child {
    font-size: 60px;
  }
}
.site-footer .contact-btn a .contact-btn-title span:nth-child(2) {
  margin-top: 7.5px;
  font-weight: 900;
}
@media screen and (min-width: 1024px) {
  .site-footer .contact-btn a .contact-btn-title span:nth-child(2) {
    margin-top: 15px;
    font-size: 20px;
  }
}
.site-footer .contact-btn a .arrow {
  position: relative;
  width: 51px;
  height: 51px;
  background: #fff;
  border-radius: 5px;
}
@media screen and (min-width: 1024px) {
  .site-footer .contact-btn a .arrow {
    width: 95px;
    height: 95px;
    border-radius: 10px;
  }
}
.site-footer .contact-btn a .arrow .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.site-footer .contact-btn a .arrow .icon svg {
  width: 20px;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .site-footer .contact-btn a .arrow .icon svg {
    width: 30px;
  }
}
.site-footer .contact-btn a .arrow .icon svg path {
  fill: #0B1644;
}
.site-footer .footer-menu {
  background: #0B1644;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-menu .column {
    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) {
  .site-footer .footer-menu .column .company {
    width: 200px;
    margin-right: 120px;
  }
}
.site-footer .footer-menu .column .company .logo img {
  width: 150px;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-menu .column .company .logo img {
    width: 200px;
  }
}
.site-footer .footer-menu .column .company .address {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.8em;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-menu .column .company .address {
    margin-top: 20px;
    font-size: 14px;
  }
}
.site-footer .footer-menu .column .menu {
  position: relative;
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-menu .column .menu {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
}
.site-footer .footer-menu .column .menu .menu-list {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-menu .column .menu .menu-list {
    font-size: 14px;
  }
}
.site-footer .footer-menu .column .menu .menu-list .item {
  width: 50%;
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-menu .column .menu .menu-list .item {
    width: calc(25% - 22.5px);
    margin-right: 30px;
  }
}
.site-footer .footer-menu .column .menu .menu-list .item:nth-child(-n+2) {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-menu .column .menu .menu-list .item:nth-child(-n+4) {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-menu .column .menu .menu-list .item:nth-child(4n) {
    margin-right: 0;
  }
}
.site-footer .footer-menu .column .menu .menu-list .item a {
  color: #fff;
}
.site-footer .footer-menu .cp {
  margin-top: 30px;
  text-align: center;
  font-size: 11px;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-menu .cp {
    margin-top: 60px;
    font-size: 12px;
  }
}
.site-footer .footer-scl-logo .footer-scl-logo-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: footerLoopLeft linear 50s infinite;
          animation: footerLoopLeft linear 50s infinite;
  width: 3000px;
}
.site-footer .footer-scl-logo .footer-scl-logo-inner span {
  display: block;
  white-space: nowrap;
  padding: 0 15px;
  width: 500px;
}
@-webkit-keyframes footerLoopLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes footerLoopLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/*===============================
module
================================*/
/*
heading-style
================================*/
.site-main__page-heading h1 span {
  display: block;
}
.site-main__page-heading h1 span:first-child {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
  font-size: 30px;
  color: #0B1644;
}
@media screen and (min-width: 1024px) {
  .site-main__page-heading h1 span:first-child {
    font-size: 60px;
  }
}
.site-main__page-heading h1 span:nth-child(2) {
  margin-top: 7.5px;
  font-weight: 900;
}
@media screen and (min-width: 1024px) {
  .site-main__page-heading h1 span:nth-child(2) {
    margin-top: 15px;
    font-size: 20px;
  }
}

/*
btn-style
================================*/
.btn {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .btn {
    margin-top: 60px;
  }
}
.btn a {
  text-align: center;
  display: inline-block;
  padding: 15px 0;
  border-radius: 10px;
  background: #daa520;
  color: #fff;
  width: 100%;
  max-width: 300px;
}
@media screen and (min-width: 1024px) {
  .btn a {
    padding: 30px 0;
    font-size: 16px;
  }
}

/*
news-style
================================*/
.news-list .item {
  border-top: 2px solid #0B1644;
}
.news-list .item:last-child {
  border-bottom: 2px solid #0B1644;
}
.news-list .item a {
  position: relative;
  display: block;
  padding: 30px 0;
}
.news-list .item a:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  right: 0;
  background-image: url("../../../assets/images/common/icon-news-arrow.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 15px;
  height: 15px;
}
@media screen and (min-width: 1024px) {
  .news-list .item a:after {
    width: 16px;
    height: 16px;
  }
}
.news-list .item a .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-list .item a .info .category {
  display: inline-block;
  padding: 5px;
  background: #0B1644;
  font-size: 12px;
  color: #fff;
  border-radius: 5px;
}
@media screen and (min-width: 1024px) {
  .news-list .item a .info .category {
    font-size: 14px;
  }
}
.news-list .item a .info .date {
  margin-left: 10px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) {
  .news-list .item a .info .date {
    margin-left: 20px;
  }
}
.news-list .item a .title {
  margin-top: 15px;
  line-height: 1.5em;
  margin-right: 30px;
}
@media screen and (min-width: 1024px) {
  .news-list .item a .title {
    margin-top: 20px;
  }
}

/*
form-style
================================*/
.form-style {
  margin-top: 30px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .form-style {
    border-radius: 10px;
    padding: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .form-style {
    margin-top: 60px;
  }
}
.form-style .form-list .item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .form-style .form-list .item:not(:first-child) {
    margin-top: 40px;
  }
}
.form-style .form-list .item dt span {
  display: inline-block;
  color: #cc0000;
  margin-left: 3px;
}
.form-style .form-list .item dd {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .form-style .form-list .item dd {
    margin-top: 20px;
  }
}
.form-style .form-list .item dd input[type=text], .form-style .form-list .item dd input[type=tel], .form-style .form-list .item dd input[type=email], .form-style .form-list .item dd textarea {
  padding: 7.5px 10px;
  background: #fff;
  border: 1px solid #ccc;
  width: 100%;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .form-style .form-list .item dd input[type=text], .form-style .form-list .item dd input[type=tel], .form-style .form-list .item dd input[type=email], .form-style .form-list .item dd textarea {
    padding: 10px 15px;
  }
}
.form-style .form-list .item dd .wpcf7-not-valid-tip {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
}
.form-style .form-list .item dd .wpcf7-form-control-wrap .wpcf7-list-item {
  margin: 0;
}
.form-style .form-list .item dd .wpcf7-form-control-wrap .wpcf7-list-item label input {
  margin: 0;
}
.form-style .form-list .item dd .wpcf7-form-control-wrap .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  margin-left: 10px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  font-size: 13px;
}
@media screen and (min-width: 1024px) {
  .form-style .form-list .item dd .wpcf7-form-control-wrap .wpcf7-list-item label .wpcf7-list-item-label {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
    font-size: 14px;
  }
}
.form-style .form-list .item dd .wpcf7-form-control-wrap .wpcf7-list-item label .wpcf7-list-item-label a {
  display: inline-block;
  text-decoration: underline;
}
.form-style .submit {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form-style .submit {
    margin-top: 40px;
  }
}
.form-style .submit .wpcf7-submit {
  text-align: center;
  display: inline-block;
  padding: 15px 0;
  border-radius: 10px;
  background: #daa520;
  color: #fff;
  width: 100%;
  max-width: 300px;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
  font-weight: bold;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .form-style .submit .wpcf7-submit {
    padding: 30px 0;
    font-size: 16px;
  }
}
.form-style .submit .wpcf7-submit:disabled {
  pointer-events: none;
  opacity: 0.7;
}
.form-style .submit .wpcf7-spinner {
  display: none;
}

/*
space
================================*/
.pad-tb {
  padding: 60px 0;
}
@media screen and (min-width: 1024px) {
  .pad-tb {
    padding: 120px 0;
  }
}

.pad-t {
  padding-top: 60px;
}
@media screen and (min-width: 1024px) {
  .pad-t {
    padding-top: 120px;
  }
}

.pad-b {
  padding-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .pad-b {
    padding-bottom: 120px;
  }
}

.mar-t {
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  .mar-t {
    margin-top: 120px;
  }
}

/*
align
================================*/
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}