@charset "utf-8";

/* /////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////

    [ Common Section ]

///////////////////////////////////////////////////////// */

/* =========================================================
    Base Style
========================================================= */
body {
    background-color: #ffffff;
    color: #323232;
    font-size: 62.5%; /* 10px */
    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 1.8em;
    word-wrap: break-word;
    box-sizing: content-box;  /* ress.css の box-sizing:inherit がブラウザにより誤動作するため必要*/
}


/* =========================================================
    FONT Include
========================================================= */
/* Zen Kaku Gothic New */
.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Rubik */
.rubik {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


/* =========================================================
    Link Color
========================================================= */
a:link {
    color:#323232;
    text-decoration:none;
}
a:visited {
    color:#323232;
    text-decoration:none;
}
a:hover {
   text-decoration:underline;
}
a:active {
   color:#d6001e;
}


/* =========================================================
    ClearFix
========================================================= */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size:0.1em;
}
.clearfix {
    min-height: 1px;
    display:inline-table;
}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display:block;}
/* End hide from IE-mac */

.clear {clear: both;}
.edge {margin: 0px;padding: 0px;}


/* /////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////

    [ Responsible Style ]

///////////////////////////////////////////////////////// */

/* container */
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 960px) {
  .container {  /* PCでの広がり過ぎを抑制。最大横幅 */
      width: 960px;
  }
}

/* Image */
img.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
}

/* PC/SP制御 */
@media (min-width: 960px) {
    .pc-only {
    }
    .sp-only {
        display: none!important;
    }
}
@media (max-width: 959px) {
    .pc-only {
        display: none!important;
    }
    .sp-only {
    }
}

/* small */
@media (min-width: 768px) {
    .pc-only-s {
    }
    .sp-only-s {
        display: none!important;
    }
}
@media (max-width: 767px) {
    .pc-only-s {
        display: none!important;
    }
    .sp-only-s {
    }
}

/* small 500 */
@media (min-width: 500px) {
    .pc-only-ss {
    }
    .sp-only-ss {
        display: none!important;
    }
}
@media (max-width: 499px) {
    .pc-only-ss {
        display: none!important;
    }
    .sp-only-ss {
    }
}


/* /////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////

    [ Navigation & Btn Section ]

///////////////////////////////////////////////////////// */

/* =========================================================
    Global Navigation
========================================================= */


/* /////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////

    [ Layout Section ]

///////////////////////////////////////////////////////// */

/* =========================================================
    Body & Wrapper
========================================================= */


/* =========================================================
    Loading animation
========================================================= */


/* =========================================================
    Global Navi
========================================================= */
/* Humberger Menu */
#hamburger_gnav {
    display: inline-block;
    z-index: 100;
}
#hamburger_gnav .menu_motion {
    display: inline-block;
    width: 60px;
    height: 40px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 40px;
    right: 60px;
    z-index: 1000;
}
#hamburger_gnav.fixed .menu_motion {
    top: 40px;
}
#hamburger_gnav .menu_motion span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #0054a7;
    transition: all 0.8s;
}
#hamburger_gnav .menu_motion.active span {
    background-color: #fff;
}
#hamburger_gnav .menu_motion span:nth-of-type(1) {
    top: 0;
}
#hamburger_gnav .menu_motion span:nth-of-type(2) {
    top: 17px;
}
#hamburger_gnav .menu_motion span:nth-of-type(3) {
    height: 0px;
    bottom: 8px;
    text-align: center;
    color: #0054a7;
}

/* Humberger Menu:action */
#hamburger_gnav .menu_motion.active span:nth-of-type(1) {
    background-color: #fff;
    transform: translateY(17px) rotate(-45deg);
}
#hamburger_gnav .menu_motion.active span:nth-of-type(3) {
    background-color: #fff;
    left: 50%;
    opacity: 0;
    animation: active-menu-bar02 .8s forwards;
}
#hamburger_gnav .menu_motion.active span:nth-of-type(2) {
    background-color: #fff;
    transform: translateY(-17px) rotate(45deg);
}

/* Humberger Menu:inside */
.menu_wrap {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: row;

    position: fixed;
    z-index: 300;
    height: 0;
    width: 100%;
    max-height: 100vh;
    top: 0px;
    right: 0;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: height 0.2s ease-in-out;

    background-image: url(../images/img_menu_bk.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.menu_wrap.menu_active { /* for javascript */
    height: 100%;
}
.menu_wrap_hr {
    display: none;
}

/* left section */
#hamburger_gnav .gnav {
    position: relative;
    display: flex;
    justify-content: start;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
    font-size: 1.4rem;
}
#hamburger_gnav,
#hamburger_gnav a {
    color: #fff;
}

#hamburger_gnav .gnav ul {
    text-align: left;
    padding-top: 180px;
}
#hamburger_gnav .gnav ul li {
}
#hamburger_gnav .gnav ul li a {
}
#hamburger_gnav .gnav ul li a:after {
    content: "\203A";
    font-size: 1.0rem;
    position: absolute;
    right: 80px;
}

#hamburger_gnav .gnav_item {
    display: block;
    height: auto;
    padding: 0;
    margin-bottom: 40px;
}
#hamburger_gnav .gnav_item.last {
    margin-bottom: 40px;
}
#hamburger_gnav .gnav_item a {
}
#hamburger_gnav .gnav_item a span {
    font-size: 0.8rem;
    margin-top: 16px;
}

/* right section */
#hamburger_gnav .gnav_right {
    flex-grow: 1;
    padding-top: 180px;
}
#hamburger_gnav .gnav_right .menu_wrap_logo {
    width: 220px;
}

#hamburger_gnav .gnav_right h2 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 40px;
}
#hamburger_gnav .gnav_right .gnav_adrs {
    font-size: 1.0rem;
    letter-spacing: 0.1rem;
    line-height: 2.2rem;
    margin-top: 14px;
}

