@charset "UTF-8";

/* site.css
 * ********************************************************
 * 共通クラス
 * 共通定義（サイトごとに変わる要素）
 * 10:header
 * 20:gnav
 * 30:quickSearch
 * 40:footer
 * 50:content
 * 60:sideNav
 * 70:title
 * 90:other
 * ********************************************************
*/

:root {
  --clr-primary: #a32a2a;
  --clr-textlink: #1D6299;
  --clr-border: #f2f4f5;
  --clr-visitor: #a32a2a;
  --clr-organizer: #3E7BAD;

  --contentWidth: 1080px;
  --space-spSide: 20px;
  --space-spVertical: 30px;
  --header-height: 55px;
  --top-space-vertical: 40px;
}

/* =====================================
  base サイト内共通ルールを記載
  ======================================*/
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, a {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    vertical-align: baseline;
    font-size: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
* {
    box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #3a414c;
  font-family: 'Open Sans',Arial,Roboto,'Droid Sans','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
  font-size: 1.4rem;
  font-feature-settings: "palt";
  letter-spacing: 1px;

  @media screen and (max-width:750px) {
    padding: 0;
  }
}

a:focus ,input:focus ,button:focus ,textarea:focus ,.focus {
  outline: 1px #229EE5 solid;
  box-shadow: 0px 0px 5px 0px #229EE5;
  -moz-box-shadow: 0px 0px 5px 0px #229EE5;
  -webkit-box-shadow: 0px 0px 5px 0px #229EE5;
  transform: none;
}

a {
  color: #0c76b3;
	text-decoration: none;

  &:hover {
    text-decoration: none;
  }
}

a[href^="tel:"] {
  color: #3a414c;
  pointer-events: none;

  @media screen and (max-width:750px) {
    pointer-events: auto;
  }
}

a,
a:before,
a:after,
input{
	transition:all 0.3s ease-out;
}

img {
	vertical-align: bottom;
	max-width: 100%;
  height: auto;
}

p {
	text-align: justify;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
th {
  white-space: nowrap;
  vertical-align: top;
}
th,td {
  padding: 16px;
  border-width: 1px 0;
  text-align: left;
}
input,select{
  font-family: 'Open Sans',Arial,Roboto,'Droid Sans','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}

/* -------------------------
  共通クラス
------------------------- */
.pcShow{
  display: block;
}
.spShow{
  display: none;
}
.sp-display{
	display:none!important;
}
.clearfix:after {
  content:"";
  display:block;
  clear:both;
}

@media screen and (max-width:750px) {
  .pcShow {
    display: none;
  }
  .spShow {
    display: block;
  }
  .pc-display {
    display: none!important;
  }
  .sp-display {
    display: inline!important;
  }
}

/* -------------------------
共通定義（サイトごとに変わる要素）
------------------------- */
html {
  min-width: var(--contentWidth);
}

html,body {
  @media screen and (max-width:750px) {
    min-width: 320px;
  }
}

.l-fixed{
  display: block;
  width: min(100%, var(--contentWidth));
  margin: 0 auto;
}

.l-1col {
  width: min(100%, var(--contentWidth));
  margin: 0 auto;

  @media screen and (max-width:750px) {
    padding: 0;
  }
}

.l-2col{
  display: flex;
  gap: 30px;
  width: min(100%, var(--contentWidth));
  margin: 0 auto;
  padding-bottom: 60px;

  @media screen and (max-width:750px) {
    flex-direction: column;
    gap: 0;
    padding-bottom: 0;
  }
}

.l-2col_main{
  width: calc(100% - 300px - 30px);

  @media screen and (max-width:750px) {
    width: 100%;
  }

  .l-fixed{
    width: 100%;
  }
}

.l-2col_side{
  flex: none;
  width: 300px;

  @media screen and (max-width:750px) {
    width: 100%;
    padding-block: var(--space-spVertical);
    border-top: 1px solid var(--clr-border);
    background: #fff;
  }
}

/* -------------------------
  10:header
------------------------- */

.categoryNav{
  margin-top: 13px;
}

/* -------------------------
  50:content
------------------------- */
.content {
  margin: 0 auto 0;
}
.section-mb{
  margin-bottom: 60px;
}

@media screen and (max-width:750px) {
  .content {
    margin: 0;

    article{
      min-height: 200px;
    }
  }

  .section-mb{
    margin-bottom: 30px;
  }
}