@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru&family=Lugrasimo&family=Mochiy+Pop+One&family=Zen+Antique+Soft&display=swap");
* {
  box-sizing: border-box; }

html {
  margin: 0; }

body {
  font-family: "Kiwi+Maru"; }

a {
  color: #000;
  text-decoration: none; }

img {
  max-width: 100%; }

ul {
  list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px; }

/*左右に線*/
.sec-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px; }
  .sec-title:before {
    content: '';
    width: 150px;
    height: 3px;
    background-color: #666666;
    margin-right: 20px; }
  .sec-title:after {
    content: '';
    width: 150px;
    height: 3px;
    background-color: #666666;
    margin-left: 20px; }

/*下線*/
.c-item {
  border-bottom: solid 3px #AAAAAA;
  display: inline-block;
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px; }

.b-title {
  font-size: 100px;
  color: #555;
  text-align: left; }

.c-text {
  margin-bottom: 50px;
  text-align: center;
  font-size: 30px;
  font-family: "Noto Serif JP"; }

.btn {
  margin-bottom: 40px; }
  .btn a {
    display: block;
    background-color: #fff;
    width: 250px;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
    padding: 20px;
    border-radius: 30px;
    transition: 0.3s; }
    .btn a:hover {
      transform: scale(1.1, 1.1); }

.sp {
  display: none; }

/*--------------------------------
mainvisual
--------------------------------*/
#mainvisual {
  position: relative;
  height: 400px;
  color: #fff; }
  #mainvisual .sec-mv {
    width: 100%;
    height: 400px;
    object-fit: cover; }
  #mainvisual a {
    color: #fff; }
  #mainvisual .header {
    /* ヘッダー大枠のデザイン調整 */
    width: 100%;
    height: 120px;
    position: fixed;
    z-index: 999;
    /*下記3コードの記述がないとヘッダーは何故か表示されない*/
    top: 0;
    left: 0;
    right: 0;
    /* ロゴサイズ調整 */
    /* ヘッダー内部のデザイン調整 */ }
    #mainvisual .header .logo {
      width: 150px; }
    #mainvisual .header .header__inner {
      padding: 10px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: inherit;
      /* スマホ表示のナビメニューは背景色を変更して絶対位置で表示 */
      /* スマホ表示のナビメニューのliの位置調整 */
      /* PC表示のナビメニューは横並びに設定 */
      /* PC表示のナビメニューのliのデザイン調整 */
      /* ナビのリンク */
      /* ハンバーガーメニュー */
      /* ハンバーガーメニューの線 */
      /* ハンバーガーメニュークリック後のスタイル */ }
      #mainvisual .header .header__inner h1 {
        font-size: 30px;
        font-family: "Noto serif"; }
      #mainvisual .header .header__inner .header__nav {
        position: absolute;
        right: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        transform: translateX(100%);
        background-color: #D9D9DA;
        transition: ease .4s;
        font-weight: bold; }
      #mainvisual .header .header__inner .nav-items {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0; }
      @media screen and (min-width: 960px) {
        #mainvisual .header .header__inner .header__nav {
          position: static;
          transform: initial;
          background-color: inherit;
          height: inherit;
          display: flex;
          justify-content: end;
          width: 60%; } }
      @media screen and (min-width: 960px) {
        #mainvisual .header .header__inner .nav__items {
          width: 100%;
          display: flex;
          align-items: center;
          height: initial;
          justify-content: space-between; } }
      @media screen and (min-width: 960px) {
        #mainvisual .header .header__inner .nav-items {
          position: inherit;
          top: 0;
          left: 0;
          transform: translate(0, 0); } }
      #mainvisual .header .header__inner .nav-items__item a {
        width: 100%;
        display: block;
        text-align: center;
        font-size: 20px;
        margin-bottom: 24px;
        transition: 0.5s; }
        #mainvisual .header .header__inner .nav-items__item a:hover {
          font-size: 28px; }
      #mainvisual .header .header__inner .nav-items__item:last-child a {
        margin-bottom: 0; }
      @media screen and (min-width: 960px) {
        #mainvisual .header .header__inner .nav-items__item a {
          margin-bottom: 0; } }
      #mainvisual .header .header__inner .header__hamburger {
        width: 48px;
        height: 100%; }
      #mainvisual .header .header__inner .hamburger {
        background-color: transparent;
        border-color: transparent;
        z-index: 9999; }
      @media screen and (min-width: 960px) {
        #mainvisual .header .header__inner .hamburger {
          display: none; } }
      #mainvisual .header .header__inner .hamburger span {
        width: 100%;
        height: 1px;
        background-color: #fff;
        position: relative;
        transition: ease .4s;
        display: block; }
      #mainvisual .header .header__inner .hamburger span:nth-child(1) {
        top: 0; }
      #mainvisual .header .header__inner .hamburger span:nth-child(2) {
        margin: 8px 0; }
      #mainvisual .header .header__inner .hamburger span:nth-child(3) {
        top: 0; }
      #mainvisual .header .header__inner .header__nav.active {
        transform: translateX(0); }
      #mainvisual .header .header__inner .hamburger.active span:nth-child(1) {
        top: 5px;
        transform: rotate(45deg); }
      #mainvisual .header .header__inner .hamburger.active span:nth-child(2) {
        opacity: 0; }
      #mainvisual .header .header__inner .hamburger.active span:nth-child(3) {
        top: -13px;
        transform: rotate(-45deg); }
  #mainvisual .change-color {
    background-color: #D9D9DA;
    transition: 0.3s; }
  #mainvisual h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 60px; }
  #mainvisual .b-title {
    position: absolute;
    left: 50px;
    bottom: 20px;
    color: rgba(68, 68, 68, 0.5); }

