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

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

.content_right {
  margin-left: 5%;}

.content_left {
  margin-right: 5%;}

/*position*/
.pos_relative{
	position: relative;
}
.pos_absolute{
	position: absolute;
}
/*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: 48.5%; }

.flex_row_3 > div,
.flex_row_3 > li,
.flex_row_3 > a {
  width: 32%;
  margin-bottom: 1em;}

.flex_row_3:after {
  content: "";
  display: block;
  width: 32%;
  /* .boxに指定したwidthと同じ幅を指定する */
  height: 0; }

.flex_row_4 > div,
.flex_row_4 > li,
.flex_row_4 > a {
  width: 23.5%;
  margin-bottom: 1em;}
.flex_row_4:after {
  content: "";
  display: block;
  width: 23.5%;
  height: 0; }
.flex_row_4:before {
    content: "";
    display: block;
    width: 23.5%;  
    height: 0;
    order: 1;}

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

/*ブロック装飾*/
.blk_center {
  margin: 0 auto; }

.bgc_green {
  background: #33CC4B; }

.bgc_lightgreen {
  background: #BDF29B; }

.bgc_yellowgreen {
  background: #8AE350; }

.bgc_dark {
  background: #484848; }

.bgc_beige {
  background: #DDD5C3; }

.bgc_gray {
  background: #EBEBEB; }

.bgc_black {
  background: #000; }

.bgc_black a{
	color: #fff;}

.bgc_offwhite {
  background: #F4F4F0; }

.bgc_white {
  background-color: #FFF; }

.bdr_radius {
  border-radius: 1em; }

.bdr_circle {
  border-radius: 50%; }

.bdr_green {
  border: #33CC4B solid 1px; }

.bdr_gray {
  border: #707070 solid 1px; }

.dsp_blk {
  display: block; }

.dsp_inlineblk {
  display: inline-block; }

.dsp_inline {
  display: inline; }

.float_left {
  float: left; }

.float_right {
  float: right; }

/*リスト*/
.lst_astarisk li{
	padding-left:1em;
	text-indent:-1em;
}
.lst_astarisk li::before{
	content: '※';
	color: #B80000;
	padding-right: 1em;
}
.lst_circle li{
	padding-left:1em;
	text-indent:-1em;
	margin-bottom: 0.5em;
}
.lst_circle li::before{
	content: '●';
	color: #BDF29B;
	font-size: 0.5em;
	padding-right: 1em;
}
/*イメージ*/
img {
  max-width: 100%;
  height: auto; }

.full_width img {
  width: 100%; }

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

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

/*テキスト*/
.txt_vertical{
	-webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    text-orientation: upright;
    display: flex;
    align-items: center;}
.txt_xbold {
  font-weight: 900; }

.txt_bold {
  font-weight: 700; }

.txt_medium {
  font-weight: 500; }

.txt_regular {
  font-weight: 400; }

.txt_xxxxxbig {
  font-size: 2.857em; }

.txt_xxxxbig {
  font-size: 2.142em;}

.txt_xxxbig {
  font-size: 1.714em;}

.txt_xxbig {
  font-size: 1.428em;}

.txt_xbig {
  font-size: 1.285em; }

.txt_big {
  font-size: 1.142em; }

.txt_small {
  font-size: 0.857em; }

.txt_xsmall {
  font-size: 0.714em; }

.txt_xxsmall {
  font-size: 0.56em; }

.txt_green {
  color: #33CC4B; }

.txt_lightgreen {
  color: #BDF29B; }

.txt_red {
  color: #BF4B0D; }

.txt_white {
  color: #FFFFFF; }

.txt_black {
  color: #000000; }

.txt_gray {
  color: #e3e3e3; }

.txt_default {
  color: #392F18; }

/*配置*/
.txt_left {
  text-align: left; }

.txt_right {
  text-align: right; }

.txt_center {
  text-align: center; }

.valign_top {
  vertical-align: top; }

.valign_btm {
  vertical-align: bottom; }

.pdg_all_1em {
  padding: 1em; }

.pdg_all_2em {
  padding: 2em; }

.pdg_top_1-5em {
	padding-top: 1.5em;
}
.pdg_btm_0-5em {
  padding-bottom: 0.5em; }

.pdg_btm_1em {
  padding-bottom: 1em; }

.pdg_btm_2em {
  padding-bottom: 2em; }

.pdg_btm_50px {
  padding-bottom: 50px; }

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

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

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

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

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

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

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

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

.mgn_btm_70px {
  margin-bottom: 70px !important; }

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

.mgn_lft_1em {
  margin-left: 1em; }

.mgn_lft_none {
  margin-left: 0 !important; }

.line_height_1{
	line-height: 1.0;
}

.line_height_1-2{
	line-height: 1.2;
}

.line_height_1-5{
	line-height: 1.5;
}

.ltr_space_1px{
	letter-spacing: -1px;
}

.ltr_space_2px{
	letter-spacing: -2px;
}

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

.fixed {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 100; }

.br_add::before {
  content: "\A";
  white-space: pre;
  display: inline; }

/*縦横比不変*/
.area_video {
  aspect-ratio: 19/9;
  line-height: 0; }

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

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

.hvr_uline_show a:hover:after {
  transform: scale(1, 1); }

#nav_slide_cnt .hvr_uline_show a::after {
	transform-origin: left top; }

.hvr_uline_hide {
  position: relative; }

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

.hvr_uline_hide:hover:after {
  transform: scale(0, 1); }

.lnk_btn,
.submit_wrap {
  /*max-width: 460px;*/
  display: inline-block;
  border: none;
  border-radius: 1.5em;
  padding: 0.5em 4em 0.5em 1em;
  position: relative;
  transition-duration: 0.3s;
  overflow: hidden;
  background: #33CC4B;
  font-weight: 700;
  color: #FFFFFF; }

.lnk_btn::after,
.submit_wrap::after {
  font-family: "icontennoz";
  content: "\e900";
  font-weight: normal;
  font-size: 0.714em;
  position: absolute;
  right: 2em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10; }

.lnk_btn:hover:after,
.submit_wrap:hover:after {
	transform: translate(0.5em, -50%);
	transition: transform .5s; }

.lnk_btn .btn_inner {
  position: relative;
  z-index: 5; }
.lnk_bnr{
	background: #33CC4B;
    padding: 2em 3em;
    display: inline-block;
    border-radius: 2em;
	position: relative;
    transition-duration: 0.3s;
}
.lnk_bnr::after {
    font-family: "icontennoz";
    content: "\e900";
    color: #fff;
    font-weight: normal;
    font-size: 1.5em;
    display: inline-block;
    position: relative;
    top: 50%;
    transform: translateY(-90%);
    z-index: 5;
    margin-left: 1.5em;;
}
.lnk_bnr:hover:after {
	transform: translate(0.5em, -90%);
	transition: transform .5s; }
.lnk_bnr.lnk_bnr_book {
    padding: 0.75em;
    border-radius: 0.75em;
}
.lnk_bnr.lnk_bnr_book::after{
	font-size: 0.75em;
	transform: translateY(0);
}
.lnk_bnr.lnk_bnr_book:hover:after{
	transform: translateX(0.5em);
}
.lnk_bnr.lnk_bnr_book .icon-calender{
	margin-right: 10px;
}
.lnk_blk {
  position: relative; }

.lnk_circle {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  border-radius: 50%;
  position: relative;
  transition-duration: 0.3s;
  overflow: hidden;
  vertical-align: top;
  background: #D34009;
  color: #FFFFFF; }

.lnk_circle::after {
  font-family: "iconmirainusantara";
  content: "\e909";
  font-size: 0.9em;
  font-weight: normal;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5; }

.lnk_circle::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background-color: #FFF;
  border-radius: 50%;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s; }

.lnk_circle:hover,
.lnk_blk:hover .lnk_circle {
  color: #D34009; }

.lnk_circle:hover::before,
.lnk_blk:hover .lnk_circle::before {
  transform-origin: left top;
  transform: scale(1, 1); }

.submit_wrap:hover{
	opacity: 0.7;
}
.submit_wrap.btn_hide{
	display:none;
}
/*フォーム*/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  height: 2.5em;
  padding: 0 1em;
  border: solid #000 1px;
  border-radius: 0em;
  box-shadow: none;
  margin-bottom: 1em; }

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

input[name="郵便番号(前)"],
input[name="郵便番号(後)"] {
    width: 5em;
}

input[name="その他"] {
    width: calc(100% - 3.9em);
}

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

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

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

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

input[type="submit"],
input[type="button"] {
  border: none;
    color: #FFFFFF;
    position: relative;
    z-index: 10;
    background: transparent;
    font-weight: 700; }

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

.select_wrap {
  position: relative; }

.select_wrap::after {
  	position: absolute;
    right: 1.3em;
    top: 0.1em;
    transform: rotate(90deg);
    font-family: icontennoz;
    content: "\e900";
    font-size: 1.4em;
	pointer-events: none;}
/*スライドショー*/
.bxslider img{
	width:100%;
}
.bx-wrapper .bx-pager {
	text-align: center;
    margin-top: 0.5em;
}
.bx-wrapper .bx-pager .bx-pager-item {
	display: inline;
}
.bx-pager a {
	background: #000000;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    border-radius: 50%;
    text-indent: -9999px;
    text-align: left;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 0.5em;
}
.bx-pager a:hover,
.bx-pager a.active {
	background: #8AE350;;
}
/*ループスライド*/
.blk_loopslide {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  overflow: hidden; }

.loopslide {
  display: -webkit-flex;
  display: flex;
  animation: loop-slide 20s infinite linear 1s both; }

.loopslide li {
  width: 600px;
  flex: none; }

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

/*アニメーション*/
/*フェードイン*/
.fadein {
  opacity: 0;
  /*display: none;*/
  animation: fadeinnormal 2s ease forwards; }
@keyframes fadeinnormal {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadein_up {
  opacity: 0;
  animation: fadeinup 2s ease forwards; }

@keyframes fadeinup {
  from {
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.active .fadein_left {
  opacity: 0;
  animation: fadeinleft 2s ease forwards; }

@keyframes fadeinleft {
  from {
    transform: translateX(-50%); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.active .fadein_right {
  opacity: 0;
  animation: fadeinright 2s ease forwards; }

@keyframes fadeinright {
  from {
    transform: translateX(50%); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.active .delay_1s {
  animation-delay: 1s; }

.active .delay_2s {
  animation-delay: 2s; }

.active .delay_3s {
  animation-delay: 3s; }

.active .delay_4s {
  animation-delay: 4s; }

.active .delay_5s {
  animation-delay: 5s; }

.active .delay_6s {
  animation-delay: 6s; }

.active .delay_7s {
  animation-delay: 7s; }

.active .delay_8s {
  animation-delay: 8s; }

.active .delay_9s {
  animation-delay: 9s; }

/*アイコンフォント*/
.flip_horizontal {
  transform: scale(-1, 1);
  display: inline-block; }

.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: #31408E solid 1px;
  margin-bottom: 1em; }

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

/*連番*/

/* ▼　レスポンシブ　▼ */
/*===============================================*/
@media screen and (min-width: 1111px) {
  .flex_row_3 .fix_size [class^="icon-"] {
    font-size: calc( 1000px * .325 *.33); } }
/*===============================================*/
@media screen and (max-width: 1111px) {
  .flex_row_3 .fix_size [class^="icon-"] {
    font-size: calc( 100vw * .9 * .325 *.33); } }
/*===============================================*/
@media screen and (max-width: 767px) {
  .flex_row_3 > div,
  .flex_row_3 > li,
  .flex_row_3 > a {
    width: 49.5%; }

  .loopslide li {
    width: 78.2vw; }

  .flex_row_3 .fix_size [class^="icon-"] {
    font-size: calc( 100vw * .9 * .49.5 *.33); }

  .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%; }
  /*メイン*/
  .left_clm {
    width: 100%; }

  .main_clm {
    width: 100%; } }
/*===============================================*/
@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_3 .fix_size [class^="icon-"] {
    font-size: calc( 100vw * .9 *.33); }

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

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

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