@charset "utf-8";

/*-------------- 共通 --------------*/
<!--[if IE]>
html, body {
	height: 100%;
	overflow: auto;
	margin: 0;
	padding: 0;
}
<![endif]-->

*{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

html,body{
    font-family: "Arial","MS ゴシック",sans-serif;
    font-size: 16px;
    margin: 0px;
    padding: 0;
}

body {
    width: 100%;
    font-size: 100%;
    color: #333;
    line-height: 1.5;
    text-align: center;
    -webkit-text-size-adjust: 100%;
}

a {
    text-decoration: none;
    display: block;
    color: #333;
}

a:hover{
    text-decoration: none;
    display: block;
    color: #333;
    opacity: 0.7;
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    -o-transition: ease 0.3s;
    transition: ease 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

#wrapper {
    width: 100%;
}

/* title */
.big_title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #4a220c;
}
.small_title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #4a220c;
}
.middle_title {
    font-size: 150%;
    text-align: left;
    border-bottom: 2px solid #4c817b;
    padding-bottom: .5em;
}
#products h3 {
    font-size: 150%;
    text-align: left;
    border-bottom: 2px solid #4c817b;
    padding-bottom: .5em;
}

/* text */
.lead_txt {
    line-height: 2em;
}
.plain_txt {
    text-align: justify;
    line-height: 2em;
}

/* btn */
.more_btn {
    position: relative;
    text-decoration: none;
    display: inline-block;
    background: #4c817b;
    border-radius: 4px;
    text-align: center;
    outline: none;
    transition: ease .2s;
}
.more_btn a {
    padding: 10px 60px 10px 50px;
    color: #fff;
}

.more_btn:hover {
    background: #39615c;
}
.more_btn a:hover {
    opacity: 1;
}

.btn_arrow::after {
    content: '';
    position: absolute;
    top: 40%;
    right: 30px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: all .3s;
}

.btn_arrow:hover::after {
    right: 25px;
}

/* to top btn */
.top_btn{
    position: fixed;
    bottom: 3%;
    right: 3%;
    z-index: 10000;
    background: #4c817b;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.top_btn.open{
    display: none;
}

.fa-angle-up{
    font-size: 28px;
    color: #fff;
    text-align: center;
    margin-bottom: 2px;
   position: absolute;
    top: 47%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.anchor {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}

/* margin */
.mb24 {
    margin-bottom: 24px;
}
.mb32 {
    margin-bottom: 32px;
}
.mb48 {
    margin-bottom: 48px;
}
.mb56 {
    margin-bottom: 56px;
}
.mb72 {
    margin-bottom: 72px;
}
.mb96 {
    margin-bottom: 96px;
}

/* padding */
.pd_tb64 {
    padding: 64px 0;
}
.pd_tb80 {
    padding: 80px 0;
}
.pd_tb96 {
    padding: 96px 0;
}
.pd_t96 {
    padding-top: 96px;
}
.pd_b24 {
    padding-bottom: 24px;
}
.pd_b40 {
    padding-bottom: 40px;
}
.pd_b48 {
    padding-bottom: 48px;
}
.pd_b96 {
    padding-bottom: 96px;
}


/* bg color */
.bg_green {
    background-color: #edf4ea;
}
.bg_gray {
    background-color: #f1f1f1;
}
.bg_pbrown {
    background-color: #f9eae1;
}
.bg_brown {
    background-color: #4a220c;
}

/* color
#4a220c deep brown
#f9eae1 pale brown
#4c817b deep green
#edf4ea pale green
#00aaa7 light green
#1a1a1a black
#f1f1f1 gray
*/

/*-------------- header --------------*/
.header {
    width: 100%;
    height: 80px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: rgba(31,31,31,.2) 0 2px 2px;
    z-index: 100;
}

.h_inner {
    width: 100%;
}

.logo h1 {
    color: #4a220c;
    font-size: 250%;
    font-family: 'Kiwi Maru', serif;
    font-weight: 500;
    position: fixed;
    top: 8px;
    left: 10px;
}

.gnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    position: fixed;
    top: 17px;
    right: 0;
}

.gnav ul li a {
    padding: 10px 20px;
}

