@charset "utf-8";

/* reset.css */
* {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
}

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: '小塚ゴシック Pro', 'Kozuka Gothic Pro', sans-serif;
  line-height: 1.6;
  color: #333333;
}

body {
  background-color: #f0f4f5;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.container {
  max-width: 800px;
}

.logo {
  width: 20rem;
}

.header-tel {
  width: 10rem;
}

.header-mail {
  width: 10rem;
}

/* form */
.essential {
  background: #c10811;
  color: #eee;
  padding: 5px 10px;
}

.btn {
  font-size: 1.3rem;
  width: 100%;
  padding: 15px 0px;
}

.bg-light-blue {
  background-color: #B6EBFF;
}

/* flyer */
.chirashi {
  width: 58%;
  height: 60%;
}

/* モーダルを開くボタン */
.wall-modal-open{
  cursor: pointer;
}

/* モーダルと背景の指定 */
.wall-modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}

/* モーダルの擬似要素の指定 */
.wall-modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.wall-modal.is-active{
  opacity: 1;
  visibility: visible;
}

/* モーダル内側の指定 */
.wall-modal-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 90%;
}

/* モーダルを閉じるボタンの指定 */
.wall-modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.wall-modal-content{
  background: #fff;
  padding: 20px;
}

.wall-modal-content iframe {
  width: 100%;
}

/* about */
.about-box {
  border-bottom: solid 1px #D9D9D9;
}

/* footer */
.footer {
  background-color: #2A6CFF;
  width: 100%;
  height: auto;
  padding: 20px 0;
  margin-top: 20px;
}

.footer-inner {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}

.button-fixed {
  position: fixed;
  bottom: 0px;
  opacity: 0.9;
  width: 100%;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media only screen and (max-width: 800px) {
  .container {
    --bs-gutter-x: 0rem;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .chirashi {
    width: 100%;
    height: 100%;
  }
}