#hamburger_gnav .gnav_right .gnav_snstel_box {
    margin-top: 30px;
}
#hamburger_gnav .gnav_right .gnav_tel {
    display: block;
    font-size: 2.6rem;
    letter-spacing: 0.1rem;
    color: #fff;
    margin-right: 10px;
}
#hamburger_gnav .gnav_right .gnav_tel a {
    font-size: 2.6rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    color: #fff;
}
#hamburger_gnav .gnav_right .gnav_tel:before {
    display: inline-block;
    width: 40px;
    content: url("../images/icon_phone_white.svg");
    vertical-align: -6px;
}
@media screen and (max-width: 960px) {
	.menu_wrap {
	    flex-direction: column;
	    justify-content: start;
	}
	.menu_wrap_hr {
	    display: block;
	    margin: 0px 18px 12px 18px;
	    border-bottom: solid 1px #9a9a9a;
	}

	#hamburger_gnav .gnav {
	    flex-grow: 0;
	}
	#hamburger_gnav .gnav ul li a:after {
	    right: 40px;
	}
	#hamburger_gnav .gnav_right {
	    flex-grow: 0;
	    padding-top: 20px;
	    padding-left: 40px;
	}
	#hamburger_gnav .gnav_right .menu_wrap_logo {
	    width: 200px;
	}
	#hamburger_gnav .gnav_right .gnav_adrs {
	    font-size: 1.0rem;
	    letter-spacing: 0rem;
	    line-height: 1.4rem;
	}
	#hamburger_gnav .gnav_right .gnav_snstel_box {
	    margin-top: 10px;
	}
	#hamburger_gnav .gnav_right .gnav_tel {
	    display: block;
	    font-size: 1.0rem;
	    letter-spacing: 0rem;
	    margin-right: 0px;
	}
	#hamburger_gnav .gnav_right .gnav_tel a {
	    font-size: 1.2rem;
	    letter-spacing: 0rem;
	}
	#hamburger_gnav .gnav_right .gnav_tel:before {
	    width: 20px;
	    vertical-align: -4px;
	}
}
@media screen and (max-width: 375px) {  /* iPhone SE etc. */
	.menu_wrap {
	    flex-direction: column;
	    justify-content: start;
	}
	.menu_wrap_hr {
	    display: block;
	    margin: 0px 18px 12px 18px;
	    border-bottom: solid 1px #9a9a9a;
	}

	#hamburger_gnav .gnav {
	    flex-grow: 0;
	}
	#hamburger_gnav .gnav ul li a:after {
	    right: 40px;
	}
	#hamburger_gnav .gnav_right {
	    padding-top: 10px;
	}
	#hamburger_gnav .gnav_right .menu_wrap_logo {
	    width: 160px;
	}
	#hamburger_gnav .gnav_right h2 {
	    margin-top: 20px;
	}
	#hamburger_gnav .gnav_right .gnav_adrs {
	}
	#hamburger_gnav .gnav_right .gnav_snstel_box {
	    margin-top: 8px;
	}
	#hamburger_gnav .gnav_right .gnav_tel {

	}
	#hamburger_gnav .gnav_right .gnav_tel a {

	}
	#hamburger_gnav .gnav_right .gnav_tel:before {
	    width: 18px;
	    vertical-align: -3px;
	}
}

@media screen and (max-width: 1600px) {
	#hamburger_gnav .gnav {
	    font-size: 1.0rem;
	}
	#hamburger_gnav .menu_motion {
	    top: 30px;
	    right: 12px;
	}
	#hamburger_gnav .gnav_item.last {
	    margin-bottom: 40px;
	}

	#hamburger_gnav .menu_motion.active span:nth-of-type(2) {
	    top: 34px;
	}
}
@media screen and (max-width: 960px) {
	#hamburger_gnav .menu_motion {
	    top: 20px;
	    right: 20px;
	    width: 40px;
	    height: 20px;
	}
	#hamburger_gnav .menu_motion span {
	    height: 3px;
	}
	#hamburger_gnav .menu_motion span:nth-of-type(1) {
	    top: 0;
	    right: auto;
	    left: 0;
	    width: 40px;
	}
	#hamburger_gnav .menu_motion.active span:nth-of-type(1) {
	    transform: translateY(9px) rotate(-45deg);
	    width: 40px;
	}
	#hamburger_gnav .menu_motion span:nth-of-type(2) {
	    top: 9px;
	}
	#hamburger_gnav .menu_motion.active span:nth-of-type(3) {
	    opacity: 0;
	}
	#hamburger_gnav .menu_motion span:nth-of-type(2) {
	    bottom: 0;
	    width: 40px;
	}
	#hamburger_gnav .menu_motion.active span:nth-of-type(2) {
	    top: auto;
	    transform: translateY(-9px) rotate(45deg);
	    display: block;
	    bottom: 0;
	    width: 40px;
	    height: 3px;
	}

	.menu_wrap {
	    align-items: unset;
	    overflow-x: hidden;
	}
	.menu_wrap.menu_active { /* for javascript */
	    height: calc(100vh - 20px);
	    overflow-y: scroll;
	}
	#hamburger_gnav .gnav {
	    align-items: start;
	    padding-top: 60px;
	    padding-left: 40px;
	    font-size: 1.1rem;
	    height: auto;  /* landcape時に下までスクロールさせるため */
	}
	#hamburger_gnav .gnav a {
	    color: #fff;
	}

	#hamburger_gnav .gnav ul {
	    width: 100%;
	    padding-top: 20px;
	}
	#hamburger_gnav .gnav_item {
	    margin-bottom: 24px;
	}
	#hamburger_gnav .gnav_item.last {
	    margin-bottom: 40px;
	}
	#hamburger_gnav .gnav_item a {
	}
	#hamburger_gnav .gnav_item a span {
	    margin-top: 14px;
	}
}
@media (max-width: 960px) and (orientation: landscape) {
	.menu_wrap.menu_active { /* for javascript */
	    height: 100vh;
	    overflow-y: scroll;
	}
}
@media screen and (max-width: 375px) {  /* iPhone SE etc. */
	#hamburger_gnav .gnav_item.last {
	    margin-bottom: 24px;
	}
}

