/* ===============================================
   Variables
=============================================== */
/* ===============================================
   common
=============================================== */
.sp {
  display: none;
}

.pc {
  display: block;
}

.full_width {
  width: 100%;
  height: auto;
}

strong,
.bold {
  font-weight: bold !important;
}

img {
  width: 100%;
  height: auto;
}

a img:hover {
  opacity: 0.8;
}
a.line {
  text-decoration: underline;
  color: #023e12;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-weight: 400;
}

/* layout */
.inr {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1080px) {
  /* layout */
  .inr {
    padding: 0 2%;
    box-sizing: border-box;
  }
}
.sec {
  padding: 80px 0;
  margin-bottom: 30px;
}

.box {
  padding: 20px;
  box-sizing: border-box;
}

.sec_l {
  float: left;
}

.sec_r {
  float: right;
}

.txt_r {
  text-align: right;
}

.txt_l {
  text-align: left;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.red {
  color: #cf005a;
}

.center {
  text-align: center;
}

section {
  margin: 0;
  padding: 0;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

article {
  margin-top: 100px;
}
article.page {
  margin-top: 20px;
}

/* ===============================================
   Btn Style
=============================================== */
.btn {
  text-align: center;
}
.btn a {
  display: inline-block;
  border-radius: 3px;
  max-width: 350px;
  padding: 10px 5px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  background: #000;
  background: linear-gradient(45deg, #e51478, #ea5447);
  font-size: 1.1em;
  font-weight: 500;
  transition: 0.2s;
  position: relative;
  top: 0;
  box-sizing: border-box;
}
.btn a:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: url(../images/allow_r.svg?1.1) no-repeat;
  background-size: contain;
  right: 5%;
  top: 37%;
}
.btn a:hover {
  background: #515c64;
  text-decoration: none;
}

/* ===============================================
   table
=============================================== */
.table {
  display: table;
  width: 100%;
}
.table > dl {
  border-collapse: collapse;
  display: table-row;
}
.table > dl > dt, .table > dl > dd {
  padding: 3px 0;
  border-bottom: 1px solid #000;
  display: table-cell;
  vertical-align: middle;
}
.table > dl > dt {
  background-color: #eee;
}

table.table {
  display: table;
  width: 100%;
}
table.table th,
table.table td {
  border-bottom: 1px solid #555;
  padding: 0.5em;
}
table.table th {
  background-color: #f3f3f3;
}
table.table td {
  padding: 3px 2em;
}

/* ===============================================
   header title area
=============================================== */
.ttl {
  text-align: center;
  font-weight: bold;
  font-size: min(5.2vw, 26px);
  color: #000;
  margin-bottom: 20px;
  border-bottom: 1px dashed #000;
  padding-bottom: 10px;
}
.ttl span {
  background: linear-gradient(45deg, #e51478, #ea5447);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page_ttl h2 {
  text-align: center;
  font-weight: bold;
  font-size: min(5.2vw, 26px);
  letter-spacing: 2px;
  padding: 40px 0 20px;
}
.page_ttl h2 span {
  background: linear-gradient(45deg, #d80b6e, #ea5447);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page_ttl + section {
  padding-top: 30px;
}

.ttl_sub {
  font-weight: bold;
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 1em;
}

.page_title {
  background: #000;
  padding-top: 130px;
}
.page_title h2 {
  color: #fff;
  padding-bottom: 20px;
}

/* ===============================================
   header
=============================================== */
header {
  position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 0 3px 1px #888;
}
header .inr {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .inr h1 {
  width: 110px;
  margin: 0 auto;
  padding: 10px 0;
}
header .inr .r__header {
  width: 80%;
  display: flex;
  flex-flow: column;
}
header .inr .r__header .tel__sec {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
header .inr .r__header .tel__sec h2 {
  font-weight: bold;
  font-size: min(2.5vw, 16px);
}
header .inr .r__header .tel__sec .address {
  border-left: 1px solid #000;
  margin-left: 2em;
  padding-left: 1em;
}
header .inr .r__header .tel__sec .address p {
  font-size: min(2.5vw, 13px);
}
header .inr .r__header .tel__sec a {
  font-size: 2.2em;
  font-weight: bold;
  line-height: 1.2;
}
header .inr .r__header .tel__sec p {
  display: inline-block;
  margin-left: 1em;
  font-size: 0.9em;
  font-weight: 400;
}
header nav ul {
  display: flex;
  justify-content: space-between;
  padding: 3px 0 5px 0;
}
header nav ul li a {
  font-weight: bold;
  font-size: min(3.2vw, 16px);
}

/* ===============================================
   footer
=============================================== */
footer {
  padding: 50px 0;
  text-align: center;
  background: #000;
  background: #f2f2f2;
}
footer figure {
  width: 50%;
  max-width: 140px;
  margin: 0 auto;
  margin-bottom: 20px;
}
footer h3 {
  font-weight: bold;
  font-size: min(3.2vw, 16px);
  margin-bottom: 1em;
}
footer dl {
  text-align: center;
}
footer dt {
  margin-top: 1em;
}
footer dd {
  font-size: 13px;
}
footer .copyright {
  font-size: 10px;
  margin-top: 40px;
}

.page_top {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 90px;
  cursor: pointer;
  z-index: 5;
}

/* ===============================================
   Responsive
=============================================== */
@media screen and (max-width: 768px) {
  .flex {
    flex-flow: column;
  }
  .ttl {
    font-size: min(5.2vw, 26px);
  }
  .ttl_sub {
    font-size: min(3vw, 17px);
  }
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  article {
    margin-top: 60px;
  }
  /* ===============================================
     Btn Style
  =============================================== */
  .btn a {
    font-size: min(3.5vw, 14px);
  }
  /* layout */
  .inr {
    width: 100%;
    margin: 0 auto;
    padding: 0 2%;
    box-sizing: border-box;
  }
  .sec {
    padding: 60px 0;
  }
  .message p {
    font-size: 12px;
  }
  .menu-trigger {
    display: block;
    position: relative;
    width: 36px;
    height: 29px;
  }
  .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 12px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
    transform: translateY(11px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-14px) rotate(45deg);
    transform: translateY(-14px) rotate(45deg);
  }
  /* header */
  header {
    height: 60px;
    border-top: 4px #000 solid;
  }
  header .sp_btn {
    position: absolute;
    z-index: 20;
    right: 10px;
    top: 14px;
  }
  header .inr h1 {
    width: 80%;
    max-width: 140px;
    margin-top: -5px;
  }
  header .inr .r__header {
    width: 100vw;
    padding: 30px;
    box-sizing: border-box;
    height: 100vh;
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    transform: translateX(200%);
    transition: transform 0.4s ease;
  }
  header .inr .r__header.active {
    transform: translateX(0);
  }
  header .inr .r__header .logo.sp {
    width: 50%;
    max-width: 130px;
    margin: 30px auto;
  }
  header .inr .r__header .tel__sec h2 {
    font-size: min(3.6vw, 16px);
  }
  header .inr .r__header .tel__sec {
    flex-flow: column;
    text-align: center;
  }
  header .inr .r__header .tel__sec .address {
    margin: 0;
    padding: 0;
    width: 100%;
    border: none;
    display: block;
  }
  header .inr .r__header .tel__sec .address p {
    font-size: min(2.8vw, 13px);
  }
  header .inr .r__header .tel__sec .address dl {
    display: block;
  }
  header .inr .r__header .tel__sec .address dl dt {
    display: block;
    font-size: min(3.2vw, 14px);
    margin-top: 1em;
    margin-bottom: 0.4em;
    text-align: center;
  }
  header .inr .r__header .tel__sec .address dl dd {
    display: block;
    font-size: min(2.8vw, 13px);
  }
  header .inr .r__header nav ul {
    flex-flow: column;
  }
  header .inr .r__header nav ul li a {
    display: block;
    text-align: center;
    border-bottom: 1px solid #000;
    padding: 20px;
  }
  /* footer */
  footer {
    padding-bottom: 80px;
  }
  footer .foot_logo {
    width: 100px;
    margin: 30px auto 10px auto;
  }
  footer dt {
    font-weight: bold;
    font-size: 13px;
  }
  footer dd {
    font-size: 10px;
  }
  .footer {
    font-size: 10px;
  }
  .page_top {
    bottom: 60px;
    right: 10px;
    width: 60px;
  }
}
/* ===============================================
   468px
=============================================== */
@media screen and (max-width: 468px) {
  /* header */
  .page_ttl p {
    font-size: 0.8em;
  }
}
.inview {
  overflow: hidden;
}
.inview .inr {
  transition: 0.8s all;
  opacity: 0;
  transform: translateX(10%);
}
.inview.r_to_l .inr {
  transform: translateX(-10%);
}
.inview.l_to_r .inr {
  transform: translateX(10%);
}
.inview.active .inr {
  opacity: 1;
  transform: translateX(0);
}