@charset "UTF-8";
/*====================================================================================
■01.RESET HTML
====================================================================================*/
/* ========== end △ */
#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  color: #1a1b1b;
  overflow-x: hidden;
  font-size: 14px;
  word-break: break-all; }

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 767px) {
  #wrapper {
    min-width: 1000px; } }
/* ========== end △ */
#wrapper.skip_all {
  overflow: hidden;
  height: 100vh; }

html {
  overflow-y: auto;
  line-height: normal; }

body {
  font-family: "游明朝" , "Yu Mincho" , "游明朝体" , YuMincho, "HGS明朝E" , "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #1a1b1b;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px; }

img {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  border: 0px;
  transition: All 0.3s ease;
  -webkit-transition: All 0.3s ease;
  -moz-transition: All 0.3s ease;
  -o-transition: All 0.3s ease; }

.ov_hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)"; }

a {
  color: #222;
  text-decoration: underline;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  word-break: break-all; }

a:hover {
  text-decoration: none; }

/*====================================================================================
■02.CLEAR FLOAT
====================================================================================*/
.clearfix:after {
  clear: both;
  display: block;
  content: " ";
  height: 0px;
  visibility: hidden; }

.clearfix {
  display: inline-block; }

/* Hide these rules from IE-mac \*/
* html .clearfix {
  height: 1%; }

.clearfix {
  display: block; }

.hidden {
  display: none; }

/*====================================================================================
■03.USE MEDIA
====================================================================================*/
.pull-left {
  float: left; }

.pull-right {
  float: right; }

.media, .media-body {
  overflow: hidden; }

.media-text:after {
  clear: both;
  display: block;
  content: "";
  height: 0px;
  visibility: hidden; }

/*====================================================================================
■04.LAYOUT
====================================================================================*/
.container {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%; }

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 767px) {
  .container {
    width: 1200px;
    margin: 0 auto; }

  #header #gnav {
    display: block !important; } }
@media screen and (min-width: 767px) {
  .pc {
    display: block; }

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

  .sp {
    display: block; } }
/* ▽ SP layout ========== */
@media print, screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 2%; } }
@media screen and (max-width: 320px) {
  body {
    width: 320px; } }
/*====================================================================================
■05.FLEX
====================================================================================*/
.dis_flex {
  display: flex;
  display: -webkit-flex;
  /* Safari */
  display: -moz-flex;
  /* Firefox */
  display: -ms-flex;
  /* IE */ }

.flex_between {
  display: flex;
  justify-content: space-between; }

.flex_between_center {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.flex_center_center {
  display: flex;
  justify-content: center;
  align-items: center; }

/*justify-content*/
.flex_jus_start {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start; }

.flex_jus_end {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end; }

.flex_jus_center {
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center; }

.flex_jus_between {
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between; }

.flex_jus_around {
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around; }

.flex_jus_ini {
  justify-content: initial;
  -webkit-justify-content: initial;
  -moz-justify-content: initial;
  -ms-justify-content: initial; }

/*align-items*/
.flex_align_item_start {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start; }

.flex_align_item_end {
  align-items: flex-end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end; }

.flex_align_item_stretch {
  align-items: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch; }

.flex_align_item_baseline {
  align-items: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline; }

.flex_align_item_center {
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center; }

.flex_align_item_ini {
  align-items: initial;
  -webkit-align-items: initial;
  -moz-align-items: initial;
  -ms-align-items: initial; }

.flex-container {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.flex_bg {
  width: 100%;
  margin-right: -100%; }

.flex_content {
  width: 100%;
  position: relative; }

/*====================================================================================
■06.HEADER
====================================================================================*/
.Crimson_font {
  font-family: 'Crimson Text', serif; }

#header {
  background: url("../images/bg_main.jpg") no-repeat top center;
  position: relative;
  height: calc(100vh + 130px);
  min-height: 1000px; }
  #header .h_main .logo {
    padding-top: 225px;
    text-align: center; }
    #header .h_main .logo img {
      animation: 60s infinite linear; }
  #header h1 {
    font-size: 32px;
    color: #fff;
    text-align: center;
    text-shadow: 0px 0px 13px rgba(6, 0, 1, 0.7);
    margin-top: 70px;
    margin-bottom: 280px; }
    #header h1 span {
      display: block;
      font-family: 'Crimson Text', serif;
      font-size: 16px;
      margin-top: 18px; }
  #header #gnav {
    position: absolute;
    top: calc(100% - 70px);
    background: rgba(47, 45, 44, 0.6);
    z-index: 999;
    padding: 15px 0;
    width: 100%; }
    #header #gnav ul {
      display: flex;
      justify-content: center; }
      #header #gnav ul li {
        position: relative;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        border-right: 1px solid #fff; }
        #header #gnav ul li a {
          color: #fff;
          text-decoration: none;
          padding: 0 50px; }
          #header #gnav ul li a span {
            display: block;
            font-family: 'Crimson Text', serif;
            font-size: 12px; }
        #header #gnav ul li:last-child {
          border-right: none; }
        #header #gnav ul li:hover a {
          color: #5599b4; }
    #header #gnav.h_fixed {
      position: fixed;
      background: rgba(47, 45, 44, 0.9);
      top: 0; }

