/* Meyer's Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, 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-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

:root {
    --primary-color: #4d4d4d;
    --secondary-color: #54b54a;
    --accent-color: #d9e021;
}

html {
    font-size: 15px; /* Base font size */
    background-color: #FFF;
    color: var(--primary-color);
	scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem; /* 15px */
    padding-top: 75px;
}

p {
    line-height: 1.6;
    letter-spacing: 0.02rem;
    font-weight: 400;
}

a.transparent {
    transition: all .2s;
}

a.transparent:hover {
    opacity: 0.7;
}

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        Common 
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

body.active {
    overflow-y: hidden; /* Fallback for older browsers */
    overflow-x: clip; /* Modern browsers will use this if they support it */
}

.button_basic {
    border-radius: 0.6rem;
    padding: 40px 50px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: all .2s;
}

.button_basic_small {
    border-radius: 0.6rem;
    padding:  20px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: all .2s;
}

.btn_bg_light {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-style: solid;
    border-width: 0.5px;
}

.btn_bg_light:hover {
    background-color:  var(--accent-color);
}

.btn_bg_dark {
    color: #FFF;
    border: 0.5px solid #FFF; 
}

.btn_bg_white {
    color: var(--secondary-color);
    background-color: #FFF;
    border-color: var(--secondary-color);
    border-style: solid;
    border-width: 0.5px;
}

.btn_bg_green {
    color: #FFF;
    background-color: var(--secondary-color);
}

.erase_sp {
    display: none !important;
}

.erase_pc {
    display:block !important;
}


/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        ヘッダー 
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

header {
    height: 75px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FFF;
    width: 100%;
    z-index: 10;
    box-shadow: none;
    transition: all .4s;
}

header h1 {
    display: flex;
    align-items: center;
    padding: 0 4vw 0 3vw;
}

header h1 a.logo {
    width: 28vw;
    margin-top: 4px;
    max-width: 120px;
    min-width: 108px;
}

header h1 span  {
    font-size: 0.7rem;
    line-height: 1.3;
    margin-left: 10px;
}

header .right {
    display: flex;
    align-items: center;
}

header .right div {
    display:none;
}

header .right div.toggle {
    display: block;
    width: 75px;
    min-width: 75px;
    height: 75px;
    text-align: center;
    color: #FFF;
    background-color: var(--secondary-color);
}

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        トグルボタン
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

.toggle {
    display: block;
    cursor: pointer;
    z-index: 10;
    transition: all .2s;
}

#toggle-appearance .toggle-inner {
    display:block;
}

.toggle span {
    display: block;
    position:relative;
    width: 50%;
    margin: 0 auto;
    border-bottom: solid 2px #FFF;
    transition: 0.2s ease;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
}

.toggle p {
    position:relative;
    margin: 0 auto;
    transition: 0.2s ease;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
}

.toggle span:nth-child(1) {
    top:1.3em;
}
 .toggle span:nth-child(2) {
     top: 2em;
}
 .toggle p {
     top: 2.4rem;
     font-size: 0.85rem;
     font-weight: 600;
}
 
.toggle.active span:nth-child(1) {
    top: 1.8em;
    -webkit-transform: rotate(-40deg);
    -moz-transform: rotate(-40deg);
    transform: rotate(-40deg);
}
 
.toggle.active span:nth-child(2) {
    top: 1.66em;
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    transform: rotate(40deg);
}

.toggle:active span {
    border-color:  var(--accent-color);
}

.toggle:active p {
    color:  var(--accent-color);
}

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        ナビゲーション
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/


#bg-toggle-appearance {
    display: none;
    z-index: 9;    
    width: 100vw;
    position: fixed;
    top: 75px;
    left: 0;
    background-color: rgba(6,6,6,0.7);
    overflow: auto;
    height: calc(100vh - 75px);
}

#toggle-appearance {
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--secondary-color);
    z-index: 10;
}

#toggle-appearance ul {
    font-weight: 600;
}

#toggle-appearance ul li {
    border-bottom: 0.5px solid #FFF;
}

#toggle-appearance ul li.active {
    background-color: var(--accent-color);
}

#toggle-appearance ul li.active a {
    color: var(--secondary-color);
}

#toggle-appearance ul li a {
    color: #FFF;
    text-decoration: none;
    display: block;
    padding: 12px 18px; 
}

#toggle-appearance ul li a span {
    display: none;
}

#toggle-appearance .phone {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    color: #FFF;
    margin: 20px 20px 10px 20px;
}

