@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: #080404;
 font-size: 100%;
 vertical-align: baseline;
 background: transparent;
 text-decoration: none;
 pointer-events: auto;
}

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

#js-main {
 margin-top: 45.06px;
}
@media screen and (min-width: 1024px) {
 #js-main {
  margin-top: 55.06px;
 }
}

.overflow {
 overflow: hidden;
}

.pointerNone {
 pointer-events: none;
}

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

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

.wrap {
 max-width: 1200px;
}

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

.wrap--about {
 max-width: 1500px;
}
@media screen and (min-width: 1024px) {
 .wrap--about {
  width: calc(100% - 200px);
 }
}

.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
================================*/
.header {
 padding: 20px 30px 0;
 position: fixed;
 z-index: 100;
 top: 0;
 left: 0;
 width: 100%;
 -webkit-transition: opacity 0.5s linear;
 transition: opacity 0.5s linear;
 pointer-events: auto;
}
@media screen and (min-width: 1024px) {
 .header {
  padding: 30px 50px 0;
 }
}
.header__container {
 position: relative;
}
@media screen and (min-width: 768px) {
 .header__container {
  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;
 }
}
.header__container .header__logo a img {
 max-width: 70px;
}
.header__container .header__button {
 position: absolute;
 top: calc(50% - 7px);
 right: 0;
 line-height: 0;
}
@media screen and (min-width: 768px) {
 .header__container .header__button {
  display: none;
 }
}
.header__container .header__button--inner {
 position: relative;
 z-index: 130;
 width: 25px;
 height: 12px;
 cursor: pointer;
}
.header__container .header__button--inner span {
 position: absolute;
 left: 0;
 display: block;
 width: 25px;
 height: 2px;
 background-color: #1a1414;
 -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
 transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.header__container .header__button--inner span:first-child {
 top: 0;
}
.header__container .header__button--inner span:nth-child(2) {
 top: 6px;
}
.header__container .header__button--inner span:nth-child(3) {
 top: 12px;
}
.header__container .header__button .btnActive span {
 background-color: #fff;
}
.header__container .header__button .btnActive span:first-child {
 -webkit-transform: translateY(6px) rotate(45deg);
 transform: translateY(6px) rotate(45deg);
}
.header__container .header__button .btnActive span:nth-child(2) {
 opacity: 0;
}
.header__container .header__button .btnActive span:nth-child(3) {
 -webkit-transform: translateY(-6px) rotate(-45deg);
 transform: translateY(-6px) rotate(-45deg);
}
.header__container .header__list {
 display: none;
}
@media screen and (min-width: 768px) {
 .header__container .header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
 }
}
.header__container .header__list .item:not(:first-child) {
 margin-left: 40px;
}
@media screen and (min-width: 1024px) {
 .header__container .header__list .item:not(:first-child) {
  margin-left: 50px;
 }
}
@media screen and (min-width: 1200px) {
 .header__container .header__list .item:not(:first-child) {
  margin-left: 60px;
 }
}
.header__container .header__list .item a {
 display: block;
 position: relative;
}
@media screen and (min-width: 768px) {
 .header__container .header__list .item a {
  font-size: 1.3rem;
 }
}
@media screen and (min-width: 1024px) {
 .header__container .header__list .item a {
  font-size: 1.4rem;
 }
}
@media screen and (min-width: 1200px) {
 .header__container .header__list .item a {
  font-size: 1.5rem;
 }
}
@media screen and (min-width: 1500px) {
 .header__container .header__list .item a {
  font-size: 1.6rem;
 }
}
.header__container .header__list .item a:before {
 content: "";
 display: block;
 position: absolute;
 top: calc(50% - 1px);
 left: 0;
 width: 100%;
 height: 2px;
 background-color: #1a1414;
 -webkit-transform-origin: left;
 transform-origin: left;
 -webkit-transform: scaleX(0);
 transform: scaleX(0);
 -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
 transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
 transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
 transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
  -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.header__container .header__list .item a:hover:before {
 -webkit-transform: scaleX(1);
 transform: scaleX(1);
}
.header__nav {
 z-index: 120;
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: #1a1414;
 pointer-events: none;
 -webkit-transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
 transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
 overflow: hidden;
 opacity: 0;
}
.header__nav:before {
 content: "";
 display: block;
 bottom: -10%;
 right: -10%;
 position: absolute;
 background-repeat: no-repeat;
 background-size: 100% auto;
 background-image: url("../../images/common/nav_logo.svg");
 width: 300px;
 height: 300px;
 opacity: 0.1;
}
@media screen and (min-width: 768px) {
 .header__nav {
  display: none;
 }
}
.header__nav--list {
 z-index: 10;
 padding: 60px;
 overflow-y: auto;
 height: 100%;
}
.header__nav--list .item:not(:first-child) {
 margin-top: 45px;
}
.header__nav--list .item a {
 color: #fff;
 font-size: 1.6rem;
 letter-spacing: 1px;
 display: inline-block;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
 opacity: 0;
 visibility: hidden;
 -webkit-transform: translateY(-120%);
 transform: translateY(-120%);
}
.header__nav--list .item .show_item {
 -webkit-transform: translatex(0);
 transform: translatex(0);
 opacity: 1;
 visibility: visible;
}
.header .navActive {
 pointer-events: auto;
 opacity: 1;
}

/*
footer
================================*/
.footer {
 background-color: #1a1414;
}
.footer__container {
 position: relative;
 padding: 50px 30px;
 color: #fff;
}
@media screen and (min-width: 1024px) {
 .footer__container {
  padding: 50px;
 }
}
@media screen and (min-width: 768px) {
 .footer__container__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
 }
}
.footer__container__inner--left__logo img {
 max-width: 70px;
}
.footer__container__inner--left__address {
 margin-top: 30px;
}
.footer__container__inner--left__address__list {
 font-size: 1.2rem;
}
@media screen and (min-width: 1024px) {
 .footer__container__inner--left__address__list {
  font-size: 1.4rem;
 }
}
.footer__container__inner--left__address__list .item:not(:first-child) {
 margin-top: 10px;
}
@media screen and (min-width: 1024px) {
 .footer__container__inner--left__address__list .item:not(:first-child) {
  margin-top: 15px;
 }
}
.footer__container__inner--right__menuList {
 display: none;
}
@media screen and (min-width: 768px) {
 .footer__container__inner--right__menuList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
 }
}
.footer__container__inner--right__menuList .item:not(:first-child) {
 margin-left: 30px;
}
@media screen and (min-width: 1024px) {
 .footer__container__inner--right__menuList .item:not(:first-child) {
  margin-left: 50px;
 }
}
@media screen and (min-width: 1200px) {
 .footer__container__inner--right__menuList .item:not(:first-child) {
  margin-left: 60px;
 }
}
.footer__container__inner--right__menuList .item a {
 color: #fff;
 -webkit-transition: opacity 0.3s linear;
 transition: opacity 0.3s linear;
}
.footer__container__inner--right__menuList .item a:hover {
 opacity: 0.7;
}
.footer__container--meta {
 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;
 margin-top: 50px;
}
.footer__container--meta__sns {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
}
.footer__container--meta__sns .item:not(:last-child) {
 margin-right: 10px;
}
@media screen and (min-width: 1024px) {
 .footer__container--meta__sns .item:not(:last-child) {
  margin-right: 15px;
 }
}
.footer__container--meta__sns .item a {
 -webkit-transition: opacity 0.5s linear;
 transition: opacity 0.5s linear;
}
.footer__container--meta__sns .item a:hover {
 opacity: 0.7;
}
.footer__container--meta__sns .item a img {
 max-width: 20px;
}
.footer__container--meta__copyright {
 font-size: 1rem;
}
@media screen and (min-width: 1024px) {
 .footer__container--meta__copyright {
  font-size: 1.2rem;
 }
}
.footer__container--topBack {
 position: absolute;
 top: 50px;
 right: 30px;
}
@media screen and (min-width: 768px) {
 .footer__container--topBack {
  top: 121px;
 }
}
@media screen and (min-width: 1024px) {
 .footer__container--topBack {
  top: 127px;
  right: 50px;
 }
}
.footer__container--topBack a img {
 max-width: 40px;
}
@media screen and (min-width: 1024px) {
 .footer__container--topBack a img {
  max-width: 50px;
 }
}

