@charset "UTF-8";
@import url(sanitize.css);

/*============================
Base
============================*/

html {
    font-size: 62.5%;
}
body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    text-rendering: auto;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 1.8rem;
    position: relative;
    letter-spacing: .025em;
    margin: 0;
    line-height: 1.47059;
    background-color: #FFF;
    color: #000;
    font-style: normal;
}
a {
    text-decoration: none;
    color: #111;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}
a:hover {
    color: #333;
    cursor: pointer;
}
::placeholder {
    color: #999;
    font-size: 1.6em;
}
img {
    max-width: 100%;
    height: auto -webkit-align-self: flex-start;
    align-self: flex-start;
}
a img {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}
a:hover img {}
figure, ul, ol, li, dl, dt, dd {
    margin: 0;
    padding: 0;
}
li {
    list-style: none
}
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
    letter-spacing: 0.1em;
}
.sp {
    display: none
}
@media screen and (max-width:480px) {
    body {
        font-size: 1.6rem;
         letter-spacing: 0.1em;
    }
     ::placeholder {
         font-size: 1rem;
    }
    h1, h2, h3, h4, h5, h6, p {
         word-break: break-word;
    }
    .sp {
         display: inherit;
    }
    .pc {
        display: none;
    }
}

/*============================
Common
============================*/

.inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}
h1, h2 {
    font-family: "Hannari", serif;
}
h2 {
    font-size: 3.6rem;
    text-align: center;
    display: block;
    margin-bottom: 80px;
    width: 100%;
}
h2 span {
    display: inline-block;
    position: relative;
}
h2 span::after {
    content: "";
    width: 140%;
    height: 2px;
    background: #FFD966;
    display: block;
    position: absolute;
    left: -20%;
    bottom: -20px;
}
canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

@media screen and (max-width:480px) {
    .inner {
    }
    h1, h2 {
    }
    h2 {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 40px;
    }
    h2 span {
    }
    h2 span::after {
        width: 80%;
        left: 10%;
        bottom: -10px;
    }
    canvas {
    }
}

/*============================
#header
============================*/

#header {
    position: fixed;
    width: 100%;
    background: #FFF;
    z-index: 10;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.15);
}
#header .header {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 0 auto;
    padding: 16px 16px;
}
#header .header h1 {
    font-size: 2.4rem;
    line-height: 1;
    font-weight: normal;
}
#header .header h1 a {}
@media scree    n and (max-width:480px) {
    #header {   }
    #header .header {   }
    #header .header h1 {}
    #header .header h1 a {}
}

#header .logo {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 0 auto;
    padding: 4px 16px;
}
#header .logo img {
    display: block;
}


/*============================
#main
============================*/

#main {padding: 56px 0 0;}
@media screen and (max-width:480px) {
    #main {
    }
}

/*============================
#mainvisual
============================*/

#mainvisual {
    height: calc(100dvh - 56px);
    position: relative;
    background: url(../img/hero.jpg) no-repeat right;
    background-size: cover;
    overflow: hidden;
}

#mainvisual::after {
    content: "";
    background: rgba(255, 217, 102, 0.75);
    width: 55%;
    height: 140%;
    display: block;
    position: absolute;
    top: -20%;
    left: -10%;
    transform: rotate(10deg);
}
#mainvisual .inner {
    z-index: 1;
}
#mainvisual .inner .content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 1em;
}
#mainvisual .inner .content h2 {
    text-align: left;
    font-size: 5rem;
    margin-bottom: 20px;
    font-weight: normal;
}
#mainvisual .inner .content p {
    max-width: 400px;
    color: #FFF;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    position: relative;
    left: 1em;
}
@media screen and (max-width:480px) {
    #mainvisual {}

#mainvisual::after {
    transform: rotate(10deg);
    width: 100%;
    left: -50%;
    top: 50%;
    width: 150%;
}
    #mainvisual .inner {
    height: 70%;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 12px;
    }
    #mainvisual .inner .content {
    padding: 0;
}
    #mainvisual .inner .content h2 {
    font-size: 8vw;
    letter-spacing: 0;
    text-align: center;
}
    #mainvisual .inner .content p {
    font-size: 1.6rem;
    left: 0;
    max-width: 100%;
}
}

/*============================
#business
============================*/

#business {}

#business .inner {}
#business .inner .business_wrap {
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#business .inner .business_wrap h2 {}
#business .inner .business_wrap h2 span {}
#business .inner .business_wrap .business {
    width: calc(50% - 20px);
    margin: 0 0 40px;
}
#business .inner .business_wrap .business figure {
    margin: 0 0 12px;
}
#business .inner .business_wrap .business figure img {
    aspect-ratio: 5/3;
    object-fit: cover;
    border-radius: 20px 0px 20px 0px;
}
#business .inner .business_wrap .business h3 {
    font-family: "Hannari", serif;
    font-size: 3rem;
    margin: 0 0 12px;
}
#business .inner .business_wrap .business p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin: 0 0 10px;
}
#business .inner .business_wrap .business dl {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #CCC;
    border-right: 1px solid #CCC;
    background: rgba(255,255,255,0.75);
}

