@charset "UTF-8";

.pc,
.tablet {
  display: none !important;
}

body {
  width: 100%;
  height: auto;
  font-family: "Noto Sans JP";
  }
  #container {
    display: none;
    width: 100%;
    height: auto;
    position: relative;
}

header {
  width: 100%;
  height: 150px;
  position: relative;
  z-index: 2;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0%, 100% 77%, 0 100%);
  }
  h1 {
    display: none;
    width: 140px;
    height: auto;
    aspect-ratio: 1/1;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
    }
    h1 img {
      display: block;
      width: 100%;
}

/* header shadow */
div.hdr_shadow {
  width: 100%;
  height: 155px;
  position: absolute;
  z-index: 1;
  top: 0;
  background: rgba(236,115,139,0.6); /* var(--pastel_red) 題字共通 */
  clip-path: polygon(0 0, 100% 0%, 100% 77%, 0 100%);
}
/* header shadow end */


/* contents */
main {
  width: 100%;
  height: auto;
}
#contents {
  width: 100%;
  height: auto;
  }
  /* 題字 */
  .contact h2 {
    margin-top: 20px;
    padding: 30px 0 12px;
    text-align: center;
    font-size: 200%;
    letter-spacing: 0.1em;
    color: var(--pastel_red);
    }
    /* 題字 斜線 */
    .contact span.oblique_line {
      display: block;
      width: 200px;
      height: 8px;
      margin: 0 auto 0px;
      background: var(--pastel_red);
      transform: rotate(-2deg);
      clip-path: polygon(100% 0, 0 0, 12% 100%);
  }
  /* 題字 斜線 end */


/* thanks */
  div.thanks {
    width: 90%;
    max-width: 940px;
    margin: 85px auto 85px;
    padding: 30px 0px 30px; 
    font-size: 100%;
    color: #41515B;
    letter-spacing: 0.1em;
    border-top: 2px solid var(--pastel_red);
    border-bottom: 2px solid var(--pastel_red);
    }
    div.thanks p {
      width: 90%;
      height: auto;
      margin: 0 auto;
      line-height: 1.8em;
      text-align: justify;
      letter-spacing: 0.1em;
      }
      div.thanks a {
        color: var(--light_blue);
}
/* thanks end */

/* contents end */

/* footer */
footer {
	width: 100%;
	height: auto;
  padding: 20px 0 5px;
  background: var(--dark_brown);
  clip-path: polygon(0 11%, 100% 0%, 100% 100%, 0% 100%);
	}
	section#footer {
		width: 100%;
		height: auto;
		margin: 0px auto;
	}

/* footer nav -> menu_pc */

  /* small */
  footer dl.small {
    width: 90%;
    height: auto;
    margin: 15px auto 0px;
    clear: both;
    }
    footer dl.small dt {
      width: 60px;
      height: 75px;
      margin: 0px auto;
    }
    footer dl.small dd {
      width: 100%;
      height: auto;
      padding-bottom: 15px;
      margin: 0px auto;
      }
      footer dl.small dd ul {
        width: 100%;
        height: auto;
        font-size: 85%;
        letter-spacing: 0.2em;
        text-align: center;
        color: var(--white);
        justify-content: center;
        flex-wrap: wrap;
        display: flex;
        }
        footer dl.small dd ul li {
          min-width: 30%;
          height: auto;
          padding: 0 1em;
          line-height: 1.8em;
          }
          footer dl.small dd ul li a {
            color: var(--white);
}
