@charset "UTF-8";
/**
 * SCSS Information
 * ===============================================================
 *
 * File name: _base.scss
 * Summary:   ベーススタイル
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    html & body
 *     =2    box model styles
 *       =2-1     margin
 *       =2-2     padding
 *       =2-3     box-sizing
 *     =3    text styles
 *     =4    img/video styles
 *     =5    link styles
 *     =6    list styles
 *     =7    heading styles
 *     =8    table styles
 *     =9    other selectors
 *     =10   general styles
 *       =10-1    display
 *       =10-2    position
 *       =10-3    float/align
 *       =10-4    form
 *       =10-5    clearfix
 *
 * ===============================================================
*/
/** =1
 * ========================================
 * html & body
 * ========================================
 */
*, *:before, *:after {
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
}

html {
  overflow-x: hidden;
  height: 100%;
  font-size: 62.5%;
}

body {
  /* その他 font-family については、 =3 text styles セクションでクラス名で定義 */
  -webkit-font-variant-ligatures: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  color: #000;
  font-family: 'Noto Sans JP', serif;
  font-size: 13px;
  font-size: 1.3rem;
  font-variant-ligatures: none;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .is-menuOpened{
    overflow-y: hidden;
    height: 100vh;
  }
}

/** =2
 * ========================================
 * box model styles
 * ========================================
 */
/** =2-1
   * margin
   * ----------------------------------
   */
