@charset "utf-8";
/* CSS Document */

main{ margin: 0 auto; width: 100%;max-width:1200px;}
@media screen and (max-width: 750px) {main{padding-top: 80px;}}
	a.anchor{
    display: block;
    padding-top: 200px;
    margin-top: -200px;
}
/*ページトップ*/
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #b23ea6;
    /*border: solid 2px #000;*/
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}

/*ヘッダー*/
/*pc*/
.top_koteo{margin: 0 auto; position: fixed;width: 100%; background-color: #fff;}
header{width: 100%; background-color: #fff;}
.header{margin: 0 auto;width: 1200px; padding: 1.0em 0;}

.header_left{float: left; width: 50%;}
.header_right{float: right;  width: 50%; text-align: right;}
.h1{color: #b23ea6;font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";font-size:2.2em; font-weight: bold;}

.header_tit{color: #b23ea6;font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";font-size:1.4em;  }

.button-2 {
    justify-content: center;
    align-items: center;
    width: 150px;
    margin:0 auto;
    padding: .2em;
    border: none;
    border-radius: 25px;
    background-color: #b23ea6;
    color: #fff;
    font-weight: 600;
    font-size: 1em;display:inline-block;
}

.button-2:hover {
    background-color: #v;
}

.menu_pc{width: 100%;background-color: #b23ea6;}
.menu_item{margin: 0 auto; width: 1200px; padding: 0.5em 0; color: #fff; font-size: 1.2em;text-align: right;}
.menu_item a{color: #fff; }
/*スマホheader*/
.c-header {
  align-items: center;
  background-color: #fff; /* カスタマイズしてください */
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem; /* カスタマイズしてください */
  width: 100%;position: fixed; /* ヘッダーを固定する */
top: 0; /* 上部から配置の基準位置を決める */
left: 0; /* 左から配置の基準位置を決める */
}

.c-header__logo {
  color: #b23ea6; /* カスタマイズしてください */
  min-width: 80px; /* カスタマイズしてください */
  text-decoration: none;
}

.c-header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}

.c-header__list-item {
  list-style: none;
  text-decoration: none;
}

.c-header__list-link {
  color: #b062a4; /* カスタマイズしてください */
  display: block;
  margin-right: 20px; /* カスタマイズしてください */
  text-decoration: none;
  padding: 10px 0px; /* カスタマイズしてください */
}

.c-header__list-link:hover {
  filter: opacity(0.6); /* カスタマイズしてください */
}

.c-hamburger-menu {
  position: relative;
}

@media screen and (max-width: 750px) {
  .c-hamburger-menu__list {
    background-color: #fff; /* カスタマイズしてください */
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem; /* カスタマイズしてください */
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s; /* カスタマイズしてください */
    top: 100%;
    width: 100%;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #b062a4; /* カスタマイズしてください */
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; /* カスタマイズしてください */
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 750px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; /* カスタマイズしてください */
    height: 32px; /* カスタマイズしてください */
    justify-content: center;
    width: 32px; /* カスタマイズしてください */
  }
}

.c-hamburger-menu__button-mark {
  background-color:#b062a4; /* カスタマイズしてください */
  display: block;
  height: 1px; /* カスタマイズしてください */
  transition: 0.3s; /* カスタマイズしてください */
  width: 20px; /* カスタマイズしてください */
}

@media screen and (max-width: 750px) {
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
}

/*デイ便*/
.inf_01{margin:0 auto; padding:1.0em 0;}

.kasaneru{
  position: relative;/*親要素にrelative*/
}
.inf_01_tit{position: absolute;/*重ねたい子要素にabsolute*/
  top:45%;
  left: 10%;text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
	color: #b23ea6;font-size:2.8em; font-weight: bold;}

@media screen and (max-width: 768px) {.inf_01_tit{top:20%;
  left: 7%;font-size: 1.8em;}}

.inf_01_txt{position: absolute;
  top:60%;left:10%;
	color:#b062a4;font-size:1.2em;}
.inf_01_txt span{font-size:0.8em;}

@media screen and (max-width: 768px) {.inf_01_txt{top:30%;
  left: 7%;}}

/*運営方針*/
.inf_02{margin:0 auto; background-color:#f8ecf6; width: 100%;}

.inf_02_txt{position: absolute;top:-2%;
  left: 5%; color: #b062a4;font-size:2.0em; font-weight: bold;}

@media screen and (max-width: 768px) {.inf_02_txt{top:-2%;}}

.inf_02_left{float: left; width: 50%;padding-left: 8%; padding-top: 5%;}
.inf_02_right{float: right;width: 40%;}
.inf_02_right img{margin: 0 auto;}

@media screen and (max-width: 768px) {.inf_02_left{float: left; width: 90%; padding-top: 10%;padding-left: 5%;}
.inf_02_right{float:left;width: 100%;}.inf_02_right img{margin: 0 auto;width: 80%; text-align: center;}}

.list3{
  list-style:none;
}
.list3 li{
  position:relative;
}
.list3 li:before{
  content:"◆";
  display:block;
  position:absolute;
  left:-1em;
  color:#b23ea6;
}

/*手作り昼食*/

.inf_03{margin:0 auto; padding:1.0em 0;}

.inf_03_tit{position: absolute;/*重ねたい子要素にabsolute*/
  top:15%;
  left: 10%;text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
	color: #b23ea6;font-size:2.8em; font-weight: bold;line-height: 1.0em;}

@media screen and (max-width: 768px) {.inf_03_tit{top:10%;
  left: 7%;font-size: 1.3em;line-height: 1.5em;}}

.inf_03_txt{position: absolute;
  top:10%;
  left: 70%;color: #b062a4;}
.inf_03_txt span{font-size:1.2em;}

@media screen and (max-width: 768px) {.inf_03_txt{top:30%;
  left: 7%;text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;}.inf_03_txt span{font-size:1.1em;}}

/*年間行事*/
.inf_04{margin:0 auto; padding:1.0em 0;}

.inf_04_tit {
  padding: 0.5em;/*文字周りの余白*/
  color: #b23ea6;/*文字色*/
  background: #f8ecf6;/*背景色*/
  font-size:2.8em;
	text-align: center;
}

@media screen and (max-width: 768px) {.inf_04_tit{font-size: 1.3em;}}

.inf_04_left{float: left; width: 50%;}
.inf_04_left_l{float: left; width: 50%;margin-top: 40px;}
.inf_04_left_r{float: right; width: 50%;color: #b062a4;margin-top: 40px;}
.inf_04_right{float: right;width: 50%;color: #b062a4;}

@media screen and (max-width: 768px) {.inf_04_left{float: left; width: 100%;}
.inf_04_left_l{float: left; width: 100%;}
.inf_04_left_r{float: right; width: 100%;}
.inf_04_right{float: right;width: 100%;}}

/*一日の流れ*/
.inf_05{margin:0 auto; padding:2.0em 0;}
.inf_05_left{float: left; width: 60%;color: #b062a4; line-height: 200%;}
.inf_05_right{float: right;width: 40%;}

@media screen and (min-width: 769px) {.inf_05_left{font-size: 1.3em;}.inf_05_left span {font-size: 0.8em; line-height: 100%;}}

@media screen and (max-width: 768px) {.inf_05_left{float: left; width: 100%;color: #b062a4;}
	.inf_05_right{float: left;width: 100%;}.inf_05_right img{width: 32%;}}

/*ヘルパーステーション綾*/
.inf_06{background-image: url("../img/tit_01_b.png"); background-position: top center; background-repeat: no-repeat;height: 274px;}
.inf_06_tit{text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
	color: #b23ea6;font-size:4.5em; font-weight: bold; padding:80px 0 0 20px;}

@media screen and (max-width: 768px) {.inf_06{
background-size:cover; height: 100vh;}.inf_06_tit{font-size: 1.4em; padding:20px 0 0 20px;}}

.inf_06_left{float: left; width: 50%;}
.inf_06_right{float: right;width: 50%;}

@media screen and (max-width: 768px) {.inf_06_left{float: left; width: 100%;}
	.inf_06_right{float: left;width: 100%;}}

.inf_txt{text-align: left;font-size: 1.5em;}
.inf_txt span{font-size: 0.8em;}
@media screen and (max-width: 768px) {.inf_txt{font-size: 1.2em;}}

.box2 {
    padding: 0.5em 1em;
    margin: 2em 0;
    background: #FFF;
    border: solid 6px #f8ecf6;/*線*/
    border-radius: 10px;/*角の丸み*/
	width: 90%;
}
.box2 p {
    margin: 0; 
    padding: 0; text-align: left;
}

/*施設情報*/
.inf_07{margin: 0 auto; background-color: #f3f3f3;}
.inf_07_left{float: left; width: 70%;}
.inf_07_right{float: right;width: 30%;}

@media screen and (max-width: 768px) {.inf_07_left{float: left; width: 100%;}
	.inf_07_right{float: left;width: 100%;}}

.inf_07_tit{text-align: center;color: #b23ea6; font-size: 2.0em;padding-top: 40px;}
@media screen and (max-width: 768px) {.inf_07_tit{font-size: 1.3em;}}

.inf_07_txt{text-align: left;font-size: 1.3em;padding-top: 40px; line-height: 200%;}
@media screen and (min-width: 768px) {.inf_07_txt span{font-size: 1.1em;}}
@media screen and (max-width: 768px) {.inf_07_txt{font-size: 1.1em;}}

.inf_08_left{float: left; width: 60%;}
.inf_08_right{float: right;width: 40%;}

@media screen and (max-width: 768px) {.inf_08_left{float: left; width: 100%;}
	.inf_08_right{float: left;width: 100%;}}

/*footer*/

.footer{ margin: 0 auto; width: 100%;background-image: url("../img/footer.jpg"); background-position: bottom; background-repeat: no-repeat; background-size: 100%;}

.inf_09{margin: 0 auto; max-width: 1200px; padding-top: 80px;}
.inf_09_tit{text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
	color: #b062a4;font-size:4.5em; font-weight: bold; padding:80px 0 0 20px;}

@media screen and (max-width: 768px) {.inf_09{
background-size:cover; height: 100vh;}.inf_09_tit{font-size: 1.4em; padding:20px 0 0 20px;}}

.inf_09_left{float: left; width: 60%; color: #b062a4;}
.inf_09_right{float: right;width: 40%; color: #b062a4;}
@media screen and (max-width: 768px) {.inf_09_left{float: left; width: 100%;}
	.inf_09_right{float: left;width: 100%;}}
