@charset "UTF-8";

/* Colors */
:root {
  --accent: #FDC552;
  --accent2: #ff914d;
  --bgc: #ffffff;
  --bgc2: #FFF8DA;
  --txt: #533422;
  --theme: #B8B9B3;
  --footer: #533422;
}

/*  1rem = 100px */
:root {
  font-size: 100px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: var(--bgc);
  color: var(--txt);
  font-size: 0.15rem;
}

@media (min-width: 800px) {
  body {
    font-size: 0.25rem;
  }
}


.header-container {
  height: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  min-width: 395px;
}

.logo {
  width: 100px;
  padding-left: 6px;
}



.logotype {
  width: 202px;
}

/* ハンバーガーメニュー */
.gMenu-wrap {
  display: flex;
}

/* メニューを画面上部に固定表示しています */
.gMenu {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}

/* メニューアイコンを画面右上に固定しています */
.gMenu .menu-icon {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 12px;
  padding-top: 5px;
  height: 12px;
}

/* メニューアイコン（三本線）の真ん中の線です */
.gMenu .menu-icon .navicon {
  background: var(--txt);
  /* 色は自由に変更可能です */
  display: block;
  height: 2px;
  /* 太さ */
  width: 40px;
  /* 長さ */
  position: relative;
  transition: background .4s ease-out;
  /* 形が変わる時のアニメーション */
}

/* メニューアイコン（三本線）の上と下の線を疑似要素で追加 */
.gMenu .menu-icon .navicon::before,
.gMenu .menu-icon .navicon::after {
  background: var(--txt);
  /* 色は自由に変更可能です */
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .4s ease-out;
  /* 形が変わる時のアニメーション */
  width: 100%;
}

.gMenu .menu-icon .navicon::before {
  top: 9px;
}

/* 位置を上にずらしています */
.gMenu .menu-icon .navicon::after {
  top: -9px;
}

/* 位置を下にずらしています */
/* 表示されるメニューです */
.gMenu .menu {
  background-color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  max-height: 0;
  /* ★最初は高さを0にして非表示状態に */
  transition: max-height .6s;
  /* 表示されるときのアニメーション */
  text-align: center;
}

/* メニュー部分のデザインです */
.gMenu .menu li:first-of-type {
  padding-top: 50px;
}

.gMenu .menu li a {
  display: block;
  padding: 24px 20px;
  text-decoration: none;
  text-transform: uppercase;
}

.gMenu .menu li a:hover {
  background-color: #f4f4f4;
}

/* チェックボックスは常に非表示です */
.gMenu .menu-btn {
  display: none;
}

/* ▼▼▼以下はチェックボックスがONの時の状態です▼▼▼ */
.gMenu .menu-btn:checked~.menu {
  max-height: 500px;
  /* ★チェックボックスがオンの時高さを338pxにして表示させます */
  transition: max-height .6s;
}

/* メニューボタンの中央の線を非表示に */
.gMenu .menu-btn:checked~.menu-icon .navicon {
  background: transparent;
}

/* メニューボタンの上下の線を45度傾けて✕印を作ります */
.gMenu .menu-btn:checked~.menu-icon .navicon::before {
  transform: rotate(-45deg);
  top: 0;
}

.gMenu .menu-btn:checked~.menu-icon .navicon::after {
  transform: rotate(45deg);
  top: 0;
}

@media (hover: hover) and (pointer: fine) {
  .navigation__link:hover {
    background: #333;
  }
}
.line-btn {
  position: fixed;
  top: 40px;
  right: 10px;
}
.line-btn img {
  width: 73px;
  height: 39px;
}

.pc-header {
  display: none;
}

@media (min-width: 1280px) {
  .pclogowrap {
    display: flex;
  }
  .logo {
    width: 132px;
    padding-left: 21px;
  }

  .logotype {
    width: 500px;
  }

  .header {
    display: none;
  }

  .pc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
.pcmenu {
  display: flex;
  align-items: center;
}
  .pcul {
    display: flex;
    font-size: 20px;
    align-items: center;
  }
  .pcul li{
    margin: 0 10px;
  }
  .pcul li img {
    width: 129px;
  }
}

/* Hero */

.hero-container {
  background-image: url(../img/hero_sp.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  height: 640px;
  min-width: 395px;
}

.Teikiriyou {
  display: flex;
}

.Teikiriyou img {
  margin-top: 10px;
  margin-left: 13px;
  width: 200px;
}

.slogan-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: "Zen Kurenaido", serif;
  font-size: 24px;
  margin-top: 230px;
}

