@charset "UTF-8";
@import "base.css";
@import "fonts.css";
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic&display=swap');
/*==========================================================================*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd, del {
    font-size: 180%;
    -webkit-text-size-adjust: none;
    font-weight: 400;
}
*, ::before, ::after {
    box-sizing: border-box;
    outline: none;
}
img {
    vertical-align: middle;
    max-width: 100%;
    flex-shrink: 0;
    height: auto;
}
select {
    visibility: visible !important;
}
a {
    transition: all ease 0.3s;
    text-decoration: none;
    color: var(--txt);
}
a[href^="tel:"] {
    word-break: keep-all;
}
video {
    max-width: 100%;
    height: auto;
}
figure {
    margin: 0;
}
figure:not(:last-child) {
    margin-bottom: 20px;
}
/*==========================================================================*/
/*                               Container                                  */
/*==========================================================================*/
html {
    background: #fff
}
body {
    -webkit-text-size-adjust: none;
    min-width: 320px;
    color: var(--txt);
    font-family: var(--f-main)
}
table {
    width: 100%
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
}
p, dd, dt, li, th, td, address {
    line-height: 1.8em;
    letter-spacing: 0;
}
p {
    margin: 0 0 1.7em;
}
p:last-child {
    margin-bottom: 0
}
.bold {
    font-weight: bold;
}
.left {
    text-align: left
}
.right {
    text-align: right;
}
.auto {
    margin-left: auto;
    margin-right: auto;
}
.red {
    color: var(--red);
}
.txt_u {
    text-decoration: underline;
}
.f_big {
    font-size: 150%;
}
.f_sm {
    font-size: 80%;
}
.m0a {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
:root {
    --txt: #595959;
    --txt2: #203304;
    --txt3: #262626;
    --txt4: #8cbf9b;
    --mcolor: #216630;
    --scolor: #8cbf9b;
    --container: 1230px;
    --gray: #e9e9e9;
    --blue: #003b7d;
    --red: red;
    --f-main: "Noto Sans JP", sans-serif;
    --f-yumin: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝B", serif;
    --f-en: "Jost", sans-serif;
    --f-zen: "Zen Maru Gothic", sans-serif;
}
#wrapper {
    min-width: 1310px;
    overflow: hidden;
    margin: 0 auto
}
.inner {
    width: var(--container);
    margin: 0 auto;
    position: relative;
    max-width: 100%;
    padding: 0 15px;
}
/*==========================================================
                       H E A D E R
==========================================================*/
/* HAMBUGER BUTTON */
.hamburger {
    font: inherit;
    display: block;
    overflow: visible;
    margin: 0;
    padding: 10px 8px 5px;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 24px
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    position: absolute;
    width: 35px;
    height: 2px;
    transition: all ease 0.15s;
    background-color: #fff;
}
.hamburger-inner::after, .hamburger-inner::before {
    display: block;
    content: ""
}
.hamburger-inner::before {
    top: -10px
}
.hamburger-inner::after {
    bottom: -10px
}
.hamburger--3dxy .hamburger-box {
    perspective: 80px
}
.hamburger--3dxy .hamburger-inner {
    transition: transform .15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0 cubic-bezier(0.645, 0.045, 0.355, 1) .1s
}
.hamburger--3dxy .hamburger-inner::after, .hamburger--3dxy .hamburger-inner::before {
    transition: transform cubic-bezier(0.645, 0.045, 0.355, 1) .1s
}
.hamburger--3dxy.is_active .hamburger-inner {
    transform: rotateX(180deg) rotateY(180deg);
    background-color: transparent !important
}
.hamburger--3dxy.is_active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg)
}
.hamburger--3dxy.is_active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg)
}
header {
    position: relative;
    z-index: 9;
}
#logo {
    padding: 23px 0 0;
    width: 400px;
    height: 64px;
    position: relative;
}
#logo img {
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s;
}
.is_scroll #logo img.scroll, .under #logo img.scroll {
    opacity: 1;
}
#logo img.scroll, .is_scroll.under #logo img.no-scroll {
    opacity: 1;
}
#logo img.no-scroll,.is_scroll #logo img.no-scroll {
	opacity: 0;
}
.h_box {
    width: 100%;
    position: fixed;
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.3s;
    padding-bottom: 22px;
}
.is_scroll .h_box, .is_nav .h_box, .under .h_box {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
}
.h_left {
    flex-shrink: 0;
    margin-top: 20px;
}
.h_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 60px 0 53px;
    max-width: 1920px;
}
.h_contact {
    display: flex;
    align-items: center;
}
.h_contact > p {
    margin-bottom: 0;
}
.h_contact > p:not(:last-child) {
    margin-right: 20px;
}
.h_contact_mail a {
    color: #FFF;
    font-weight: bold;
    text-align: center;
    background-color: var(--mcolor);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 60px;
    position: relative;
}
.h_contact_mail a span {
    position: relative;
    z-index: 2;
    font-size: 20px;
    display: inline-block;
    padding-left: 30px;
}
.h_contact_mail a span::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    top: calc(50% - 10px);
    background: url('../images/ic_h_mail.png') no-repeat center /cover;
}
.h_contact_tel a {
    font-size: 28px;
    color: #332829;
    font-weight: bold;
    padding-left: 25px;
    position: relative;
    line-height: 1;
    display: block;
}
.h_contact_tel .time {
    font-size: 12px;
    display: block;
    line-height: 1.6;
    text-align: right;
}
/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
    position: relative;
    z-index: 2;
}
.mv {
    position: relative;
    padding: 0;
    height: 960px;
    padding-top: 100px;
}
.mv .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-bottom: 29px;
}
.mv:before {
    position: absolute;
    content: "";
    
    left: calc(50% - 960px);
    width: 1920px;
    height: 100%;
    top: 0;
}
#index .mv:before {
	background: url("../images/main.jpg") no-repeat center top/1920px;
}
#index.anjo .mv:before {
	background: url("../images/main_anjo.jpg") no-repeat center top/1920px;
}
#index.chiryu .mv:before {
	background: url("../images/main_chiryu.jpg") no-repeat center top/1920px;
}
#index.kariya .mv:before {
	background: url("../images/main_kariya.jpg") no-repeat center top/1920px;
}
.mv_txt {
    position: absolute;
    width: 1150px;
    height: 578px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 80px 0 80px 0;
    box-shadow: 3px 0px 46px 0px rgba(0, 0, 0, 0.30);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 26px;
    overflow: hidden;
}
.mv_txt:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 154px;
    background: #f4f0e4;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}
