@charset "UTF-8";
/* ===========================================
*  
*  省略ルール
*  以下記載のものを省略して使用しています
* 
* ======================================== */
/*------------------------------
* 
* txt : text
* bg  : background
* cmn : common
* img : image
* bnr : banner
* ttl : title
* num : number
* btn : button
* flx : flex
* col : column
* mg  : margin
* mt  : margin-top
* mb  : margin-bottom
* pd  : padding
* pt  : padding-top
* pb  : padding-bottom
* rg  : regular
* md  : medium
* lg  : large
* nm  : normal
* 
------------------------------*/
/* ===========================================
*  
*  common styles
* 
* ======================================== */
/*------------------------------------
* 
* default styles
* 
------------------------------------*/
a,
img,
button {
  display: block;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  width: auto;
}

/* default hover style */
a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

/*------------------------------------
* 
* text styles
* 
-------------------------------------*/
/* 
テキストカラー
-------------------------*/
.txt--main {
  color: #ef93bb;
}

.txt--main-light {
  color: #fdf4f8;
}

.txt--accent {
  color: #fff67f;
}

.txt--accent-light {
  color: #fffddf;
}

.txt--sub {
  color: #1073b1;
}

.txt--red {
  color: #c20000;
}

.txt--link {
  color: #21ade4;
}

.txt--white {
  color: #ffffff;
}

.txt--black {
  color: #000000;
}

.txt--main-black {
  color: #333333;
}

.txt--gray {
  color: #eeeeee;
}

/* 
テキスト配置
-------------------------*/
.txt--center {
  text-align: center;
}

.txt--left {
  text-align: left;
}

.txt--right {
  text-align: right;
}

/* 
アンダーライン
-------------------------*/
.txt-underline--main {
  -webkit-text-decoration: underline #ef93bb !important;
          text-decoration: underline #ef93bb !important;
}

.txt-underline--main-light {
  -webkit-text-decoration: underline #fdf4f8 !important;
          text-decoration: underline #fdf4f8 !important;
}

.txt-underline--accent {
  -webkit-text-decoration: underline #fff67f !important;
          text-decoration: underline #fff67f !important;
}

.txt-underline--accent-light {
  -webkit-text-decoration: underline #fffddf !important;
          text-decoration: underline #fffddf !important;
}

.txt-underline--sub {
  -webkit-text-decoration: underline #1073b1 !important;
          text-decoration: underline #1073b1 !important;
}

.txt-underline--red {
  -webkit-text-decoration: underline #c20000 !important;
          text-decoration: underline #c20000 !important;
}

.txt-underline--link {
  -webkit-text-decoration: underline #21ade4 !important;
          text-decoration: underline #21ade4 !important;
}

.txt-underline--white {
  -webkit-text-decoration: underline #ffffff !important;
          text-decoration: underline #ffffff !important;
}

.txt-underline--black {
  -webkit-text-decoration: underline #000000 !important;
          text-decoration: underline #000000 !important;
}

.txt-underline--main-black {
  -webkit-text-decoration: underline #333333 !important;
          text-decoration: underline #333333 !important;
}

.txt-underline--gray {
  -webkit-text-decoration: underline #eeeeee !important;
          text-decoration: underline #eeeeee !important;
}

/* 
アンダーライン　配置
-------------------------*/
.underline-offset--sm {
  text-underline-offset: 0.25em;
}

.underline-offset--rg {
  text-underline-offset: 0.3em;
}

.underline-offset--md {
  text-underline-offset: 0.5em;
}

.underline-offset--lg {
  text-underline-offset: 0.8em;
}

/*--------------------------------
*
* backgroundクラス
* 
---------------------------------*/
/* 
背景色
-------------------------*/
.bg--main {
  background-color: #ef93bb;
}

.bg--main-light {
  background-color: #fdf4f8;
}

.bg--accent {
  background-color: #fff67f;
}

.bg--accent-light {
  background-color: #fffddf;
}

.bg--sub {
  background-color: #1073b1;
}

.bg--red {
  background-color: #c20000;
}

.bg--link {
  background-color: #21ade4;
}

.bg--white {
  background-color: #ffffff;
}

.bg--black {
  background-color: #000000;
}

