@charset "UTF-8";

/******************************************/
/*　初期値　　　　　
/******************************************/

* {
  margin: 0px;
  padding: 0px;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック", YuGothic, sans-serif;
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  font-size: 15px;
  line-height: 1.7;
}

/******************************************/
/*　グリッドシステム
/******************************************/

/*** 可変の最大幅 ***/

.container {
  width: 100%;
  margin: 0 auto;
}

/*** 固定の最大幅 ***/

.fix-container {
  width: 960px;
  margin: 0 auto;
}

/*** 幅の初期値 ***/

header,
nav,
main,
aside,
footer,
div[class^="col-"],
.row,
.form-row {
  width: 100%;
}

/* 段組み */
/* header::after,
nav::after,
 main::after,
 aside::after,
footer::after,
dl::after,
*[class*="col-"]::after,
.row::after,
.form-row::after {
  content: "";
  clear: both;
  display: block;
} */

/*** カラムに分割 ***/
/* div以外の親要素でもカラムに分割できるように */
*[class*="col-"] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

/*** 均等割り ***/
.col-one-half > * {
  width: 50%;
}

.col-one-third > * {
  width: 33.33333%;
}

.col-quarter > * {
  width: 25%;
}

.col-one-seventh > * {
  width: 14.28%;
}

/*** 1:2 or 2:1 ***/
.col-1-2 > *:nth-child(2n-1),
.col-2-1 > *:nth-child(2n) {
  width: 33.33333%;
}

.col-1-2 > *:nth-child(2n),
.col-2-1 > *:nth-child(2n-1) {
  width: 66.66666%;
}

/*** 1:3 or 3:1 ***/
.col-1-3 > *:nth-child(2n-1),
.col-3-1 > *:nth-child(2n) {
  width: 25%;
}

.col-1-3 > *:nth-child(2n),
.col-3-1 > *:nth-child(2n-1) {
  width: 75%;
}

/*** 1:5 or 5:1 ***/
.col-1-5 > *:nth-child(2n-1),
.col-5-1 > *:nth-child(2n) {
  width: 16.66666%;
}

.col-1-5 > *:nth-child(2n),
.col-5-1 > *:nth-child(2n-1) {
  width: 83.33333%;
}

/*** 2カラムに割ったときのカラム間の余白 ***/
.col-one-half > *:nth-child(2n-1),
.col-2-1 > *:nth-child(2n-1),
.col-1-2 > *:nth-child(2n-1),
.col-3-1 >  *:nth-child(2n-1),
.col-1-3 >  *:nth-child(2n-1),
.col-5-1 >  *:nth-child(2n-1),
.col-1-5 >  *:nth-child(2n-1) {
  padding-right: 1%;
  padding-left: 0%;
}

.col-one-half > *:nth-child(2n),
.col-2-1 > *:nth-child(2n),
.col-1-2 > *:nth-child(2n),
.col-3-1 >  *:nth-child(2n),
.col-1-3 >  *:nth-child(2n),
.col-5-1 >  *:nth-child(2n),
.col-1-5 >  *:nth-child(2n) {
  padding-right: 0%;
  padding-left: 1%;
}

/*** 3カラムに割ったときのカラム間の余白 ***/
.col-one-third > *:nth-child(3n+1) {
  padding-right: 1%;
  padding-left: 0%;
}

.col-one-third > *:nth-child(3n+2) {
  padding-right: 0.5%;
  padding-left: 0.5%;
}

.col-one-third > *:nth-child(3n) {
  padding-right: 0%;
  padding-left: 1%;
}

/*** 4カラムに割ったときのカラム間の余白 ***/
.col-quarter > *:nth-child(4n+1) {
  padding-right: 1%;
}

.col-quarter > *:nth-child(4n) {
  padding-left: 1%;
}

.col-quarter > *:nth-child(4n+2),
.col-quarter > *:nth-child(4n+3) {
  padding-right: 0.5%;
  padding-left: 0.5%;
}

/*** カラムに割ったときのカラム間の余白なし ***/
.col-no-space > * {
  padding-left: 0% !important;
  padding-right: 0% !important;
}

/*
div[class^="col-"] img {
    max-width: 100%;
}
*/

.clearfix {
  clear: both;
}

/******************************************/
/*　上部に固定
/******************************************/
.fixed-top {
  position: absolute;
}

.fixed-top-active {
  position: fixed;
  top: 0;
  z-index: 999;
}
  /* fixed-top を付けた場合は、header + * でナビの高さ分 margin-top を付ける　*/

