/* air-ism common css */
@import url("bootstrap-reboot.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://use.fontawesome.com/releases/v5.6.1/css/all.css");
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

body {
  background-color: #F8F6F3;
  color: #3B4043;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 70px 0 0 0;
}

@media screen and (min-width: 960px) {
  body {
    padding: 0;
  }
}

@media screen and (min-width: 960px) {
  #main,
  footer div {
    max-width: 1024px;
    margin: 0 auto;
  }
}

a {
  word-break: break-all;
}

a:link, a:visited {
  color: #3B4043;
  text-decoration: underline;
}

a:hover, a:active {
  text-decoration: none;
}

@media screen and (min-width: 960px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

p,
li,
th,
td,
dt,
dd,
figcaption {
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
}

dl,
ol,
ul,
menu,
figcaption {
  margin-bottom: 1em;
}

ol,
ul,
li {
  padding: 0;
  list-style-type: none;
}

ul.list_disc li {
  position: relative;
  padding-left: 1em;
}

ul.list_disc li:before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #3b4043;
  content: "";
}

.hp_mg0 {
  margin: 0;
}

.hp_pconly {
  display: none;
}

@media screen and (min-width: 960px) {
  .hp_pconly {
    display: block;
  }
  .hp_sponly {
    display: none;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: #F8F6F3;
  border-bottom: 5px solid #3F3535;
  margin: 0;
  padding: 0;
  z-index: 999;
}

@media screen and (min-width: 960px) {
  header {
    position: static;
    margin: 0;
    height: 100px;
    min-width: 960px;
  }
}

header h1 {
  margin: 0;
  padding: 0 16px;
  overflow: hidden;
  position: relative;
  top: 8px;
}

@media screen and (min-width: 960px) {
  header h1 {
    position: static;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 27px 0 0 0;
  }
}

header h1 img {
  width: 106px;
}

@media screen and (min-width: 960px) {
  header h1 img {
    width: 205px;
  }
}

header input[type="checkbox"] {
  display: none;
}

header .menu_icon {
  cursor: pointer;
  display: block;
  width: 70px;
  height: 70px;
  position: fixed;
  top: 0;
  right: 0;
  background: #3F3535;
}

header .menu_icon .menu_icon_parts,
header .menu_icon .menu_icon_parts:before,
header .menu_icon .menu_icon_parts:after {
  background-color: #fff;
  display: block;
  width: 29px;
  height: 3px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

header .menu_icon .menu_icon_parts:before,
header .menu_icon .menu_icon_parts:after {
  content: " ";
}

header .menu_icon .menu_icon_parts:before {
  top: 16px;
}

header .menu_icon .menu_icon_parts:after {
  top: -16px;
}

@media screen and (min-width: 960px) {
  header .menu_icon {
    display: none;
  }
}

header #modalCheckbox ~ nav {
  display: none;
  -webkit-animation-name: fade-out;
          animation-name: fade-out;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  top: 70px;
}

header #modalCheckbox ~ nav menu {
  margin: 0;
  padding: 0;
}

header #modalCheckbox ~ nav menu li {
  list-style-type: none;
  text-align: center;
  margin: 0 0 1em 0;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
}

header #modalCheckbox ~ nav menu li a:link,
header #modalCheckbox ~ nav menu li a:visited {
  text-decoration: none;
}

header #modalCheckbox ~ nav menu li a:hover,
header #modalCheckbox ~ nav menu li a:active {
  text-decoration: underline;
}

@media screen and (min-width: 960px) {
  header #modalCheckbox ~ nav {
    display: block;
    -webkit-animation: none;
            animation: none;
    width: 100%;
    margin: 0 auto;
  }
  header #modalCheckbox ~ nav menu {
    margin: -37px auto 0 auto;
    width: 100%;
    max-width: 1024px;
    text-align: right;
  }
  header #modalCheckbox ~ nav menu li {
    display: inline;
    margin: 0 0 0 24px;
  }
  header #modalCheckbox ~ nav menu li:last-child {
    display: none;
  }
}

header #modalCheckbox:checked ~ nav {
  position: fixed;
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  width: 100%;
  height: calc(100% - 70px);
  background: #3F3535;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 10%;
}

header #modalCheckbox:checked ~ nav a:link,
header #modalCheckbox:checked ~ nav a:visited {
  color: #fff;
}