/*------------------------------------------------------- */
/* Common Parts */
/*------------------------------------------------------- */
/* SNS icon */
.icon_box {
    display: flex;
    justify-content: space-around;
    place-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.icon_box img {
    height: 20px;
}
.icon_box img:hover {
    opacity: 0.6;
}


/* =========================================================
    Global Header
========================================================= */
header {
    width: 100%;
    height: 0px;  /* 高さを持っていたため解除 */
}
header a,
header a:hover {
    text-decoration: none;
}
#site-header {
    position: relative;
    width: 100%;
    height: 120px;
    top: 0px;
    left: 0px;
    z-index: 100;
}
#site-header.fixed {
    position: fixed;
    background-color: rgba( 225, 25, 125, 0.95 );
/*    height: 80px;  */
}
@media screen and (max-width: 960px) {
	#site-header.fixed {
	    height: 110px;
	}
}

#site-header .gHeader_left {
    position: absolute;
    top: 30px;
    left: 2%;
    z-index: 9;
}

#site-header .gHeader_left img.logo {
    display: block;
    width: 180px;
}

/* fixed */
#site-header.fixed .gHeader_left img.logo {
/*    width: 120px;  */
}
#site-header.fixed .gHeader_left {
/*    top: 20px;  */
}

/* gHeader_right */
.gHeader_right {
    position: absolute;
    top: 50px;
    right: 2%;
    z-index: 9;
}
#site-header.fixed .gHeader_right {
/*    top: 32px;  */
}

/* Navigation */
#header_nav {
    display: flex;
    justify-content: space-around;
    place-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
#header_nav ul {
    display: inline-block;
    list-style: none;
    text-align: center;
}
#header_nav li {
    display: inline-block;
    margin-right: 30px;
}
#header_nav li a {
    font-size: 1.0rem;  /* 16px */
    font-weight: bold;
    color: #fff;
    transition: 0.5s;
}
#header_nav li a:hover {
    color: #a5a5a5;
}
#site-header.fixed #header_nav li a {
}
#site-header.fixed #header_nav li a:hover {
    color: #FFC8E1;
}

@media screen and (max-width: 1600px) { /* for note PC */
	header #site-header{
	}
	header #site-header.fixed{
	}
    #site-header .gHeader_left,
    #site-header.fixed .gHeader_left {
/*
        top: 12px;
        left: 2%;
*/
    }
    #site-header .gHeader_left img {
    }
	#home .gHeader_right a {
	    padding-left: 15px;
	    padding-right: 15px;
	}
    .gHeader_right a {
    }
}
@media screen and (max-width: 960px) {
	header {
	}
    header #site-header.fixed {
/*
	    position: static;
*/
    }
    header #site-header,
    header #site-header.nonfixed,
    header #site-header.fixed {
/*
	    height: 60px;
	    z-index: 99;
*/
    }

    #site-header .gHeader_left {
    }
    #site-header.fixed .gHeader_left {
    }
	#site-header .gHeader_left img.logo {
	    display: block;
	    width: 160px;
	}

	/* gHeader_right */
	.gHeader_right {
	    top: 46px;
	    right: 26px;
	}
	#site-header.fixed .gHeader_right {
	}

	/* SNS icon */
	.gHeader_right .icon_box {
/*
	    gap: 16px;
*/
	}
	.gHeader_right .icon_box img {
/*
	    height: 18px;
*/
	}
}
@media screen and (max-width: 700px) {
}
@media screen and (max-width: 370px) {
}


/* =========================================================
    Global Footer
========================================================= */
footer {
    width: 100%;
    background-color: #E1197D;
}
footer .footer_contents {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

footer .footer_logo {
}
footer img.img_footer_logo {
    width: 270px;
}

footer .main_info_box {
    display: block;
}
footer .footer_adrs {
    margin-top: 30px;
}
footer .footer_adrs,
footer .footer_adrs a {
    font-size: 1.0rem;
    letter-spacing: 0.1rem;
    line-height: 1.8rem;
    color: #fff;
}

/* illust */
footer .sec7_eri_base {
    position: relative;
    width: 100%;
}
footer img.eri7 {
    position: absolute;
    right: 26%;
    bottom: -200px;
}

/* SNS icon (overwrite) */
footer .icon_box {
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
}
footer .icon_box img {
    height: 30px;
}

@media screen and (max-width: 960px) {
	footer {
	}
	footer .footer_contents {
	    padding-top: 20px;
	}

	footer .footer_logo {
	    margin-right: 0px;
	}
	footer img.img_footer_logo {
	    width: 200px;
	}

	footer .main_info_box {
	    flex-direction: column;
	    gap: 20px;
	}
	footer .main_info_box .main_info_box_left {
	    gap: 60px;
	    margin-top: 20px;
	}
	footer .exp {
	    font-size: 0.9rem;
	    line-height: 1.0rem;
	    margin-bottom: 10px;
	}
	footer h1 {
	    font-size: 1.4rem;
	    line-height: 1.4rem;
	    margin-bottom: 14px;
	}
	footer .footer_adrs,
	footer .footer_adrs a {
	    font-size: 1.0rem;
	    letter-spacing: 0.1rem;
	    line-height: 1.4rem;
	}

	/* illust */
	footer .sec7_eri_base {
	}
	footer img.eri7 {
	    right: 12%;
	}

	/* SNS icon */
	footer .icon_box {
	    gap: 24px;
	    margin-top: 22px;
	}
	footer .icon_box img {
	    height: 20px;
	}
}

@media (max-width: 768px) {
	/* illust */
	footer .sec7_eri_base {
	}
	footer img.eri7 {
	    right: 0px;
	    bottom: -160px;
	    width: 20vw;
	}
}

/* copyright */
footer .copyright_footer {
    width: 100%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.875rem;  /* 14px */
    color: #fff;
    text-align: center;
    white-space: nowrap;
}
@media (max-width: 960px) {
	/* copyright */
	footer .copyright_footer {
	    font-size: 0.7rem;
	    margin-top: 20px;
	    text-align: center;
	}
}

/* PageTop */
#nav-pagetop {
    bottom: 0;
    right: 64px;
    position: fixed;
    display: none;
    background-color: rgba( 255, 200, 225, 0.7 );
    border-radius: 40px;
    border: solid 1px #fff;
    width: 80px;
    height: 50px;
    padding-top: 30px;
    text-align: center;
    transition: 0.8s;
}
#nav-pagetop:hover {
    opacity: 0.8;
}
#nav-pagetop a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    font-size: 1.0rem;
    text-decoration: none;
}
/*
#nav-pagetop img {
    width: 16px;
}
*/
#nav-pagetop.fixed {
    position: fixed;
}
#nav-pagetop.nonfixed {
    position: relative;
    float: right;
    margin-top: -40px;
}
@media (max-width: 960px) {
	footer {
	}
    #nav-pagetop {
	    right: 20px;
	    border-radius: 30px;
	    width: 60px;
	    height: 38px;
	    padding-top: 22px;
	    text-align: center;
	    transition: 0.8s;
        filter:alpha(opacity=80);
        opacity: 0.8;
    }
    #nav-pagetop a {
        font-size: 0.9rem;
    }
	#nav-pagetop.nonfixed {
	    margin-top: -30px;
	}
