@charset "UTF-8";

@media only screen and (min-width: 768px) {
  header {
    display: none;
  }
  header#pc_header.active {
    display: flex;
  } 
  #mv {
    background: url(../img/top/TOP_01_PC.jpg) no-repeat;
    background-size: cover;
    position: relative;
    height: 100%;
    background-position: center center;
    padding-top: 50%;
    width: 100%;
  }

  #mv .logo {
    width: 210px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    margin-left: -105px;
    top: 6%;
  }

  #mv .menulist {
    position: absolute;
    top: 18%;
    width: 380px;
    left: 50%;
    margin-left: -190px;
    z-index: 100;
    font-family: "Trebuchet MS", "Helvetica Neue", "Helvetica";
  }

  #mv .menulist > ul {
    display: flex;
    justify-content: space-between;
  }

  #mv .menulist > ul > li {
    font-size: 18px;
    cursor: pointer;
    position: relative;
  }
  #mv .menulist > ul > li > a {
    position: relative;
  }
  #mv .menulist > ul > li > a:after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #666666;
    bottom: 0px; /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.2s; /*変形の時間*/
  }

  #mv .menulist > ul > li > a:hover:after {
    transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  }

  #mv .menulist > ul > li .menu_child {
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    width: 240px;
    box-sizing: border-box;
    padding: 20px 20px;
    font-size: 14px;
    left: -90px;
    bottom: -100px;
    opacity: 0;
    transition: 0.2s;
    z-index: 1000;
    font-family: "Zen Kaku Gothic New";
    font-weight: 600;
  }
  #mv .menulist > ul > li.hover:hover .menu_child {
    bottom: -120px;
    opacity: 1;
  }

  #mv .menulist > ul > li .menu_child:before,
  #mv .menulist > ul > li .menu_child:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: auto;
  }
  #mv .menulist > ul > li .menu_child:before {
    top: -11px;
    border-style: solid;
    border-color: transparent transparent #ccc transparent;
    border-width: 0 11px 11px 11px;
  }
  #mv .menulist > ul > li .menu_child:after {
    top: -10px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    border-width: 0 10px 10px 10px;
    z-index: 10;
  }

  #mv .menulist > ul > li .menu_child li {
    padding-bottom: 10px;
    margin-bottom: 10px;
    background: url(../img/common/line_dot.png) repeat-x;
    background-position: bottom;
    position: relative;
  }

  #mv .menulist > ul > li .menu_child li:last-child {
    background: none;
    padding: 0;
    margin: 0;
  }

  #mv .menulist > ul > li .menu_child li a {
    position: relative;
    display: block;
  }

  #mv .menulist > ul > li .menu_child li a:after {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 5px;
    background: url(../img/common/icon_menu_arrow.png) no-repeat;
    background-size: contain;
    top: 50%;
    right: 20px;
    margin-top: -3px;
  }

  #mv h2 {
    width: 285px;
    margin: 0 auto;
    position: absolute;
    left: 13%;
    bottom: 60px;
  }

  .btn {
    width: 300px;
    margin: 0 auto;
  }

  .btn a {
    display: block;
    width: 100%;
    background-color: #727272;
    height: 50px;
    border-radius: 25px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 50px;
    position: relative;
    transition: 0.2s;
  }

  .btn a:after {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 5px;
    background: url(../img/common/icon_arrow.png) no-repeat;
    background-size: contain;
    top: 50%;
    right: 20px;
    margin-top: -3px;
  }

  .btn a:hover {
    background-color: #fff;
    color: #727272;
    border: 1px solid #727272;
  }

  .btn a:hover:after {
    background: url(../img/common/icon_menu_arrow.png) no-repeat;
    background-size: contain;
  }

  .btn a:active {
    background-color: #727272;
  }

  #cont_about {
    padding: 120px 30px 0;
    margin-bottom: 140px;
  }

  #cont_about .title_img {
    background: url(../img/About_bg.jpg) no-repeat;
    background-size: contain;
    text-align: center;
    padding: 35% 0;
  }

  #cont_about h2 {
    font-size: 45px;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
    font-family: "Zen Kaku Gothic New";
    font-weight: 600;
  }

  #cont_about h2 br {
    display: none;
  }

  #cont_about p {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
  }

  #cont_itemdetail {
    width: 1080px;
    margin: 0 auto 200px;
    display: flex;
    align-items: center;
  }

  #cont_itemdetail .box_left {
    width: 530px;
  }

  #cont_itemdetail .box_right {
    margin-left: 35px;
    flex: 1;
  }

  #cont_itemdetail .img {
  }

  #cont_itemdetail h2 {
    text-align: left;
    font-size: 28px;
    margin-bottom: 10px;
    font-family: "Zen Kaku Gothic New";
    font-weight: 600;
  }

  #cont_itemdetail .txt {
    text-align: left;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: "Zen Kaku Gothic New";
    font-weight: 500;
  }

  #cont_itemdetail .present {
    background: linear-gradient(#fff7e3 0%, #ffeff7 100%);
    display: flex;
    padding: 8px 38px;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
    width: 510px;
    font-family: "Zen Kaku Gothic New";
    font-weight: 500;
  }

  #cont_itemdetail .present .present_img {
    width: 30px;
  }

  #cont_itemdetail .present .present_txt .title {
    font-size: 22px;
    font-weight: 600;
  }
  #cont_itemdetail .present .present_txt .notice {
    font-size: 16px;
  }

  #cont_itemdetail .btn {
    margin: 0 0;
  }

  #cont_philosophy {
    position: relative;
  }

  #cont_philosophy .title_img {
    width: 1080px;
    margin: 0 auto 180px;
  }
  #cont_philosophy .point_pc {
    width: 1080px;
    margin: 0 auto;
  }

  #cont_philosophy .icon_point {
    text-align: center;
    display: block;
    font-size: 20px;
    margin-bottom: 20px;
  }
  #cont_philosophy .point_1 {
    margin-bottom: 180px;
    position: relative;
  }
  #cont_philosophy .point_1:before {
    content: "";
    display: block;
    position: absolute;
    background: url(../img/top/TOP_07_PC.png) no-repeat;
    width: 210px;
    height: 121px;
    top: 130px;
    left: -40px;
  }
  #cont_philosophy .point_1 ul {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 40px;
  }
  #cont_philosophy .point_1 ul li {
    text-align: center;
    width: 30%;
    font-size: 18px;
    font-family: "Zen Kaku Gothic New";
    font-weight: 600;
  }
  #cont_philosophy .point_1 ul li span {
    font-size: 16px;
    display: block;
    font-weight: 400;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN",  "Noto Sans JP",
    "Arial", "Yu Gothic", "Meiryo",
    sans-serif;
  }
  #cont_philosophy .point_1 .notice {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
  }
  #cont_philosophy .point_2 {
    margin-bottom: 180px;
  }
  #cont_philosophy .point_2 h3 {
    width: 610px;
    margin: 0 auto;
  }
  #cont_philosophy .point_2 .list ul {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
  }
  #cont_philosophy .point_2 .list ul li {
    width: 200px;
    text-align: center;
  }
  #cont_philosophy .point_2 .list ul li span {
    font-size: 20px;
    margin-top: 10px;
    display: inline-block;
  }
  #cont_philosophy .point_2 .notice {
    text-align: center;
    font-size: 24px;
  }
  #cont_philosophy .point_3 {
    margin-bottom: 80px;
  }
  #cont_philosophy .point_3 .title {
    text-align: center;
  }
  #cont_philosophy .point_3 .title h4 {
    font-size: 32px;
    margin: 60px 0 40px;
    font-family: "Zen Kaku Gothic New";
    font-weight: 600;
  }
  #cont_philosophy .point_3 .title p {
    font-size: 24px;
    margin-bottom: 60px;
  }
  #cont_philosophy .point_3 .title p span {
    font-weight: 600;
  }
  #cont_philosophy .point_3 .list ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #cont_philosophy .point_3 .list ul li {
    width: 530px;
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
    font-family: "Zen Kaku Gothic New";
    font-weight: 500;
  }
  #cont_philosophy .point_3 .notice {
    text-align: right;
  }
  #cont_philosophy .point_sp {
    display: none;
  }

  #cont_product {
    width: 1080px;
    margin: 0 auto 180px;
  }

  #cont_product .product {
    display: flex;
    border: 5px solid #eeeeee;
    padding: 40px 180px;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
  }

  #cont_product .product_img {
    width: 250px;
    margin-right: 40px;
  }

  #cont_product .product_txt {
    flex: 1;
  }

  #cont_product .product_txt .title {
    font-size: 23px;
    margin-bottom: 20px;
  }

  #cont_product .btn {
    width: 300px;
    margin: 0;
  }

  #cont_product .btn a {
    font-size: 18px;
    padding-left: 20px;
  }

  #cont_product .btn a:before {
    content: "";
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    background: url(../img/common/icon_cart.png) no-repeat;
    background-size: contain;
    top: 50%;
    left: 60px;
    margin-top: -10px;
  }

  #cont_product .notice {
    text-align: center;
    font-size: 14px;
    width: 300px;
    margin-top: 10px;
  }

  #cont_product .notice a:hover {
    text-decoration: underline;
  }

  #cont_product .btn a:after {
    display: none;
  }

  #cont_news {
    width: 1080px;
    margin: 0 auto 180px;
    padding-top: 120px;
    margin-top: -120px;
  }

  #cont_news h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 15px;
    font-weight: 400;
    font-family: "Trebuchet MS", "Helvetica Neue", "Helvetica";
  }

  #cont_news .newslist li {
    font-size: 20px;
    padding-bottom: 40px;
    margin-bottom: 20px;
    background: url(../img/common/line_dot.png) repeat-x;
    background-position: bottom;
  }

  #cont_news .newslist li p.date {
    font-size: 20px;
    margin-bottom: 5px;
  }

  #cont_news .newslist li p.date span {
    font-size: 16px;
    border: 1px solid #cccccc;
    border-radius: 18px;
    padding: 4px 12px;
    height: 36px;
    display: inline-block;
    margin-left: 13px;
  }

  #cont_news .newslist li p.title {
    font-size: 20px;
  }

  #cont_faq {
    width: 1080px;
    margin: 0 auto 180px;
  }

  #cont_faq .title h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: "Trebuchet MS", "Helvetica Neue", "Helvetica";
  }

  #cont_faq .faq dl {
    background-color: #f5f5f5;
    font-size: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
  }

  #cont_faq .faq dl dt {
    padding: 28px 48px 28px 80px;
    position: relative;
  }

  #cont_faq .faq dl dt:before {
    content: "Q.";
    font-size: 26px;
    margin-right: 5px;
    position: absolute;
    top: 50%;
    left: 46px;
    margin-top: -25px;
  }

  #cont_faq .faq dl dt:after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/common/icon_plus.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    right: 54px;
  }

  #cont_faq .faq dl dt.active:after {
    background: url(../img/common/icon_minu.png) no-repeat;
    background-size: contain;
  }

  #cont_faq .faq dl dd {
    padding: 28px 48px 28px 80px;
    position: relative;
    display: none;
  }

  #cont_faq .faq dl dd:before {
    content: "A.";
    font-size: 26px;
    margin-right: 5px;
    position: absolute;
    top: 23px;
    left: 46px;
  }

  #cont_faq .faq dl dd:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 2px;
    background: url(../img/common/line_dot.png) repeat-x;
    width: calc(100% - 90px);
    left: 40px;
  }
  .scroll_down {
    position: absolute;
    bottom: 0;
    right: 30px;
    display: none;
  }

  .scroll_down:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #727272;
    z-index: 100;
    animation: circlemove 1.6s ease-in-out infinite,
      cirlemovehide 1.6s ease-out infinite;
  }
}