.mv_txt h2 {
    font-size: 54px;
    text-align: center;
    font-weight: 400;
    font-family: var(--f-yumin);
    color: var(--txt2);
    letter-spacing: -0.06em;
    margin-bottom: 0px;
    padding-left: 37px;
    line-height: 1.8;
}
.mv_txt h2 .line {
    color: var(--mcolor);
    font-size: 71px;
    letter-spacing: 0.05em;
    /*    border-bottom: 6px var(--mcolor) dotted;*/
    line-height: 1.15;
    margin-bottom: 14px;
    display: inline-block;
    padding-bottom: 5px;
    background-image: radial-gradient(circle, #216630 3px, transparent 3px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 12px 6px;
}
.mv_txt h2 .line.space1 {
    padding-bottom: 5px;
    position: relative;
    margin-top: -5px;
    letter-spacing: 0em;
}
.mv_sub_title {
    font-size: 28px;
    text-align: center;
    font-weight: 500;
    color: var(--txt2);
    margin-bottom: 39px;
    letter-spacing: 0.02em;
    padding-left: 20px;
}
.mv_list {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}
.mv_list li {
    background: #fff;
    width: 268px;
    height: 117px;
    box-shadow: 9px 9px 13px 0px rgba(198, 191, 172, 0.35);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.mv_list li:before {
    position: absolute;
    content: "";
    border: 1px #66b77e solid;
    left: 6px;
    top: 6px;
    right: 6px;
    bottom: 6px;
}
.mv_list li .icon {
    position: absolute;
    left: 0;
    right: 0;
    top: -30px;
    margin: 0 auto -25px;
    text-align: center;
}
.mv_list li:not(:last-child) {
    margin-right: 17px;
}
.mv_list li .tt {
    font-size: 22px;
    text-align: center;
    font-weight: 500;
    color: #66b77e;
    line-height: 1.45;
    position: relative;
}
.mv_bnr {
    display: flex;
    justify-content: center;
    position: relative;
}
.mv_bnr li:not(:last-child) {
    margin-right: 21px;
}
/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl_h3 {
    font-family: var(--f-yumin);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    position: relative;
}
.ttl_h3:not(:last-child) {
    margin-bottom: 30px;
}
.ttl_h3 span {
    display: block;
}
.ttl_h3 .ja {
    font-size: 54px;
    color: var(--txt3);
}
.ttl_h3 .ja:first-letter {
    color: var(--scolor);
}
.ttl_h3 .en {
    font-size: 16px;
    color: var(--txt3);
    position: relative;
    padding-left: 155px;
    margin-left: 25px;
}
.ttl_h3 .en:before {
    position: absolute;
    content: "";
    width: 136px;
    height: 1px;
    background: var(--txt3);
    left: 0;
    top: 45%;
}
/* DEFAUTL NAME BUTTON */
.btn a {
    width: 296px;
    height: 64px;
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/arrow_white.png') no-repeat right 20px center /39px var(--mcolor);
    font-size: 20px;
    color: #fff;
    box-shadow: 4px 5px 0px 0px rgba(230, 225, 213, 0.55);
}
.btn.center a {
    margin-left: auto;
    margin-right: auto;
}
.btn_box:not(:last-child) {
    margin-bottom: 30px;
}
.btn_box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.btn_box .btn {
    margin: 10px;
}
/*============= SEC01 ==============*/
.sec01 {
    padding-top: 110px;
    padding-bottom: 100px;
}
.sec01 .ttl_h3 {
    position: relative;
    left: -90px;
    margin-bottom: 2px;
}
.sec01 .inner {
    width: 1130px;
}
.sec01_load {
    margin-bottom: 17px;
}
.sec01_load dl {
    display: flex;
    padding: 22px 40px 22px 0;
    border-bottom: 1px #e9eef3 solid;
    background: url("../images/arrow_green_round.png") no-repeat right center/28px;
    cursor: pointer;
}
.sec01_load dl dt {
    font-size: 20px;
    color: var(--mcolor);
    letter-spacing: 0.06em;
    width: 145px;
    flex-shrink: 0;
}
.sec01_load dl dd {
    letter-spacing: 0.05em;
    font-size: 20px;
    color: #1b2229;
    flex-grow: 1;
    font-weight: 500;
    word-break: break-all;
    width: calc(100% - 145px);
}
.sec01_load dl dd a {
    display: block;
    color: #1b2229;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.sec01_link a {
    display: table;
    margin-left: auto;
    font-size: 20px;
    font-weight: 500;
    color: var(--txt4);
    background: url("../images/arrow_green.png") no-repeat right center/39px;
    padding-right: 75px;
    border-bottom: 1px var(--txt4) solid;
    padding-bottom: 1px;
}
/*============= SEC02 ==============*/
.sec02 {
    position: relative;
    padding: 251px 0 117px;
}
.sec02 .inner {
    width: 1490px;
}
.sec02:before {
    position: absolute;
    content: "";
    width: 2400px;
    left: calc(50% - 1014px);
    top: -100px;
    background: url("../images/idx_map.png") no-repeat left top;
    height: 1004px;
}
.sec02_wrap {
    width: 775px;
    margin-left: auto;
    display: table;
}
.sec02 .btn {
    margin-left: 8px;
}
.sec02 .ttl_h3 {
    position: relative;
    margin-bottom: 9px;
}
.sec02 .ttl_h3 .ja {
    line-height: 1.42;
}
.sec02 .ttl_h3 .en {
    position: absolute;
    right: -7px;
    bottom: 25px;
    padding-left: 111px;
    letter-spacing: 0.05em;
}
.sec02 .ttl_h3 .en:before {
    width: 80px;
}
.sec02_txt {
    padding-right: 107px;
    padding-left: 10px;
    margin-bottom: 34px;
}
/*============= SEC03 ==============*/
.sec03 {
    position: relative;
    padding-bottom: 111px;
}
.sec03 .inner:before, .sec03 .inner:after {
    position: absolute;
    content: "";
    height: 304px;
    width: 1920px;
    z-index: -1;
}
.sec03 .inner:before {
    background: url("../images/idx_img_01.png") no-repeat right top/1600px;
    right: calc(50% - 960px);
    top: 0;
}
.sec03 .inner:after {
    background: url("../images/idx_img_02.png") no-repeat left top/1690px;
    left: calc(50% - 960px);
    top: 364px;
    height: 282px;
}
.sec03 .inner {
    width: 1310px;
    padding-top: 108px;
}
.sec03_item {
    display: flex;
    position: relative;
    z-index: 1;
    justify-content: center;
    padding-left: 90px;
    margin-bottom: 79px;
}
.sec03_item > div {
    background: #fff;
    padding: 48px 10px 7px 28px;
    width: 360px;
    position: relative;
}
.sec03_item > div:before {
    position: absolute;
    content: "";
    width: 108px;
    height: 47px;
    border-top: 8px rgba(102, 183, 126, 0.8) solid;
    border-left: 8px rgba(102, 183, 126, 0.8) solid;
    left: -8px;
    top: -8px;
}
.sec03_item > div:not(:last-child) {
    margin-right: 55px;
}
.sec03_sub_ttl {
    font-size: 28px;
    font-family: var(--f-yumin);
    line-height: 1.25;
    color: var(--txt3);
    letter-spacing: 0.04em;
    margin-bottom: 27px;
}
.sec03_list {
    position: relative;
    padding-left: 10px;
}
.sec03_list:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 320px;
    left: 11px;
    top: -17px;
    background: #66b77e;
}
.sec03_list li {
    line-height: 1.77;
    margin-bottom: 15px;
    padding-left: 16px;
    font-weight: 500;
    position: relative;
    letter-spacing: 0.02em;
}
.sec03_list li:before {
    position: absolute;
    content: "";
    background: #66b77e;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: -3px;
    top: 12px;
}
.sec03_list li .green {
    color: #66b77e;
    font-weight: 500;
    letter-spacing: 0.03em;
}
.sec03_wrap {
    width: 1295px;
    margin: 0 auto 53px;
}
.sec03 .ttl_h3 .ja {
    letter-spacing: -0.055em;
}
.sec03 .ttl_h3 .en {
    position: absolute;
    left: 352px;
    top: 104px;
}
.sec03 .ttl_h3 {
    margin-bottom: 10px;
}
.idx_txt_ttl.sec02_ttl3 {
    letter-spacing: 0.04em;
    left: 6px;
}
.sec03_ttl_point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 53px;
}
.sec03_ttl_point .sm {
    color: var(--txt3);
    font-family: var(--f-yumin);
    font-size: 28px;
    letter-spacing: -0.02em;
}
.sec03_ttl_point .sm.mb1 {
    margin-bottom: 21px;
    position: relative;
    left: -14px;
    letter-spacing: -0.005em;
}
.sec03_ttl_point .point {
    position: relative;
    color: #66b77e;
    font-size: 128.5%;
    padding-top: 6px;
}
.sec03_ttl_point .point:before {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    background: #e96f30;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
}
/*============= SEC04 ==============*/
.sec04 {
    background: url("../images/par2.png") repeat left -8px top -32px;
    position: relative;
    padding-top: 111px;
    padding-bottom: 114px;
}
.sec04 .inner {
    z-index: 3;
    width: 1320px;
}
.sec04 .inner:before {
    position: absolute;
    content: "";
    background: url("../images/idx_icon1.png") no-repeat center top/cover;
    width: 297px;
    height: 261px;
    right: -103px;
    top: -30px;
}
.sec04:before, .sec04:after {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    height: 455px;
}
.sec04:after {
    background: url(../images/par1.png) repeat left -8px top -32px;
    mix-blend-mode: screen;
}
.sec04:before {
    background: #66b77e;
}
.sec04 .ttl_h3 {
    margin-bottom: 13px;
}
.sec04 .ttl_h3 .ja {
    color: #fff;
    letter-spacing: -0.035em;
}
.sec04 .ttl_h3 .en {
    color: #fff;
    top: 39px;
    font-weight: 200;
    padding-left: 160px;
}
.sec04 .ttl_h3 .en:before {
    background: #fff;
    left: 2px;
}
.sec04 .ttl_h3 .ja:first-letter {
    color: #fff;
}
.idx_txt.sec04_txt {
    margin-bottom: 51px;
}
.idx_txt.sec04_txt p {
    color: #fff;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0em;
}
.sec04_item {
    display: flex;
    justify-content: center;
}
.sec04_item > div {
    position: relative;
    width: 298px;
}
.sec04_item > div:not(:last-child) {
    margin-right: 31px;
}
.sec04_item > div .num {
    position: absolute;
    left: -28px;
    top: -60px;
    font-size: 76px;
    font-family: var(--f-en);
    z-index: 9;
    -webkit-text-stroke: 1px #8cce83;
    color: transparent;
    font-weight: 600;
    margin-bottom: 0;
}
.sec04_item > div .img {
    margin-bottom: 18px;
    position: relative;
    border-radius: 52px 0 52px 0;
    overflow: hidden;
    box-shadow: 9px 9px 13px 0px rgba(0, 0, 0, 0.07);
}
.sec04_item > div .img img {
    border-radius: 55px 0 56px 0;
}
.sec04_item > div .img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 5px #fff solid;
    left: 0;
    top: 0;
    border-radius: 50px 0 50px 0;
}
.sec04_item > div .tt {
    color: var(--txt3);
    font-size: 32px;
    font-family: var(--f-yumin);
    line-height: 1.375;
    position: relative;
    padding-left: 17px;
    letter-spacing: -0.01em;
}
.sec04_item > div .tt:before {
    position: absolute;
    content: "";
    width: 3px;
    height: calc(100% - 10px);
    left: 0;
    top: 4px;
    background: #a3da9c;
}
/*============= SEC05 ==============*/
.sec05 {
    padding-top: 110px;
    padding-bottom: 11px;
    max-width: 1920px;
    margin: 0 auto;
}
.sec05 .inner {
    width: 1220px;
}
.sec05 .inner:before {
    position: absolute;
    content: "";
    background: url("../images/idx_icon2.png") no-repeat center/cover;
    width: 383px;
    height: 433px;
    right: 47px;
    top: -128px;
}
.sec05_wrap {
    position: relative;
    left: -51px;
}
.sec05 .ttl_h3 {
    margin-bottom: 10px;
}
.sec05 .ttl_h3 .ja {}
.sec05 .ttl_h3 .en {
    top: 38px;
}
.idx_txt.sec05_txt {
    margin-bottom: 53px;
    padding-left: 5px;
}
.idx_txt.sec05_txt p {
    color: var(--txt3);
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.01em;
}
.sec05_point {
    display: flex;
    justify-content: center;
    margin-bottom: 78px;
}
.sec05_point > div {
    position: relative;
    width: 332px;
    height: 332px;
    border-radius: 50%;
    background: #f4f0e4;
    border: 18px #e6e1d5 solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 35px;
}
.sec05_point > div:not(:last-child) {
    margin-right: 50px;
}
.sec05_point > div .ttl1 {
    font-size: 32px;
    font-weight: 500;
    color: #e96f30;
    border-bottom: 4px #e96f30 dotted;
    line-height: 1.66;
    margin-bottom: 15px;
}
.sec05_point > div .ttl2 {
    color: #595959;
    font-size: 32px;
    font-family: var(--f-yumin);
    margin-bottom: -5px;
    line-height: 1;
}
.sec05_point > div .ttl3 {
    color: #595959;
    font-size: 28px;
}
.sec05_point > div .ttl3 .num {
    color: var(--txt4);
    font-size: 100px;
    font-weight: 700;
    font-family: var(--f-en);
    line-height: 1;
    margin: 0 5px 0 3px;
    position: relative;
    top: 11px;
    letter-spacing: -0.02em;
}
.sec05_item > div {
    display: flex;
    align-items: flex-end;
    margin-bottom: 201px;
    position: relative;
}
.sec05_item > div:nth-child(odd) {
    margin-right: auto;
    left: -8px;
}
.sec05_item > div:nth-child(even) {
    margin-left: auto;
    flex-direction: row-reverse;
}
.sec05_item > div .item1 {
    flex-shrink: 0;
}
.sec05_item > div:nth-child(odd) .img img {
    border-radius: 0px 80px 80px 0;
}
.sec05_item > div:nth-child(even) .img img {
    border-radius: 80px 0px 0px 80px;
}
.sec05_item > div .item1 .img {}
.sec05_item > div .item1 .img img {}
.sec05_item > div .item2 {
    position: relative;
    bottom: -80px;
}
.sec05_item > div:nth-child(odd) .item2 .wrap {
    margin-left: -147px;
}
.sec05_item > div:nth-child(even) .item2 .wrap {
    margin-right: -143px;
}
.sec05_item > div .item2 .wrap {
    background: rgba(255, 255, 255, 0.9);
    width: 697px;
    padding: 99px 74px 100px 80px;
    position: relative;
    box-shadow: 7px 3px 30px 0px rgba(4, 0, 0, 0.07);
}
.sec05_item > div.sub2 .item2 .wrap {
    padding: 117px 74px 118px 80px;
}
.sec05_item > div.sub3 .item2 .wrap {
    padding: 43px 74px 48px 80px;
}
.sec05_item > div.sub4 .item2 .wrap {
    padding: 131px 74px 132px 80px;
}
.sec05_item > div.sub5 .item2 .wrap {
    padding: 117px 63px 118px 80px;
}
.sec05_item > div .item2 .wrap:before, .sec05_item > div .item2 .wrap:after {
    position: absolute;
    content: "";
    width: 142px;
    height: 81px;
}
.sec05_item > div .item2 .wrap:before {
    border-top: 12px #66b77e solid;
    border-left: 12px #66b77e solid;
    left: -12px;
    top: -12px;
    opacity: 0.8;
}
.sec05_item > div .item2 .wrap:after {
    right: -12px;
    bottom: -12px;
    border-bottom: 12px #e9e5db solid;
    border-right: 12px #e9e5db solid;
}
.sec05_ttl1 {
    font-family: var(--f-yumin);
    color: #595959;
    font-size: 46px;
    line-height: 1.374;
    margin-bottom: 21px;
    position: relative;
    letter-spacing: -0.03em;
}
.sec05_ttl1:first-letter {
    color: var(--txt4);
}
.sub2 .sec05_ttl1 {
    letter-spacing: 0em;
    color: var(--txt3);
}
.sub3 .sec05_ttl1 {
    letter-spacing: 0em;
}
.sub4 .sec05_ttl1 {
    letter-spacing: 0.03em;
}
.sub5 .sec05_ttl1 {
    letter-spacing: 0em;
}
.sub5 .sec05_ttl1 .let1 {
    letter-spacing: -0.1em;
}
.sec05_ttl1 .num {
    margin: 0 18px;
}
.sec05_ttl1:before {
    position: absolute;
    content: "";
    width: 245px;
    height: 1px;
    background: var(--txt3);
    right: 104px;
    bottom: 29px;
}
.sub1 .sec05_ttl1:before {}
.sub2 .sec05_ttl1:before {
    width: 140px;
}
.sub3 .sec05_ttl1:before {
    width: 150px;
    right: 78px;
    bottom: 29px;
}
.sub4 .sec05_ttl1:before {
    width: 55px;
    right: 74px;
}
.sub5 .sec05_ttl1:before {
    width: 113px;
    right: 83px;
    bottom: 29px;
}
.sec05_ttl2 {
    font-size: 27px;
    color: #216630;
    font-weight: 500;
    line-height: 1.38;
    margin-bottom: 15px;
}
.sub4 .sec05_ttl2 {
    margin-bottom: 34px;
}
.sec05_round {
    position: absolute;
    right: -59px;
    top: 98px;
    background: #efd862;
    border-radius: 50%;
    width: 191px;
    height: 191px;
    font-size: 22px;
    color: var(--txt3);
    text-align: center;
    line-height: 1.72;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.sub2 .sec05_round {
    right: -59px;
    top: 115px;
}
.sub3 .sec05_round {
    right: -59px;
    top: 43px;
}
.sub4 .sec05_round {
    right: -59px;
    top: 130px;
}
.sub5 .sec05_round {
    right: -59px;
    top: 175px;
}
.sec05_wrap_tt {
    margin-bottom: 24px;
}
.sec05_item > div.sub2 {
    right: -7px;
}
.idx_txt.sec05_txt_sub {
    padding-left: 5px;
}
.idx_txt.sec05_txt_sub p {
    color: var(--txt3);
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0em;
}
.sub5 .idx_txt.sec05_txt_sub p {
    letter-spacing: 0.057em;
}
/*============= SEC06 ==============*/
.sec_cta {
    position: relative;
    height: 809px;
    padding-top: 104px;
}
.sec_cta .inner {
    width: 1310px;
}
.sec_cta:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg1.jpg") no-repeat center top/1920px;
    width: 1920px;
    left: calc(50% - 960px);
    height: 100%;
    top: 0;
}
.sec_cta_w {
    background: rgba(33, 102, 48, 0.84);
    color: #fff;
    box-shadow: 6px 0px 16px 0px rgba(32, 51, 4, 0.2);
    height: 499px;
    padding-top: 60px;
}
.sec_cta_ttl_cen {
    text-align: center;
    font-family: var(--f-yumin);
    color: #fff;
    font-size: 48px;
    letter-spacing: -0.015em;
    margin-bottom: 0;
}
.sec_cta_ttl1 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 18px;
    font-weight: 300;
    margin-left: 167px;
}
.sec_cta_ttl1 .let1 {
    margin: 0 10px 0 11px;
}
.sec_cta_ttl1 .let2 {
    margin-left: 15px;
}
.sec_cta_ttl1 .bg.let3 {
    letter-spacing: -0.02em;
    padding: 0 15px;
    line-height: 1.7;
}
.sec_cta_ttl1 .bg {
    background: var(--txt4);
    font-size: 36px;
    font-family: var(--f-yumin);
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 3px 14px;
    display: inline-block;
    line-height: 1.52;
    height: 55px;
}
.sec_cta_list {
    display: flex;
    justify-content: center;
    margin-bottom: 29px;
    margin-left: 155px;
}
.sec_cta_list li {
    position: relative;
    font-size: 20px;
    padding-left: 27px;
    letter-spacing: 0.018em;
    background-image: radial-gradient(circle, #dfcf5f 2px, transparent 2px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 8px 4px;
    padding-bottom: 5px;
}
.sec_cta_list li:before {
    position: absolute;
    content: "";
    background: url("../images/icon_check.png") no-repeat left top/20px;
    width: 20px;
    height: 17px;
    left: 0;
    top: 10px;
}
.sec_cta_list li:not(:last-child) {
    margin-right: 50px;
}
.sec_cta_bnr {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.sec_cta_bnr:before {
    position: absolute;
    content: "";
    background: url("../images/idx_icon3.png") no-repeat left top/cover;
    width: 160px;
    height: 234px;
    left: 73px;
    top: -173px;
    z-index: -1;
}
.sec_cta_bnr li {
    width: 533px;
    height: 234px;
}
.sec_cta_bnr li:not(:last-child) {
    margin-right: 35px;
}
.sec_cta_bnr li.cta_bnr2 a {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 51px 0 51px 0;
    flex-direction: column;
    align-items: center;
    box-shadow: 7px 3px 13px 0px rgba(4, 0, 0, 0.07);
}
.sec_cta_bnr .cta_bnr1 {
    background: #fff;
    border-radius: 51px 0 51px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.sec_cta_bnr .cta_bnr1 a {
	position: relative;
	justify-content: center;
	padding-bottom: 2px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 auto;
	max-width: 320px;
	width: 100%;
}
.sec_cta_bnr .cta_bnr1 a:not(:last-child) {
	margin-bottom: 10px;
}
.sec_cta_bnr .cta_bnr1 a .sm {
	position: absolute;
    font-size: 12px;
    left: -5px;
    top: 0;
}
.sec_cta_bnr .cta_bnr1 .ttl {
    color: #216630;
    font-size: 28px;
    font-weight: 500;
    border-bottom: 4px #216630 dotted;
    padding-bottom: 8px;
    margin-bottom: 19px;
}
.sec_cta_bnr .cta_bnr1 a .number {
    font-size: 36px;
    color: #e96f30;
    font-family: var(--f-en);
    font-weight: 500;
    margin-bottom: 3px;
    position: relative;
    padding-left: 80px;
    width: 100%;
}
.sec_cta_bnr .cta_bnr1 a .number:before {
    position: absolute;
    content: "";
    background: url("../images/icon_tel_cta.png") no-repeat left top/24px;
    padding-left: 40px;
    width: 22px;
    height: 34px;
    left: 50px;
    top: 5px;
}
.sec_cta_bnr .cta_bnr1 a .txt {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    color: var(--txt3);
}
.sec_cta_bnr .cta_bnr2 a {
    background: #efd862;
    justify-content: center;
    padding-bottom: 25px;
}
.sec_cta_bnr .cta_bnr2 a .ttl {
    color: #216630;
    font-size: 28px;
    font-weight: 500;
    border-bottom: 4px #216630 dotted;
    padding-bottom: 8px;
    margin-bottom: 19px;
}
.sec_cta_bnr .cta_bnr2 a .ttl_lg {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    margin-bottom: 17px;
    color: #fff;
    padding-left: 42px;
}
.sec_cta_bnr .cta_bnr2 a .ttl_lg:before {
    position: absolute;
    content: "";
    background: url("../images/icon_mail_cta.png") no-repeat left top/cover;
    width: 32px;
    height: 23px;
    left: 0;
    top: 9px;
}
.sec_cta_bnr .cta_bnr2 a .txt {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: var(--txt3);
    letter-spacing: 0.05em;
}
.sec_cta_bnr .cta_bnr2 a .txt .num {
    margin-right: 5px;
}
/*============= SEC07 ==============*/
.sec07 {
    background: #f0f7f2;
    padding-top: 110px;
    padding-bottom: 90px;
}
.sec07 .inner {
    width: 1320px;
}
.sec07_wrap {
    max-width: 800px;
    margin-bottom: 49px;
}
.sec07 .ttl_h3 {
    margin-bottom: 13px;
}
.sec07 .ttl_h3 .ja {}
.sec07 .ttl_h3 .en {
    position: absolute;
    right: 0;
    bottom: 23px;
}
.sec07 .ttl_h3 .en:before {}
.sec07_txt.idx_txt p {
    color: var(--txt3);
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0em;
}
.sec07_item {
    display: flex;
    flex-wrap: wrap;
}
.sec07_item > div {
    background: #fff;
    width: 400px;
    height: 530px;
    border-radius: 30px;
    border: 10px #e6e1d5 solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 8px;
    margin-bottom: 30px;
}
.sec07_item > div:not(:nth-child(3n+3)) {
    margin-right: 40px;
}
.sec07_item > div .title {
    color: #595959;
    font-size: 32px;
    font-family: var(--f-yumin);
    text-align: center;
    line-height: 1.375;
    margin-bottom: 15px;
}
.sec07_item > div.item6 .title {
    letter-spacing: -0.1em;
}
.sec07_item > div .label {
    width: 180px;
    height: 36px;
    line-height: 31px;
    text-align: center;
    border: 2px #a09370 solid;
    color: #a09370;
    font-weight: 500;
    margin-bottom: 40px;
}
.sec07_item > div .icon {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}
.sec07_item > div:nth-child(n+4) .icon {
    top: -10px;
}
.sec07_item > div.item6 .icon {}
.sec07_item > .item1 {}
.sec07_item > .item2 {}
.sec07_item > .item3 {}
.sec07_item > .item4 {}
.sec07_item > .item5 {}
.sec07_item > .item6 {}
/*============= SEC08 ==============*/
.sec08 {
    position: relative;
    padding: 120px 0 0;
    height: 765px;
    overflow: hidden;
}
.sec08:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg2.jpg") no-repeat center top/1920px;
    width: 1920px;
    height: 100%;
    top: 0;
    left: calc(50% - 960px);
}
.sec08 .inner {
    width: 1460px;
    height: 645px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 60px 60px 0 0;
    padding-top: 71px;
    display: flex;
    flex-direction: column;
}
.sec08 .ttl_h3 {
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}
.sec08 .ttl_h3 .ja {
    margin-bottom: 5px;
}
.sec08 .ttl_h3 .en {
    padding-left: 490px;
}
.sec08 .ttl_h3 .en:before {
    width: 460px
}
.idx_txt.sec08_txt p {
    color: var(--txt3);
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0em;
    text-align: center;
}
.sec08_item {
    display: flex;
    justify-content: center;
    margin-top: auto;
}
.sec08_item > div:not(:last-child) {
    margin-right: 50px;
}
.sec08_item > div {
    width: 616px;
    height: 328px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 4px 4px 16px 0px rgba(230, 225, 213, 0.55);
    padding-top: 64px;
}
.sec08_ttl1 {
    font-family: var(--f-yumin);
    font-size: 32px;
    color: #595959;
    border-bottom: 1px var(--txt3) solid;
    margin-bottom: 6px;
}
.sec08_ttl1 .point {
    color: #a09370;
    font-size: 118.75%;
    position: relative;
    padding-top: 9px;
}
.sec08_ttl1 .point:before {
    position: absolute;
    content: "";
    border-radius: 50%;
    width: 7px;
    height: 7px;
    background: #e96f30;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
}
.sec08_ttl2 {
    font-size: 22px;
    color: var(--txt4);
    font-weight: 500;
    margin-bottom: 32px;
}
/*============= SEC09 ==============*/
.sec09 {
    position: relative;
    padding-top: 116px;
    padding-bottom: 285px;
}
.sec09 .inner {
    width: 1300px
}
.sec09_item {
    display: flex
}
.sec09_item .item1 {
    flex-shrink: 0;
}
.sec09_item .item2 {
        position: absolute;
    right: -330px;
    top: 70px;
}

.ttl_h3_ja {
    font-family: var(--f-yumin);
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
    letter-spacing: 0.05em;
}
.ttl_h3_ja .sm {
    color: #595959;
    font-size: 24px;
    /*    margin-bottom: 33px;*/
    position: relative;
    letter-spacing: 0em;
}
.ttl_h3_ja .sm:before {
    position: absolute;
    content: "";
    width: 397px;
    height: 1px;
    right: 15px;
    top: 16px;
    background: #595959;
}
.ttl_h3_ja .lg {
    color: var(--txt3);
    font-size: 54px;
    line-height: 1.35;
}
.ttl_h3_ja .lg:first-letter {
    color: var(--txt4)
}
.idx_txt.sec09_txt {
    margin-bottom: 25px;
}
.idx_txt.sec09_txt p {
    color: var(--txt3);
    font-size: 20px;
    line-height: 1.8;
        letter-spacing: 0.02em;
}
.sec09_ttl_lg {
    font-size: 27px;
    font-weight: 500;
    color: var(--txt4);
    background-image: radial-gradient(circle, #8cbf9b 1.5px, transparent 1.5px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 6px 3px;
    display: inline;
    line-height: 2;
    padding-bottom: 7px;
}
.sec09_bnr li {
    overflow: hidden;
}
.sec09_bnr li img {
    border-radius: 60px 0 0 0;
}
.sec09_bnr .bnr1 {
    margin-bottom: 36px;
}
.sec09_img {
    margin-bottom: 14px;
}
.sec09_tt {
    font-size: 32px;
    color: #595959;
    font-family: var(--f-yumin);
    padding-left: 15px;
    position: relative;
    line-height: 1.1;
    letter-spacing: 0.01em;
}
.sec09_tt:before {
    position: absolute;
    content: "";
    width: 3px;
    height: calc(100% - 2px);
    left: 0;
    top: 1px;
    background: #a3da9c;
}
.sec09 .ttl_h3_ja .lg:first-line {
    letter-spacing: 0.015em;
}
.sec09 .ttl_h3_ja .lg {
    letter-spacing: 0.05em;
}
/*============= SEC10 ==============*/
.sec10 {
    background: url(../images/par3.png) repeat center top 16px/80px;
    position: relative;
    padding-top: 111px;
    padding-bottom: 110px;
}
.sec10 .inner {
    width: 100%;
    padding: 0;
}
.sec10 .ttl_h3 {
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}
.sec10 .ttl_h3 .ja {
    margin-bottom: 5px;
}
.sec10 .ttl_h3 .en {
    padding-left: 255px;
}
.sec10 .ttl_h3 .en:before {
    width: 226px;
}
.idx_txt.sec10_txt p {
    color: var(--txt3);
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0em;
    text-align: center;
}
.sec10_item .item1 {
    background: #fff;
    border-radius: 20px;
    width: 540px;
    margin: 0 30px;
    box-shadow: 2px 1px 16px 0px rgba(6, 48, 67, 0.10);
    padding: 30px 30px 35px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.sec10 .slick-list {
    padding: 10px 0;
}
.sec10_item .item1 .wrap {
    display: flex;
}
.sec10_item .item1 .sec10_img {
    flex-shrink: 0;
    margin-right: 22px;
    margin-bottom: 0;
    width: 111px;
    height: 111px;
    border-radius: 50%;
}
.sec10_item .item1 .sec10_img img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
	    object-fit: cover;
}
.sec10_item .item1 .sec10_info {
    position: relative;
    top: -4px;
    width: calc(100% - 120px);
}
.sec10_item .item1 .sec10_ttl {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.sec10_item .item1 .sec10_ttl .sm {
    font-weight: 500;
    color: #008c32;
    margin-bottom: 3px;
}
.sec10_item .item1 .sec10_ttl .lg {
    font-size: 28px;
    font-weight: 500;
    color: #595959;
    line-height: 1.4;
    width: 100%;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.sec10_item .item1 .sec10_sub_txt {
    padding-left: 135px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin-top: auto;
}
.sec10_item .item1 .sec10_sub_txt p {
    font-size: 16px;
    line-height: 1.75;
}
.sec10_wrap {
    margin-bottom: 43px;
}
.sec10_item {
    position: relative;
/*    left: calc(50% - 1170px);
    width: 3000px;*/
    margin-bottom: 50px;
    height: 300px;
}
.sec10_item.slick-initialized {
    height: auto;
}
.box_btn {
    display: flex;
    justify-content: center;
}
.box_btn .btn a {
    background: url(../images/arrow_white.png) no-repeat right 20px center / 39px var(--scolor);
}
.box_btn .btn:not(:last-child) {
    margin-right: 45px;
}
/*============= SEC11 ==============*/
.sec11 {
    padding: 115px 0 89px;
}
.sec11 .inner {
    width: 1310px;
}
.sec11 .ttl_h3_ja .sm {}
.sec11 .ttl_h3_ja .sm:before {
    width: 575px;
}
.sec11 .ttl_h3_ja .lg {
    letter-spacing: -0.02em;
    line-height: 1.4;
}
.sec11_wrap {
    max-width: 850px;
}
.sec11_ttl_green {
    line-height: 1.95;
}
.idx_txt.sec11_txt {
    margin-bottom: 52px;
    margin-top: 30px;
}
.idx_txt.sec11_txt p {
    color: var(--txt3);
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0em;
    margin-bottom: 1.2em;
}
.sec11 .ttl_h3_ja {
    margin-bottom: 25px;
}
.sec11_img {
	float: right;
	margin-left: 50px;
	position: relative;
	top: -35px;
}
@media screen and (min-width: 751px) {}
/*==========================================================
                        F O O T E R
==========================================================*/
.idx_txt_ttl {
    font-size: 28px;
    line-height: 1.31;
    color: var(--txt3);
    font-family: var(--f-yumin);
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    position: relative;
}
.idx_txt p {
    letter-spacing: 0.02em;
    line-height: 1.66;
}
footer {
    position: relative;
    z-index: 3;
    background-color: var(--mcolor);
}
.ft_top {
    padding-top: 101px;
    padding-bottom: 30px;
}
.ft_top .inner {
    display: flex;
    color: #fff;
    width: 1340px;
}
.ft_info {
    width: 360px;
    flex-shrink: 0;
}
.ft_logo {
    margin-bottom: 18px;
}
.ft_info_txt {
    color: #fff;
}
.ft_add, .ft_tel, .ft_hour {
    font-size: 17px;
    letter-spacing: 0.05em;
    margin-bottom: 1px;
    line-height: 1.5;
}
.ft_add.mt01 {
	margin-top: 25px;
}
.ft_tel, .ft_hour {
    display: flex;
}
.ft_tel span {
    width: 76px;
}
.ft_hour span {
    width: 78px;
}
.ft_label {
    background: #579366;
    color: #fff;
    text-align: center;
    font-size: 16px;
    width: 295px;
    /*height: 34px;*/
    line-height: 34px;
    margin-top: 16px;
    letter-spacing: -0.02em;
    padding-left: 8px;
}
.ft_link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    top: 3px;
}
.ft_link .big {
    margin-bottom: 5px;
}
.ft_link .big.mt1 {
    margin-top: 25px;
}
.ft_link .big p {
    font-size: 20px;
    position: relative;
    padding-left: 15px;
    font-weight: 300;
}
.ft_link .big p a {
    position: relative;
    margin-left: -15px;
    padding-left: 15px;
}
.ft_link .big p:before {
    position: absolute;
    content: "";
    background: #efd862;
    border-radius: 50%;
    left: 0;
    top: 15px;
    width: 9px;
    height: 9px;
}
.ft_link .big p a {
    color: #fff;
}
.ft_link ul {
    flex-shrink: 0;
}
.ft_link ul > li {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 3px;
}
.ft_link ul > li:not(.big) {
    margin-left: 20px;
}
.ft_link ul > li > a {
    color: #fff;
}
.ft_link ul.item1 {
    width: 120px;
}
.ft_link ul.item2 {
    width: 285px;
}
.ft_link ul.item3 {
    width: 320px;
}
.ft_link ul.item4 {
    width: 285px;
    position: relative;
    margin-left: 122px;
    margin-top: 23px;
}
.ft_link ul.item5 {
    width: 320px;
}
.ft_link ul.item5 {
    position: relative;
    margin-left: 0;
    margin-top: 20px;
}
.ft_link ul.item6 {
    margin-top: 20px;
}
address {
    padding: 18px 20px 78px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.075em;
}
/* BACK TO TOP */
.to_top {
    position: fixed;
    z-index: 9;
    width: 60px;
    height: 60px;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    transition: all .2s;
    opacity: 0;
    visibility: hidden;
}
.to_top img {
    border: 1px rgba(255, 255, 255, 0.5) solid;
    border-radius: 50%;
}
.to_top.show, .contact_fix.show {
    transform: scale(1);
    opacity: 1;
    visibility: visible
}
.contact_fix {
    position: fixed;
    right: 0;
    top: 184px;
    transition: all .2s;
    opacity: 0;
    visibility: hidden;
}
.contact_fix li {
    margin-bottom: 5px;
    width: 56px;
}
.contact_fix li a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_fix_tel a > span > span {
    text-orientation: mixed;
    position: relative;
    left: 2px;
    margin: 3px 0;
    font-weight: 300;
}
.contact_fix_tel a {
    background: #216630;
    height: 186px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--f-en);
    display: flex;
    align-items: center;
    letter-spacing: -0.4em;
    justify-content: center;
}
.contact_fix_tel a > span {
    background: url("../images/icon_tel_fix.png") no-repeat center top/14px;
    padding-top: 15px;
}
.contact_fix_mail a {
    background: #efd862;
    height: 161px;
    color: var(--txt2);
    line-height: 1.2;
    padding-top: 10px;
    font-size: 18px;
    font-family: var(--f-yumin);
}
.contact_fix_mail a span {
    background: url("../images/icon_mail_fix.png") no-repeat center top/23px;
    padding-top: 28px;
}
.contact_fix_line a {
    background: #2bac38;
    color: #fff;
    height: 135px;
    font-size: 18px;
    font-family: var(--f-yumin);
    font-weight: 300;
}
.contact_fix_line a span {
    background: url("../images/icon_line_fix.png") no-repeat center top/28px;
    padding-top: 32px;
}
/* FIREFOX ONLY */
@-moz-document url-prefix() {
.contact_fix_tel a > span > span {
  position: relative;
  left: 1px;
  top: -3px;
}
}
/* Safari 10.1+ (which is the latest version of Safari at this time) */
@media not all and (min-resolution: 0.001dpcm) {}
.sec10_item .item1 a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9;
}