#toggle-appearance .phone span {
    display: block;
    font-size: 1.04rem;
    font-weight: 400;
}

#toggle-appearance .phone a {
    text-decoration: none;
    color: #FFF;
    background: url(../img/icon-freedial-white.png) no-repeat left;
    background-size: 42px;
    padding-left: 50px;
}

#toggle-appearance .webform {
    text-align: center;
    margin-bottom: 30px;
}

#toggle-appearance .webform a {
    font-size: 1.1rem;
    display: inline-block;
    padding: 25px 42px;
}

#toggle-appearance .icon_mail_white {
    width: 22px;
    margin-right: 8px;
}

#toggle-appearance .sns {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
}

#toggle-appearance .sns img {
    width: 20px;
    margin: 0 10px;
}


/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        トップページ
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

.top_promotion {
    display: flex;
    flex-direction: column;
}

.promo_box_1 {
    width: 100vw;
    background: url("../img/main-01.jpg") no-repeat;
    background-size: 100%;
    aspect-ratio:1/1;
}

.promo_box_1 h2 {
    text-align: center;
    height: 50vw;
    position: relative;
}

.promo_box_1 h2 img {
    width: 94%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    filter: drop-shadow(0px 0px 0.3rem #000);
}

.promo_box_1_bottom {
    display: flex;
}

.promo_box_1 .inbox-1 {
    width: 25%;
    aspect-ratio:1/2;
    text-align: center;
}

.promo_box_1 .inbox-2 {
    width: 25%;
    aspect-ratio:1/2;
    text-align: center;
}

.promo_box_1 .inbox-3 {
    width: 50%;
    aspect-ratio:1/1;
    text-align: center;
}

.inbox_wrapper {
    height: 50%;
    display: table;
    width: 100%;
    position:relative;
}

.inbox_wrapper:before {
    display:block;
    content:'';
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    background:  rgb(84,177,74, 0.6);
    mix-blend-mode:multiply;
}

.promo_box_1 .inbox-2 .inbox_wrapper {
    margin-top: 25vw;
}

.promo_box_1 .inbox-1 h3,
.promo_box_1 .inbox-2 h3 {
    width: 100%;
    aspect-ratio:1/1;
}

.promo_box_1 .inbox-3 h3 {
    width: 100%;
    aspect-ratio:2/1;
}

.top_promotion h3 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: #FFF;
    text-shadow: 
        1px 1px 1px rgb(0,0,0, 0.8),
        0 0 0.6rem rgb(0,0,0, 0.3);
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.top_promotion h3 .small {
    display: block;
    font-size: 1rem;
}

.top_promotion .title {
    display:block;
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 400;
}

.promo_box_2 {
    width: 100vw;
}

.promo_box_2_top {
    width: 100%;
    aspect-ratio: 2/1;
    background: url("../img/main-02.jpg") no-repeat;
    background-size: 100%;
}

.promo_box_2_top .inbox_wrapper {
    height: 100%;
    width: 50%;
    text-align: center;
    margin-left: 50vw;
}

.promo_box_2_bottom {
    width: 100%;
    aspect-ratio: 2/1;
    display: flex;
    background-color: aqua;
}

.promo_box_2_bottom .inbox_wrapper_left,
.promo_box_2_bottom .inbox_wrapper_right {
    width: 50%;
    text-align: center;
}

.promo_box_2_bottom .inbox_wrapper_left {
    background: url("../img/main-04.jpg") no-repeat;
    background-size: 100%;
}

.promo_box_2_bottom .inbox_wrapper_right {
    background: url("../img/main-03.jpg") no-repeat;
    background-size: 100%;
}

.promo_box_2_bottom .inbox_wrapper_right .inbox_wrapper {
    margin-top: 25vw;
}


.basic_container {
    text-align: center;
    position: relative;
    top: -80px;
    padding: 80px 0;;
}

.basic_container .title_area_fist {
    margin: 80px 2vw 50px 2vw;
}

.basic_container .title_area {
    margin: 0 2vw 50px 2vw;
}

h2.primary_title {
    font-size: 1.4rem;
    font-weight: 800;
    display: inline;
    background: linear-gradient(transparent 60%, #eef1a8 0%);
    padding: 0 0.3rem;
}

h2.primary_title span {
    font-size: 2.2rem;
    letter-spacing: -0.1rem;
    margin-right: 0.4rem;
    color: var(--secondary-color);
}

p.description {
    font-size: 0.8rem;
    margin-top: 20px;
} 

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        トップページ（エアコンリースの特長）
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

.features_container {
    background-color: var(--secondary-color);
    padding: 8px;
    margin-bottom: 40px;
}

.features_common .benefit {
    position:absolute;
    top: 0;
    left: 0;
    color: #FFF;
    font-size: 1.5rem;
    z-index: 0;
    font-weight: 600;
    line-height: 1;
    padding-left: 6px;
}

.features_common .benefit:after {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 0 50px 50px;
    border-color: transparent  transparent  transparent var(--secondary-color); /*transparentで余分な線を消す*/
    z-index: -1;
}

.features_common .benefit span {
    color: var(--secondary-color);
    font-size: .7rem;
    font-weight: 400;
    display: inline-block;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 24px;
    left: 10px;   
}

.features_common h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.features_01 {
    background: url("../img/benefit-01.png") no-repeat bottom center;
    background-size: 74%;
}

.features_02 {
    background: url("../img/benefit-02.png") no-repeat bottom center;
    background-size: 86%;
}

.features_03 {
    background: url("../img/benefit-03.png") no-repeat bottom center;
    background-size: 80%;
}

.features_04 {
    background: url("../img/benefit-04.png") no-repeat bottom center;
    background-size: 84%;
}

.features_05 {
    background: url("../img/benefit-05.png") no-repeat bottom center;
    background-size: 82%;
}

.features_06 {
    background: url("../img/benefit-06.png") no-repeat bottom center;
    background-size: 80%;
}

.features_07 {
    background: url("../img/benefit-07.png") no-repeat bottom center;
    background-size: 70%;
}

.features_08 {
    background: url("../img/benefit-08.png") no-repeat bottom center;
    background-size: 70%;
}

.features_common {
    background-color: #FFF;
    padding: 40px 30px;
    text-align: left;
    min-height: 280px;
    position: relative;
    border-bottom: 8px solid var(--secondary-color);
}

.features_container .last-child {
    border-bottom: 0;
}

.btn_top_type1,
.btn_top_type2 {
    display: block;
    padding: 20px;
    min-width: 250px;
    border-radius: 0.5rem;
    text-decoration: none;
    margin: 0 10% 20px 10%;
    font-weight: 600;
}


.btn_top_type1 img,
.btn_top_type2 img {
    display:none;
}

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        トップページ（リースプランの紹介）
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

.plan_each_box {
    margin-top: 90px;
    padding-bottom: 50px;
}

.plan_each_box h3 {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 15px;
    border:3px solid var(--secondary-color);
    background-color: #FFF;
    border-radius: 1rem;
    width: 74%;
    position: relative;
    top: -60px;
}

/*下向の吹き出し（背景白の三角形）*/
.plan_each_box h3:before {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 15px solid #FFF;
  bottom: -15px;
  left: calc(50% - 20px);
  z-index: 2;
}

/*下向の吹き出し（枠線用の三角形）*/
.plan_each_box h3:after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right: 19px solid transparent;
  border-left: 19px solid transparent;
  border-top: 19px solid var(--secondary-color);
  bottom: -19px;
  left: calc(50% - 24px);
  z-index: 1;
}


.plan_img_01 {
    width: 100%;
    aspect-ratio: 2/1;
    background: url("../img/plan-01.jpg") no-repeat top center;
    background-size: 100%;
}

.plan_img_02 {
    width: 100%;
    aspect-ratio: 2/1;
    background: url("../img/plan-02.jpg") no-repeat top center;
    background-size: 100%;
}

.plan_img_03 {
    width: 100%;
    aspect-ratio: 2/1;
    background: url("../img/plan-03.jpg") no-repeat top center;
    background-size: 100%;
}

.plan_each_box h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 20px 10%;
}