.bg--main-black {
  background-color: #333333;
}

.bg--gray {
  background-color: #eeeeee;
}

/*-------------------------------
* 
* borderクラス
* 
-------------------------------*/
/* 
ボーダー色
-------------------------*/
.border--main {
  border-color: #ef93bb !important;
}

.border--main-light {
  border-color: #fdf4f8 !important;
}

.border--accent {
  border-color: #fff67f !important;
}

.border--accent-light {
  border-color: #fffddf !important;
}

.border--sub {
  border-color: #1073b1 !important;
}

.border--red {
  border-color: #c20000 !important;
}

.border--link {
  border-color: #21ade4 !important;
}

.border--white {
  border-color: #ffffff !important;
}

.border--black {
  border-color: #000000 !important;
}

.border--main-black {
  border-color: #333333 !important;
}

.border--gray {
  border-color: #eeeeee !important;
}

/*-------------------------------
* 
* fontクラス
* 
-------------------------------*/
/* 
font-weight
-------------------------*/
.font--rg {
  font-weight: 400 !important;
}

.font--md {
  font-weight: 500 !important;
}

.font--semibold {
  font-weight: 600 !important;
}

.font--bold {
  font-weight: 700 !important;
}

.font--blak {
  font-weight: 900 !important;
}

/* 
font-family
-------------------------*/
.font-main {
  font-family: "Zen Maru Gothic", serif !important;
}

.font-sub {
  font-family: "Noto Sans JP", sans-serif !important;
}

.font-third {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
}

.font-en {
  font-family: "Kiwi Maru", serif !important;
}

/*------------------------------
*
* display クラス
*
------------------------------*/
/* 
display 変更
-------------------------*/
.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

/* ===========================================
*
* object クラス
*
* ======================================== */
/* 
contain 設定
-------------------------*/
.contain-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contain-img--center > img {
  /*　中央揃え　*/
  -o-object-position: center center;
     object-position: center center;
}
.contain-img--left > img {
  /*　左揃え　*/
  -o-object-position: left center;
     object-position: left center;
}
.contain-img--right > img {
  /*　右揃え　*/
  -o-object-position: right center;
     object-position: right center;
}

.cover-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cover-img--center > img {
  /*　中央揃え　*/
  -o-object-position: center center;
     object-position: center center;
}
.cover-img--left > img {
  /*　左揃え　*/
  -o-object-position: left center;
     object-position: left center;
}
.cover-img--right > img {
  /*　右揃え　*/
  -o-object-position: right center;
     object-position: right center;
}
.cover-img--fit {
  /* 比率で画像サイズを指定するためのクラス */
  /* width,height:0;,padding-topまたはaspect-ratioを別指定する */
  position: relative;
  overflow: hidden;
}
.cover-img--fit > img {
  position: absolute;
  -o-object-position: center center;
     object-position: center center;
  top: 0;
  left: 0;
}

/*------------------------------
*
* google map default
*
------------------------------*/
.googlemap {
  width: 100%;
  /* 200px 以下は動かないため */
  min-height: 202px;
  position: relative;
  overflow: hidden;
}

.googlemap iframe {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
}

/*------------------------------
*
* flex クラス
*
------------------------------*/
.flx-base {
  display: flex;
  flex-wrap: wrap;
}

/* 
flex column 
-------------------------*/
.flx-col {
  flex-direction: column;
}
.flx-col--center {
  align-items: center;
}
.flx-col--start {
  align-items: flex-start;
}
.flx-col--end {
  align-items: flex-end;
}

/* 
flex row
-------------------------*/
.flx-row {
  flex-direction: row;
}
.flx-row--center {
  justify-content: center;
}
.flx-row--end {
  justify-content: flex-end;
}
.flx-row--between {
  justify-content: space-between;
}

.flx-row--reserve {
  flex-direction: row-reverse;
}

/* 
flex center 中央揃え
-------------------------*/
.flx--center {
  align-items: center;
  justify-content: center;
}

/* 
margin 中央揃え
-------------------------*/
.mg-x--center {
  margin-left: auto;
  margin-right: auto;
}

.over-hidden {
  overflow: hidden;
}

.over-scroll {
  overflow: auto;
}/*# sourceMappingURL=common.css.map */