@charset "UTF-8";
/* ---------------------------------------------------------
  base css
  - サイトの基本スタイル設定
--------------------------------------------------------- */

html {
  box-sizing: border-box;
  height: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  height: 100%;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "Osaka", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #222222;
    font-weight: 300;
    margin: 0;
    letter-spacing: 1px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

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

h1,
h2,
h3,
h4,
h5,
strong {
  font-weight: bold;
}

input,
textarea {
  max-width: 100%;
  font-family: inherit;
  font-size: 100%;
}
.l-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
    overflow-x: hidden;
}
.l-container {
  width:90% ;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.l-container--medium {
  width: 90%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.l-container--small {
  width: 90%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
/* ---------------------------------------------------------
  メインコンテンツ 設定用
--------------------------------------------------------- */

/*.l-main {
  padding-top: 100px;
  flex: 1;
}
*/
.l-mainContents {
  /*padding-top: 80px;
  padding-bottom: 80px;*/
}

@media screen and (min-width: 768px) {
/*.l-main {
  padding-top: 125px;
}*/
  /*.l-mainContents {
    padding-top: 120px;
    padding-bottom: 120px;
  }*/
}

/*-----------------------------------*/
.pc_only,
.pc_only02{
    display: none;
}
.pc_only::after,.sp_only::after{
  content: ".";
  display: block;
  height: 0px;
  font-size: 0;
  clear: both;
  visibility: hidden;
}
.flex{
  display: flex;
  flex-wrap: wrap;
}
.mincho{
  font-family: 'Noto Serif JP', sans-serif;
}
.zenmaru{
      font-family: "Zen Maru Gothic", serif;
}
.widthsize {
  max-width: 767px;
  margin-right: 30px;
  margin-left: 30px;
  position: relative;
}
.txt_pnk{
    color: #d55c82;
}
.f_12{
    font-size: 1.2rem;
}
.f_15{
    font-size: 1.5rem;
}
.f_w500{
    font-weight: 500;
}
.mt2{
    margin-top: 2em;
}
.mt3{
    margin-top: 3em;
}
.mt5{
    margin-top: 5em;
}
.mt8{
    margin-top: 8em;
}
.center{
    text-align: center;
}
@media screen and (min-width: 768px) {
    .pc_only02{
        display: block;
  }
    .sp_only02{
        display: none;
    }
  .widthsize {
    max-width: 1023px;
    margin-left: 5em;
    margin-right: 5em;
  }
}
@media screen and (min-width: 1024px) {
    .pc_only{
        display: block;
  }
    .sp_only{
        display: none;
    }
  .widthsize {
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
      padding-left: 5em;
      padding-right: 5em;
      box-sizing: border-box;
  }

}

/* ---------------------------------------------------------
  セクション 設定用
--------------------------------------------------------- */

/* h2 セクション相当 */
.l-sectionPrimary {
  padding-top: 80px;
  padding-bottom: 80px;
}

.l-sectionPrimary--narrow {
  padding-top: 40px;
  padding-bottom: 40px;
}


@media screen and (min-width: 768px) {
  .l-sectionPrimary {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .l-sectionPrimary--narrow {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
/* ---------------------------------------------------------
  ヘッダーパーツ
--------------------------------------------------------- */

.l-header {
  width: 100vw;
    padding-top: 14px;
  box-shadow: 0 1px 4px rgb(0 0 0 / 8%);
  background-color:#d55c82;
    color: #fff;
  /*position: fixed;
  top: 0;
  left: 0;
  z-index: 3;*/
}

.l-header__container {
  display: grid;
    box-sizing: border-box;
    gap: 8px;
    justify-content: center;
    position: relative;
}

.l-header__siteName {
  position: relative;
  z-index: 3;
    width: 200px;
    margin: auto;
}

.l-header__siteNameLink:hover {
  opacity: 0.7;
  transition: 0.3s all ease-in-out;
}

.header_txt{
    letter-spacing: -1px;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}
.sns_box{
    width: 70px;
    margin-bottom: 10px;
    position: absolute;
    right:10px;
    display: flex;
    gap:10px;
    top: 10px;
}
.sns_icon{
    width: 30px;
}
@media screen and (min-width: 400px) {
.l-header__siteName {
    width: 220px;
}
}
@media screen and (min-width: 768px) {
  /*.l-header {
    padding-left: 48px;
  }*/
.l-header__siteName {
    width: 280px;
}
.header_txt::before,
.header_txt::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background-color: #fff;
}
    .header_txt::before{
  left: -10px;
  transform: translateX(-100%) translateY(-50%);
    }
.header_txt::after {
  right: -13px;
  transform: translateX(100%) translateY(-50%);
    }
.sns_box{
    right: 20px;
}
}

@media screen and (min-width: 1024px) {
  .l-header {
    padding-top: 0;
    padding-bottom: 0;
  }

.l-header__container {
    gap:100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px 0;
    }
/*  .l-header__container {
    align-items: center;
  }*/
.l-header__siteName {
    width: 300px;
    margin: 0;
}
.header_txt{
    width: auto;
    margin-bottom: 0;
    font-weight: 200;
}
.sns_box{
    position:static;
}
}

/*


/* ---------------------------------------------------------
  フッターパーツ
--------------------------------------------------------- */
footer{
    margin-top: 5em;
  background-color:#d55c82;
    color: #fff;
    position: relative;
}
.f_sns_box{
    position: absolute;
    width: 70px;
    right:10%;
    display: flex;
    gap:10px;
    top: 10px;
}
.f_address{
    text-align: center;
    line-height: 2em;
    font-weight: 200;
}
.f_name{
    width: 300px;
    margin: 5em auto 1em;
}
.f_tel{
    font-size: 1.5em;
    padding-top: 25px;
}
.f_map{
    width: 50px;
    margin: auto;    
}
.l-footer__copyright {
  font-size: 12px;
  text-align: center;
  padding: 5em 0 2em;;
}

.l-footer__copyright small {
  font-size: inherit;
}
@media screen and (min-width: 1024px) {
}


