@charset "utf-8";
@import url('https://fonts.googleapis.com/earlyaccess/hannari.css');
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@font-face {
    font-family: 'Hannari';
    src: url(font/Hannari.ttf);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
section,
summary,
time,
mark,
audio,
video {
    border: 0;
    font: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none;
    content: '';
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    color: #333;
    font-family: 'Noto Sans Japanese', 'Noto Sans Japanese', sans-serif;
}

html {
    font-size: 16px;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

a {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    opacity: 0.6;
}

ul,
li,
h1,
h2,
h3,
p {
    margin: 0;
    padding: 0;
}

.ttl_box {
    width: 100%;
    text-align: center;
    padding-bottom: 88px;
}

.ttl img {
    margin: 0 auto;
}

h2 {
    font-size: 80px;
    color: #fff;
    text-shadow: 1px 1px 0 #61442B, -1px 1px 0 #61442B, 1px -1px 0 #61442B, -1px -1px 0 #61442B;
    font-family: Balzano Std;
}

.sub_ttl {
    font-size: 24px;
    font-weight: bold;
    padding: 20px 0 14px;
    color: #4e4e4f;
}

h3 {
    font-size: 40px;
}

a {
    color: #333;
    text-decoration: none;
    -webkit-transition: .3s;
    transition: .3s;
}

p {
    font-family: 'Noto Sans CJK JP', 'Noto Sans Japanese', sans-serif;
    font-size: 16px;
    color: #333;
}

ul li {
    list-style: none;
}

.attention {
    margin: auto;
    font-size: 14px;
    text-align: left;
    display: inline;
    width: 80%;
    padding: 20px 0;
}

.all-wrap {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
}

.about_detail h3 .span1 {
    font-size: 36px;
}

.inner {
    width: 95%;
    margin: 0 auto;
    max-width: 1000px;
}

.flex-box {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
}

.to-form {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    width: 22.5%;
    background-color: #ff974d;
    color: #fff;
    display: block;
    padding: 20px 0;
    border: 1px solid #333;
    box-shadow: 6px 6px 0px 0px #c7c7c7;
    margin: 70px auto 20px auto;
    position: relative;
    min-width: 420px;
}

.to-form:hover {
    color: #ff974d;
    background-color: #fff;
    opacity: 1;
}

.to-form:after {
    background-image: url(../img/toform_arrow.png);
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 14px;
    top: 28px;
    width: 20%;
    padding-bottom: calc(100%*35/92);
    /* calc(100*高さ/幅)% */
}

.to-form:hover:after {
    background-image: url(../img/toform_arrow_hov.png);
}


/*ふわっと現れるアニメーション*/

.js-animation {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: all 1s;
}

.js-animation.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}


/*header*/

header {
    height: 65px;
    width: 100%;
    position: fixed;
    background-color: #fff;
    z-index: 100;
}

header a {
    float: left;
}

header a i {
    font-size: 30px;
    margin-right: 5px;
}

header ul {
    float: right;
}

header ul li {
    float: left;
    margin: 20px 30px;
    line-height: 29px;
}

header ul li a {
    font-size: 20px;
    font-weight: 900;
}

header ul li a:hover {
    color: #8D3109;
    opacity: 1;
}

header>a {
    padding: 5px 0 10px 22px;
    line-height: 29px;
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

header i {
    color: #61442B;
    width: 35px;
}

header img {
    width: 100px;
    padding-bottom: 5px;
    padding-right: 10px;
}


/*top*/

.top {
    position: relative;
}

.logo {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 20%;
    height: 50vh;
    min-height: 200px;
    z-index: 10;
}

@media screen and (min-height: 1170px) {
    .logo {
        top: 15%;
    }
}

.bgCrossFade,
.bgCrossFade2 {
    position: relative;
    height: 90vh;
    min-height: 700px;
    z-index: 1;
}

@media screen and (min-height: 1170px) {
    .bgCrossFade,
    .bgCrossFade2 {
        height: 73vh;
        min-height: 1000px;
    }
}

.bgCrossFade3 {
    position: relative;
    height: 100vh;
}



@media screen and (min-width:769px) {
    .bgCrossFade3 {
        display: none !important;
        background-image: none !important;
    }
    .bgCrossFade3 .slides3 {
        display: none !important;
        background-image: none !important;
    }
}

.bgCrossFade .slides,
.bgCrossFade2 .slides2,
.bgCrossFade3 .slides3 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center top;
}


.bgCrossFade2 .slides2 {
    background-repeat: no-repeat;
}

.bgCrossFade .slides:not(:first-child),
.bgCrossFade2 .slides2:not(:first-child),
.bgCrossFade3 .slides3:not(:first-child) {
    display: none;
    background-position: center;
}

.bgCrossFade p,
.bgCrossFade2 p,
.bgCrossFade3 p {
    position: absolute;
    top: -0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 500px;
    height: 150px;
    margin: auto;
    font-size: 24px;
    line-height: 150px;
    background: #fff;
    opacity: .6;
    color: #000;
    text-align: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}

.slide:not(:first-child) {
    display: none;
}

.top {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 50px;
}

.bg-sub {
    width: 100%;
    top: -27px;
    left: 0;
    position: absolute;
    z-index: 12;
    height: 30px;
    margin-bottom: -3px;
}


/* ふわふわ上にあがるやつ */

.top-img-big {
    position: absolute;
    animation: huwahuwa 15s linear infinite;
    z-index: 150;
    min-width: 210px;
}

@keyframes huwahuwa {
    0% {
        transform: translate(90px, 0)
    }
    33.3% {
        transform: translate(0, -500px)
    }
    66.6% {
        transform: translate(90px, -1000px)
    }
    100% {
        transform: translate(0, -1500px)
    }
}

@keyframes huwahuwa2 {
    0% {
        transform: translate(0, 0)
    }
    33.3% {
        transform: translate(90px, -500px)
    }
    66.6% {
        transform: translate(0, -1000px)
    }
    100% {
        transform: translate(90px, -1500px)
    }
}

.top-img-small {
    position: absolute;
    animation: huwahuwa-small 15s linear infinite;
    z-index: 150;
    min-width: 120px;
}

@keyframes huwahuwa-small {
    0% {
        transform: translate(90px, 0)
    }
    33% {
        transform: translate(0, -500px)
    }
    66% {
        transform: translate(90px, -1000px)
    }
    100% {
        transform: translate(0, -1500px)
    }
}

.top-img1 {
    left: 5%;
    bottom: -300px;
    width: 18%;
    max-width: 300px;
}

.top-img2 {
    left: 5%;
    bottom: -200px;
    width: 10%;
    max-width: 250px;
}

.top-img3 {
    right: 22%;
    bottom: -370px;
    width: 18%;
    max-width: 300px;
}

.top-img4 {
    right: 5%;
    bottom: -190px;
    width: 10%;
    max-width: 250px;
    animation: huwahuwa-small2 15s linear 1;
}

.top-img5 {
    right: 5%;
    bottom: -300px;
    width: 18%;
    max-width: 300px;
}
@media screen and (min-height: 1170px) {
    .top-img1 {
        bottom: -350px;
    }
    
    .top-img2 {
        bottom: -250px;
    }
    
    .top-img3 {
        bottom: -420px;
    }
    
    .top-img4 {
        bottom: -240px;
    }
    
    .top-img5 {
        bottom: -350px;
    }
}


@keyframes huwahuwa-small1 {
    0% {
        transform: translate(90px, -600px)
    }
    33.3% {
        transform: translate(0, -1000px)
    }
    66.6% {
        transform: translate(90px, -1400px)
    }
    100% {
        transform: translate(0, -1800px)
    }
}

@keyframes huwahuwa-small2 {
    0% {
        transform: translate(90px, -600px)
    }
    33.3% {
        transform: translate(0, -1000px)
    }
    66.6% {
        transform: translate(90px, -1400px)
    }
    100% {
        transform: translate(0, -1800px)
    }
}


/* subimg1 */

.top-subimg1 .top-img-big {
    animation: huwahuwa1 15s linear 1;
    z-index: 2;
}

@keyframes huwahuwa1 {
    0% {
        transform: translate(90px, -600px)
    }
    33.3% {
        transform: translate(0, -1000px)
    }
    66.6% {
        transform: translate(90px, -1400px)
    }
    100% {
        transform: translate(0, -1800px)
    }
}

.top-subimg1 .top-img-small {
    position: absolute;
    animation: huwahuwa-small1 15s linear 1;
    z-index: 2;
}

@keyframes huwahuwa-small1 {
    0% {
        transform: translate(0, -600px)
    }
    33% {
        transform: translate(-90px, -1000px)
    }
    66% {
        transform: translate(0, -1400px)
    }
    100% {
        transform: translate(-90px, -1800px)
    }
}

.top-subimg1 .top-img1 {
    bottom: -300px;
}

.top-subimg1 .top-img2 {
    bottom: -600px;
    animation: huwahuwa-small2 15s linear 1;
}

.top-subimg1 .top-img3 {
    bottom: -300px;
}

.top-subimg1 .top-img4 {
    bottom: -650px;
}


/* top-subimg2 */

.top-subimg2 .top-img-big {
    animation: huwahuwa 16s linear 3s infinite;
    z-index: 2;
}

.top-subimg2 .top-img-small {
    position: absolute;
    animation: huwahuwa-small 16s linear 8s infinite;
    z-index: 2;
}


/* top-subimg3 */

.top-subimg3 .top-img-big {
    animation: huwahuwa 16s linear 11s infinite;
    z-index: 2;
}

.top-subimg2 .top-img3,
.top-subimg3 .top-img3 {
    animation: huwahuwa2 16s linear 3s infinite;
    z-index: 2;
}

.top-subimg3 .top-img-small {
    position: absolute;
    animation: huwahuwa-small 16s linear 16s infinite;
    z-index: 2;
}


/* ふわふわ上にあがるやつ */

#slide {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

#slide ul {
    width: 100%;
    height: 700px;
}

