@charset "utf-8";
/*----------------------------
このCSSファイルに、スタイル指定を記述していきます。
----------------------------*/

/* 全体のスタイル調整 */
* {
  box-sizing: border-box;
}

/* bodyの初期スタイル調整 */
body {
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Noto Sans JP', 'Open Sans', sans-serif;
  font-weight: 400;
  color: #333;
  background-color: #fff;
}

/* 初期スタイル調整 */
h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
}

h4 {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 10px;
}

h5 {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 10px;
}

p {
  margin-top: 0;
  margin-bottom: 1em;
  text-align: justify;
}

address {
  font-style: normal;
}

a {
  color: #666;
  text-decoration: none;
  transition-duration: 0.3s;
}

a:hover,
a:focus {
  color: #000;
  text-decoration: none;
  transform: scale(1.1);
  transition-duration: 0.3s;
}

ul {
  margin: 1em 0;
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}

section {
  padding: 40px 0;
}

/* 初期スタイル調整 ここまで */

/* 共通スタイル調整 ここから */

/*h2関連*/
.h2-title {
  position: relative;
  text-transform: uppercase;
  z-index: 100;
}

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

.txt-lead {
  font-weight: 700;
}

/*ボタン関連*/
.btn {
  display: block;
  padding: 20px 35px;
  border-radius: 8px;
  border: 3px solid #FF7800;
  margin: 0 auto;
  background-color: #ffffff;
}

.btn:hover,
.btn:focus {
  color: #fff;
  background: #FF7800;
  cursor: pointer;
}

/*問い合わせボタン*/
.btn-reserve {
  color: #000;
  border: 3px solid #FF7800;
  background: #fff;
}

/*レイアウト関連*/
.inner {
  padding: 0 15px;
  margin: 0 auto;
}

@media screen and (min-width:768px) {
  .inner {
    max-width: 1200px;
  }
}

.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

@media screen and (min-width:768px) {
  .sp-only {
    display: none;
  }

  .pc-only {
    display: block;
  }
}



/* 共通スタイル調整 ここまで */

/* ヘッダーブロック ここから */
.header {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 80px;
  padding: 25px;
  background: #FF7800;
  z-index: 200;
}

.header-logo-menu {
  display: flex;
  flex-direction: row-reverse;
  justify-content: end;
}


/*ハンバーガーメニュー*/
.gnav-toggle {
  position: relative;
}


/*チェックボックス等は非表示に*/
.gnav-hidden {
  display: none;
}

/*アイコンのスペース*/
#gnav-open {
  display: inline-block;
  width: 34px;
  height: 30px;
  vertical-align: middle;
}

/*ハンバーガーの形をCSSで表現*/
#gnav-open span,
#gnav-open span::before,
#gnav-open span::after {
  content: '';
  position: absolute;
  height: 4px;
  /*線の太さ*/
  width: 44px;
  /*長さ*/
  background: rgb(255, 255, 255);
  display: block;
  cursor: pointer;
  transform:skewX(-10deg);
}

#gnav-open span::before {
  bottom: -12px;
}

#gnav-open span::after {
  bottom: -24px;
}

/*閉じる用の薄黒箇所*/
#gnav-close {
  display: none;
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

/*チェックがついたら表示させる*/
#gnav-input:checked ~ #gnav-close {
  display: block;
  opacity: 0.5;
}

#gnav-input:checked ~ #gnav-content {
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

/*メニューの中身*/
#gnav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 70%;
  max-width: 300px;
  height: 100%;
  background: #FF7800;
  transition: 0.7s ease-in-out;
  transform: translateX(-105%);
}

.gnav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: uppercase;
}


.gnav-item {
  background: bottom no-repeat url("../img/line-white.svg");
  margin: 10px;
  padding: 15px 0 50px;
}

.gnav-item a {
  color: #fff;
  font-size: 14px;
  display: block;
  width: 200px;
  text-align: center;
}

.gnav-item a::first-line {
  font-size: 16px;
  font-weight: bold;
}




/*-------------------------------------------
　メインビジュアル
-------------------------------------------*/

/*ロゴ*/
.logo-area {
  width: 350px;
  margin: 0;
  position: relative;
  top: -15px;
}