.plan_each_box h2 span {
    display: inline-block;
    font-size: 1.6rem;
}

.plan_each_box p {
    margin: 0 10% 0 10%;
    text-align: left;
}

.note {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 10% 30px 10%;
    line-height: 1.8;
}

.note span {
    background: linear-gradient(transparent 60%, #fbd974 0%);
}

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        トップページ（リースの流れ）
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

.wrapper_flow{
    margin-bottom: 40px;
}

.flow_each_box {
    padding: 40px 10% 20px 10%;
    border-top: 0.5px solid #CCC;
    border-bottom: 0.5px solid #CCC;
}

.flow_each_box:after {
    content: url("../img/icon-arrow-accent.svg");
    position: relative;
    display: block;
    width: 20px;
    top: 36px;
    margin: 0 auto;
    transform:rotate(90deg); 
}

.flow_each_box figure {
    width: 100%;
    margin-bottom: 15px;
}

.flow_each_box figure img {
    width: 60%;
    border: 8px solid var(--secondary-color);
    box-sizing: border-box;
    border-radius: 50%;
}

.flow_each_box h3 {
    color: var(--secondary-color);
    font-weight: 800;   
}

.flow_each_box h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.flow_each_box p {
    text-align: left;
}

.last_flow:after {
    display: none !important;
}

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        トップページ（対応エリア）
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

.wrapper_area {
    display: grid;
}

.wrapper_area h2 {
    font-size: 1.4rem;
    font-weight: 600;
    border-top: 1px solid var(--secondary-color);
    width: 40vw;
    padding: 25px;
    box-sizing: border-box;
    margin: 0 auto;
    white-space: nowrap;
}

.wrapper_area .detail {
    width: 80vw;
    margin: 0 auto 60px auto;
    text-align: left;
}

.wrapper_area .detail a {
    color: var(--secondary-color);
    transition: all .2s;
}


/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        トップページ（よくある質問）
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

.wrapper_faq {
    display: grid;
    padding:0 10vw 30px 10vw;
}

.faq_each_box {
    margin-bottom: 50px;
}

.wrapper_faq h2 {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-align: left;
    display: flex;
    align-items: center;
}

.wrapper_faq h2::before {
    content: "Q";
    font-size: 1rem;
    line-height: 1;
    font-weight: 600;
    background-color: var(--secondary-color);
    color: #FFF;
    text-align:center;
    padding: 10px;
    display: inline-block;
    width: 18px;
    aspect-ratio: 1/1;
    border-radius: 100%;
}

.wrapper_faq h2 span {
    width: 94%;
    margin-left: 6px;
}

.wrapper_faq .answer {
    text-align: left;
}

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        トップページ（エアコン機種）
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

.wrapper_style {
    display: grid;
    border-bottom: 1px solid #CCC;
    margin-bottom: 10vw;
}

.style_each_box {
    padding:10vw;
    border-top: 1px solid #CCC;
}

.style_each_box figure {
    width: 100%;
    background-color: #FFF;
}

.style_each_box figure img {
    width: 70%;
}

.style_each_box h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

.style_each_box p {
    text-align: left;
}

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        トップページ（導入事例）
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/


.wrapper_work {
    display: grid;
}

.work_each_box {
    padding:0 10vw 20vw 10vw;
}

.work_each_box figure {
    width: 100%;
    aspect-ratio: 1/1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0 auto;
}

.work_each_box figure.work-01  {
    background-image:url("../img/work-01.jpg");   
}

.work_each_box figure.work-02  {
    background-image:url("../img/work-02.jpg");   
}

.work_each_box figure.work-03  {
    background-image:url("../img/work-03.jpg");   
}

.work_each_box figure.work-04  {
    background-image:url("../img/work-04.jpg");   
}

.work_each_box h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0;
    color: var(--secondary-color);
}

