@charset "UTF-8";
/* Scss Document */
.content {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto; }

.content_inner {
  width: 90%;
  margin: 0 auto; }

/*Flex*/
.dsp_flex {
  display: -webkit-flex;
  display: flex; }

.flex_space {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

.flex_around {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  justify-content: space-around; }

.flex_center {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center; }

.flex_end {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  align-items: flex-end; }

.flex_clm_center {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.flex_row_2 > div,
.flex_row_2 > li,
.flex_row_2 > a {
  width: 49%; }

.flex_row_3 > div,
.flex_row_3 > li,
.flex_row_3 > a {
  width: 33.0%; }

.flex_row_3:after {
  content: "";
  display: block;
  width: 32.5%;
  height: 0; }

.flex_row_4 > div,
.flex_row_4 > li,
.flex_row_4 > a {
  width: 22.5%; }

.flex_row_5 > div,
.flex_row_5 > li,
.flex_row_5 > a {
  width: 19.5%; }
  
.clolum_2{
  column-count: 2;
  column-width: 7em;
  max-width: 20em;}

/*ブロック装飾*/
.blk_center {
  margin: 0 auto; }
  
.bgc_dark{
  background: #2E2B27;
  margin-bottom: 3px; }

.bgc_gray {
  background: #F2F2F2; }

.bgc_white {
  background-color: #FFF;
  padding: 0 0.3em;}
  
.bgc_gray.dsp_inlineblk,
.bgc_white.dsp_inlineblk{
	padding: 0.2em 0.5em;}

.bgc_gradation{
  background: linear-gradient(180deg, #FFF 0%, #F2F2F2 100%);	
}

.bgc_half_gray{
  background: linear-gradient(90deg, #F2F2F2 0%, #F2F2F2 50%, #fff 50%, #fff 100%);}

.bgc_dark_left{
	position: relative;}

.bgc_dark_left .bgc_dark{
	position:relative;
	padding: 0.5em 0.5em 0.5em 0;}
	
.bgc_dark_left .bgc_dark::before{
	content: "";
	position: absolute;
	top: 0;
	left:-50vw;
	width:50vw;
	height:100%;
	background: #2E2B27;}

.bgc_bevel {
  background:
    linear-gradient(45deg,  transparent 10%, transparent 10%),
	linear-gradient(135deg, transparent 10%, transparent 10%),
	linear-gradient(225deg, #fff 10%, transparent 10%),
	linear-gradient(315deg, transparent 10%, transparent 10%);
  background-position: bottom left, bottom right, top right, top left;
  background-size: 50% 50%;
  background-repeat: no-repeat; }

.bdr_radius {
  border-radius: 1em; }

.bdr_circle {
  border-radius: 50%; }

.bdr_red{
	border: #953C34 solid 1px;}
	
.bdr_dark{
	border: #AAA solid 1px;}
	
.bdr_right_l{
	border-left: #953C34 solid 2px;}

.dsp_blk {
  display: block; }

.dsp_inlineblk {
  display: inline-block; }

.dsp_inline {
  display: inline; }

.float_left {
  float: left; }

.float_right {
  float: right; }
  
.ovflw_hddn{
  overflow:hidden;}

/*リスト*/
/*イメージ*/
img {
  max-width: 100%;
  height: auto; }

.full_width img {
  width: 100%; }

/*P要素*/
p {
  margin-bottom: 1em; }

p:last-of-type {
  margin-bottom: 0; }

/*テキスト*/
.txt_xbold {
  font-weight: 900; }

.txt_bold {
  font-weight: 700; }

.txt_medium {
  font-weight: 500; }

.txt_regular {
  font-weight: 400; }
  
.txt_double {
  font-size: 2em;
  line-height: 1.5; }

.txt_xbig {
  font-size: 1.75em;
  line-height:1.33;}

.txt_big {
  font-size: 1.5em; }
  
.txt_lbig{
  font-size:1.2em;}

.txt_small {
  font-size: 0.9em; }

.txt_red {
  color: #953C34; }

.txt_gray {
  color: #747686; }
  
.txt_white {
  color: #FFFFFF; }

.txt_default {
  color: #2E2B27; }

.txt_uline{
	text-decoration: underline;}

.lst_circle ul li{
	text-indent: -1em;
	padding-left: 1em;
    margin-bottom: 0.5em;
    line-height: 2;}

.lst_circle ul li::before{
    content: '';
    transform: translateY(-0.2em);
    display: inline-block;
    border: 1px solid #4A4640;
    width: 0.3em;
    height: 0.3em;
    border-radius: 50%;
    margin-right: 0.7em;}

.lst_num ol{
	counter-reset: list-counter;}
	
.lst_num ol li{
	position: relative;}
	
/*配置*/
.txt_left {
  text-align: left; }

.txt_right {
  text-align: right; }

.txt_center {
  text-align: center; }

.valign_top {
  vertical-align: top; }

.valign_middle {
  vertical-align: middle; }

.pdg_all_0-5em {
  padding: 0.5em; }

.pdg_all_1em {
  padding: 1em; }
  
.pdg_top_1em{
  padding-top: 1em;}
  
.pdg_top_1-5em{
  padding-top: 1.5em;}

.pdg_top_2em{
  padding-top: 2em;}
  
.pdg_top_3em{
  padding-top: 3em;}
  
.pdg_top_4em{
  padding-top: 4em;}

.pdg_btm_1em {
  padding-bottom: 1em; }

.pdg_btm_2em {
  padding-bottom: 2em; }
  
.pdg_btm_3em {
  padding-bottom: 3em; }

.pdg_lft_0-5em{
  padding-left: 0.5em;}

.pdg_lft_1em{
  padding-left: 1em;}

.mgn_btm_0{
  margin-bottom: 0 !important; }
  
.mgn_btm_0-1em{
  margin-bottom: 0.1em !important; }

.mgn_btm_0-5em {
  margin-bottom: 0.5em !important; }

.mgn_btm_1em {
  margin-bottom: 1em !important; }

.mgn_btm_1-5em{
  margin-bottom: 1.5em !important; }

.mgn_btm_2em {
  margin-bottom: 2em !important; }

.mgn_btm_3em {
  margin-bottom: 3em !important; }
  
.mgn_btm_4em {
  margin-bottom: 4em !important; }

.mgn_btm_5em {
  margin-bottom: 5em !important; }

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

.mgn_btm_100 {
  margin-bottom: 100px !important; }

.mgn_lft_0-5em {
  margin-left: 0.5em; }
  
.mgn_lft_1em {
  margin-left: 1em; }

.lne_height_1{
	line-height: 1;}
	
.lne_height_1-5{
	line-height: 1.5;}
	
.lne_height_2{
	line-height: 2;}

.width_full {
  width: 100%;
  max-width: 100% !important;
  height: auto; }

.fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999; }

.rotate_180{
	transform: rotate(180deg);}
	
.pos_relative{
	position: relative;}
/*縦横比不変*/
.fix_size {
  position: relative; }

.fix_size::before {
  content: "";
  display: block;
  padding-top: 100%; }

.fix_size img,
.fix_size video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover; }

/*フェードイン*/
.fadein {
  opacity: 0;
  display: none;
  transition: all 0.5s; }

.fadein.scrollin {
  opacity: 1;
  display: block; }

/*アコーディオン*/
/*タブのスタイル*/
/*リンク装飾*/
.hvr_uline_show a {
  position: relative; }

.hvr_uline_show a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #2E2B27;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .5s; }

.hvr_uline_show a:hover:after {
  transform: scale(1, 1); }
  
.hvr_uline_hide a {
  text-decoration: none;
  background-image: linear-gradient( #2E2B27, #2E2B27 );
  background-size: 100% 1px;
  background-position: right bottom 2px;
  background-repeat: no-repeat;
  transition: all .3s; }
 
.hvr_uline_hide a:hover {
  background-size: 0 1px;
}

.lnk_btn,
.submit_wrap,
.wpcf7cp-btns button {
  display: inline-block;
  line-height: 1.2;
  border-radius: 1.5em;
  padding: 1.5em 3em 1.5em 1.5em;
  position: relative;
  transition-duration: 0.3s;
  overflow: hidden;
  background-color: #fff;
  border:1px solid #953C34;
  border-radius: 0.5em; }

.lnk_btn.lnk_circle{
	border-radius: 50%;
    padding: 1.25em 1.25em;}
.lnk_btn.lnk_circle.lnk_mail{
	border-radius: 50%;
    padding: 0;
    width: 3.5em;
    height: 3.5em;}

.lnk_btn [class^="icon-"],
.submit_wrap [class^="icon-"]{
	position: relative;
    z-index: 5;}

.wpcf7cp-btns button{
  color: #953C34;
  padding: 1em 3em 1em 1em; }

.lnk_btn::before,
.submit_wrap::before,
.wpcf7cp-btns button::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /*z-index: -1;*/
  content: '';
  background: #953C34;
  color: #FFFFFF;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;}
  
.lnk_btn.lnk_circle::before{
	border-radius: 50%;}
	
.wpcf7cp-btns button::before{
  z-index: -1}

.lnk_btn::after,
.submit_wrap::after,
.wpcf7cp-btns button::after {
  font-family: "iconelama";
  content: "\e900";
  font-weight: normal;
  color: #953C34;
  position: absolute;
  right: 1.5em;
  bottom: 1.5em;
  z-index: 5; }

.lnk_btn.lnk_window::after{
    content: "\e904";
    bottom: 1.45em;}
    
.lnk_btn.lnk_noicon{
	padding: 1.5em 1.5em 1.5em 1.5em;}.lnk_btn.lnk_noicon::after{
    content: none;}

.lnk_btn.lnk_circle::after{
  bottom: 1.25em;
  right: 1.25em;
  transform: translate(50%, 50%);}
  
.lnk_btn.lnk_circle.lnk_mail::after{
  content: "\e905";
  font-size: 1.7em;
    top: 0.1em;
    right: 50%;}

.submit_wrap::after,
.wpcf7cp-btns button::after {
    bottom: 1em;}

.lnk_btn:hover,
.lnk_blk:hover .lnk_btn,
.submit_wrap:hover,
.wpcf7cp-btns button:hover {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid transparent;
  opacity: 1;}

.lnk_btn:hover::before,
.lnk_blk:hover .lnk_btn::before,
.nav-links a:hover .lnk_btn::before,
.submit_wrap:hover::before,
.wpcf7cp-btns button:hover::before {
  transform-origin: left top;
  transform: scale(1, 1); }
  
.lnk_btn:hover::after,
.lnk_blk:hover .lnk_btn::after,
.nav-links a:hover .lnk_btn::after,
.submit_wrap:hover::after,
.wpcf7cp-btns button:hover::after{
  color: #FFF;
  z-index: 10;  }

.lnk_btn .btn_inner {
  position: relative;
  z-index: 5; }

/*WPAdminBar対策**/
#adminbarsearch .submit_wrap {
    display: none;}
#adminbarsearch .submit_wrap::before,
#adminbarsearch .submit_wrap::after{
  content: none;}

/*フォーム*/
form p{margin-bottom: 0;}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
textarea,
select {
  width: 100%;
  height: 2.5em;
  padding: 0 1em;
  border: solid #747686 1px;
  border-radius: 0.25em;
  background: #FFF;
  box-shadow: none;
  margin-top: 0.5em;
  margin-bottom: 1.5em; }

input[type="number"] {
  width: 8em; }

textarea {
  height: 10em;
  padding: 1em; }

select {
  background: linear-gradient(to left, #747686, #747686 2.5em, #fff 2.5em, #fff 100%);
  appearance: none; }

input[type="checkbox"] {
    /*display: none;*/
	visibility: hidden;}

.area_check {
    position: relative;
    padding-left: 2em; }

.area_check::before {
    display: block;
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    top: 50%;
    left: 0px;
    box-sizing: border-box;
    content: '';
    background: #fff;
    border: 1px solid #747686;
    border-radius: 0px;
    transform: translateY(-50%); }

.area_check::after {
    display: block;
    width: 0.5em;
    height: 1em;
    position: absolute;
    top: 0.65em;
    left: 0.5em;
    box-sizing: border-box;
    opacity: 0;
    content: '';
    border-right: 3px solid #146CFF;
    border-bottom: 3px solid #146CFF;
    transform: translateY(-50%) rotate(45deg);
    transition: opacity 0.5s ease; }

.area_check:has(input[type="checkbox"]:checked):after{
    opacity: 1; }

/*オートコンプリートの背景色を取り除く*/
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset; }

.wpcf7-radio{
  display: block;
  margin-bottom: 1em;}

.wpcf7-radio .wpcf7-list-item {
  margin-top: 5px;
  display: inline-block; }

input[type="submit"],
input[type="button"] {
  border: none;
  width: 100%;
  max-width: 100%;
  background: transparent;
  color: #953C34;
  padding: 0.5em 3em 0.5em 1em;
  position: relative;
  z-index: 1; }

input[type="submit"]:hover,
input[type="button"]:hover {
  color: #FFF;
  border: none; }

.submit_wrap {
  position: relative;
  padding: 0.5em 0em;
  max-width: 100%; }

.select_wrap {
  position: relative;
  display:block; }

.select_wrap::after {
  width: 13px;
  height: 13px;
  border: 1px solid;
  border-color: transparent transparent #fff #fff;
  position: absolute;
  right: 0.9em;
  top: 1.2em;
  transform: rotate(-45deg);
  content: '';
  pointer-events: none; }

.wpcf7-not-valid-tip{
	transform: translateY(-1em);}
	
#wpcf7cpcnf th, #wpcf7cpcnf td {
    border-bottom: 1px solid #aaa;
    padding: 0.5em;
    }
div#wpcf7cpcnf {
	z-index: 9;}
div#wpcf7cpcnf th{
	text-align: left;}
	
/*ループスライド*/
.blk_loopslide {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  overflow: hidden; }

.blk_loopslide ul {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding-left: 0;
  animation: loop-slide 20s infinite linear 1s both; }

.blk_loopslide ul li {
  width: 40vw;
  padding: 0 1vw;}
  
.blk_loopslide ul li img{
  width: 100%;}

@keyframes loop-slide {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-100%); } }

/*アニメーション*/
.fadein_right{
	visibility: hidden;
	opacity: 0;}
.active .fadein_right{
	animation: fadeInRight 1.5s ease-out 0s forwards;}
@keyframes fadeInRight {
  from {
    opacity: 0;
	visibility: visible;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
	visibility: visible;
    transform: translateX(0);
  }
}
.fadein_up {
  visibility: hidden;
  opacity: 0;}
.active .fadein_up {
  animation: fadeInUp 1s ease forwards; }
@keyframes fadeInUp {
  from {
    transform: translateY(20px); }
  to {
    opacity: 1;
	visibility: visible;
    transform: translateY(0); } }
.gradually{
	position: relative;
}
.gradually::before{
	position: absolute;
	content: '';
	left: 0;
	top: -1px;
	width: 102%;
	height: calc(100% + 2px);
	min-height:1px;
	background: #FFFFFF;
	transform-origin: right;
	animation: gradually 1s ease forwards;
	z-index: 1;
}

@keyframes gradually {
	from {
		transform: scale(1, 1);
	}
	to {
		transform: scale(0, 1);
	}
}
.typewriter{
  width: 0;
  /*border-right: 0.08em solid black; *//*カーソル用の線*/
  overflow: hidden; /*はみ出た要素を非表示に*/
  white-space: nowrap; /*1行に*/
  animation: typing 1.5s steps(20, end) forwards;
/*animation: アニメーション名｜時間｜分割数｜ループ */
}
/*** 1文字ずつ出現するアニメーション ***/
@keyframes typing{
  0% { width: 0%; }
  100% { width: 11em; }
}

.scroll_trigger {
  /*display: none;
  transform : translate(0, 100px);*/
  opacity: 0;
  visibility: hidden;
  transition: all 2s; }

.scroll_trigger.on {
  /*display: block;
  transform : translate(0, 0);*/
  opacity: 1;
  visibility: visible; }

.active .delay_0-5s,
.active .delay_0-5s::before,
.on.hold_05-5s,
.on.hold_05-5s::before  {
  animation-delay: 0.5s; }
.active .delay_1s,
.active .delay_1s::before,
.on.hold_1s,
.on.hold_1s::before{
  animation-delay: 1s; }
.active .delay_1-5s,
.active .delay_1-5s::before,
.on.hold_1-5s,
.on.hold_1-5s::before {
  animation-delay: 1.5s; }
.active .delay_2s,
.active .delay_2s::before,
.on.hold_2s,
.on.hold_2s::before {
  animation-delay: 2s; }
.active .delay_2-5s,
.active .delay_2-5s::before,
.on.hold_2-5s,
.on.hold_2-5s::before {
  animation-delay: 2.5s; }
.active .delay_3s,
.active .delay_3s::before,
.on.hold_3s,
.on.hold_3s::before {
  animation-delay: 3s; }
.active .delay_3-5s,
.active .delay_3-5s::before,
.on.hold_3-5s,
.on.hold_3-5s::before {
  animation-delay: 3.5s; }
.active .delay_4s,
.active .delay_4s::before,
.on.hold_4s,
.on.hold_4s::before {
  animation-delay: 4s; }
.active .delay_4-5s,
.active .delay_4-5s::before,
.on.hold_4-5s,
.on.hold_4-5s::before {
  animation-delay: 4.5s; }
.active .delay_5s,
.active .delay_5s::before,
.on.hold_5s,
.on.hold_5s::before {
  animation-delay: 5s; }
.active .delay_5-5s,
.active .delay_5-5s::before,
.on.hold_5-5s,
.on.hold_5-5s::before {
  animation-delay: 5.5s; }
.active .delay_6s,
.active .delay_6s::before,
.on.hold_6s,
.on.hold_6s::before {
  animation-delay: 6s; }
.active .delay_6-5s,
.active .delay_6-5s::before {
  animation-delay:6.5s; }
.active .delay_7s,
.active .delay_7s::before {
  animation-delay: 7s; }
.active .delay_7-5s,
.active .delay_7-5s::before {
  animation-delay: 7.5s; }
.active .delay_8s,
.active .delay_8s::before {
  animation-delay: 8s; }
.active .delay_9s,
.active .delay_9s::before {
  animation-delay: 9s; }
.active .delay_10s,
.active .delay_10s::before {
  animation-delay: 10s; }
  
/*アイコンフォント*/
.blk_icon li {
  width: 160px;
  height: 160px;
  line-height: 1.0;
  padding-top: 10px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: #002876 solid 1px;
  margin-bottom: 1em !important; }

.blk_icon li [class^="icon-"] {
  font-size: 2.0em; }

/* ▼　レスポンシブ　▼ */
/*===============================================*/
/*===============================================*/
/*===============================================*/
@media screen and (max-width: 767px) {
  .flex_row_3 > div,
  .flex_row_3 > li,
  .flex_row_3 > a {
    width: 49.5%; }

  .flex_row_5 > div,
  .flex_row_5 > li,
  .flex_row_5 > a {
    width: 24.5%; }

  .flex_row_5::before {
    content: "";
    display: block;
    width: 24.5%;
    order: 1; }

  .flex_row_5::after {
    content: "";
    display: block;
    width: 24.5%; }
}
/*===============================================*/
@media screen and (max-width: 480px) {
  .flex_row_2 > div,
  .flex_row_2 > li,
  .flex_row_2 > a {
    width: 100%; }

  .flex_row_3 > div,
  .flex_row_3 > li,
  .flex_row_3 > a {
    width: 100%; }

  .flex_row_4 > div,
  .flex_row_4 > li,
  .flex_row_4 > a {
    width: 45%;
    margin-bottom: 5vw; }

  .flex_row_5 > div,
  .flex_row_5 > li,
  .flex_row_5 > a {
    width: 5vw; }

  .flex_row_5:after {
    content: "";
    display: block;
    width: 32.5%;
    height: 0; }
}