header #modalCheckbox:checked ~ .menu_icon .menu_icon_parts {
  background: transparent;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

header #modalCheckbox:checked ~ .menu_icon .menu_icon_parts:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

header #modalCheckbox:checked ~ .menu_icon .menu_icon_parts:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#main h2 {
  display: block;
  font-size: 30px;
  margin: 22px 0;
}

@media screen and (min-width: 960px) {
  #main h2 {
    margin: 27px 0;
  }
}

#main h3,
#main #top_column3 h2 {
  font-size: 24px;
  margin: 22px 0;
}

@media screen and (min-width: 960px) {
  #main h3,
  #main #top_column3 h2 {
    margin: 0;
  }
}

#main h4 {
  font-size: 18px;
}

#main h5 {
  font-size: 16px;
}

#main article {
  margin: 0 0 22px 0;
  padding: 0 16px;
}

@media screen and (min-width: 960px) {
  #main article {
    margin: 0 0 27px 0;
    padding: 0;
  }
  #main article img {
    width: 100%;
  }
}

#main article.attention {
  background-color: #EFEBE5;
}

#main article #intro p {
  line-height: 1.875;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 900;
}

@media screen and (min-width: 960px) {
  #main article #intro p {
    text-align: center;
  }
}

#main article #intro p strong {
  display: block;
  color: #B50000;
}

#main article#head {
  padding: 0;
}

#main article#head figure img {
  width: 100%;
  height: auto;
  min-height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

#main article#head h2 {
  padding-left: 16px;
  padding-right: 16px;
}

#main article img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

@media screen and (min-width: 960px) {
  #main article img {
    width: auto;
    max-width: 100%;
  }
}

#main .table_scroll {
  overflow-x: auto;
}

#main table {
  margin-bottom: 22px;
  width: 100%;
}

#main table th,
#main table td {
  padding: 15px;
  border-left: 1px solid #EFEBE5;
  border-bottom: 1px solid #EFEBE5;
}

#main table th {
  color: #fff;
  background-color: #3F3535;
  text-align: center;
  white-space: nowrap;
}

#main table td {
  background-color: #fff;
}

#main table tbody tr:nth-child(odd) td {
  background-color: #D3C7C0;
}

@media screen and (min-width: 960px) {
  #main table tbody th,
  #main table tbody td {
    padding: 19px 21px;
  }
}

#main table tbody th:not(:last-child),
#main table tbody td:not(:last-child) {
  border-bottom: 1px solid #EFEBE5;
}

@media screen and (min-width: 960px) {
  #main table {
    margin-bottom: 27px;
  }
}

#main table tfoot tr td {
  padding: initial;
  background: none;
  text-align: right;
  border: none;
}

#main .count_list {
  counter-reset: item;
}

#main .count_list dl dt {
  line-height: 34px;
  font-size: 16px;
}

#main .count_list dl dt br {
  display: none;
}

#main .count_list dl dd {
  margin-left: 44px;
}

#main .count_list dl:before {
  display: inline-block;
  float: left;
  font-family: sans-serif;
  color: #F8F6F3;
  width: 34px;
  height: 34px;
  line-height: 34px;
  margin: 0 auto 10px auto;
  text-align: center;
  background: #3F3535;
  border: 1px solid #3F3535;
  border-radius: 50%;
  counter-increment: item;
  content: counter(item);
  font-weight: 700;
  margin-right: 11px;
}

@media screen and (min-width: 960px) {
  #main .count_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #main .count_list dl {
    width: 100%;
    padding: 0 12px;
    border-right: 1px solid #3F3535;
    text-align: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: block;
  }
  #main .count_list dl:before {
    float: none;
    display: block;
    margin: 0 auto 10px auto;
  }
  #main .count_list dl:first-child {
    padding-left: 0;
  }
  #main .count_list dl:last-child {
    padding-right: 0;
    border: none;
  }
  #main .count_list dl dt {
    width: 100%;
    height: 72px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    line-height: normal;
    vertical-align: middle;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: center;
  }
  #main .count_list dl dt br {
    display: inline;
  }
  #main .count_list dl dt span {
    width: 100%;
  }
  #main .count_list dl dd {
    margin: 0;
  }
}

#main dl.attention {
  margin-bottom: 16px;
  width: 100%;
}