/* toggle */
/* mobile menu */
    /*.con-small {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    }*/
  .mobile-menu {
        margin-right: 2%;
        font-size: 175%;
        color: #fff;
        position: fixed;
        right: 0;
        top: 11px;
        line-height: 1;
        opacity: 0.8;
        /*padding: 0 10px 5px;*/
        background-color: #4c817b;
        cursor: pointer;
        z-index: 1000;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .mobile-menu p {
        font-size: .57em;
        text-align: center;
        color: #fff;
        line-height: normal;
    }
    .mobile-menu:hover {
        opacity: 0.7;
    }
    #acmenu {
    /*background-color: rgba(255,255,255,0.7);*/
        padding: 15px;
    }
    .mobile-menu a {
        display: none;
    }
    #Menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background:rgba(0,0,0,0.6); 
        padding-top: 100px;
        /*padding-left: auto;*/
        z-index: 500;
    }
    #Menu li {
        display: block;
        text-align: center;
    }
    #Menu a {
        font-size: 1.2em;
        font-weight: bold;
        color: #fff;
        padding: 20px 0;
    }
    #Menu a:hover {
        background-color: #1a1a1a;
        opacity: .7;
    }
    #Menu .show {
        display: block;
    }
/* end toggle */

/*-------------- hero --------------*/
#hero {
    /*padding-top: 80px;*/
    position: relative;
}

.head_line {
    position: absolute;
    width: 90%;
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 5;
}
.head_line p {
    display: inline-block;
    font-size: 250%;
    color: #4a220c;
    margin-bottom: 0;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    text-shadow: 
       2px  2px 4px #ffffff,
      -2px  2px 4px #ffffff,
       2px -2px 4px #ffffff,
      -2px -2px 4px #ffffff,
       2px  0px 4px #ffffff,
       0px  2px 4px #ffffff,
      -2px  0px 4px #ffffff,
       0px -2px 4px #ffffff;        /* 文字の影 */
}

/* swiper slider */
.swiper-wrapper .swiper-slide {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;  //全画面表示
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/*-------------- main --------------*/
/* itam section */
.picup {
    position: relative;
}
.picup_icon img {
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: 1;
}


.pht_icon_circle {
    border-radius: 50%;
    width: 210px;
    height: 210px;
    margin: 0 auto 1em;
    overflow: hidden;
}
.pht_icon_circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-duration: .3s;
}
.pht_icon_circle img:hover {
    transform: scale(1.2);
    transition-duration: .3s;
}
.caption_l {
    font-size: 125%;
    font-weight: 600;
    margin-bottom: 0;
}

/* news section */
.news {
    margin: 0 auto;
    text-align: left
}

.n_list {
    display: flex;
    flex-wrap: wrap;
}

.n_list dt {
    width: 20%;
    font-weight: normal;
    border-bottom: 1px solid #000;
    padding-top: 1em;
    padding-left: 1em;
}

.n_list dd {
    width: 80%;
    border-bottom: 1px solid #000;
    padding: 1em 0;
    margin-bottom: 0;
}

/* contact section */
.contact_inner {
    max-width: 800px;
    margin: 0 auto 32px;
    font-size: 119%;
    line-height: 2em;
}

.contact_flbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.contact_tbox, .contact_btn {
    margin: 0 1.5em;
}

.contact_tbox p {
    font-size: 200%;
    font-weight: 600;
    margin-bottom: 0;
}
.contact_tbox i {
    margin-right: .5em;
}

.contact_btn {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #4a220c;
    font-size: 125%;
    font-weight: bold;
    transition: ease .2s;
}
.contact_btn span {
    position: relative;
    z-index: 3;
    color: #4a220c;
}
.contact_btn:hover span {
    color: #fff;
}
.bgskew::before {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    background: #4a220c;
    width: 120%;
    height: 100%;
    transform: skewX(-25deg);
}
.bgskew:hover::before {
    animation: skewanime .5s forwards;
}
@keyframes skewanime {
    100% {
        left: -10%;
    }
}
.contact_btn a {
    color: #4a220c;
    padding: 10px 40px;
    opacity: 1;
}
.contact_btn i {
    margin-right: 1em;
}

/*-------------- foot area --------------*/
.foot_add {
    /*min-height: 225px;*/
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(../images/foot_img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 5% 0;
}

.fadd_inner {
    margin: 0 auto;
}

.flogo {
    font-size: 200%;
    font-family: 'Kiwi Maru', serif;
    font-weight: 500;
}
.flogo_s {
    font-size: 75%;
}

/* foot nav */
.foot_nav {
    text-align: left;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.foot_nav a {
        color: #fff;
}
.foot_nav a:hover {
    text-decoration: underline;
}
.f_nav_l {
    font-size: 113%;
    margin-bottom: 1em;
}
.f_nav_s {
    font-size: 88%;
    margin-bottom: .75em;
}
.f_nav_s02 {
    font-size: 88%;
    margin-bottom: 1.75em;
}

#footer {
    color: #fff;
    padding: 8px;
    border-top: 1px solid #fff;
}


/*================ under page ================*/
#u_cover {
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 80px;
    left: 0;
}