.work_each_box .info_number {
    list-style: none;
    display: flex;
    border: 1px solid #ccc;
    border-radius: 12px;
    width: 100%;
}

.work_each_box .info_number li {
    padding: 14px 16px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 30%;
    box-sizing: border-box;
    white-space: nowrap;
}

.work_each_box .info_number li:first-child {
    border-right: 1px solid #ccc;
}

.work_each_box .info_number li:last-child {
    border-left: 1px solid #ccc;
    width: 40%;
}

.work_each_box .info_number h4 {
    font-size: 0.8rem;
    font-weight: normal;
    white-space: nowrap;
}

.work_each_box .info_number span {
    font-size: 1.5rem;
}

.work_each_box .info_detail {
    list-style: none;
    display: grid;
    width: 100%;
    grid-template-columns: 20% 76%;
    column-gap: 4%;
    row-gap: 6px;
    margin-top: 20px;
}

.work_each_box .info_detail dt {
    white-space: nowrap;
    text-align: left;
    font-weight: 800;
}

.work_each_box .info_detail dd {
    text-align: left;
}

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        トップページ（運営会社）
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

.wrapper_company {
    padding-bottom: 50px;
}

.wrapper_company figure {
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 0;
    row-gap:0;
    justify-content: center;
}

.wrapper_company figure img {
    width: 100%;
}

