﻿@charset "UTF-8";
*,
*:before,
*:after {
    box-sizing: border-box;
}


/* ----全体設定---- */

body {
    margin: 0;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    min-width: 320px;
    color: #2c2d38;
    background-color: #fff;
}


/* ----ヘッドライン---- */

h1,
.h1 {
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    background-color: transparent;
}

h2 {
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
}

h3 {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
}


/* ----リンク---- */

a {
    text-decoration: none;
    color: #2c2d38;
    outline: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}


/* ----タグ---- */

img {
    max-width: 100%;
    vertical-align: bottom;
}

hr {
    border: 0;
    border-bottom: 1px dotted #ccc;
}

address {
    font-style: normal;
}


/* ----矢印---- */

.arw {
    display: inline-block;
    width: 8px;
    height: 8px;
    position: relative;
    vertical-align: middle;
    transition: all 0.5s;
}

.arw::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-top: 1px solid #62636e;
    border-right: 1px solid #62636e;
    position: absolute;
    top: -1px;
    right: 0;
    transform: rotate(45deg);
    transition: all 0.5s;
}

.ancArw {
    position: absolute;
    background: #b71c20;
    top: 5px;
    left: 0px;
    width: 14px;
    height: 14px;
}

.ancArw::after {
    position: absolute;
    content: '';
    top: 5px;
    left: 4px;
    border: 3px solid transparent;
    border-top: 4px solid #fff;
}