#business .inner .business_wrap .business dl dt, #business .inner .business_wrap .business dl dd {
    font-size: 1.4rem;
    border-left: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    padding: 4px 8px;
}
#business .inner .business_wrap .business dl dt {
    width: 55%;
}
#business .inner .business_wrap .business dl dd {
    width: 45%;
    text-align: right;
}
#business .inner .business_wrap .business dl dd small {
    margin: 0 0 0 1em;
}
@media screen   and (max-width:480px) {
    #business {}
    #business .inner {
    padding: 0 12px;
}
    #business .inner .business_wrap {
    padding: 20px 0;
    }
    #business .inner .business_wrap h2 {    }
    #business .inner .business_wrap h2 span {}

    #business .inner .business_wrap .business {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
    #business .inner .business_wrap .business figure {
    margin: 0 0 8px;
    order: 2;
    }
    #business .inner .business_wrap .business figure img {}
    #business .inner .business_wrap .business h3 {
    font-size: 2rem;
    text-align: center;
    margin: 0 0 8px;
    order: 1;
    display: block;
    width: 100%;
}
    #business .inner .business_wrap .business p {
    font-size: 1.6rem;
    line-height: 1.6;
    order: 3;
    }
    #business .inner .business_wrap .business dl {
    width: 100%;
    order: 4;
}
    #business .inner .business_wrap .business dl dt {
    width: 60%;
}
    #business .inner .business_wrap .business dl dt span {
    display: block;
}
    #business .inner .business_wrap .business dl dd {
    width: 40%;
}
    #business .inner .business_wrap .business dl dd small {
    display: block;
}
}

/*============================
#flow
============================*/

#flow {
    background: url(../img/flow.jpg);
    background-size: cover;
    padding: 40px 0 80px;
    position: relative;
}

#flow::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.5);
}
#flow .inner {
    z-index: 1;
}
#flow .inner h2 {}
#flow .inner h2 span {}

#flow .inner h2 span::after {
    background: #FFF;
}
#flow .inner .flow_wrap {}
#flow .inner .flow_wrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#flow .inner .flow_wrap ul li {
    width: calc(100% / 6 - 12px);
    background: #FFF;
    border-radius: 10px;
    padding: 20px 20px;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.15);
}
#flow .inner .flow_wrap ul li figure {}
#flow .inner .flow_wrap ul li figure h3 {
    text-align: center;
    font-size: 1.6rem;
    margin: 0 0 10px;
}
#flow .inner .flow_wrap ul li figure img {
    width: auto;
    margin: 0 auto 20px;
    display: block;
    height: 60px;
}
#flow .inner .flow_wrap ul li figure fugcaption {
    display: block;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
}
@media screen and (max-width:480px) {
    #flow {
    padding: 40px 0;
    }
    #flow .inner {  }
    #flow .inner h2 {   }
    #flow .inner h2 span {}
    #flow .inner .flow_wrap {
    padding: 0 24px;
}
    #flow .inner .flow_wrap ul {
    display: block;
}
    #flow .inner .flow_wrap ul li {
    width: 100%;
    margin: 0 0 12px;
    padding: 12px 8px;
}
    #flow .inner .flow_wrap ul li figure {
}
    #flow .inner .flow_wrap ul li figure h3 {
    }
    #flow .inner .flow_wrap ul li figure img {height: 40px;}
    #flow .inner .flow_wrap ul li figure fugcaption {
    width: 100%;
}

#flow .inner .flow_wrap ul li figure fugcaption br {
    display: none;
}
}

/*============================
#access
============================*/

#access {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
#access .access_left {
    background: #FCDD80;
    width: 50%;
    padding: 40px 0px;
}
#access .access_left .inner {
    max-width: 600px;
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
}
#access .access_left .inner dl {
    display: flex;
    flex-wrap: wrap;
}

#access .access_left .inner dl dt, #access .access_left .inner dl dd {
    margin: 0 0 24px;
    font-size: 1.6rem;
    line-height: 1.8;
}
#access .access_left .inner dl dt {
    width: 8em;
    position: relative;
    font-weight: bold;
}

#access .access_left .inner dl dt::after {
    content: "：";
    position: absolute;
    right: 0.5em;
}

#access .access_left .inner dl dd {
    width: calc(100% - 8em);
}

#access .access_left .inner dl dd button {
    background-color: #ffc20c;
    border: solid 1px #575757;
    border-radius: 12px;
    cursor: pointer;
}

#access .access_left .inner dl dd {}
#access .access_right {
    width: 50%;
}
#access .access_right .google_map {
    height: 100%;
}
#access .access_right .google_map iframe {
    width: 100%;
    height: 100%;
}
@media screen and (max-width:480px) {
    #access {
    display: block;
}
    #access .access_left {
    width: 100%;
    }
    #access .access_left .inner {max-width: 100%;display: block;}
    #access .access_left .inner dl {
    display: block;
    text-align: center;
    padding: 24px 0;
}

#access .access_left .inner dl dt, #access .access_left .inner dl dd {
    width: 100%;
    font-size: 1.4rem;
}
    #access .access_left .inner dl dt {
    margin: 0 0 0;
}

#access .access_left .inner dl dt::after {
    content: none;
    }
    #access .access_left .inner dl dd {}
    #access .access_right {
    width: 100%;
    }
    #access .access_right .google_map {}
    #access .access_right .google_map iframe {
    aspect-ratio: 3/2;
}
}

/*============================
#footer
============================*/

#footer {
    background: #FFF;
}
#footer .copyright {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 0;
}
#footer .copyright small {}
@media scree    n and (max-width:480px) {
    #footer {   }
    #footer .copyright {}
    #footer .copyright small {}
}