/*
	#nav-pagetop img {
	    width: 15px;
	}
*/
}


/* /////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////

    [ Page Elements Section ]

///////////////////////////////////////////////////////// */

/* =========================================================
    Page Common
========================================================= */
/*------------------------------------------------------- */
/* Common Contents */
/*------------------------------------------------------- */


/* Breadcrumbs
--------------------------------------------------------- */


/* SPECIAL Contents
--------------------------------------------------------- */


/* Outer Container
--------------------------------------------------------- */


/* pager with num
--------------------------------------------------------- */


/* =========================================================
    PARTS
========================================================= */
/* Text Color */
.txt_color_white {
    color: #fff;
}
.txt_color_red {
	color: #e6143c;
}

/* Text Weight */
.txt_bold {
    font-weight: bold;
}


/* =========================================================
    COMMON
========================================================= */
/* side bar for contact */
.side_bar_contact {
    position: fixed;
    top: calc( 50vh - 90px);  /* 高さ 180px */
    right: 0px;
    z-index: 99;
}
.side_bar_contact img {
    width: 60px;
}
.side_bar_contact a {
    display: block;
    height: 100%;
    transition: 0.5s;

}
.side_bar_contact a:hover {
    opacity: 0.6;
}
@media screen and (max-width: 960px) {
	/* side bar for contact */
	.side_bar_contact {
	    top: calc( 50vh - 60px);
	}
	.side_bar_contact img {
	    width: 40px;
	    opacity: 0.8;
	}
}


/* floating_msg */
.floating_msg_wrap {
	position: relative;
    width: 100%;
    height: 30px;
    padding-bottom: 140px;
	overflow: hidden;
    z-index: 0;
}
.floating_msg_wrap.bottom {
    padding-bottom: 0px;
}
.floating_msg_inner {
    will-change: transform;  /* transformやanimationをスムースにするための助言。多用厳禁 */
    display: flex;
    width: max-content;
    height: 100%;
    animation: scroll_image_to_right 20s linear infinite;
}
.floating_msg_inner .floating_msg_item {
    width: 100vw; /* ビューポート幅基準にしないとガタつく */
    height: 100%;
    background: url("../images/flow_text1.svg") repeat-x center / auto 100%;
    flex-shrink: 0;
}

.floating_msg_inner.white {
    will-change: transform;  /* transformやanimationをスムースにするための助言。多用厳禁 */
    display: flex;
    width: max-content;
    height: 100%;
    animation: scroll_image_to_left 20s linear infinite;
}
.floating_msg_inner.white .floating_msg_item {
    width: 100vw; /* ビューポート幅基準にしないとガタつく */
    height: 100%;
    background: url("../images/flow_text2.svg") repeat-x center / auto 100%;
    flex-shrink: 0;
}

@keyframes scroll_image_to_right {
    0% {
        transform: translateX(-100vw);
	}
    100% {
        transform: translateX(0);
	}
}
@keyframes scroll_image_to_left {
    0% {
        transform: translateX(0);
	}
    100% {
        transform: translateX(-100vw);
	}
}

@media screen and (max-width: 960px) {
	.floating_msg_wrap {
	    padding-top: 40px;
	    padding-bottom: 40px;
	}
	.floating_msg_wrap.bottom {
	    padding-top: 0px;
	    padding-bottom: 40px;
	}
}


/* イラスト アニメーション */
/* サイズ */
img.illust-act {
    transform: scale(0, 0);
}
img.mt01 {
    transform: scale(1, 1);
}
img.illust-act {
    transition: 0.5s;
}
img.illust-act:hover{
    transform: scale(0.95, 0.95);
}

/* 回転付 */
img.illust-rotate {
    transform: scale(0, 0) rotate( -30deg );
}
img.mr01 {
    transform: scale(1, 1) rotate( 0deg );
}
img.illust-rotate {
    transition: 0.5s;
}
img.illust-rotate:hover{
    transform: scale(0.95, 0.95) rotate( -10deg );
}


/* =========================================================
    LIST with Number
========================================================= */
/* ・付き */
ol.dot {
    list-style: none;
    margin-left: 1.4rem;
}
.dot .dot:before {
    content: "・";
    float: left;
    font-size: 1.2rem;
    padding-top: -2px;
    padding-right: 0px;
    text-indent: -1.4rem;
}


/* =========================================================
    TITLE COMMON
========================================================= */  /* ★eri */
/* H1 */
h1 {
}
@media screen and (max-width: 960px) {
	h1 {
	}
}

/* H2 */
h2.title_section {
    font-size: 2.625rem;  /* 42px */
    font-weight: 700;
    letter-spacing: 0.1rem;
    line-height: 3.0rem;
}
.title_section_en {
    font-size: 1.5rem;  /* 24px */
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.1rem;
    margin-top: 26px;
}
@media screen and (max-width: 960px) {
	h2.title_section {
	    font-size: 1.4rem;  /* 42px */
	    line-height: 1.6rem;
	}
	.title_section_en {
	    font-size: 0.9rem;  /* 24px */
	    margin-top: 12px;
	}
}