.home-footer {
 opacity: 1;
 -webkit-transition: opacity 0.5s linear;
 transition: opacity 0.5s linear;
 pointer-events: auto;
}
.home-footer__container {
 position: fixed;
 bottom: 0;
 left: 0;
 width: 100%;
 padding: 0 30px 20px;
 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;
}
@media screen and (min-width: 1024px) {
 .home-footer__container {
  padding: 0 50px 30px;
 }
}
.home-footer__container--snsList {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
}
.home-footer__container--snsList .item:not(:last-child) {
 margin-right: 10px;
}
@media screen and (min-width: 1024px) {
 .home-footer__container--snsList .item:not(:last-child) {
  margin-right: 15px;
 }
}
.home-footer__container--snsList .item a {
 -webkit-transition: opacity 0.5s linear;
 transition: opacity 0.5s linear;
}
.home-footer__container--snsList .item a:hover {
 opacity: 0.7;
}
.home-footer__container--snsList .item a img {
 max-width: 20px;
}
.home-footer__container--copyright {
 font-size: 1rem;
 display: inline-block;
 -webkit-transform: translateY(1px);
 transform: translateY(1px);
}
@media screen and (min-width: 1024px) {
 .home-footer__container--copyright {
  font-size: 1.2rem;
 }
}

/*===============================
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;
 }
}
@media screen and (min-width: 1200px) {
 .pad_tb {
  padding: 120px 0;
 }
}

.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;
 }
}
@media screen and (min-width: 1200px) {
 .mar_tb {
  margin: 120px 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;
 }
}
@media screen and (min-width: 1200px) {
 .mar_t {
  margin-top: 120px;
 }
}

.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;
 }
}
@media screen and (min-width: 1200px) {
 .mar_b {
  margin-bottom: 120px;
 }
}

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

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

.en {
 font-family: futura-pt, sans-serif;
 font-style: normal;
}

.en--demi {
 font-weight: 600;
}

.en--bold {
 font-family: futura-pt-bold, sans-serif;
 font-weight: 700;
 font-style: normal;
}

.en--heavy {
 font-weight: 700;
}

/*
color
================================*/
.c--main {
 color: #1a1414;
}

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

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