.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb120 {
  margin-bottom: 120px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb05em {
  margin-bottom: .5em;
}

.mb10em {
  margin-bottom: 1.0em;
}

.mb15em {
  margin-bottom: 1.5em;
}

.mb20em {
  margin-bottom: 2.0em;
}

.mt20 {
  margin-top: 20px;
}

/** =2-2
   * padding
   * ----------------------------------
   */
.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt100 {
  padding-top: 100px;
}

.pt120 {
  padding-top: 120px;
}

.pt150 {
  padding-top: 150px;
}

.pt05em {
  padding-top: .5em;
}

.pt10em {
  padding-top: 1.0em;
}

.pt15em {
  padding-top: 1.5em;
}

.pt20em {
  padding-top: 2.0em;
}

/** =2-3
   * box-sizing
   * ----------------------------------
   */
.boxsizingReset, .boxsizingReset:before, .boxsizingReset:after{
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/** =3
 * ========================================
 * text styles
 * ========================================
 */
strong, .strong, .fwBold {
  font-weight: 700;
}

.italic{
  font-style: italic;
}

.fwNormal {
  font-weight: 300 !important;
}

.sans-serif {
  font-family: 'Noto Sans JP', sans-serif;
}

.serif {
  font-family: 'Noto Serif JP', serif;
}

.lusitana{
  font-family: 'Lusitana', serif;
  line-height: 1;
}

.agenda{/*400,700*/
  font-family: agenda, sans-serif;
  line-height: 1;
}

.fcRed {
  color: #dd0000;
}

.fcGreen {
  color: #59a529;
}

.fcBlue {
  color: #77a2be;
}

.fcNavy {
  color: #2b6082;
}

.fcWhite {
  color: #ffffff;
}

.fcBlack {
  color: #000000;
}

.fcGray {
  color: #808080;
}

.fs10 {
  font-size: 10px;
  font-size: 1.0rem;
}

.fs11 {
  font-size: 11px;
  font-size: 1.1rem;
}

.fs12 {
  font-size: 12px;
  font-size: 1.2rem;
}

.fs13 {
  font-size: 13px;
  font-size: 1.3rem;
}

.fs14 {
  font-size: 14px;
  font-size: 1.4rem;
}

.fs15 {
  font-size: 15px;
  font-size: 1.5rem;
}

.fs16 {
  font-size: 16px;
  font-size: 1.6rem;
}

.fs18 {
  font-size: 18px;
  font-size: 1.8rem;
}

.fs20 {
  font-size: 20px;
  font-size: 2.0rem;
}

.fs22 {
  font-size: 22px;
  font-size: 2.2rem;
}

.fs24 {
  font-size: 24px;
  font-size: 2.4rem;
}

.fs26 {
  font-size: 26px;
  font-size: 2.6rem;
}

.fs28 {
  font-size: 28px;
  font-size: 2.8rem;
}

.fs30 {
  font-size: 30px;
  font-size: 3.0rem;
}

.fs40 {
  font-size: 40px;
  font-size: 4.0rem;
}

.fs60 {
  font-size: 60px;
  font-size: 6.0rem;
}

.fs45per {
  font-size: 45%;
}

.fs50per {
  font-size: 50%;
}

.fs60per {
  font-size: 60%;
}

.fs70per {
  font-size: 70%;
}

.fs80per {
  font-size: 80%;
}

.fs90per {
  font-size: 90%;
}

.fs110per {
  font-size: 110%;
}

.fs120per {
  font-size: 120%;
}

.fs130per {
  font-size: 130%;
}

.fs140per {
  font-size: 140%;
}

.fs150per {
  font-size: 150%;
}

.lh10 {
  line-height: 1.0;
}

.lh12 {
  line-height: 1.2;
}

.lh14 {
  line-height: 1.4;
}

.lh16 {
  line-height: 1.6;
}

.lh18 {
  line-height: 1.8;
}

.lh20 {
  line-height: 2.0;
}

.ls05 {
  letter-spacing: .05em;
}

.ls10 {
  letter-spacing: .1em;
}

.ls20 {
  letter-spacing: .2em;
}

.ls-05 {
  letter-spacing: -.05em;
}

.ls-10 {
  letter-spacing: -.1em;
}

.ls-20 {
  letter-spacing: -.2em;
}

/** =4
 * ========================================
 * img/video styles
 * ========================================
 */
img,
svg,
video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.imageReplace {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

/** =5
 * ========================================
 * link styles
 * ========================================
 */
a, a:link, a:visited, a:hover, a:active {
  outline: none;
  text-decoration: none;
}

a,button {
  color: #000;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

a:hover {
}

.transition,
.cls-1 {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

a.alpha:hover,
button.alpha:hover {
  opacity: 0.40;
}

a.underline {
  text-decoration: underline;
}

/** =6
 * ========================================
 * list styles
 * ========================================
 */
ul li {
  list-style-type: none;
}

ol li {
  list-style-type: decimal;
}

ul.disc,
ul.circle,
ul.square,
ol {
  padding-left: 1.2em;
}
ul.circle,
ul.square{
  margin: .5em 0;
}

ul.disc li { list-style-type: disc;}
ul.circle li { list-style-type: circle;}
ul.square li { list-style-type: square;}

/** =7
 * ========================================
 * heading styles
 * ========================================
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

/** =8
 * ========================================
 * table styles
 * ========================================
 */
table {
  width: 100%;
  border-collapse: collapse;
}

th {
  font-weight: bold;
}

/** =9
 * ========================================
 * other selectors
 * ========================================
 */
hr {
  clear: both;
}

hr.dot {
  border-top: 1px #999 dotted;
}

/** =10
 * ========================================
 * general styles
 * ========================================
 */
/** =10-1
   * display
   * ----------------------------------
   */
.displayInlineBlock {
  display: inline-block;
}

.displayInline {
  display: inline;
}

.displayBlock {
  display: block;
}

.displayNone {
  display: none;
}

.displayFlex {
  display: flex;
}

@media screen and (max-width: 767px) {
  .displayPc {
    display: none;
  }
  .displaySp {
    display: inherit;
  }
}

@media screen and (min-width: 768px){
  .displayPc {
    display: inline;
  }
  .displaySp {
    display: none;
  }
}


/** =10-2
   * position
   * ----------------------------------
   */
.posRelative {
  position: relative;
}

.posAbsolute {
  position: absolute;
}

.posFixed {
  position: fixed;
}

.posStatic {
  position: static;
}

/** =10-3
   * float/align
   * ----------------------------------
   */
.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

.clearLeft {
  clear: left;
}

.clearRight {
  clear: right;
}

.clearBoth {
  clear: both;
}

.txtLeft {
  text-align: left;
}

.txtCenter {
  text-align: center;
}

.txtRight {
  text-align: right;
}

.verticalTop {
  vertical-align: top;
}

.verticalMiddle {
  vertical-align: middle;
}

.verticalBottom {
  vertical-align: bottom;
}

.txtVertical{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  /* -webkit-text-orientation: upright;
  text-orientation: upright; */
}

/** =10-4
   * form
   * ----------------------------------
   */

/* iOSでのデフォルトスタイルをリセット */
input[type="text"],
input[type="submit"],
input[type="button"],
textarea,
select {
 border-radius: 0;
 -webkit-box-sizing: content-box;
 -webkit-appearance: button;
 appearance: button;
 border: none;
 box-sizing: border-box;
 cursor: pointer;
}
input[type="text"]::-webkit-search-decoration,
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
textarea::-webkit-search-decoration,
select::-webkit-search-decoration {
 display: none;
}
input[type="text"]::focus,
input[type="submit"]::focus,
input[type="button"]::focus,
textarea::focus,
select::focus {
 outline-offset: -2px;
}

/* 通常設定 */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input.txt,
textarea,
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  background: #eeeeee;
  border: none;
  line-height: 1;
}
input[type="text"].inputTxtNormal{
  max-width: 450px;
}
input[type="text"].inputTxtWide{
  width: 100%;
}
::placeholder {
  color: #aaa;
}

/*contactForm7*/
.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

/*selectBox*/
.selectBoxWrapper {
	overflow: hidden;
  position: relative;
  max-width: 450px;
	text-align: center;
  background: #eee;
}
.selectBoxWrapper::before {
  content: '';
  position: absolute;
	top: 50%;
	right: 0.9em;
  transform: translate(0 , -50%);
	width: 0;
	height: 0;
	padding: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 10px solid #666666;
	pointer-events: none;
}
.selectBoxWrapper select {
	width: 100%;
	padding-right: 1em;
	text-overflow: ellipsis;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
  appearance: none;
  line-height: 1.6;
}
.selectBoxWrapper select::-ms-expand {
  display: none;
}
.selectBoxWrapper select .fcNoChoice{
  color: #aaa;
}


/* buttonのデフォルトスタイルをリセット */
button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

    @media screen and (max-width: 999px) {
      input[type="text"],
      input.txt,
      textarea{
        font-size: 16px;
        font-size: 1.6rem;
      }
      ::placeholder {
        font-size: 16px;
        font-size: 1.6rem;
      }
    }


/** =10-5
   * clearfix
   * ----------------------------------
   */
.clearfix:after,
.cf:after {
  display: block;
  clear: both;
  content: "";
}
