@charset "UTF-8";
/*@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap')
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


/*============================
	html5 base style
============================*/

/* 要素 フォントサイズ・マージン・パディングをリセット */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  /*font-weight: normal;*/
    font-weight: 400;
  vertical-align:baseline;
  background:transparent;
}

/* 新規追加要素をブロック要素化 */
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

/* 行の高=フォントサイズ */
body {
    line-height:1;
  }


/* ulのマーカー非表示 */
ol, ul {
  list-style: none;
}
/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    outline: none;
  }

img,svg,video {
    width: 100%;
    vertical-align: bottom;
}
/* 画像を縦に並べた時に余白0 */
img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
  }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  
.clearfix:after {
    overflow: hidden;
    visibility: hidden;
    height: 0;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
}

br {
    line-height: inherit;
}
input,select {
    vertical-align: middle;
}

input,select,button {
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}
input:focus,select:focus,button:focus {
    outline: 0;
}

/* 【共通】パーツ 
----------------------------------------------------------------*/
/* リンク */
a,
a * {
	-webkit-transition: opacity 0.7s ease;
	-moz-transition: opacity 0.7s ease;
	-o-transition: opacity 0.7s ease;
	transition: opacity  0.7s ease;
	text-decoration: none;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	font-family: inherit;
	-webkit-backface-visibility: hidden; /* 追加 */
	backface-visibility: hidden; /* 追加 */
}
a:hover, a:active {
	text-decoration:none;
	opacity: 0.7;
	filter: alpha(opacity=70);
	color: #111;
	transition: .3s ease-in-out;
}
img {
	max-width: 100%;
	height: auto;
}


/*基本設定
----------------------------------------------------------------*/

body {
	font-size: 16px;
	font-weight: 200;
	letter-spacing: .05em;
	line-height:1.5;
	background: #fff;
	color: #555555;
	font-family:"Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	margin: auto;
	overflow-x: hidden;
	position: relative;
	min-width: auto;
	opacity: 0;
	animation: bodyAppear .3s .3s forwards;
}
@media screen and (max-width: 1024px) {
	body {
		font-size: 15px;
	}
}
@media screen and (max-width: 768px) {
	body {
		font-size: 14px;
	}
}
@keyframes bodyAppear {
	0% {
			opacity: 0;
	}

	100% {
			opacity: 1;
	}
}

html{
 scroll-padding-top: 50px;
}