/******************************************/
/*　navi
/******************************************/
/*** ナビには下線なし ***/
nav ul li a:link,
nav ul li a:visited,
nav ul li a:hover {
  color: #000;
  text-decoration: none;
}

nav > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  margin: 0px auto;
  border-collapse: collapse;
}

nav > ul > li {
  padding-top: 10px;
  list-style:none;
  text-align: center;
}

.nav-dropdown > ul {
  position: absolute;
  display: none;
  padding: 0px;
  list-style: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: 10px 10px 5px 5px rgba(0,0,0,.3);
  box-shadow: 10px 10px 5px 5px rgba(0,0,0,.3);
  background-clip: padding-box;
  background-color: #fff;
  text-align: left;
  z-index: 1000;
}

.nav-dropdown > ul > li {
  padding: 15px 0px;
  border-bottom: 1px solid #000;
}

.nav-dropdown > ul > li:last-child {
  border-bottom: none;
}

.nav-dropdown > ul > li > a {
  margin: 15px;
}

/*** ナビメニューに枠線が必要な場合には下記を個別cssに加える ***/
/*
nav > ul > li {
  border-left: 0.5px solid #000;
}
nav > ul > li:last-child {
  border-right: 0.5px solid #000;
}
*/

/*** スマホのハンバーガメニュー ***/
.menu-btn {
  display: none;
}

/******************************************/
/* 基本要素
/******************************************/
header,footer {
  width: 100%;
}

/*** メイン　***/
main {
  display: block;/* IE対策 */
}

main ul {
  padding: 0px 20px 0px 50px;
}

main ol {
  padding-right: 30px;
}

main p {
  margin-left: 0px;
  margin-right: 0px;
}

/*** サイドバー　***/
aside ul {
  padding: 0px;
}

aside ul li {
  margin: 0;
  padding-left: 10px;
  list-style: none;
}

/*** フッター　***/
footer {
  margin-top: 20px;
}

/*** 基本デザイン ***/
h1,h2,h3,h4 {
  margin: 0px;
}

p {
  margin: 0 0 20px 0;
  padding: 0;
}

dl > dt {
  float: left;/* 使うときは dl で囲う */
  width: 20%;
  margin-bottom: 5px;
  padding: 0px 5px 0px 20px;
}

dl > dd {
  float: left;/* 使うときは dl で囲う */
  width: 80%;
  margin-bottom: 5px;
  padding: 0px 20px 0px 5px ;
}

a,
a:visited,
a:hover,
a:active {
  color: #000;
  text-decoration: none;
}

a img:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