.slogan-container p {
  margin: 5px;

  background-color: rgba(253, 197, 82, 0.5);
}

.slogan-container {
  display: flex;
}

.slogan2-container {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  font-size: 16px;
}

.pc-slogan2-container {
  display: none;
}

@media (min-width: 1280px) {
  .hero-container {
    background-image: url(../img/hero_pc.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    height: 80vh;
    min-width: 1280px;
  }

  .Teikiriyou img {
    margin-top: 55px;
    margin-left: 45px;
    width: 320px;
  }

  .slogan-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: "Zen Kurenaido", serif;
    font-size: 50px;
    margin-top: 100px;
  }

  .slogan-container {
    display: flex;
  }

  .slogan2-container {
    display: none;
  }

  .pc-slogan2-container {
    margin-top: 52px;
    display: flex;
    justify-content: center;
    font-size: 32px;
  }

}

/* バナー */
.banner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0px;
  min-width: 395px;
}

.banner-child {
  margin: 11px 0px;
}

.banner-child img {
  width: 302px;
}

@media (min-width: 900px) {
  .banner-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 47px 0px 80px;
    min-width: 395px;
  }

  .banner-child {
    margin: 0px 31px;
  }

  .banner-child img {
    width: 400px;
  }
}

/* Aboutus */
.Aboutus-container {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  background-color: var(--bgc2);
  padding-bottom: 25px;
  min-width: 395px;
}

.pc-Aboutus-container {
  display: none;
}

.Aboutus-container h2 {
  color: var(--accent);
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: bolder;
  font-size: 38px;
  margin: 20px 0;
}

.Aboutus-container p {
  text-align: center;
  line-height: 2.2;
  margin: 15px 0;
}

.Aboutus-img {
  position: absolute;
  bottom: 21px;
  right: 11px;
}

.pc-Aboutus-img {
  display: none;
}

@media (min-width: 1000px) {
  .Aboutus-container {
    display: none;
  }

  .pc-Aboutus-container {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    background-color: var(--bgc2);
    padding-bottom: 25px;
  }

  .pc-Aboutus-container h2 {
    color: var(--accent);
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: bolder;
    font-size: 60px;
    margin: 80px 0;
  }

  .pc-Aboutus-container p {
    text-align: center;
    line-height: 2.2;
    margin: 15px 0;
  }

  .Aboutus-img {
    display: none;
  }

  .pc-Aboutus-img {
    display: inline;
    position: absolute;
    width: 224px;
    bottom: 21px;
    right: 11px;
  }

}

/* サービス内容 */
.Service-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 395px;
}

.Service-header h2 {
  font-family: "Zen Kaku Gothic New", serif;
  color: var(--accent2);
  font-size: 38px;
  font-weight: bolder;
  margin: 8px 0 12px 0;
}

.Servise-img img {
  width: 360px;
  margin: 15px 0;
}

.ServiceContents-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 25px 0;
  font-family: "Zen Kaku Gothic New", serif;
}

.contents img {
  width: 240px;
}

.contents-h3 {
  font-size: 30px;
  font-weight: bolder;
  text-align: center;
  margin: 10px 0;
}

.contests-p {
  font-size: 22px;
  text-align: center;
}

.Serviceoption {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0;
}

.Serviceoption img {
  width: 320px;
}

.pc-Serviceoption {
  display: none;
}

@media (min-width: 1240px) {
  .Service-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 55px;
  }

  .Service-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: 395px;
  }

  .Service-header h2 {
    font-family: "Zen Kaku Gothic New", serif;
    color: var(--accent2);
    font-size: 60px;
    font-weight: bolder;
    margin: 8px 100px 12px;
  }

  .Servise-img img {
    width: 360px;
    margin: 15px 0;
  }

  .ServiceContents-container {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .contents {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 25px 0;
    font-family: "Zen Kaku Gothic New", serif;
  }

  .contents img {
    width: 200px;
  }

  .contents-h3 {
    font-size: 30px;
    font-weight: bolder;
    text-align: center;
    margin: 10px 0;
  }

  .contests-p {
    font-size: 22px;
    text-align: center;
  }

  .Serviceoption {
    display: none;
  }

  .pc-Serviceoption {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 76px 0;
  }

  .Serviceoption img {
    width: 200px;
  }

  .pc-Serviceoption img {
    width: 1240px;
  }
}

