
@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&display=swap');
@import url("https://use.typekit.net/tpz3xyk.css");

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Serif JP',"Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.8rem;
  color: #3d3939;
  line-height: 1.5;
  font-weight: 700;
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 4vw;
  }
}

a {
  text-decoration: none;
  color: #3d3939;
}

img,
video,
object {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}

ul {
  list-style: none;
}

address {
  font-style:normal;
}

.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/*=========================
ラッパー・インナー
===========================*/
.wrapper {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.wrapper-min {
  width: 100%;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .wrapper,
  .wrapper-min {
    width: 92%;
  }
}

.inner {
  padding: 5rem 3rem 12rem 3rem;
}
.inner-utd {
  padding: 5rem auto 12rem auto;
}
.inner-side {
  padding: 0 3rem;
}
@media screen and (max-width: 768px) {
  .inner,
  .inner-utd {
    padding: 5vw 0;
  }
  .inner-side {
    padding: 0;
  }
}
/*================================
flex
==================================*/
.flex {
  display: flex;
}

.is-between {
  justify-content: space-between;
}

.flex-center {
  justify-content: center;
}
.align-center {
  align-items: center;
}

/*=========================
セクション
===========================*/
.sec_ttl {
  padding: 2rem 0;;
  background: #3d3939;
  font-size: 4.8rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2em;
} 
@media screen and (max-width: 768px) {
  .sec_ttl {
    padding: 1.2rem 0;
    font-size: 6vw;
    letter-spacing: 0.1em;
  }
}
.sec_ttl span {
  display: block;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .sec_ttl span {
    font-size: 3vw;
  }
}
/*=========================
コンテンツ
===========================*/
.content_ttlSet {
  padding: 3.5rem 0;
  margin-bottom: 2rem;
  background-image: url(../img/flower-pink@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .content_ttlSet {
    padding: 3vw 0;
    margin-bottom: 4vw;
  }
}
.content_ttl {
  display: inline-block;
  position: relative;
  margin-bottom: 1rem;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .content_ttl {
    margin-bottom: 2vw;
    font-size: 5.5vw;
  }
}
.content_ttl::before {
  display: inline-block;
  position: absolute;
  top: -30px;
  right: -35px;
  z-index: 10;
  width: 60px;
  height: 50px;
  background-image: url(../img/ribbon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
@media screen and (max-width: 768px) {
  .content_ttl::before {
    top: -20px;
    right: -20px;
    width: 10vw;
    height: 10vw;
  }
}
.content_ttl span {
  display: block;
  font-size: 1.6rem;
  text-align: center;;
}
@media screen and (max-width: 768px) {
  .content_ttl span {
    font-size: 3vw;
  }
}
.content_ttl-nomal {
  font-size: 3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .content_ttl-nomal {
    font-size: 5vw;
  }
}

.content_sammary {
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .content_sammary {
    font-size: 3.8vw;
    line-height: 1.5;
    text-align: start;
  }
}

.content_ttl-min {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .content_ttl-min {
    font-size: 5vw;
  }
}

.img_corner {
  border-radius: 20px;
}

.shadow {
  box-shadow: 7px 7px 20px 0 rgba(185, 184, 184, .5);
}
.holiday {
  color: red;
}

.font-size12px {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .font-size12px {
    font-size: 3.2vw;
  }
}