@-webkit-keyframes scrolltop {
  0% {
    transform: translateY(-80px);
    opacity: 0;
    transition: ease-in-out; }
  100% {
    transform: translateY(0);
    opacity: 1; } }
/*====================================================================================
■07.MAIN CONTENT
====================================================================================*/
main .slider {
  margin-top: 4%; }
  main .slider img {
    width: 100%; }
main .about_sec .about_01 {
  background: url("../images/about_bg.jpg") no-repeat top center;
  margin-top: 50px;
  padding: 130px 0;
  text-align: center; }
  main .about_sec .about_01 .style_ttl01 {
    display: inline-block;
    padding: 15px 60px; }
main .about_sec .about_02 {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  main .about_sec .about_02 .txt_about02 {
    width: 55%;
    background: #f3f1e5;
    display: flex;
    justify-content: flex-end; }
    main .about_sec .about_02 .txt_about02 .inner {
      width: 525px;
      margin: 6% 14% 6% 0; }
      main .about_sec .about_02 .txt_about02 .inner .bg_f8f7ef {
        background: #f8f7ef;
        padding: 40px;
        margin-top: 30px; }
        main .about_sec .about_02 .txt_about02 .inner .bg_f8f7ef .style_ttl01 {
          display: flex;
          align-items: center;
          justify-content: center; }
          main .about_sec .about_02 .txt_about02 .inner .bg_f8f7ef .style_ttl01 span {
            display: inline-block;
            margin-left: 20px; }
  main .about_sec .about_02 .img_about02 {
    width: 50%;
    margin-left: -12%; }
    main .about_sec .about_02 .img_about02 #Target-img {
      position: relative;
      width: 100%;
      height: 550px;
      border: 1px solid #f3f1e5; }
      main .about_sec .about_02 .img_about02 #Target-img img {
        max-height: 100%;
        max-width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto; }
    main .about_sec .about_02 .img_about02 #Thumbs {
      width: 100%;
      display: flex;
      justify-content: space-between; }
      main .about_sec .about_02 .img_about02 #Thumbs li {
        position: relative;
        width: 50%;
        height: 185px;
        border: 1px solid #f3f1e5;
        opacity: 0.6; }
        main .about_sec .about_02 .img_about02 #Thumbs li img {
          max-height: 100%;
          height: auto;
          width: 100%;
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          bottom: 0;
          margin: auto; }
        main .about_sec .about_02 .img_about02 #Thumbs li.active {
          opacity: 1; }
main .style_ttl01 {
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 15px 0;
  font-size: 32px;
  margin-bottom: 40px; }
  main .style_ttl01 span {
    display: block;
    font-size: 18px;
    font-family: 'Crimson Text', serif; }
main .style_sub01 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px; }
  main .style_sub01 span {
    display: block;
    font-size: 16px;
    font-family: 'Crimson Text', serif; }