/* =========================================================
    INFO TABLE (COMPANY, RECRUIT)
========================================================= */
.info_table {
    margin-top: 0px;
    margin-bottom: 0px;
}
.info_table .tr {
    display: flex;
    width: 100%;
    font-size: 1.0rem;
    line-height: 2.0rem;
}
.info_table .tr .th {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-shrink: 0;  /* 幅を変更したくない要素に指定（デフォルト値0） */
    flex-basis: 200px;
    min-height: 80px;
    height: auto;
    margin-right: 40px;
    text-align: left;
    font-weight: bold;
    padding: 15px 0px 15px 0px;
}
.info_table .tr .td {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 40px;
    padding: 15px 0px 15px 0px;
    width: 100%;  /* 古いブラウザで折り返されるため */
}
/* list dot */
.info_table .tr .td .list_dot {
	margin-left: 1.2rem;
    display: block;
    flex-shrink: 0;  /* 幅を変更したくない要素に指定（デフォルト値0） */
}
.info_table .tr .td .list_dot:before {
	text-indent: -1.0rem;
    display: inline-block;
    vertical-align: 0px;
    content: "・";
    margin: 0px 2px 0px 0px;
}
/* list maru */
.info_table .tr .td .list_maru {
	margin-left: 1.2rem;
    display: block;
    flex-shrink: 0;  /* 幅を変更したくない要素に指定（デフォルト値0） */
}
.info_table .tr .td .list_maru:before {
	text-indent: -1.3rem;
    display: inline-block;
    vertical-align: 0px;
    content: "●";
    margin: 0px -3px 0px 0px;
}
@media screen and (max-width: 959px) {
	/* INFO */
	.info_table {
	    margin-top: 60px;
	    margin-bottom: 80px;
	}
	.info_table .tr {
	    flex-direction: column;
	    margin-bottom: 30px;
	}
	.info_table .tr .th {
	    width: 100%;
	    flex-basis: 40px;  /* PC時は幅、SP時は高さ */
	    margin-right: 0px;
	    min-height: auto;
	    padding: 8px 0px 8px 0px;
	}
	.info_table .tr .td {
	    gap: 0px;
	    padding: 8px 0px 8px 0px;
	}
	.info_table .tr .td .list_dot {
	}
	.info_table .tr .td .list_dot:before {
	}
	.info_table .tr .td .list_maru {
	}
	.info_table .tr .td .list_maru:before {
	}
}


/* =========================================================
    COMPANY
========================================================= */
#company {
    padding-top: 80px;
    padding-bottom: 60px;
    background-color: #FFC8E1;
}

/* flame */
#company .sec4_flame {
    width: 720px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#company .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* illust */
#company .sec4_eri_base {
    position: relative;
    width: 100%;
}
#company img.eri4 {
    position: absolute;
    left: -180px;
    bottom: 0px;
}

/* contants */
#company .info_table {
    width: calc(720px - 160px);
    padding: 40px 80px;
    margin-top: 60px;
    border-top: solid 20px #E1197D;
}
#company .info_table .tr {
    border-bottom: solid 1px #000;
    padding: 14px 0px;
    line-height: 1.0rem;
}
#company .info_table .tr .th {
    flex-basis: 130px;
    margin-right: 40px;
    align-items: center;
    min-height: auto;
}
#company .info_table .tr .td {
    align-items: center;
}


#company .company_info_second {
    margin-top: 80px;
}
@media screen and (max-width: 960px) {
	#company {
	    padding-top: 0px;
	    padding-bottom: 0px;
	}
	/* flame */
	#company .sec4_flame {
	    width: calc(100vw - 30px);
	    height: auto;
	}
	#company .container {
	}

	/* illust */
	#company .sec4_eri_base {
	}
	#company img.eri4 {
	    width: 26vw;
	    left: 0px;
	    bottom: 0px;
	}

	/* contants */
	#company .info_table {
	    width: calc(100vw - 30px);
	    padding: 20px 0px;
	    margin-top: 60px;
	    border-top: solid 16px #E1197D;
	}
	#company .info_table .tr {
	}
	#company .info_table .tr .th {
	    flex-basis: auto;
	    margin-right: 0px;
	}
	#company .info_table .tr .td {
	}
}

/* google map button */
.with_map {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.td_inner {
    width: 100%;
}
a.btn_map {
    cursor: pointer;
    transition: 0.5s;
    margin-right: 15px;
}
a.btn_map img {
    width: 16px;
}
a.btn_map:hover {
    opacity: 0.6;
}

@media (max-width: 960px) {
	/* google map button */
	.with_map {
	}
	a.btn_map {
	}
	a.btn_map img {
	}
}

/* =========================================================
    HOME
========================================================= */
#home {
    padding-top: 100px;
    padding-bottom: 30px;
    background-color: #E1197D;
}
/* logo & flame */
#home .main_logo_flame {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
}

/* image control */
#home img.sec1_upper {
    width: 720px;
}
#home img.sec1_under {
    width: 540px;
}
#home .sec1_under_base {
    position: relative;
    width: 100%;
}
#home img.eri1 {
    position: absolute;
    right: 30px;
    bottom: 0;
}

/* image text */
#home .upper_txt {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5.0rem;
    font-size: 1.25rem;  /* 20px */
    font-weight: bold;
    text-align: center;
    color: #fff;
}
#home h3.under_txt {
    width: 540px;
    font-size: 1.0rem;  /* 16px */
    line-height: 2.0rem;
    letter-spacing: 0.1rem;
    text-align: center;
    color: #fff;
    margin-top: 30px;
}
@media screen and (max-width: 960px) {
	#home {
	    padding-top: 80px;
	    padding-bottom: 30px;
	}
	/* logo & flame */
	#home .main_logo_flame {
	    margin-top: 40px;
	}

	/* image control */
	#home img.sec1_upper {
	    width: calc(100vw - 30px);
	}
	#home img.sec1_under {
	    width: calc(80vw - 30px);
	}
	#home .sec1_under_base {
	}
	#home img.eri1 {
	    width: 26vw;
	    right: 0px;
	    bottom: -20px;
	}

	/* image text */
	#home .upper_txt {
	    height: 4.6rem;
	    font-size: 1.0rem;
	    font-weight: normal;
	    line-height: 1.6rem;
	}
	#home h3.under_txt {
	    width: calc(80vw - 30px);
	    font-size: 1.0rem;  /* 16px */
	    line-height: 1.6rem;
	    letter-spacing: 0.1rem;
	    margin-top: 20px;
	}
}


