@charset "UTF-8";
/*===============================================================
	読み込み
===============================================================*/
/*===============================================================
	変数
===============================================================*/
/*　画面左右のマージン　*/
/*　幅　*/
/*	グリッド幅  */
/*	セクション、コンテンツ間のマージン　*/
/*===============================================================
	色
===============================================================*/
/*===============================================================

	_reset.scss 2021/9/24

===============================================================*/
/* 初期化
----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

input[type=submit], textarea {
  font-family: inherit;
}

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

body {
  font-family: "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, sans-serif;
}

h1, h2, h3, h4, h5, h6, p, li, th, td, dt, dd, div {
  font-size: 16px;
  line-height: 1.8;
}

caption, th, td {
  text-align: left;
  vertical-align: top;
}

img {
  vertical-align: top;
  border: 0;
}

ul, li {
  list-style: none;
}

option {
  padding-right: 1em;
}

address, caption {
  font-style: normal;
  font-weight: normal;
}

a {
  outline: none;
  text-decoration: underline;
}

a:focus {
  outline: none;
}

ul a, li a {
  zoom: 1;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

/* HTML5
----------------------------------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*===============================================================
	_mixin.scss
===============================================================*/
/*===============================================================
	ボタン
	@include btn_base(#c00,#000,#fff,#fff,auto);
===============================================================*/
/*===============================================================
	矢印
	@include mx_arw();	
===============================================================*/
/*===============================================================
	三角
	@include mx_sankaku(幅,高さ,色,色hover,向き);	
===============================================================*/
/*===============================================================
	センタリング
	@include mx_margin_center();	
===============================================================*/
/*===============================================================
	斜線の背景
	@include mx_slash($color1,$color2,$width);	
===============================================================*/
/*===============================================================
	グラデーション
	@include mx_grade(色1,色2,向き（横:h / 縦:v）)
===============================================================*/
/*===============================================================
	font
===============================================================*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("/common/font/noto_sans/NotoSansCJKjp-Regular_subset.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 800;
  src: url("/common/font/noto_sans/NotoSansCJKjp-Black_subset.woff") format("woff");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: normal;
  src: url("/common/font/yakuhan/YakuHanJP-Regular.woff2") format("woff2"), url("/common/font/yakuhan/YakuHanJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: bold;
  src: url("/common/font/yakuhan/YakuHanJP-Bold.woff2") format("woff2"), url("/common/font/yakuhan/YakuHanJP-Bold.woff") format("woff");
}
.sans {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
}

.serif {
  font-family: "Noto Serif JP", serif;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

body {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
}

/*===============================================================

	_common.scss 2021/9/24

===============================================================*/
/* html/body設定
----------------------------------------------------------------*/
body {
  width: 100%;
  color: #000;
  background: #fff;
  text-align: left;
  -webkit-text-size-adjust: none; /* 縦横文字サイズ同じ */
  -webkit-font-smoothing: antialiased;
}

