@charset "UTF-8";
/* Scss Document */
/* 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%;
  /* .boxに指定したwidthと同じ幅を指定する */
  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%; }

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

.bgc_yellow {
  background-color: #F0DB56; }

.bgc_lightblue {
  background-color: #B4D8F2; }

.bgc_gray {
  background: #F2F2F2; }

.bgc_white {
  background-color: #FFF;
  padding: 0 0.3em;}

.bgc_half_yellow{
  background: linear-gradient(90deg, #F0DB56 0%, #F0DB56 50%, #fff 50%, #fff 100%);	
  margin-bottom: 5em;
}

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

.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; }

.bgc_arrow{
	position: relative;}
.bgc_arrow::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -30px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-width: 30px 40px 0 40px;}

.bgc_lightblue.bgc_arrow::after {
	border-color: #B4D8F2 transparent transparent transparent;}

.bdr_radius {
  border-radius: 1em; }

.bdr_circle {
  border-radius: 50%; }

.bdr_blue {
  border: #002876 solid 1px; }

.bdr_dark{
	border: #747686 solid 1px;}

.dsp_blk {
  display: block; }

.dsp_inlineblk {
  display: inline-block; }

.dsp_inline {
  display: inline; }

.float_left {
  float: left; }

.float_right {
  float: right; }

/*リスト*/
/*イメージ*/
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_quad{
	font-size: 4.444em;
	line-height: 1.2; }
.txt_double {
  font-size: 2.222em;
  line-height: 1.5; }

.txt_xxbig {
  font-size: 1.666em;
  line-height: 1.5; }

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

.txt_big {
  font-size: 1.111em; }

.txt_small {
  font-size: 0.888em; }

.txt_xsmall {
  font-size: 0.785em; }

.txt_xxsmall {
  font-size: 0.625em; }

.txt_blue {
  color: #146CFF; }

.txt_yellow {
  color: #F0DB56; }

.txt_red {
  color: #CC581A; }

.txt_white {
  color: #FFFFFF; }

.txt_white a{
  color: #FFFFFF; }

.txt_gray {
  color: #747686; }

.txt_default {
  color: #05193B; }

.txt_uline{
	text-decoration: underline;}
.txt_uline:hover,
a:hover .txt_uline{
	text-decoration: none;}

/*配置*/
.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_all_2em {
  padding: 2em; }

.pdg_top_2em{
  padding-top: 2em;}

.pdg_top_2-5em{
  padding-top: 2.5em;}

.pdg_btm_1em {
  padding-bottom: 1em; }

.pdg_btm_2em {
  padding-bottom: 2em; }

.pdg_btm_50 {
  padding-bottom: 50px; }

.pdg_left_1em{
  padding-left: 1em;}

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

.mgn_btm_0-25em {
  margin-bottom: 0.25em !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_50 {
  margin-bottom: 50px !important; }

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

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

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

.lne_height_1{
	line-height: 1;
}

.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: 2px;
  background: #146CFF;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .5s; }

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

.lnk_btn,
.lnk_btn_wrap a,
.submit_wrap,
.wpcf7cp-btns button {
  display: inline-block;
  font-size: 1.333em;
  line-height: 1.2;
  border-radius: 1.5em;
  padding: 0.75em 1.5em 0.75em 1.5em;
  position: relative;
  transition-duration: 0.3s;
  overflow: hidden;
  background: #146CFF;
  /*color: #FFFFFF;*/ }
.lnk_btn_wrap a{
	padding: 0.2em 1em;
	font-size: 1.0em; }
.lnk_btn.lnk_squre{
	border-radius: 0.3em;
    padding: 1.25em 1.25em;}

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

.wpcf7cp-btns button{
  color: #F0DB56;
  padding: 0.75em 3em 0.75em 1em;
  border:none; }

.lnk_btn::before,
.lnk_btn_wrap a::before,
.submit_wrap::before,
.wpcf7cp-btns button::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /*z-index: -1;*/
  content: '';
  background-color: #fff;
  border:1px solid #146CFF;
  border-radius: 1.5em;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s; } 
.lnk_btn.lnk_squre::before{
	border-radius: 0.3em;}
.submit_wrap::after,
.wpcf7cp-btns button::after {
  font-family: "icoyoshioka";
  content: "\e900";
  font-weight: normal;
  font-size: 0.75em;
  color: #F0DB56;
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  z-index: 5; }
.submit_wrap:hover::after,
.wpcf7cp-btns button:hover::after {
  color: #146CFF; }
.wpcf7cp-btns button::before{
  z-index: -1 }

.lnk_btn:hover,
.lnk_btn_wrap a:hover,
.submit_wrap:hover,
.lnk_blk:hover .lnk_btn,
.wpcf7cp-btns button:hover {
  background: transparent;
  color: #146CFF;
  font-size:1.333em}
.lnk_btn_wrap a:hover{
  font-size: 1.0em; }

.lnk_btn:hover::before,
.lnk_btn_wrap a:hover::before,
.submit_wrap:hover::before,
.lnk_blk:hover .lnk_btn::before,
.wpcf7cp-btns button:hover::before {
  transform-origin: left top;
  transform: scale(1, 1); }

.lnk_btn_wrap a::after,
.lnk_btn_wrap a:hover::after{
  content: none;  }

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

.cat_btn{
  display: inline-block;
  font-size: 0.778em;
  border-radius: 1em;
  padding: 0 1em;
  position: relative;
  transition-duration: 0.3s;
  overflow: hidden;
  border: 1px solid #747686;
  background :#fff;
  color: #747686;
  margin-left: 1em;
  vertical-align: text-top;}
.cat_btn::before{
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #146CFF;
  border-radius: 1em;
  border: 1px solid #146CFF;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s; }
.cat_btn:hover {
  border: none;
  background: transparent;
  color: #fff;}
.cat_btn:hover::before {
  transform-origin: left top;
	transform: scale(1, 1); }
/*フォーム*/
form p{margin-bottom: 0;}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
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: 1em; }

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 #999 inset; }

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

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

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

.submit_wrap {
  position: relative;
  padding: 0.25em 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.8em;
  top: 1.0em;
  transform: rotate(-45deg);
  content: '';
  pointer-events: none; }

.blk_kiyaku {
    height: 20em;
    overflow-y: scroll;}

.blk_kiyaku h3{
	font-size: 2em;
	margin-bottom: 0.5em;}

.blk_kiyaku h4{
	color: #146CFF;
	font-size: 1.333em;
	margin-bottom: 0.3em;}

.blk_kiyaku p{
	margin-bottom: 2em;}
.blk_kiyaku::-webkit-scrollbar {
    width: 16px;}
.blk_kiyaku::-webkit-scrollbar-thumb {
    background-color: #747686;
    border-radius: 100px;}
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;
  padding-left: 0;
  animation: loop-slide 20s infinite linear 1s both; }

.blk_loopslide ul li {
  width: calc(100vw / 3);}

@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::after{
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 101%;
	height: 101%;
	background: #B4D8F2;
	transform-origin: right;
	animation: gradually 1s ease forwards;
	z-index: 10;
}
.bgc_yellow .gradually::after{
	background: #F0DB56;
}
@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; }
}
.active .delay_0-5s,
.active .delay_0-5s::after  {
  animation-delay: 0.5s; }
.active .delay_1s,
.active .delay_1s::after{
  animation-delay: 1s; }
.active .delay_1-5s,
.active .delay_1-5s::after {
  animation-delay: 1.5s; }
.active .delay_2s,
.active .delay_2s::after {
  animation-delay: 2s; }
.active .delay_2-5s,
.active .delay_2-5s::after {
  animation-delay: 2.5s; }
.active .delay_3s,
.active .delay_3s::after {
  animation-delay: 3s; }
.active .delay_3-5s,
.active .delay_3-5s::after {
  animation-delay: 3.5s; }
.active .delay_4s,
.active .delay_4s::after {
  animation-delay: 4s; }
.active .delay_4-5s,
.active .delay_4-5s::after {
  animation-delay: 4.5s; }
.active .delay_5s,
.active .delay_5s::after {
  animation-delay: 5s; }
.active .delay_6s,
.active .delay_6s::after {
  animation-delay: 6s; }
.active .delay_7s,
.active .delay_7s::after {
  animation-delay: 7s; }
.active .delay_8s,
.active .delay_8s::after {
  animation-delay: 8s; }
.active .delay_9s,
.active .delay_9s::after {
  animation-delay: 9s; }
.active .delay_10s,
.active .delay_10s::after {
  animation-delay: 10s; }
/*アイコンフォント*/
.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: #002876 solid 1px;
  margin-bottom: 1em !important; }

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

/* ▼　レスポンシブ　▼ */
/*===============================================*/
/*===============================================*/
/*===============================================*/
@media screen and (max-width: 1000px) {
  .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; }
}