/* SCROLL ARROW */
.scroll_arrow {
    width: 100%;
    padding-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.scroll_arrow a {
    display: inline-block;
    width: 20px;
    height: 30px;
    background: #ffffff;
    clip-path: polygon(0 63.2%, 31% 63.2%, 31% 0, 69% 0, 69% 63.2%, 100% 63.2%, 50% 100%);
    animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}

/*
.scroll_arrow {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 100px;
    margin-bottom: 200px;
}
.scroll_arrow a {
    display: inline-block;
    position: absolute;
    left: 50%;
    padding: 10px 10px 110px;
    overflow: hidden;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-lr;

    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 1.0rem;
    writing-mode: vertical-rl;
    white-space: nowrap;
    letter-spacing: 0.2rem;
    text-decoration: none;
    padding-bottom: 200px;
    z-index: 2;
}
*/
/* .scroll_arrow a::after { macでは疑似要素を認識しない*/
/*.scroll_arrow a .arrow-after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 6px;
    height: 30px;
    background: #fff;
    animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}

.scroll_arrow a span.arrow_r {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 18px;
    height: 18px;
    margin-left: -11px;
    border-bottom: 6px solid #fff;
    transform: rotate(-45deg);
    animation: sdb 2s infinite;
    animation: sdb 2s cubic-bezier(1, 0, 0, 1) infinite;
    box-sizing: border-box;
}
.scroll_arrow a span.arrow_l {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 18px;
    height: 18px;
    margin-left: -11px;
    border-bottom: 6px solid #fff;
    transform: rotate(45deg);
    animation: sdb 2s infinite;
    animation: sdb 2s cubic-bezier(1, 0, 0, 1) infinite;
    box-sizing: border-box;
}
*/
@keyframes sdl {
  0% {
    opacity: 1;
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  30.1%, 70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  46% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 960px) {
	.scroll_arrow {
	    padding-top: 30px;
	}
}
/* END:SCROLL */


/* =========================================================
  ABOUT
========================================================= */
#about {
    padding-top: 40px;
    padding-bottom: 120px;
}
/* flame */
#about .sec2_flame {
    width: calc(720px - 200px);
    height: auto;
    padding: 70px 80px 70px 100px;  /* border-left分 20pxを加算 */
    border-top: 20px solid #FFC8E1;
    border-right: 20px solid #FFC8E1;
    border-bottom: 20px solid #FFC8E1;
    border-radius: 0px 40px 40px 0px; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#about .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* illust */
#about .sec2_eri_base {
    position: relative;
    width: 100%;
}
#about img.eri2 {
    position: absolute;
    left: -180px;
    bottom: 0;
}

/* contants */
#about .sec2_bnr_msg {
    font-size: 1.5rem;  /* 24px */
    line-height: 1.5rem;
    letter-spacing: 0.1rem;
    text-align: center;
    color: #fff;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 20px;
    width: 100%;
    background-color: #E1197D;
    margin-top: 60px;
}
#about .sec2_txt {
    font-size: 1.0rem;  /* 16px */
    line-height: 2.0rem;
    letter-spacing: 0.1rem;
    padding-top: 6px;
    width: 100%;
    margin-top: 20px;
}

#about .sec2_inner {
    width: 540px;
}

@media screen and (max-width: 960px) {
	#about {
	    padding-top: 0px;
	    padding-bottom: 60px;
	}
	/* flame */
	#about .sec2_flame {
	    width: calc(100vw - 30px - 16px - 26px);
	    height: auto;
	    padding: 70px 10px 40px 26px;
	    border-top: 16px solid #FFC8E1;
	    border-right: 16px solid #FFC8E1;
	    border-bottom: 16px solid #FFC8E1;
	    border-radius: 0px 30px 30px 0px; 
	}
	#about .container {
	}

	/* illust */
	#about .sec2_eri_base {
	}
	#about img.eri2 {
	    width: 26vw;
	    left: 0vw;
	    bottom: 60px;
	}

	/* contants */
	#about .sec2_bnr_msg {
	    font-size: 1.0rem;
	    line-height: 1.4rem;
	    letter-spacing: 0.1rem;
	    padding-top: 6px;
	    padding-bottom: 6px;
	    border-radius: 20px;
	    width: calc(100vw - 30px - 16px - 26px);
	    margin-top: 30px;
	}
	#about .sec2_txt {
	    font-size: 1.0rem;  /* 16px */
	    line-height: 1.6rem;
	    letter-spacing: 0rem;
	    padding-top: 6px;
	    width: calc(100vw - 30px - 16px - 26px);
	    margin-top: 20px;
	}

	#about .sec2_inner {
	    width: calc(100vw - 30px - 16px - 26px);
	}
}


/* =========================================================
  RENOVATION (SERVICE)
========================================================= */
#services {
    padding-top: 180px;
    padding-bottom: 60px;
    background-color: #E1197D;
}
/* flame */
#services .sec3_flame {
    width: 720px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#services .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* illust */
#services .sec3_eri_base {
    position: relative;
    width: 100%;
}
#services img.eri3 {
    position: absolute;
    right: -140px;
    bottom: 20px;
}

/* title */
#services .title_section,
#services .title_section_en {
    color: #fff;
}
#services .title_section_en {
    margin-bottom: 60px;
}

/* contants */
#services .sec3_inner {
    width: calc(720px - 160px);
    padding: 40px 80px;
    border-top: solid 20px #FFC8E1;
}
#services .sec3_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border-bottom: dotted 1px #fff;
    padding: 30px 0px;
}
#services .sec3_box:last-child {
    border-bottom: none
}
#services img.sec3_icon {
    width: 130px;
}
#services .sec3_txt {
    font-size: 1.0rem;  /* 16px */
    line-height: 1.8rem;
    color: #fff;
    margin-top: 18px;
}

/* ハート付き */
.with_heart_icon {
    font-size: 1.5rem;  /* 24px */
    font-weight: bold;
    color: #fff;
}
.with_heart_icon:before {
    display: inline-block;
    content: "";
    width: 36px;
    height: 36px;
    background-image: url("../images/icon.svg");
    background-size: contain;
    vertical-align: -11px;
    margin-right: 8px;
}

