@charset "utf-8";

/* ================= */
/* 要素のリセット    */
/* ================= */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,

time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* ================= */
/* 全体設定          */
/* ================= */
html, body {
    font: 13px marugo, HG丸ゴシックM-PRO, verdana, arial, sans-serif;
    word-wrap: break-word;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

#wrapper {
    max-width: 960px;
    width: 100%;
    margin: 0 auto 20px auto;
}

a:hover {opacity: 0.7;}


/* 文字サイズ  */
header p {font-size: 0.9rem;}
h3 {font-size: 1rem; text-align: center; margin: 10px;}
h1 {font-size: 1.8rem;}


/* ヘッダー  */
header p {
    text-align: center;
    color: rgb(99, 99, 99);
    background: #e6e3c7;
    padding: 5px;
}


/* バナー  */
.main-banner {
    text-align: center;
    margin-bottom: 20px;
}

.main-banner img {
    width: 720px;
    max-width: 100%;
    height: auto;
}

/* コンテンツ  */
.contents-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48%;
    border: solid 2px #000;
    margin-bottom: 20px;
    padding: 10px;
    box-sizing: border-box;
}

.item img{
    width: 99%;
    max-width: 100%;
    height: auto;
}

.line-black {
    width: 99%;
    height: 2px;
    background-color: #000;
    border: none;
    margin: 5px auto;
}

.item-text {
    padding: 10px;
}

.item-image {margin-bottom: 10px; margin-top: auto;}

.item-image img {
    width: 300px;
    max-width: 100%;
    height: auto;
}

.btn-box {
    margin-top: auto;
    text-align: center;
}

.btn-box img {
    width: 400px;
    max-width: 100%;
    height: auto;
}

.other {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
}

/*///////
ボタン
/////////*/


.button01 a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 1em 2em;
    width: 300px;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    background-color: #cccccc;
    transition: 0.3s;
    text-decoration: none;

  }

  .button01 a::after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #333333;
    border-right: 3px solid #333333;
    transform: rotate(45deg);
  }

  .button01 a:hover {
    text-decoration: none;
    background-color: #bbbbbb;
  }




/* 検索フォーム */
.form-box  {
    margin-top: 25px;
    text-align: center;
}

.search_container{
    position: relative;
    box-sizing: border-box;
    border: 2px solid #808080;
    display: block;
    border-radius: 3px;
    height: 2.3em;
    width: 300px;
    overflow: hidden;
    margin: 20px auto;
}

.search_container input[type="text"]{
    border: none;
    height: 1.8em;
    width: 300px;
}

.search_container input[type="text"]:focus {outline: 0;}

.search_container input[type="submit"]{
    cursor: pointer;
    border: none;
    border-radius: 0;
    background: #e6e3c7;
    color: #000;
    position: absolute;
    width: 3.5em;
    height: 3.0em;
    right:0px;
    top: -5px;
    outline : none;
}


/* ======================== */
/* タブ                     */
/* ======================== */
.tab-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom:50px;
}

.tab-label-m {
    color: #003364;
    background: #fff;
    font-weight: bold;
    text-shadow: 0 -1px 0 rgba(0,0,0,.2);
    white-space: nowrap;
    text-align: center;
    padding: 10px .5em;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    border-top:solid 3px #003364;
    border-right:solid 3px #003364;
    border-left:solid 3px #003364;
    flex: 1;
}

.tab-label-l {
    color: #ff6f6d;
    background: #fff;
    font-weight: bold;
    text-shadow: 0 -1px 0 rgba(0,0,0,.2);
    white-space: nowrap;
    text-align: center;
    padding: 10px .5em;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    border-top:solid 3px #ff6f6d;
    border-right:solid 3px #ff6f6d;
    border-left:solid 3px #ff6f6d;
    flex: 1;
}

.tab-content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

/* アクティブなタブ */
.tab-switch:checked+.tab-label-m {
    background: #003364;
    color: #fff;
}

.tab-switch:checked+.tab-label-l {
    background: #ff6f6d;
    color: #fff;
}

.tab-switch:checked+.tab-label-m+.tab-content {
    height: auto;
    overflow: auto;
    opacity: 1;
    transition: .5s opacity;
    box-shadow: 0 0 3px rgba(0,0,0,.2);
}

.tab-switch:checked+.tab-label-l+.tab-content {
    height: auto;
    overflow: auto;
    opacity: 1;
    transition: .5s opacity;
    box-shadow: 0 0 3px rgba(0,0,0,.2);
}

/* ラジオボタン非表示 */
.tab-switch {display: none;}

/* =========================*/
/* アコーディオンメニュー     */
/* ======================== */
.menu {margin: 0;}

.menu__item {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.menu__item__link {
    color: #fff;
    display: block;
    line-height: 60px;
    padding: 0 10px;
    position: relative;
    text-decoration: none;
    font-size: 14px;
    cursor: default;
    color: #000;
    border: solid 1px #eee;
}

.menu__item__link::after {
    font-family: "Font Awesome 5 Free";
    content: '\f107';
    font-weight: 900;
    padding-right : 5px;
    font-size: 2em;
    color: #eee;
    float: right;
}

.menu__item img {
    width: 45px;
    margin-right: 8px;
    vertical-align: middle;
}

.submenu {
    display: none;
    width: 100%;
}

.submenu__item {
    border: 1px solid #eee;
    background: #fff;
    color: #222;
    padding: 1rem;
}

.submenu a {
    text-decoration: none;
    cursor: default;
    display: block;
}

.submenu__item:hover {background:#eee;}


/* アウトドア一覧から探す  */
.wrapper2 {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
}

.title {
    text-align: center;
    margin-bottom: 10px;
}

.attention {
    text-align: center;
    padding: 5px;
}

.attention p {
    font-size: 1rem;
    margin-bottom: 15px;
}


/* フッター  */
footer p {
    text-align: center;
    font-size: 11px;
    color: rgb(99, 99, 99);
    background: #e6e3c7;
    padding: 10px;
    margin-top: 20px;
}

footer a {color: rgb(99, 99, 99);}


/* スマホ  */
@media screen and (max-width: 630px) {
    .tab-wrap {margin-bottom: 20px;}
    .menu__item img {width: 25px; margin-right: 5px;}
}

@media screen and (max-width: 600px) {

header {display: none;}
.main-banner {margin-bottom: 0;}
.line-color {height: 15px;}
.contents-wrapper {flex-direction: column;}
.item {width: 100%;}
.btn-box img {width: 310px;}
h1 {font-size: 1.5rem;}

}

@media screen and (max-width: 320px) {
    .menu__item img {width: 20px; margin-right: 5px;}
    .menu__item__link {font-size: 12px;}
}