@charset "utf-8";
/* 
-------------------------------------------------- */
/* root
-------------------------------------------------- 
*/ :root {
  --background: rgb(51, 51, 51);
  --black: rgba(31, 31, 31, 1.0);
  --black-alpha-high: rgba(31, 31, 31, 0.5);
  --black-alpha-middle: rgba(31, 31, 31, 0.25);
  --black-alpha-low: rgba(31, 31, 31, 0.01);
  --white: rgba(255, 255, 255, 1.0);
  --white-alpha-high: rgba(255, 255, 255, 0.75);
  --white-alpha-middle: rgba(255, 255, 255, 0.5);
  --white-alpha-low: rgba(255, 255, 255, 0.25);
  /* Dark #5C636A */
  --dark: rgba(92, 99, 106, 1.0);
  /* Light #6C757D */
  --light: rgba(108, 117, 125, 1.0);
  /* Primary #FD6E89 */
  --primary: rgba(253, 110, 137, 1.0);
  --primary-alpha-high: rgba(253, 110, 137, 0.75);
  --primary-alpha-middle: rgba(253, 110, 137, 0.5);
  --primary-alpha-low: rgba(253, 110, 137, 0.25);
  /* Primary Dark #009999 */
  --primary-dark: rgba(0, 153, 153, 1.0);
  /* Secondary #3BC1E2 */
  --secondary: rgba(59, 193, 226, 1.0);
  --secondary-alpha-low: rgba(59, 193, 226, 0.25);
  /* Secondary Dark #5C636A */
  --secondary-dark: rgba(92, 99, 106, 1.0);
  /* Tertiary ##FFF0E9 */
  --tertiary: rgba(255, 240, 233, 1.0);
  --success: rgba(0, 152, 159, 1.0);
  --danger: rgba(220, 53, 69, 1.0);
  --warning: rgba(255, 193, 7, 1.0);
  --font: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, sans-serif;
}
/* 
-------------------------------------------------- */
/* reset
-------------------------------------------------- */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
em, i {
  font-style: normal;
}
figure {
  margin: 0;
  padding: 0;
}
dl, dt, dd {
  margin: 0;
  padding: 0;
  line-height: normal;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
}
::selection {
  background: none;
}
p {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
/* 
-------------------------------------------------- */
/* base
-------------------------------------------------- */
body {
  background-color: var(--background);
  color: var(--black);
  margin: 0;
}
a {
  color: var(--primary);
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}
.main {
  background-color: var(--white);
  background-image: url("../images/bg-inquiry.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 1.0rem 4.0rem;
}
.header {
  padding: 1.0rem;
}
/* 
-------------------------------------------------- */
/* 
-------------------------------------------------- */
@media only screen and (max-width: 960px) {
  /* 
-------------------------------------------------- */
  .header {
    padding: 1.0rem 0;
  }
  /* 
-------------------------------------------------- */
}
/* 
-------------------------------------------------- */
.header__logo {
  display: inline-block;
}
.header__logo a {
  display: inline-block;
}
.header__logo img {
  height: 2.0rem;
}
.header__menu {
  float: right;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__menu > li {
  display: inline-block;
  font-size: 1.0rem;
  margin: 0 0 0 1.0rem;
  vertical-align: middle;
}
/*
-------------------------------------------------- */
/* smartphones (portrait-android=360x640px)
-------------------------------------------------- */
@media only screen and (max-width: 360px) {
  /*
-------------------------------------------------- */
  .header__menu > li:first-child {
    display: none;
  }
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
.footer {
  color: var(--white);
  padding: 4.0rem 1.0rem;
  text-align: center;
}
.footer__menu {
  font-size: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__menu > li {
  display: inline;
  font-size: 1.0rem;
}
.footer__menu > li::after {
  content: "・";
  margin: 0 1.0rem;
}
.footer__menu > li:last-child::after {
  content: "";
  margin: 0;
}
.footer__copyright {
  margin: 2.0rem 0 0;
}
.footer__copyright a {
  color: var(--white);
}
/*
-------------------------------------------------- */
/* layouts
-------------------------------------------------- */
.page {
  padding: 0;
}
.container {
  width: 100%;
}
.content {
  width: 100%;
}
.x-layout, .inquiry-form {
  margin: 0 auto;
  padding: 0;
  max-width: 60rem;
  width: 100%;
}
/*
-------------------------------------------------- */
/* components - buttons
-------------------------------------------------- */
.btn {
  background: none;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  display: inline-block;
  font-size: 1.25rem;
  line-height: 3.25rem;
  height: 3.25rem;
  text-align: center;
  text-decoration: none !important;
  vertical-align: middle;
  max-width: 18rem;
  width: 100%;
}
.btn:hover {
  text-decoration: none !important;
}
.btn-lg {
  line-height: 4.0rem;
  height: 4.0rem;
}
.btn-primary {
  background-color: var(--primary);
  color: #FFF !important;
}
.btn-primary:hover {
  background-color: var(--dark);
  color: #FFF !important;
}
.btn-secondary {
  background-color: var(--secondary);
  color: #FFF !important;
}
.btn-secondary:hover {
  background-color: var(--primary);
  color: #FFF !important;
}
.btn-light {
  background-color: var(--light);
  color: #FFF !important;
}
.btn-light:hover {
  background-color: var(--dark);
  color: #FFF !important;
}
.btn-white {
  background-color: var(--white);
  color: var(--dark) !important;
}
.btn-white:hover {
  background-color: var(--dark);
  color: var(--white) !important;
}
.b-buttons {
  margin: 0;
  padding: 1.0rem 0 0;
  text-align: center;
}
.b-buttons__list {
  display: inline-block;
  margin: 0 auto;
}
.b-buttons__list > li {
  display: inline-block;
  margin: 1.0rem 1.0rem 0 !important;
  width: 18rem;
}
/* 
-------------------------------------------------- */
@media only screen and (max-width: 640px) {
  /* 
-------------------------------------------------- */
  .b-buttons__list > li {
    margin: 1.0rem 0 0 !important;
  }
  /* 
-------------------------------------------------- */
}
/* 
-------------------------------------------------- */
/*
-------------------------------------------------- */
/* components - list
-------------------------------------------------- */
ul.kome, ul.hoshi {
  list-style: none;
  margin: 1.0rem 0;
  padding: 0;
}
ul.kome > li, ul.hoshi > li {
  padding-left: 1em;
  text-indent: -1em;
}
ul.kome > li:before {
  content: "※";
}
ul.hoshi > li:before {
  content: "★";
}
ol.default {
  margin: 1.0rem 0;
  padding: inherit;
}
/*
-------------------------------------------------- */
/* utilities - display
-------------------------------------------------- */
.d-block {
  display: block;
}
/* 
-------------------------------------------------- */
/* float
-------------------------------------------------- */
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.float-none {
  float: none;
}
/* 
-------------------------------------------------- */
/* inquiry-form
-------------------------------------------------- */
.inquiry-form input[type="text"], .inquiry-form input[type="email"], .inquiry-form textarea {
  border: 1px solid #CCC;
  border-radius: 0.5rem;
  display: block;
  font-size: 1.0rem;
  outline-color: var(--secondary);
  padding: 0.5rem;
  width: 100%;
}
.select-wrapper {
  background-color: var(--white);
  border: 1px solid #CCC;
  border-radius: 0.5rem;
}
.inquiry-form select {
  border: none;
  font-size: 1.0rem;
  outline-color: var(--secondary);
  padding: 0.5rem;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEuNDEgNC42NyAyLjQ4IDMuMTggMy41NCA0LjY3IDEuNDEgNC42NyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzLjU0IDUuMzMgMi40OCA2LjgyIDEuNDEgNS4zMyAzLjU0IDUuMzMiLz48L3N2Zz4=) no-repeat 98% 50%;
}
.inquiry-form__h1 {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 1.0);
  color: var(--dark);
  font-size: 2.0rem;
  margin: 0 auto;
  max-width: 60rem;
  padding: 1.0rem 2.0rem;
  text-align: center;
  white-space: nowrap;
}
.inquiry-form__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.inquiry-form__list > li {
  margin: 1.0rem 0 0;
}
.inquiry-item {
  font-size: 0.96em;
  margin: 0 0 0.25rem;
}
.inquiry-required {
  float: right;
  font-size: 0.9rem;
}
.inquiry-form .text-error, .inquiry-form .error {
  font-size: 0.9rem;
  margin: 0;
}
.inquiry-file {
  margin: 0 0 0.25rem;
}
.inquiry-file-note, .inquiry-form__note {
  font-size: 0.9rem;
}
.inquiry-form__note {
  margin: 2.0rem 0 0;
}
.inquiry-entry {
  background-color: #FFFFEE;
  border-radius: 0.5rem;
  border: 1px solid #CCC;
  padding: 0.5rem;
}
.inquiry-form__h2 {
  color: var(--secondary);
  font-size: 1.25rem;
  margin: 1.0rem 0;
  text-align: center;
}
.inquiry-form__p1 {
  text-align: center;
}
.inquiry-form__p2 {
  text-align: center;
}
.inquiry-form__new {
  margin: 1.0rem 0 0;
  text-align: center;
}
/* 
-------------------------------------------------- */
/* history
-------------------------------------------------- */
.inquiry-history, .history {
  background-color: #FEFEFE;
  border-radius: 0.5rem;
  border: 1px solid #CCC;
  padding: 0.5rem;
  margin: 1.0rem auto 0;
  max-width: 60rem;
}
.inquiry-history .inquiry-form__h2 {
  font-size: 1.1rem;
  margin: 0.5rem 0 0;
}
.inquiry-form__h3, .history__h2 {
  font-size: 1.0rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.inquiry-form__h3, .history__h3 {
  color: var(--secondary);
  font-size: 1.0rem;
  font-weight: 500;
  margin: 0.5rem 0;
}
.inquiry-history .inquiry-form__h3 {
  color: var(--secondary);
  font-size: 1.25rem;
  text-align: center;
  font-weight: 600;
}
.inquiry-history__title {
  font-weight: 600;
}
.inquiry-history__card {
  margin: 0.5rem 0 0;
}
.inquiry-history__attachments, .history__files {
  font-size: 0;
  margin: 0.5rem 0 0;
}
.inquiry-history__attachments img, .history__files img {
  display: block;
  height: 50px !important;
}
.inquiry-history__attachments br, .inquiry-history__attachments br::after {
  content: "";
}
.inquiry-history__attachments a, .history__attachment {
  display: inline-block;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  max-width: 8.0rem;
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inquiry-history__date, .history__time {
  color: #666;
  font-size: 0.8rem;
}
.history--past {
  margin-top: 2.0rem;
}
/* 
-------------------------------------------------- */
/* 
-------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  /* 
-------------------------------------------------- */
  /* 
-------------------------------------------------- */
}
@media only screen and (max-width: 960px) {
  /* 
-------------------------------------------------- */
  /* 
-------------------------------------------------- */
}
@media only screen and (max-width: 480px) {
  /* 
-------------------------------------------------- */
  /* 
-------------------------------------------------- */
}
@media only screen and (max-width: 480px) {
  /* 
-------------------------------------------------- */
  /* 
-------------------------------------------------- */
}
/* 
-------------------------------------------------- */
@media only screen and (max-width: 640px) {
  /* 
-------------------------------------------------- */
  /* 
-------------------------------------------------- */
}
/* 
-------------------------------------------------- */
/* background 
-------------------------------------------------- */
.bg-primary {
  background-image: none;
  background-color: var(--primary);
}
.bg-secondary {
  background-image: none;
  background-color: var(--secondary);
}
.bg-white {
  background-image: none;
  background-color: var(--white);
}
/*
-------------------------------------------------- */
/* utilities - colors
-------------------------------------------------- */
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-white {
  color: var(--white) !important;
}
.text-dark {
  color: var(--dark) !important;
}
.text-error, .error {
  color: var(--danger) !important;
}
/*
-------------------------------------------------- */
/* utilities - text
-------------------------------------------------- */
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-xl {
  font-size: 1.5rem;
}
.text-l {
  font-size: 1.25rem;
}
.text-m {
  font-size: 1.1rem;
}
small, .text-small, .text-s {
  font-size: 0.8rem;
}
/*
-------------------------------------------------- */
/* utilities - spacing
-------------------------------------------------- */
.m-0 {
  margin: 0 !important;
}
.mx-3 {
  margin-left: 1.0rem !important;
  margin-right: 1.0rem !important;
}
.my-3 {
  margin-top: 1.0rem !important;
  margin-bottom: 1.0rem !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-3 {
  margin-top: 1.0rem !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-3 {
  margin-bottom: 1.0rem !important;
}
.p-0 {
  padding: 0 !important;
}
.p-3 {
  padding: 1.0rem !important;
}
.px-3 {
  padding-left: 1.0rem;
  padding-right: 1.0rem;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-3 {
  padding-top: 1.0rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-3 {
  padding-bottom: 1.0rem !important;
}
/*
-------------------------------------------------- */
/* jquery ui
-------------------------------------------------- */
.ui-accordion .ui-accordion-content {
  background-color: var(--white);
}
#accordion h4 {
  font-size: 1.1rem;
  margin: 0 0 1.0rem;
}
#accordion p {
  font-size: 1.0rem;
}
/* 
-------------------------------------------------- */
/* laptop (HD)
-------------------------------------------------- */
@media only screen and (max-width: 1560px) {
  /* 
-------------------------------------------------- */
  /* 
-------------------------------------------------- */
}
/* 
-------------------------------------------------- */
/*
-------------------------------------------------- */
/* CSS Hack for IE11
-------------------------------------------------- */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/*
-------------------------------------------------- */
/* tablets (landscape-ipad-pro10.5=1112x834px)
-------------------------------------------------- */
@media only screen and (max-width: 1112px) {
  /*
-------------------------------------------------- */
  iframe {
    -webkit-overflow-scrolling: touch !important;
    overflow: auto !important;
  }
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* tablets (landscape-ipad=1024px)
-------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* tablets (landscape-android=960px)
-------------------------------------------------- */
@media only screen and (max-width: 960px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-iphone12=844px)
-------------------------------------------------- */
@media only screen and (max-width: 844px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* tablets (portrait-ipad-pro10.5=834px)
-------------------------------------------------- */
@media only screen and (max-width: 834px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-iphone12mini=812px)
-------------------------------------------------- */
@media only screen and (max-width: 812px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* tablets (android=800px)
-------------------------------------------------- */
@media only screen and (max-width: 800px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* tablets (portrait-ipad=768px)
-------------------------------------------------- */
@media only screen and (max-width: 768px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-iphone8plus=736px)
-------------------------------------------------- */
@media only screen and (max-width: 736px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-iphone8=667px)
-------------------------------------------------- */
@media only screen and (max-width: 667px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-galaxy=640px)
-------------------------------------------------- */
@media only screen and (max-width: 640px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-iphone-se=568px)
-------------------------------------------------- */
@media only screen and (max-width: 568px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-iphone4=480px)
-------------------------------------------------- */
@media only screen and (max-width: 480px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/*
-------------------------------------------------- */
/* smartphones (portrait-huawei-mediapad=432x768px=css-pixel-ratio:2.5)
-------------------------------------------------- */
@media only screen and (max-width: 432px) {
  /*
-------------------------------------------------- */
  .b-hero__menu > li {
    display: block;
  }
  .b-steps__list > li, .b-safety__list > li {
    width: calc(100% / 1);
  }
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (portrait-iphone12promax=428px)
-------------------------------------------------- */
@media only screen and (max-width: 428px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (portrait-iphone8plus=414px)
-------------------------------------------------- */
@media only screen and (max-width: 414px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (portrait-iphone12/12pro=390px)
-------------------------------------------------- */
@media only screen and (max-width: 390px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (portrait-iphone8/12mini=375px)
-------------------------------------------------- */
@media only screen and (max-width: 375px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (portrait-android=360x640px)
-------------------------------------------------- */
@media only screen and (max-width: 360px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (portrait-iphone4/5/se=320px)
-------------------------------------------------- */
@media only screen and (max-width: 320px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/*
-------------------------------------------------- */