@charset "UTF-8";
/* =====================
  共通
===================== */
/* display */
.sp{display: none;}

/* tel */
a[href^="tel:"]{
    display: inline-block;
    pointer-events: none;
}

/* =====================
  アニメーション
===================== */
.hover-op{transition: opacity 600ms ease 0s;}
.hover-op:hover{opacity: 0.7;}

/* =====================
  Utility
===================== */
.inner{
    max-width: 1200px;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================
  ヘッダー
===================== */
.header{
    height: 80px;
    background: var(--white);
}

/* ==== inner ==== */
.header .header-inner{
    height: inherit;
    position: relative;
}

/* ==== unit1 ==== */
.header .header-inner .unit[data-id="1"]{
    display: flex;
    align-items: center;
    padding-top: 17px;
    padding-left: 20px;
}
/* item1 */
.header .header-inner .unit[data-id="1"] .item[data-id="1"]{
    display: block;
    background-image: url("../img/logo.png");
    width: 270px;
    height: 41px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
/* item2 */
.header .header-inner .unit[data-id="1"] .item[data-id="2"]{
    font-size: 13px;
    line-height: 1.639;
    color: var(--semigrey);
    padding-left: 18px;
    padding-top: 3px;
    position: relative;
    top: 1px;
}

/* ==== unit2 ==== */
.header .header-inner .unit[data-id="2"]{
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    height: inherit;
}
/* item1 */
.header .header-inner .unit[data-id="2"] .item[data-id="1"]{
    width: 271px;
}
/* box1 */
.header .header-inner .unit[data-id="2"] .item[data-id="1"] .box[data-id="1"]{
    font-size: 26px;
    color: var(--darkbrown);
}
.header .header-inner .unit[data-id="2"] .item[data-id="1"] .box[data-id="1"]::before{
    content: '';
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../img/icon/tel.png");
    width: 25px;
    height: 25px;
    vertical-align: 0px;
    margin-right: 11px;
}
/* box2 */
.header .header-inner .unit[data-id="2"] .item[data-id="1"] .box[data-id="2"]{
    font-size: 13px;
    text-align: center;
    color: var(--mudgrey);
    line-height: 1;
    position: relative;
    left: -8px;
    margin-top: 2px;
}
/* item2 */
.header .header-inner .unit[data-id="2"] .item[data-id="2"]{
    width: 235px;
    background: var(--yellow);
    display: inline-flex;
    align-items: center;
    height: inherit;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
    transition: all 250ms ease 0s;
}
.header .header-inner .unit[data-id="2"] .item[data-id="2"] a{
    display: inline-flex;
    height: inherit;
    align-items: center;
    justify-content: center;
}
.header .header-inner .unit[data-id="2"] .item[data-id="2"] a::before{
    display: inline-block;
    content: 'mail';
    font-family: var(--icon);
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    left: 3.1px;
    top: 1.5px;
    font-size: 18px;
}
.header .header-inner .unit[data-id="2"] .item[data-id="2"]:hover{
    background: var(--pink);
    color: var(--white);
}

/* =====================
  footer
===================== */
.footer{
    border-bottom: 6px solid #e93b55;
}

/* ==== unit2 ==== */
.footer .unit[data-id="2"]{
    position: relative;
    z-index: 2;
    padding-top: 80px;
    background: var(--white);
    padding-bottom: 94px;
}
.footer .unit[data-id="2"]::before{
    content: '';
    display: block;
    position:absolute;
    left:0;
    transform:translateX(0);
    top: -25px;
    background-repeat: repeat-x;
    background-size: contain;
    background-position: 0px bottom;
    background-image: url("../img/icon/line.png");
    width: 100%;
    height: 25px;
    pointer-events: none;
    animation-name            : komen;
    animation-duration        : 50000ms;
    animation-delay           : 0ms;
    animation-timing-function : linear;
    animation-iteration-count : infinite;
    animation-direction       : normal;
    animation-fill-mode       : none;
    animation-play-state      : running;
}
@keyframes komen {
    0%  {background-position : 0px bottom;}
    100%{background-position  : -1298px bottom;}
}

/* ==== item1 ==== */
.footer .unit[data-id="2"] .item[data-id="1"]{
    display: flex;
    justify-content: space-between;
}

/* ==== box1 ==== */
.footer .unit[data-id="2"] .item[data-id="1"] .box[data-id="1"]{
    padding-left: 22px;
}
/* box-in1 */
.footer .unit[data-id="2"] .item[data-id="1"] .box[data-id="1"] .box-in[data-id="1"]{
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../img/logo.png");
    display: block;
    width: 270px;
    height: 41px;
}

/* box-in2 */
.footer .unit[data-id="2"] .item[data-id="1"] .box[data-id="1"] .box-in[data-id="2"]{
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../img/morinaga.png");
    display: block;
    width: 84px;
    height: 82px;
    margin-top: 3px;
    margin-left: 6px;
}

/* ==== box2 ==== */
.footer .unit[data-id="2"] .item[data-id="1"] .box[data-id="2"]{
    font-size: 14px;
    font-weight: 500;
    position: relative;
    top: -2px;
    color: var(--semigrey);
    line-height: 2;
    left: -16px;
}
.footer .unit[data-id="2"] .item[data-id="1"] .box[data-id="2"] span[data-padding="true"]{
    padding-left: 0.75em;
}

/* ==== box3 ==== */
.footer .unit[data-id="2"] .item[data-id="1"] .box[data-id="3"]{
    font-size: 14px;
    font-weight: 500;
    position: relative;
    top: -2px;
    color: var(--semigrey);
    line-height: 2;
    left: -2px;
}
.footer .unit[data-id="2"] .item[data-id="1"] .box[data-id="3"]::before{
    content: '';
    display: block;
    pointer-events: none;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    left: -49px;
    width: 1px;
    height: 114px;
    background: #dadfe4;
}
.footer .unit[data-id="2"] .item[data-id="1"] .box[data-id="2"] span[data-padding="true"]{
    padding-left: 0.75em;
}
.footer .unit[data-id="2"] .item[data-id="1"] .box[data-id="3"] .vas{
    vertical-align: sub;
}

/* ==== unit3 ==== */
.footer .unit[data-id="3"]{
    position: relative;
}
.footer .unit[data-id="3"] .inner{
    position: relative;
    padding-bottom: 28px;
}

/* ==== item ==== */
.footer .unit[data-id="3"] .item{
    font-size: 14px;
    display: inline-block;
    color: var(--deltablue);
}
.footer .unit[data-id="3"] .item + .item::before{
    content: '｜';
    display: inline-block;
    margin: 0 0.75em;
    color: #e1e1e1;
    line-height: 1;
}

/* ==== small ==== */
.footer .unit[data-id="3"] small{
    position: absolute;
    right: 51px;
    top: 4px;
    font-size: 14px;
    color: var(--mudgrey);
}

/* =====================
  aside
===================== */

/* ==== unit1 ==== */
.aside{
    position: relative;
    z-index: 1;
    background: var(--deltablue);
    padding-top: calc(24px + 48px);
    color: var(--white);
    overflow: hidden;
    padding-bottom: 74px;
}
.aside::after{
    pointer-events: none;
    position:absolute;
    left:50%;
    bottom: 0;
    transform: translateX(-49%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../img/icon/milk.png");
    width: 243px;
    height: 120px;
    content: '';
    display: block;
    z-index: 1;
}
.aside::before{
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../img/icon/arrow-bottom.png");
    width: 105px;
    height: 24px;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top: 0;
}
/* inner */
.aside .inner{
    position: relative;
    z-index: 2;
}
.aside .inner::before{
    content: '';
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../img/footer/text.png");
    width: 242px;
    height: 33px;
    margin-left: auto;
    margin-right: auto;
}
/* item1 */
.aside .inner .item[data-id="1"]{
    text-align: center;
    font-weight: bold;
    font-size: 20.09px;
    font-weight: bold;
    margin-top: 21px;
}

/* item2 */
.aside .inner .item[data-id="2"]{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 50px 52px;
}
.aside .inner .item[data-id="2"] .box{
    width: 50%;
    position: relative;
}

/* box1 */
.aside .inner .item[data-id="2"] .box[data-id="1"]{
    text-align: center;
}
/* box-in1 */
.aside .inner .item[data-id="2"] .box[data-id="1"] .box-in[data-id="1"]{
    font-size: 42.54px;
    display: block;
    width: 100%;
    text-align: center;
}
.aside .inner .item[data-id="2"] .box[data-id="1"] .box-in[data-id="1"]::before{
    content: '';
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../img/icon/tel-l.png");
    width: 41px;
    height: 41px;
    margin-right: 10px;
    vertical-align: 2px;
    position: relative;
    top: 3px;
}
/* box-in2 */
.aside .inner .item[data-id="2"] .box[data-id="1"] .box-in[data-id="2"]{
    font-size: 18px;
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1;
    position: relative;
    margin-top: 10px;
    left: 1.7em;
}

/* box2 */
.aside .inner .item[data-id="2"] .box[data-id="2"]{
    text-align: center;
}
.aside .inner .item[data-id="2"] .box[data-id="2"]::before{
    content: '';
    position: absolute;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    left: 0;
    width: 1px;
    height: 130px;
    pointer-events: none;
    background: #79a9d3;
}
.aside .inner .item[data-id="2"] .box[data-id="2"] a{
    display: inline-flex;
    position: relative;
    top: -3px;
    left: 13px;
    background: var(--yellow);
    color: var(--black);
    width: 426px;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    box-shadow: inset 0px 5px 3px 0px rgba(255, 255, 255, 0.47);
    border-radius: 7px;
    justify-content: center;
    padding: 28px 1em;
    transition: all 250ms ease 0s;
}
.aside .inner .item[data-id="2"] .box[data-id="2"] a:hover{
    background: var(--pink);
    color: var(--white);
}
.aside .inner .item[data-id="2"] .box[data-id="2"] a::before{
    content: 'mail';
    font-family: var(--icon);
    font-size: 24px;
    vertical-align: middle;
    position: relative;
    margin-right: 5px;
    display: inline-block;
}

/* =====================
  to top
===================== */
.to-top{
    position: fixed;
    z-index: 22;
    right: 0;
    bottom: 0px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../img/top.png"), url("../img/top-on.png");
    width: 39px;
    height: 115px;
    transition: all 250ms ease 0s;
    opacity: 0;
    pointer-events: none;
}
.to-top.on{
    opacity: 1;
    pointer-events: auto;
}
.to-top:hover{
    opacity: 1;
    pointer-events: auto;
    width: 38px;
    background-image: url("../img/top-on.png"), url("../img/top.png");

}