@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
/* ===================================================================
 style info : ヘッダーやフッターなどサイト内共通
=================================================================== */

/*----------------------------------------------------
	共通
----------------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  background: #ffffff;
  color: #333333;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

/*----------------------------------------------------
    リンク
----------------------------------------------------*/
a:link,
a:visited,
a:hover,
a:active {
  color: #333333;
  text-decoration: none;
}

/* -----------------------------------------------------------
    .note
----------------------------------------------------------- */
.note {
  display: flex;
}

.note:before {
  content: "※";
}

/* -----------------------------------------------------------
    .btn
----------------------------------------------------------- */
.btn_01 {
  border-radius: 100px;
  border: 3px solid #658B85;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn_02 {
  color: #658B85 !important;
  font-size: 22px;
}

.btn_02:hover{
  color: #00B097 !important;
}

.btn_02 br {
  display: none;
}

/* -----------------------------------------------------------
    .arr
----------------------------------------------------------- */
.arr {
  position: relative;
}

.arr:after {
  background-image: url(../img/common/icon-arrow-botan.svg);
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 40px;
}

.arr_01 {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.arr_01:after {
  background-image: url(../img/common/icon-arrow.svg);
  content: "";
  height: 18px;
  width: 48px;
  margin-left: 20px;
}

.arr_01:hover:after {
  background-image: url(../img/common/icon-arrow_hover.svg);
}

/* -----------------------------------------------------------
    .heading
----------------------------------------------------------- */
.heading_01 {
  display: flex;
  justify-content: center;
  font-size: 44px;
}

.heading_01 span {
  position: relative;
}

.heading_01 span:after {
  background-image: url(../img/top_new/icon-kaidan-title.svg);
  content: "";
  height: 63px;
  width: 63px;
  position: absolute;
  right: calc(-30px - 63px);
  top: 50%;
  transform: translateY(-50%);
}

.heading_01 span br {
  display: none;
}

/* -----------------------------------------------------------
    タブ
----------------------------------------------------------- */
.wrap_tab_menu .tab_menu {
  display: flex;
}

.wrap_tab_menu .tab_menu > li {
  background-color: #CADED1;
  border-radius: 10px 10px 0 0;
  color: #658B85;
  cursor: pointer;
  font-size: 34px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  height: 70px;
  width: 100%;
}

.wrap_tab_menu .tab_menu > li:first-of-type {
  margin-left: 0;
}

.wrap_tab_menu .tab_menu > li.active {
  background-color: #658B85;
  color: #ffffff;
  pointer-events: none;
}

.wrap_tab_menu .tab_menu > li > span {
  display: flex;
  align-items: center;
}

.wrap_tab_menu .tab_menu > li > span:before {
  background-size: cover;
  content: "";
  height: 50px;
  width: 50px;
  margin-right: 20px;
}

.wrap_tab_menu .tab_menu > li.straight > span:before {
  background-image: url(../img/common/icon-tyokusen-A.svg);
}

.wrap_tab_menu .tab_menu > li.curve > span:before {
  background-image: url(../img/common/icon-kyokusen-A.svg);
}

.wrap_tab_menu .tab_menu > li > span > span b {
  font-weight: 600;
}

.wrap_tab_menu .tab_menu > li:hover {
  background-color: #CDF8CF;
}

.wrap_tab_content {
  background-color: #658B85;
  border-radius: 0 0 10px 10px;
  padding: 30px;
}

.tab_content {
  background-color: #ffffff;
  display: none;
  padding: 30px;
}

.tab_content.active {
  display: block;
}

/* -----------------------------------------------------------
    header
----------------------------------------------------------- */
#lower header {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  position: fixed;
  transition: all 0.3s ease;
  z-index: 999999;
  width: 100%;
}

#lower header .inner {
  background-color:rgba(255,255,255,0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  height: 80px;
  width: 100%;
}

#lower header .logo_g {
  display: block;
  width: 230px;
}

header .tel_area {
  margin-top: 15px;
  margin-right: 5vw;
}

header .tel_area a {
  border: 3px solid #658B85;
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 36px;
  line-height: 40px;
  font-weight: bold;
  color: #658B85;
  background: #FFF;
  padding: 6px 30px;
  border-radius: 40px;
  letter-spacing: -0.5px;
  height: 60px;
}

header .tel_area a span {
  display: flex;
  align-items: center;
}

