@charset "UTF-8";
/* Scss Document */
/* CSS Document */
:root {
  --text-color: #222;
  /*メイン色*/
  --main-color: #0e3854;
  /*サブ色*/
  --sub-color: #073f18;
  /*サブ色02*/
  --sub-color02: #7a9bb1;
  /*サブ色03*/
  --sub-color03: #31546b;
  /*サイドメニュー・レイアウト類の背景色*/
  --bg-color: #dddddd;
  /*境界線色*/
  --border-color: #d9d9d9;
  /* web font */
  --shi:"shippori-mincho", sans-serif;
  --cor:"cormorant", sans-serif;
  --pag:"paganini", serif;
}

*,
::before,
::after {
  box-sizing: border-box;
  /* ↓↓debug code↓↓ */
  /* outline: 1px solid red; */
}

body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--text-color);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: justify;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

iframe {
  max-width: 100%;
  vertical-align: top;
}

a {
  color: var(--main-color);
  text-decoration: none;
}

a:hover {
  color: var(--sub-color);
}

/*tel*/
[href^=tel]:hover {
  cursor: default;
}

a[href="tel:準備中"] {
  pointer-events: none;
}

::selection {
  color: #fff;
  background-color: var(--sub-color);
}

::-moz-selection {
  color: #fff;
  background-color: var(--sub-color);
}

body,
.nav_wrap.fixed,
#mainvisual .inner,
header,
footer {
  min-width: 1240px;
}