.mv-area {
  width: 97vw;
  height:auto;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
  
.mv-area img {
  width: 75%;
}



@media screen and (min-width:768px) {
  .mv-area {
    width: 97vw;
    height: auto;
  }

  .mv-area img {
    width: 90%;

  }


}


.swiper-container {
    width: 100%;
}



/*-------------------------------------------
　フィロソフィー
-------------------------------------------*/
.philo-area {
  background-color: #FF7800;
}

.philo-txt {
  color: #fff;
}

.philo-area img {
  height: auto;
}

.philo-content img {
  height: 300px;
}


@media screen and (min-width:768px) {
  .philo-content {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .philo-txt {
    flex: 3;
    margin-left: 130px;

  }

  .philo-area img {
    flex: 2;
  }
}

/*-------------------------------------------
　サービスの案内
-------------------------------------------*/
.service-area {
  background-color: #fff;
}

.service-content {
  display: flex;
  flex-wrap: wrap;
}

.service-item {
  flex: 100%;
  text-align: center;
  padding: 20px 15px;
  margin: 15px;
  border: 3px solid #FF7800;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
}

.service-item img {
  width: 120px;
  height: 220px;
  margin: 0 auto;
  flex: 25%;
}

.service-content-mini {
  display: flex;
  flex-wrap: wrap;
}

.service-item-mini {
  flex: 100%;
  text-align: center;
  padding: 20px 15px;
  margin: 15px;
  border: 3px solid #FF7800;
  border-radius: 10px;
  box-sizing: border-box;
}

.service-item-mini img {
  width: 120px;
  height: 220px;
  margin: 0 auto;
  flex: 25%;
}

.service-item-txt-mini {
  flex: 75%;
  margin: 10px;
}

.service-item-txt-mini img {
  width: 200px;
  height: 50px;
}

.service-item-txt {
  flex: 75%;
  margin: 10px;
}

.service-item-txt img {
  width: 200px;
  height: 50px;
}

@media screen and (min-width:768px) {
  .service-content {
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  .service-item {
    flex: 30%;
  }

  .service-content-mini {
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  .service-item-mini {
    flex: 30%;
  }

  .service-item-mini img {
    width: 100px;
    height: 200px;
    margin: 0 auto;
  }

  .service-item-txt-mini {
    margin: 15px;
  }

  .service-item-txt-mini img {
    width: 200px;
    height: 50px;
  }

}

@media screen and (max-width:767px) {
  .service-item-mini {
    flex: 100%;
    text-align: center;
    padding: 20px 5px;
    margin: 10px;
    border: 3px solid #FF7800;
    border-radius: 10px;
    display: flex;
  }

  .service-item {
    flex: 100%;
    text-align: center;
    padding: 20px 5px;
    margin: 10px;
    border: 3px solid #FF7800;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
  }
}

/*-------------------------------------------
　お問い合わせ
-------------------------------------------*/
.contact-area {
  background-color: #ffffff;
}

form{
  width: 90%;
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 20px 0;
}

dl{
  width: 700px;
}

.form-item{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

dt{
  width: 200px;
  text-align: right;
}

dd{
  width: 500px;
}

input[type="text"], input[type="email"],select, textarea{
  display: block;
  width: 100%;
  height: 50px;
  font-size: 16px;
  border: 3px solid #FF7800;
  border-radius: 10px;
  padding: 0.3em;
}

textarea{
  min-height: 160px;
}

.privacy{
  border: 3px solid #FF7800;
  border-radius: 10px;
  padding: 10px 20px;
  height: 180px;
  overflow: auto;
}

@media screen and (max-width:768px) {
  form{
    margin: 0 0 20px;
    padding: 20px 0;}
  dl{width: 95%;}
  .form-item{display: block;}
  dt{
    width: 100%;
    text-align: left;
    padding-bottom: 0.5em;
  }
  dd{width: 100%;}
}




/*-------------------------------------------
　ページトップ
-------------------------------------------*/
.pagetop {
  text-align: center;
  padding: 15px;
  background-color: #f0f0f0;
}

.pagetop a::after {
  content: "";
  background: url(../img/list-marker.svg) no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 3px 10px;
  transform: rotate(-90deg);
}


/*-------------------------------------------
　フッター
-------------------------------------------*/
.foot-area {
  color: #fff;
  text-align: center;
  background-color: #596680;
}

.foot-logo {
  margin: 0 auto 20px;
}

.text-phone,
.text-phone a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.foot-area_copy {
  color: #fff;
  font-size: 12px;
  display: inline-block;
  width: 100%;
  padding: 10px;
  background-color: #FF7800;
}

@media screen and (min-width:768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