main .message_sec {
  padding-top: 140px; }
  main .message_sec .box_mes {
    display: flex;
    justify-content: center;
    align-items: center; }
    main .message_sec .box_mes .txt_box {
      position: relative;
      background: rgba(232, 228, 204, 0.5);
      width: 630px;
      padding: 50px;
      margin-right: -3.5%;
      z-index: 2; }
      main .message_sec .box_mes .txt_box .txt_name {
        font-size: 16px;
        text-align: right;
        margin-top: 40px; }
    main .message_sec .box_mes .img_box {
      position: relative;
      width: 520px;
      z-index: 1; }
      main .message_sec .box_mes .img_box .img_circle {
        position: absolute;
        content: "";
        top: 305px;
        left: 80px; }
main .experience_sec {
  background: url("../images/experience_bg.jpg") no-repeat top center;
  padding: 130px;
  text-align: center; }
  main .experience_sec .experience_box {
    width: 60%;
    margin: auto; }
    main .experience_sec .experience_box .style_ttl01 {
      display: inline-block;
      padding: 15px 60px; }
main .recommend_sec {
  background: url("../images/recommend_bg.jpg") top center;
  padding: 100px 0; }
  main .recommend_sec .rec_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    main .recommend_sec .rec_box .img_box {
      width: 550px; }
      main .recommend_sec .rec_box .img_box .img {
        position: relative;
        width: 100%; }
        main .recommend_sec .rec_box .img_box .img .txt_img {
          position: absolute;
          content: "";
          height: 100%;
          width: 100px;
          top: 0;
          right: 0;
          background: linear-gradient(to top, rgba(255, 255, 255, 0.6) 5%, #37b5b3 100%, #ceced0 100%);
          font-size: 22px;
          writing-mode: tb-rl;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flex;
          display: -o-flex;
          display: flex;
          justify-content: center;
          -ms-align-items: center;
          align-items: center; }
          main .recommend_sec .rec_box .img_box .img .txt_img span {
            font-size: 16px; }
      main .recommend_sec .rec_box .img_box .e_ttl {
        text-align: center;
        font-size: 18px;
        margin-top: 10px; }
    main .recommend_sec .rec_box .txt_box {
      width: 540px; }
      main .recommend_sec .rec_box .txt_box .style_ttl01 {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center; }
        main .recommend_sec .rec_box .txt_box .style_ttl01 span {
          display: inline-block;
          margin-left: 10px; }
    main .recommend_sec .rec_box:nth-child(2) {
      flex-direction: row-reverse;
      margin-top: 100px; }
      main .recommend_sec .rec_box:nth-child(2) .txt_img {
        color: #fff; }
  main .recommend_sec .two_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 100px; }
    main .recommend_sec .two_box .rec_box {
      display: block;
      width: 550px;
      flex-direction: row-reverse; }
      main .recommend_sec .two_box .rec_box:first-child .txt_img {
        color: #fff; }
      main .recommend_sec .two_box .rec_box:nth-child(2) {
        margin-top: 0; }
        main .recommend_sec .two_box .rec_box:nth-child(2) .txt_img {
          color: #000; }
      main .recommend_sec .two_box .rec_box .img_box {
        margin-bottom: 20px; }
  main .recommend_sec .three_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 100px; }
    main .recommend_sec .three_box .rec_box {
      display: block;
      width: 380px;
      flex-direction: row-reverse; }
      main .recommend_sec .three_box .rec_box:first-child .txt_img {
        color: #fff; }
      main .recommend_sec .three_box .rec_box:nth-child(2) {
        margin-top: 0; }
        main .recommend_sec .three_box .rec_box:nth-child(2) .txt_img {
          color: #fff; }
      main .recommend_sec .three_box .rec_box .img_box {
        width: 100% !important;
        margin-bottom: 20px; }
      main .recommend_sec .three_box .rec_box .txt_box {
        width: 100% !important; }
      main .recommend_sec .three_box .rec_box .style_ttl01 {
        font-size: 22px; }
        main .recommend_sec .three_box .rec_box .style_ttl01 span {
          font-size: 14px; }
main .other_sec {
  background: url("../images/other_bg.gif") no-repeat top center;
  background-size: cover;
  padding: 120px 0;
  text-align: center;
  color: #fff; }
  main .other_sec p {
    margin: 5% auto;
    font-size: 16px; }
main .qa_sec {
  padding: 80px 0;
  margin: 0 auto; }
  main .qa_sec .style_ttl01 {
    width: 445px;
    text-align: center;
    margin: 0 auto 150px; }
  main .qa_sec .box_qa {
    border-bottom: 1px solid #000; }
    main .qa_sec .box_qa .ttl_q {
      position: relative;
      cursor: pointer;
      padding: 15px 80px 15px 25px;
      font-size: 22px; }
      main .qa_sec .box_qa .ttl_q:after {
        position: absolute;
        content: "\f055";
        font-family: FontAwesome;
        font-weight: normal;
        top: 50%;
        transform: translateY(-50%);
        right: 25px; }
      main .qa_sec .box_qa .ttl_q.opened:after {
        content: "\f056"; }
      main .qa_sec .box_qa .ttl_q p {
        text-indent: -25px;
        margin-left: 25px; }
      main .qa_sec .box_qa .ttl_q .txt_Q {
        font-weight: normal; }
      main .qa_sec .box_qa .ttl_q span {
        display: block;
        font-size: 16px;
        padding-left: 30px; }
    main .qa_sec .box_qa .cont_a {
      display: none;
      padding: 15px 80px 15px 25px;
      font-size: 16px;
      text-indent: -20px;
      margin-left: 20px; }
main .access_sec {
  line-height: 0; }

.box_maxheight {
  position: relative; }

.maxheight_btn {
  cursor: pointer;
  color: #5599b4;
  margin: 15px auto;
  text-align: center;
  background: #fff;
  border-radius: 5px;
  padding: 5px;
  display: block;
  width: 120px; }

.maxheight_hide {
  display: none; }

/*====================================================================================
■08.FOOTER
====================================================================================*/
#footer .page_up {
  position: fixed;
  right: 1%;
  bottom: 15%;
  z-index: 999; }
#footer .f_main {
  background: url("../images/footer_bg.jpg") no-repeat top center;
  background-size: cover;
  padding: 60px 0; }
  #footer .f_main .inner_main {
    display: flex;
    align-items: center;
    color: #fff; }
    #footer .f_main .inner_main a {
      text-decoration: none;
      color: #fff; }
    #footer .f_main .inner_main .f_logo {
      margin: 0 5% 0 4%; }
    #footer .f_main .inner_main p {
      margin-right: 7%;
      font-size: 16px;
      letter-spacing: 2px; }

/* ▽ SP layout ========== */
@media print, screen and (max-width: 767px) {
  /* ===== HEADER ===== */
  .HiddenCheckbox {
    display: none; }

  #header {
    background: url("../images/sp_bg_main.jpg") no-repeat top center;
    background-size: cover;
    height: auto;
    min-height: 300px; }
    #header .h_main {
      position: relative; }
      #header .h_main .logo {
        width: 30%;
        padding-top: 12%;
        margin: auto; }
        #header .h_main .logo img {
          width: 100%; }
      #header .h_main .h_btn {
        position: absolute;
        top: 15px;
        right: 2%; }
      #header .h_main .btn_close {
        display: none; }
    #header h1 {
      font-size: 4vw;
      margin-top: 5%;
      padding-bottom: 30%;
      margin-bottom: 0; }
      #header h1 span {
        font-size: 3vw; }
    #header #gnav {
      position: absolute;
      display: none;
      background: rgba(47, 45, 44, 0.9);
      width: 100%;
      left: 0;
      right: 0;
      top: 70px;
      z-index: 999;
      margin-top: 0; }
      #header #gnav .container {
        padding: 0; }
      #header #gnav ul {
        display: block; }
        #header #gnav ul li {
          width: 100%;
          text-align: center;
          border-right: none;
          border-bottom: 1px solid #fff; }
          #header #gnav ul li a {
            padding: 15px 0; }
            #header #gnav ul li a:after {
              position: absolute;
              content: "";
              top: 0;
              left: 0;
              right: 0;
              bottom: 0; }
      #header #gnav.h_fixed {
        position: absolute;
        top: 70px; }

  /* ===== MAIN CONTENT ===== */
  main .about_sec .about_01 {
    background: url("../images/sp_about_bg.jpg") no-repeat top center;
    background-size: contain;
    margin-top: 5%;
    padding: 5% 0; }
    main .about_sec .about_01 .sp_img {
      width: 104%;
      margin-left: -2%;
      margin-top: 5%; }
      main .about_sec .about_01 .sp_img img {
        width: 100%; }
    main .about_sec .about_01 .style_ttl01 {
      width: 100%;
      display: inline-block;
      padding: 10px; }
  main .about_sec .about_02 {
    flex-wrap: wrap; }
    main .about_sec .about_02 .txt_about02 {
      width: 100%; }
      main .about_sec .about_02 .txt_about02 .inner {
        width: 100%;
        margin: 0;
        padding: 7% 0; }
        main .about_sec .about_02 .txt_about02 .inner .pr40 {
          padding-right: 2% !important; }
        main .about_sec .about_02 .txt_about02 .inner .pl40 {
          padding-left: 2% !important; }
        main .about_sec .about_02 .txt_about02 .inner .bg_f8f7ef {
          background: #f8f7ef;
          padding: 4%;
          margin: 5% 2% 0; }
    main .about_sec .about_02 .img_about02 {
      width: 100%;
      margin-left: 0; }
      main .about_sec .about_02 .img_about02 #Target-img {
        width: 100%;
        height: 400px; }
      main .about_sec .about_02 .img_about02 #Thumbs {
        width: 100%; }
        main .about_sec .about_02 .img_about02 #Thumbs li {
          position: relative;
          width: 50%;
          height: 150px; }
  main .message_sec {
    padding-top: 10%;
    background: rgba(232, 228, 204, 0.5); }
    main .message_sec .box_mes {
      flex-wrap: wrap; }
      main .message_sec .box_mes .txt_box {
        background: none;
        width: 100%;
        padding: 0;
        margin-right: 0; }
        main .message_sec .box_mes .txt_box .txt_name {
          margin-top: 5%; }
      main .message_sec .box_mes .img_box {
        width: 100%;
        margin-top: 5%; }
        main .message_sec .box_mes .img_box img {
          width: 100%; }
        main .message_sec .box_mes .img_box .img_circle {
          position: absolute;
          content: "";
          top: 80%;
          left: 8%; }
  main .experience_sec {
    background: url("../images/sp_experience_bg.jpg") no-repeat top center;
    background-size: cover;
    padding: 5% 0;
    margin: 15% 0 5%; }
    main .experience_sec .experience_box {
      width: 100%; }
      main .experience_sec .experience_box .style_ttl01 {
        width: 100%;
        display: block;
        padding: 10px; }
  main .recommend_sec {
    background: url("../images/recommend_bg.jpg") top center;
    background-size: contain;
    padding: 1% 0 11%; }
    main .recommend_sec .rec_box {
      margin-top: 10%; }
      main .recommend_sec .rec_box .img_box {
        width: 100%;
        margin-bottom: 5% !important; }
        main .recommend_sec .rec_box .img_box .img img {
          width: 100%; }
      main .recommend_sec .rec_box .txt_box {
        width: 100%; }
      main .recommend_sec .rec_box:nth-child(2) {
        margin-top: 10%; }
    main .recommend_sec .two_box {
      margin-top: 0; }
      main .recommend_sec .two_box .rec_box {
        display: flex !important;
        width: 100%; }
        main .recommend_sec .two_box .rec_box:nth-child(2) {
          margin-top: 10%; }
    main .recommend_sec .three_box {
      margin-top: 0; }
      main .recommend_sec .three_box .rec_box {
        display: flex !important;
        width: 100%; }
        main .recommend_sec .three_box .rec_box:nth-child(2) {
          margin-top: 10%; }
  main .other_sec {
    background: url("../images/other_bg.gif") no-repeat top center;
    background-size: cover;
    padding: 10% 0; }
    main .other_sec p {
      width: 100%;
      line-height: 1.8; }
    main .other_sec figure img {
      width: 100%; }
  main .qa_sec {
    padding: 8% 0; }
    main .qa_sec .style_ttl01 {
      width: 100%;
      margin: 0 auto 5%; }
    main .qa_sec .box_qa {
      border-bottom: 1px solid #000; }
      main .qa_sec .box_qa .ttl_q {
        position: relative;
        cursor: pointer;
        padding: 15px 80px 15px 25px;
        font-size: 22px; }
        main .qa_sec .box_qa .ttl_q:after {
          position: absolute;
          content: "\f055";
          font-family: FontAwesome;
          font-weight: normal;
          top: 50%;
          transform: translateY(-50%);
          right: 25px; }
        main .qa_sec .box_qa .ttl_q.opened:after {
          content: "\f056"; }
        main .qa_sec .box_qa .ttl_q .txt_Q {
          font-weight: normal; }
        main .qa_sec .box_qa .ttl_q span {
          display: block;
          font-size: 16px;
          padding-left: 30px; }
      main .qa_sec .box_qa .cont_a {
        display: none;
        padding: 15px 80px 15px 25px;
        font-size: 16px; }

  /* ===== FOOTER ===== */
  #footer #f_gnav {
    position: relative;
    background: #000;
    text-align: center;
    border-bottom: 2px solid #fff; }
    #footer #f_gnav .btn_fgnav {
      position: relative;
      padding: 12px 0;
      cursor: pointer; }
    #footer #f_gnav .f_link {
      display: none;
      padding: 0 2%; }
      #footer #f_gnav .f_link li {
        position: relative;
        border-top: 2px solid #fff;
        padding: 15px 0;
        text-align: center; }
        #footer #f_gnav .f_link li a {
          color: #fff;
          text-decoration: none; }
          #footer #f_gnav .f_link li a span {
            display: block;
            font-family: 'Crimson Text', serif;
            font-size: 12px; }
  #footer .f_main {
    background: url("../images/footer_bg.jpg") no-repeat top center;
    background-size: cover; }
    #footer .f_main .inner_main {
      flex-wrap: wrap;
      align-content: center; }
      #footer .f_main .inner_main .f_logo {
        width: 100%;
        text-align: center;
        margin-bottom: 5%; }
      #footer .f_main .inner_main p {
        margin: 0 auto 5%;
        text-align: center; }

  /* ===== MAIN CONTENT ===== */ }