#slide ul li {
    position: relative;
    width: 100%;
}

#slide ul li img {
    width: 2000px;
    height: 700px;
    z-index: -1;
}


/*scrollbar*/

.l-section-top {
    width: 100%;
    height: 100%;
    background-color: #333;
    position: relative;
}

.l-section-container {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    bottom: 0;
    margin: auto;
    overflow: hidden;
}

.c-title {
    margin: 0;
    color: #eee;
    text-align: center;
}

.c-scrolldown {
    width: 2px;
    height: 60px;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    transition: .3s;
    z-index: 90;
}

.c-scrolldown.is-hidden {
    opacity: 0;
}

.top-scroll .is-hidden {
    opacity: 0;
}

.c-line {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(to bottom, #333 50%, rgba(97, 68, 43, 0) 50%);
    background-position: 0 -60px;
    background-size: 100% 200%;
    animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

.top-scroll {
    position: fixed;
    bottom: 65px;
    right: 0;
    left: 0;
    margin: auto;
    display: block;
    color: #333;
    transition: .3s;
    text-shadow: #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px -2px 2px, #fff -2px 0px 2px, #fff 2px 2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff -2px -2px 2px, #fff 1px 2px 2px, #fff -1px 2px 2px, #fff 1px -2px 2px, #fff -1px -2px 2px, #fff 2px 1px 2px, #fff -2px 1px 2px, #fff 2px -1px 2px, #fff -2px -1px 2px, #fff 1px 1px 2px, #fff -1px 1px 2px, #fff 1px -1px 2px, #fff -1px -1px 2px;
    z-index: 99;
    font-weight: 900;
}

@keyframes scrolldown {
    0% {
        background-position: 0 -60px;
    }
    75% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 60px;
    }
}

@media screen and (min-height: 1170px) {
    .c-scrolldown {
        right: 31px;
        left: auto;
    }
    .top-scroll {
        right: 20px;
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
        /* -webkit-text-orientation: upright;
        text-orientation: upright; */
    }
}

/*scrollbar end*/

/* news */
.news__txt {
    padding-top: 17px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  
  .news__img {
    margin-top: 50px;
    margin-bottom: 20px;
  }
  

/* about */

.about {
    padding-bottom: 3%;
    padding-top: 37px;
    position: relative;
}

.about_exp {
    letter-spacing: 0.05em;
    line-height: 1.8;
    font-size: 16px;
    font-weight: bold;
}

.inner1 {
    max-width: 1260px;
    margin: 0 auto;
}

.about_contents {
    flex-direction: column;
}

.about_contents li {
    width: 100%;
}

.about_contents_li1 {
    background-image: url(../img/bg-main1.png);
    background-size: contain;
    background-repeat: repeat-x;
    padding-bottom: 5%;
}

.about_inner1 {
    background-image: url(../img/bg-main1-1.png);
    background-size: 100% 485px;
    background-repeat: no-repeat;
    justify-content: space-between;
    padding: 113px 0 120px;
}

.about_inner1 .about_detail {
    margin-right: 0;
    margin-left: 8%;
    padding-top: 40px;
}

.about_contents_li2 {
    background-image: url(../img/bg-main2.png);
    background-size: contain;
    background-repeat: repeat-x;
    margin-top: 80px;
    padding-bottom: 5%;
}

.about_inner2 {
    background-image: url(../img/bg-main2-1.png);
    background-size: 100% 560px;
    background-repeat: no-repeat;
    justify-content: space-between;
    margin-top: 0px;
    padding: 90px 0 55px;
}

.about_contents .about_inner1 img {
    margin-top: -20px;
}

.about_inner1 .about_detail_img {
    margin-right: 0%;
    width: 49%;
    margin-top: -41px;
}

.about_inner2 .about_detail_img {
    margin-left: 4%;
    width: 46%;
    margin-top: -30px;
}

.about_detail {
    width: 42%;
    margin-right: 8%;
}

.about_detail .to-form {
    margin-top: 50px;
}

.about_detail h3 span {
    font-size: 32px;
}

.about_detail h3 {
    display: inline;
    position: relative;
    font-weight: bold;
}

.about_inner1 h3 {
    border-bottom: dotted 3px #86a7c6;
    font-size: 43px;
    letter-spacing: 5px;
}

.about_inner2 h3 {
    border-bottom: dotted 3px #bc7f08;
    font-size: 43px;
    letter-spacing: 5px;
}

.about_detail h3 p {
    position: absolute;
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
}

.about_contents .inner1 .about_detail h3 p img {
    width: 80%;
}

.about_detail p {
    text-align: left;
    padding: 40px 0 0;
    font-weight: 500;
    line-height: 2;
}

.about_detail .to-form {
    width: 100%;
    min-width: 320px;
}

.about_detail_txt{
    display: block;
    background: #fff;
    border: 2px solid #ff974d;
    border-radius: 5px;
    color: #ff974d;
    padding: 10px 0;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    font-family: 'Noto Sans CJK JP', 'Noto Sans Japanese', sans-serif;
}

.about_detail_txt::before{
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 12px solid #FFF;
    z-index: 2;
}

.about_detail_txt::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    margin-left: -17px;
    border: 14px solid transparent;
    border-top: 14px solid #ff974d;
    z-index: 1;
}



/*present*/

.present {
    background-image: url(../img/bg_present.png);
    position: relative;
    padding-top: 30px;
}

.present_bg {
    background: url(../img/present-bg1.png) center top;
    background-repeat: repeat;
    padding-top: 35px;
    margin: 0 auto;
    padding-bottom: 95px;
}

.gold {
    width: 70%;
    margin: auto;
}

.gold img {
    width: 65%;
}

.gold p,
.silver p,
.bronze p {
    display: block;
    color: #000;
    text-align: center;
    margin-top: -20%;
    margin-bottom: 20%;
    font-size: 14px;
    font-weight: 500;
}

.gold p {
    margin-top: -19%;
    margin-bottom: 11%;
}

.winners p span {
    font-size: 20px;
    font-weight: 600;
}

.silver-bronze {
    justify-content: space-around;
}

.silver {
    width: 43%;
}

.silver img {
    width: 85%;
}

.bronze {
    width: 43%;
}

.bronze img {
    width: 85%;
}

.txt_org {
    font-size: 18px;
    color: #ff974d;
    background: linear-gradient(transparent 75%, #fee1cd 75%);
    display: inline;
}

.circle-box {
    position: relative;
    display: flex;
}

.all {
    background-color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
    border-radius: 50px;
}

.all img {
    margin: 20px auto;
    margin-left: 10%;
    width: 85%;
}

.winners {
    padding-top: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    padding-bottom: 35px;
}

.winners .ttl_box{
    padding-bottom: 40px;
}

.winners .sub_ttl {
    font-size: 20px;
    letter-spacing: 1.5px;
    padding-top: 0;
}

.present .all .attention {
    margin-top: -60px;
}

.present .sub_ttl span {
    font-size: 24px;
    color: #ff974d;
    padding: 0 5px;
    font-weight: normal;
}

.photo-book {
    width: 80%;
    border: 1px solid #c1c3c3;
    border-radius: 5px;
    height: 102px;
    margin: 5% auto 8% 12%;
}

.photo-book li:nth-child(1) {
    width: 40%;
}

.photo-book li:nth-child(1) img {
    width: 115%;
    max-width: 130%;
    margin-top: -15%;
    margin-left: -8%;
}

.photo-book li:nth-child(2) {
    width: 56%;
    text-align: left;
    /* height: auto; */
    display: inline-block;
    height: 100px;
    position: relative;
}

.photo-book li:nth-child(2) p {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 5% auto;
    padding: 0 1%;
}

.photo_txt {
    font-size: 16px;
}

/*mail*/
.mail{
    padding: 20px 30px 0;
}

.mail_ttl span{
    border-bottom: 2px solid #333;
    display: inline-block;
    margin: 0 auto;
    padding-bottom: 5px;
    font-size: 24px;
    font-weight: bold;
}

.mail_subTtl{
    margin-top: 35px;
    text-align: left;
    font-weight: bold;
}

.mail_txt{
    text-align: left;
}

/*follow*/

.follow {
    padding: 5% 0;
}

.follow .to-insta {
    width: 30%;
    font-size: 16px;
}


/* howto */

.howto {
    padding: 5% 0 3%;
    overflow: hidden;
    margin-top: -200px;
    position: relative;
}

.howto .arch {
    min-height: 400px;
    border-top-right-radius: 1000px 100px;
    border-top-left-radius: 1000px 100px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    background: #fff;
    padding-top: 60px;
}

.step {
    width: 32%;
    border-radius: 30px;
    background-color: #fff;
    padding: 40px 30px;
    position: relative;
}

.step:after {
    position: absolute;
    right: -30px;
    border-radius: 50%;
    content: url(../img/step_mark.png);
    width: 50px;
    height: 70px;
    top: 0;
    bottom: 0;
    margin: auto;
    padding-top: 20px;
}

.step1:after {
    background-color: #f3f4f3;
}

.step2:after {
    background-color: #eaefef;
}

.step3:after {
    display: none;
}

.howto ul {
    justify-content: center;
}

.step1 {
    background-color: #f3f4f3;
    z-index: 3;
}

.step2 {
    background-color: #eaefef;
    margin: 0 5px;
    z-index: 2;
}

.step3 {
    background-color: #f3f4f3;
    z-index: 1;
}

.step_subttl {
    font-size: 24px;
    padding: 20px 0;
    text-align: center;
    font-weight: bold;
}

.step_detail {
    padding-bottom: 20px;
    text-align: left;
}

.step_img1 {
    padding-top: 25px;
}

.step_img2 {
    padding-top: 35px;
}


/*detail*/

.detail {
    background-color: #fff;
    padding: 0 0 40px 0;
}

.p-App__content ::-webkit-scrollbar {
    width: 12px;
}

.p-App__content ::-webkit-scrollbar-track {
    background-image: url(../img/scroll_img01.jpg);
}

.p-App__content ::-webkit-scrollbar-thumb {
    background-image: url(../img/scroll_img02.jpg);
}

.p-App {
    background-color: #f9f8f6;
    padding: 90px 0;
}

.p-App__content {
    background-color: #fff;
    margin: auto;
    padding: 40px;
    width: 75%;
    height: 500px;
}

.p-App__title {
    border-bottom: 3px solid #ddd;
    color: #74573a;
    font-size: 1.625rem;
    line-height: 1;
    margin: 0 0 10px;
    padding: 0 0 27px;
    text-align: center;
    font-weight: bold;
}

.p-App__list-title {
    border-left: 16px solid #74573a;
    color: #74573a;
    font-size: 1rem;
    line-height: 1;
    margin: 0 0 8px;
    padding: 0 0 0 2px;
}

.p-App__block {
    padding: 30px 0 24px;
    text-align: left;
}

.p-App__block:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.p-App__item {
    font-size: .75rem;
    line-height: 2;
    padding-left: 1em;
    padding-right: 1em;
    text-indent: -1em;
}

.p-App__item a {
    color: #74573a;
}

.p-App__item--head {
    font-size: .75rem;
    line-height: 2;
}

.p-App__inner {
    max-height: 350px;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
}

.footer_area {
    background-color: #f9f8f6;
    padding-top: 45px;
}


/* special */

/* .special_wrap{
    background: #f9f8f6;
}

.special {

    background-image: url(../img/special_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
}

.special p {
    letter-spacing: 2px;
    padding-top: 10px;
}

.special .ttl_box {
    padding-bottom: 0;
    padding-top: 20px;
    position: relative;
}

.special .ttl_box:before {
    content: url(../img/special_ttl_bg.png);
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 80px;
    width: 100%;
}

.special .sub_ttl {
    padding-bottom: 10px;
}

.special_border {
    height: 75px;
    background-image: url(../img/bg_special.png)
}

.special_btn{
    display: block;
    border: 2px solid #db9f0a;
    border-radius: 8px;
    color: #db9f0a;
    width: 340px;
    margin: 18px auto 0;
    height: 40px;
    font-weight: bold;
    text-align: center;
    line-height: 36px;
}

.special_btn:hover{
    background: #db9f0a;
    color: #fff;
} */


/* award */
#award{
    padding-bottom: 50px;
}
.award-img {
    margin: auto;
}

.balloon-line {
    position: relative;
    width: 620px;
    margin: 0 auto;
    padding: 4px;
    background: #fff;
    border: 1px solid #333;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    font-size: 24px;
    margin: 20px auto 30px;
}

.balloon-line::before {
    border:10px solid transparent;
    border-top-color:#fff;
    border-bottom-width:0;
    bottom:-9px;
    content:"";
    display:block;
    left:0;
    right: 0;
    margin: auto;
    position:absolute;
    width:0;
    z-index:1;
}

.balloon-line::after {
    border:10px solid transparent;
    border-top-color:#000;
    border-bottom-width:0;
    bottom:-10px;
    content:"";
    display:block;
    left:0;
    right: 0;
    margin: auto;
    position:absolute;
    width:0;
}

.p-Section_banner_ttl {
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 20px;
}

.award ul {
    max-width: 750px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.award li {
    width: calc(50% - 13px);
}

.award li:nth-of-type(n + 3) {
    margin-top: 13px;
}


/*footer*/

footer p {
    font-family: 'Noto Sans Japanese', 'Noto Sans Japanese', sans-serif;
    font-weight: bold;
}

footer ul {
    justify-content: space-between;
    width: 100%;
}

.icj-pagetop {
    position: fixed;
    right: 40px;
    bottom: 25px;
    line-height: 0;
    z-index: 100;
    opacity: 0;
    transition: .3s;
    z-index: 999;
}

.icj-pagetop a {
    cursor: default;
}

.icj-pagetop.is-active {
    opacity: 1;
}

.icj-pagetop a {
    display: inline-block;
    padding: 16px 11px;
    border-radius: 5px;
    background: #000;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.icj-pagetop a:hover {
    background-color: #000;
}

.l-Inner {
    padding-bottom: 20px;
    border-radius: 10px;
}

.p-Footer__list {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
    margin: auto;
    max-width: 960px;
    text-align: center;
}

.p-Footer__list a {
    text-decoration: none;
}

.p-banner-text {
    margin: 0 0 10px;
}

.p-section--footer {
    padding: 20px 0 50px;
    /* background: url(../img/bg_award.png) center; */
    background-size: cover;
    max-width: 1260px;
    margin: 0 auto;
}

.p-Section_banner {
    width: 30%;
}

.p-Section_banner--campaign{
    margin: auto;
    margin-top: 30px;
}

.p-Section_banner--campaign{
    display: inline-block;
}

.p-Section_banner--campaign img{
    margin: auto;
}

.p-Section-top {
    padding: 0 0 28px;
}

.c-Footer-sns {
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 460px;
}

.footer_train{
    padding-bottom: 40px;
}

.footer_train img {
    margin: 0 auto;
}

.c-Footer-sns__link {
    -webkit-transition: .3s;
    transition: .3s;
    width: 50%;
}

.c-Footer-sns__link:first-child {
    border-right: 2px solid #ddd;
}

.c-Footer-sns__link img {
    display: block;
    margin: 0 auto;
}

.c-Footer-sns__link a {
    display: block;
    padding: 31px 0;
}

.c-Footer-sns__link:hover {
    opacity: .6;
}

.c-Footer-sns__link a ul {
    display: flex;
    justify-content: space-around;
}

.c-Footer-sns__link_logo {
    width: 30%;
}

.c-Footer-link_text p {
    font-size: 23px;
}

.c-Footer-link__text {
    color: #333;
    font-size: 1.125rem;
    font-weight: bold;
    text-decoration: none;
}

.c-Footer-link_text {
    font-size: 15px;
    padding-top: 5px;
}

.c-Footer-banner-link {
    -webkit-transition: .3s;
    transition: .3s;
}

.c-Footer-banner-link:hover {
    opacity: .6;
}

.introduce {
    justify-content: space-around;
    padding: 120px 0 50px 0;
    max-width: 900px;
}

.intro_sns {
    display: flex;
    width: 42%;
    border-radius: 5px;
    border: 2px solid #ddd;
    position: relative;
}

.intro_sns:before {
    content: "SNSで最新の情報を発信中！";
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 14px;
    font-weight: bold
}

.intro_voices:before {
    content: "お客様のこだわりのお住まいを動画で紹介";
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 14px;
    font-weight: bold
}

.intro_voices {
    display: flex;
    width: 42%;
    position: relative;
}

.intro_voices a,
.intro_voices a img {
    width: 100%;
}

.intro_sns_insta a,
.intro_sns_facebook a {
    display: flex;
    flex-direction: row;
    padding: 14% 5%;
    position: relative;
}

.intro_sns_insta {
    border-right: 2px solid #ddd;
}

.intro_sns_insta_logo,
.intro_sns_facebook_logo {
    width: 25%;
}

.intro_sns_insta_logo img,
.intro_sns_facebook_logo img {
    width: 100%;
}

.intro_sns_insta_txt,
.intro_sns_facebook_txt {
    width: 75%;
    position: absolute;
    left: 24%;
}

.intro_sns_insta_txt p,
.intro_sns_facebook_txt p {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (min-width:767px) and (max-width:1120px) {
    .intro_sns_insta_txt p,
    .intro_sns_facebook_txt p {
        font-size: 21px;
    }
}

.copyright {
    background-color: #61442B;
    text-align: center;
    color: #fff;
    font-size: 15px;
    line-height: 18px;
    padding: 10px 0;
    height: auto;
    font-family: 'Noto Sans Japanese', 'Noto Sans Japanese', sans-serif;
}


/*レスポンシブ対応*/

.pc {
    display: block;
}

.sp {
    display: none;
}

#sp {
    display: none;
}

@media screen and (max-width:767px) {
    .p-Section_banner--campaign{
        margin-top: 30px!important;
    }

    body {
        min-width: 300px;
    }
    .sp {
        display: block;
    }
    .pc {
        display: none !important;
    }
    .inner {
        width: 90%;
        min-width: 200px;
        margin: 0 auto;
    }
    .flex-box {
        flex-direction: column;
    }
    .sp-row{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    h2 {
        font-size: 60px;
    }
    .ttl {
        width: 70%;
        margin: 0 auto;
    }
    h3 {
        font-size: 35px;
    }
    h3 span {
        font-size: 30px;
    }
    .about_detail h3 .span1 {
        font-size: 30px;
    }
    p {
        font-size: 14px;
    }
    .txt_org {
        font-size: 14px;
    }
    .ttl_box {
        padding-bottom: 0;
    }
    .to-form {
        margin: 30px auto 20px auto;
        width: 90%;
        max-width: 400px;
        min-width: 250px;
    }
    .to-form img {
        width: 100%;
    }
    .to-form:after {
        top: 28px;
        width: 17%;
        left: 0;
    }
    .attention {
        font-size: 12px;
        display: block;
        padding-bottom: 0;
    }
    @media screen and (min-width: 500px) and (max-width:768px) {
        .attention {
            padding-top: 5%;
        }
    }
    /*header*/
    header {
        height: 60px;
    }
    header>a {
        padding: 15px 0 10px 15px;
        line-height: 29px;
        font-weight: bold;
        font-size: 18px;
        color: #333;
    }
    header img {
        width: 80px;
        padding-bottom: 15px;
    }
    #modal-checkbox {
        display: none;
        z-index: 1000;
    }
    #modal-open {
        cursor: pointer;
        display: inline-block;
        height: 50px;
        position: absolute;
        width: 50px;
        right: 10px;
        top: 10px;
        z-index: 1001;
    }
    #modal-open span {
        background: #1a1a1a;
        display: block;
        height: 8%;
        left: 50%;
        margin: -8% 0 0 -42%;
        position: absolute;
        top: 50%;
        transition: all 0.3s ease-in-out 0s;
        width: 60%;
        z-index: 1000;
    }
    #modal-open span::before,
    #modal-open span::after {
        -webkit-transform: rotate(0);
        background: #1a1a1a;
        content: "";
        display: block;
        height: 100%;
        left: 50%;
        margin: -8% 0 0 -50%;
        position: absolute;
        top: 50%;
        transform: rotate(0);
        transition: all 0.3s ease-in-out;
        width: 100%;
        z-index: 1000;
    }
    #modal-open span::before {
        margin-top: -30%;
        z-index: 1000;
    }
    #modal-open span::after {
        margin-top: 15%;
        z-index: 1000;
    }
    #modal-checkbox:checked~#modal-open span {
        background: rgba(51, 51, 51, 0);
        z-index: 1000;
    }
    #modal-checkbox:checked~#modal-open span::before,
    #modal-checkbox:checked~#modal-open span::after {
        content: "";
        display: block;
        height: 100%;
        left: 50%;
        margin: -8% 0 0 -42%;
        position: absolute;
        top: 50%;
        width: 100%;
        z-index: 1000;
    }
    #modal-checkbox:checked~#modal-open span::before {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        z-index: 1000;
    }
    #modal-checkbox:checked~#modal-open span::after {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        z-index: 1000;
    }
    #modal-checkbox {
        display: none;
        z-index: 1000;
    }
    #modal-content {
        overflow: auto;
        position: fixed;
        top: 30%;
        left: 50%;
        z-index: 40;
        transition: all 0.2s ease-in-out 0s;
        transform: translate(-50%, -50%);
        display: none;
        padding: 10px;
        padding-top: 250px;
        text-align: center;
        width: 70%;
        z-index: 1000;
    }
    #modal-content ul {
        text-align: center;
        width: 100%;
        z-index: 1000;
    }
    #modal-content ul li {
        width: 100%;
        display: block;
        margin: 0 auto;
        padding: 20px 0;
        text-align: center;
        z-index: 1000;
    }
    #modal-content ul li a {
        font-size: 24px;
        text-align: center;
        width: 70%;
        margin: 0 15%;
        border-bottom: dashed 1px #61442B;
        padding-bottom: 10px;
        font-weight: normal;
        z-index: 1000;
        font-weight: bold;
    }
    #modal-checkbox:checked~#modal-content {
        display: block;
        z-index: 1000;
    }
    #modal-close {
        display: none;
        position: fixed;
        z-index: 39;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        opacity: 0;
        transition: all 0.2s ease-in-out 0s;
        z-index: 1000;
    }
    #modal-checkbox:checked~#modal-close {
        display: block;
        opacity: 0.97;
        z-index: 1000;
    }
    /*top*/
    .top {
        margin-top: 60px;
    }
    .logo {
        height: 40vh;
        max-height: 400px;
    }
    .bgCrossFade,
    .bgCrossFade2 {
        position: relative;
        height: 75vh;
        min-height: 300px;
        z-index: 1;
    }
    .bgCrossFade .slides:not(:first-child),
    .bgCrossFade2 .slides2:not(:first-child),
    .bgCrossFade3 .slides3:not(:first-child) {
        background-size: 768px 1020px;
    }
    /* ふわふわ上にあがるやつ */
    .top-img-big {
        position: absolute;
        animation: huwahuwa 22.5s linear infinite;
        z-index: 150;
        min-width: 140px;
    }
    @keyframes huwahuwa {
        0% {
            transform: translate(90px, 0)
        }
        33.3% {
            transform: translate(0, -500px)
        }
        66.6% {
            transform: translate(90px, -1000px)
        }
        100% {
            transform: translate(0, -1500px)
        }
    }
    @keyframes huwahuwa2 {
        0% {
            transform: translate(0, 0)
        }
        33.3% {
            transform: translate(90px, -500px)
        }
        66.6% {
            transform: translate(0, -1000px)
        }
        100% {
            transform: translate(90px, -1500px)
        }
    }
    .top-img-small {
        position: absolute;
        animation: huwahuwa-small 22.5s linear infinite;
        z-index: 150;
        min-width: 100px;
    }
    @keyframes huwahuwa-small {
        0% {
            transform: translate(90px, 0)
        }
        33% {
            transform: translate(0, -500px)
        }
        66% {
            transform: translate(90px, -1000px)
        }
        100% {
            transform: translate(0, -1500px)
        }
    }
    .top-img1 {
        left: -19%;
        bottom: -370px;
        width: 18%;
        max-width: 200px;
    }
    .top-img2 {
        left: -8%;
        bottom: -200px;
        width: 10%;
        max-width: 150px;
    }
    .top-img3 {
        right: 5%;
        bottom: -370px;
        width: 25%;
        max-width: 200px;
    }
    .top-img4 {
        right: -5%;
        bottom: -300px;
        width: 10%;
        max-width: 150px;
        animation: huwahuwa-small2 22.5s linear 1;
    }
    @keyframes huwahuwa-small1 {
        0% {
            transform: translate(90px, -600px)
        }
        33.3% {
            transform: translate(0, -1000px)
        }
        66.6% {
            transform: translate(90px, -1400px)
        }
        100% {
            transform: translate(0, -1800px)
        }
    }
    @keyframes huwahuwa-small2 {
        0% {
            transform: translate(90px, -600px)
        }
        33.3% {
            transform: translate(0, -1000px)
        }
        66.6% {
            transform: translate(90px, -1400px)
        }
        100% {
            transform: translate(0, -1800px)
        }
    }
    /* subimg1 */
    .top-subimg1 .top-img-big {
        animation: huwahuwa1 22.5s linear 1;
        z-index: 2;
    }
    @keyframes huwahuwa1 {
        0% {
            transform: translate(0, -600px)
        }
        33.3% {
            transform: translate(90px, -1000px)
        }
        66.6% {
            transform: translate(0, -1400px)
        }
        100% {
            transform: translate(90px, -1800px)
        }
    }
    .top-subimg1 .top-img-small {
        position: absolute;
        animation: huwahuwa-small1 22.5s linear 1;
        z-index: 2;
    }
    @keyframes huwahuwa-small1 {
        0% {
            transform: translate(0, -600px)
        }
        33% {
            transform: translate(-90px, -1000px)
        }
        66% {
            transform: translate(0, -1400px)
        }
        100% {
            transform: translate(-90px, -1800px)
        }
    }
    .top-subimg1 .top-img1 {
        bottom: -300px;
    }
    .top-subimg1 .top-img2 {
        bottom: -600px;
        animation: huwahuwa-small2 22.5s linear 1;
    }
    .top-subimg1 .top-img3 {
        bottom: -500px;
    }
    .top-subimg1 .top-img4 {
        bottom: -823px;
        right: -23%;
    }
    /* top-subimg2 */
    .top-subimg2 .top-img-big {
        animation: huwahuwa 24s linear 6s infinite;
        z-index: 2;
    }
    .top-subimg2 .top-img-small {
        position: absolute;
        animation: huwahuwa-small 24s linear 15.5s infinite;
        z-index: 2;
    }
    /* top-subimg3 */
    .top-subimg3 .top-img-big {
        animation: huwahuwa 24s linear 18s infinite;
        z-index: 2;
    }
    .top-subimg2 .top-img3,
    .top-subimg3 .top-img3 {
        animation: huwahuwa2 24s linear 8s infinite;
        z-index: 2;
    }
    .top-subimg3 .top-img-small {
        position: absolute;
        animation: huwahuwa-small 24s linear 25.5s infinite;
        z-index: 2;
    }
    /* ふわふわ上にあがるやつ */
      /* news */
        .news__txt {
            font-size: 14px;
            text-align: left;
        }
        .news__img {
            margin-top: 40px;
        }
    /*about*/
    .about{
        padding-bottom: 0;
    }
    .about_inner1 .about_detail_img {
        margin: 0 auto;
        width: 100%;
    }
    .about_contents .about_inner1 img {
        margin-top: 0;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .about_inner1 .about_detail {
        margin: 0 auto;
        padding-top: 30px;
    }
    .about_inner1 h3 {
        font-size: 35px;
    }
    .about_exp {
        padding-bottom: 30px;
    }
    .about_detail {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .about .ttl img {
        width: 80%;
        max-width: 245px;
        min-width: 180px;
    }
    .about_detail p {
        line-height: 1.9;
        width: 90%;
        margin: 0 auto 20px;
        padding: 20px 0 0;
    }
    .about_inner2 h3 {
        font-size: 35px;
    }
    .about_detail h3 p {
        top: -50px;
    }
    .about_detail h3 span {
        font-size: 24px;
    }
    .about_detail .to-form {
        margin: 20px auto 40px;
        width: 90%;
        min-width: 250px;
    }
    .about_inner2 {
        width: 95%;
        margin: 0 auto;
        padding-bottom: 20px;
        background-size: 100% 222px;
        padding-top: 0;
    }
    .about_contents_li2 {
        background-size: 100% 600px;
        margin-top: 30px;
    }
    .about_inner2 .about_detail {
        padding-top: 0;
    }
    .about_inner1 .about_detail_img {
        max-width: 400px;
        padding-bottom: 200px;
    }
    .about_inner2 .about_detail_img {
        margin-top: 0;
        width: 100%;
        margin-left: 0;
        max-width: 400px;
        margin: 0 auto;
        padding-bottom: 170px;
    }
    .about_contents_li1 {
        background-image: url(../img/bg-main1.png);
        background-size: 100% 600px;
        margin-bottom: 10px;
        background-position: 260px 0;
    }
    .about_inner1 {
        background-size: 100% 222px;
        background-position: 0px 309px;
        margin-top: 50px;
        width: 95%;
        margin: 0 auto;
        padding: 50px 0 0;
    }
    .about_inner1 .inner {
        flex-direction: column-reverse;
    }
    .about_inner2 {
        background-position: 0 320px;
    }
    .top-img1 {
        width: 35%;
    }
    .top-img2 {
        width: 24%;
    }
    .top-img3 {
        width: 24%;
    }
    .top-img4 {
        width: 35%;
    }
    /*present*/
    .present_bg {
        padding-top: 0;
        padding-bottom: 40px;
        background-size: 480%;
    }
    .present .sub_ttl {
        font-size: 15px;
    }
    .gold p,
    .silver p,
    .bronze p {
        font-size: 11px;
    }
    .gold p {
        margin-bottom: 5%;
    }
    .gold img {
        width: 75%;
    }
    .winners p span {
        font-size: 13px;
    }
    .silver-bronze {
        flex-direction: row;
    }
    .winners {
        padding-top: 20px;
    }
    .special_contents li {
        width: 90%;
        margin: 0 auto;
    }
    .special_contents li:nth-child(2) {
        width: 90%;
    }
    .photo_txt {
        font-size: 12px;
    }
    .photo-book li:nth-child(2) {
        width: 100%;
        height: 100px;
    }
    .photo-book {
        flex-direction: row;
        padding: 0;
        margin: 15% auto 0;
    }
    .photo-book li:nth-child(1) {
        margin: -18% auto;
        position: absolute;
        right: 0;
        left: 0;
        top: 0;
        width: 50%;
    }
    .photo-book li:nth-child(2) p {
        padding: 0 7%;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: 7% auto;
    }
    /* award */
    .award li {
        width: calc(50% - 10px);
    }
    .award li:nth-child(3),
    .award li:nth-child(4) {
        margin-top: 10px;   
    }
    
    /*how-to*/
    .howto .arch {
        min-height: 400px;
        border-top-right-radius: 1000px 300px;
        border-top-left-radius: 1000px 300px;
        padding-top: 40px;
    }
    .step2 {
        margin: 0;
    }
    .step {
        width: 100%;
        margin: 1% 0;
        padding: 6% 4%;
    }
    .step_subttl {
        font-size: 23px;
        padding: 9px 0 5px;
        text-align: center;
    }
    .step:after {
        width: 50px;
        height: 70px;
        left: 0;
        right: 0;
        top: auto;
        bottom: -40px;
        margin: auto;
        padding-top: 20px;
        transform: rotate(90deg);
    }
    .step ul {
        display: flex;
        flex-direction: row;
    }
    .step ul li {
        width: 50%;
    }
    .step_img {
        position: relative;
    }
    .step_img img {
        position: absolute;
        left: 5px;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        padding: 0 8%;
        height: auto;
    }
    .special .ttl_box {
        padding-top: 40px;
    }
    .special_border {
        height: 100px;
        background-image: url(../img/bg_special_sp.png)
    }
    .special_btn{
        width: 270px;
        font-size: 14px;
    }
    /*mail*/
    .mail{
        padding: 20px 30px 0;
    }
    .mail_ttl{
        line-height: 1;
    }
    .mail_ttl span{
        font-size: 20px;
    }
    .mail_subTtl{
        margin-top: 20px;
    }
    .mail_txt{
        text-align: left;
    }
    /* detail */
    .detail {
        padding: 20px 0 0;
    }
    .detail .to-form {
        margin-top: 0;
    }
    .p-App__content ::-webkit-scrollbar {
        width: 8px;
    }
    .p-App {
        background-color: #f9f8f6;
        padding: 90px 0;
    }
    .p-App__content {
        padding: 20px;
        width: 100%;
    }
    .p-App__title {
        border-bottom: 2px solid #74573a;
        color: #74573a;
        font-size: 1.225rem;
        line-height: 1;
        margin: 0 0 10px;
        padding: 0 0 27px;
        text-align: center;
    }
    .footer_area {
        padding-top: 30px;
    }
    footer .inner>.flex-box {
        flex-direction: column;
    }
    footer ul {
        width: 100%;
    }
    .footer_train img {
        width: 70%;
    }
    .icj-pagetop {
        right: 10px;
        bottom: 25px;
        z-index: 90;
    }
    .icj-pagetop a {
        padding: 9px 5px;
    }
    .p-Footer__list {
        width: 100%;
    }
    .p-Footer__link {
        margin: auto;
        width: 100%;
    }
    .p-How-to__list {
        width: 100%;
    }
    .p-How-top__list {
        margin: 0 auto 30px;
    }
    .c-Footer-sns {
        width: 90%;
        margin: 0 auto;
    }
    .c-Footer-sns__link a {
        padding: 10px 0;
    }
    .c-Footer-sns__link img {
        display: block;
        margin: 0 auto;
    }
    .p-banner-text {
        margin-top: 30px;
    }
    .c-Footer-banner-link {
        width: 90%;
    }
    .c-Footer-banner-link img {
        width: 90%;
    }
    .c-Footer-link__text {
        font-size: 0.9rem;
    }
    .p-section--footer {
        padding: 0;
    }
    .special .ttl_box:before {
        content: "";
        background-image: url(../img/special_ttl_bg_sp.png);
        padding-bottom: calc(100%*57/748);
        background-size: 137% auto;
        background-repeat: no-repeat;
        background-position: center;
    }
    .photo-book li:nth-child(1) img {
        filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
    }
    /* footer */
    .p-section--footer>ul {
        padding-bottom: 30px;
        flex-direction: row;
    }
    .p-Section_banner {
        width: 49%;
        margin: 5px auto;
    }
    .balloon-line {
        width: 90%;
        font-size: 22px;
        margin-top: 30px;
        font-size: 18px;
    }
    .introduce {
        padding-top: 20%;
    }
    .intro_sns {
        width: 90%;
        margin: 0 auto;
    }
    .intro_voices {
        width: 90%;
        margin: 0 auto;
        padding: 0 10%;
        margin-top: 74px;
    }
    .intro_sns_insta_txt p,
    .intro_sns_facebook_txt p {
        font-size: 5vw;
    }
    .special>p {
        font-size: 14px;
        color: #4e4e4f;
        line-height: 1.6;
        width: 90%;
        margin: 0 auto;
        padding-top: 0;
        letter-spacing: 0;
    }
    .special {
        background-size: 200% auto;
        background-image: url(../img/special_bg_sp.png);
        background-size: 100% 100%;
        background-position: 0px -10%;
    }
    .special .ttl img {
        width: 90%;
        max-width: 340px;
    }
    .special .sub_ttl {
        font-size: 22px;
        letter-spacing: 0px;
    }
    .intro_voices:before {
        top: -45px;
        display: block;
    }
    .intro_sns:before {
        top: -45px;
    }
    .intro_sns_insta a,
    .intro_sns_facebook a {
        padding: 6% 5%;
    }
}

@media screen and (max-width: 320px) {
    /*mail*/
    .mail{
        padding: 20px 0;
    }
}

.more-works-box {
    position: relative;
}

.more-works {
    position: absolute;
    top: 220px;
    left: 0;
    width: 100%;
}

@media screen and (min-width:881px) and (max-width:1030px) {
    .more-works {
        top: 200px;
    }
}

@media screen and (min-width:768px) and (max-width:880px) {
    .more-works {
        top: 170px;
    }
}

@media screen and (min-width:411px) and (max-width:767px) {
    .more-works {
        top: 200px;
    }
}

@media screen and (min-width:320px) and (max-width:410px) {
    .more-works {
        top: 160px
    }
}

.more-works2 {
    position: absolute;
    top: 220px;
    left: 0;
    width: 100%;
}

@media screen and (min-width:881px) and (max-width:1030px) {
    .more-works2 {
        top: 200px;
    }
}

@media screen and (min-width:768px) and (max-width:880px) {
    .more-works2 {
        top: 170px;
    }
}

@media screen and (min-width:411px) and (max-width:767px) {
    .more-works2 {
        top: 200px;
    }
}

@media screen and (min-width:320px) and (max-width:410px) {
    .more-works2 {
        top: 160px;
    }
}

.about_contents .about_inner1 .flex-row img,
.about_contents .about_inner2 .flex-row img {
    width: 50%;
}

.item.is-show {
    opacity: 1;
    visibility: visible;
}

.about_contents .about_inner1 .about_detail_img1,
.about_contents .about_inner2 .about_detail_img4 {
    position: relative;
    z-index: 2;
}

.about_contents .about_inner1 .about_detail_img1 img,
.about_contents .about_inner2 .about_detail_img4 img {
    position: absolute;
    top: 0;
    left: 0;
}

.about_contents .about_inner1 .about_detail_img2,
.about_contents .about_inner1 .about_detail_img3,
.about_contents .about_inner2 .about_detail_img5,
.about_contents .about_inner2 .about_detail_img6 {
    position: relative;
    margin-top: 53%;
}

.about_contents .about_inner1 .about_detail_img2 img,
.about_contents .about_inner2 .about_detail_img5 img {
    position: absolute;
    left: 0;
}

.about_contents .about_inner1 .about_detail_img3 img,
.about_contents .about_inner2 .about_detail_img6 img {
    right: 0;
    position: absolute;
}

.js-animation1 {
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: 1s all;
    transition-delay: .5s;
}

.js-animation1.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.js-animation2 {
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: 1s all;
    transition-delay: 1s;
}

.js-animation2.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