@media print {
  html {
    -webkit-print-color-adjust: exact;
  }
  body {
    zoom: 80%;
  }
  .fixed {
    position: inherit !important;
  }
}
/* 画像のにじみ（大きい画像を小さく表示した時等）対策 */
.visibility {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

  header

============================================================================*/
header {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 120px; /* navのtopと同じ値にする */
  margin-bottom: 80px; /* navのheightと同じ値にする */
  background: rgba(0, 0, 0, 0.8);
}

header .inner {
  position: relative;
  max-width: calc(100% - 560px);
  width: 70.6%;
  height: inherit;
  padding-top: 10px;
  margin: 0 140px 0 auto;
}

/* ロゴ */
header .header_logo {
  position: absolute;
  top: 24px;
  left: 50px;
  z-index: 11;
  width: 360px;
  height: 72px;
}

header .header_logo img {
  width: 360px;
  height: 72px;
}

.head_btn_list {
  display: flex;
  gap: 0 10px;
  justify-content: right;
}
.head_btn_list li a {
  display: block;
  background: #fff;
}
.head_btn_list li a img {
  transition: opacity 0.2s ease;
}
.head_btn_list li a img:hover {
  opacity: 0.8;
}
.head_btn_list li.coming a {
  pointer-events: none;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.head_btn_list li.coming a img {
  transition: none;
}

.head_ank_nav {
  margin-top: 18px;
  display: flex;
  gap: 0 15px;
  justify-content: right;
}
.head_ank_nav a {
  position: relative;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.head_ank_nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.head_ank_nav a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

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

  nav

============================================================================*/
@media print, screen and (min-width: 641px) {
  /* PC用メニュー */
  /* ボタン */
  .pc_menu {
    position: relative;
    text-align: center;
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 15;
    width: 100px;
    height: 100px;
    border: none;
    background: #111;
    padding: 0;
  }
  .pc_menu .line {
    position: absolute;
    top: 39px;
    left: 0;
    right: 0;
    display: block;
    width: 36px;
    height: 1px;
    background-color: #fff;
    margin: 0 auto;
    transition: background-color ease 0.5s, -webkit-transform ease 0.5s;
    transition: transform ease 0.5s, background-color ease 0.5s;
    transition: transform ease 0.5s, background-color ease 0.5s, -webkit-transform ease 0.5s;
  }
  .pc_menu .line::before, .pc_menu .line::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 36px;
    height: 1px;
    background-color: #fff;
    transition: background-color ease 0.5s, -webkit-transform ease 0.5s;
    transition: transform ease 0.5s, background-color ease 0.5s;
    transition: transform ease 0.5s, background-color ease 0.5s, -webkit-transform ease 0.5s;
  }
  .pc_menu .line::before {
    top: -11px;
  }
  .pc_menu .line::after {
    bottom: -11px;
  }
  .pc_menu .pc_menu_tit {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 21px;
    margin: auto 0 0;
    display: block;
    color: #fff;
    font-family: var(--cor);
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  .pc_menu.open .line {
    background-color: transparent;
  }
  .pc_menu.open .line::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .pc_menu.open .line::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  /* メニュー */
  .pc_menu_wrap {
    overflow-y: scroll;
    display: flex;
    align-items: center;
    padding: 100px 50px 50px;
    position: fixed;
    z-index: 14;
    top: 0;
    right: -100%;
    height: 100%;
    opacity: 0;
    transition: right 1s ease, opacity 1s ease;
    background-color: rgba(255, 255, 255, 0.9);
    width: 40%;
    max-width: 700px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  .pc_menu_wrap.js-open {
    opacity: 1;
    right: 0;
  }
  .pc_menu_wrap .pc_menu_item {
    width: 100%;
  }
  .pc_menu_wrap .pc_menu_item li {
    line-height: 1.3;
  }
  .pc_menu_wrap .pc_menu_item li a {
    display: block;
    width: 100%;
    color: var(--text-color);
    font-family: var(--shi);
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.08em;
    padding: 15px 10px;
    border-bottom: 1px solid var(--border-color);
  }
  .pc_menu_wrap .pc_menu_item li a:hover {
    background: rgba(122, 155, 177, 0.05);
  }
  .pc_menu_wrap .pc_menu_item li:first-of-type a {
    border-top: 1px solid var(--border-color);
  }
  .nav_wrap {
    display: none;
  }
}
/*============================================================================

  #mainvisual

============================================================================*/
/* TOP下層共通 */
#mainvisual {
  display: block;
  position: relative;
  height: 950px;
}

#mainvisual .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: table;
  height: inherit;
  width: 1200px;
  margin: 0 auto;
}

.mainvisual_wrap {
  height: 600px;
}

/* キャッチフレーズ */
.mainvisual_catch {
  position: absolute;
  top: 385px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.mainvisual_catch p {
  display: block;
  text-align: center;
  color: #fff;
  font-family: var(--shi);
  font-weight: 600;
  font-size: 50px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  -webkit-filter: drop-shadow(0 0 2px #14274f) drop-shadow(0 0 4px #14274f);
          filter: drop-shadow(0 0 2px #14274f) drop-shadow(0 0 4px #14274f);
}
.mainvisual_catch p span {
  font-size: 70%;
}

#mainvisual .mv_point {
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.mv_point {
  display: flex;
  justify-content: center;
  gap: 10px 20px;
}
.mv_point li {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 350px;
  width: 18.2%;
  min-width: 200px;
  min-height: 110px;
  color: #fff;
  font-family: var(--shi);
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: 0.1em;
  text-align: center;
}
.mv_point li .yellow {
  color: #ffd824;
}
.mv_point li .yellow strong {
  font-size: 150%;
  line-height: 1;
}
.mv_point li:nth-of-type(1) {
  background: #072a42;
}
.mv_point li:nth-of-type(2) {
  background: #0e3854;
}
.mv_point li:nth-of-type(3) {
  background: #0d476e;
}
.mv_point li:nth-of-type(4) {
  background: #0d5484;
}
.mv_point li:nth-of-type(5) {
  background: #0e5d92;
}

/* メインスライド */
#slick_fade {
  width: 100%;
  height: 950px;
}

#slick_fade .slide_item img {
  width: 100%;
  height: 950px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

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

  #contents

==================================================================*/
main {
  display: block;
}

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

  $footer

============================================================================*/
footer {
  position: relative;
  width: 100%;
  background-color: #000;
}

/* フッターの医院概要 */
.footer_info {
  background: url(../images/bg_footer.jpg) no-repeat center top/cover;
}

.footer_info .inner {
  color: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 133px 0 138px;
}

.footer_info_left,
.footer_info_right {
  width: 50%;
}

.footer_info_logo {
  text-align: center;
  margin-bottom: 25px;
}

.footer_info_logo img {
  width: 440px;
  height: 89px;
}

.footer_info_add {
  text-align: center;
  line-height: 2.35;
  margin-bottom: 15px;
}

.footer_info_tel {
  text-align: center;
  margin-bottom: 30px;
}

.footer_info_tel a {
  color: #b6a144;
  font-size: 56px;
  font-family: var(--cor);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
.footer_info_tel a span {
  font-size: 39.3%;
}

.footer_info_tel a,
.footer_info_tel a:hover {
  color: #b6a144;
}

.footer_info_access {
  max-width: 540px;
  width: 100%;
  background: #131313;
  margin: 0 auto;
  text-align: center;
  padding: 20px 10px;
}
.footer_info_access ul li {
  line-height: 1.76;
  letter-spacing: 0.1em;
}

.footer_info_bottom {
  margin-top: 60px;
  width: 100%;
}
.footer_info_bottom ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.footer_info_bottom ul li {
	background: #fff;
}
.footer_info_bottom ul li a {
  background: #fff;
  font-family: var(--shi);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s ease;
}
.footer_info_bottom ul li a:hover {
	opacity: 0.8;
}
.footer_info_bottom ul li a img {
  transition: opacity 0.2s ease;
}
.footer_info_bottom ul li a img:hover {
  opacity: 0.8;
}
.footer_info_bottom ul li.coming a {
  pointer-events: none;
  cursor: default;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.footer_info_bottom ul li.coming a img {
  transition: none;
}

.footer_info_bottom ul li:first-child a {
	background: #857a49;
	width: 190px;
	height: 70px;
}
.footer_info_bottom ul li:first-child a::before {
	background: url("../images/btn_icon_house.png") no-repeat;
	width: 16px;
	height: 14px;
	display: block;
	background-size: cover;
	content: "";
}
.footer_info_bottom ul li:nth-child(2) a {
	background: #40925d;
	width: 190px;
	height: 70px;
}
.footer_info_bottom ul li:nth-child(2) a::before {
	background: url("../images/btn_icon_line.png") no-repeat;
	width: 18px;
	height: 18px;
	display: block;
	background-size: cover;
	content: "";
}
.footer_info_bottom ul li:nth-child(3) a {
	background: #20618b;
	width: 290px;
	height: 70px;
}
.footer_info_bottom ul li:nth-child(3) a::before {
	background: url("../images/btn_icon_mobile.png") no-repeat;
	width: 13px;
	height: 21px;
	display: block;
	background-size: cover;
	content: "";
}
.footer_info_bottom ul li:nth-child(4) a {
	background: #ac6b76;
	width: 300px;
	height: 70px;
}
.footer_info_bottom ul li:nth-child(4) a::before {
	background: url("../images/btn_icon_shoe.png") no-repeat;
	width: 19px;
	height: 15px;
	display: block;
	background-size: cover;
	content: "";
}

/* ページトップ */
.pagetop,
.pagetop img {
  width: 90px;
  height: 90px;
}

.pagetop {
  position: fixed;
  z-index: 15;
  right: 30px;
  bottom: 20px;
  text-align: center;
  cursor: pointer;
}

.pagetop img {
  display: inline-block;
  position: relative;
  top: 0;
  transition: 0.2s ease;
}

.pagetop:hover img {
  top: -8px;
}

/* コピーライト */
.copy {
  text-align: center;
  background: #000;
  line-height: 1.3;
  padding: 29px 0;
}

.copy small {
  color: #cac19a;
  font-family: var(--shi);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
}

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

  タイトル

==================================================================*/
h1 {
  font-size: 12px;
  position: absolute;
  width: 1280px;
  top: 5px;
  right: 0;
  left: 0;
  margin: auto;
}

hgroup {
  text-align: center;
}
hgroup p {
  font-size: 641.2%;
  font-family: var(--cor);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
hgroup h2 {
  font-size: 164.7%;
  font-family: var(--shi);
  font-weight: 600;
  letter-spacing: 0.1em;
}

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

  .btn
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
/*ボタン ゴースト*/
.btn01 a {
  display: inline-block;
  position: relative;
  padding: 15px 25px;
  line-height: 1;
  border: 1px solid var(--main-color);
  text-align: center;
  color: var(--main-color);
  font-weight: bold;
  transition: ease-in-out 0.1s;
}

.btn01 a i {
  margin-right: 10px;
  color: var(--main-color);
  transition: ease-in-out 0.1s;
}

.btn01 {
  position: relative;
}

.btn01 a:hover {
  background-color: var(--main-color);
  color: #fff;
}

.btn01 a:hover i {
  color: #fff;
}

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

  $table
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
/* 診療時間（医院案内、アクセス共通） */
.footer_info_sche {
  width: 100%;
}

.schedule .blue {
  color: #6580c7;
}
.schedule .coral {
  color: #ee7e7e;
}

.schedule table {
  width: 100%;
}

.schedule p {
  margin-left: 22px;
  margin-bottom: 2px;
}

.schedule p strong {
  color: var(--main-color);
}

.schedule p:last-child {
  margin-bottom: 0;
}

.schedule_note li {
  text-align: center;
  display: block;
  font-size: 94.1%;
  line-height: 2.18;
  letter-spacing: 0.025em;
}

/*フッターの診療時間*/
.tb01 {
  margin-bottom: 12px;
  border-spacing: 0;
  border-collapse: collapse;
  white-space: nowrap;
}
.tb01 tr th, .tb01 tr td {
  border-bottom: 1px dashed #bdbdbd;
  vertical-align: middle;
}
.tb01 tr th {
  width: 31.3%;
  height: 80px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  font-size: 129.4%;
  font-family: var(--pag);
  font-weight: 300;
  letter-spacing: 0.025em;
}
.tb01 tr th span {
  display: block;
  line-height: 1.5;
  color: #b2b2b2;
  font-size: 72.7%;
  font-family: var(--shi);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.tb01 tr td {
  position: relative;
  color: #b6a144;
  width: 9.8142857143%;
  text-align: center;
}
.tb01 tr td .pink {
  position: absolute;
  top: 13px;
  left: 37px;
  color: #e68fb6;
  font-size: 14px;
}
.tb01 tr:nth-of-type(1) th, .tb01 tr:nth-of-type(1) td {
  color: #fff;
  border-top: 1px solid #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
}
.tb01 tr:nth-of-type(1) th {
  height: 60px;
  font-size: 105.9%;
  font-family: var(--shi);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.tb01 tr:nth-of-type(1) td {
  font-size: 105.9%;
  font-family: var(--shi);
  font-weight: 600;
}
.tb01 tr:last-of-type th, .tb01 tr:last-of-type td {
  border-bottom: 1px solid #bdbdbd;
}

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

  $box
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
.box1 {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.box2 {
  margin-bottom: 100px;
}

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

  Trouble

==================================================================*/
.sec_trouble {
  padding: 100px 0 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #eee url(../images/bg_trouble.jpg) repeat-y right top;
}

.img_trouble {
  max-width: 910px;
  width: 47.4%;
  margin: 0 0 0 20px;
}

.text_trouble {
  max-width: 670px;
  min-width: 640px;
  width: 34.9%;
  margin-left: calc((100% - 1280px) / 2);
}
.text_trouble hgroup {
  margin-bottom: 40px;
}
.text_trouble hgroup p {
  color: var(--sub-color);
}
.text_trouble hgroup h2 {
  position: relative;
  z-index: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.text_trouble hgroup h2::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 19px;
  background: #eac967;
}

.pop {
  position: relative;
  max-width: 640px;
  width: 100%;
  padding: 5px 0;
  margin: 0 auto;
}
.pop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  width: 19px;
  height: 16px;
  margin: 0 auto;
  clip-path: polygon(0% 0%,100% 0%,50% 100%,0% 0%);
  -webkit-clip-path: polygon(0% 0%,100% 0%,50% 100%,0% 0%);
}
.pop span {
  display: block;
  text-align: center;
  color: #fff;
  font-family: var(--shi);
  font-weight: 600;
  font-size: 188.2%;
  padding: 12px 0;
}
.pop.pop_trouble {
  border-top: 2px solid var(--sub-color);
  border-bottom: 2px solid var(--sub-color);
  margin: 0 auto 40px 0;
}
.pop.pop_trouble::after {
  background: var(--sub-color);
}
.pop.pop_trouble span {
  background: var(--sub-color);
}
.pop.pop_merit {
  font-size: 100%;
  border-top: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
}
.pop.pop_merit::after {
  background: var(--main-color);
}
.pop.pop_merit span {
  background: var(--main-color);
}

.list_check_wrap {
  display: flex;
  gap: 20px 23px;
}
.list_check_wrap ul li {
  font-size: 105.9%;
  font-family: var(--shi);
  font-weight: 500;
  line-height: 2.77;
  letter-spacing: 0.025em;
  padding-left: 25px;
  background: url(../images/icon_check_gr.svg) no-repeat left top 16px;
}

.trouble_approach {
  position: relative;
  z-index: 1;
  margin: -80px 0 -71px;
  padding: 80px 0 71px;
  text-align: center;
  background: url(../images/approach_text01.svg) no-repeat top center,url(../images/approach_text02.svg) no-repeat bottom center;
	background-size: 92%;
}
.trouble_approach p {
  padding: 25px 0;
  color: #fff;
  font-size: 235.3%;
  font-family: var(--shi);
  font-weight: 600;
  letter-spacing: 0.05em;
  background: linear-gradient(to Right, rgb(14, 56, 84) 0%, rgb(13, 84, 132) 100%);
}
@media (min-width: 641px) and (max-width: 1460px){
	.trouble_approach {
		margin: -65px 0 -56px;
		padding: 65px 0 56px;
	}
}
@media (min-width: 1920px) {
	.trouble_approach {
		background-size: 1800px;
	}
}
/*==================================================================

  Merit

==================================================================*/
.sec_merit {
  position: relative;
  z-index: 0;
  padding: 120px 0;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.sec_merit::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e9eff4;
  clip-path: polygon(0% 83.4%,100% 15.8%,100% 100%,0% 100%);
  -webkit-clip-path: polygon(0% 83.4%,100% 15.8%,100% 100%,0% 100%);
}

.img_merit {
  max-width: 910px;
  width: 47.4%;
  margin: 0 20px 0 0;
}

.text_merit {
  max-width: 670px;
  min-width: 640px;
  width: 34.9%;
  margin-right: calc((100% - 1280px) / 2);
}
.text_merit hgroup {
  margin-bottom: 45px;
}
.text_merit hgroup p {
  color: var(--main-color);
}
.text_merit .list_check_wrap {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.text_merit .list_check_wrap ul li {
  background-image: url(../images/icon_check_bl.svg);
}

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

  CTA

==================================================================*/
.sec_cta {
  padding: 115px 0 110px;
  background: #555 url(../images/bg_contact.jpg) no-repeat center top/auto 100%;
}
.sec_feature + .sec_cta {
	background-image: url(../images/bg_contact02.jpg);
}
.sec_price + .sec_cta {
	background-image: url(../images/bg_contact03.jpg);
}
.sec_cta hgroup {
  color: #fff;
  margin-bottom: 60px;
}
.sec_cta hgroup p {
  opacity: 0.1;
  margin-bottom: -85px;
}

.cta_list {
  display: flex;
  gap: 20px 40px;
}

.item_cta {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: flex-start;
  max-width: 400px;
  width: 100%;
  background: #eee;
  border: 1px solid #fff;
  text-align: center;
  padding: 30px 10px;
}
.item_cta .icon {
  display: inline-block;
  margin-bottom: 20px;
}
.item_cta h3 {
  font-family: var(--shi);
  font-weight: 600;
  font-size: 152.9%;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.item_cta p {
  line-height: 1.76;
  letter-spacing: 0.05em;
  margin: auto 0 10px;
}
.item_cta p span {
  display: block;
}
.item_cta p.tel a {
  color: #b6a144;
  font-family: var(--cor);
  font-weight: 500;
  font-size: 329.4%;
  line-height: 1.3;
}
.item_cta .btn {
  max-width: 320px;
  width: 100%;
  margin: auto auto 0;
}
.item_cta .btn a {
  display: block;
  width: 100%;
  position: relative;
  color: #fff;
  letter-spacing: 0.05em;
  padding: 15px 5px;
  transition: opacity 0.2s ease;
}
.item_cta .btn a i {
  position: relative;
  margin-right: 14px;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.item_cta .btn a:hover {
  opacity: 0.8;
}
.item_cta .btn a:hover i {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.item_cta:nth-of-type(1) .btn a {
  background: linear-gradient(to Right, rgb(14, 56, 84) 0%, rgb(13, 84, 132) 100%);
}
.item_cta:nth-of-type(2) .btn a {
  background: linear-gradient(to Right, rgb(26, 81, 36) 0%, rgb(59, 115, 70) 100%);
}
.item_cta:nth-of-type(3) h3 {
  margin-bottom: 0;
}
.item_cta:nth-of-type(3) p {
  margin-top: 0;
}
.item_cta:nth-of-type(3) .btn a {
  background: linear-gradient(to Right, rgb(133, 122, 73) 0%, rgb(167, 155, 102) 100%);
}

.item_cta .btn.coming a{
  pointer-events: none;
  filter: grayscale(1);
}
.item_cta .btn.coming a:hover{
  opacity: 1;
}
.item_cta .btn.coming a:hover i{
  transform: unset;
}
/*==================================================================

  About

==================================================================*/
.sec_about {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: #e9eff4;
  padding: 130px 0 80px;
}

.img_about {
  position: relative;
  max-width: 910px;
  width: 47.4%;
  margin: 0 0 0 40px;
}
.img_about ul {
  position: absolute;
  left: 30px;
  bottom: -80px;
  display: flex;
  gap: 0 25px;
}
.img_about ul li {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 100%;
  aspect-ratio: 1/1;
  min-width: 0;
  text-align: center;
  color: #fff;
  font-family: var(--shi);
  font-weight: 600;
  font-size: 117.6%;
  line-height: 1.75;
  letter-spacing: 0.05em;
  background: url(../images/bg_about_point.png) no-repeat center/cover;
}

.text_about {
  max-width: 640px;
  width: 50%;
  margin-left: calc((100% - 1280px) / 2);
}
.text_about hgroup {
  margin-bottom: 45px;
}
.text_about hgroup p {
  color: var(--main-color);
}
.text_about > p {
  line-height: 2.64;
  letter-spacing: 0.025em;
}
.img_about_s {
	font-size: 18px;
}
/*==================================================================

  Feature

==================================================================*/
.sec_feature {
  padding: 150px 0 0;
  background: var(--bg-color) url(../images/bg_separate.svg) no-repeat center top/100% auto;
}
.sec_feature hgroup {
  margin-bottom: 85px;
}
.sec_feature hgroup p {
  color: var(--sub-color);
}
.sec_feature .box1 {
  display: flex;
  justify-content: space-between;
  padding-bottom: 110px;
}

.text_feature h3 {
  display: flex;
  align-items: center;
  gap: 0 30px;
  font-size: 164.7%;
  font-family: var(--shi);
  /*font-weight: 600;*/
  line-height: 1.78;
  margin-bottom: 20px;
}
.text_feature h3 .num {
  color: #857a49;
  font-size: 120px;
  font-family: var(--pag);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
.text_feature p {
  line-height: 2.64;
}

.item_feature01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
.item_feature01 .img_feature {
  max-width: 920px;
  width: 47.9%;
  margin: 0 40px 0 0;
}
.item_feature01 .text_feature {
  max-width: 620px;
  width: 100%;
  margin-right: calc((100% - 1280px) / 2);
}

.item_feature02,
.item_feature03 {
  max-width: 600px;
}
.item_feature02 .img_feature,
.item_feature03 .img_feature {
  margin-bottom: 20px;
}

.box_feature_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  background: #737373;
}
.box_feature_list li {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 638px;
  width: calc(33.3333333333% - 1px);
  height: 100%;
  aspect-ratio: 319/195;
  min-width: 0;
}
.box_feature_list li:nth-of-type(1) {
  background: url(../images/img_feature04.jpg) no-repeat center/cover;
}
.box_feature_list li:nth-of-type(2) {
  background: url(../images/img_feature05.jpg) no-repeat center/cover;
}
.box_feature_list li:nth-of-type(3) {
  background: url(../images/img_feature06.jpg) no-repeat center/cover;
}
.box_feature_list li:nth-of-type(4) {
  background: url(../images/img_feature07.jpg) no-repeat center/cover;
}
.box_feature_list li:nth-of-type(5) {
  background: url(../images/img_feature08.jpg) no-repeat center/cover;
}
.box_feature_list li:nth-of-type(6) {
  background: url(../images/img_feature09.jpg) no-repeat center/cover;
}
.box_feature_list li:nth-of-type(7) {
  background: url(../images/img_feature10.jpg) no-repeat center/cover;
}
.box_feature_list li:nth-of-type(8) {
  background: url(../images/img_feature11.jpg) no-repeat center/cover;
}
.box_feature_list li:nth-of-type(9) {
  background: url(../images/img_feature12.jpg) no-repeat center/cover;
}
.box_feature_list .num {
  position: absolute;
  top: 20px;
  left: 30px;
  color: #857a49;
  font-size: 120px;
  font-family: var(--pag);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
.box_feature_list p:not(.num) {
  color: #fff;
  font-size: 141.2%;
  font-family: var(--shi);
  font-weight: 600;
  line-height: 2.08;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 39px;
}

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

  Flow

==================================================================*/
.sec_flow {
  padding: 105px 0 150px;
  background: #eee url(../images/bg_stone.jpg) repeat-y right top;
}
.sec_flow hgroup {
  margin-bottom: 40px;
}
.sec_flow hgroup p {
  color: var(--main-color);
}

.intro_flow {
  text-align: center;
  background: #fff;
  padding: 25px 10px;
  margin-bottom: 85px;
}
.intro_flow p {
  font-size: 117.6%;
  font-family: var(--shi);
  font-weight: 600;
  line-height: 2.5;
  letter-spacing: 0.05em;
}

[class*=item_flow]:not(:last-of-type) {
  margin-bottom: 40px;
}

.flex_flow {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.flex_flow .text_flow {
  max-width: 750px;
}

.text_flow h3 {
  position: relative;
  z-index: 0;
  display: inline-block;
  font-size: 188.2%;
  font-family: var(--shi);
  font-weight: 600;
  padding-left: 10px;
  margin-bottom: 30px;
}
.text_flow h3::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 2px;
  width: calc(100% + 40px);
  height: 19px;
  background: #eac967;
}
.text_flow h3 .num {
  color: var(--main-color);
  font-size: 250%;
  font-family: var(--pag);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 15px;
}
.text_flow p {
  line-height: 2.64;
  letter-spacing: 0.025em;
}
.text_flow h4 {
  padding: 15px 0;
  max-width: 260px;
  background: var(--main-color);
  text-align: center;
  color: #fff;
  letter-spacing: 0.05em;
  margin-top: 30px;
  margin-bottom: 20px;
}

.flow_table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin: 0 auto;
}
.flow_table th {
  text-align: center;
}
.flow_table td {
  height: 60px;
}
.flow_table th, .flow_table td {
  vertical-align: middle;
  border-bottom: 1px solid #d9d9d9;
}
.flow_table thead th {
  height: 70px;
  color: #fff;
  font-size: 117.6%;
  font-family: var(--shi);
  /*font-weight: 600;*/
  letter-spacing: 0.1em;
  background: var(--main-color);
  border-top: 1px solid #676767;
}
.flow_table thead th:nth-of-type(1) {
  border-left: 1px solid #676767;
  width: 11.7%;
}
.flow_table thead th:nth-of-type(2) {
  width: 44.15%;
  border-left: 1px solid #799a83;
  border-right: 1px solid #799a83;
}
.flow_table thead th:nth-of-type(3) {
  border-right: 1px solid #676767;
}
.flow_table tbody th {
  width: 11.7%;
  color: #fff;
  font-size: 117.6%;
  font-family: var(--shi);
  /*font-weight: 600;*/
  letter-spacing: 0.1em;
  background: var(--sub-color02);
  border-top: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
}
.flow_table tbody td {
  padding: 15px 20px;
  background: #fff;
  line-height: 1.76;
  letter-spacing: 0.05em;
  border-top: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
}

.annotation {
  margin-top: 20px;
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid #d9d9d9;
}
.annotation th {
  width: 20.3%;
  height: 100px;
  text-align: center;
  font-size: 117.6%;
  font-family: var(--shi);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  background: #edd2d2;
}
.annotation th .red {
  color: #e81919;
}
.annotation td {
  background: #fff;
  padding: 15px 25px;
  line-height: 1.76;
  letter-spacing: 0.05em;
}
.annotation tr:nth-of-type(1) th {
  border-bottom: 1px solid #fff;
}
.annotation tr:nth-of-type(1) td {
  border-bottom: 1px solid #d9d9d9;
}

@media print, screen and (min-width: 641px) {
  .item_flow04,
  .item_flow05 {
    align-items: flex-start;
  }
  .item_flow04 .img_flow,
  .item_flow05 .img_flow {
    margin-top: 120px;
  }
}
/*==================================================================

  Price

==================================================================*/
.sec_price {
  position: relative;
  z-index: 0;
  padding: 110px 0 135px;
  background: #fff url(../images/bg_price.jpg) no-repeat center bottom;
}
.sec_price::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 68.1%;
  background: #e9eff4;
  clip-path: polygon(0% 80%,100% 0%,100% 100%,0% 100%);
  -webkit-clip-path: polygon(0% 80%,100% 0%,100% 100%,0% 100%);
}
.sec_price hgroup {
  margin-bottom: 60px;
}
.sec_price hgroup p {
  color: var(--main-color);
}
.sec_price h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 147.1%;
  font-family: var(--shi);
  font-weight: 600;
  letter-spacing: 0.1em;
  background: var(--main-color);
  padding: 2px 22px;
}
.sec_price .detail {
  text-align: center;
  line-height: 2.35;
  margin-bottom: 30px;
}

/* table */
.price {
  max-width: 870px;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin: 0 auto;
}
.price th, .price td {
  text-align: center;
  vertical-align: middle;
  height: 70px;
  border-bottom: 1px solid #d9d9d9;
}
.price thead th {
  color: #fff;
  font-size: 117.6%;
  font-family: var(--shi);
  font-weight: 600;
  letter-spacing: 0.1em;
  background: var(--main-color);
  border-top: 1px solid #676767;
}
.price thead th:nth-of-type(1) {
  border-left: 1px solid #676767;
  width: 37.9%;
}
.price thead th:nth-of-type(2) {
  border-left: 1px solid #799a83;
  border-right: 1px solid #799a83;
}
.price thead th:nth-of-type(3) {
  border-right: 1px solid #676767;
}
.price tbody th {
  color: #fff;
  font-size: 117.6%;
  font-family: var(--shi);
  font-weight: 600;
  letter-spacing: 0.1em;
  background: var(--sub-color03);
  border-left: 1px solid #d9d9d9;
}
.price tbody td {
  font-size: 105.9%;
  background: #fff;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
}

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

  CSSアニメーション

==================================================================*/
/* フェードイン */
.fadeIn {
  opacity: 0;
  visibility: visible;
}

.is-visible.fadeIn {
  -webkit-animation: fadeIn 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: fadeIn 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* フェードイン（下→上） */
.fadeInUp {
  opacity: 0;
  visibility: visible;
}

.is-visible.fadeInUp {
  -webkit-animation: fadeInUp 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: fadeInUp 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/* フェードイン（右→左） */
.fadeInRight {
  opacity: 0;
  visibility: visible;
}

.is-visible.fadeInRight {
  -webkit-animation: fadeInRight 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: fadeInRight 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/* フェードイン（左→右） */
.fadeInLeft {
  opacity: 0;
  visibility: visible;
}

.is-visible.fadeInLeft {
  -webkit-animation: fadeInLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: fadeInLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/* フリップ（右回転） */
.flipRight {
  opacity: 0;
  visibility: visible;
}

.is-visible.flipRight {
  -webkit-animation: flipRight 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: flipRight 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

@-webkit-keyframes flipRight {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes flipRight {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
/* フリップ（左回転） */
.flipLeft {
  opacity: 0;
  visibility: visible;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.is-visible.flipLeft {
  -webkit-animation: flipLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: flipLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@-webkit-keyframes flipLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes flipLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
/* 恒常的に動くアニメーション */
/* ゆっくり回転（右回転） */
.rotateRight {
  -webkit-animation: rotateRight 20s linear infinite;
          animation: rotateRight 20s linear infinite;
}

@-webkit-keyframes rotateRight {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateRight {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* ゆっくり回転（左回転） */
.rotateLeft {
  -webkit-animation: rotateLeft 20s linear infinite;
          animation: rotateLeft 20s linear infinite;
}

@-webkit-keyframes rotateLeft {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotateLeft {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
/* 浮遊（基準点から上） */
.floatingUp {
  -webkit-animation: floatingUp 10s ease-in-out infinite;
          animation: floatingUp 10s ease-in-out infinite;
}

@-webkit-keyframes floatingUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floatingUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 浮遊（基準点から下） */
.floatingDown {
  -webkit-animation: floatingDown 10s ease-in-out infinite;
          animation: floatingDown 10s ease-in-out infinite;
}

@-webkit-keyframes floatingDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floatingDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 生き物が跳ねる（鳥、リスなど） */
.jumping {
  position: relative;
  -webkit-animation: jumping 1s ease-in-out infinite;
          animation: jumping 1s ease-in-out infinite;
}

@-webkit-keyframes jumping {
  0% {
    top: 0;
  }
  10% {
    top: -5px;
  }
  20% {
    top: 0px;
  }
  30% {
    top: -5px;
  }
  40% {
    top: 0px;
  }
  100% {
    top: 0px;
  }
}

@keyframes jumping {
  0% {
    top: 0;
  }
  10% {
    top: -5px;
  }
  20% {
    top: 0px;
  }
  30% {
    top: -5px;
  }
  40% {
    top: 0px;
  }
  100% {
    top: 0px;
  }
}

/*common*/
.pc_inline{display:inline!important}.sp_inline{display:none!important}.sp_inline_ip{display:none!important}.pc_table{display:none!important}.sp_table{display:none!important}.w010par{width:10%}.w020par{width:20%}.w025par{width:25%}.w050par{width:50%}.w075par{width:75%}.w100par{width:100%}.w010{width:10px}.w020{width:20px}.w030{width:30px}.w040{width:40px}.w050{width:50px}.w060{width:60px}.w070{width:70px}.w080{width:80px}.w090{width:90px}.w100{width:100px}.w110{width:110px}.w120{width:120px}.w130{width:130px}.w140{width:140px}.w150{width:150px}.w160{width:160px}.w170{width:170px}.w180{width:180px}.w190{width:190px}.w200{width:200px}.w210{width:210px}.w220{width:220px}.w230{width:230px}.w240{width:240px}.w250{width:250px}.w255{width:255px}.w260{width:260px}.w270{width:270px}.w280{width:280px}.w290{width:290px}.w300{width:300px}.w305{width:305px}.w310{width:310px}.w320{width:320px}.w330{width:330px}.w340{width:340px}.w350{width:350px}.w360{width:360px}.w365{width:365px}.w370{width:370px}.w380{width:380px}.w390{width:390px}.w400{width:400px}.w410{width:400px}.w415{width:415px}.w420{width:420px}.w430{width:430px}.w435{width:435px}.w440{width:440px}.w450{width:450px}.w460{width:460px}.w470{width:470px}.w480{width:480px}.w490{width:490px}.w500{width:500px}.w510{width:510px}.w520{width:520px}.w530{width:530px}.w540{width:540px}.w550{width:550px}.w560{width:560px}.w570{width:570px}.w580{width:580px}.w590{width:590px}.w600{width:600px}.w610{width:610px}.w620{width:620px}.w630{width:630px}.w640{width:640px}.w650{width:650px}.w660{width:660px}.w670{width:670px}.w680{width:680px}.w690{width:690px}.w700{width:700px}.w710{width:710px}.w720{width:720px}.w730{width:730px}.w740{width:740px}.w750{width:750px}.w760{width:760px}.w765{width:765px}.w960{width:960px}.w980{width:980px}.h030{height:30px}.h180{height:180px}.h190{height:190px}.h200{height:200px}.h240{height:240px}.h250{height:250px}.h280{height:280px}.h300{height:300px}.h350{height:350px}.mt00{margin-top:0!important}.mt01{margin-top:1px}.mt02{margin-top:2px}.mt03{margin-top:3px}.mt04{margin-top:4px}.mt05{margin-top:5px}.mt06{margin-top:6px}.mt07{margin-top:7px}.mt08{margin-top:8px}.mt09{margin-top:9px}.mt10{margin-top:10px}.mt15{margin-top:15px}.mt20{margin-top:20px}.mt25{margin-top:25px}.mt30{margin-top:30px}.mt35{margin-top:35px}.mt40{margin-top:40px}.mt45{margin-top:45px}.mt50{margin-top:50px}.mt60{margin-top:60px}.mt70{margin-top:70px}.mt80{margin-top:80px}.mt90{margin-top:90px}.mt100{margin-top:100px}.mt110{margin-top:110px}.mt120{margin-top:120px}.mr00{margin-right:0!important}.mr01{margin-right:1px}.mr02{margin-right:2px}.mr03{margin-right:3px}.mr04{margin-right:4px}.mr05{margin-right:5px}.mr06{margin-right:6px}.mr07{margin-right:7px}.mr08{margin-right:8px}.mr09{margin-right:9px}.mr10{margin-right:10px}.mr15{margin-right:15px}.mr20{margin-right:20px}.mr25{margin-right:25px}.mr30{margin-right:30px}.mr35{margin-right:35px}.mr40{margin-right:40px}.mr45{margin-right:45px}.mr50{margin-right:50px}.mr60{margin-right:60px}.mr70{margin-right:70px}.mr80{margin-right:80px}.mr90{margin-right:90px}.mr100{margin-right:100px}.mb00{margin-bottom:0!important}.mb01{margin-bottom:1px}.mb02{margin-bottom:2px}.mb03{margin-bottom:3px}.mb04{margin-bottom:4px}.mb05{margin-bottom:5px}.mb06{margin-bottom:6px}.mb07{margin-bottom:7px}.mb08{margin-bottom:8px}.mb09{margin-bottom:9px}.mb10{margin-bottom:10px}.mb15{margin-bottom:15px}.mb20{margin-bottom:20px}.mb25{margin-bottom:25px}.mb30{margin-bottom:30px}.mb35{margin-bottom:35px}.mb40{margin-bottom:40px}.mb45{margin-bottom:45px}.mb50{margin-bottom:50px}.mb60{margin-bottom:60px}.mb70{margin-bottom:70px}.mb80{margin-bottom:80px}.mb90{margin-bottom:90px}.mb100{margin-bottom:100px}.ml00{margin-left:0!important}.ml01{margin-left:1px}.ml02{margin-left:2px}.ml03{margin-left:3px}.ml04{margin-left:4px}.ml05{margin-left:5px}.ml06{margin-left:6px}.ml07{margin-left:7px}.ml08{margin-left:8px}.ml09{margin-left:9px}.ml10{margin-left:10px}.ml12{margin-left:12px}.ml15{margin-left:15px}.ml20{margin-left:20px}.ml25{margin-left:25px}.ml30{margin-left:30px}.ml35{margin-left:35px}.ml40{margin-left:40px}.ml45{margin-left:45px}.ml50{margin-left:50px}.ml60{margin-left:60px}.ml70{margin-left:70px}.ml80{margin-left:80px}.ml90{margin-left:90px}.ml100{margin-left:100px}.ml140{margin-left:140px}.ml160{margin-left:160px}.ma10{margin:10px}.ma15{margin:15px}.ma_auto{margin-left:auto;margin-right:auto}.pt00{padding-top:0!important}.pt01{padding-top:1px}.pt02{padding-top:2px}.pt03{padding-top:3px}.pt04{padding-top:4px}.pt05{padding-top:5px}.pt06{padding-top:6px}.pt07{padding-top:7px}.pt08{padding-top:8px}.pt09{padding-top:9px}.pt10{padding-top:10px}.pt15{padding-top:15px}.pt20{padding-top:20px}.pt25{padding-top:25px}.pt30{padding-top:30px}.pt35{padding-top:35px}.pt40{padding-top:40px}.pt45{padding-top:45px}.pt50{padding-top:50px}.pt60{padding-top:60px}.pt70{padding-top:70px}.pt80{padding-top:80px}.pt90{padding-top:90px}.pt100{padding-top:100px}.pt120{padding-top:120px}.pr00{padding-right:0!important}.pr01{padding-right:1px}.pr02{padding-right:2px}.pr03{padding-right:3px}.pr04{padding-right:4px}.pr05{padding-right:5px}.pr06{padding-right:6px}.pr07{padding-right:7px}.pr08{padding-right:8px}.pr09{padding-right:9px}.pr10{padding-right:10px}.pr15{padding-right:15px}.pr20{padding-right:20px}.pr25{padding-right:25px}.pr30{padding-right:30px}.pr35{padding-right:35px}.pr40{padding-right:40px!important}.pr45{padding-right:45px}.pr50{padding-right:50px}.pr60{padding-right:60px}.pr70{padding-right:70px}.pr80{padding-right:80px}.pr90{padding-right:90px}.pr100{padding-right:100px}.pb00{padding-bottom:0!important}.pb01{padding-bottom:1px}.pb02{padding-bottom:2px}.pb03{padding-bottom:3px}.pb04{padding-bottom:4px}.pb05{padding-bottom:5px}.pb06{padding-bottom:6px}.pb07{padding-bottom:7px}.pb08{padding-bottom:8px}.pb09{padding-bottom:9px}.pb10{padding-bottom:10px}.pb15{padding-bottom:15px}.pb20{padding-bottom:20px}.pb25{padding-bottom:25px}.pb30{padding-bottom:30px}.pb35{padding-bottom:35px}.pb40{padding-bottom:40px}.pb45{padding-bottom:45px}.pb50{padding-bottom:50px}.pb60{padding-bottom:60px}.pb70{padding-bottom:70px}.pb80{padding-bottom:80px}.pb90{padding-bottom:90px}.pb100{padding-bottom:100px}.pl00{padding-left:0!important}.pl01{padding-left:1px}.pl02{padding-left:2px}.pl03{padding-left:3px}.pl04{padding-left:4px}.pl05{padding-left:5px}.pl06{padding-left:6px}.pl07{padding-left:7px}.pl08{padding-left:8px}.pl09{padding-left:9px}.pl10{padding-left:10px}.pl15{padding-left:15px}.pl20{padding-left:20px}.pl25{padding-left:25px}.pl30{padding-left:30px}.pl35{padding-left:35px}.pl40{padding-left:40px}.pl45{padding-left:45px}.pl50{padding-left:50px}.pl60{padding-left:60px}.pl70{padding-left:70px}.pl80{padding-left:80px}.pl90{padding-left:90px}.pl100{padding-left:100px}.pa01{padding:1px}.pa02{padding:2px}.pa03{padding:3px}.pa04{padding:4px}.pa05{padding:5px}.pa10{padding:10px}.pa15{padding:15px}.fr{float:right}.fl{float:left}.fr10{float:right;margin-left:10px}.fr15{float:right;margin-left:15px}.fr30{float:right;margin-left:15px}.fl10{float:left;margin-right:10px}.fl15{float:left;margin-right:15px}.fl30{float:left;margin-right:30px}.txt10{font-size:10px}.txt11{font-size:11px}.txt12{font-size:12px}.txt13{font-size:13px}.txt14{font-size:14px}.txt15{font-size:15px}.txt16{font-size:16px}.txt17{font-size:17px}.txt18{font-size:18px}.txt19{font-size:19px}.txt20{font-size:20px}.txt21{font-size:21px}.txt22{font-size:22px}.txt23{font-size:23px}.txt24{font-size:24px}.txt25{font-size:25px}.txt26{font-size:26px}.txt27{font-size:27px}.txt28{font-size:28px}.txt29{font-size:29px}.txt30{font-size:30px}.txt31{font-size:31px}.txt32{font-size:32px}.txt33{font-size:33px}.txt34{font-size:34px}.txt35{font-size:35px}.txt36{font-size:36px}.txt37{font-size:37px}.txt38{font-size:38px}.txt39{font-size:39px}.txt40{font-size:40px}.bold{font-weight:700}.left{text-align:left!important}.center{text-align:center!important}.right{text-align:right}.clear{clear:both}.v_top{vertical-align:top}.v_mid{vertical-align:middle}.v_btm{vertical-align:bottom}.color_red{color:#f33}.color_pink{color:#ed8c96}.color_blue{color:#00408f}.color_green{color:#479f9d}.color_ore{color:#ff8327}.color_yellow{color:#ffeb8b}.color_beige{color:#dac58b}.color_brown{color:#9b8052}.color_navy{color:#1f2774}.color_black{color:#333}.ls_0{letter-spacing:0}.ls_1{letter-spacing:1px}.indent{margin-left:1em!important;text-indent:-1em}.line_h_2{line-height:2!important}.clearfix:after{display:block;clear:both;content:""}.sp{display:none!important}