@charset "UTF-8";

body{
    font-size: clamp(14px, 2.5vw, 16px);
    animation-name:fadeInAnime;
    animation-duration: 2s;
    animation-fill-mode:forwards;
    opacity: 0;
	background-color: var(--green--02);
    line-height: 1.8;
	overflow-x: auto;
	text-align:justify;
	-webkit-overflow-scrolling: touch;
	color: #231815;
	font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ヒラギノ角ゴシック', 'Hiragino Sans', 'メイリオ', Meiryo, sans-serif;
	font-weight: 400;
    }
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
html {
	font-weight: 400;
	font-style: normal;
  }

@import url('https://fonts.googleapis.com/css?family=Kiwi Maru&text=0123456789');
*{box-sizing: border-box}
.fb{
	font-weight: 500;
}
a {
    transition: 0.5s;
}
a:hover {
    opacity: 0.5;
}
a.link-line{
	border-bottom: 1px solid var(--pink);
	padding-bottom: 1px;
}
:root {
	--pink: #ff75a3;
	--blue: #006bb9;
	--green--01: #479441;
	--green--02: #99c528;
	--orange: #f49e00;
	--yellow: #fed600;
	--wh: #fff;
	--base: #545251;
	--font-b: 500;
}

/* カラー */
.color-pink{ color:var(--pink)}
.color-green{ color:var(--green)}
.color-orange{ color:var(--orange)}
.color-blue{ color:var(--blue)}
.back_orange{background-color: var(--orange)}
.back_green{background-color: var(--green)}
.back_pink{background-color: var(--pink)}
.back_blue{background-color: var(--blue)}
.back-wh{background-color: #fff;}

.back_yellow_lt{ background-color: #fffae3; border-radius: 40px; margin: 60px 5% 0 ; padding: 60px 0;}
.back_green_lt{ background-color: #edf7ea; border-radius: 40px; margin: 60px 5% 0 ; padding: 60px 0;}
.back_pink_lt{ background-color: #fdefea; border-radius: 40px; margin: 60px 5% 0 ; padding: 60px 0;}
.back_blue_lt{ background-color: #d6f1fa; border-radius: 40px; margin: 60px 5% 0 ; padding: 60px 0;}

/* タイトルまわり */
.ttl_group{
	text-align: center;
}
.ttl_group img{
	width: 30px;
} 
.ttl_group .sub{
	font-size: 16px;
	margin-bottom: -15px;
} 
.ttl_group .ttl--01{
	font-size: clamp(26px, 2.5vw, 40px)
} 
.ttl--02{/*セクションのタイトル*/
	font-size: clamp(20px, 2.5vw, 33px);
}

/* テキストインデント */
.text_indent--01{
	text-indent: -1em;
	margin-left: 1em;
}

/* テキスト */
.txt--01{font-size: clamp(25px, 2.5vw, 48px);}    
.txt--02{font-size: clamp(16px, 2.5vw, 23px);}    
.txt--03{font-size: clamp(14px, 2.5vw, 18px);}    
.txt--04{font-size: clamp(14px, 2.5vw, 21px);}    
.txt02{font-size: 20px;}
.txt03{font-size: 13px;}

/* マージン */
.mt10px{margin-top: 10px}
.mt20px{margin-top: 20px}
.mt30px{margin-top: 30px !important}

.mb10{margin-bottom: 10px}
.mb20{margin-bottom: 20px}
.mb30{margin-bottom: 30px}

.pt--01{padding-top:2%;}
.pt--02{padding-top:5%;}
.pt--03{padding-top:3%;}
.pt--04{padding-top:7%;}
@media screen and (max-width: 767px) {
.flex_column{
	flex-flow: column;
}
.flex-start{
	align-items: center !important;
}
}/* //media */

/* 飾り */
.marker {
    background: linear-gradient(transparent 50%, yellow 50%);
	font-size: 18px;
}

/* レイアウト関連 wrap flex center img100*/
.contents_wrap {
  width: min(1100px, 90%);
  margin-inline: auto;
}
.box_center{
	display: table;
	margin-inline: auto;
}
.position-re{
	position: relative
}
.flex--01{
	display: flex;
	gap: 50px;
}
.flex--02{
	display: flex;
	gap: 30px;
}
.flex-direction-row{
  flex-direction: row-reverse;
}
.justify--01{
	justify-content: space-evenly;
}
.justify--02{
	justify-content: center;
}
.justify--03{
	justify-content: space-around;
}
.align--01{
	align-items: center;
}
.border_none{
	border: none !important
}
@media screen and (min-width:768px) and ( max-width:1200px) {
.wrap{
	padding-inline: 0%;
}
.wrap--02{
	padding-inline: 5%;
}
}
@media screen and (max-width: 767px) {
.flex_column{
	flex-flow: column;
}
.flex-start{
	align-items: center !important;
}
}/* //media */

.t_center{text-align: center}
.t_center_left{text-align: center;}
.t_right{text-align :right}
@media screen and (max-width: 767px) {
.t_center_left{text-align: left !important;}
}/* //media */

.img100{ width: 100%}

/* ボタン */
.btn--01 {
	display: table;
	margin-inline: auto;
	margin-top: 20px;
}
.btn--01 a {
  display: block;
  color: var(--wh);
  padding: 5px 20px 6px;
  border-radius: 19px;
}
.btn--01 a:hover {
  background-color: rgb(153, 153, 153, 1);
  opacity: 1;
}
.btn--pink a{
	background-color: var(--pink)
}
.btn--orange a{
	background-color: var(--orange)
}
.btn--green a{
	background-color: var(--green)
}
.btn--02 {
  border-radius: 30px;
  padding: 5px 35px 6px;
  font-size: clamp(20px, 2.5vw, 30px);
  color: #fff;
  display: table;
  margin-inline: auto;
	text-align: center;
}
/* ====================================================
 ヘッダー 
 ====================================================*/
#header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
/* スクロールしても他のコンテンツの下にならないようにする */
	z-index: 10;
/* アニメーションの変化時間 */
	transition: 0.5s;
	display: flex;
	align-items: center;
	padding-inline: 5%;
	z-index: 3;
	font-size: 15px;
  	letter-spacing: 1px;
}
#header .header_logo--01 img{
	display: block;
  	width: 300px;
}
#header .header_logo--02 img{
	display: none;
}
#header .header_nav div ul{
	display: flex;
	gap: 15px 30px;
	flex-wrap: wrap;
	margin-left: 50px;
}
#header .header_nav div ul li:before{
	content: "●";
	color: var(--green--01)
}
#header .header_nav div ul li.current-menu-item{
	border-bottom: 2px dotted var(--green--01);
  	padding-bottom: 2px;
}
#header.scroll-nav .header_nav div ul li.current-menu-item{
	border-bottom: 2px dotted #f9f3e6;
  	padding-bottom: 2px;
}
#header .header_nav_list{
	display: flex;
	gap: 20px;
	font-size: 15px;
	line-height: 1.3;
	text-align: center;
	margin-left: 80px;
}
#header .header_nav_list img{
	height: 20px;
}
.side_nav{
	position: fixed;
  right: 0;
  top: 100px;
  z-index: 3;
}
.side_nav > div a {
  border-radius: 10px 0 0 10px;
  color: #fff;
  writing-mode: vertical-rl;
  padding: 30px 10px;
  letter-spacing: 3px;
}
.side_nav > div.side_nav_item--01 a{
	background-color: var(--blue)
}
.side_nav > div.side_nav_item--02 a{
	background-color: var(--orange)
}
.side_nav > div.side_nav_item--03 a{
	background-color: var(--pink)
}