/*--------------------------------
price-list
--------------------------------*/
#price-list {
  max-width: 800px;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: left; }
  #price-list .price-list {
    border: solid 2px #888888;
    /* 内側の線になる一本線の枠線をひく*/
    outline: solid 3px #AAAAAA;
    /* 外側の線になる一本線の枠線をひく*/
    outline-offset: 3px;
    /* 外側の線と内側の線の空き具合を調整*/
    padding-top: 50px;
    padding-left: 100px; }
    #price-list .price-list .price {
      margin-bottom: 30px; }
      #price-list .price-list .price ul {
        list-style: initial; }
      #price-list .price-list .price .under {
        margin-top: 20px;
        font-size: 20px;
        font-weight: bold;
        font-style: italic;
        color: #FF4F02; }
  #price-list .hosoku {
    margin-top: 50px; }
    #price-list .hosoku .imp {
      font-size: 20px;
      font-weight: bold;
      color: red;
      margin-bottom: 20px;
      padding-left: 100px; }
    #price-list .hosoku .imp2 {
      margin-top: 20px;
      margin-left: 100px;
      font-size: 20px;
      font-weight: bold;
      font-style: italic;
      border-bottom: solid 4px #FF6928;
      padding-bottom: -10px;
      display: inline-block; }

/*--------------------------------
contact（style.cssと共通）
--------------------------------*/
#contact {
  background-image: url("../img/work-list50.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px; }
  #contact .c-title {
    color: #fff;
    font-weight: bold;
    font-size: 40px;
    font-style: italic;
    padding-top: 30px;
    margin-bottom: 50px;
    text-align: center; }
  #contact p {
    text-align: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
    font-family: "Noto Serif JP"; }
  #contact span {
    display: inline-block; }

/*--------------------------------
footer
--------------------------------*/
#footer {
  text-align: center;
  height: 80px;
  line-height: 80px;
  background-color: #D9D9DA; }

/*--------------------------------
SP共通
--------------------------------*/
@media screen and (max-width: 1000px) {
  .sp {
    display: block; }

  .pc {
    display: none; }

  .b-title {
    font-size: 40px; } }
/*--------------------------------
mainvisual
--------------------------------*/
@media screen and (max-width: 1000px) {
  #mainvisual h2 {
    font-size: 40px; } }
@media screen and (max-width: 800px) {
  #mainvisual .header {
    height: 80px;
    /* ロゴサイズ調整 */ }
    #mainvisual .header .logo {
      width: 100px; } }
@media screen and (max-width: 600px) {
  #mainvisual h2 {
    font-size: 30px; } }
/*--------------------------------
contact
--------------------------------*/
@media screen and (max-width: 600px) {
  #contact .c-title {
    font-size: 28px; } }
/*--------------------------------
price-list
--------------------------------*/
@media screen and (max-width: 600px) {
  #price-list .price-list {
    padding-left: 20px;
    padding-right: 10px; }
    #price-list .price-list .under {
      font-size: 16px; }
  #price-list .hosoku .imp {
    padding-left: 0;
    font-size: 13px; }
  #price-list .hosoku .imp2 {
    padding-left: 0;
    margin-left: 0;
    font-size: 13px; } }