.wrapper_company div.profile {
    margin: 20px 0 0 0;
}

.wrapper_company dl {
    display: flex;
    border-bottom: 1px solid #CCC;
    padding: 20px 5vw;
    align-items: center;
}

.wrapper_company dt {
    width: 25%;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0 20px 0 0;
    white-space: nowrap;
}

.wrapper_company dd {
    width: 75%;
    text-align: left;
}



/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        トップページ（最新情報）
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

.wrapper_news {
    margin-bottom: 50px;
    border-top: 1px dashed #ACACAC;
}

.wrapper_news dl {
    border-bottom: 1px dashed #ACACAC;
    padding: 20px 10vw;
    text-align: left;
}

.wrapper_news dt {
    margin-bottom: 5px;
}

.wrapper_news dt a {
    margin-left: 15px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all .2s;
}

.wrapper_news dd  a{
    text-decoration: none;
    color: var(--primary-color);
    transition: all .2s;
}



/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        フッター（各種お問い合わせ先・取扱メーカー）
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

.wrapper_contact,
.wrapper_brand {
    padding: 0 10% 80px;
    text-align: center;
    
}

.wrapper_contact h3,
.wrapper_brand h3 {
    border-top:1px solid #CCC;
    margin-bottom: 20px;
}

.wrapper_contact h3 span,
.wrapper_brand h3 span{
    font-size: 1rem;
    font-weight: 600;
    background-color: #FFF;
    position: relative;
    top: -12px;
    padding: 0 20px;
}

.wrapper_contact h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

.wrapper_contact .inner {
    max-width: 350px;
    margin: 0 auto;
}

.wrapper_contact a.phone {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    color: var(--secondary-color);
    background: url("../img/icon-freedial-green.png") no-repeat left;
    background-size: 42px;
    padding-left: 50px;
    white-space: nowrap;
    display: inline-block;
    width: auto;
    box-sizing: border-box;
}

.wrapper_contact .reception {
    display: flex;
    margin: 5px auto 20px auto;
    justify-content: center;
    color: var(--secondary-color);
    font-weight: 600;
}

.wrapper_contact .hours, 
.wrapper_contact .dates {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin: 0 5px;
}