.u_headline {
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 35%;
    left: 10%;
    z-index: 5;
}
.u_headline h1 {
    font-size: 3em;
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
    text-align: left;
    line-height: .75em;
}
.title_en {
    font-size: .4em;
}

/* cover */
#company #u_cover {
    width: 100%;
    height: 240px;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), url(../images/exterior01.jpg);
    background-position: center;
    background-size: cover;
    margin-bottom: 176px;
}
#cases #u_cover {
    width: 100%;
    height: 240px;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), url(../images/gallery_cover.jpg);
    background-position: center;
    background-size: cover;
    margin-bottom: 176px;
}
#products #u_cover {
    width: 100%;
    height: 240px;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), url(../images/products_cover.jpg);
    background-position: center;
    background-size: cover;
    margin-bottom: 176px;
}
#services #u_cover {
    width: 100%;
    height: 240px;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), url(../images/services_cover.jpg);
    background-position: center;
    background-size: cover;
    margin-bottom: 176px;
}
#contact #u_cover,
#thanks #u_cover {
    width: 100%;
    height: 240px;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), url(../images/contact_cover.jpg);
    background-position: center;
    background-size: cover;
    margin-bottom: 176px;
}


/*-------------- company --------------*/
/* message */
.lead_title {
    /*text-align: left;*/
    line-height: 1.5em;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
}

.mess_name_box {
    text-align: right;
    margin-right: 3.5em;
}
.mess_name_box p {
    font-size: 113%;
}
.mess_corpname {
    padding-right: 3.8em;
}
.mess_name {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 150%;
}

/* about,history list */
.about,
.history {
    text-align: left;
    font-size: 113%;
    margin-bottom: 0;
}
.about_list,
.history_list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.about_list dt,
.history_list dt {
    width: 30%;
    font-weight: normal;
    border-bottom: 2px solid #8abab5;
    padding: 1em;
}
.about_list dd,
.history_list dd {
    width: 70%;
    border-bottom: 2px solid #4d4d4d;
    padding: 1em;
    margin-bottom: 0;
}
.about {
    margin-bottom: 72px;
}

.access iframe {
    vertical-align: bottom;
}

/*-------------- cases --------------*/
/* gallery */
.card p.card_photo {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}
.card p.card_photo img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    /*transition: transform .3s;*/
}
/*.card:hover p.card_photo img {
    transform: scale(1.2);
}*/
/*.h100 {
    height: 100%;
}*/
.card p.card_photo {
    margin-bottom: 0;
}

/*-------------- products --------------*/
.list_box {
    width: 100%;
    margin-bottom: 72px;
}
.list_item {
    text-align: left;
    font-size: 125%;
    font-weight: 600;
    color: #4c817b;
    margin-bottom: 1em;
}
.list_name {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.list_name li {
    display: block;
    width: 25%;
    padding: 1em 0;
}
.list_name li a:hover {
    color: #39615c;
}

.ln_icon {
    width: 50%;
    margin: 0 auto;6
}

/* commitment */
.commit_bgimg {
    width: 100%;
    height: 224px;
    overflow: hidden;
    background-image: url(../images/service_commitment_img06.jpg);
    background-position: center;
    background-size: cover;
    /*margin-bottom: 96px;*/
}

/*.commit_bgimg {　保留
    width: 100%;
    height: 100%;
    max-height: 216px;
    overflow: hidden;
    margin-bottom: 96px;
}
.imgline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.imgline li {
    object-fit: cover;
    height: auto;
}*/

/*-------------- services --------------*/
/* taglist */
.taglist_box {
    margin-bottom: 80px;
}
.taglist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.taglist li {
    padding: .5em 1.5em;
    border: 2px solid #4c817b;
    border-radius: 20px;
    margin: 0 .5em 1em
}

/* remodeling */
.remodeling_title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #4a220c;
    padding: 10px 10px 10px 20px;
    background: #f9eae1;
    box-shadow: 0 0 20px rgba(0,0,0,.15)inset;
    text-align: left;
}
#services .ror .row:nth-child(even) {
    flex-direction: row-reverse;
}

.fl_card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ex_photo {
    width: 45%;
    overflow: hidden;
    position: relative;
}
.ex_photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ex_photo p {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    color: #fff;
    background-color: #39615c;
    line-height: 1;
    padding: 5px 10px;
}