/*  配置  */
.flex-nml {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
}
.flex-btw {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
}
.flex-cnt {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
}
.flex-end {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
	-webkit-box-pack:end;
	-ms-flex-pack:end;
	justify-content:flex-end;
}
.row-reverse {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.items-center {
	-webkit-align-items: center;
	align-items: center;
}
.items-start {
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.items-end {
	-webkit-align-items: flex-end;
	align-items: flex-end;
}




/*----------------------------
  layout
-----------------------------*/
.tategaki {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
}

.sp {
display: none;
}
.pc {
display: block;
}
@media screen and (max-width: 768px) {
	.sp {
			display: block;
	}
	.pc {
			display: none;
	}
}

/* margin */
.mb20{
    margin-bottom: 20px;
}
.mb30{
margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
	}
.mb50 {
margin-bottom: 50px;
}
.mb60 {
margin-bottom: 60px;
}
.mb70 {
margin-bottom: 70px;
}
.mb80 {
margin-bottom: 80px;
}
.mb100 {
margin-bottom: 100px;
}
.mb130{
	margin-bottom: 130px;
}
.mb150{
	margin-bottom: 150px;
}
@media screen and (max-width: 1024px) {
	.mb20{
			margin-bottom: 15px;
	}
	.mb30 {
			margin-bottom: 20px;
	}
	.mb40 {
		margin-bottom: 30px;
	}
	.mb50 {
			margin-bottom: 35px;
	}
	.mb60 {
			margin-bottom: 45px;
	}
	.mb70 {
			margin-bottom: 50px;
	}
	.mb80 {
			margin-bottom: 60px;
	}
	.mb100 {
			margin-bottom: 70px;
	}
	.mb130{
		margin-bottom: 100px;
	}
	.mb150{
		margin-bottom: 120px;
	}
}
@media screen and (max-width: 768px) {
	.mb20{
			margin-bottom: 10px;
	}
	.mb30 {
			margin-bottom: 20px;
	}
	.mb40 {
		margin-bottom: 25px;
	}
	.mb50 {
			margin-bottom: 30px;
	}
	.mb60 {
			margin-bottom: 30px;
	}
	.mb70 {
			margin-bottom: 40px;
	}
	.mb80 {
			margin-bottom: 40px;
	}
	.mb100 {
			margin-bottom: 50px;
	}
	.mb130{
		margin-bottom: 70px;
	}
	.mb150{
		margin-bottom: 90px;
	}
}
@media screen and (max-width: 499px) {
	.mb130{
		margin-bottom: 60px;
	}
	.mb150{
		margin-bottom: 75px;
	}
}


/*============================
    setting
============================*/

/* ------ inner ------ */
.top-inner__large{
	max-width: 1600px;
	width: 96%;
   padding:100px 0;
	margin-inline: auto;
}
@media screen and (max-width: 1024px) {
	.top-inner__large{
	width: 94%;
   padding:80px 0;
	}
}
	@media screen and (max-width: 768px) {
	.top-inner__large{
	width: 92%;
   	padding:60px 0;
	}
}
.top-inner{
	max-width: 1400px;
	width: 96%;
   padding:100px 0;
	margin-inline: auto;
}
@media screen and (max-width: 1024px) {
	.top-inner{
			width: 94%;
   padding:80px 0;
	}
}
	@media screen and (max-width: 768px) {
	.top-inner{
			width: 92%;
   padding:60px 0;
	}
}


/* ------ font ------ */
.font-en {
    /*font-family:"Josefin Sans", serif;*/
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.indent {
    padding-left: 1em;
    text-indent: -1em;
}


/* -------color setting------- */
.color01{
  color:#64d8d5;
}
.color02{
  color:#F9F9F9;
}

.wh{
  color: #fff;
}
.bg{
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 20px 20px;
  background-repeat: repeat;
  background-position: center center;
}
.bg02{
  background-color:#f1f6f6;
}
.bg03{
  background-color:#e5efee;
}
.link {
	text-decoration-line: underline;
}
.lh{
  line-height: 2;
}
.ta-c{
	text-align: center;
}


/*----------------------------
  position
-----------------------------*/
.ps-r {
    position: relative;
}
.ps-a {
    position: absolute;
}

/*----------------------------
  list
-----------------------------*/
.list-style {
    list-style: disc;
}




/*============================
	index 共通
============================*/
.title_cmn .font-en{
    font-size: 20px;
    color:#64d8d5;
    letter-spacing: .015em;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
    }
.title_cmn .font-jp{
    font-size: 30px;
    letter-spacing: .01em;
    /*font-weight: bold;*/
    line-height: 1.2;
    font-weight: 200;
    }

/* 横並びタイトル */
.title02{
	padding-left: 10px;
	border-left: 5px solid #64d8d5;
}
.title02 .font-en{
	display: inline-block;
	font-size: 24px;
	text-transform: uppercase;
	/*color:#64d8d5;*/
	font-weight: 400;
	letter-spacing: .01em;
}
.title02 .font-jp{
	display: inline-block;
	/*color:#64d8d5;*/
	letter-spacing: .01em;
	margin-left: 20px;
}

/* マーカータイトル */
.title_marker{
	text-decoration: underline;
	text-decoration-color: #e5efee;
	text-decoration-thickness: 16px;
	text-decoration-skip-ink: none;
	text-underline-offset: -5px;
}
@media screen and (max-width:1024px) {
	.title_marker{
		text-decoration-thickness: 12px;
		text-underline-offset: -6px;
	}
}
@media screen and (max-width:767px) {
	.title_marker{
		text-decoration-thickness: 10px;
		text-underline-offset: -5px;
	}
}


@media screen and (max-width: 1024px) {
	.title_cmn .font-en{
		font-size: 18px;
	}
	.title_cmn .font-jp{
		font-size: 26px;
	}

	.title02 .font-en{
		font-size: 22px;
	}
	.title02 .font-jp{
		margin-left: 15px;
	}
}
@media screen and (max-width: 768px) {
	.title_cmn .font-en{
		font-size: 16px;
		margin-bottom: 10px;
	}
	.title_cmn .font-jp{
		font-size: 24px;
	}

	.title02 .font-en{
		font-size: 20px;
	}
}
@media screen and (max-width: 499px) {
  	.title_cmn .font-jp{
		font-size: 22px;
	}
}

/* ------  btn ------ */
.btn_cmn,.btn_cmn_gr {
	width: 280px;
	height: 50px;
	position: relative;
}
.btn_cmn a,.btn_cmn_gr a{
	display: block;
	color: #555555;
    border: 1px solid #555555;
	line-height: 50px;
	text-align: center;
	/*border-radius: 50vh;*/
	background: #fff;
	transition: .3s ease-out;
}
.btn_cmn a:hover{
	background: #eee;
	opacity: 1;
}
.btn_cmn_gr a{
  /*background:#ddd;*/
}
.btn_cmn_gr a:hover{
	background: #eee;
	opacity: 1;
}
.btn_cmn a p{
    display: inline;
    padding-right: 35px;
    background: url(../images/btn_arw.png)no-repeat right center;
    }
.btn_cmn.txtc{text-align: center;margin: auto;}

@media screen and (max-width:768px) {
	.btn_cmn,.btn_cmn_white {
		width: 220px;
		height: 45px;
		margin-inline: auto;
	}
	.btn_cmn a,.btn_cmn_white a{
		line-height: 45px;
	}
}



/* small btn */
.btn_small{
  color:#555;
	display: inline-block;
	position: relative;
	text-decoration: underline;
	text-decoration-color:#555;
}


.copy{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .075em;
  line-height: 1.6;
}
.copy--sub{
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .075em;
  line-height: 1.6;
}
@media screen and (max-width:1024px) {
  .copy{
  font-size: 24px;
  }
  .copy--sub{
  font-size: 20px;
}
}
@media screen and (max-width:768px) {
  .copy{
  font-size: 20px;
  }
  .copy--sub{
    font-size: 16px;
  }
}


/* line btn */
.btn_line{
  width: 220px;
  height: 45px;
}
.btn_line a{
  display: block;
	line-height: 45px;
	color: #ffffff;
	text-align: center;
	background: #06c755;
	border-radius: 50vh
}
.btn_line a:hover{
	background: #964901;
}

.index_instaText {
   background:linear-gradient(transparent 60%, #9bedeb 60%);
}

.insta_btn {
    display: inline-block;
    background: linear-gradient(to right, rgba(247, 207, 0, 0.7), rgba(246, 37, 2, 0.7) 45%, rgba(182, 47, 82, 0.7) 75%, rgba(113, 58, 166, 0.7));
    color: #fff;
    padding: 0 20px;
}

.insta_btn:hover {
    color: #fff;
}

.p1707210623491 {
    background: url(https://kairo-you.com/system_panel/uploads/images/btn_arw_white.png) no-repeat right center;
    padding: 10px 40px;
}