@charset "UTF-8";

html,body{
    font-size: 100%;
    height: auto;
    max-width: 100%;
    text-align: left;
}
body{
    background-color: #ffeedb;
    margin: 0;
}
header{
    display: flex;
    justify-content: space-between;
    padding: 1rem 5% 1rem 5%;
}
a {
  text-decoration: none;
}
p {
    font-size: 120%;
    color: #5b2908;
}
h1,h2,h3{
    color: #5b2908;
}
.logo{
    margin-left: 30px;
}
@media  screen and (max-width: 1200px) {
.logo{
    display: block;
    text-align: center;
    margin: 0 auto;
}
}

.sns-box {                          /*SNSの設定*/
display: flex;
gap: 50px;
border-radius: .2rem;
padding-top: 7px;
}

.btn-sns {
padding-top: 0.7rem;
padding-bottom: 0.5rem;
margin: 0 auto;
}

.btn-x img{
    padding: 7px;
    background-color: #000000;
}

                             /*SNSの設定終わり*/

nav{                                /*ナビゲーションの設定*/
    flex-wrap: wrap;
    background-color: #fff;
    list-style: none;
}
.main-nav{
    display: flex;
    justify-content: space-around;
    margin: 0 5% 0 5%;
    padding: 0;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
}
nav .main-nav li{
    display: inline-block;
    justify-content: space-around;
    text-align: center;
    font-size: 180%;
    line-height: 30px;
    text-decoration: none;
    color: #db6010;
    font-weight: bold;
    padding: 10px;
}
nav .main-nav a:link,.main-nav a:hover,.main-nav a:visited{
    color: inherit;
}
                            
.main-nav li a{                    /*ナビゲーションの動き*/
    position: relative;
}
.main-nav li a::after{
    content: "";
    position: absolute;
    top: 2.5rem;
    bottom: 0px;
    left: 1%;
    width: 100%;
    height: 2px;
    background: #db6010;
    transition: all .3s;
    transform: scale(0,1);
    transform-origin: center top;
}
.main-nav li.current a::after,
.main-nav li a:hover::after{
    transform: scale(1,1);
}

@media  screen and (min-width: 1201px) {
.header-sp,.sub-nav,.openbtn,.logo2{
    display: none;
}
}
@media  screen and (max-width: 1200px) {
.page-header,.logo,.main-nav,.sns-box{
    display: none;
}
.header-sp{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#nav-sp{
    position: fixed;
    z-index: 999;
    top: -120%;
    left: 50%;
    width: 50%;
    height: 70%;
    background: #fff7ed;
    transition: all 0.6s;
}
#nav-sp.panelactive{
    top: 0;
}
#nav-sp ul{
    position: absolute;
    z-index: 999;
    width: 70%;
    top: 50%;
    left: 45%;
    transform: translate(-50%,-50%);
}
#nav-sp li{
    list-style: none;
    text-align: center;
}
#nav-sp li a{
    color: #db6010;
    text-decoration: none;
    padding: 3% 0 5%;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 25px;
    font-weight: bold;
    border-bottom: 4px solid #db6010;
}
.openbtn{
    position: relative;
    z-index: 9999;
    background: #db6010;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    float: right;
    margin-top: 2%
}
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
	background-color: #fff7ed;
  	width: 45%;
}
.openbtn span:nth-of-type(1) {
	top:13px;	
}
.openbtn span:nth-of-type(2) {
	top:19px;
}
.openbtn span:nth-of-type(3) {
	top:25px;
}
.openbtn span:nth-of-type(3)::after {
	content:"Menu";
	position: absolute;
	top:5px;
	left:-2px;
	color: #fff;
	font-size: 0.6rem;
	text-transform: uppercase;
}
.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(3)::after {
	content:"Close";
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}
}
@media screen and (max-width: 650px) {
#nav-sp li a{
    font-size: 15px;
}
}
@media screen and (max-height: 780px) {
#nav-sp{
    height: 100%;
}
}
                                      /*ヘッダー・ナビゲーションの設定終了*/


/*書き始め*/

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: auto;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  width: 100%;
}
/*　背景画像設定　*/

.slider-item01 {
    background:url(../img/mainphoto1.jpg);
    transform: scale(0.9);
    margin-right: 40px;
}

.slider-item02 {
    background:url(../img/mainphoto2.jpg);
    transform: scale(0.9);
    margin-right: 40px;
}

.slider-item03 {
    background:url(../img/mainphoto3.jpg);
    transform: scale(0.9);
    margin-right: 40px;
}

.slider-item {
  aspect-ratio: 16 / 9;
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height: auto;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}


/*矢印の設定*/

.slick-prev, 
.slick-next {
    position: absolute;
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #db6010;/*矢印の色*/
    border-right: 2px solid #db6010;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-50px 0 0 0;/*ドットの位置*/
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}



/*メインコンテンツ*/