@media screen and (min-width:768px) and ( max-width:1200px) {

#header .header_nav_list {
  margin-left: 10px;
}
}
/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
#header.scroll-nav {
	background-color: var(--green--01);
	height: 90px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	color: #f9f3e6;
	line-height: 1
}
#header.scroll-nav .header_logo--01 img{
	display: none;
  	width: 300px;
}
#header.scroll-nav .header_logo--02 img{
	display: block;
  	width: 400px;
}
#header.scroll-nav .header_nav div ul li::before {
	color: var(--green--02)
}
.contact-link{
	position: fixed;
	top: 150px;
	right: 0;
	z-index: 2;
}
.contact-link a{
	background-color: var(--green);
	display: block;
	padding: 20px 20px;
	border-radius: 20px 0 0 20px;
}
.contact-link a:hover{
	opacity: 1;
	background-color: var(--pink);
}



/* ====================================================
 フッター
 ====================================================*/
#footer{
	background-color: var(--green--01);
	padding: 5%;
	margin-top: 90px;
	color: #f9f3e6;
}
#footer .footer_wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#footer .footer_ttl h1{
	width: 400px;
}
#footer .footer_nav ul{
	display: flex;
	font-size: 14px;
}
#footer .footer_nav ul li + li:before{
	content: "｜"
}

/* コンテンツ
 ====================================================*/