.wrapper_contact .hours dt,
.wrapper_contact .dates dt {
    margin-right: 3px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.wrapper_contact .hours dd,
.wrapper_contact .dates dd {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: normal;
    white-space: nowrap;
}

.btn_contact {
    display: block;
    padding: 30px 20px;
    min-width: 250px;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    box-sizing: border-box;
    margin: 0 auto;
    transition: all .2s;
}

.btn_contact span {
    background: url("../img/icon-mail-white.png") no-repeat left center;
    background-size: 30px;
    padding-left: 40px;
}

.wrapper_brand .brand_list {
    display: grid;
    grid-template-columns: 48% 48%;
    column-gap: 4%;
    row-gap: 30px;
    justify-items: center;
    align-items: center;
}

.wrapper_brand .brand_list img {
    width: 65%;
}


/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        フッター
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/


.footer_bottom {
    background-color: #369e3f;
    padding: 10vw 15vw 30px 15vw;
    text-align: center;
    color: #FFF;
}

.footer_bottom .logo_area {
    padding: 0 5vw;
    margin: 0 auto 10vw;
    max-width: 380px;
}

.footer_bottom .logo_area h3 {
    width: 100%;
}

.footer_bottom .logo_area h3 a {
    display: block;
}

.footer_bottom .logo_area h3 img {
    width: 100%;
}

.footer_bottom .logo_area h2 {
    margin-bottom: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.footer_bottom .contact_area a.phone {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    text-align: left;
    text-decoration: none;
    color: #FFF;
    background: url("../img/icon-freedial-white.png") no-repeat left;
    background-size: 40px;
    padding-left: 48px;
    white-space: nowrap;
    display: inline-block;
    width: auto;
    box-sizing: border-box;
}

.footer_bottom .contact_area p {
    font-size: 0.9rem;
    white-space: nowrap;
}

.footer_bottom .contact_area .btn_web {
    display: block;
    padding: 20px;
    min-width: 250px;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    box-sizing: border-box;
    margin: 0 auto;
    transition: all .2s;
    background-color: transparent;
    border:1px solid #FFF;
    margin-top: 10px; 
    max-width: 300px;
}

.footer_bottom .contact_area .btn_web span {
    background: url(../img/icon-mail-white.png) no-repeat left center;
    background-size: 30px;
    padding-left: 40px;
    white-space: nowrap;
    transition: all .2s;
}

.footer_bottom .top_right {
    display: none;
}

.footer_bottom .lower ul {
    list-style: none;
}

.footer_bottom .lower ul li {
}

.footer_bottom .lower ul li a {
    text-decoration: none;
    color: #FFF;
}

.footer_bottom .lower .sub_menu {
    text-decoration: none;
    margin: 40px auto;
    font-size: 0.9rem;
}

.footer_bottom .lower .sub_menu li {
    margin-bottom: 15px;
}

.footer_bottom .lower .sns_menu {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer_bottom .lower .sns_menu li {
    justify-content: center;
    margin: 0 10px;
    line-height: 1;
}

.footer_bottom .lower .sns_menu li img {
    width: 20px;
}

.footer_bottom .copyrights {
    font-size: 0.7rem;
}

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        下層ページ（共通）
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

.subpage_header {
    background-color: yellowgreen;
    width: 100%;
    margin-bottom: 50px;
    line-height: 0;
}

.subpage_header .wrapper_title {
    position: absolute;
    top: 75px;
    width: 100%;
    aspect-ratio: 3/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subpage_header .wrapper_title h1 {
    color: #FFF;
    line-height: 1;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
     text-shadow: 
        1px 1px 9px rgb(0,0,0, 0.5), 
        1px 1px 1.3rem rgb(0,0,0, 0.3)
}

.subpage_header .wrapper_title h1 span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: normal;
    color: #FFF;
}

.subpage_header figure img {
    width: 100%;
}

.basic_container_sub {
    text-align: center;
    position: relative;
    top: -50px;
    padding: 80px 0;
}

.inner_basic {
	margin: 0 10vw;
	text-align: left;
}

.basic_container_sub .inner_basic h3 {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 10px;
}

.basic_container_sub .inner_basic ul {
	margin: 15px 18px;
	line-height: 1.8;
}

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        下層ページ（お問い合わせ）
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

.basic_container_sub .wrapper_contact {
    margin: 40px 10vw;
    padding: 0;
}

.basic_container_sub .title_area {
    margin: 0 2vw;
}

.contact_form {
    text-align: left;
    margin: 0 10vw;
}

.contact_form .form_each_box {
    margin-bottom: 30px;
}

.contact_form label {
    font-weight: 600;
    display: flex;
    align-items: center;
}

.contact_form label span {
    background-color: #f15e24;
    font-size: 0.8rem;
    color: #FFF;
    line-height: 1;
    padding: 4px 6px;
    margin-left: 10px;
    font-weight: normal;
}

.contact_form input,
.contact_form select,
.contact_form textarea {
    display: block;
    margin: 10px 0 0 0;
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0.4rem;
    border: 0;
    background-color: #EEE;
}

.contact_form select {
    background-image:url("../img/icon-select.png");
    background-position: right 10px center;
    color:#777;
    background-repeat: no-repeat;
    background-size: 8px;
    -webkit-appearance: none;
    appearance: none;
}

.contact_form .checkbox div {
    margin-top: 10px;
}

.contact_form .checkbox input,
.contact_form .agreement_wrapper input {
    display: inline;
    margin: 0 10px 0 0;
    width: auto;
}

.contact_form .checkbox label.label_check,
.contact_form .agreement_wrapper label {
    display:inline;
    font-weight: normal;
}

.contact_form .message_privacy {
    text-align: center;
    margin-bottom: 20px;
}

.contact_form .agreement_wrapper {
    text-align: center;
}

.contact_form .message_privacy a {
    color: var(--primary-color);
}

.contact_form .form_btn_wrapper {
    text-align: center;
}

.contact_form .form_btn_wrapper .btn_top_type2 {
    margin: 30px auto;
	border: 0;
}

.contact_form .form_btn_wrapper .btn_top_type2:active {
	background-color: var(--accent-color);
}

.error {
	color:#c53333;
	font-size:14px;
	margin:.3rem 0 0;
}

.confirmBox {
	margin-top:40px;
}

.InputtedText {
	color:#CC0003;
	margin-top: 10px;
}

.form_below {
	margin-top:40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap:10px;
}

.form_below .btn_top_type2 {
	margin: 0;
}

.form_below .btn_send {
	border:none;
}


/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        個人情報保護方針・サイトのご利用にあたって
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/


.wrapper_privacy_secion {
	margin-bottom: 50px;
}