@media screen and (max-width: 960px) {
	#services {
	    padding-top: 90px;
	    padding-bottom: 0px;
	}
	/* flame */
	#services .sec3_flame {
	    width: calc(100vw - 30px);
	}
	#services .container {
	}

	/* illust */
	#services .sec3_eri_base {
	}
	#services img.eri3 {
	    width: 26vw;
	    right: 0vw;
	    bottom: 94px;
	}

/* title */
#services .title_section,
#services .title_section_en {
}
#services .title_section_en {
    margin-bottom: 60px;
}

	/* contants */
	#services .sec3_inner {
	    width: calc(100vw - 30px);
	    padding: 20px 0px;
	    border-top: solid 16px #FFC8E1;
	}
	#services .sec3_box {
	    gap: 15px;
	    padding: 30px 0px;
	}
	#services img.sec3_icon {
	    width: 70px;
	}
	#services .sec3_txt {
	    font-size: 1.0rem;  /* 16px */
	    line-height: 1.4rem;
	    margin-top: 10px;
	}

	/* ハート付き */
	.with_heart_icon {
	    font-size: 1.0rem;
	}
	.with_heart_icon:before {
	    width: 20px;
	    height: 20px;
	    vertical-align: -6px;
	    margin-right: 4px;
	}
}


/* =========================================================
    USER INFO TABLE (COMMON)
========================================================= */
.form_group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;

    font-size: 1.2rem;
    padding: 20px 0px 20px 0px;
}
.form_title {
    flex-basis: 300px;
    text-align: left;
    font-weight: bold;
}
.form_title span {
    display: inline-block;
    margin-left: 4px;
}
.form_data {
    flex-grow: 8;
    line-height: 1.4rem;
}
.form_data input,
.form_data select,
.form_data textarea {
    width: calc(100% - 20px);
    min-height: calc(60px - 20px - 4px);
    padding: 10px;
    background: #fff;
    border: solid 2px #dbdbdb;
    border-radius: 8px;
}
.form_data textarea {
    height: 200px;
}
.form_data input:focus,
.form_data select:focus,
.form_data textarea:focus {
    color: #000;
    min-height: calc(60px - 20px - 4px);
    background: #fff;
    border: solid 2px #000;
}

/* radio button */
.form_data .radio_form {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 30px;
}
.form_data .radio_form input {
    width: 16px;
    min-height: 16px;
}
.form_group .form_data input[type="radio"] {
    margin-right: 10px;
    margin-top: -5px;
}
@media screen and (max-width: 960px) {
	.form_group {
	    align-items: start;  /* 左寄せ（ターゲットは form_title） */
	    flex-direction: column;
	}
	.form_title {
	    flex-basis: auto;
	    margin-bottom: 15px;
	}
	.form_data {
	    width: 100%;
	}
	.form_data input,
	.form_data select,
	.form_data textarea {
	    width: calc(100% - 20px);
	    min-height: calc(60px - 12px);
	    padding-top: 0px;
	    padding-bottom: 0px;
	}
}

/* result-message */
.result-message {
    padding-top: 80px;
    padding-bottom: 160px;
    font-size:1.1rem;
    line-height: 2.0rem;
    text-align: center;
    display: table;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 767px) {
    .result-message {
        font-size: 0.8rem;
        padding-top: 60px;
        padding-bottom: 100px;
    }
}


/* =========================================================
    CONTACT
========================================================= */
#contact {
    padding-top: 180px;
    padding-bottom: 60px;
}

#contact .floating_msg_line {
    margin-bottom: 0px;
}

/* flame */
#contact .sec5_flame {
    width: 720px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#contact .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* illust */
#contact .sec5_eri_base {
    position: relative;
    width: 100%;
}
#contact img.eri5 {
    position: absolute;
    right: -20px;
    bottom: -44px;
}

#contact .sec6_eri_base {
    position: relative;
    width: 100%;
}
#contact img.eri6 {
    position: absolute;
    left: -200px;
    top: 20px;
}

/* contants */
#contact .contact_contents {
    width: calc(720px - 160px);
    padding: 40px 80px;
    margin-top: 60px;
    margin-bottom: 100px;
    border-top: solid 20px #E1197D;
}

#contact .contact_msg {
    font-size: 1.0rem;
    line-height: 1.4rem;
}

/* check box */
#contact .userinfo .form_group .checkbox_form {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}
#contact .userinfo .form_group .checkbox_form input {
    display: block;
    width: 20px;
    min-height: 20px;
    accent-color: #E1197D;
}
#contact .userinfo .form_group .checkbox_form input[type="checkbox"] {
    display: inline-block;
    margin-right: 10px;
    margin-top: -3px;
}

/* USER INFO */
#contact .userinfo {
    width: 100%;
    display: table;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
}
#contact .userinfo .form_group {
    font-size: 1.0rem;
    padding-top: 18px;
    padding-bottom: 18px;
    align-items: start;
    flex-direction: column;
}
#contact .userinfo .form_group .form_title {
    flex-basis: auto;
}
#contact .userinfo .form_group .form_data {
    flex-grow: 1;
    width: 100%;
    margin-top: 10px;
}
#contact span.hissu { 
	display: inline-block;
    font-size: 0.9rem;
    font-weight: bold;
    color: #E1197D;
}

@media screen and (max-width: 960px) {
	#contact {
	    padding-top: 0px;
	    padding-bottom: 0px;
	}
	/* flame */
	#contact .sec5_flame {
	    width: calc(100vw - 30px);
	    height: auto;
	    margin-top: 60px;
	}

	/* illust */
	#contact .sec5_eri_base {
	}
	#contact img.eri5 {
	    width: 26vw;
	    right: 0px;
	    bottom: -44px;
	}

	#contact .sec6_eri_base {
	}
	#contact img.eri6 {
	    width: 26vw;
	    left: 0px;
	    top: -13px;
	}

	/* contants */
	#contact .contact_contents {
	    width: calc(100vw - 30px);
	    padding: 20px 0px;
	    margin-bottom: 20px;
	    border-top: solid 16px #E1197D;
	}
	#contact .contact_msg {
	    font-size: 1.0rem;
	    line-height: 1.4rem;
	}

}