header .tel_area a span:before {
  content: "";
  background-image: url("../img/top_new/firstview/telephone.svg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 45px;
  width: 32px;
  margin-right: 10px;
  position: relative;
  top: -5px;
}

/* -----------------------------------------------------------
    #g_nav
----------------------------------------------------------- */
#g_nav {
  z-index: 10;
}

#g_nav .nav_menu {
  display: none;
}

#g_nav ul {
  display: flex;
  align-items: center;
}

#g_nav ul li a {
  color: #000000;
  font-size: 20px;
  line-height: 1;
}

#g_nav ul li a:hover {
  color: #A0EAAC;
}

#g_nav ul li:not(:first-of-type) {
  margin-left: 2vw;
}

#g_nav ul li:last-of-type a span {
  display: flex;
  align-items: center;
}

#g_nav ul li:last-of-type a {
  color: #658B85;
}

#g_nav ul li:last-of-type span:before {
  content: "\f0e0";
  font-family: "FontAwesome";
  display: flex;
  align-items: center;
  margin-right: 5px;
}

#g_nav ul li:last-of-type a:hover {
  color: #A0EAAC;
}

#g_nav ul li:last-of-type span:before:hover {
  color: #A0EAAC;
}

#g_nav > ul:nth-of-type(2) {
  display: none;
}

.sp_menu {
  display: none ;
}

#g_nav > img {
  display: none;
}

/* -----------------------------------------------------------
    .breadcrumb
----------------------------------------------------------- */
.breadcrumb {
  font-size: 14px;
  padding: 0 30vw 0 19vw;
  height: 35px;
  position: relative;
  z-index: 999999;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: -0.25vw;
}

.breadcrumb ol li {
  margin-top: 0.25vw;
}

.breadcrumb ol li:after {
  content: "\f105";
  font-family: FontAwesome;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 0;
  margin: 0 0.75em;
}

.breadcrumb ol li:last-of-type:after {
  content: none;
}

/* -----------------------------------------------------------
    aside
----------------------------------------------------------- */
.contact_box a {
  width: 340px;
  display: block;
  border-radius: 35px;
  border: 3px solid #658B85;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 20px;
  text-align: center;
  background: #FFF;
}

.contact_box a:hover {
  background: #A0EAAC;
  color: #658B85;
  border: 3px solid #658B85;
}

.contact_box a span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_box a span:after {
  content: url(../img/top_new/icon-arrow-botan.svg);
  margin-left: 10px;
  width: 40px;
  height: 20px;
  stroke: #FFF;
  display: block;
}

.contact_box a:hover span:after {
  xcontent: url(../img/top_new/icon-arrow-botan_hover.svg);
}

aside {
  background: #F8F8F4;
  padding: 5vw;
}

aside h2 {
  font-size: 32px;
  margin-bottom: 3vw;
  text-align: center;
}

aside h2 br {
  display: none;
}

aside .description_box {
  text-align: center;
  font-size: 22px;
  line-height: 2;
}

aside .btn_area {
  width: 700px;
  margin: 0 auto;
}

.btn_area ul {
  display: flex;
  justify-content: center;
}

.btn_area ul li:first-of-type{
  margin-right: 2vw;
}

aside .btn_area ul li {
  width: 100%;
}

aside .contact_box {
  margin-top: 1.5vw;
  position: relative;
}

aside .contact_box a span {
  display: flex;
  align-items: center;
}

aside .contact_box a span:after {
  background-image: url(../img/top_new/icon-arrow-botan.svg);
  content: "";
}

aside .contact_box a {
  width: 100%;
  margin: 0 auto;
}

aside .btn_area > .contact_box a {
  display: flex;
  justify-content: center;
  padding: 10px 20px;
}

aside .btn_area > .contact_box a span:after {
  content: none;
}

aside .btn_area > .contact_box a span:last-of-type {
  display: flex;
  align-items: flex-start;
  font-size: 40px;
  line-height: 40px;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: -0.5px;
}

aside .btn_area > .contact_box a span:last-of-type::before {
  content: url(../img/top_new/img-freedial.jpg);
  margin: 0 10px 0 20px;
}

aside .announce {
  text-align: center;
  font-size: 18px;
  letter-spacing: -0.1px;
  margin-top: 10px;
}

aside .announce > span:not(:first-of-type) {
  margin-left: 1em;
}

aside .announce > span:first-of-type {
  font-weight: 700;
}

/* -----------------------------------------------------------
    footer
----------------------------------------------------------- */
footer {
  background-color: #658B85;
  color: #ffffff;
  padding-top: 3vw;
}