@media screen and (min-width: 960px) {
  #main dl.attention {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#main dl.attention dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #3F3535;
  color: #F8F6F3;
  font-size: 20px;
  margin: 0 0 1px 0;
  padding: 19px;
}

@media screen and (min-width: 960px) {
  #main dl.attention dt {
    width: 29.3%;
  }
}

#main dl.attention dd {
  display: block;
  background: #EFEBE5;
  margin: 0;
  padding: 14px;
}

@media screen and (min-width: 960px) {
  #main dl.attention dd {
    width: 70.7%;
  }
}

#main dl.attention dd ul {
  margin: 0;
  padding-left: 1.5em;
}

#main .contact_area {
  background: #D3C7C0;
  margin: 0 0 22px 0;
  padding: 22px 16px;
  text-align: center;
}

#main .contact_area p {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

#main .contact_area a {
  display: block;
  font-size: 20px;
  font-weight: 700;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 12px;
  line-height: 35px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  text-align: center;
}

#main .contact_area a:link, #main .contact_area a:visited {
  text-decoration: none;
}

#main .contact_area a:hover, #main .contact_area a:active {
  text-decoration: underline;
}

@media screen and (min-width: 960px) {
  #main .contact_area a[href*="tel:"] {
    line-height: normal;
    background: none;
    border: none;
    padding: 0;
    display: inline;
    font-size: 14px;
    font-weight: normal;
  }
}

#main .contact_area .tel_area:before,
#main .contact_area .mail_area:before {
  display: block;
  text-align: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 40px;
}

@media screen and (min-width: 960px) {
  #main .contact_area .tel_area:before,
  #main .contact_area .mail_area:before {
    display: block;
    float: left;
    font-size: 50px;
    position: absolute;
    left: 0;
    top: 50%;
    bottom: 50%;
    line-height: 0;
  }
}

#main .contact_area .tel_area:before {
  content: "\f098";
}

#main .contact_area .mail_area:before {
  content: "\f199";
}

@media screen and (min-width: 960px) {
  #main .contact_area .tel_area,
  #main .contact_area .mail_area {
    position: relative;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 55px;
    margin-bottom: 0;
  }
}

#main .contact_area .tel_area {
  width: 100%;
  word-wrap: break-word;
}

#main .contact_area .tel_area dt {
  font-size: 20px;
  width: 40%;
}

@media screen and (max-width: 359px) {
  #main .contact_area .tel_area dt {
    font-size: 16px;
  }
}

#main .contact_area .tel_area dd {
  width: 55%;
}

@media screen and (min-width: 960px) {
  #main .contact_area .tel_area dd {
    font-weight: 700;
    margin: 0;
  }
}

#main .contact_area .tel_area dt,
#main .contact_area .tel_area dd {
  display: inline-block;
  text-align: right;
}

@media screen and (min-width: 960px) {
  #main .contact_area .tel_area dt,
  #main .contact_area .tel_area dd {
    display: block;
    float: left;
    text-align: left;
    font-size: 18px;
  }
}

#main .contact_area .tel_area a {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 359px) {
  #main .contact_area .tel_area a {
    font-size: 16px;
  }
}

@media screen and (min-width: 960px) {
  #main .contact_area .tel_area a {
    font-size: 18px;
    font-weight: 700;
  }
}

@media screen and (min-width: 960px) {
  #main .contact_area {
    margin: 0 0 27px 0;
    padding: 27px 20px;
    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;
  }
  #main .contact_area div,
  #main .contact_area p,
  #main .contact_area .tel_area {
    width: 100%;
    text-align: left;
  }
  #main .contact_area h2 {
    width: 80%;
    text-align: center;
  }
}

@media screen and (min-width: 960px) {
  #main .contact_area.snowwave h2 {
    width: 200px;
    margin: 0 43px 0 0;
  }
  #main .contact_area.snowwave .message {
    margin: 0;
    font-size: 24px;
    line-height: 30px;
  }
  #main .contact_area.snowwave .tel_area a {
    font-size: 34px;
    margin: 0;
  }
}

#main input,
#main textarea,
#main select {
  background-color: #fff;
  border: 1px solid #ababab;
  padding: 5px;
}

#main input::-webkit-input-placeholder,
#main textarea::-webkit-input-placeholder,
#main select::-webkit-input-placeholder {
  color: #ababab;
}