section .head{
	margin: 50px auto 40px;
	text-align: center;
}
section .head p{
	font-size: 11px;
}
section .head h2{
	display: inline-block;
	border-bottom: 1px solid var(--base);
	font-size: clamp(24px, 3vw, 40px);
	line-height: 1.4;
	white-space: nowrap
}
@media screen and (max-width: 767px) {
	section .head {
  margin: 30px auto 20px;
}
}
.box01{
	width: min(1160px, 90%);
	margin: 90px auto;
	padding: 1px 5% 50px;
	border-radius: 30px;
}
.box02{
	width: min(1000px, 100%);
  	padding: 30px 5% 40px !important;
  	border-radius: 30px;
}
.box03{
	width: min(800px, 100%);
  	padding: 30px 0 40px;
	margin: 0 auto;
  	border-radius: 30px;
}
@media screen and (max-width: 767px) {
.box01-sp {
  margin: -50px auto;
}
}


/* 横に無限スクロール
 ====================================================*/
 @keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}
.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
}

.scroll-infinity__list {
    display: flex;
    padding: 0
}
.scroll-infinity__list li{
	width: 360px;
  	padding-right: 20px;
    list-style: none;

}
.scroll-infinity__list li img{
  	width: 100%;
	border-radius: 20px;
}
.scroll-infinity__list--left {
    animation: infinity-scroll-left 40s infinite linear 0.5s both;
}

/*540px以下*/
@media only screen and (max-width: 540px) {
.scroll-infinity__list li{
  width: 230px;
  padding-right: 20px;
      list-style: none;
}
}

/* ローディング画面 */
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background:#fff;
    text-align:center;
    color:#fff;
  }
  
  /* Loading画像中央配置　*/
  #splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Loading アイコンの大きさ設定　*/
  #splash_logo img {
    width:170px;
  }
  
/* 下で止まるページトップ
 ====================================================*/
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom: 30px;
	width: 60px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

/* スマホ　フッター固定
 ====================================================*/
/*リンクを右下に固定*/
#page-sp {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-sp.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-sp.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

/* ヘッダー追従のための
 ====================================================*/

@media screen and (max-width: 767px) {
.sp-kotei{
  z-index: 2;
}
.sp-kotei ul{
	position: fixed;
    display: flex;
    bottom: 5px;
    z-index: 2;
    justify-content: center;
    gap: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
	padding: 0 1%;
}
.sp-kotei img{
  width: 100%;
}
}

/* ナビゲーションのためのCSS
 ====================================================*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background: #fffae3;
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	width: 100%;
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/
#g-nav li{
	list-style: none;
    text-align: center; 
}
#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:30px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
	background-color: var(--green);
	border-radius: 10px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
	background-color: var(--yellow);
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    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: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* ====================================================
 sp　ここから
 ====================================================*/
@media screen and (max-width: 767px) {

/* sp カラー */
.back_yellow_lt{ border-radius: 30px; margin: 40px 0% 0 ; padding: 10% 5%;}
.back_green_lt{ border-radius: 30px; margin: 40px 0% 0 ; padding: 10% 5%;}
.back_pink_lt{ border-radius: 30px; margin: 40px 0% 0 ; padding: 10% 5%;}
.back_blue_lt{ border-radius: 30px; margin: 40px 0% 0 ; padding: 10% 5%;}

/* sp タイトルまわり */
.ttl_group img{
	width: auto !important;
	height: 35px;
} 

/* ====================================================
 sp ヘッダー taro
 ====================================================*/
#header {
	background-color: var(--green--01);
	height: 80px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	color: #f9f3e6
}
#header.scroll-nav {
  height: 80px;
}
.openbtn{
	top: 18px;
}
#header .header_logo--02{
	width: 300px;
}
#header .header_logo--02 img{
	display: block;
}
.side_nav {
    position: fixed;
    right: auto;
    bottom: 0;
    top: auto;
    z-index: 3;
    display: flex;
    width: 100%;
}
.side_nav > div{
	width: calc(100% / 3)
}
.side_nav > div a {
  border-radius: 0px 0 0 0px;
  writing-mode: revert;
  padding: 10px 0px;
  display: block;
  text-align: center;
}
/* ====================================================
 sp フッター
 ====================================================*/
#footer .footer_ttl h1 {
  width: 300px;
}
#footer .footer_wrap {
  padding: 30px 0%;
	justify-content: center;
}
#footer .map {
  height: 300px;
}
#footer .footer_nav ul {
  display: flex;
  font-size: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
address {
  text-align: center;
}

}/* // sp　ここまで */