/* 料金案内 */
.FeeGuide-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.FeeGuide-container h2 {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 77px;
}

.FeeGuide-inner {
  background-color: var(--bgc2);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.FeeGuide-inner img {
  width: 334px;
}

.pc-FeeGuide-inner {
  display: none;
}

.teikiriyougaotoku {
  position: absolute;
  top: -60px;
  left: -20px;
}

.teikiriyougaotoku img {
  width: 112px;
}

.list {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  line-height: 2;
}

.span {
  font-size: 22px;
  line-height: 2;
}

.list:before {
  content: "";
  position: absolute;
  top: .65em;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #8b6b4e;
  border-radius: 50%;
}

.FeeGuide-inner p {
  font-size: 16px;
  line-height: 2;
  margin-top: 20px;
  margin-bottom: 20px;
}

.tatoeba {
  margin-top: 60px;
}

.pc-tatoeba {
  display: none;
}

.getsugaku {
  margin-top: 27px;
}

.getsugaku img {
  width: 337px;
}

.sinkigentei {
  margin-top: 73px;
}

.sinkigentei img {
  width: 393px;
}

.pc-sinkigentei {
  display: none;
}

@media (min-width: 1240px) {
  .FeeGuide-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .FeeGuide-container h2 {
    font-family: "Zen Kaku Gothic New", serif;
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 77px;
  }

  .FeeGuide-inner {
    display: none;
  }

  .pc-FeeGuide-inner {
    background-color: var(--bgc2);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pc-FeeGuide-inner img {
    width: 1200px;
  }

  .teikiriyougaotoku {
    position: absolute;
    top: -60px;
    left: -20px;
  }

  .teikiriyougaotoku img {
    width: 112px;
  }

  .list {
    position: relative;
    padding-left: 20px;
    font-size: 22px;
    line-height: 2;
  }

  .span {
    font-size: 22px;
    line-height: 2;
  }

  .list:before {
    content: "";
    position: absolute;
    top: .65em;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #8b6b4e;
    border-radius: 50%;
  }

  .FeeGuide-inner p {
    font-size: 16px;
    line-height: 2;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .pc-tatoeba {
    display: inline;
  }

  .pc-tatoeba img {
    width: 1200px;
    margin-top: 40px;
  }

  .tatoeba {
    display: none;
  }

  .getsugaku {
    display: none;
  }

  .pc-sinkigentei {
    display: inline;
  }

  .sinkigentei {
    display: none;
  }

  .pc-sinkigentei img {
    width: 1200px;
    margin-top: 91px;
  }
}

/* 対応エリア */
.area-container {
  font-family: "Zen Kaku Gothic New", serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
  background-color: var(--bgc2);
}

.area-container h2 {
  font-size: 38px;
  font-weight: bold;
  margin-top: 68px;
}

.area-inner {
  display: flex;
  flex-direction: column;
}

.area-inner img {
  margin-top: 34px;
  width: 350px;
}

.area-cap {
  margin-top: 36px;
}

.area-cap2 {
  margin-top: 65px;
  font-size: 20px;
  line-height: 2;
}

@media (min-width: 1240px) {
  .area-container {
    font-family: "Zen Kaku Gothic New", serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    background-color: var(--bgc2);
  }

  .area-container h2 {
    font-size: 38px;
    font-weight: bold;
    margin-top: 68px;
  }

  .area-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .area-inner img {
    margin-top: 34px;
    width: 617px;
    margin-right: 125px;
  }

  .area-cap {
    margin-top: 36px;
  }

  .area-cap2 {
    margin-top: 65px;
    font-size: 20px;
    line-height: 2;
  }
}

/* お客様の声 */
.voice-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bgc2);
}

.voice-container h2 {
  font-size: 38px;
  font-weight: bold;
  margin-top: 71px;
  margin-bottom: 26px;
}

.voice-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.voice-cl1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.voice-cl2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.voice-cl1 img {
  width: 394px;
}

.voice-cl2 img {
  width: 394px;
}

@media (min-width: 1240px) {
  .voice-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bgc2);
  }

  .voice-container h2 {
    font-size: 60px;
    font-weight: bold;
    margin-top: 71px;
    margin-bottom: 26px;
  }

  .voice-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 64px;
  }

  .voice-cl1 {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .voice-cl2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 52px;
  }

  .voice-cl1 img {
    width: 600px;
    margin: 0 16px;
  }

  .voice-cl2 img {
    width: 600px;
    margin: 0 16px;
  }

}