.arrow {
    width: 10%;
    position: relative;
}
.arrow i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    font-size: 400%;
    color: #4c817b;
    display: block;
}

/* slide toggle */
.accordion-container {
  position: relative;
  width: 100%;
  /*border: 1px solid #0079c1;*/
  /*border-top: none;*/
  outline: 0;
  cursor: pointer
}

.accordion-container .accordion-title {
  display: block;
  position: relative;
  margin: 0;
  padding: 1em 2em;
  font-size: 1.25em;
  font-weight: normal;
    text-align: left;
  color: #fff;
  background: #39615c;
  cursor: pointer;
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-container .content-entry.open .accordion-title {
  background-color: #4c817b;
  color: white;
}

.accordion-container .accordion-title:hover i:before,
.accordion-container .accordion-title:hover i:active,
.accordion-container .content-entry.open i {
  color: white;
}

.accordion-title{
  position: relative;
}
.accordion-title::before {
    content: "Q";
    color: #fff;
    margin-right: 1rem;
}
.accordion-title:after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.accordion-title.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}

.accordion-content {
  display: none;
    text-align: justify;
  padding: 1.2em 2.5em;
}
.accordion-content p {
    margin-left: 1.5em;
    text-indent: -1.5em;
    font-size: 130%;
}
.accordion-content p::before {
    content: "A";
    font-size: 130%;
    color: deeppink;
    margin-right: .5em;
}
/*-----*/

/* partner
.partner_title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.5em;
    margin-bottom: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.partner_title::before,
.partner_title::after {
    content: '';
    width: 20%;
    height: 2px;
    background-color: #4c817b;
}
.partner_title::before {
    margin-right: 1em;
}
.partner_title::after {
    margin-left: 1em;
}
.partner_list {
    line-height: 2.5em;
} */

/*-------------- privacy --------------*/
.big_title2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #4a220c;
}

.pp_box {
    text-align: left;
}

#privacy h2 {
    font-size: 1.75rem;
    border-bottom: 3px solid #edf4ea;
    line-height: 1.5em;
    margin-bottom: 24px;
    position: relative;
}
#privacy h2::after {
    position: absolute;
    content: "";
    display: block;
    border-bottom: 3px solid #4c817b;
    bottom: -3px;
    width: 20%;
}

.pp_name {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

/*-------------- contact form --------------*/
/* mailform */
.form_txt {
    width: 100%;
    margin-bottom: 32px;
}

.mailform p{
    width: 100%;
    text-align: center;
    /*margin-top: 65px;*/
    font-size: 12px;
}

input[type="text"],
textarea{
    border: solid 0.5px #808080;
    background-color: #fff;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    width: 700px !important;
    height: 46px;
    padding: 8px 10px;
    -webkit-box-shadow: 1px 1px 1px 1px #e6e6e6 inset;
       -moz-box-shadow: 1px 1px 1px 1px #e6e6e6 inset;
            box-shadow: 1px 1px 1px 1px #e6e6e6 inset;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.flbox_mr {
    margin-right: 30%;
}

textarea{
    height: 200px;
}

.mailform{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: 960px;
    margin: 0 auto;
    font-size: 14px;
}

.mobile_br{
    display: none;
}

.mailform dt{
    width: 200px;
    height: 46px;
    background: #f9eae1;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    padding: 12px 12px;
    margin-right: 29px;
    margin-top: 20px;
    line-height: 1.5em;
}

.mailform dd{
    margin-top: 20px;
}

.mailform span{
    color: #E4007F;
}

/*input[type="button"] {
    background-color: gray;
    padding: 3px 16px;
    border-radius: 5px;
    clear: left;
    color: #fff;
}*/

.submit{
    text-align: center;
    margin: 65px auto 0;
    font-size: 16px;
    /*padding: 0 60px;*/
    width: 260px;
    height: 45px;
    background: #4c817b;
    -webkit-border-radius: 20px;
       -moz-border-radius: 20px;
            border-radius: 20px;
    line-height: 45px;
    color: #fff;
}

input[type="submit"]{
    border-style: none;
    padding: 0 66px;
}

.submit:hover{
    opacity: 0.7;
}

/*#contact .iframe {
    width: 9rem;
    height: 100%;
    margin: 0 auto;
}

#contact .iframe:hover {
    color: #e4007f;
    opacity: 1;
}*/

/*---------- thanks ----------*/
.thanks_inner {
    text-align: center;
}

.thanks_inner p{
    margin: 8vh 0 10vh;
    line-height: 2em;
}


/*- animate調整用 -*/
@-webkit-keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}