@charset "UTF-8";
/* カラー設定 */
/* コンテンツ幅 */
/* googleフォントの読み込み */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP");
@import url("https://fonts.googleapis.com/css?family=M+PLUS+1p");
@import url("https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c");
@import url("https://fonts.googleapis.com/css?family=Sawarabi+Mincho");
@import url("https://fonts.googleapis.com/css?family=Sawarabi+Gothic");
/* IE/Edge用のフォント読み込み
----------------------------------------*/
/* Noto Sans JP */
@font-face {
  font-family: 'Noto Sans JP otf';
  font-style: normal;
  font-weight: 300;
  src: url(../wf/NotoSansJP-Light.otf) format("opentype"); }
@font-face {
  font-family: 'Noto Sans JP otf';
  font-style: normal;
  font-weight: 500;
  src: url(../wf/NotoSansJP-Regular.otf) format("opentype"); }
@font-face {
  font-family: 'Noto Sans JP otf';
  font-style: normal;
  font-weight: 700;
  src: url(../wf/NotoSansJP-Bold.otf) format("opentype"); }
/* M PLUS 1p */
@font-face {
  font-family: 'M PLUS 1p ttf';
  font-style: normal;
  font-weight: 300;
  src: url(../wf/MPLUS1p-Light.ttf) format("truetype"); }
@font-face {
  font-family: 'M PLUS 1p ttf';
  font-style: normal;
  font-weight: 500;
  src: url(../wf/MPLUS1p-Regular.ttf) format("truetype"); }
@font-face {
  font-family: 'M PLUS 1p ttf';
  font-style: normal;
  font-weight: 700;
  src: url(../wf/MPLUS1p-Bold.ttf) format("truetype"); }
/* M PLUS Rounded 1c */
@font-face {
  font-family: 'M PLUS Rounded 1c ttf';
  font-style: normal;
  font-weight: 300;
  src: url(../wf/MPLUSRounded1c-Light.ttf) format("truetype"); }
@font-face {
  font-family: 'M PLUS Rounded 1c ttf';
  font-style: normal;
  font-weight: 500;
  src: url(../wf/MPLUSRounded1c-Regular.ttf) format("truetype"); }
@font-face {
  font-family: 'M PLUS Rounded 1c ttf';
  font-style: normal;
  font-weight: 700;
  src: url(../wf/MPLUSRounded1c-Bold.ttf) format("truetype"); }
/* Sawarabi Gothic */
@font-face {
  font-family: 'Sawarabi Gothic ttf';
  font-style: normal;
  font-weight: 500;
  src: url(../wf/SawarabiGothic-Regular.ttf) format("truetype"); }
/* Sawarabi Mincho */
@font-face {
  font-family: 'Sawarabi Mincho ttf';
  font-style: normal;
  font-weight: 500;
  src: url(../wf/SawarabiMincho-Regular.ttf) format("truetype"); }
/* フォントの設定 */
/* ブレイクポイントの定義 */
/* 全体.css */
* {
  color: #3C3C3C;
  font-family: "Noto Sans JP", "Noto Sans JP otf";
  font-size: 0.8rem; }

html {
  font-size: 20px; }

/*
** 各パーツcssの読み込み
************************************************/
/* common.scss 共通css */
/* wordpress標準 */
.aligncenter {
  display: block;
  margin: 0 auto; }

.alignright {
  float: right; }

.alignleft {
  float: left; }

.clearfix {
  overflow: hidden;
  zoom: 1; }

.clearfix:after {
  content: "";
  display: block;
  clear: both; }

/* body */
body {
  max-width: 100vw;
  overflow-x: hidden;
  background-color: #FFFBF4; }

.body-before {
  position: fixed;
  top: 0;
  left: 0;
  width: 692px;
  height: 730px;
  background-image: url(../img/common/body-before.png);
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat; }
  @media screen and (max-width: 414px) {
    .body-before {
      width: 176px;
      height: 237px;
      background-image: url(../img/common/sp-body-before.png); } }

.body-after {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 533px;
  height: 692px;
  background-image: url(../img/common/body-afeter.png);
  background-size: contain;
  background-position: bottom left;
  background-repeat: no-repeat; }
  @media screen and (max-width: 414px) {
    .body-after {
      width: 155px;
      height: 440px;
      bottom: auto;
      top: 0;
      background-image: url(../img/common/sp-body-afeter.png); } }

/* レイアウト */
@media screen and (max-width: 414px) {
  #main-inner_wrap {
    width: 100%; } }

.has_sidebar-main {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 414px) {
    .has_sidebar-main {
      display: block; } }
  .has_sidebar-main .main_contents {
    width: calc(100% - 340px); }
    @media screen and (max-width: 414px) {
      .has_sidebar-main .main_contents {
        width: 100%; } }

.center {
  text-align: center; }

.right {
  text-align: right; }

/* レスポンシブ */
.pc-none {
  display: none; }
  @media screen and (max-width: 414px) {
    .pc-none {
      display: block; } }

.sp-none {
  display: block; }
  @media screen and (max-width: 414px) {
    .sp-none {
      display: none; } }

/* 余白調整 */
.mt0 {
  margin-top: 0 !important; }

.mb10 {
  margin-bottom: 10px !important; }

/* 段落デザイン */
p {
  font-size: 1rem;
  line-height: 1.4em;
  margin-bottom: 20px; }
  @media screen and (max-width: 414px) {
    p {
      font-size: 0.8rem; } }
  p:last-of-type {
    margin-bottom: 0; }

/* ボックスデザイン */
.flex_box {
  display: flex;
  flex-wrap: wrap; }
  .flex_box.around {
    justify-content: space-around; }
  .flex_box.between {
    justify-content: space-between; }

/* ボタンデザイン */
input[type=button],
button,
label {
  cursor: pointer; }