@media screen and (max-width: 767px) {
    #contact .userinfo {
        width: 100%;
        margin-top: 20px;
        padding-top: 0px;
    }
    #contact .userinfo .form_group .th {
        display: block;
        width: 100%;
        margin-top: 12px;
        margin-left: 0px;
        margin-right: 0px;
    }
	#contact .userinfo .form_group .th span.none {
		display: none;
	}
}

/* CONFIRM MESSAGE */
#contact .confirm_msg {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #ff0000;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 2.0rem;
    text-align: center;
}




/* BUTTON */
/* checkbox + send */
#contact .snd_btn_confirm {
    display: flex;
    justify-content: center;
    align-items: center;
}
#contact .snd_btn_confirm button {
    position: relative;
    padding: 20px 60px 20px 60px;
    border-radius: 30px;
    background-color: #FFC8E1;
    font-size: 1.125rem;  /* 18px */
    letter-spacing: 0.1rem;
    text-align: center;
    text-decoration: none;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    transition: 0.5s;
    cursor: pointer;
}
#contact .snd_btn_confirm button.positive {  /* 有効化 */
    background-color: #E1197D;
}
#contact .snd_btn_confirm button:after {
    position: absolute;
    right: 20px;
/*    content: "\203A";  */
    content: "\25B8";
    font-size: 1.2rem;
    padding-bottom: 0px;
    color: #fff;
}

#contact .snd_btn_confirm:hover,
#contact .snd_btn:hover {
    cursor: pointer;
    transition: 0.5s;
    opacity: 0.5;
}


/* reset&back */
#contact .back_btn button {
    padding: 8px 70px 6px 70px;
    border-radius: 20px;
    background-color: #a5a5a5;
    font-size: 1.0rem;
    letter-spacing: 0.1rem;
    text-align: center;
    text-decoration: none;
    color: #fff;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    transition: 0.5s;
}
#contact .back_btn:hover {
    cursor: pointer;
    transition: 0.5s;
    opacity: 0.5;
}


/* result-message */
#contact .result-message {
    padding-top: 80px;
    padding-bottom: 160px;
    font-size:1.1rem;
    font-weight: bold;
    line-height: 2.0rem;
    text-align: center;
    color: #000;
}

@media screen and (max-width: 960px) {
	/* checkbox + send */
	#contact .snd_btn_confirm {
	}
	#contact .snd_btn_confirm button {
	    margin-top: 120px;
	}
}
@media screen and (max-width: 768px) {
    #contact .result-message {
        font-size: 0.8rem;
        padding-top: 60px;
        padding-bottom: 100px;
    }
}


/* =========================================================
    reCAPTCHA 位置変更
========================================================= */
.grecaptcha-badge {
/*
    left: 10px;
    opacity: 0.8;
*/
}
@media screen and (max-width: 960px) {
/*
	.grecaptcha-badge {
	    bottom: 80px!important;
	    left: 10px;
	    width: 70px!important;
	    opacity: 0.5;
	}
*/
}


/* *********************************************************
    Common Style - parts -
      定義済CSSを上書きできるよう、最後に記述すること
********************************************************* */
/* =========================================================
    Spacer
========================================================= */
/* margin */
.mar_t_10 {
   margin-top: 10px;
}
.mar_t_20 {
   margin-top: 20px;
}
.mar_t_30 {
   margin-top: 30px;
}
.mar_t_40 {
   margin-top: 40px;
}
.mar_t_80 {
   margin-top: 80px;
}
.mar_t_100 {
   margin-top: 100px;
}

.mar_b_10 {
   margin-bottom: 10px;
}
.mar_b_20 {
   margin-bottom: 20px;
}
.mar_b_30 {
   margin-bottom: 30px;
}
.mar_b_40 {
   margin-bottom: 40px;
}
.mar_b_80 {
   margin-bottom: 80px;
}
.mar_b_100 {
   margin-bottom: 100px;
}

/* padding */
.pad_t_10 {
   padding-top: 10px;
}
.pad_t_20 {
   padding-top: 20px;
}
.pad_t_40 {
   padding-top: 40px;
}
.pad_t_80 {
   padding-top: 80px;
}

.pad_b_10 {
   padding-bottom: 10px;
}
.pad_b_20 {
   padding-bottom: 20px;
}
.pad_b_40 {
   padding-bottom: 40px;
}
.pad_b_80 {
   padding-bottom: 80px;
}


/* =========================================================
    Common
========================================================= */
/* opacity */
.opacity6 a:hover {
    opacity: 0.6;
}
.opacity7 a:hover {
    opacity: 0.7;
}
.opacity8 a:hover {
    opacity: 0.8;
}
.opacity9 a:hover {
    opacity: 0.9;
}

.center_block {
    display: table;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.center_block_chg {  /* SP時にはdisplay: blockにするタイプ。SP時にslideinが崩れるため */
    display: table;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
@media screen and (max-width: 960px) {
	.center_block_chg {
	    display: block;
	}
}

/* =========================================================
    System message
========================================================= */
.system_msg {
    margin-top:150px;
    margin-bottom:80px;
    margin-left:0px;
    font-size:1.1rem;
    line-height: 2.0rem;
    text-align: center;
    color: #000;
}
.system_msg_gray {
    margin-top:50px;
    margin-bottom:80px;
    margin-left:0px;
    font-size:1.1rem;
    line-height: 2.0rem;
    text-align: center;
    color: #969696;
}
.system_msg_white {
    margin-top:50px;
    margin-bottom:80px;
    margin-left:0px;
    font-size:1.1rem;
    line-height: 2.0rem;
    text-align: center;
    color: #fff;
}
.system_msg,
.system_msg_gray,
.system_msg_white {
    min-height: 500px;  /* サイト毎に微調整 */
}
/* Coming Soon */
.soon {
    margin-top:50px;
    margin-bottom:80px;
    margin-left:0px;
    font-size:1.1rem;
    line-height: 2.0rem;
    text-align: center;
    color: #000;
}