img, video {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

iframe {
  border: none;
}

.icon {
  width: 1.5em;
  vertical-align: bottom;
  padding-top: 1px;
  padding-right: 7px;
  padding-bottom: 1px;
}

/*** スマホとPCで表示を切り替える場合 ***/
.mobile {
  display: none;
}

/***　ページの一部のみ幅を指定する ***/
.contents {
  width: 960px;
  margin: 0px auto;
  padding: 0px;
}

/***　.contentsの幅を超えて画面いっぱいに要素を表示させる ***/
.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/***　Youtubeをレスポンシブで表示 ***/
.vega-youtube {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  margin-bottom: 20px;
}

.vega-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*** エラーメッセージ ***/
.help-block {
  margin: 0px;
  color: #f00;
  font-weight: bold;
}

/*** 問い合わせ送信後の送信完了メッセージ部分 ***/
#mail-form #sended-mail {
  background-color: #FFFFEF;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

/***　基本要素の大きさや色や位置　***/
.bg-white {
  background-color: #fff;
}

.bold {
  font-weight: bold;
}

.small {
  font-size: 0.8em;
}

.big {
  font-size: 1.5em;
}

.font-color-red {
  color: #ff0000;
}

.underline {
  text-decoration: underline;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.around-left {
  float: left;
  margin: 0 10px 10px 0;
}

.around-right {
  float: right;
  margin: 0 0 10px 10px;
}

.w-10,
.pc-w-10 {
  width: 10%;
}

.w-20,
.pc-w-20 {
  width: 20%;
}

.w-30,
.pc-w-30 {
  width: 30%;
}

.w-40,
.pc-w-40 {
  width: 40%;
}

.w-50,
.pc-w-50 {
  width: 50%;
}

.w-60,
.pc-w-60 {
  width: 60%;
}

.w-70,
.pc-w-70 {
  width: 70%;
}

.w-80,
.pc-w-80 {
  width: 80%;
}

.w-90,
.pc-w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}

/***　基本要素の表示形式　***/

.no-disp {
  display: none;
}

.block {
  display: block;
}

.yoko-top {
  display: inline-block;
  vertical-align: top;
}

.yoko-middle {
  display: inline-block;
  vertical-align: middle;
}

.yoko-bottom {
  display: inline-block;
  vertical-align: bottom;
}

.scroll-x {
  overflow-x: scroll;
}

.scroll-y {
  overflow-y: scroll;
}

/***　メニュー等横並びのデザイン　***/
.justified {
  display: table;
  table-layout: fixed;
  text-align: center;
  width: 100%;
  border-collapse: separate;
  border-spacing: 20px 0px;
  margin: 50px auto 30px auto;
  padding: 0px;
}

.justified li {
  list-style:none;
  display: table-cell;
  vertical-align: middle;
  margin: 5px 0px;
}

/******************************************/
/* ページトップに戻る
/******************************************/
.pagetop {
  display: none; /* スクロールイベントが生じるまで非表示 */
  position: fixed;
  bottom: 20px;
  right: 13px;
  z-index: 1000;
  width: 42px;
  height: 52px;
  background-color: #a0a0a0;
  color: #fff;
  line-height: 6.5px;
  text-align: center;
  cursor: pointer;
}

.pagetop span:nth-child(1){
  border-right: 15px solid transparent;
  border-bottom: 25px solid #fff;
  border-left: 15px solid transparent;
  position: relative;
  top: -7px;
}

.pagetop span:nth-of-type(2){
  position: absolute;
  top: 34px;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 9px;
}

.pagetop span:nth-of-type(3){
  position: absolute;
  top: 43px;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 9px;
}

/******************************************/
/* テーブル
/******************************************/

/*** 基本デザイン ***/

table {
  border-collapse: collapse;
}

th, td {
  padding: 5px;
  border: 1px solid #b9b9b9;
}

/*** 数字が入るセルの大きさ ***/

.h-num-ss {
  width: 50px;
}

.h-num-s {
  width: 100px;
}

.h-num-m {
  width: 120px;
}

.h-num-l {
  width: 180px;
}

/*** 日付が入るセルの大きさ ***/

.h-date-s {
  width: 50px;
}

.h-date-m {
  width: 120px;
}

.h-date-l {
  width: 200px;
}

/*** その他の情報が入るセルの大きさ ***/

.h-ss {
  width: 80px;
}

.h-s {
  width: 100px;
}

.h-m {
  width: 200px;
}

.h-l {
  width: 300px;
}

.h-ll {
  width: 400px;
}

/******************************************/
/* モーダル　パネル
/******************************************/
.modal-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}

 .modal-body {
  display: none;
  position: absolute;
  padding: 10px;
  background-color: #FFF;
  border: solid 1px;
  border-radius: 5px;
  box-shadow: 6px 6px 8px rgba(0,0,0,.2);
  z-index: 100;
  word-wrap: break-word;
}

.modal {
  cursor: pointer;
}

.modal-center {
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
}

/*** モーダルのwidth　***/

.modal-s {
  width: 150px;
}

.modal-m {
  width: 300px;
}

.modal-l {
  width: 450px;
}

/******************************************/
/* パネル
/******************************************/

/***パネル全体***/

.panel {
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.05);
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
  border-color: #337ab7;
}

/***パネルのヘッダー***/

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  #background-color: #cef;
  background-color: #337ab7;
  color: #fff;
  font-size: 1.1em;
}

/***パネルのボディ***/

.panel-body {
  padding: 15px;
}

/***パネルのフッター***/

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/******************************************/
/* ボタン
/******************************************/

.btn {
  display: inline-block;
  padding: 6px 0px;
  margin: 5px;
  color: #444;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  border: 1px solid #adadad;
  border-radius: 4px;
  text-shadow: 0 1px 0 #fff;
  background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));
  background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
  background-repeat: repeat-x;
  border-color: #dbdbdb;
  border-color: #ccc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
}

.btn:link,
.btn:visited {
  color: #444;
}

/*** ボタンにカーソルを合わせた時のデザイン ***/