a {
  color: #0897FF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}

a:hover {
  color: #45B0FF;
  text-decoration: underline;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～640px */
@media only screen and (max-width: 800px) {
  body {
    overflow-x: hidden;
  }
} /* for SP max-width: 800px */
/*===============================================================

	基本文字サイズ、装飾

===============================================================*/
h1, h2, h3, h4 {
  line-height: 1.5;
  font-weight: bold;
}

p {
  line-height: 1.8;
}

sup {
  margin: 0;
  padding: 0;
  font-size: 11px;
  line-height: 15px;
}

.bold {
  font-weight: bold;
}

.cap {
  font-size: small;
  line-height: 1.4;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  h1, h2, h3, h4, h5, h6, p, li, th, td, dt, dd, div {
    line-height: 1.6;
  }
  div,
p {
    font-size: 3.8vw;
    line-height: 1.8;
  }
  li {
    font-size: 3.8vw;
    line-height: 1.6;
  }
} /* for SP max-width: 800px */
/*===============================================================

	レイアウト
	_rayout.scss

===============================================================*/
.wrapper img {
  width: 100%;
  height: auto;
}

.full_width {
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 800px) {
  .full_width {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.max_width {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1900px) {
  .max_width {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1170px) {
  .max_width {
    padding: 0 30px;
  }
}
@media screen and (max-width: 800px) {
  .max_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.wide_width {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1600px) {
  .wide_width {
    padding: 0 50px;
  }
  .max_width .wide_width {
    padding: 0;
  }
}
@media screen and (max-width: 1170px) {
  .wide_width {
    padding: 0 30px;
  }
  .max_width .wide_width {
    padding: 0;
  }
}
@media screen and (max-width: 800px) {
  .wide_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.large_width {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1300px) {
  .large_width {
    padding: 0 50px;
  }
  .max_width .large_width, .wide_width .large_width {
    padding: 0;
  }
}
@media screen and (max-width: 1170px) {
  .large_width {
    padding: 0 30px;
  }
  .max_width .large_width, .wide_width .large_width {
    padding: 0;
  }
}
@media screen and (max-width: 800px) {
  .large_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.content_width {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 1070px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1170px) {
  .content_width {
    padding: 0 30px;
  }
  .max_width .content_width, .wide_width .content_width, .large_width .content_width {
    padding: 0;
  }
}
@media screen and (max-width: 800px) {
  .content_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.narrow_width {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .narrow_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.btn_width {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .btn_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.absolute_full_width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/*===============================================================

	seciton
	headlineとcontentなど、複数の要素、機能を取りまとめるコンテナ的な親要素。
	幅はsection_innerに記述する

===============================================================*/
.section_wrp {
  overflow: hidden;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section {
  width: 100%;
}

.section_inner {
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .section_inner {
    padding-top: 8vw;
    padding-bottom: 10vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

/*===============================================================

	content 
	個別のコンテンツ

===============================================================*/
.content + .content {
  margin-top: 100px;
}

.headline + .content {
  margin-top: 50px;
}

.content + .headline {
  margin-top: 100px;
}

.content .content + *,
.content * + .content {
  margin-top: 70px;
}

.content_title + .content {
  margin-top: 0;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
  .content {
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
} /* for tablet */
/* SP向けレイアウトの指定：～736px */
@media screen and (max-width: 800px) {
  .content + .content {
    margin-top: 10vw;
  }
  .headline + .content {
    margin-top: 5vw;
  }
  .content + .headline {
    margin-top: 10vw;
  }
  .content .content + *,
.content * + .content {
    margin-top: 8vw;
  }
  .content_title + .content {
    margin-top: 0;
  }
} /* for SP */
/*===============================================================
	_grid.scss
===============================================================*/
.grid_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.grid_wrp .grid {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 40px;
}
.grid_wrp .grid .grid_wrp {
  margin-top: -20px;
}
.grid_wrp .grid .grid {
  margin-top: 20px;
}
.grid_wrp .grid_1_1 {
  width: 100%;
}
.grid_wrp .grid_2_1 {
  width: calc((100% - 40px) / 2);
}
.grid_wrp .grid_3_1 {
  width: calc((100% - (40px * 2)) / 3); /* 40px * 2 = 80px */
}
.grid_wrp .grid_3_2 {
  width: calc(100% - (100% - (40px * 2)) / 3 - 40px);
}
.grid_wrp .grid_4_1 {
  width: calc((100% - (40px * 3)) / 4); /* 40px * 3 = 120px */
}
.grid_wrp .grid_5_1 {
  width: calc((100% - (40px * 2)) / 5); /* 20px * 4 = 80px */
}
.grid_wrp .grid_6_1 {
  width: calc((100% - (40px * 5)) / 6); /* 50px * 5 = 100px */
}
.grid_wrp.grid_wrp3:after, .grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before, .grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
  content: "";
  display: block;
  height: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.grid_wrp.grid_wrp3:after {
  width: calc((100% - (40px * 2)) / 3);
}
.grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before {
  width: calc((100% - (40px * 3)) / 4);
}
.grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
  width: calc((100% - (40px * 2)) / 5);
}
@media screen and (max-width: 800px) {
  .grid_wrp {
    margin-top: -5vw;
  }
  .grid_wrp .grid {
    margin-top: 5vw;
  }
  .grid_wrp .grid .grid_wrp {
    margin-top: -3vw;
  }
  .grid_wrp .grid .grid {
    margin-top: 3vw;
  }
  .grid_wrp .grid_1_1 {
    width: 100%;
  }
  .grid_wrp .grid_2_1 {
    width: 100%;
  }
  .grid_wrp .grid_3_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_3_2 {
    width: 100%;
  }
  .grid_wrp .grid_4_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_5_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_6_1 {
    width: calc((100% - 10vw) / 3);
  }
  .grid_wrp.grid_wrp3:after {
    width: calc((100% - 80px) / 3);
  }
  .grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before {
    width: calc((100% - 120px) / 4);
  }
  .grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
    width: calc((100% - 80px) / 5);
  }
  .grid_wrp .sp_grid_1 {
    width: 100% !important;
  }
}

/*===============================================================

	_headline.scss 2021/9/24

===============================================================*/
/*-------------------------------------------------------------
	mixin	
-------------------------------------------------------------*/
/*-------------------------------------------------------------
	block	
-------------------------------------------------------------*/
.block + .block_title {
  margin-top: 70px;
}
.block + .block {
  margin-top: 20px;
}
.block p + p {
  margin-top: 1em;
}
@media screen and (max-width: 800px) {
  .block + .block_title {
    margin-top: 8vw;
  }
  .block + .block {
    margin-top: 2vw;
  }
}

/*-------------------------------------------------------------
	headline	
-------------------------------------------------------------*/
.headline {
  margin-bottom: 70px;
  padding-top: 70px;
  border-top: solid 2px #000;
}
.headline .title {
  font-size: 40px;
}
.headline .lead {
  font-size: 20px;
  line-height: 1.6;
}
.headline .title + .lead {
  margin-top: 15px;
}
.headline .lead + .title {
  margin-top: 10px;
}
.content * + .headline {
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .headline {
    margin-bottom: 8vw;
    padding-top: 10vw;
    border-top: solid 1px #000;
  }
  .headline .title {
    font-size: 6.5vw;
  }
  .headline .lead {
    font-size: 3.5vw;
    line-height: 1.6;
  }
  .headline .title + .lead {
    margin-top: 3vw;
  }
  .headline .lead + .title {
    margin-top: 2vw;
  }
  .content * + .headline {
    margin-top: 10vw;
  }
}

/*-------------------------------------------------------------
	content_title	
-------------------------------------------------------------*/
.content_title {
  margin-bottom: 30px;
}
.content_title .title {
  font-size: 30px;
}
.content_title .lead {
  font-size: 20px;
  line-height: 1.6;
}
.content_title .title + .lead {
  margin-top: 15px;
}
.content_title .lead + .title {
  margin-top: 10px;
}
.content * + .content_title {
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .content_title {
    margin-bottom: 5.5vw;
  }
  .content_title .title {
    font-size: 5vw;
  }
  .content_title .lead {
    font-size: 4vw;
    line-height: 1.5;
  }
  .content_title .title + .lead {
    margin-top: 2vw;
  }
  .content_title .lead + .title {
    margin-top: 2vw;
  }
  .content * + .content_title {
    margin-top: 10vw;
  }
}

/*-------------------------------------------------------------
	lv_1	
-------------------------------------------------------------*/
.lv_1 {
  margin-bottom: 20px;
}
.lv_1 .title {
  font-size: 30px;
}
.lv_1 .lead {
  font-size: 20px;
}
.lv_1 .title + .lead {
  margin-top: 5px;
}
.lv_1 .lead + .title {
  margin-top: 10px;
}
.content * + .lv_1 {
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .lv_1 {
    margin-bottom: 5vw;
  }
  .lv_1 .title {
    font-size: 5vw;
  }
  .lv_1 .lead {
    font-size: 3.5vw;
    line-height: 1.5;
  }
  .lv_1 .title + .lead {
    margin-top: 1vw;
  }
  .lv_1 .lead + .title {
    margin-top: 1vw;
  }
  .content * + .lv_1 {
    margin-top: 10vw;
  }
}

/*-------------------------------------------------------------
	lv_2	
-------------------------------------------------------------*/
.lv_2 {
  margin-bottom: 20px;
}
.lv_2 .title {
  font-size: 25px;
}
.lv_2 .lead {
  font-size: 18px;
}
.lv_2 .title + .lead {
  margin-top: 5px;
}
.lv_2 .lead + .title {
  margin-top: 10px;
}
@media screen and (max-width: 800px) {
  .lv_2 {
    margin-bottom: 3vw;
  }
  .lv_2 .title {
    font-size: 4.5vw;
  }
  .lv_2 .lead {
    font-size: 3.5vw;
  }
  .lv_2 .title + .lead {
    margin-top: 1vw;
  }
  .lv_2 .lead + .title {
    margin-top: 1vw;
  }
}

/*-------------------------------------------------------------
	lv_3	
-------------------------------------------------------------*/
.lv_3 {
  margin-bottom: 20px;
}
.lv_3 .title {
  font-size: 20px;
}
.lv_3 .lead {
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  .lv_3 {
    margin-bottom: 3vw;
  }
  .lv_3 .title {
    font-size: 4.2vw;
  }
  .lv_3 .lead {
    font-size: 3.2vw;
    line-height: 1.4;
  }
  .lv_3 .title + .lead {
    margin-top: 1vw;
  }
  .lv_3 .lead + .title {
    margin-top: 0vw;
  }
}

/*-------------------------------------------------------------
	lv_4	
-------------------------------------------------------------*/
.lv_4 {
  margin-bottom: 20px;
}
.lv_4 .title {
  font-size: 18px;
}
.lv_4 .lead {
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  .lv_4 {
    margin-bottom: 3vw;
  }
  .lv_4 .title {
    font-size: 4.2vw;
  }
  .lv_4 .lead {
    font-size: 3.2vw;
    line-height: 1.4;
  }
  .lv_4 .title + .lead {
    margin-top: 1vw;
  }
  .lv_4 .lead + .title {
    margin-top: 0vw;
  }
}

/*===============================================================

	_header.scss 2021/10/4

===============================================================*/
/*===============================================================

	section_wrp

===============================================================*/
.section_wrp {
  padding-top: 110px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 800px) {
  .section_wrp {
    padding-top: 27vw;
  }
}

/*===============================================================

	header

===============================================================*/
.header {
  background: #d2f6fa;
  width: 100%;
  height: 110px;
  position: fixed;
  z-index: 999;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.header .header_inner {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .logo {
  width: 400px;
}
.header .menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .menu a {
  display: block;
  background: #fff;
  font-size: 14px;
  line-height: 1;
  padding: 10px;
  color: #333;
  border-radius: 5px;
  text-align: center;
}
.header .menu .current a {
  background: #00c0da;
  color: #fff;
  text-decoration: none;
  pointer-events: none;
}
.header .menu a:hover {
  background: #00c0da;
  color: #fff;
  text-decoration: none;
}
.header .menu li + li {
  margin-left: 10px;
}
@media screen and (max-width: 1170px) {
  .header .header_inner {
    padding: 30px;
  }
}
@media screen and (max-width: 800px) {
  .header {
    height: 27vw;
  }
  .header .header_inner {
    padding: 0;
  }
  .header .logo {
    width: 100%;
    padding: 3vw 5vw;
  }
  .header .menu {
    width: 100%;
    padding: 0 5vw;
    background: #d2f6fa;
    border-bottom: solid 2px #00c0da;
  }
  .header .menu a {
    font-size: 4vw;
    padding: 3vw;
    border-radius: 3vw 3vw 0 0;
  }
  .header .menu li {
    width: calc((100% - 5px) / 2);
  }
  .header .menu li + li {
    margin-left: 0;
  }
}

/*===============================================================

	_footer.scss 2021/10/4

===============================================================*/
/*===============================================================

	footer

===============================================================*/
.footer {
  text-align: center;
  background: #d2f6fa;
  padding: 50px 30px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.footer .logo {
  max-width: 400px;
  margin: 0 auto;
}
.footer address {
  font-size: 14px;
  margin-top: 15px;
}
.footer .copyright {
  margin-top: 30px;
  font-size: 10px;
}
@media screen and (max-width: 800px) {
  .footer {
    padding: 5vw;
  }
  .footer .logo {
    max-width: inherit;
    width: 60vw;
    margin: 0 auto;
  }
  .footer address {
    font-size: 3.5vw;
    margin-top: 2vw;
  }
  .footer .copyright {
    margin-top: 2vw;
    font-size: 2.5vw;
  }
}

/*===============================================================

	_utils.scss 2021/9/24

===============================================================*/
.align_center {
  text-align: center;
}

.align_right {
  text-align: right;
}

.align_left {
  text-align: left;
}

@media only screen and (max-width: 800px) {
  .sp_align_center {
    text-align: center !important;
  }
  .sp_align_right {
    text-align: right !important;
  }
  .sp_align_left {
    text-align: left !important;
  }
} /* for SP  */
/*===============================================================

	フロート関係

===============================================================*/
.clear {
  width: 100%;
  overflow: hidden;
}

.clearboth {
  clear: both;
}

.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

.flol {
  float: left;
}

.flor {
  float: right;
}

/*===============================================================

	PC/SP/TABLET

===============================================================*/
.sp {
  display: none;
}

.tablet {
  display: none;
}

.sp {
  display: none;
}

.sp_tablet {
  display: none;
}

.none {
  display: none !important;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
  .pc {
    display: none;
  }
  .tablet,
.pc_tablet,
.sp_tablet {
    display: block;
  }
} /* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  .sp {
    display: block;
  }
  .pc_tablet,
.tablet {
    display: none;
  }
} /* for SP max-width: 800px */
/*===============================================================

	img fig

===============================================================*/
.fig img,
.fitimg img,
.photo img {
  width: 100%;
  height: auto;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
/* for SP max-width: 800px */
/*===============================================================

	マージン

===============================================================*/
.mt0 {
  margin-top: 0px !important;
}

.mt05 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb05 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
  .mt0 {
    margin-top: 0px !important;
  }
  .mt05 {
    margin-top: 0.47vw;
  }
  .mt10 {
    margin-top: 0.93vw;
  }
  .mt15 {
    margin-top: 1.4vw;
  }
  .mt20 {
    margin-top: 1.87vw;
  }
  .mt25 {
    margin-top: 2.34vw;
  }
  .mt30 {
    margin-top: 2.8vw;
  }
  .mt40 {
    margin-top: 3.74vw;
  }
  .mt50 {
    margin-top: 4.67vw;
  }
  .mt60 {
    margin-top: 5.61vw;
  }
  .mt70 {
    margin-top: 6.54vw;
  }
  .mt80 {
    margin-top: 7.48vw;
  }
  .mt90 {
    margin-top: 8.41vw;
  }
  .mt100 {
    margin-top: 9.35vw;
  }
  .mb05 {
    margin-bottom: 0.47vw;
  }
  .mb10 {
    margin-bottom: 0.93vw;
  }
  .mb15 {
    margin-bottom: 1.4vw;
  }
  .mb20 {
    margin-bottom: 1.87vw;
  }
  .mb25 {
    margin-bottom: 2.34vw;
  }
  .mb30 {
    margin-bottom: 2.8vw;
  }
  .mb40 {
    margin-bottom: 3.74vw;
  }
  .mb50 {
    margin-bottom: 4.67vw;
  }
} /* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media screen and (max-width: 800px) {
  .mt0 {
    margin-top: 0px !important;
  }
  .mt05 {
    margin-top: 0.63vw;
  }
  .mt10 {
    margin-top: 1.25vw;
  }
  .mt15 {
    margin-top: 1.88vw;
  }
  .mt20 {
    margin-top: 2.5vw;
  }
  .mt25 {
    margin-top: 3.13vw;
  }
  .mt30 {
    margin-top: 3.75vw;
  }
  .mt40 {
    margin-top: 5vw;
  }
  .mt50 {
    margin-top: 6.25vw;
  }
  .mt60 {
    margin-top: 7.5vw;
  }
  .mt70 {
    margin-top: 8.75vw;
  }
  .mt80 {
    margin-top: 10vw;
  }
  .mt90 {
    margin-top: 11.25vw;
  }
  .mt100 {
    margin-top: 12.5vw;
  }
  .mb05 {
    margin-bottom: 0.63vw;
  }
  .mb10 {
    margin-bottom: 1.25vw;
  }
  .mb15 {
    margin-bottom: 1.88vw;
  }
  .mb20 {
    margin-bottom: 2.5vw;
  }
  .mb25 {
    margin-bottom: 3.13vw;
  }
  .mb30 {
    margin-bottom: 3.75vw;
  }
  .mb40 {
    margin-bottom: 5vw;
  }
  .mb50 {
    margin-bottom: 6.25vw;
  }
} /* for SP max-width: 800px */
/*===============================================================

	fixed

===============================================================*/
.fixed {
  position: fixed;
  top: 0;
}

.bg_fixed {
  background-attachment: fixed;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
  .fixed {
    position: fixed;
    top: 0;
  }
} /* for tablet max-width: 940px */
/* SP向けレイアウトの指定：～800px */
/* for SP */
/*===============================================================

	テーブル

===============================================================*/
.table {
  width: 100%;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  border-collapse: separate;
  border-spacing: 0;
  border-bottom: solid 1px #ddd;
}

.table th,
.table td {
  padding: 10px;
  border: solid 1px #ddd;
  border-bottom: 0;
  color: #000;
}

.table th {
  font-weight: bold;
  border-right: 0;
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}

.table td {
  color: #000;
}

.table td + td {
  border-left: 0;
}

.table tr:nth-child(odd) {
  background: #fff;
}

.table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.05);
}

/* タブレット */
/* for tablet */
/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 800px) {
  .table {
    padding: 0;
    margin-top: 0px;
  }
  .table th,
.table td {
    padding: 3vw;
    font-size: 3.5vw;
    line-height: 1.6;
  }
  .table tr:nth-child(odd),
.table tr:nth-child(even) {
    background: #fff;
  }
  .table_wrp_scroll {
    overflow-y: scroll;
  }
  .table_wrp_scroll .table {
    min-width: 200vw;
  }
} /* for SP */
/*===============================================================

	フォーム

===============================================================*/
/* タブレット */
/* for tablet */
/* SP */
/* for SP */
/*===============================================================

	btn_detail

===============================================================*/
.btn_detail {
  width: 400px;
  margin: 0 auto;
  margin-top: 40px;
}

.btn_detail a {
  position: relative;
  text-decoration: none;
  display: block;
  background-color: #1d50a2;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  padding: 20px 0;
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px;
}

.btn_detail a:after {
  position: absolute;
  content: " ";
  width: 13px;
  height: 13px;
  top: 0;
  left: auto;
  bottom: 0;
  right: 10px;
  margin: auto;
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.btn_detail a:hover {
  text-decoration: none;
  background-color: #2b6bec;
}

/* タブレット */
@media screen and (max-width: 1070px) {
  .btn_detail {
    width: 100%;
  }
} /* for tablet */
/* SP */
@media screen and (max-width: 800px) {
  .btn_detail {
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
  }
  .btn_detail a {
    font-size: 16px;
  }
} /* for SP */
/*===============================================================

	txtlink 2016/11/16

===============================================================*/
.txtlink a {
  padding-left: 15px;
  color: #500;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.txtlink a:hover {
  color: #c00;
}

.txtlink a:after {
  position: absolute;
  content: " ";
  width: 6px;
  height: 6px;
  top: 7px;
  bottom: auto;
  left: 0;
  right: auto;
  margin: auto;
  border-top: solid 2px #c00;
  border-left: solid 2px #c00;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.txtlink.arw_prev a:after {
  top: 7px;
  bottom: auto;
  left: 3px;
  right: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.txtlink.arw_after a {
  padding-left: 0;
  padding-right: 10px;
}

.txtlink.arw_after a:after {
  left: auto;
  right: 0;
}

.txtlink.arw_down a:after {
  top: 7px;
  bottom: auto;
  left: 2px;
  right: auto;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.txtlink.arw_after_down a {
  padding-left: 0;
  padding-right: 10px;
}

.txtlink.arw_after_down a:after {
  top: 7px;
  bottom: auto;
  left: auto;
  right: 0;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

/*	arw_box */
.txtlink.arw_box a {
  padding-left: 25px;
}

.txtlink.arw_box a:before {
  content: " ";
  width: 20px;
  height: 20px;
  background: #000;
  position: absolute;
  top: 2px;
  bottom: auto;
  left: 0;
  right: auto;
  margin: auto;
}

.txtlink.arw_box a:after {
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
  top: 8px;
  bottom: auto;
  left: 5px;
  right: auto;
}

/*===============================================================

	section_blog

===============================================================*/
.section_blog {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_blog .block_blog_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section_blog .block_blog_entry {
  width: 73%;
  border-left: solid 1px #676568;
  border-right: solid 1px #676568;
  padding: 0 50px;
}
.section_blog .block_blog_side {
  width: 22%;
}
@media screen and (max-width: 800px) {
  .section_blog .block_blog_wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section_blog .block_blog_entry {
    width: 100%;
    border-left: solid 0px #676568;
    border-right: solid 0px #676568;
    padding: 0;
  }
  .section_blog .block_blog_side {
    width: 100%;
  }
}

/*===============================================================

	block_blog_side

===============================================================*/
.block_blog_side {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.block_blog_side .side_block + .side_block {
  margin-top: 50px;
}
.block_blog_side .title {
  font-size: 25px;
  line-height: 30px;
  font-weight: bold;
  color: #00c0da;
}
.block_blog_side .title + .block {
  margin-top: 15px;
}
@media screen and (max-width: 800px) {
  .block_blog_side .side_block,
.block_blog_side .side_block + .side_block {
    margin-top: 8vw;
  }
  .block_blog_side .title {
    font-size: 6vw;
    line-height: 8vw;
  }
  .block_blog_side .title + .block {
    margin-top: 3vw;
  }
}

/*===============================================================

	block_entry_header

===============================================================*/
.block_entry_header {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.block_entry_header .title {
  font-size: 25px;
  line-height: 30px;
  font-weight: bold;
  color: #00c0da;
}
/*===============================================================

	block_calendar

===============================================================*/
.block_calendar {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	table	
  -------------------------------------------------------------*/
}
.block_calendar .module-header,
.block_calendar .calendarhead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -10px;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
}
.block_calendar .module-header .now_month,
.block_calendar .calendarhead .now_month {
  font-size: 18px;
  line-height: 30px;
}
.block_calendar .module-header .calendar-prev-link,
.block_calendar .module-header .calendar-next-link,
.block_calendar .module-header .arw a,
.block_calendar .calendarhead .calendar-prev-link,
.block_calendar .calendarhead .calendar-next-link,
.block_calendar .calendarhead .arw a {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
  overflow: hidden;
  text-indent: -100px;
  margin-left: 10px;
}
.block_calendar .module-header .calendar-prev-link::after,
.block_calendar .module-header .calendar-next-link::after,
.block_calendar .module-header .arw a::after,
.block_calendar .calendarhead .calendar-prev-link::after,
.block_calendar .calendarhead .calendar-next-link::after,
.block_calendar .calendarhead .arw a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #ff8a00;
  border-right: 10px solid transparent;
  -webkit-transform: translate(3px, 0);
          transform: translate(3px, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.block_calendar .module-header .calendar-prev-link,
.block_calendar .module-header .prev a,
.block_calendar .calendarhead .calendar-prev-link,
.block_calendar .calendarhead .prev a {
  margin-left: 0;
  margin-right: 10px;
}
.block_calendar .module-header .calendar-prev-link::after,
.block_calendar .module-header .prev a::after,
.block_calendar .calendarhead .calendar-prev-link::after,
.block_calendar .calendarhead .prev a::after {
  left: 0;
  right: 10px;
  border-left: 10px solid transparent;
  border-right: 10px solid #ff8a00;
}
.block_calendar .module-header .calendar-prev-link:hover::after,
.block_calendar .module-header .calendar-next-link:hover::after,
.block_calendar .module-header .arw a:hover::after,
.block_calendar .calendarhead .calendar-prev-link:hover::after,
.block_calendar .calendarhead .calendar-next-link:hover::after,
.block_calendar .calendarhead .arw a:hover::after {
  border-left: 10px solid #FFBC00;
  border-right: 10px solid transparent;
}
.block_calendar .module-header .calendar-prev-link:hover::after,
.block_calendar .module-header .prev a:hover::after,
.block_calendar .calendarhead .calendar-prev-link:hover::after,
.block_calendar .calendarhead .prev a:hover::after {
  border-left: 10px solid transparent;
  border-right: 10px solid #FFBC00;
}
@media screen and (max-width: 800px) {
  .block_calendar .module-header,
.block_calendar .calendarhead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: -10px;
    font-size: 5vw;
    line-height: 7vw;
    padding: 0 3vw;
    padding-bottom: 3vw;
  }
  .block_calendar .module-header .now_month,
.block_calendar .calendarhead .now_month {
    font-size: 5vw;
    line-height: 7vw;
    padding: 0 3vw;
  }
  .block_calendar .module-header .calendar-prev-link,
.block_calendar .module-header .calendar-next-link,
.block_calendar .module-header .arw a,
.block_calendar .calendarhead .calendar-prev-link,
.block_calendar .calendarhead .calendar-next-link,
.block_calendar .calendarhead .arw a {
    width: 7vw;
    height: 7vw;
  }
}
.block_calendar table {
  width: 100%;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.block_calendar table td, .block_calendar table th {
  width: 14.2857142857%;
  text-align: center;
}
.block_calendar table td a,
.block_calendar table .posted a {
  display: block;
  color: #fff;
  background: #00c0da;
  text-decoration: none;
}
.block_calendar table td a:hover,
.block_calendar table .posted a:hover {
  color: #fff;
  background: #ff8a00;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .block_calendar table td, .block_calendar table th {
    font-size: 4vw;
    line-height: 2;
  }
}

/*===============================================================

	block_archives

===============================================================*/
.block_archives {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.block_archives ul {
  overflow: hidden;
  height: 5em;
}
.block_archives ul.open {
  height: auto;
}
.block_archives li a {
  color: #000;
  position: relative;
  padding-left: 1em;
}
.block_archives li a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #ff8a00;
  border-right: 8px solid transparent;
  -webkit-transform: translate(3px, 0);
          transform: translate(3px, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.block_archives li a:hover {
  text-decoration: none;
  color: #FFBC00;
}
.block_archives li a:hover::after {
  border-left: 8px solid #FFBC00;
}
.block_archives .more_btn {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1;
}
.block_archives .more_btn a {
  display: inline-block;
  color: #000;
  border: solid 1px #ccc;
  padding: 5px 20px;
}
.block_archives .more_btn a:hover {
  border: solid 1px #00c0da;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .block_archives ul {
    overflow: hidden;
    height: 8em;
  }
  .block_archives li a {
    display: block;
    font-size: 4vw;
    padding: 2vw;
    padding-left: 1.5em;
    border-top: solid 1px #ddd;
  }
  .block_archives .more_btn {
    margin-top: 3vw;
    font-size: 3.5vw;
    line-height: 1;
  }
  .block_archives .more_btn a {
    display: block;
    color: #000;
    border: solid 1px #ccc;
    padding: 2vw;
    text-align: center;
  }
}

/*===============================================================

	block_content

===============================================================*/
.block_content {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.block_content .pagetitle {
  font-size: 25px;
  line-height: 30px;
  font-weight: bold;
  color: #00c0da;
}
.block_content .pagetitle + .block_entry {
  margin-top: 15px;
}
@media screen and (max-width: 800px) {
  .block_content .pagetitle {
    font-size: 6vw;
    line-height: 8vw;
  }
  .block_content .pagetitle + .block_entry {
    margin-top: 3vw;
  }
}

/*===============================================================

	block_entry

===============================================================*/
.block_entry {
  padding-bottom: 50px;
  position: relative;
  border-bottom: solid 1px #676568;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.block_entry + .block_entry {
  margin-top: 50px;
}
.block_entry h2 {
  font-size: 25px;
  line-height: 30px;
  font-weight: bold;
  color: #00c0da;
}
.block_entry .date {
  font-size: 16px;
}
.block_entry h3 {
  font-size: 24px;
}
.block_entry h3 {
  font-size: 18px;
}
.block_entry .googlemap,
.block_entry p,
.block_entry * + h3,
.block_entry * + h4,
.block_entry * + .date {
  margin-top: 15px;
}
.block_entry .googlemap + *,
.block_entry p + h2,
.block_entry p + h3,
.block_entry p + h4 {
  margin-top: 30px;
}
.block_entry h4 + p {
  margin-top: 5px;
}
.block_entry .googlemap iframe {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .block_entry {
    padding-bottom: 8vw;
  }
  .block_entry + .block_entry {
    margin-top: 8vw;
  }
  .block_entry h2 {
    font-size: 6vw;
    line-height: 8vw;
  }
  .block_entry .date {
    font-size: 3.5vw;
  }
  .block_entry h3 {
    font-size: 5vw;
  }
  .block_entry h4 {
    font-size: 4.5vw;
  }
  .block_entry .googlemap,
.block_entry p,
.block_entry * + h3,
.block_entry * + h4,
.block_entry * + .date {
    margin-top: 3vw;
  }
  .block_entry .googlemap + *,
.block_entry p + h2,
.block_entry p + h3,
.block_entry p + h4 {
    margin-top: 6vw;
  }
  .block_entry h4 + p {
    margin-top: 1vw;
  }
}

/*===============================================================

	_thiscontents.scss 2021/10/4

===============================================================*/
/*===============================================================

	PAGETOP

===============================================================*/
#btn_pagetop {
  width: 100%;
  overflow: hidden;
}

#btn_pagetop a {
  display: block;
  right: -300px;
  top: 0;
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #00c0da;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 101;
  position: fixed;
  border-radius: 30px;
}

#btn_pagetop a:hover {
  background-color: #00D5F2;
}

#btn_pagetop a:after {
  position: absolute;
  content: " ";
  width: 14px;
  height: 14px;
  top: 20px;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 2px;
}

/* SP */
@media screen and (max-width: 800px) {
  #btn_pagetop a {
    width: 40px;
    height: 40px;
  }
  #btn_pagetop a:after {
    width: 12px;
    height: 12px;
    top: 17px;
    left: 0;
    right: 0;
    bottom: auto;
  }
} /* for SP */
/*===============================================================

	section_service

===============================================================*/
.section_service {
  padding-top: 50px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_service .title {
  font-size: 30px;
  font-weight: normal;
}
.section_service .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}
.section_service .list li {
  width: calc((100% - 120px) / 7);
  text-align: center;
  line-height: 1.2;
  font-weight: bold;
}
.section_service .list li img {
  margin-bottom: 10px;
}
.section_service .list li a {
  display: block;
  color: #000;
}
.section_service .list li a:hover {
  opacity: 0.7;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .section_service {
    padding: 5vw;
  }
  .section_service .title {
    font-size: 6vw;
    font-weight: normal;
  }
  .section_service .list {
    margin-top: -2vw;
  }
  .section_service .list li {
    width: calc((100% - 6vw) / 4);
    text-align: center;
    line-height: 1.2;
    font-weight: bold;
    font-size: 3vw;
    margin-top: 5vw;
  }
  .section_service .list li img {
    margin-bottom: 3vw;
  }
  .section_service .list::after {
    content: "";
    height: 0;
    width: calc((100% - 6vw) / 4);
  }
}

/*===============================================================

	section_kv

===============================================================*/
.section_kv {
  background: #d2f6fa;
  padding: 0 0 30px 0;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_kv .block_kv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section_kv .txt_block {
  width: 50%;
}
.section_kv .img_block {
  width: 50%;
}
.section_kv .title {
  width: 100%;
  font-size: 50px;
  line-height: 1.5;
  font-weight: normal;
}
.section_kv .telbox {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section_kv .telbox .label {
  width: 90px;
  background: #00c0da;
  color: #fff;
  text-align: center;
  padding: 10px;
  line-height: 1.5;
}
.section_kv .telbox .tel {
  font-size: 46px;
  margin-left: 15px;
}
.section_kv .telbox .tel a {
  color: #676568;
}
.section_kv .telbox .tel a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media screen and (max-width: 1070px) {
  .section_kv .title {
    font-size: 4.67vw;
  }
  .section_kv .telbox {
    margin-top: 1.4vw;
    border-radius: 3vw;
    overflow: hidden;
  }
  .section_kv .telbox .label {
    width: 10vw;
    padding: 1vw;
  }
  .section_kv .telbox .tel {
    font-size: 4.3vw;
    margin-left: 1.4vw;
  }
}
@media screen and (max-width: 800px) {
  .section_kv {
    padding: 5vw;
  }
  .section_kv .txt_block {
    width: 57%;
  }
  .section_kv .img_block {
    width: 40%;
  }
  .section_kv .title {
    width: 100%;
    font-size: 5.5vw;
    line-height: 1.3;
    font-weight: normal;
  }
  .section_kv .telbox {
    margin-top: 2vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_kv .telbox .label {
    width: 100%;
    font-size: 3vw;
    padding: 1vw;
    line-height: 1.5;
  }
  .section_kv .telbox .tel {
    width: 100%;
    font-size: 5vw;
    margin-left: 0;
    color: #676568;
    margin-top: 0vw;
    background: #fff;
    text-align: center;
  }
}

/*===============================================================
	mixinテスト
===============================================================*/
.under_line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, rgba(255, 0, 0, 0.3)));
  background: linear-gradient(transparent 70%, rgba(255, 0, 0, 0.3) 0%);
  display: inline;
}

.under_marker {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #ff0));
  background: linear-gradient(transparent 0%, #ff0 0%);
  display: inline;
}

.btn_link {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  border: solid 1px #000;
}
.btn_link a {
  display: block;
  text-align: center;
  background: #fff;
  color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 20px;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .btn_link a {
    padding: 3vw;
  }
}
.btn_link a:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}
.btn_link a {
  position: relative;
}
.btn_link a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border: solid 1px #000;
  width: 6px;
  height: 6px;
  border-top: none;
  border-left: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 10px;
  -webkit-transform: rotate(-45deg) translate(-1px, -1px);
          transform: rotate(-45deg) translate(-1px, -1px);
}
.btn_link a:hover::after {
  border: solid 1px #fff;
  border-top: none;
  border-left: none;
}
@media screen and (max-width: 800px) {
  .btn_link {
    width: 80%;
  }
}

.btn_sankaku {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  border: solid 1px #000;
}
.btn_sankaku a {
  display: block;
  text-align: center;
  background: #000;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 20px;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .btn_sankaku a {
    padding: 3vw;
  }
}
.btn_sankaku a:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
}
.btn_sankaku a {
  position: relative;
}
.btn_sankaku a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 0;
  height: 0;
  border-style: solid;
  left: 10px;
  border-width: 5px 8px 5px 0;
  border-color: transparent #fff transparent transparent;
}
.btn_sankaku a:hover::after {
  border-width: 5px 8px 5px 0;
  border-color: transparent #000 transparent transparent;
}
@media screen and (max-width: 800px) {
  .btn_sankaku {
    width: 80%;
  }
}

.bg_slash {
  background-image: linear-gradient(-45deg, #fff 25%, #eee 25%, #eee 50%, #fff 50%, #fff 75%, #eee 75%, #eee);
  background-size: 5px 5px;
  padding: 30px;
}

.bg_grade {
  background: #FF6EC9;
  background: -webkit-gradient(linear, left top, right top, from(#FF6EC9), to(#5DCAFC));
  background: linear-gradient(to right, #FF6EC9 0%, #5DCAFC 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF6EC9", endColorstr=" #5DCAFC", GradientType=1);
  padding: 30px;
}
/*# sourceMappingURL=style.css.map */