.align-center {
 text-align: center;
}

.align-right {
 text-align: right;
}

/*
heading-style
================================*/
.heading-style1 {
 font-size: 1.8rem;
 margin-bottom: 40px;
 letter-spacing: 1px;
}
@media screen and (min-width: 1024px) {
 .heading-style1 {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-bottom: 0;
 }
}

.heading-style1--left {
 text-align: left;
 margin-left: 30px;
}
@media screen and (min-width: 1024px) {
 .heading-style1--left {
  margin-left: 0;
 }
}

.heading-style1--center {
 text-align: center;
}

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

/*
breadcrumb
================================*/
.breadcrumb {
 border-top: 1px solid #ccc;
 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: #1a1414;
}
.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: 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: #1a1414;
 color: #fff;
}
.pagination ul li a,
.pagination ul li .dots {
 border-top: 1px solid #ccc;
 border-bottom: 1px solid #ccc;
}

/*
contact Area
================================*/
.contactArea {
 position: relative;
 overflow: hidden;
 padding: 50px 0 130px;
}
@media screen and (min-width: 768px) {
 .contactArea {
  padding: 50px 0 160px;
 }
}
@media screen and (min-width: 1024px) {
 .contactArea {
  padding: 50px 0 190px;
 }
}
@media screen and (min-width: 1200px) {
 .contactArea {
  padding: 50px 0 220px;
 }
}
@media screen and (min-width: 1500px) {
 .contactArea {
  padding: 50px 0 260px;
 }
}
.contactArea:before {
 content: "";
 display: block;
 position: absolute;
 bottom: 0;
 left: 50%;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
 background-image: url("../../images/common/footer_back.png");
 background-size: 100% auto;
 background-repeat: repeat-x;
 background-position: bottom center;
 width: 767px;
 height: 81px;
}
@media screen and (min-width: 768px) {
 .contactArea:before {
  width: 1024px;
  height: 108px;
 }
}
@media screen and (min-width: 1024px) {
 .contactArea:before {
  width: 1200px;
  height: 127px;
 }
}
@media screen and (min-width: 1200px) {
 .contactArea:before {
  width: 1500px;
  height: 159px;
 }
}
@media screen and (min-width: 1500px) {
 .contactArea:before {
  width: 1920px;
  height: 204px;
 }
}
.contactArea__inner__text {
 text-align: center;
}
.contactArea__inner__text--heading {
 font-size: 3rem;
}
@media screen and (min-width: 640px) {
 .contactArea__inner__text--heading {
  font-size: 4rem;
 }
}
@media screen and (min-width: 1024px) {
 .contactArea__inner__text--heading {
  font-size: 5rem;
 }
}
.contactArea__inner__text--paragraph {
 margin-top: 15px;
 line-height: 2em;
 font-size: 1.2rem;
 font-weight: 900;
}
@media screen and (min-width: 768px) {
 .contactArea__inner__text--paragraph {
  margin-top: 20px;
  font-size: 1.4rem;
 }
}
@media screen and (min-width: 1024px) {
 .contactArea__inner__text--paragraph {
  margin-top: 25px;
  font-size: 1.6rem;
 }
}
.contactArea__inner__text--btn {
 margin-top: 25px;
}
@media screen and (min-width: 768px) {
 .contactArea__inner__text--btn {
  margin-top: 30px;
 }
}
@media screen and (min-width: 1024px) {
 .contactArea__inner__text--btn {
  margin-top: 35px;
 }
}
.contactArea__inner__text--btn a {
 position: relative;
 display: inline-block;
 font-weight: bold;
 padding: 20px 0;
 background-color: #1a1414;
 color: #fff;
 width: 250px;
 border-radius: 64px;
}
@media screen and (min-width: 768px) {
 .contactArea__inner__text--btn a {
  width: 300px;
  padding: 25px 0;
 }
}
.contactArea__inner__text--btn a:before {
 content: "";
 display: block;
 position: absolute;
 top: calc(50% - 8px);
 right: 25px;
 background-image: url("../../images/common/arrow.svg");
 background-repeat: no-repeat;
 background-size: 100% auto;
 width: 15px;
 height: 15px;
}