.footer_nav_box {
  display: flex;
  margin-bottom: 3vw;
  padding: 0 19vw;
}

.footer_nav_box .footer_nav_list:not(:first-of-type) {
  margin-left: 7.5vw;
}

.footer_nav_box .footer_nav_list .footer_nav:not(:first-of-type) {
  margin-top: 30px;
}

.footer_nav_box .footer_nav_list .footer_nav .foot_nav_ttl {
  border-bottom: 1px solid #ffffff;
  font-size: 20px;
}

.footer_nav_box .footer_nav_list .footer_nav .foot_nav_ttl a {
  display: block;
}

.footer_nav_box .footer_nav_list .footer_nav .footer_nav_in {
  margin-top: 20px;
}

.footer_nav_box .footer_nav_list .footer_nav .footer_nav_in.nav_in02 {
  margin-top: 10px;
}

.footer_nav_box .footer_nav_list .footer_nav .footer_nav_in > dl:not(:first-of-type) {
  margin-top: 20px;
}

.footer_nav_box .footer_nav_list .footer_nav .footer_nav_in > dl dt {
  font-size: 16px;
}

.footer_nav_box .footer_nav_list .footer_nav .footer_nav_in > dl dd {
  margin-top: 5px;
}

.footer_nav_box .footer_nav_list .footer_nav ul {
  margin-left: 1em;
}

.footer_nav_box .footer_nav_list .footer_nav ul li {
  display: flex;
}

.footer_nav_box .footer_nav_list .footer_nav ul li:before {
  content: "・";
  margin-right: 0.15em;
}

.footer_nav_box a:hover {
  color: #A0EAAC;
}

.address_area {
  background: #F8F8F4;
  display: flex;
  justify-content: space-between;
  padding: 0 19vw;
}

.address_area .address_container {
  padding: 2vw 2vw 2vw 0;
  color: #000;
  display: flex;
  xmargin-left: 19vw;
}

.address_area .address_container address {
  font-size: 16px;
  margin-left: 2vw;
}

.address_area .address_container address span {
  display: block;
}

.address_area .google_map {
  padding: 2vw 0 2vw 2vw;
  color: #000;
  display: flex;
  align-items: center;
  xmargin-right: 19vw;
}

.address_area .google_map a {
  color: #658B85;
  padding: 10px;
  line-height: 1;
  border: 1px solid #658B85;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

footer a:link,
footer a:visited,
footer a:hover,
footer a:active {
  color: #ffffff;
  text-decoration: none;
}

.address_area .google_map a:before {
  content: url(../img/top_new/Icon\ awesome-map-marker-alt.svg);
  margin-right: 5px;
}

.copy_right {
  text-align: center;
  padding: 3vw 0 1vw;
  background-color:  #F8F8F4;
  color: #658B85;
  font-size: 12px;
}

/* -----------------------------------------------------------
    .main
----------------------------------------------------------- */
#lower .main {
  padding-top: 125px;
}

#lower .main .main_box {
  background-image: url(../img/common/rental-mv.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  height: 600px;
  padding: 0 19vw;
  position: relative;
}

#lower .main .main_box:before,
#lower .main .main_box:after {
  position: absolute;
  width: 100px;
  height: 100px;
  z-index: 1;
}

#lower .main .main_box:before {
  content: url("../img/common/step_icon01_w.svg");
  left: 0;
  top: 0;
}

#lower .main .main_box:after {
  content: url("../img/common/step_icon02_w.svg");
  bottom: 0;
  right: 0;
}

#lower .main .main_box .ttl_box .ttl {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  height: 70px;
  xwidth: 520px;
  padding: 0 0.5em;
  position: relative;
}

#lower .main .main_box .ttl_box .ttl:before,
#lower .main .main_box .ttl_box .ttl:after {
  background-color: #ffffff;
  content: "";
  position: absolute;
}

#lower .main .main_box .ttl_box .ttl:before {
  bottom: -10px;
  right: -10px;
  height: 100%;
  width: 1px;
}

#lower .main .main_box .ttl_box .ttl:after {
  bottom: -10px;
  left: 10px;
  height: 1px;
  width: 100%;
}

/* -----------------------------------------------------------
    img:hover
----------------------------------------------------------- */
a img:hover {
  transition: all .5s ease;
}

/* -----------------------------------------------------------
    .object-fit-img
----------------------------------------------------------- */
.object-fit-img {
  object-fit: cover;
  font-family: "object-fit: cover;";
}