/* スタッフ募集 */

.StaffWanted-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--accent2);
  background-color: var(--bgc2);
}

.StaffWanted-container span {
  font-family: "Zen Kurenaido", serif;
  font-size: 22px;
  margin-top: 26px;
}

.StaffWanted-container h2 {
  font-family: "M PLUS 2", serif;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.StaffWanted-hero img {
  width: 375px;
}

.StaffWanted-hero2 {
  width: 375px;
  color: var(--accent2);
  background-color: var(--bgc2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.StaffWanted-hero3 {
  width: 375px;
  color: var(--accent2);
  background-color: var(--bgc2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1240px) {
  .StaffWanted-container {
    display: flex;
    flex-direction: row;
  justify-content: center;
    color: var(--accent2);
    background-color: var(--bgc2);
  }

  .StaffWanted-container span {
    font-family: "Zen Kurenaido", serif;
    font-size: 40px;
    margin-top: 26px;
  }

  .StaffWanted-container h2 {
    font-family: "M PLUS 2", serif;
    font-size: 70px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
  }

  .staff-inner1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .StaffWanted-hero img {
    width: 375px;
  }
  .staff-inner2 {
    display: flex;
    flex-direction: column;
  }

  .StaffWanted-hero2 {
    width: 375px;
    color: var(--accent2);
    background-color: var(--bgc2);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .StaffWanted-hero3 {
    width: 375px;
    color: var(--accent2);
    background-color: var(--bgc2);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* サイトマップなど */
.sox-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.sox-inner1 {
  display: flex;
  flex-direction: column;
  font-size: 24px;
}

.sox-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 60px;
}

.sox-title img:first-child {
  width: 100px;
}

.sox-title img:nth-child(2) {
  height: 19px;
}

.sox-inner2 {
  display: flex;
  flex-direction: column;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 24px;
  font-weight: bold;
  margin-top: 38px;
}



.sox-inner2 h2 {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.sox-inner2 ul li {
  font-size: 24px;
  line-height: 1.8;
  font-weight: bold;
}

.sox-inner3 p {
  margin: 3px 0px;
}

.sox-inner3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 45px;
}
.sox-inner3 h2 {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.icon-container {
  display: flex;
  align-items: center;
  margin-top: 41px;
}

.icon-container a {
  margin: 0 8px;
}

.gosoudan {
  margin: 32px 0 48px 0;
}
@media (min-width: 1240px) {
  .sox-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }
  
  .sox-inner1 {
    display: flex;
    flex-direction: column;
    font-size: 32px;
  }
  
  .sox-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 0px;
  }
  
  .sox-title img:first-child {
    width: 158px;
  }
  
  .sox-title img:nth-child(2) {
    height: 30px;
  }
  
  .sox-inner2 {
    display: flex;
    flex-direction: column;
    font-family: "Zen Kaku Gothic New", serif;
    font-size: 24px;
    font-weight: bold;
    margin-top: 38px;
    margin-left: 100px;
    margin-right: 50px;
  }
  
  
  .sox-inner2 h2 {
    font-family: "Zen Kaku Gothic New", serif;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .sox-inner2 ul li {
    font-size: 24px;
    line-height: 1.8;
    font-weight: bold;
  }
  
  .sox-inner3 p {
    margin: 3px 0px;
  }
  
  .sox-inner3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 45px;
  }
  .sox-inner3 h2 {
    font-family: "Zen Kaku Gothic New", serif;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .icon-container {
    display: flex;
    align-items: center;
    margin-top: 41px;
  }
  
  .icon-container a {
    margin: 0 8px;
  }
  
  .gosoudan {
    margin: 32px 0 48px 0;
  }  
}
/* フッター */
.footer-container {
  height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--footer);
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: bold;
  font-size: 24px;
  color: #f4f4f4;
}
.pc-footer-container {
  display: none;
}
@media (min-width: 1240px){

  .footer-container {
    display: none;
  }
  .pc-footer-container {
    display: inline;
    height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--footer);
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: bold;
    font-size: 24px;
    color: #f4f4f4;
  }
}