@charset "utf-8";


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap');

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*lightbox.cssの読み込み
---------------------------------------------------------------------------*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.css);


/*opa1のキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}



/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	height: 100%;
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	html, body {
		font-size: 10px;
	}

	}/*追加指定ここまで*/

body {
	font-family: "M PLUS 1", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-weight: 300;
	font-optical-sizing: auto;
	letter-spacing: 0.1rem;
	text-indent: 0.1rem;
	-webkit-text-size-adjust: none;
	margin: 0;padding: 0;
	line-height: 2.5;
	background: #fd84b7;
	color: #fff;			
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li {margin: 0;padding: 0;
margin-bottom: 10px;}
nav ul {list-style: none;}
h1,h2,h3,h4 {font-weight: 400;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;
pointer-events: none;
-webkit-user-drag: none;
  -khtml-user-drag: none; 
  -moz-user-drag: none;
}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}
strong {font-weight: 500;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #863765;	
	transition: 0.3s;
}

a:hover {
	text-decoration: none;
}


/*header（ロゴとメニューが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 500px;	
	padding: 0 2vw;		
	margin-top: 5vw;	
	text-align: center;
}

/*ロゴ*/
header #logo img {display: block;}
header #logo {
	margin: 0;
	padding: 5rem 2rem;
	border-radius: 5px;
}


/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	header {
		position: fixed;
		left: 0px;
		top: 0px;
	}

	}

	/*画面の高さが500px以下の追加指定*/
	@media screen and (max-height:500px) {

	header {
		position: absolute;
	}    
	}/*


/*mainブロック（右側のsectionを囲むブロック）
---------------------------------------------------------------------------*/

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	main {
		margin-left: 500px;
	}

	}



main h2 {
	font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: -10px;
}


main h3 {
	font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: -10px;
}
main h4 {
	font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
}



/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;
margin-top: 50px;}
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}
    
/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}


/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar ul {
	margin: 3rem 0;
     width: 200px;
    margin-left: 100px;
    margin-top: -20px;
}


#menubar nav a {
	text-decoration: none;display: block;
	background: #fd84b7;
	border: 1px solid rgba(255,255,255,0.3);
	color: #fff;		
	padding: 1rem;	
	margin: 0.5rem 0;	
	border-radius: 5px;	
    font-size: 15px;
}

#menubar nav a:hover {
	background: #ffbde1;
	border: 1px solid rgba(255,255,255,0.9);
}

/*900px以下画面でのメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 60%;
	height: 100%;
	padding-top: 80px;
	background: rgba(255, 255, 255, 0.8);	
	animation: animation1 0.2s both;	
}
.small-screen #menubar ul {
	margin: 3rem;
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 15px;		
	top: 15px;			
	padding: 16px 14px;
	width: 60px;	
	height: 60px;		
	display: flex;			
	flex-direction: column;	
	justify-content: space-between;
	background: #fd84b7;
    border-radius: 10%;
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;
	border-top: 1.5px solid #fff;
}

#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;
	width: 20px;			
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}


/*メニュー内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
ul.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	justify-content: center;
}
ul.icons li {
	margin-right: 10px;
}
ul.icons i {
	font-size: 50px;
}


.flex {
  display: flex; 
    margin-top: 0px;
}
.flex .image {
  width: 50%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.flex .right {
  margin: 0 0 0 20px;
  padding: 0;
}
.flex .title {
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 18px;
}
.flex .text {
  margin: 10px 0 0;
  padding: 0;
}




/*section
---------------------------------------------------------------------------*/
/*フェード設定*/
.section::before {
	opacity: 0; 
	transition: opacity 1s;
}
.section.active::before {
	opacity: 1;
}
.section.inactive::before {
	opacity: 0;
}

/*section要素*/
section {
	padding: 2vw 6vw;
}


#section1,#section2,#section3,#section4 {
	min-height: calc(100dvh - 50px);	
	margin-bottom: 50px;	
	padding: 5vw;			
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	#section1,#section2,#section3,#section4 {
		border-radius: 3vw 0 0 3vw;
	}

	}


.faq {
	padding: 0 20px 10px;
     font-weight: bold;
}

 .faq dt {
     line-height: 10px;
     font-weight: bold;
     color: #eb60ab;
}
.faq dd {
	padding-bottom: 10px;
    margin-bottom: 10px;
}

.faq a {
    color: #eb60ab;
    font-weight: bold;
    text-decoration: none;
}
.faq a:hover {
    color: #f21c8f;
}







/*背景画像を置く為の設定*/
#section1::before,#section2::before,#section3::before,#section4::before {
	content: '';
	position: fixed;z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*section1の設定*/
#section1 {
	color: #863765;	
}

#section2,#section3,#section4 {
	background-color: rgba(255, 228, 239, 0.9);
	color: #863765;	
    font-weight: bold;
}
#section1::before,#section2::before,#section3::before,#section4::before {
	background: url('../images/section1.jpg') no-repeat center center / cover;
}


.no-bgcolor {background-color: transparent !important;}


footer small {font-size: 100%;}
footer {
	font-size: 0.8rem;
	text-align: center;		/*内容をセンタリング*/
	padding-bottom: 1rem;
}

/*リンクテキスト*/
footer a {color: inherit;text-decoration: none;}

.color1 {
    color: #eb60ab;
    font-weight: bold;
    text-decoration: none;
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	.new {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	}

	}/*追加指定ここまで*/


/*list-grid（gallery.htmlでサムネイルを表示している部分の設定です）
---------------------------------------------------------------------------*/
/*listブロックを囲む外側のボックス*/
.list-grid-trimming {
	display: grid;
	grid-template-columns: repeat(4, 1fr);	/*ここの「4」の数字が横に並べる数です。3列がいいなら(3, 1fr)です。*/
	gap: 1rem;	/*マージン的な数値。サムネイル間を１文字分あけます。*/
}

/*ボックスを正方形にトリミングする為の指定なので変更しない。*/
.list-grid-trimming .list {
	position: relative;
	overflow: hidden;
	height: 0;
	padding-top: 100%;
}
.list-grid-trimming .list a {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
.list-grid-trimming .list img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: 0.5s;	/*マウスオン時にかける時間。0.5秒。*/
}

/*マウスオン時の画像*/
.list-grid-trimming .list img:hover {
	transform: scale(1.1);	/*1.1倍に拡大*/
	filter: contrast(1.3);	/*コントラストを1.3倍*/
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 0.2s 0.2s both;
	position: fixed;
	right: 20px;		
	bottom: 20px;		
	color: #fff;		
	font-size: 1.5rem;	
	background: #fd84b7;
	width: 60px;		
	line-height: 60px;
	border-radius: 50%;
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #000;border: 1px solid #fff;border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.color-check, .color-check a {color: #ffcf0d;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		.ws {width: 48%;display: inline;}
		.sh {display: none;}
		.pc {display: block;}

	}/*画面幅900px以上の追加指定ここまで*/






/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){
    

    header {
        width: auto;
    }
    
    #menubar {display: none;
margin-top: 0px;}
    
    body {
        font-size: 10px;
    }
    
main h2 {
        font-size: 25px;
    }
   main h3{
        font-size: 15px;
    }
    
#section1::before,#section2::before,#section3::before,#section4::before {
	background: url('../images/section1_s.jpg') no-repeat center center / cover;
}
#section1, #section2, #section3, #section4 {
    padding: 0vw;
}
    
    
#menubar ul {
     width: 140px;
}
    
header #logo {
    margin-top: 200px;
}

.flex .image {
    width: 100%;
    margin-top: 50px;
    
}





}