.storename h1{
    color: #fff;
    font-size: 150px;
    text-align: center;
}
.storename h2{
    color: #fff;
    font-size: 50px;
    text-align: center;
}

/*お店について*/
.about,.mitochan {
  margin: 2% 10% 2% 10%;
  padding: 1% 2% 1% 2%;
  font-family: "IBM Plex Sans JP",sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #fff;
}
.section {
  margin-bottom: 80px;
}
.about h2,.mitochan h2 {
  text-align: center;
  font-size: 225%;
}
.h2-1{
  align-items: center;
  display: flex;
  justify-content: center;
}
.h2-1::before,
.h2-1::after {
  content: "";
  height: 5px;
  background-color: #db6010;
  flex-grow: 1;
}
.h2-1::before {
  margin-right: 15px;
}
.h2-1::after {
  margin-left: 15px;
}

.about h3 {
  position: relative;
  font-size: 180%;
  font-weight: bold;
  padding-bottom: 10px;   /* 文字と線の間の余白 */
  border-bottom: 4px solid #db6010; /* ← 線の太さと色 */
  width: 100%;            /* ← セクションの端まで線を伸ばす */
  box-sizing: border-box;
}
.about p,.mitochan p{
    font-size: 120%;
    color: #5b2908;
}

/* 写真エリア */

.about_img ,.mitochan_img{
    display: flex;
    justify-content: space-between;
    margin-bottom: 3%;
}

.about img,.mitochan img{
    width: 30%;
    height: auto;
    border-radius: 10px;
}
@media screen and (max-width:750px){
    .about_img,.mitochan_img{
        display: block;
        text-align: center;
    }
}

/* スマホ・タブレット対応 */
@media screen and (max-width: 1280px) {
.about,.mitochan{
    margin-left: 2%;
    margin-right: 2%;
}
}
@media screen and (max-width: 750px) {
.about_img{
    display: block;
    text-align: center;
}
.about_img img,.mitochan_img img{
    width: 400px;
    height: auto;
    margin: 3% 0 3% 0;
}
}
@media screen and (max-width: 550px) {
.about_img img,.mitochan_img img{
    width: 80%;
    height: auto;
}
}

/*みとちゃんグッズ*/
/* 写真エリア */
.mitochan_img{
    display: flex;
    justify-content: space-around;
    margin-bottom: 3%;
    align-items: center;
}
@media screen and (max-width:750px){
    .mitochan_img{
        display: block;
        text-align: center;
    }
}

/*各種情報*/
.information {
  margin: 2% 10% 2% 10%;
  padding: 1% 2% 1% 2%;
  font-family: "IBM Plex Sans JP",sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #fff;
}
.section {
  margin-bottom: 80px;
}
.information h2 {
  text-align: center;
  font-size: 225%;
}
.h2-2{
  align-items: center;
  display: flex;
  justify-content: center;
}
.h2-2::before,
.h2-2::after {
  content: "";
  height: 5px;
  background-color: #db6010;
  flex-grow: 1;
}
.h2-2::before {
  margin-right: 15px;
}
.h2-2::after {
  margin-left: 15px;
}
.information h3 {
  position: relative;
  font-size: 180%;
  color: #5b2908;
  font-weight: bold;
  padding-bottom: 10px;   /* 文字と線の間の余白 */
  border-bottom: 4px solid #db6010; /* ← 線の太さと色 */
  width: 100%;            /* ← セクションの端まで線を伸ばす */
  box-sizing: border-box;
}
.information p{
    font-size: 120%;
    color: #5b2908;
}
.information span{
    font-size: 80%;
}
@media screen and (max-width: 1280px) {
.information{
    margin-left: 2%;
    margin-right: 2%;
}
}


/*保護者の方向け*/
.parents{
  margin: 2% 10% 2% 10%;
  padding: 1% 2% 1% 2%;
  font-family: "IBM Plex Sans JP",sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #fff;
}
.section {
  margin-bottom: 100%;
}
.parents h2 {
  text-align: center;
  font-size: 225%;
}
.h2-3{
  align-items: center;
  display: flex;
  justify-content: center;
}
.h2-3::before,
.h2-3::after {
  content: "";
  height: 5px;
  background-color: #db6010;
  flex-grow: 1;
}
.h2-3::before {
  margin-right: 15px;
}
.h2-3::after {
  margin-left: 15px;
}
.parents p{
    font-size: 120%;
    color: #5b2908;
}

/* 写真エリア */
.parents_info{
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-bottom: 3%;
}
.parents_info img{
  border-radius: 10px;
}
.parents_data{
    display: flex;
    align-items: center;
}
@media screen and (max-width: 980px) {
.parents_info,.parents_data{
    display: block;
    margin: 3% 0 3% 0;
    text-align: center;
}
}
/* スマホ・タブレット対応 */
@media screen and (max-width: 1280px) {
.parents{
    margin-left: 2%;
    margin-right: 2%;
}
}
@media screen and (max-width: 750px) {
.parents_info{
    display: block;
    text-align: center;
}
.parents_info img{
    width: 400px;
    height: auto;
    margin: 3% 0 3% 0;
}
}
@media screen and (max-width: 550px) {
.parents_info img{
    width: 80%;
    height: auto;
}
}