#main input:-ms-input-placeholder,
#main textarea:-ms-input-placeholder,
#main select:-ms-input-placeholder {
  color: #ababab;
}

#main input::-ms-input-placeholder,
#main textarea::-ms-input-placeholder,
#main select::-ms-input-placeholder {
  color: #ababab;
}

#main input::placeholder,
#main textarea::placeholder,
#main select::placeholder {
  color: #ababab;
}

#main input:focus,
#main textarea:focus,
#main select:focus {
  border-color: #3F3535;
}

#main input,
#main select {
  height: 40px;
}

#main textarea {
  min-height: 10em;
}

footer {
  background: #3F3535;
  color: #fff;
  padding: 0 16px 16px 16px;
}

footer a:link,
footer a:visited {
  color: #EFEBE5;
  text-decoration: none;
}

footer a:hover,
footer a:active {
  text-decoration: underline;
}

footer #other_link ul {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media screen and (min-width: 960px) {
  footer #other_link ul {
    display: block;
    margin: 0;
    float: left;
    line-height: 0;
  }
}

footer #other_link ul li {
  display: inline-block;
  padding: 0 8px 16px 8px;
}

@media screen and (min-width: 960px) {
  footer #other_link ul li {
    display: block;
    float: left;
    padding: 0 16px 16px 0;
  }
}

footer #other_link ul li:first-child img {
  max-width: 202px;
  width: 100%;
}

@media screen and (min-width: 960px) {
  footer #other_link ul li:first-child img {
    max-width: 232px;
    width: 232px;
  }
}

footer #other_link ul li:last-child {
  padding-top: 16px;
}

footer #other_link ul li:last-child img {
  max-width: 126px;
  width: 100%;
}

@media screen and (min-width: 960px) {
  footer #other_link ul li:last-child img {
    max-width: 144px;
    width: 144px;
  }
}

@media screen and (max-width: 359px) {
  footer #other_link ul {
    display: block;
  }
  footer #other_link ul li {
    padding: 0 16px 16px 16px;
  }
  footer #other_link ul li:last-child {
    padding-top: 0;
  }
}

footer div {
  position: relative;
  overflow: hidden;
}

footer #footer_link ul {
  list-style: none;
  padding: 0 16px;
  text-align: center;
}

@media screen and (min-width: 960px) {
  footer #footer_link ul {
    text-align: right;
    margin: 0;
    padding: 16px 0 0 0;
  }
}

footer #footer_link ul li {
  display: inline-block;
  padding: 0 0.2em;
}

footer small {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #f8f6f3;
}

@media screen and (min-width: 960px) {
  footer small {
    width: auto;
    text-align: right;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

.column2_1to2_pconly {
  display: block;
}

.column2_1to2_pconly .bl_column2_1 {
  width: 100%;
}

.column2_1to2_pconly .bl_column2_2 {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .column2_1to2_pconly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .column2_1to2_pconly .bl_column2_1 {
    width: 29.3%;
  }
  .column2_1to2_pconly .bl_column2_2 {
    width: 68.5%;
  }
}

.column3_wrapSquare {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.column3_wrapSquare .wrapSquare-item {
  width: 32.7%;
  margin-right: auto;
}

.column3_wrapSquare figcaption {
  text-align: left;
}

@media screen and (min-width: 960px) {
  .column3_wrapSquare {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .column3_wrapSquare .wrapSquare-item {
    width: 16.2%;
    margin-right: 0.4%;
  }
  .column3_wrapSquare .wrapSquare-item:last-child {
    margin-right: 0;
  }
}

.column3_wrapSquare_odd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.column3_wrapSquare_odd .wrapSquare-item {
  width: 32.7%;
  margin-right: 0.9%;
}

.column3_wrapSquare_odd .wrapSquare-item:nth-last-child(3) {
  margin-right: 0;
}

.column3_wrapSquare_odd .wrapSquare-item:last-child() {
  margin-right: 0;
}

.column3_wrapSquare_odd figcaption {
  text-align: left;
}

@media screen and (min-width: 960px) {
  .column3_wrapSquare_odd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .column3_wrapSquare_odd .wrapSquare-item {
    width: 16.2%;
    margin-right: 0.4%;
  }
  .column3_wrapSquare_odd .wrapSquare-item:last-child {
    margin-right: 0;
  }
}

p.instagram_link {
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
  font-weight: bold;
}
/*# sourceMappingURL=common.css.map */