@charset "UTF-8";
/*-----------------------------------------------------------------------------------------------------
共通設定(PC)
--------------------------------------------------------------------------------------------------------*/
html, body {
  width: 100%;
}
body {
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", "sans-serif";
  font-size: 62.5%;
  font-style: normal;
  line-height: 1.5;
  color: #5c5c5c;
}
/*リンク文字の設定*/
a {
  text-decoration: underline;
}
a:link, a:visited {
  color: #39f;
}
a:hover, a:active {
  color: #f60;
}
/*ボタンホバー設定(半透明)*/
.btn:hover {
  opacity: 0.7;
}
/*-----------------------------------------------------------------------------------------------------
各エリアの設定(PC)
-----------------------------------------------------------------------------------------------------*/
 
.loaded {
  opacity: 0;
  visibility: hidden;
}

/*ページ全体*/
#container {
  position: relative;
}

/*本体*/
#main {
  background-image: url(../images/bg_main.jpg);
  background-repeat: no-repeat;            /* 背景を繰り返さない */
  background-position: 50% 50%;            /* 背景画像の位置は画面中央 */
  background-attachment:fixed;             /* 背景画像を固定する */
  background-size:cover;
}
/*カラム部分*/
#main-in {
  background-color: #fff;
  padding: 0em 0;
  box-shadow: 12px 1px 35px #594a42;
}
/*カラム内部のサイズ*/
#main-contents .contents {
  margin-bottom: 0em;
  padding: 0 40px;
}
/*段落タグ*/
#main-contents p {
  line-height: 1.8em;
}
/*全体のフォントサイズ*/
#main-contents {
  font-size: 1.8em;
}
/*カラム全体の幅を変更する*/
.header_inr {
  width: 680px;
  margin: 0 auto
}



/*-----------------------------------------------------------------------------------------------------
ヘッド部分
-----------------------------------------------------------------------------------------------------*/

.head_menu{
  display: flex;
  object-fit: contain;
  justify-content:space-between;

}

.logo{
  width: 40%;
  padding:10px 10px 10px 10px;
}

.head_btn{
  width: 35%;
}

.head_sp{
  display: none;
  width:13%;
  position: relative;
}



/*==================================================
ハンバーガーメニュー＋ボタン
==================================================*/
.header-spMenu {
  display: none;
}

@media screen and (max-width: 767px) {
  .header-spMenu {
    display: block;
  }
}
.header-spNav {
  display: none;
  position: absolute;
  top: 75px;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding:5% 0 0 0%;
  z-index: 9999;
  background: #222;
}
.header-spNav.is-fixed {
  top: 45px;
}

.header-spNav ul li{
  list-style-type: none;
}
.header-spNav ul li a {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  padding: 1rem 0rem;
  border-bottom: 1px dotted #fff;
  text-decoration: none;
}
.header-spNav .header-btn {
  margin: 3rem auto 0;
  width: 100%;
  max-width: 240px;
  background: #6fc55d;
  border-radius: 5em;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  text-align: center;
  padding: 2rem;
  text-decoration: none;
}
a.header-spNav .header-btn {
  text-decoration: none !important;
}

.header-hamburger {
  position: absolute;
  top: 28px;
  right: 0%;
  transform: translate(0, -50%);
  z-index: 10000;
  width: 30px;
  height: 14px;
  cursor: pointer;
  z-index: 9999;
}
.header-hamburger-btn.is-active {
  background: red;
}
.header-hamburger-btn.is-active span:nth-of-type(1) {
  top: 8px;
  transform: translateX(-50%) rotate(225deg);
}
.header-hamburger-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.header-hamburger-btn.is-active span:nth-of-type(3) {
  top: 0;
  transform: translateX(-50%) rotate(-225deg);
}
.header-hamburger-btn span {
  display: block;
  position: relative;
  left: 0%;
  width: 30px;
  height: 4px;
  transform: translateX(-50%);
  background: #222;
  transition: all 0.4s;
}
.header-hamburger-btn span:nth-of-type(1) {
  top: 0;
}
.header-hamburger-btn span:nth-of-type(2) {
  top: 4px;
}
.header-hamburger-btn span:nth-of-type(3) {
  top: 8px;
}


/*-----------------------------------------------------------------------------------------------------
ファーストビュー(ヘッダー画像)
-----------------------------------------------------------------------------------------------------*/
#main-image {
  padding-top: 0em;
  background: url(../images/top_image_back.jpg) center top no-repeat #fff;
  height: auto;
}
#main-image-in {
  position: relative;
  padding-bottom: 0em;
  background-color: transparent;
}
#main-image img {
  width: 100%;
  height: auto;
}


/*-----------------------------------------------------------------------------------------------------
メイン部分(ボディ) ※ここに案件独自のcssを記述していく
-----------------------------------------------------------------------------------------------------*/

.btn-01{
  padding: 1.5em 1.5em 5em;
}

.campaign-wrapper h1 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #2c3e50;
}

.campaign-wrapper h2 {
  font-size: 1.3em;
  margin-top: 30px;
  color: #2980b9;
  border-left: none;
  padding-left: 0;
  padding-bottom: 6px;
}
.campaign-wrapper p,
.campaign-wrapper li {
  font-size: 0.9em;
  margin: 0.5em 0;
}

.campaign-wrapper ul {
  padding-left: 1.5em;
}

.campaign-wrapper {
  max-width: 800px;
  margin: auto;
  background: #ffffff;
  padding: 20px 30px;
}

.campaign-contact {
  padding: 0px 20px 15px;
  border-radius: 12px;
  margin-top: 25px;
}

.campaign-contact p:first-child::before {
  content: "📩 ";
  font-size: 1.2em;
}


/*-----------------------------------------------------------------------------------------------------
フッター部分
-----------------------------------------------------------------------------------------------------*/
#footer {
  background: #f78da7;
  padding: 3em 0 15em;
  text-align: center;
  font-size: 1.4em;
  color: #fff;
}
#footer a {
  color: #fff;
}

.fix_menu_smartphone {
  display: block;
  width: 100%;
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 10000;
  text-align: center;
}
.fix_menu_smartphone img {
  width: 70%;
}

.tel_pc {
  display: block;
   float: left;
   width: 100%;
   margin: 0 auto;
   padding: 0em 0;
 }

.tel_sp {
 display: none;
}


