@charset "utf-8";

/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/

@import url("https://unpkg.com/sanitize.css");

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/*lightbox.cssの読み込み
---------------------------------------------------------------------------*/

@import url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.css);

/*slick.cssの読み込み
---------------------------------------------------------------------------*/

@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/

@import url("animation.css");


/*全体の設定
---------------------------------------------------------------------------*/

html,
body {
  height: 100%;
  font-size: 16px;
  /*基準となるフォントサイズ。*/
}


/*画面幅900px以上の追加指定*/

@media screen and (min-width:900px) {

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

body {
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  -webkit-text-size-adjust: none;
  background: #fff;
  color: #333;
  line-height: 1.6;
  animation: opa1 0.3s 0.5s both;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.poppins {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}


/*リセット*/

figure {
  margin: 0;
}

dd {
  margin: 0;
}

nav {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
dl,
dt,
dd,
p {
  margin: 0;
  padding: 0;
  font-size: 16px;
}

/*width
---------------------------------------------------------------------------*/
.w164 {
  width: 100%;
  max-width: 164px;
}

.w200 {
  width: 100%;
  max-width: 200px;
}

.w300 {
  width: 100%;
  max-width: 300px;
}

.w450 {
  width: 100%;
  max-width: 450px;
}

.w960 {
  width: 100%;
  max-width: 960px;
}

.w1020 {
  width: 100%;
  max-width: 1020px;
}

.w100per {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
@media screen and (max-width:899px) {
  .w100_sp {
    width: 100%;
    max-width: 100px;
  }
}
/*height
---------------------------------------------------------------------------*/
.h50 {
  height: 50px;
}

.h450 {
  height: 450px;
}

/*上下左右・中央寄せ
---------------------------------------------------------------------------*/
.outer {
  position: relative;
}

.inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}

/*common
---------------------------------------------------------------------------*/
.block {
  display: block;
}

/*flex
---------------------------------------------------------------------------*/

.d_flex {
  display: flex;
}

.item_center {
  align-items: center;
}

.item_stretch {
  align-items: stretch !important;
}

.jc_center {
  justify-content: center;
}

.jc_space {
  justify-content: space-between;
}

.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}

@media screen and (max-width:899px) {
  .block_sp {
    display: block;
  }
}

/*font_weight
---------------------------------------------------------------------------*/

.font_w500 {
  font-weight: 500;
}

.font_w600 {
  font-weight: 600;
}

.font_w700 {
  font-weight: 700;
}

.font_w800 {
  font-weight: 800;
}

/*font_size
---------------------------------------------------------------------------*/
.font_12 {
  font-size: 12px;
}

.font_14 {
  font-size: 14px;
}

.font_15 {
  font-size: 15px;
}

.font_16 {
  font-size: 16px;
}

.font_18 {
  font-size: 18px;
}

.font_20 {
  font-size: 20px;
}

.font_22 {
  font-size: 22px;
}

.font_24 {
  font-size: 24px;
}

.font_26 {
  font-size: 26px;
}

.font_28 {
  font-size: 28px;
}

.font_30 {
  font-size: 30px;
}

.font_32 {
  font-size: 32px;
}

.font_60 {
  font-size: 60px;
}

@media screen and (max-width:899px) {
  .font_32 {
    font-size: 22px;
  }
  .font_30,.font_28,.font_26,.font_24,.font_22 {
    font-size: 18px;
  }

  .font_18 {
    font-size: 16px;
  }

  .font_15_sp {
    font-size: 15px;
  }

  .font_16_sp {
    font-size: 16px;
  }
}

/*line_height
---------------------------------------------------------------------------*/
.lh18 {
  line-height: 1.8;
}

.lh36 {
  line-height: 36px !important;
}

@media screen and (max-width:899px) {
  .lh14_sp {
    line-height: 1.4 !important;
  }
}

/*float
---------------------------------------------------------------------------*/

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*border
---------------------------------------------------------------------------*/
.border {
  width: 100%;
  height: 2px;
  background: #F4E6D1;
}

.border01 {
  width: 40px;
  height: 4px;
  background: #333333;
  border-radius: 10px;
}

.border02 {
  border: 3px #FFEFEF solid;
}

/*txt
---------------------------------------------------------------------------*/

.l {
  text-align: left !important;
}

.c {
  text-align: center !important;
}

.r {
  text-align: right !important;
}
@media screen and (max-width:899px) {
  .l_sp {
    text-align: left !important;
  }
  .c_sp {
    text-align: center !important;
  }
  .j_sp {
    text-align: justify !important;
  }
}
/*margin
---------------------------------------------------------------------------*/
.m0auto {
  margin: 0 auto;
}

.mrauto {
  margin-right: auto !important;
}

.mlauto {
  margin-left: auto !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

@media screen and (max-width:899px) {
  .m0auto_sp {
    margin: 0 auto !important;
  }
  .mt0_sp {
    margin-top: 0px !important;
  }
  .mr5_sp {
    margin-right: 5px !important;
  }
  .mt5_sp {
    margin-top: 5px !important;
  }
  .mb5_sp {
    margin-bottom: 5px !important;
  }
  .mb12_sp {
    margin-bottom: 12px !important;
  }
  .mr10_sp {
    margin-right: 10px !important;
  }
  .mb20_sp {
    margin-bottom: 20px !important;
  }
  .mb40_sp {
    margin-bottom: 40px !important;
  }
  .mt50_sp {
    margin-top: 50px !important;
  }
  .mb80_sp {
    margin-bottom: 80px !important;
  }
}

/*padding
---------------------------------------------------------------------------*/
.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}
.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pr13 {
  padding-right: 13px !important;
}

.pl13 {
  padding-left: 13px !important;
}

.pt13 {
  padding-top: 13px !important;
}

.pb13 {
  padding-bottom: 13px !important;
}
.pt20 {
  padding-top: 20px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}
.pr20 {
  padding-right: 20px !important;
}
.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pt120 {
  padding-top: 120px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

.pb150 {
  padding-bottom: 150px !important;
}

@media screen and (max-width:899px) {
  .p0_sp {
    padding: 0 !important;
  }
  .pb0_sp {
    padding-bottom: 0 !important;
  }
  .pl0_sp {
    padding-left: 0 !important;
  }
  .pr10_sp {
    padding-right: 10px !important;
  }
  .pb10_sp {
    padding-bottom: 10px !important;
  }
  .pl10_sp {
    padding-left: 10px !important;
  }
  .pt10_sp {
    padding-top: 10px !important;
  }
  .pb30_sp {
    padding-bottom: 30px !important;
  }

  .pt30_sp {
    padding-top: 30px !important;
  }
  .pr30_sp {
    padding-right: 30px !important;
  }
  .pt50_sp {
    padding-top: 50px !important;
  }

  .pl30_sp {
    padding-left: 30px !important;
  }

  .pt60_sp {
    padding-top: 60px !important;
  }
  .pb60_sp {
    padding-bottom: 60px !important;
  }
  .pt80_sp {
    padding-top: 80px !important;
  }
  .pb100_sp {
    padding-bottom: 100px !important;
  }
}

/*レスポンシブ対応
---------------------------------------------------------------------------*/

.pc {
  display: none !important;
}

.dn {
  display: none !important;
}

.block {
  display: block !important;
}

.sh600 {
  display: none !important;
}

/*画面幅900px以上の追加指定*/

@media screen and (min-width:900px) {

  .sh {
    display: none !important;
  }

  .pc {
    display: block !important;
  }
}

@media screen and (max-width:959px) {
  .dn {
    display: block !important;
  }
}

@media screen and (max-width:899px) {
  .none899 {
    display: none;
  }
}

@media screen and (max-width:600px) {
  .sh600 {
    display: block !important;
  }

  .none600 {
    display: none;
  }
}

/*transition
---------------------------------------------------------------------------*/
.transition {
  transition: 0.3s;

}

/*img
---------------------------------------------------------------------------*/

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/*list
---------------------------------------------------------------------------*/

.list_style_none {
  list-style: none;
}

/*list-grid1-parts, list-grid2-parts 共通
---------------------------------------------------------------------------*/
/*list-partsブロック全体を囲むブロック*/
.list-grid1-parts,.list-grid2-parts {
	display: grid;
}

/*ボックス１個あたり*/
.list-grid1-parts .list-parts,.list-grid2-parts .list-parts {
    display: grid;
}

/*list内の全ての要素のmarginとpaddingを一旦リセット*/
.list-grid1-parts .list-parts *,
.list-grid2-parts .list-parts * {
	margin: 0;padding: 0;
}

/*ボックス内のp要素*/
.list-grid1-parts .list-parts p,
.list-grid2-parts .list-parts p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}

/*list-grid1-parts
---------------------------------------------------------------------------*/

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

    /*listブロック全体を囲むブロック*/
    .list-grid1-parts {
      grid-template-columns: repeat(2, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
      gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
    }
  
    }/*追加指定ここまで*/
  
  
    /*画面幅800px以上の追加指定*/
    @media screen and (min-width:800px) {
  
    /*listブロック全体を囲むブロック*/
    .list-grid1-parts {
      grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
      gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
    }
  
    }/*追加指定ここまで*/
  
  
  /*ボックス１個あたり*/
  .list-grid1-parts .list-parts {
    padding: 1rem;			/*ボックス内の余白*/
    background: #fff;		/*背景色*/
    grid-template-rows: auto 1fr;	
  }
  
  /*ボックス内のfigure画像*/
  .list-grid1-parts .list-parts figure img {
    margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
  }

/*list-grid2-parts
---------------------------------------------------------------------------*/

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

	/*listブロック全体を囲むブロック*/
	.list-grid2-parts {
		grid-template-columns: repeat(2, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}

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


/*ボックス１個あたり*/
.list-grid2-parts .list-parts {
	grid-template-columns: 100px 1fr;	/*１つ目（この場合はfigure要素）を100pxに、２つ目（この場合はtextブロック））を残った幅で使う*/
	gap: 1rem;				/*ブロックの間に空けるマージン的な指定*/
	align-items: center;	/*画像とテキストブロックについて、天地の中央で揃えるようにする。この１行を削除すると、上に揃う。*/
	margin-bottom: 1rem;
}

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

	/*ボックス１個あたり*/
	.list-grid2-parts .list-parts {
		margin-bottom: 0;
	}

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



/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/

a {
  color: #333;
  transition: 0.3s;
  text-decoration: none;
}

/*マウスオン時*/

a:hover {
  cursor: pointer;
}

/*bg
---------------------------------------------------------------------------*/
.bg_pink {
  background: #FFEFEF !important;
}

.bg_white {
  background: #ffffff !important;
}

.bg_wineRed {
  background: #D33E42 !important;
}

.bg_green {
  background: #48ACA2 !important;
}

.bg_cream {
  background: #fbf8ed !important;
}

.bg_lightGreen {
  background: #E9F6F5 !important;
}

.bg_lightYellow {
  background: #fff3cd !important;
}

/*color
---------------------------------------------------------------------------*/
.wineRed {
  color: #D33E42 !important;
}

.white {
  color: #ffffff !important;
}

.gray {
  color: #8f8f8f !important;
}

.green {
  color: #48ACA2 !important;
}

/*border-color
---------------------------------------------------------------------------*/
.border_brown {
  border-color: #ffeeba;
}

/*illust
---------------------------------------------------------------------------*/
.illust {
  position: relative;
}

.illust::after {
  position: absolute;
  display: block;
  content: "";
  background: url(/assets/img/common/illust01.svg) no-repeat center / contain;
  max-width: 800px;
  width: 100%;
  height: 105px;
  margin: 0 auto;
  top: -70px;
  right: 0;
  left: 0;
}

.illust02::after {
  background: url(/assets/img/common/illust02.svg) no-repeat center / contain;
}

.illust03::after {
  background: url(/assets/img/common/illust03.svg) no-repeat center / contain;
}

.illust04::after {
  background: url(/assets/img/common/illust04.svg) no-repeat center / contain;
}


/*radius
---------------------------------------------------------------------------*/
.radius_top10 {
  border-radius: 10px 10px 0 0;
}

.radius5 {
  border-radius: 5px;
}

.radius10 {
  border-radius: 10px;
}

.radius15 {
  border-radius: 15px;
}

.radius20 {
  border-radius: 20px;
}

.radius300 {
  border-radius: 300px !important;
}

/*letter-spacing
---------------------------------------------------------------------------*/
.ls02 {
  letter-spacing: 0.2em;
}