/*シニアの方向け*/
.senior {
  margin: 2% 10% 2% 10%;
  padding: 1% 2% 1% 2%;
  font-family: "IBM Plex Sans JP",sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #fff;
}
.section {
  margin-bottom: 80px;
}
.senior h2 {
  text-align: center;
  font-size: 225%;
}
.h2-4{
  align-items: center;
  display: flex;
  justify-content: center;
}
.h2-4::before,
.h2-4::after {
  content: "";
  height: 5px;
  background-color: #db6010;
  flex-grow: 1;
}
.h2-4::before {
  margin-right: 15px;
}
.h2-4::after {
  margin-left: 15px;
}
.senior p{
    font-size: 120%;
    color: #5b2908;
}

/* 写真エリア */
.senior_info{
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-bottom: 3%;
}
.senior_info img{
  border-radius: 10px;
}
.senior_data{
    display: flex;
    align-items: center;
}
@media screen and (max-width: 980px) {
.senior_info,.senior_data{
    display: block;
    margin: 3% 0 3% 0;
    text-align: center;
}
}
/* スマホ・タブレット対応 */
@media screen and (max-width: 1280px) {
.senior{
    margin-left: 2%;
    margin-right: 2%;
}
}
@media screen and (max-width: 750px) {
.senior_info{
    display: block;
    text-align: center;
}
.senior_info img{
    width: 400px;
    height: auto;
    margin: 3% 0 3% 0;
}
}
@media screen and (max-width: 550px) {
.senior_info img{
    width: 80%;
    height: auto;
}
}


/*法人の方向け*/
.corporation {
  margin: 2% 10% 2% 10%;
  padding: 1% 2% 1% 2%;
  font-family: "IBM Plex Sans JP",sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #fff;
}
.section {
  margin-bottom: 80px;
}
.corporation h2 {
  text-align: center;
  font-size: 225%;
}
.h2-5{
  align-items: center;
  display: flex;
  justify-content: center;
}
.h2-5::before,
.h2-5::after {
  content: "";
  height: 5px;
  background-color: #db6010;
  flex-grow: 1;
}
.h2-5::before {
  margin-right: 15px;
}
.h2-5::after {
  margin-left: 15px;
}


/* 写真エリア */
.corporation_info{
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-bottom: 3%;
}
.corporation_info img{
  border-radius: 10px;
}
.corporation_data{
    display: flex;
    align-items: center;
    color: #5b2908;
    font-size: 120%;
}
@media screen and (max-width: 980px) {
.corporation_info,.corporation_data{
    display: block;
    margin: 3% 0 3% 0;
    text-align: center;
}
}

/* スマホ・タブレット対応 */
@media screen and (max-width: 1280px) {
.corporation{
    margin-left: 2%;
    margin-right: 2%;
}
}
@media screen and (max-width: 750px) {
.corporation_info{
    display: block;
    text-align: center;
}
.corporation_info img{
    width: 400px;
    height: auto;
    margin: 3% 0 3% 0;
}
}
@media screen and (max-width: 550px) {
.corporation_info img{
    width: 80%;
    height: auto;
}
.logo2 img{
    width: 100px;
    height: auto;
}
.about p,.mitochan p,.information p,.parents p,.senior p,.corporation p{
    font-size: 100%;
}
.about h2,.mitochan h2,.information h2,.parents h2,.senior h2,.corporation h2{
  font-size: 160%;
}
.about h3,.mitochan h3,.information h3,.parents h3,.senior h3,.corporation h3{
  font-size: 120%;
}
.main img{
    width: 80%;
    height: auto;    
}
}





.footer{                                          /*フッターの設定*/       
    flex-wrap: wrap;
    background-color: #fff7ed;
    list-style: none;
    padding: 1% 10% 1% 10%;
    margin: 0;
}
.footerA{
    display: flex;
    justify-content: space-around;
    font-size:100%;
    font-weight: bold;
    text-align: left;
    text-decoration: none;
}
.footer1,.footer2,.footer3{
    margin: 0;
    font-family: "IBM Plex Sans JP", sans-serif;
}
.footerB{
    display: flex;
    justify-content: center;
    background-color: #5b2908;
    list-style: none;
}
.footerB h3{
    background-color: #5b2908;
    color: #fff;
    margin: 0;
    padding: 10px 0 10px 0;
}
.footer3{
    text-align: center;
    font-size: 80%;
    font-weight: bold;
}
.footer3 a:link,.footer3 a:hover,.footer3 a:visited{
    color: inherit;
}
@media screen and (max-width:700px) {
.footerA{
    display: none;
}
.footer3{
    font-size: 60%;
}
}
/*フェードアップアニメーション*/
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.about{
    animation-name:fadeUpAnime;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}