@media print, screen and (max-width: 640px) {
  /* ===== MAIN CONTENT ===== */ }
@media print, screen and (max-width: 480px) {
  /* ===== HEADER ===== */
  #header #gnav ul li a {
    padding: 10px 0; }

  /* ===== MAIN CONTENT ===== */
  main .style_ttl01 {
    font-size: 5vw !important;
    padding: 10px 0;
    margin-bottom: 15px; }
    main .style_ttl01 span {
      font-size: 16px; }
  main .style_sub01 {
    font-size: 4.5vw !important; }
    main .style_sub01 span {
      font-size: 14px !important; }
  main .about_sec .about_02 .txt_about02 .inner .bg_f8f7ef.f16 {
    font-size: 14px !important; }
  main .about_sec .about_02 .img_about02 #Target-img {
    height: 250px; }
  main .about_sec .about_02 .img_about02 #Thumbs li {
    height: 100px; }
  main .message_sec .box_mes .txt_box .txt_name {
    font-size: 3.5vw; }
  main .message_sec .box_mes .img_box .img_circle {
    width: 32%;
    top: 73%;
    left: 6%; }
    main .message_sec .box_mes .img_box .img_circle img {
      width: 100%; }
  main .recommend_sec .rec_box .txt_box .style_ttl01 span {
    font-size: 14px; }
  main .recommend_sec .rec_box .img_box .img .txt_img {
    width: 60px;
    font-size: 4vw; }
    main .recommend_sec .rec_box .img_box .img .txt_img span {
      font-size: 3vw; }
  main .other_sec p {
    font-size: 14px;
    line-height: 1.5; }
  main .qa_sec .style_ttl01 {
    margin: 0 auto 10%; }
  main .qa_sec .box_qa .ttl_q {
    padding: 2% 30px 2% 2%;
    font-size: 16px; }
    main .qa_sec .box_qa .ttl_q span {
      font-size: 14px;
      padding-left: 22px; }
    main .qa_sec .box_qa .ttl_q:after {
      right: 2%; }
    main .qa_sec .box_qa .ttl_q p {
      text-indent: -22px;
      margin-left: 22px; }

  /* ===== FOOTER ===== */
  #footer .f_main .inner_main p {
    font-size: 15px; } }
@media only screen and (max-width: 360px) {
  /* ===== FOOTER ===== */
  #footer .f_main .inner_main p {
    font-size: 12px; } }

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