.btn-wrap {
  text-align: center; }
  .btn-wrap > .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    background-color: white;
    border: solid 1px #ccc;
    font-size: 1rem;
    color: #3C3C3C;
    text-decoration: none;
    transition: all .3s; }
    @media screen and (max-width: 414px) {
      .btn-wrap > .btn {
        font-size: 0.8rem;
        padding: 20px; } }
    .btn-wrap > .btn.hover {
      background-color: #EF7500;
      color: white;
      border-color: white; }
  .btn-wrap > .more_post-btn {
    display: inline-block;
    padding: 20px 50px;
    border: solid 1px #ccc;
    text-decoration: none;
    color: #3C3C3C;
    transition: all .3s; }
    @media screen and (max-width: 414px) {
      .btn-wrap > .more_post-btn {
        border-color: #EF751B; } }
    .btn-wrap > .more_post-btn:link, .btn-wrap > .more_post-btn:visited {
      color: #3C3C3C; }
    .btn-wrap > .more_post-btn.hover {
      background-color: #EF751B;
      color: white;
      border-color: transparent; }

/* リンク設定 */
.g-over_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

a:link {
  color: blue; }

a:visited {
  color: blueviolet; }

/* 画像周り */
img {
  width: auto;
  height: auto;
  max-width: 100%; }

/* テキスト */
.annotation {
  color: red; }

/* ページネーション */
.pagination {
  margin: 90px auto;
  text-align: center; }
  @media screen and (max-width: 414px) {
    .pagination {
      margin: 40px auto; } }
  .pagination a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    text-align: center;
    line-height: 40px;
    margin: 0 5px;
    color: #7F5C42;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: bold;
    box-sizing: border-box;
    background-color: #F3EAC4; }
    @media screen and (max-width: 414px) {
      .pagination a {
        width: 30px;
        height: 30px;
        margin: 0 3px;
        line-height: 30px; } }
    .pagination a.angle {
      border: solid 1px #D3C5B2;
      background-color: white; }
  .pagination i {
    color: #7F5C42;
    font-weight: bold;
    transform: translate(0, -2px); }
  .pagination span {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    text-align: center;
    line-height: 40px;
    margin: 0 5px;
    color: white;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: bold;
    background-color: #BB6B00; }
    @media screen and (max-width: 414px) {
      .pagination span {
        width: 30px;
        height: 30px;
        margin: 0 3px;
        line-height: 30px; } }

/* PREV NEXT */
.prev_next-wrap {
  text-align: center;
  margin: 90px 0; }
  @media screen and (max-width: 414px) {
    .prev_next-wrap {
      margin: 40px 0; } }
  .prev_next-wrap a {
    display: inline-block;
    margin: 0 5px;
    padding: 15px 50px;
    border-radius: 30px;
    background-color: #FABF2E;
    border: solid 1px #FABF2E;
    color: white;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all .3s; }
    @media screen and (max-width: 414px) {
      .prev_next-wrap a {
        padding: 8px 10px 10px;
        font-size: 0.7rem;
        margin: 3px;
        width: 80%; } }
    .prev_next-wrap a.hover {
      background-color: white;
      color: #7F5C42; }

/* WP Social Bookmarking Light */
.wsbl_line img {
  height: 20px; }

/* コンタクトリスト */
.contact-section {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 50px 0; }
  @media screen and (max-width: 414px) {
    .contact-section {
      padding: 30px 10px;
      box-sizing: border-box; } }
  .contact-section > .inner {
    display: block;
    width: 1150px;
    max-width: calc(100% - 300px);
    margin: auto; }
    @media screen and (max-width: 414px) {
      .contact-section > .inner {
        max-width: 100%; } }
    .contact-section > .inner > .contact-section-title {
      text-align: center;
      font-size: 1.1rem;
      color: white;
      font-weight: normal;
      font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
      letter-spacing: 3px; }
      @media screen and (max-width: 414px) {
        .contact-section > .inner > .contact-section-title {
          font-size: 0.6rem; } }
      .contact-section > .inner > .contact-section-title .sub {
        display: block;
        text-align: center;
        font-size: 1.1rem;
        font-weight: lighter;
        color: white;
        margin-bottom: 20px;
        font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf"; }
        @media screen and (max-width: 414px) {
          .contact-section > .inner > .contact-section-title .sub {
            font-size: 0.6rem; } }
      .contact-section > .inner > .contact-section-title .large {
        font-size: 1.6rem;
        color: white;
        margin: 0 10px;
        font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf"; }
        @media screen and (max-width: 414px) {
          .contact-section > .inner > .contact-section-title .large {
            font-size: 0.8rem; } }
    .contact-section > .inner > .contact-section-list {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 50px; }
      @media screen and (max-width: 414px) {
        .contact-section > .inner > .contact-section-list {
          margin-top: 30px; } }
      .contact-section > .inner > .contact-section-list > .list {
        width: calc(50% - 10px);
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        background-color: white;
        border: solid 2px #eee;
        font-size: 1.2rem;
        font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
        color: black;
        position: relative;
        transition: all .3s; }
        @media screen and (max-width: 414px) {
          .contact-section > .inner > .contact-section-list > .list {
            font-size: 0.9rem;
            height: 50px; } }
        .contact-section > .inner > .contact-section-list > .list a {
          display: block;
          text-align: center; }
        .contact-section > .inner > .contact-section-list > .list span {
          display: inline-block;
          font-size: 0.8rem;
          font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
          color: black;
          width: 100%;
          text-align: center;
          margin-top: -20px;
          transition: all .3s; }
          @media screen and (max-width: 414px) {
            .contact-section > .inner > .contact-section-list > .list span {
              font-size: 0.6rem; } }
        .contact-section > .inner > .contact-section-list > .list.hover {
          background-color: transparent;
          border-color: white;
          color: white; }
          .contact-section > .inner > .contact-section-list > .list.hover span {
            color: white; }

/* animate.scss アニメーションcss */
@keyframes slide_zoomin {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.15); } }
@keyframes slide_fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes slide_fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.fade_up {
  transform: translate(0, 30px);
  opacity: 0;
  transition: all 1.5s; }
  .fade_up.active {
    transform: translate(0, 0);
    opacity: 1; }

.fade_up_list > .list {
  transform: translate(0, 30px);
  opacity: 0;
  transition: all 1.5s; }
.fade_up_list.active > .list {
  transform: translate(0, 0);
  opacity: 1; }
  .fade_up_list.active > .list:nth-of-type(2) {
    transition-delay: .5s; }
  .fade_up_list.active > .list:nth-of-type(3) {
    transition-delay: 1s; }
  .fade_up_list.active > .list:nth-of-type(4) {
    transition-delay: 1.5s; }
  .fade_up_list.active > .list:nth-of-type(5) {
    transition-delay: 2s; }
  .fade_up_list.active > .list:nth-of-type(6) {
    transition-delay: 2.5s; }

/* header.scss ヘッダー要素のcss */
.header-wrap {
  display: block;
  position: relative; }
  .header-wrap.home-header_wrap {
    width: 100vw;
    height: 100vh; }
    @media screen and (max-width: 414px) {
      .header-wrap.home-header_wrap {
        height: 316px; } }
    .header-wrap.home-header_wrap .home-header {
      position: absolute;
      width: calc(100% - 75px);
      height: calc(100% - 58px);
      bottom: 0;
      right: 0; }
      @media screen and (max-width: 414px) {
        .header-wrap.home-header_wrap .home-header {
          width: calc(100% - 20px);
          height: 300px;
          bottom: auto;
          top: 16px; } }
      .header-wrap.home-header_wrap .home-header > .home-title {
        position: absolute;
        left: -40px;
        top: 45%;
        font-size: 3rem;
        color: white;
        font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
        text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6);
        line-height: 1.3em;
        z-index: 11; }
        @media screen and (max-width: 414px) {
          .header-wrap.home-header_wrap .home-header > .home-title {
            font-size: 1rem;
            left: -10px;
            top: 55%; } }
      .header-wrap.home-header_wrap .home-header > .home-slider {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden; }
        .header-wrap.home-header_wrap .home-header > .home-slider:before {
          content: '';
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          width: 597px;
          height: 672px;
          background-image: url(../img/home/home-slider-before.png);
          background-repeat: no-repeat;
          background-size: contain;
          background-position: top left;
          z-index: 10; }
          @media screen and (max-width: 414px) {
            .header-wrap.home-header_wrap .home-header > .home-slider:before {
              width: 150px;
              height: 210px;
              background-image: url(../img/home/sp-home-slider-before.png); } }
        .header-wrap.home-header_wrap .home-header > .home-slider:after {
          content: '';
          display: block;
          position: absolute;
          bottom: 0;
          left: 0;
          width: 458px;
          height: 692px;
          background-image: url(../img/home/home-slider-after.png);
          background-repeat: no-repeat;
          background-size: contain;
          background-position: top left;
          z-index: 10; }
          @media screen and (max-width: 414px) {
            .header-wrap.home-header_wrap .home-header > .home-slider:after {
              width: 115px;
              height: 300px;
              background-image: url(../img/home/sp-home-slider-after.png); } }
        .header-wrap.home-header_wrap .home-header > .home-slider > .slide {
          position: absolute;
          width: 100%;
          height: 100%; }
          .header-wrap.home-header_wrap .home-header > .home-slider > .slide .img {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            opacity: 0; }
          .header-wrap.home-header_wrap .home-header > .home-slider > .slide.current {
            animation: slide_zoomin 10s ease-in-out forwards; }
            .header-wrap.home-header_wrap .home-header > .home-slider > .slide.current .img {
              animation: slide_fadein 2s ease-out forwards; }
          .header-wrap.home-header_wrap .home-header > .home-slider > .slide.out .img {
            animation: slide_fadeout 2s ease-out forwards; }
  .header-wrap .header-menu {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 150px;
    height: auto;
    box-sizing: border-box;
    z-index: 999;
    transition: all .5s; }
    @media screen and (max-width: 414px) {
      .header-wrap .header-menu {
        width: 70px; } }
    .header-wrap .header-menu .logo-wrap {
      display: block;
      width: 100%;
      position: relative;
      box-sizing: border-box;
      background-color: white; }
      .header-wrap .header-menu .logo-wrap:before {
        content: '';
        display: block;
        padding-top: 100%; }
      .header-wrap .header-menu .logo-wrap > .logo {
        width: auto;
        height: auto;
        max-width: 70%;
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translate(-50%, 0); }
        @media screen and (max-width: 414px) {
          .header-wrap .header-menu .logo-wrap > .logo {
            top: 5%; } }
      .header-wrap .header-menu .logo-wrap > .text {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 1rem;
        color: #838383;
        position: absolute;
        bottom: 10px;
        left: 0;
        transition: all .5s; }
        @media screen and (max-width: 414px) {
          .header-wrap .header-menu .logo-wrap > .text {
            font-size: 0.5rem;
            bottom: 5px; } }
    .header-wrap .header-menu .menu-toggle {
      display: block;
      width: 100%;
      position: relative;
      box-sizing: border-box;
      background-color: #EF7500; }
      .header-wrap .header-menu .menu-toggle:before {
        content: '';
        display: block;
        padding-top: 100%; }
      .header-wrap .header-menu .menu-toggle > .menu {
        display: block;
        width: 60%;
        height: 50px;
        position: absolute;
        top: 30px;
        left: 50%;
        transform: translate(-50%, 0);
        transition: all .5s; }
        @media screen and (max-width: 414px) {
          .header-wrap .header-menu .menu-toggle > .menu {
            height: 25px;
            top: 15px; } }
        .header-wrap .header-menu .menu-toggle > .menu > span {
          position: absolute;
          display: block;
          width: 100%;
          height: 4px;
          border-radius: 4px;
          background-color: white;
          left: 0;
          transition: all .5s; }
          .header-wrap .header-menu .menu-toggle > .menu > span.top {
            top: 0; }
          .header-wrap .header-menu .menu-toggle > .menu > span.middle {
            top: calc(50% - 2px); }
          .header-wrap .header-menu .menu-toggle > .menu > span.bottom {
            bottom: 0; }
      .header-wrap .header-menu .menu-toggle > .text {
        display: block;
        width: 100%;
        position: absolute;
        bottom: 30px;
        transition: all .5s; }
        @media screen and (max-width: 414px) {
          .header-wrap .header-menu .menu-toggle > .text {
            bottom: 15px; } }
        .header-wrap .header-menu .menu-toggle > .text > span {
          color: white;
          font-size: 1rem;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          transition: all .5s; }
          @media screen and (max-width: 414px) {
            .header-wrap .header-menu .menu-toggle > .text > span {
              font-size: 0.5rem; } }
          .header-wrap .header-menu .menu-toggle > .text > span.open {
            transition: all .5s; }
          .header-wrap .header-menu .menu-toggle > .text > span.close {
            opacity: 0;
            transition: all .5s; }
      .header-wrap .header-menu .menu-toggle.active > .menu > span.top {
        top: calc(50% - 2px);
        transform: rotate(45deg); }
      .header-wrap .header-menu .menu-toggle.active > .menu > span.middle {
        opacity: 0; }
      .header-wrap .header-menu .menu-toggle.active > .menu > span.bottom {
        bottom: calc(50% - 2px);
        transform: rotate(-45deg); }
      .header-wrap .header-menu .menu-toggle.active > .text > span.open {
        opacity: 0; }
      .header-wrap .header-menu .menu-toggle.active > .text > span.close {
        opacity: 1; }
    .header-wrap .header-menu.active {
      width: 100px; }
      @media screen and (max-width: 414px) {
        .header-wrap .header-menu.active {
          width: 60px; } }
      .header-wrap .header-menu.active .logo-wrap > .text {
        font-size: 0.6rem;
        bottom: 5px; }
        @media screen and (max-width: 414px) {
          .header-wrap .header-menu.active .logo-wrap > .text {
            font-size: 0.5rem; } }
      .header-wrap .header-menu.active .menu-toggle > .menu {
        top: 20px; }
        @media screen and (max-width: 414px) {
          .header-wrap .header-menu.active .menu-toggle > .menu {
            top: 10px; } }
      .header-wrap .header-menu.active .menu-toggle > .text {
        bottom: 20px; }
        @media screen and (max-width: 414px) {
          .header-wrap .header-menu.active .menu-toggle > .text {
            bottom: 10px; } }
        .header-wrap .header-menu.active .menu-toggle > .text > span {
          font-size: 0.6rem; }
          @media screen and (max-width: 414px) {
            .header-wrap .header-menu.active .menu-toggle > .text > span {
              font-size: 0.5rem; } }
  .header-wrap .header-g_menu {
    display: none;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    z-index: 998; }
    .header-wrap .header-g_menu > .menu {
      display: block;
      position: absolute;
      top: calc(50% - 100px);
      left: 50%;
      transform: translate(-50%, -50%); }
      @media screen and (max-width: 414px) {
        .header-wrap .header-g_menu > .menu {
          width: calc(100% - 130px); } }
      .header-wrap .header-g_menu > .menu > li {
        margin: 20px 0;
        position: relative; }
        .header-wrap .header-g_menu > .menu > li a {
          color: black;
          font-size: 1.2rem;
          text-decoration: none;
          display: inline-block;
          padding: 10px; }
          @media screen and (max-width: 414px) {
            .header-wrap .header-g_menu > .menu > li a {
              font-size: 1rem; } }
        .header-wrap .header-g_menu > .menu > li > .sub-menu {
          background-color: #ffe8c0;
          overflow: hidden;
          max-height: 0;
          transition: all .3s;
          position: absolute;
          top: 50px;
          left: 0;
          width: 100%; }
          @media screen and (max-width: 414px) {
            .header-wrap .header-g_menu > .menu > li > .sub-menu {
              max-height: 100%; } }
          .header-wrap .header-g_menu > .menu > li > .sub-menu > li a {
            font-size: 0.8rem; }
        .header-wrap .header-g_menu > .menu > li.hover > .sub-menu {
          max-height: 200px; }

/* humberger.scss ハンバーガーメニューのcss */
/* home.scss フロントページのメインコンテンツcss */
.home-wrap {
  margin: 200px 0 150px;
  position: relative; }
  @media screen and (max-width: 414px) {
    .home-wrap {
      margin: 50px 0; } }
  .home-wrap .main-contents {
    display: block; }
    .home-wrap .main-contents .home-title02 {
      font-size: 1.5rem;
      font-family: "Sawarabi Mincho", "Sawarabi Mincho ttf";
      font-weight: normal;
      color: black;
      text-align: center;
      margin: 60px 0;
      letter-spacing: 5px; }
      @media screen and (max-width: 414px) {
        .home-wrap .main-contents .home-title02 {
          font-size: 0.7rem;
          margin: 30px 0;
          letter-spacing: 2px;
          line-height: 2em; } }
      .home-wrap .main-contents .home-title02 > .large {
        font-size: 2.5rem;
        font-family: "Sawarabi Mincho", "Sawarabi Mincho ttf";
        color: black;
        margin: 0 10px; }
        @media screen and (max-width: 414px) {
          .home-wrap .main-contents .home-title02 > .large {
            font-size: 1.2rem; } }
      .home-wrap .main-contents .home-title02 .orange {
        color: #EF7500;
        font-family: "Sawarabi Mincho", "Sawarabi Mincho ttf"; }
    .home-wrap .main-contents .home-section {
      width: 1150px;
      max-width: calc(100% - 320px);
      margin: auto;
      margin-bottom: 150px; }
      @media screen and (max-width: 414px) {
        .home-wrap .main-contents .home-section {
          max-width: calc(100% - 30px);
          margin-bottom: 50px; } }
      .home-wrap .main-contents .home-section .btn-wrap {
        margin: 40px 0 20px; }
      .home-wrap .main-contents .home-section.full-section {
        max-width: 100%;
        width: 100%;
        margin-bottom: 0; }
      .home-wrap .main-contents .home-section .inner-flex {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap; }
      .home-wrap .main-contents .home-section .section-inner {
        width: 100%;
        max-width: 1000px;
        margin: 80px auto; }
        @media screen and (max-width: 414px) {
          .home-wrap .main-contents .home-section .section-inner {
            margin: 40px auto; } }
      .home-wrap .main-contents .home-section .border-radius-wrap {
        background-color: white;
        border: solid 1px #ccc;
        border-radius: 20px;
        width: calc(50% - 20px);
        padding: 20px;
        box-sizing: border-box; }
        @media screen and (max-width: 414px) {
          .home-wrap .main-contents .home-section .border-radius-wrap {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px; } }
        .home-wrap .main-contents .home-section .border-radius-wrap .img-wrap {
          width: 100%;
          height: 200px;
          position: relative;
          margin-bottom: 30px; }
          @media screen and (max-width: 414px) {
            .home-wrap .main-contents .home-section .border-radius-wrap .img-wrap {
              height: 150px; } }
          .home-wrap .main-contents .home-section .border-radius-wrap .img-wrap img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); }
        .home-wrap .main-contents .home-section .border-radius-wrap .home-title-section1 {
          font-size: 1.5rem;
          margin: 30px 0;
          text-align: center;
          font-family: "Sawarabi Mincho", "Sawarabi Mincho ttf";
          font-weight: normal; }
          @media screen and (max-width: 414px) {
            .home-wrap .main-contents .home-section .border-radius-wrap .home-title-section1 {
              font-size: 1.2rem;
              margin: 15px 0; } }
        .home-wrap .main-contents .home-section .border-radius-wrap .home-title-pdca-black, .home-wrap .main-contents .home-section .border-radius-wrap .home-title-pdca-orange, .home-wrap .main-contents .home-section .border-radius-wrap .home-title-gray {
          background-color: black;
          color: white;
          display: flex;
          justify-content: space-between;
          align-items: center;
          font-size: 1rem;
          padding: 10px;
          box-sizing: border-box;
          margin: 10px 0; }
          .home-wrap .main-contents .home-section .border-radius-wrap .home-title-pdca-black span, .home-wrap .main-contents .home-section .border-radius-wrap .home-title-pdca-orange span, .home-wrap .main-contents .home-section .border-radius-wrap .home-title-gray span {
            font-size: 0.8rem;
            color: white; }
        .home-wrap .main-contents .home-section .border-radius-wrap .home-title-pdca-orange {
          background-color: #EF7500; }
        .home-wrap .main-contents .home-section .border-radius-wrap .home-title-gray {
          background-color: #4A4A4A; }
        .home-wrap .main-contents .home-section .border-radius-wrap p {
          padding-left: 10px;
          box-sizing: border-box;
          font-size: 0.8rem; }
      .home-wrap .main-contents .home-section.bg-white {
        background-color: white;
        border-right: solid 3px #EF7500;
        padding: 40px 20px;
        box-sizing: border-box;
        margin-top: 150px; }
        @media screen and (max-width: 414px) {
          .home-wrap .main-contents .home-section.bg-white {
            margin: 20px auto;
            padding: 5px 10px 20px;
            max-width: calc(100% - 20px); } }
        .home-wrap .main-contents .home-section.bg-white .youtube-list {
          display: flex;
          list-style: none;
          flex-wrap: wrap; }
          .home-wrap .main-contents .home-section.bg-white .youtube-list > .list {
            width: calc(calc(100% / 3) - 12px);
            margin-right: 18px; }
            @media screen and (max-width: 414px) {
              .home-wrap .main-contents .home-section.bg-white .youtube-list > .list {
                width: 100%;
                margin-right: 0;
                margin-bottom: 20px; } }
            .home-wrap .main-contents .home-section.bg-white .youtube-list > .list:nth-of-type(3n) {
              margin-right: 0; }
            .home-wrap .main-contents .home-section.bg-white .youtube-list > .list iframe {
              max-width: 100%; }
            .home-wrap .main-contents .home-section.bg-white .youtube-list > .list > .desc {
              padding: 10px;
              margin-top: 10px;
              box-sizing: border-box; }
              .home-wrap .main-contents .home-section.bg-white .youtube-list > .list > .desc p {
                font-size: 0.8rem; }
        .home-wrap .main-contents .home-section.bg-white .about-list {
          list-style: none;
          display: flex;
          flex-wrap: wrap; }
          .home-wrap .main-contents .home-section.bg-white .about-list > .list {
            position: relative;
            width: calc(calc(100% / 3) - 12px);
            margin-right: 18px;
            transition-property: all;
            box-sizing: border-box; }
            @media screen and (max-width: 414px) {
              .home-wrap .main-contents .home-section.bg-white .about-list > .list {
                width: 100%;
                margin-right: 0;
                margin-bottom: 20px; } }
            .home-wrap .main-contents .home-section.bg-white .about-list > .list > .img-wrap {
              display: block;
              position: relative;
              overflow: hidden;
              width: 100%; }
              .home-wrap .main-contents .home-section.bg-white .about-list > .list > .img-wrap:before {
                content: '';
                display: block;
                padding-top: 65%; }
              .home-wrap .main-contents .home-section.bg-white .about-list > .list > .img-wrap .img {
                display: block;
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                background-repeat: no-repeat;
                background-size: cover;
                background-position: center; }
            .home-wrap .main-contents .home-section.bg-white .about-list > .list > .title {
              margin: 15px 0;
              font-size: 1rem;
              padding: 0 10px;
              box-sizing: border-box; }
            .home-wrap .main-contents .home-section.bg-white .about-list > .list > .desc {
              padding: 0 10px 10px;
              box-sizing: border-box; }
              .home-wrap .main-contents .home-section.bg-white .about-list > .list > .desc p {
                font-size: 0.8rem; }
            .home-wrap .main-contents .home-section.bg-white .about-list > .list:nth-of-type(3n) {
              margin-right: 0; }
            .home-wrap .main-contents .home-section.bg-white .about-list > .list > .g-over_link {
              border: solid 3px transparent;
              transition: all .3s;
              box-sizing: border-box; }
              .home-wrap .main-contents .home-section.bg-white .about-list > .list > .g-over_link.hover {
                border-color: #EF7500;
                box-sizing: border-box; }
    .home-wrap .main-contents .home-blog_list-section {
      background-color: white;
      padding: 22px;
      box-sizing: border-box; }
      @media screen and (max-width: 414px) {
        .home-wrap .main-contents .home-blog_list-section {
          padding: 10px; } }
      .home-wrap .main-contents .home-blog_list-section .home-blog_list {
        display: flex;
        flex-wrap: wrap; }
        .home-wrap .main-contents .home-blog_list-section .home-blog_list .home-blog_list-list {
          position: relative;
          display: block;
          width: calc(calc(100% / 3) - 12px);
          margin-right: 18px;
          border: solid 1px #D3D3D3;
          transition: all .3s;
          box-sizing: border-box; }
          @media screen and (max-width: 414px) {
            .home-wrap .main-contents .home-blog_list-section .home-blog_list .home-blog_list-list {
              width: 100%;
              margin-right: 0;
              margin-bottom: 10px; } }
          .home-wrap .main-contents .home-blog_list-section .home-blog_list .home-blog_list-list:last-of-type {
            margin-right: 0; }
          .home-wrap .main-contents .home-blog_list-section .home-blog_list .home-blog_list-list > .thumb-wrap {
            position: relative;
            display: block;
            width: 100%;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            margin-bottom: 10px; }
            .home-wrap .main-contents .home-blog_list-section .home-blog_list .home-blog_list-list > .thumb-wrap:before {
              content: '';
              display: block;
              padding-top: 57%; }
          .home-wrap .main-contents .home-blog_list-section .home-blog_list .home-blog_list-list > .desc-wrap {
            padding: 10px;
            box-sizing: border-box; }
            .home-wrap .main-contents .home-blog_list-section .home-blog_list .home-blog_list-list > .desc-wrap > .title {
              font-size: 0.9rem;
              color: black;
              font-family: serif; }
            .home-wrap .main-contents .home-blog_list-section .home-blog_list .home-blog_list-list > .desc-wrap > .date {
              font-size: 0.6rem;
              margin-top: 5px;
              margin-bottom: 15px; }
            .home-wrap .main-contents .home-blog_list-section .home-blog_list .home-blog_list-list > .desc-wrap > .excerpt {
              font-size: 0.8rem;
              line-height: 1.4em; }
          .home-wrap .main-contents .home-blog_list-section .home-blog_list .home-blog_list-list > .more_link {
            text-align: right;
            padding: 10px;
            box-sizing: border-box; }
            .home-wrap .main-contents .home-blog_list-section .home-blog_list .home-blog_list-list > .more_link > .text {
              display: inline-block;
              padding: 10px 30px;
              background-color: #EF751B;
              font-size: 0.7rem;
              color: white;
              position: relative;
              text-decoration: none; }
              .home-wrap .main-contents .home-blog_list-section .home-blog_list .home-blog_list-list > .more_link > .text:link, .home-wrap .main-contents .home-blog_list-section .home-blog_list .home-blog_list-list > .more_link > .text:visite {
                color: white; }
              .home-wrap .main-contents .home-blog_list-section .home-blog_list .home-blog_list-list > .more_link > .text i {
                color: white;
                position: absolute;
                top: 50%;
                right: 10px;
                transform: translate(0, -50%); }
          .home-wrap .main-contents .home-blog_list-section .home-blog_list .home-blog_list-list.hover {
            border-color: black;
            box-shadow: 3px 3px 5px 2px rgba(0, 0, 0, 0.1); }
    .home-wrap .main-contents .home-separate-section {
      width: 100%;
      height: 630px;
      position: relative; }
      @media screen and (max-width: 414px) {
        .home-wrap .main-contents .home-separate-section {
          height: auto; } }
      .home-wrap .main-contents .home-separate-section > .img-wrap {
        display: block;
        width: 700px;
        height: 100%;
        overflow: hidden;
        position: relative;
        clip-path: polygon(0 0, 100% 0, 69% 100%, 0% 100%); }
        @media screen and (max-width: 414px) {
          .home-wrap .main-contents .home-separate-section > .img-wrap {
            width: 100%;
            height: 200px;
            clip-path: none; } }
        .home-wrap .main-contents .home-separate-section > .img-wrap > .img {
          display: block;
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center; }
      .home-wrap .main-contents .home-separate-section > .desc-wrap {
        padding: 60px 40px;
        padding-right: 170px;
        box-sizing: border-box;
        background-color: rgba(255, 255, 255, 0.6);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        width: calc(100% - 520px); }
        @media screen and (max-width: 414px) {
          .home-wrap .main-contents .home-separate-section > .desc-wrap {
            width: 100%;
            position: relative;
            top: auto;
            right: auto;
            transform: none;
            padding: 40px 20px; } }
        .home-wrap .main-contents .home-separate-section > .desc-wrap .separate-title {
          font-size: 1.5rem;
          color: black;
          margin-bottom: 50px; }
          @media screen and (max-width: 414px) {
            .home-wrap .main-contents .home-separate-section > .desc-wrap .separate-title {
              font-size: 1rem;
              margin-bottom: 20px;
              line-height: 1.3em; } }
        .home-wrap .main-contents .home-separate-section > .desc-wrap p {
          font-size: 0.9rem;
          line-height: 1.6em; }
          @media screen and (max-width: 414px) {
            .home-wrap .main-contents .home-separate-section > .desc-wrap p {
              font-size: 0.8rem; } }
      .home-wrap .main-contents .home-separate-section:nth-of-type(2n) > .img-wrap {
        position: absolute;
        top: 0;
        right: 0;
        clip-path: polygon(31% 0, 100% 0, 100% 100%, 0% 100%); }
        @media screen and (max-width: 414px) {
          .home-wrap .main-contents .home-separate-section:nth-of-type(2n) > .img-wrap {
            position: relative;
            top: auto;
            right: auto;
            clip-path: none; } }
      .home-wrap .main-contents .home-separate-section:nth-of-type(2n) > .desc-wrap {
        right: auto;
        left: 0;
        padding-left: 170px;
        padding-right: 40px; }
        @media screen and (max-width: 414px) {
          .home-wrap .main-contents .home-separate-section:nth-of-type(2n) > .desc-wrap {
            right: auto;
            left: auto;
            padding: 40px 20px; } }

/* post.scss 固定・投稿の共通css */
.post-header {
  display: block;
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden; }
  @media screen and (max-width: 414px) {
    .post-header {
      height: 200px; } }
  .post-header:before {
    content: '';
    display: block;
    width: 690px;
    height: 350px;
    background-image: url(../img/post/post-header.png);
    background-size: contain;
    background-position: top left;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10; }
    @media screen and (max-width: 414px) {
      .post-header:before {
        width: 176px;
        height: 200px;
        background-image: url(../img/post/sp-post-header.png); } }
  .post-header:after {
    content: '';
    display: block;
    width: 533px;
    height: 692px;
    background-image: url(../img/common/body-afeter.png);
    background-position: top left;
    background-repeat: no-repeat;
    position: absolute;
    top: calc(100vh - 692px);
    left: 0; }
    @media screen and (max-width: 414px) {
      .post-header:after {
        width: 132px;
        height: 200px;
        background-image: url(../img/post/sp-post-header-after.png); } }
  .post-header > .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
  .post-header > .catch_copy {
    position: absolute;
    top: 50%;
    left: 225px;
    transform: translate(0, -50%);
    font-size: 3rem;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6);
    color: white;
    font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
    z-index: 10; }
    @media screen and (max-width: 414px) {
      .post-header > .catch_copy {
        font-size: 1.2rem;
        left: 80px; } }

.breadcrumbs {
  background-color: white;
  padding: 15px 170px;
  box-sizing: border-box;
  box-shadow: 3px 3px 10px 5px rgba(0, 0, 0, 0.2); }
  @media screen and (max-width: 414px) {
    .breadcrumbs {
      padding: 10px; } }
  .breadcrumbs .bread-inner {
    font-size: 0.7rem; }
    .breadcrumbs .bread-inner i {
      font-size: 0.7rem; }
    .breadcrumbs .bread-inner span {
      font-size: 0.7rem;
      margin: 0 10px; }
    .breadcrumbs .bread-inner a {
      font-size: 0.7rem;
      text-decoration: none; }
      .breadcrumbs .bread-inner a span {
        margin: 0; }

.post-wrap {
  margin: 100px auto;
  background-color: rgba(255, 255, 255, 0.8);
  width: 1150px;
  max-width: calc(100% - 320px);
  position: relative;
  padding: 20px 50px;
  box-sizing: border-box;
  border-right: solid 1px #EF7500; }
  @media screen and (max-width: 414px) {
    .post-wrap {
      padding-bottom: 20px;
      padding-top: 10px;
      max-width: calc(100% - 20px);
      margin-top: 40px;
      padding: 20px 0px; } }
  @media screen and (max-width: 414px) {
    .post-wrap .main {
      padding: 0 15px;
      box-sizing: border-box; } }
  .post-wrap .main .post-title01 {
    font-size: 1.8rem;
    font-family: "Sawarabi Mincho", "Sawarabi Mincho ttf";
    font-weight: normal;
    padding: 20px;
    box-sizing: border-box;
    border-bottom: solid 3px #EF7500;
    margin-bottom: 20px;
    line-height: 1.4em; }
    @media screen and (max-width: 414px) {
      .post-wrap .main .post-title01 {
        font-size: 1.2rem;
        padding: 10px; } }
  .post-wrap .main > .content .thumbnail-wrap {
    text-align: center; }
  .post-wrap .main > .content .inner > h2 {
    font-size: 1.2rem;
    color: white;
    background-color: #EF7500;
    padding: 10px;
    box-sizing: border-box;
    margin: 60px 0 20px; }
    @media screen and (max-width: 414px) {
      .post-wrap .main > .content .inner > h2 {
        font-size: 1rem; } }
  .post-wrap .main > .content .inner > h3 {
    font-size: 1rem;
    color: #EF7500;
    padding: 20px;
    box-sizing: border-box;
    border-bottom: dotted 1px #EF7500;
    margin: 40px 0 20px; }
    @media screen and (max-width: 414px) {
      .post-wrap .main > .content .inner > h3 {
        font-size: 1rem;
        padding: 10px; } }
  .post-wrap .main > .content .inner ul {
    margin: 30px 0;
    padding: 30px 20px;
    box-sizing: border-box;
    border: solid 1px #EF7500;
    background-color: #FFF3E5;
    list-style: none; }
    @media screen and (max-width: 414px) {
      .post-wrap .main > .content .inner ul {
        padding: 20px 10px; } }
    .post-wrap .main > .content .inner ul li {
      padding-left: 30px;
      position: relative;
      margin-bottom: 20px; }
      @media screen and (max-width: 414px) {
        .post-wrap .main > .content .inner ul li {
          margin-bottom: 10px;
          padding-left: 20px; } }
      .post-wrap .main > .content .inner ul li:last-of-type {
        margin-bottom: 0; }
      .post-wrap .main > .content .inner ul li:before {
        content: '・';
        position: absolute;
        top: 50%;
        left: 5px;
        transform: translate(0, -50%); }
    .post-wrap .main > .content .inner ul.green-list {
      background-color: #EFFFE5;
      border-color: #62FF00; }
    .post-wrap .main > .content .inner ul.blue-list {
      background-color: #E5FFF9;
      border-color: #00FFC4; }
  .post-wrap p {
    font-size: 0.8rem;
    line-height: 1.5em;
    margin-bottom: 20px; }

.main_section-wrap {
  width: 100%; }

.post_head {
  margin-bottom: 30px; }
  @media screen and (max-width: 414px) {
    .post_head {
      margin-bottom: 10px; } }

/* page.scss 固定ページのメインコンテンツcss */
.error_404 {
  text-align: center;
  margin: 50px 0;
  font-size: 2rem;
  line-height: 1.5em;
  font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf"; }
  @media screen and (max-width: 414px) {
    .error_404 {
      font-size: 0.9rem; } }

.contact-tab {
  display: flex;
  align-items: flex-end;
  margin-top: 50px;
  box-sizing: border-box; }
  @media screen and (max-width: 414px) {
    .contact-tab {
      margin-top: 20px;
      margin-bottom: 20px; } }
  .contact-tab .tab {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 50px;
    border: solid 1px #ccc;
    margin-right: 20px;
    position: relative; }
    @media screen and (max-width: 414px) {
      .contact-tab .tab {
        width: 50%;
        margin-right: 0;
        height: 40px; } }
    .contact-tab .tab.current {
      border: solid 1px #EF7500;
      background-color: #EF7500;
      color: white;
      font-weight: bold;
      font-size: 1rem;
      height: 60px; }
      @media screen and (max-width: 414px) {
        .contact-tab .tab.current {
          font-size: 0.8rem;
          height: 40px; } }

.tab-target {
  border: solid 1px #EF7500;
  margin-top: -1px;
  position: relative;
  display: none; }
  @media screen and (max-width: 414px) {
    .tab-target {
      border: none; } }
  .tab-target.current {
    display: block; }

div.wpcf7 {
  width: 100%;
  padding: 40px;
  box-sizing: border-box; }
  @media screen and (max-width: 414px) {
    div.wpcf7 {
      padding: 0; } }
  div.wpcf7 dl {
    display: flex;
    border-bottom: solid 1px #848484;
    flex-wrap: wrap; }
    @media screen and (max-width: 414px) {
      div.wpcf7 dl {
        border-bottom: none;
        margin-bottom: 15px; } }
    div.wpcf7 dl.require dt {
      background-color: #ffebc5;
      position: relative; }
      div.wpcf7 dl.require dt:after {
        content: '*';
        position: absolute;
        top: 15px;
        right: 10px;
        color: red;
        font-size: 0.6rem; }
    div.wpcf7 dl.require dd {
      background-color: #fff7e8; }
    div.wpcf7 dl dt {
      width: 25%;
      padding: 15px 10px;
      box-sizing: border-box;
      line-height: 1.4em; }
      @media screen and (max-width: 414px) {
        div.wpcf7 dl dt {
          width: 100%;
          background-color: #eee; } }
    div.wpcf7 dl dd {
      width: 75%;
      padding: 10px 0;
      padding-left: 20px;
      box-sizing: border-box; }
      @media screen and (max-width: 414px) {
        div.wpcf7 dl dd {
          width: 100%;
          padding: 10px; } }
      div.wpcf7 dl dd input[type=text], div.wpcf7 dl dd input[type=email], div.wpcf7 dl dd input[type=tel], div.wpcf7 dl dd textarea {
        border: solid 1px #ccc;
        width: 100%;
        padding: 5px;
        box-sizing: border-box;
        line-height: 1.4em; }
      div.wpcf7 dl dd input[type=date] {
        margin-right: 10px;
        box-sizing: border-box; }
        @media screen and (max-width: 414px) {
          div.wpcf7 dl dd input[type=date] {
            margin-right: 0;
            border: solid 1px #ccc;
            width: 100%; } }
      div.wpcf7 dl dd input[type=file] {
        display: inline-flex;
        align-items: center;
        cursor: pointer; }
      div.wpcf7 dl dd select {
        background-color: white;
        border: solid 1px #ccc;
        border-radius: 0; }
        @media screen and (max-width: 414px) {
          div.wpcf7 dl dd select {
            width: 100%; } }
      div.wpcf7 dl dd p:last-of-type {
        margin-bottom: 0; }
      div.wpcf7 dl dd .wpcf7c-conf {
        background-color: transparent !important;
        border: none !important; }
      div.wpcf7 dl dd .label {
        margin-right: 15px; }
        @media screen and (max-width: 414px) {
          div.wpcf7 dl dd .label {
            display: block;
            width: 100%;
            text-align: center; } }
      div.wpcf7 dl dd .subject {
        display: inline-block;
        width: 25%;
        margin-bottom: 10px; }
        @media screen and (max-width: 414px) {
          div.wpcf7 dl dd .subject {
            width: calc(100% / 3); } }
  div.wpcf7 input[type=submit], div.wpcf7 input[type=button], div.wpcf7 .wpcf7c-btn-back {
    display: flex;
    width: 150px;
    height: 50px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s;
    font-size: 0.8rem; }
    div.wpcf7 input[type=submit].hover, div.wpcf7 input[type=button].hover, div.wpcf7 .wpcf7c-btn-back.hover {
      background-color: #EF7500;
      color: white; }
  div.wpcf7 .wpcf7c-btn-back {
    background-color: #ff5c5c;
    color: white;
    margin-right: 20px; }
  div.wpcf7 .submit-wrap {
    display: flex;
    justify-content: center;
    padding-top: 40px; }
    @media screen and (max-width: 414px) {
      div.wpcf7 .submit-wrap {
        padding: 20px 0; } }
  div.wpcf7 .wpcf7c-elm-step2 {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 40px; }
    div.wpcf7 .wpcf7c-elm-step2 .attention {
      color: red;
      font-size: 1.3em; }

/* single.scss 投稿ページのメインコンテンツcss */
/* archive.scss アーカイブページのcss */
.post-wrap .main > .content ul.blog-list {
  border: none;
  background-color: transparent;
  list-style: none; }
  @media screen and (max-width: 414px) {
    .post-wrap .main > .content ul.blog-list {
      padding: 0; } }
  .post-wrap .main > .content ul.blog-list > .list {
    padding: 15px;
    background-color: white;
    border: solid 2px #eee;
    box-sizing: border-box;
    transition: all .3s; }
    .post-wrap .main > .content ul.blog-list > .list:before {
      display: none; }
    .post-wrap .main > .content ul.blog-list > .list > .inner {
      display: flex; }
      @media screen and (max-width: 414px) {
        .post-wrap .main > .content ul.blog-list > .list > .inner {
          flex-wrap: wrap; } }
      .post-wrap .main > .content ul.blog-list > .list > .inner > .thumb {
        display: block;
        position: relative;
        width: 250px;
        height: 250px;
        overflow: hidden;
        margin-right: 20px; }
        @media screen and (max-width: 414px) {
          .post-wrap .main > .content ul.blog-list > .list > .inner > .thumb {
            width: 100%;
            height: 150px;
            margin-right: 0;
            margin-bottom: 10px; } }
        .post-wrap .main > .content ul.blog-list > .list > .inner > .thumb > .img {
          display: block;
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          background-repeat: no-repeat;
          background-size: cover;
          background-position: center;
          transition: all .3s; }
      .post-wrap .main > .content ul.blog-list > .list > .inner > .desc {
        width: calc(100% - 270px); }
        @media screen and (max-width: 414px) {
          .post-wrap .main > .content ul.blog-list > .list > .inner > .desc {
            width: 100%; } }
        .post-wrap .main > .content ul.blog-list > .list > .inner > .desc > .title {
          font-size: 1.3rem;
          margin-bottom: 20px;
          padding: 10px;
          box-sizing: border-box;
          border-bottom: solid 1px #ccc; }
          @media screen and (max-width: 414px) {
            .post-wrap .main > .content ul.blog-list > .list > .inner > .desc > .title {
              font-size: 1rem; } }
      .post-wrap .main > .content ul.blog-list > .list > .inner > .btn-wrap {
        width: 100%; }
    .post-wrap .main > .content ul.blog-list > .list.hover {
      border-color: #EF7500; }
      .post-wrap .main > .content ul.blog-list > .list.hover > .inner > .thumb > .img {
        transform: scale(1.08); }

/* sidebar.scss サイドバーのコンテンツcss */
.sidebar-wrap {
  width: 270px; }
  @media screen and (max-width: 414px) {
    .sidebar-wrap {
      width: 100%;
      padding: 0 10px;
      box-sizing: border-box;
      margin-top: 50px; } }
  .sidebar-wrap ul {
    list-style: none;
    box-sizing: border-box; }
    .sidebar-wrap ul li {
      line-height: 1.4em;
      font-size: 0.8rem;
      margin-bottom: 3px;
      position: relative;
      padding: 10px;
      padding-left: 15px;
      border-bottom: dashed 1px #ccc;
      display: flex;
      align-items: center; }
      .sidebar-wrap ul li:before {
        content: '\f0da';
        font-family: FontAwesome;
        margin-right: 10px; }
      .sidebar-wrap ul li:last-of-type {
        border-bottom: hidden; }
      .sidebar-wrap ul li a {
        font-size: 0.8rem;
        text-decoration: none; }
        .sidebar-wrap ul li a:link {
          color: black; }
        .sidebar-wrap ul li a:visited {
          color: black; }
  .sidebar-wrap .sidebar-inner_wrap {
    margin-bottom: 35px;
    box-sizing: border-box;
    border: solid 1px #ccc; }
    .sidebar-wrap .sidebar-inner_wrap .sidebar-title {
      display: inline-block;
      width: 100%;
      font-size: 1rem;
      padding: 11px;
      box-sizing: border-box;
      text-align: center;
      font-weight: bold;
      font-size: 1rem;
      position: relative; }
      .sidebar-wrap .sidebar-inner_wrap .sidebar-title img {
        position: absolute;
        bottom: 0;
        left: 15px;
        width: auto;
        height: auto;
        max-width: 60px; }
    .sidebar-wrap .sidebar-inner_wrap .searchform .screen-reader-text {
      display: none; }
    .sidebar-wrap .sidebar-inner_wrap .searchform > div {
      padding: 0 10px;
      box-sizing: border-box; }
    .sidebar-wrap .sidebar-inner_wrap .searchform input {
      border-radius: 3px;
      border: solid 1px #ccc; }
      .sidebar-wrap .sidebar-inner_wrap .searchform input[type=text] {
        width: calc(100% - 50px); }

/* footer.scss フッター要素のcss */
.float_menu {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #1C1300;
  z-index: 1000;
  transition: all .5s; }
  @media screen and (max-width: 414px) {
    .float_menu {
      height: 50px; } }
  .float_menu > .sns_link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    width: 16%;
    list-style: none;
    border-right: solid 2px #4E3400; }
    @media screen and (max-width: 414px) {
      .float_menu > .sns_link {
        display: none; } }
    .float_menu > .sns_link > .list {
      margin: 0 15px; }
  .float_menu > .list {
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: solid 2px #4E3400;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    transition: all .3s; }
    @media screen and (max-width: 414px) {
      .float_menu > .list {
        padding: 0 10px; } }
    .float_menu > .list img {
      margin-right: 15px; }
      @media screen and (max-width: 414px) {
        .float_menu > .list img {
          width: auto;
          height: auto;
          max-width: 20px;
          max-height: 20px;
          margin-right: 10px; } }
    .float_menu > .list > .text {
      font-size: 1rem;
      color: white; }
      @media screen and (max-width: 414px) {
        .float_menu > .list > .text {
          font-size: 0.7rem; } }
    .float_menu > .list.about-pdca {
      width: 25%; }
      @media screen and (max-width: 414px) {
        .float_menu > .list.about-pdca {
          display: none; } }
    .float_menu > .list.question {
      width: 19%; }
      @media screen and (max-width: 414px) {
        .float_menu > .list.question {
          width: 50%; } }
    .float_menu > .list.contact {
      width: calc(40% - 100px);
      background-color: #4E3400; }
      @media screen and (max-width: 414px) {
        .float_menu > .list.contact {
          width: 50%; } }
      .float_menu > .list.contact img {
        margin-right: 20px; }
        @media screen and (max-width: 414px) {
          .float_menu > .list.contact img {
            width: auto;
            height: auto;
            max-width: 20px;
            max-height: 20px;
            margin-right: 10px; } }
      .float_menu > .list.contact > .text {
        font-size: 1.5rem; }
        @media screen and (max-width: 414px) {
          .float_menu > .list.contact > .text {
            font-size: 0.7rem; } }
    .float_menu > .list.hover {
      background-color: #EF7500; }
  .float_menu > .page_top {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .3s; }
    @media screen and (max-width: 414px) {
      .float_menu > .page_top {
        display: none; } }
    .float_menu > .page_top.hover {
      background-color: #EF7500; }
  .float_menu.active {
    height: 70px; }
    @media screen and (max-width: 414px) {
      .float_menu.active {
        height: 60px; } }

.footer-wrap {
  display: block;
  position: relative; }
  .footer-wrap .footer-inner_wrap {
    background-image: url(../img/common/footer-bg.gif);
    padding: 50px 0 150px; }
    @media screen and (max-width: 414px) {
      .footer-wrap .footer-inner_wrap {
        padding-bottom: 70px; } }
    .footer-wrap .footer-inner_wrap .footer_nav {
      display: block;
      width: 1150px;
      max-width: calc(100% - 320px);
      margin: auto; }
      @media screen and (max-width: 414px) {
        .footer-wrap .footer-inner_wrap .footer_nav {
          max-width: calc(100% - 20px); } }
      .footer-wrap .footer-inner_wrap .footer_nav > .menu {
        display: flex;
        list-style: none;
        justify-content: center; }
        @media screen and (max-width: 414px) {
          .footer-wrap .footer-inner_wrap .footer_nav > .menu {
            flex-wrap: wrap; } }
        .footer-wrap .footer-inner_wrap .footer_nav > .menu li {
          border-right: solid 1px white;
          padding: 0 20px; }
          @media screen and (max-width: 414px) {
            .footer-wrap .footer-inner_wrap .footer_nav > .menu li {
              margin-bottom: 10px; } }
          .footer-wrap .footer-inner_wrap .footer_nav > .menu li a {
            color: white;
            text-decoration: none; }
            @media screen and (max-width: 414px) {
              .footer-wrap .footer-inner_wrap .footer_nav > .menu li a {
                font-size: 0.8rem; } }
          .footer-wrap .footer-inner_wrap .footer_nav > .menu li:last-of-type {
            border-right: none; }
    .footer-wrap .footer-inner_wrap > .logo {
      margin: 100px 0px;
      text-align: center; }
      @media screen and (max-width: 414px) {
        .footer-wrap .footer-inner_wrap > .logo {
          margin: 20px 0; } }
      .footer-wrap .footer-inner_wrap > .logo .copy_right {
        display: block;
        text-align: center;
        color: white;
        margin-top: 20px; }
        @media screen and (max-width: 414px) {
          .footer-wrap .footer-inner_wrap > .logo .copy_right {
            font-size: 0.6rem; } }

/*# sourceMappingURL=style.css.map */
