@charset "UTF-8";
@import "base.css";
@import "fonts.css";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Maru+Gothic:wght@400;700&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: 500;
}
*, ::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.66em;
    letter-spacing: 0.02em;
}
p {
    margin: 0 0 1.5em;
}
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: #000033;
    --mcolor: #f66209;
    --scolor: #f1851b;
    --container: 1230px;
    --gray: #e9e9e9;
    --blue: #003b7d;
    --red: red;
    --f-main: "Zen Kaku Gothic New", sans-serif;
    --f-en: "Zen Maru Gothic", sans-serif;
}
#wrapper {
    min-width: 1200px;
    overflow: hidden;
    margin: 0 auto;
    background: #ffefe6;
}
.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: #000
}
.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;
}
@-webkit-keyframes scrolltop {
    0% {
        transform: translateY(-220px);
        opacity: 0;
        transition: ease-in-out;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
body.active {
	overflow: hidden;
}
h1 {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 3px 0 0;
}
.h_box {
    width: 100%;
    position: fixed;
    background-color: #fff;
    border-radius: 0 0px 32px 32px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    /* transition: all 0.3s;*/
}
.is_scroll .h_box {
    border-radius: 32px;
    width: calc(100% - 40px);
    left: 20px !important;
    margin-top: 20px;
}
.h_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 0px 0 32px;
}
.h_left {
    flex-shrink: 0;
    transition: all 0.3s;
}
.h_contact {
    display: flex;
    align-items: center;
}
.h_contact > p {
    margin-bottom: 0;
}
.h_contact > p:not(:last-child) {
    margin-right: 26px;
}
.h_contact_tel {
    padding-bottom: 5px;
}
.h_contact_mail a {
    color: #FFF;
    text-align: center;
    display: flex;
    align-items: center;
    width: 226px;
    height: 172px;
    position: relative;
    border-radius: 0 0 32px 0;
    flex-direction: column;
    font-size: 28px;
    font-weight: bold;
    background: var(--scolor);
    transition: none;
}
.h_contact_mail a .lg {
    background: url("../images/icon_mail.png") no-repeat center top 20px/52px;
    padding-top: 75px;
}
.h_contact_mail a .sm {
    position: relative;
    z-index: 2;
    font-size: 22px;
    background: #fff;
    color: #000033;
    width: 171px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-top: 13px;
}
.h_contact_tel a {
    font-size: 36px;
    color: #333333;
    font-weight: bold;
    position: relative;
    line-height: 1;
    display: block;
    background: url("../images/icon_tel.png") no-repeat left top 10px/23px;
    padding-left: 30px;
    margin-bottom: 15px;
    pointer-events: none;
}
.h_contact_tel .time {
    font-size: 16px;
    display: flex;
    line-height: 1.6;
    color: #333;
}
.h_contact_tel .time.bt {
    margin-top: 7px;
    white-space: nowrap;
}
.h_contact_tel .time .tt {
    width: 92px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px #f66209 solid;
    margin-right: 10px;
    padding-top: 1px;
}
/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
    position: relative;
    z-index: 2;
    padding-top: 210px;
}
.mv {
    position: relative;
    padding: 0;
}
.mv .inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    right: 0;
}
.mv_bg {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: all .3s;
}
.mv_bg.init {
    opacity: 1
}
.mv_slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}
.mv_bg, .mv_slider_ite {
    width: 100%;
    height: 784px
}
.mv_slider_ite .bg {
    width: calc(100% - 60px);
    height: 100%;
    border-radius: 0px 48px 48px 0;
    overflow: hidden;
}
.mv_slider_ite .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv_txt {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
    /* padding-top: 65px; */
}
.mv_txt h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 43px;
}
.mv_tt1, .mv_txt h2 {
    text-shadow: rgb(255, 255, 255) 8px 0px 0px, rgb(255, 255, 255) 7.93758px 0.997398px 0px, rgb(255, 255, 255) 7.7513px 1.97923px 0px, rgb(255, 255, 255) 7.44406px 2.93018px 0px, rgb(255, 255, 255) 7.02066px 3.8354px 0px, rgb(255, 255, 255) 6.4877px 4.68078px 0px, rgb(255, 255, 255) 5.85351px 5.45311px 0px, rgb(255, 255, 255) 5.12797px 6.14035px 0px, rgb(255, 255, 255) 4.32242px 6.73177px 0px, rgb(255, 255, 255) 3.44941px 7.21814px 0px, rgb(255, 255, 255) 2.52258px 7.59188px 0px, rgb(255, 255, 255) 1.55638px 7.84714px 0px, rgb(255, 255, 255) 0.565898px 7.97996px 0px, rgb(255, 255, 255) -0.433417px 7.98825px 0px, rgb(255, 255, 255) -1.42597px 7.87189px 0px, rgb(255, 255, 255) -2.39627px 7.63269px 0px, rgb(255, 255, 255) -3.32917px 7.27438px 0px, rgb(255, 255, 255) -4.21013px 6.80256px 0px, rgb(255, 255, 255) -5.02539px 6.22459px 0px, rgb(255, 255, 255) -5.76223px 5.54948px 0px, rgb(255, 255, 255) -6.40915px 4.78778px 0px, rgb(255, 255, 255) -6.95606px 3.95136px 0px, rgb(255, 255, 255) -7.39442px 3.05329px 0px, rgb(255, 255, 255) -7.71739px 2.10757px 0px, rgb(255, 255, 255) -7.91994px 1.12896px 0px, rgb(255, 255, 255) -7.9989px 0.132735px 0px, rgb(255, 255, 255) -7.95304px -0.865561px 0px, rgb(255, 255, 255) -7.78307px -1.85035px 0px, rgb(255, 255, 255) -7.49165px -2.80627px 0px, rgb(255, 255, 255) -7.08333px -3.71839px 0px, rgb(255, 255, 255) -6.56448px -4.57249px 0px, rgb(255, 255, 255) -5.94318px -5.35524px 0px, rgb(255, 255, 255) -5.22915px -6.05442px 0px, rgb(255, 255, 255) -4.43352px -6.65912px 0px, rgb(255, 255, 255) -3.5687px -7.15991px 0px, rgb(255, 255, 255) -2.6482px -7.54898px 0px, rgb(255, 255, 255) -1.68637px -7.82024px 0px, rgb(255, 255, 255) -0.698222px -7.96947px 0px, rgb(255, 255, 255) 0.300817px -7.99434px 0px, rgb(255, 255, 255) 1.29516px -7.89446px 0px, rgb(255, 255, 255) 2.2693px -7.67139px 0px, rgb(255, 255, 255) 3.20802px -7.32862px 0px, rgb(255, 255, 255) 4.09668px -6.87148px 0px, rgb(255, 255, 255) 4.92142px -6.30711px 0px, rgb(255, 255, 255) 5.66936px -5.64432px 0px, rgb(255, 255, 255) 6.32883px -4.89346px 0px, rgb(255, 255, 255) 6.88954px -4.06623px 0px, rgb(255, 255, 255) 7.34274px -3.17555px 0px, rgb(255, 255, 255) 7.68136px -2.23532px 0px, rgb(255, 255, 255) 7.90012px -1.26021px 0px, rgb(255, 255, 255) 7.9956px -0.265434px 0px;
    font-weight: bold;
    text-align: center;
}
.mv_txt h2 .black {
    color: #000033;
    font-size: 54px;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.mv_txt h2 .black .sm,
.mv_txt h2 .org .sm,
.mv_tt1 .sm {
    font-size: 77%;
    font-weight: 700;
}
.mv_tt1 .sm {
    position: relative;
    top: 3px;
	margin-right: 6px;
}
.mv_tt1 .mid {
    font-size: 87%;
    position: relative;
    top: -7px;
}
.mv_txt h2 .org {
    font-size: 54px;
    color: var(--mcolor);
    font-weight: 900;
    letter-spacing: 0.02em;
}
.mv_txt h2 .org .sm {
    color: var(--txt);
    margin-left: 10px;
}
.mv_map {
    position: absolute;
    right: -8px;
    bottom: -167px;
}
.mv_txt h2 > span, .mv_tt1 {
    position: relative;
    padding: 0 28px;
}
.mv_txt h2 > span:before, .mv_tt1:before {
    position: absolute;
    content: "";
    background-color: rgba(255, 255, 255, 1);
    border-radius: 20px;
    height: 56px;
    width: 100%;
    left: 0;
    right: 0;
    bottom: -5px;
    margin: 0 auto;
    z-index: -1;
}
.mv_txt h2 > span.black:before {
    bottom: 0;
}
.mv_tt1:before {
    height: 60px;
    bottom: 7px;
}
.mv_logo {
    margin-bottom: 15px;
}
.mv_tt1 {
    font-size: 62px;
    font-weight: bold;
    padding: 0 28px 0 17px;
}
.mv_bnr {
	position: absolute;
	left: 380px;
	bottom: -15px;
	width: 270px;
	height: 250px;
}
.mv_bnr a {
	display: flex;
	flex-direction: column;
	align-items: center;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}
.mv_bnr .tt {
	background-color: rgba(255,255,255,1);
	padding: 5px 9px;
	text-align: center;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0em;
}
.mv_bnr .tt span {
	color: var(--mcolor);
}
.mv_bnr .round {
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	text-align: center;
	border-radius: 50%;
	position: relative;
	left: -25px;
	padding-right: 10px;
	text-align: center;
    font-size: 20px;
    font-weight: bold;
}
.mv_bnr .round:before {
	position: absolute;
	content: "";
	background: url("../images/mv_img1.png") no-repeat right top/68px;
	width: 68px;
	height: 132px;
	right: -45px;
	top: -5px;
}
/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl_h3 {
    text-align: center;
    font-weight: bold;
}
.ttl_h3:not(:last-child) {
    margin-bottom: 30px;
}
.ttl_h3 span {
    display: block;
}
.ttl_h3 .ja {
    font-size: 32px;
}
.ttl_h3 .en {
    font-size: 16px;
}
/* DEFAUTL NAME BUTTON */
.btn a {
    width: 400px;
    height: 83px;
    border-radius: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../images/arrow_w.png) no-repeat right 27px center / 20px var(--scolor);
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    box-shadow: 0px 3px 4px 0px rgba(39, 28, 3, 0.27);
    text-align: center;
}
.btn.lg a, .btn.btn_w a {
    width: 520px;
}
.btn.btn_sm a {
    border-radius: 29px;
    background: url(../images/arrow_org.png) no-repeat right 20px center / 20px #fff;
    width: 200px;
    height: 57px;
    color: var(--txt);
    font-size: 18px;
    padding-right: 32px;
}
.btn.btn_w a {
    background: url(../images/arrow_org.png) no-repeat right 27px center / 20px #fff;
    color: var(--txt);
}
.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 15px;
}
/*============= SEC01 ==============*/
.sec01 {
    padding-top: 85px;
    padding-bottom: 125px;
    position: relative;
}
.sec01 .inner {
    width: 1670px;
}
.sec01:before {
    position: absolute;
    content: "";
    background: url("../images/idx_blur.png") no-repeat left top/cover;
    width: 581px;
    height: 225px;
    left: -8px;
    top: 64px;
}
.sec01_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 34px;
}
.sec01_ttl .lg, .sec01_ttl .mid {
    font-size: 48px;
    letter-spacing: 0.05em;
}
.sec01_ttl .lg {
    position: relative;
}
.sec01_ttl .lg:before {
    background: url("../images/brush1.png") no-repeat left top/38px, url("../images/brush2.png") no-repeat right top/47px;
    width: 429px;
    height: 55px;
    margin: 0 auto;
    left: -61px;
    right: 0;
    top: -5px;
    pointer-events: none;
    position: absolute;
    content: "";
}
.sec01_ttl .mid .org {
    font-size: 120%;
    color: var(--mcolor);
    position: relative;
    letter-spacing: 0.05em;
}
.sec01_ttl .mid .org:before {
    position: absolute;
    content: "";
    border-radius: 10px;
    background: #fff;
    width: 198px;
    height: 20px;
    left: -10px;
    right: 0;
    bottom: 6px;
    margin: 0 auto;
    z-index: -1;
}
.sec01_txt {
    text-align: center;
    margin-bottom: 53px;
}
.sec01_txt p {
    line-height: 1.77;
}
.sec01_item {
    display: flex;
    justify-content: space-between;
}
.sec01_item > div {
    background: #fff;
    width: 380px;
    height: 170px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0px 0px 40px 0px rgba(97, 79, 36, 0.07);
}
.sec01_item > div:after {
    position: absolute;
    content: "";
}
.sec01_item > div .arrow {
    filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.02));
    position: absolute;
    bottom: -28px;
    left: 200px;
}
.sec01_item > div .arrow:before {
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    width: 39px;
    height: 32px;
    background: #fff;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    content: "";
    bottom: 0;
}
.sec01_item > .item1:after {
    background: url("../images/idx_icon1.png") no-repeat center top/120px;
    width: 120px;
    height: 185px;
    right: -23px;
    bottom: -75px;
}
.sec01_item > .item2:after {
    background: url("../images/idx_icon2.png") no-repeat center top/140px;
    width: 140px;
    height: 190px;
    right: -23px;
    bottom: -70px;
}
.sec01_item > .item3:after {
    background: url("../images/idx_icon3.png") no-repeat center top/142px;
    width: 142px;
    height: 185px;
    right: -23px;
    bottom: -66px;
}
.sec01_item > .item4:after {
    background: url("../images/idx_icon4.png") no-repeat center top/118px;
    width: 118px;
    height: 156px;
    right: -23px;
    bottom: -23px;
}
.sec01_item > div .tt {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.7;
    padding-left: 40px;
}
.sec01_item > .item3 .tt {
    padding-bottom: 10px;
}
/*============= SEC02 ==============*/
.sec02 {
    background: #f1af1b;
    padding-top: 105px;
    position: relative;
    padding-bottom: 100px;
}
.sec02 .inner {
    width: 1410px;
    z-index: 2;
}
.sec02:before, .sec02:after {
    position: absolute;
    content: "";
}
.sec02:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 288px solid transparent;
    border-left: 288px solid transparent;
    border-top: 97px solid #ffefe6;
    border-bottom: 0;
    left: 0;
    right: 0;
    top: -1px;
    margin: 0 auto;
}
.sec02:after {
    background: url("../images/brush3.png") no-repeat left 68px top 182px, url("../images/brush4.png") no-repeat right 33px top 190px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    left: 0;
    top: 0;
}
.sec02_tt1 {
    background: #fff;
    width: 100%;
    height: 176px;
    border-radius: 82px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 62px;
    font-weight: bold;
    padding-bottom: 10px;
    padding-left: 20px;
    margin-bottom: 58px;
    box-shadow: 0px 0px 40px 0px rgba(97, 79, 36, 0.07);
}
.sec02_logo {
    position: relative;
    top: -19px;
    margin: 0 22px 0 10px;
}
.sec02_tt2 {
    color: #fff;
    font-size: 52px;
    font-weight: bold;
    line-height: 1.38;
    display: table;
    margin: 0 auto;
    position: relative;
    left: 28px;
}
.sec02_tt2:before, .sec02_tt2:after {
    position: absolute;
    content: "";
}
.sec02_tt2:before {
    background: url("../images/idx_icon5.png") no-repeat center top;
    width: 135px;
    height: 230px;
    left: -215px;
    top: 14px;
}
.sec02_tt2:after {
    background: url("../images/idx_icon6.png") no-repeat center top;
    width: 142px;
    height: 222px;
    right: -191px;
    top: 22px;
}
/*============= SEC03 ==============*/
.sec03 {
    background: #fff;
    padding-bottom: 100px;
}
.sec03 .inner {
    width: 1630px;
}
.sec03_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: -54px auto 60px;
}
.sec03_ttl .sm {
    font-size: 32px;
    font-weight: bold;
    width: 780px;
    height: 94px;
    border-radius: 24px;
    background: #fff;
    display: flex;
    align-items: center;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
    position: relative;
    padding-left: 7px;
    box-shadow: 0px 0px 40px 0px rgba(97, 79, 36, 0.07);
}
.sec03_ttl .sm:before {
    position: absolute;
    content: "";
    background: url("../images/arrow_line.png") no-repeat center top;
    width: 688px;
    height: 41px;
    left: 7px;
    right: 0;
    bottom: -28px;
    margin: 0 auto;
}
.sec03_ttl .sm .skew {
    background: url("../images/brush5_l.png") no-repeat left top 23px/48px, url("../images/brush5_r.png") no-repeat right 5px top 23px/48px;
    padding: 26px 60px 20px;
    margin: 0 auto;
}
.sec03_ttl .lg {}
.sec03_ttl .lg .mid {
    font-size: 58px;
    font-weight: bold;
    color: var(--mcolor);
    position: relative;
    letter-spacing: 0.05em;
    top: 8px;
    z-index: 1;
}
.sec03_ttl .lg .mid:before {
    position: absolute;
    content: "";
    width: 105%;
    height: 20px;
    background: #ffef6c;
    border-radius: 10px;
    left: -10px;
    right: 0;
    bottom: 2px;
    margin: 0 auto;
    z-index: -1;
}
.sec03_ttl .lg .mid .num {
    font-size: 134%;
}
.sec03_ttl .lg .sec03_logo {
    margin-right: 34px;
}
.sec03_item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 19px;
}
.sec03_item > div {
    width: 510px;
    position: relative;
    cursor: pointer;
}
.sec03_item > div:not(:nth-child(3)) {
    margin-right: 31px;
}
.sec03_item > div:last-child {
    margin-right: 0;
}
.sec03_item > div .number {
    position: absolute;
    left: 6px;
    top: -40px;
    background: url("../images/icon_number.png") no-repeat left top/100px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: bold;
    font-family: var(--f-en);
    color: #fff;
    letter-spacing: 0.02em;
    padding-bottom: 8px;
}
.sec03_item > div .img {
    margin-bottom: -30px;
}
.sec03_item > div .img img {
    border-radius: 10px;
}
.sec03_item > div .tt {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.5;
    position: relative;
}
.sec03_item > div .txt {
    max-width: 423px;
    margin: 0 auto 25px;
}
/*============= SEC04 ==============*/
.sec04 {
    padding-top: 154px;
    padding-bottom: 186px;
}
.sec04 .inner {
    padding: 0 0 0 79px;
    width: 100%;
    max-width: 1920px;
}
.sec04 .inner:before {
    position: absolute;
    content: "";
    width: calc(100% - 12px);
    left: -80px;
    height: 778px;
    background: #ffdfcc;
    border-radius: 0px 386px 386px 0;
    top: 38px;
    z-index: -1;
}
.sec04_slide .slick-slide {
    width: 252px;
	height: 378px;
    margin: 0 8px;
	cursor: pointer;
}
.sec04_slide .slick-slide p, .sec04_slide .slick-slide p a, .sec04_slide .slick-slide p a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.sec04_slide {
    height: 378px;
}
.sec04_slide.slick-initialized {
    height: auto;
}
.sec04_ttl {
    display: table;
    margin: 0 auto 63px;
    width: 525px;
    height: 84px;
    background: var(--mcolor);
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-radius: 18px;
    padding-top: 8px;
    text-align: center;
    position: relative;
    left: -40px;
    padding-left: 15px;
    padding-bottom: 2px;
}
.sec04_ttl:before {
    background: url("../images/idx_icon7.png") no-repeat center top/110px;
    width: 110px;
    height: 177px;
    left: -66px;
    top: -55px;
}
.sec04_ttl:before, .sec04_ttl:after {
    position: absolute;
    content: "";
}
.sec04_ttl:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: #f66209 transparent transparent transparent;
    left: -6px;
    right: 0;
    bottom: -18px;
    margin: 0 auto;
}
.sec04_slide .slick-dots li {
    margin: 0 5px;
}
.slick-dots li {
    width: 10px;
    height: 10px;
    transition: all 0.3s;
    background: #ca9c6e;
    border-radius: 50%;
}
.sec04_slide .slick-dots li button {
    width: 100%;
    height: 100%;
}
.slick-dots li button::before {
    display: none;
}
.sec04_slide .slick-dots {
    bottom: -42px;
    left: -10px;
}
.sec04_slide .slick-dots li.slick-active {
    width: 30px;
    background: #f1851b;
    border-radius: 5px;
    pointer-events: none;
}
.sec04_slide .slick-prev, .sec04_slide .slick-next {
    width: 58px;
    height: 58px;
    z-index: 9;
}
.sec04_slide .slick-prev {
    background: url("../images/arrow_prev.png") no-repeat center top/58px;
    left: -35px;
}
.sec04_slide .slick-next {
    background: url("../images/arrow_next.png") no-repeat center top/58px;
    right: 15px;
}
.slick-prev::before, .slick-next::before {
    display: none;
}
.btn_ytb {
    width: 780px;
    height: 137px;
    background: #fff;
    border-radius: 69px;
    margin: 90px auto 0;
    box-shadow: 0px 2px 6px 0px rgba(39, 28, 3, 0.27);
}
.btn_ytb a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 116px;
    background: url("../images/arrow_round.png") no-repeat right 32px center/60px;
}
.btn_ytb a .img {
    flex-shrink: 0;
    margin-right: 40px;
}
.btn_ytb a .tt {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.7;
    color: #333333;
    text-align: center;
}
.btn_ytb a .tt .lg {
    font-size: 120%;
}
/*============= SEC05 ==============*/
.sec_cta {
    position: relative;
}
.sec_cta .inner {
    width: 100%;
    padding: 0;
    max-width: 1920px;
}
.sec_cta:before {
    position: absolute;
    content: "";
    width: calc(100% - 185px);
    height: 399px;
    border-radius: 0 200px 200px 0;
    background: #f1af1b;
    left: 0;
    top: 90px;
}
.sec_cta_box {
    width: 1580px;
    border: 10px #f1af1b solid;
    height: 443px;
    border-radius: 200px 0 0 200px;
    margin-left: auto;
    margin-right: -10px;
    padding-left: 194px;
    padding-top: 83px;
    position: relative;
    background: url("../images/brush9.png")#fff no-repeat right 15px top 36px;
}
.sec_cta_box:before {
    position: absolute;
    content: "";
    background: url("../images/idx_icon8.png") no-repeat center top/246px;
    width: 246px;
    height: 435px;
    left: -112px;
    top: -3px;
}
.sec_cta_box .tt {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    position: relative;
    margin-bottom: 50px;
}
.sec_cta_box .tt:before {
    position: absolute;
    content: "";
    background: url("../images/line.png") no-repeat left top;
    width: 1100px;
    height: 47px;
    left: -54px;
    bottom: -79px;
}
.sec_cta_box .tt .lg {
    font-size: 42px;
    margin-bottom: 38px;
    letter-spacing: 0.05em;
}
.sec_cta_box .tt .lg .org {
    color: var(--mcolor);
}
.sec_cta_box .tt .sm {
    font-size: 32px;
    letter-spacing: 0.05em;
    position: relative;
    left: -4px;
}
.sec_cta_con {
    display: flex;
    align-items: center;
    position: relative;
    left: -40px;
}
.sec_cta_box .tt {}
.sec_cta_con {}
.sec_cta_con .cta_tel {
    display: flex;
    align-items: center;
    margin-right: 40px;
}
.sec_cta_con .cta_tel .title {
    background: url("../images/round2.png") no-repeat center;
    width: 164px;
    height: 164px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.25;
    flex-shrink: 0;
    margin-right: 23px;
    letter-spacing: 0.05em;
}
.sec_cta_con .cta_tel a {
    font-size: 56px;
    font-weight: 900;
    background: url("../images/icon_tel_cta.png") no-repeat left top 5px/40px;
    padding: 5px 0 10px 48px;
    letter-spacing: 0.02em;
}
.sec_cta_con .cta_contact {
    position: relative;
    top: -11px;
}
.sec_cta_con .cta_contact a {
    width: 473px;
    height: 91px;
    background: var(--scolor);
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 46px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.sec_cta_con .cta_contact a span {
    background: url("../images/icon_mail_cta.png") no-repeat left 5px center/40px;
    padding-left: 60px;
    letter-spacing: 0.02em;
}
/*============= SEC06 ==============*/
.sec06 {
    padding-top: 146px;
    padding-bottom: 243px;
}
.sec06 .inner {
    width: 100%;
}
.sec06_img {
    display: flex;
    justify-content: center;
}
.sec06_img {
    padding: 0 10px;
    position: relative;
    margin-bottom: 87px;
}
.sec06_img:before, .sec06_img:after {
    position: absolute;
    content: "";
    background: #fdd6bf;
}
.sec06_img:before {
    width: 100%;
    left: 0;
    right: 0;
    bottom: -32px;
    height: 401px;
    z-index: -1;
}
.sec06_img:after {
    width: 64px;
    height: 30px;
    border-radius: 0 0 8px 8px;
    bottom: -62px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.sec06_img li img {
    border-radius: 48px;
    box-shadow: 0px 0px 40px 0px rgba(97, 79, 36, 0.07);
}
.sec06_ttl {
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 0.05em;
    display: table;
    margin: 0 auto;
    position: relative;
    padding-left: 4px;
    margin-bottom: 37px;
}
.sec06_ttl:before {
    position: absolute;
    content: "";
    background: url("../images/idx_icon9.png") no-repeat right top/86px;
    width: 86px;
    height: 160px;
    right: -112px;
    top: -66px;
}
.sec06_txt {
    text-align: center;
    margin-bottom: 53px;
}
.sec06_txt p {
    line-height: 1.77;
}
.sec06_item {
    display: flex;
    justify-content: center;
    margin-bottom: 56px;
}
.sec06_item > div {
    background: #fff;
    border-radius: 10px;
    width: 510px;
    height: 130px;
}
.sec06_item > div .tt, .sec06_item > div .tt a {
    width: 100%;
    height: 100%;
}
.sec06_item > div .tt a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    position: relative;
}
.sec06_item > div .tt a:before, .sec06_item > div .tt a:after {
    position: absolute;
    content: "";
}
.sec06_item > div .tt a:before {
    background: url("../images/flag_pc.png") no-repeat center top;
    width: 32px;
    height: 47px;
    left: 18px;
    top: -9px;
}
.sec06_item > div .tt a:after {
    background: url("../images/arrow_round_org.png") no-repeat center/58px;
    width: 58px;
    height: 58px;
    right: -10px;
    bottom: -12px;
}
.sec06_item > div:not(:last-child) {
    margin-right: 25px;
}
/*============= SEC07 ==============*/
.sec07 {
    background: #ffddc8;
    position: relative;
    padding-bottom: 50px;
}
.sec07:before {
    position: absolute;
    content: "";
    background: url("../images/brush6.png") no-repeat center top;
    width: 1920px;
    height: 81px;
    left: calc(50% - 960px);
    top: -65px;
}
.sec07 .inner {
    width: 100%;
}
.sec07_box {
    position: relative;
    background: #fff;
    border-radius: 72px 72px 0 0px;
    height: 476px;
    top: -145px;
    padding-top: 131px;
    padding-left: 100px;
    width: 1420px;
    margin: 0 auto -145px;
}
.sec07_box:after, .sec07_box:before {
    position: absolute;
    content: "";
}
.sec07_box:before {
    background: url("../images/idx_icon10.png") no-repeat right top/176px;
    width: 176px;
    height: 330px;
    right: 100px;
    top: 72px;
}
.sec07_box:after {
    background: url("../images/arrow_down_lg.png") no-repeat center top;
    width: 363px;
    height: 84px;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
}
.sec07_ttl {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 37px;
    margin-left: 15px;
}
.sec07_ttl .point {
    color: var(--mcolor);
    position: relative;
    z-index: 1;
    letter-spacing: 0.25em;
}
.sec07_ttl .point:before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    left: -17px;
    top: -3px;
    z-index: -1;
    background: #ffefe6;
    border-radius: 50%;
}
.sec07_ttl .point.mr1 {
    margin-right: 12px;
}
.sec07_txt {
    padding-right: 312px;
}
.sec07_txt p {
    line-height: 1.77;
}
.sec07_item {
    display: flex;
    justify-content: center;
    /* margin-left: 40px; */
    position: relative;
    top: -50px;
}
.sec07_item > div {
    width: 880px;
    height: 580px;
    border-radius: 32px;
    position: relative;
    color: #fff;
    padding: 10px 10px 48px 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.sec07_item > .item1 .btn a {
    left: -25px;
    position: relative;
}
.sec07_item > .item2 .btn a {
    left: -62px;
    position: relative;
}
.sec07_item > .item2 .btn a {}
.sec07_item > .item1 {
    background: url("../images/idx_img9.png") no-repeat center top/cover;
    margin-right: -40px;
    z-index: 1;
}
.sec07_item > .item1 .tt2, .sec07_item > .item1 .txt {
    padding-left: 165px;
}
.sec07_item > .item2 {
    background: url("../images/idx_img10.png") no-repeat center top/cover;
    padding-right: 149px;
    margin-top: 51px;
    padding-left: 90px;
}
.sec07_item > div .tt1 {
    font-size: 36px;
    font-weight: 900;
    width: 100px;
    height: 560px;
    border-radius: 24px;
    background-color: rgba(0, 0, 51, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
	-webkit-writing-mode: vertical-rl;
        -moz-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        -webkit-text-orientation: mixed;
        -moz-text-orientation: mixed;
        -ms-text-orientation: mixed;
        text-orientation: upright;
}
.sec07_item > .item1 .tt1 {
    left: 10px;
}
.sec07_item > .item2 .tt1 {
    right: 10px;
}
.sec07_item > div .tt2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 11px;
    letter-spacing: 0.05em;
}
.sec07_item > div .txt {
    font-size: 18px;
    line-height: 1.77;
    margin-bottom: 35px;
    max-width: 800px;
    font-weight: 400;
}
/*============= SEC08 ==============*/
.sec08 {
    padding-top: 100px;
    padding-bottom: 68px;
}
.sec08 .inner {
    width: 100%;
    padding: 0;
    max-width: 1920px;
}
.sec08 .inner:after {
    background: url("../images/brush10.png") no-repeat center top;
    width: 926px;
    height: 81px;
    left: -7px;
    bottom: -35px;
    position: absolute;
    content: "";
}
.sec08_item {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.sec08_item:before, .sec08_item:after {
    position: absolute;
    content: "";
}
.sec08_item:before {
    background: url("../images/idx_icon11.png") no-repeat left top/231px;
    width: 231px;
    height: 231px;
    left: 82px;
    top: -5px;
}
.sec08_item:after {
    background: #fff;
    height: 820px;
    width: 100%;
    border-radius: 0 0 40px 40px;
    left: 0;
    top: 40px;
    z-index: -1;
}
.sec08_item .ite_l {
    flex-grow: 1;
    padding-top: 181px;
}
.sec08_item .ite_l .wrap {
    width: 533px;
    display: table;
    margin-left: auto;
}
.sec08_item .ite_r {
    flex-shrink: 0;
    right: -7px;
    position: relative;
}
.sec08_ttl {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.625;
    position: relative;
    margin-bottom: 33px;
}
.sec08_ttl:before {
    position: absolute;
    content: "";
    background: url("../images/brush7.png") no-repeat right top;
    width: 117px;
    height: 113px;
    right: 37px;
    top: -17px;
}
.sec08_ttl .org {
    color: var(--mcolor);
}
.sec08_txt {
    line-height: 1.77;
    padding-right: 80px;
}
/*============= SEC09 ==============*/
.sec09 {
    padding-bottom: 225px;
}
.sec09 .inner {
    width: 100%;
    padding: 0;
}
.sec09_item {
    display: flex;
    justify-content: center;
    margin-bottom: 44px;
}
.sec09_item > div {
    width: 587px;
    height: 344px;
    background: #fff;
    border: 8px #ffefe6 solid;
    border-radius: 32px;
    position: relative;
}
.sec09_item > div:before {
    position: absolute;
    content: "";
    pointer-events: none;
}
.sec09_item > .item1:before {
    background: url("../images/idx_icon12.png") no-repeat center top/279px;
    width: 279px;
    height: 182px;
    right: 28px;
    bottom: 16px;
}
.sec09_item > .item2:before {
    background: url("../images/idx_icon13.png") no-repeat center top/204px;
    width: 204px;
    height: 256px;
    right: 10px;
    bottom: 22px;
}
.sec09_item > .item3:before {
    background: url("../images/idx_icon15.png") no-repeat center top/185px;
    width: 185px;
    height: 167px;
    right: 30px;
    bottom: 30px;
}
.sec09_item > div > a, .sec09_item > div > a .tt {
    width: 100%;
    height: 100%;
}
.sec09_item > div > a .tt {
    display: flex;
    font-weight: bold;
    flex-direction: column;
    padding-top: 42px;
    padding-left: 44px;
    position: relative;
}
.sec09_item > .item1 > a .tt {
    padding-top: 36px;
}
.sec09_item > .item2 > a .tt {
    padding-top: 45px;
}
.sec09_item > .item3 > a .tt {
    padding-top: 45px;
}
.sec09_item > div > a .tt .sm {
    font-size: 28px;
    margin-bottom: 7px;
	color: #070a13;
}
.sec09_item > div > a .tt .sm.mt1 {
    margin-bottom: 0;
    margin-top: 3px;
}
.sec09_item > div > a .tt .lg {
    font-size: 38px;
    color: var(--mcolor);
    line-height: 1.42;
    margin-bottom: 7px;
}
.sec09_item > div:not(:last-child) {
    margin-right: 25px;
}
/*============= SEC10 ==============*/
.sec10 {
    background: #fff;
    position: relative;
    padding-bottom: 90px;
}
.sec10:before {
    position: absolute;
    content: "";
    width: 1920px;
    height: 300px;
    background: url("../images/brush8_l.png") no-repeat left top, url("../images/brush8_r.png") no-repeat right top;
    left: calc(50% - 960px);
    top: 370px;
}
.sec10 .inner {
    width: 100%;
}
.sec10_img {
    text-align: center;
    position: relative;
    top: -125px;
    margin-bottom: -125px;
}
.sec10_img img {
    border-radius: 72px;
    box-shadow: 0px 0px 40px 0px rgba(97, 79, 36, 0.07);
}
.sec10_ttl {
    width: 430px;
    height: 91px;
    background: #fff;
    border-radius: 10px;
    margin: 0px auto 8px;
    position: relative;
    font-size: 48px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -40px;
    padding-left: 45px;
    letter-spacing: 0.05em;
    padding-bottom: 5px;
}
.sec10_ttl:before, .sec10_ttl:after {
    position: absolute;
    content: "";
}
.sec10_ttl:before {
    background: url("../images/idx_icon16.png") no-repeat center top/73px;
    width: 73px;
    height: 130px;
    left: 24px;
    top: -38px;
}
.sec10_ttl:after {
    background: url("../images/arrow_line_sm.png") no-repeat center bottom/455px;
    width: 455px;
    height: 41px;
    left: -12px;
    bottom: -31px;
}
.sec10_ttl2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: var(--mcolor);
    line-height: 1.625;
    margin-bottom: 21px;
    letter-spacing: 0.05em;
}
.sec10_txt {
    max-width: 1168px;
    margin: 0 auto 37px;
}
.sec10_txt p {
    color: #333;
}
/*============= SEC11 ==============*/
.sec11 {
    padding: 100px 0 121px;
}
.sec11 .inner {
    width: 1390px;
}
.sec11_item {
    display: flex;
}
.sec11_item .item_l {
    flex-shrink: 0;
    width: 300px;
    padding-top: 45px;
}
.sec11_load {
    background: #fff;
    width: 1100px;
    height: 272px;
    border-radius: 20px;
    box-shadow: 0px 0px 40px 0px rgba(97, 79, 36, 0.07);
    padding: 56px 78px;
}
.sec11_load dl, .sec11_load dl dt {
    display: flex;
}
.sec11_load dl dt .date {
    color: #333;
    margin-right: 18px;
}
.sec11_load dl dt .cate {
    min-width: 170px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #fff;
    flex-shrink: 0;
    background: var(--scolor);
    border-radius: 4px;
}
.sec11_load dl:not(:last-child) {
    margin-bottom: 32px;
}
.sec11_load dl dt {
    margin-right: 16px;
    flex-shrink: 0;
}
.sec11_load dl dd a {
    color: #333;
    font-weight: bold;
}
.sec11_load dl dd {
    flex-grow: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.sec11_ttl {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 45px;
}
/*============= SEC11 ==============*/
@media screen and (min-width: 751px) {}
/*==========================================================
                        F O O T E R
==========================================================*/
footer {
    position: relative;
    z-index: 3;
    padding: 146px 0 7px;
}
.ft_top {
    position: relative;
}
.ft_top .inner {
    width: 1640px;
    padding-top: 80px;
}
.ft_top:before {
    position: absolute;
    content: "";
    width: calc(100% - 42px);
    height: 927px;
    border-radius: 80px 0 0 80px;
    background: #fff;
    right: 0;
    top: 0;
}
.logo_ft {
    text-align: center;
    margin-bottom: 53px;
}
.ft_wrap {
    position: absolute;
    right: 99px;
    top: 90px;
}
.ft_add {
    color: #070a13;
    margin-bottom: 10px;
}
.ft_btn a {
    width: 226px;
    height: 44px;
    border: 2px #f1851b solid;
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #070a13;
    font-size: 20px;
    font-weight: bold;
    margin-left: auto;
}
.ft_btn a span {
    background: url("../images/icon_map.png") no-repeat left center/18px;
    padding-left: 27px;
    padding-right: 7px;
}
.ft_bnr {
    display: flex;
    justify-content: space-between;
    margin-bottom: 95px;
    position: relative;
    z-index: 1;
}
.ft_bnr:before {
    position: absolute;
    content: "";
    background: #ffefe6;
    left: -106px;
    height: 100px;
    width: calc(100% + 160px);
    border-radius: 0 50px 50px 0;
    z-index: -1;
    top: 52px;
}
.ft_link {
    width: 1146px;
    margin: 0 auto 56px;
    display: flex;
}
.ft_link .item1 {
    width: 253px;
}
.ft_link .item2 {
    width: 403px;
}
.ft_link .item3 {
    width: 254px;
}
.ft_link .ft_bnr2 {
    position: relative;
    top: 7px;
}
.ft_link ul li {
    margin-bottom: 10px;
}
.ft_link .big p {
    font-size: 20px;
    font-weight: bold;
    color: var(--mcolor);
    margin-bottom: 10px;
}
.ft_link ul li a {
    background: url("../images/arrow_link.png") no-repeat left center/15px;
    padding-left: 25px;
    font-weight: 700;
	color: #333;
}
.ft_link .big.mt1 {
    margin-top: 33px;
}
.ft_link .item1 li {
    margin-bottom: 35px;
}
.bnr_fix {
	position: fixed;
	right: 0;
	bottom: 155px;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	transition: all ease 0.3s;
}
.bnr_fix2 {
	bottom: 355px;
}
.bnr_fix.show {
	opacity: 1;
	visibility:visible;
}
.box_popup {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.5);
    transition: all ease 0.3s;
    opacity: 0;
    pointer-events: none;
}
.box_popup.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: inherit;
}
.box_popup_wrap {
    width: 1000px;
    height: 600px;
    margin: 0 auto;
    position: relative;
}
.box_popup_wrap iframe {
    width: 100%;
    height: 100%;
}
.box_popup_close {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: var(--mcolor);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding-bottom: 3px;
    font-weight: bold;
}
address {
    padding: 22px 20px 25px;
    color: #333333;
    text-align: center;
    position: relative;
    font-size: 16px;
}
/* BACK TO TOP */
.to_top {
    position: fixed;
    z-index: 9;
    width: 136px;
    height: 136px;
    bottom: 0px;
    right: 0px;
    cursor: pointer;
    transition: all .2s;
    opacity: 0;
    visibility: hidden;
    margin-bottom: 0px;
}
.to_top.show {
    transform: scale(1);
    opacity: 1;
    visibility: visible
}
/* FIREFOX ONLY */
@-moz-document url-prefix() {}
/* Safari 10.1+ (which is the latest version of Safari at this time) */
@media not all and (min-resolution: 0.001dpcm) {}