.btn:hover {
  background-image: -webkit-linear-gradient(top, #f7f7f7 0%, #ccc 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#ccc));
  background-image: linear-gradient(to bottom, #f7f7f7 0%, #ccc 100%);
  color: #333;
  border-color: #adadad;
}

/*** ボタンの大きさ ***/

.btn-s {
  width: 50px;
}

.btn-m {
  width: 100px;
}

.btn-l {
  width: 150px;
}

.btn-ll {
  width: 200px;
}

/******************************************/
/* ラベル
/******************************************/

.label {
  margin: 0 0.5em;
  padding: .2em .6em .3em;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-radius: .25em;
  vertical-align: middle;
}

/*** ラベルの大きさ ***/

.label-s {
  font-size: 0.4em;
}

.label-m {
  font-size: 1em;
}

.label-l {
  font-size: 1.5em;
}

/*** ラベルの色 ***/

.label-red {
  background-color: red;
}

.label-blue {
  background-color: blue;
}

.label-yellow {
  background-color: yellow;
}

.label-gray {
  background-color: gray;
}

/******************************************/
/* フォーム
/******************************************/

/*** 入力項目間の余白 ***/

.form-row {
  margin: 10px 0px;
}

/*** 項目名と入力欄の間の余白なし ***/
.form-row > * {
  padding-left: 0% !important;
  padding-right: 0% !important;
}

/*** input、textarea、selectタグのデザイン ***/

input,
textarea,
select {
  padding: 7px 3px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

/*** ラジオボタンとチェックボックスのデザイン ***/

input[type="radio"],
input[type="checkbox"] {
  margin: 0px 10px;
  width: auto;
  display: inline;
}

/*** 数値入力項目のデザイン ***/

input[type="number"] {
  text-align: right;
}

/*** ファイル登録のデザイン ***/

input[type="file"] {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

/*** 入力禁止項目のデザイン ***/

input[disabled]{
  background-color: #e0e0e0;
  opacity: 0.3;
  color: #000;
}


/*** セレクトボックス配下のオプションのデザイン ***/

select option {
  padding: 0px 3px;
}

/*** ラベルのデザイン ***/

label {
  color: #444;
  font-size: 1em;
}

/*** 入力欄が横並びになる場合のデザイン ***/

div[class*="col-"].form-row > div {
  padding: 0px 5px;
}

div[class*="col-"].form-row > div:first-child {
  padding-left: 0px;
}

div[class*="col-"].form-row > div:last-child {
  padding-right: 0px;
}

/*** エラーメッセージ ***/

.error-msg-common {
  background-color: #fee4e5;
  padding: 10px 25px;
  border: 3px solid #e4e4e4;
  border-radius: 5px;
  color: #f00;
  font-weight: bold;
}

.error-msg-common p {
  margin-bottom: 0px;
  text-align: center;
}

.form-row .input-error {
  border-color: #f00;
}

.error-msg {
  display: block;
  color: #f00;
  font-weight: bold;
}

/*** 送信完了メッセージ ***/
#sended-mail {
  margin-bottom: 20px;
}
/******************************************/
/* タブ
/******************************************/
/*** タブ部分のデザイン ***/
/*** タブは ul と li を使う ***/
.tab {
  overflow: hidden;
  margin: 0;
  margin-top: 20px;
  padding: 0;
  list-style: none;
  display: table;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 2px 0;
  width: 100%;
}

.tab li {
  background: #bbb;
  cursor: pointer;
  display: table-cell;
  text-align: center;
  color: #fff;
  padding: 10px 10px 8px 10px;
}

/*** 選択されているタブのデザイン ***/
.vega-tab-active {
  background: #a20f0c;
}

/******************************************/
/* スマホ対応
/******************************************/

@media only screen and (max-width: 767px) {
  /*** グリッドシステム ***/
  .col-1-3 > *:nth-child(2n-1),
  .col-3-1 > *:nth-child(2n),
  .col-quarter > * {
      width: 50%;
  }

  .col-1-5 > *:nth-child(2n-1),
  .col-5-1 > *:nth-child(2n) {
    width: 33.33333%;
  }

 {
    width: 100%
  }

  .col-one-half > *,
  .col-one-third > *,
  .col-1-5 > *:nth-child(2n),
  .col-5-1 > *:nth-child(2n-1),
  .col-1-3 > *:nth-child(2n),
  .col-3-1 > *:nth-child(2n-1),
  .col-2-1 > :nth-child(2n+1),
  .col-2-1 > :nth-child(2n),
  .col-1-2 > :nth-child(2n+1),
  .col-1-2 > :nth-child(2n),
  div[class^=form-group-] > div {
    width: 100%;
  }

  /*** カラムに割ったときのカラム間の余白 ***/
  .col-one-half > *:nth-child(2n-1),
  .col-3-1 >  *:nth-child(2n-1),
  .col-one-half > *:nth-child(2n),
  .col-3-1 >  *:nth-child(2n),
  .col-one-third > *:nth-child(3n+1),
  .col-one-third > *:nth-child(3n+2),
  .col-one-third > *:nth-child(3n) {
    padding-right: 0%;
    padding-left: 0%;
  }

  header,
  main,
  aside,
  footer,
  .contents {
    width: 100% !important;
  }

  dl > dt,
  dl > dd {
    width: 100%;
  }

  dl > dt {
    margin: 0px;
    padding: 0px;
  }

  dl > dd {
    margin: 0px 0px 10px;
    padding: 0px;
  }

  /*** ヘッダー ***/
  header {
    overflow-x: hidden;
    position: relative;
  }

  .mobile-header {
    width: 100%;
    top: 0px;
    padding:5px 0px;
    height: 80px;
    overflow: hidden;
  }

  /*** ナビ ***/
  .mobile-nav {
    background-color: rgba(0,0,0,0.5);
    height: 100%;
    display: none;
    position: fixed;
    z-index: 100;
    top: 0px;
    left: 0px;
  }

  .mobile-nav-active {
    display: block;
    height: auto;
    top: 0px;
  }

  nav > ul {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-right: none;
    margin: 0px 0px 0px auto;
    background-color: #fff;
  }

  nav > ul > li {
    display: block;
    border-bottom: 0.5px solid #ccc;
    vertical-align: middle;
    text-align: left;
    padding-left: 20px;
  }

  .nav-dropdown > ul {
    position: relative;
    display: block;
    background-color: #fff;
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0px;
    border: none;
    text-align: center;
  }

  .nav-dropdown > .nav-dropdown-icon {
    width: 20px;
    height: 20px;
  }

  .nav-dropdown > ul > li {
    border-bottom: 0.5px dotted #ccc;
    text-align: left;
    padding-left: 20px;

  }

  .nav-dropdown > ul > li > a {
    font-size: 0.8em;
  }

  .separate {
    display: none;
  }

  .mobile-nav-bar {
    width: 100%;
    height: 50px;
    background-color: #ccc;
  }

  .mobile-nav-active {
    visibility: visible;
  }

  /* メニューボタン */
  .menu-btn {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 13px;
    top: 12px;
    width: 42px;
    height: 51px;
    cursor: pointer;
    z-index: 3;
    background: #a0a0a0;
    text-align: center;
    z-index: 1000;
  }

  .menu-btn span {
    display: block;
    position: absolute;    /* .menu-btnに対して */
    width: 30px;
    border-bottom: solid 3px #eee;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
  }

  .menu-btn span:nth-child(1) {
    top: 9px;
  }

  .menu-btn span:nth-child(2) {
    top: 18px;
  }

  .menu-btn span:nth-child(3) {
    top: 27px;
  }

  .menu-btn span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
  }

    /* 最初のspanをマイナス45度に */
  .menu-btn.mobile-nav-active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  /* 2番目と3番目のspanを45度に */
  .menu-btn.mobile-nav-active span:nth-child(2),
  .menu-btn.mobile-nav-active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  /***　基本デザイン　***/
  main p {
    margin: 0px 0px 30px;
    padding: 0px;
  }

  main ul {
    margin: 0px;
    padding-left: 25px;
  }

  /***　基本要素　***/
  .around-left,
  .around-right {
    max-width: 50%;
  }

  .pc {
    display: none;
  }

  .mobile {
    display: inherit;
  }

  /*** 要素の幅 ***/
  .pc-w-10,
  .pc-w-20,
  .pc-w-30,
  .pc-w-40,
  .pc-w-50,
  .pc-w-60,
  .pc-w-70,
  .pc-w-80,
  .pc-w-90 {
    width: 100%;
  }

  /*** メニュー等横並びのデザイン ***/
  .justified li {
    display: block;
    vertical-align: middle;
  }

  /*** フォーム ***/
  .form-row label {
    width: 100% !important;
  }
}

@media only screen and (max-width: 960px) {
  .full-width {
    width: 100%;
    position: static;
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 576px) {
  /*** スマホ用フォントサイズ ***/
  body {
    font-size: 4vw;
  }
}
