@charset "UTF-8";
@import url("https://use.fontawesome.com/releases/v5.6.1/css/all.css");

/***********************************************/
/* 目次 */
/*=============================================*/
/*   00.setting                                */
/*   01.common                                 */
/*   02.layout                               */
/*   03.content(Page)                               */
/*=============================================*/
/***********************************************/
/*=============================================*/
/*00.setting*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="radio"]::-ms-check,
input[type="checkbox"]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

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

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

/*=============================================*/
/*01 common*/
/*=============================================*/
html {
  font-size: 62.5%;
}

body {
  margin: auto;
  width: auto;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a, b, dd, dt, li, p, span, td, th {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #323232;
}

.sp_only {
  display: none !important;
}

@media screen and (max-width:767px) {
  .sp_only {
    display: block !important;
  }

  .pc_only {
    display: none !important;
  }
}

.center {
  margin: auto;
  text-align: center;
  line-height: 180%;
}

/*=============================================*/
/*   02.layout                               */
/*=============================================*/
/************************************/
/* BackGround */
/************************************/
body {
  position: relative;
/*
  background: url("../img/background.png") no-repeat;
  background-attachment: fixed;
  background-size: cover;
*/
}

body:after {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url("../img/background.png") no-repeat;
    background-size: cover;
}

.load {
  position: fixed;
  top: -44%;
  right: -65%;
  margin: auto;
  width: 200%;
  z-index: 0;
  -webkit-animation: spin 120s linear infinite;
  -moz-animation: spin 120s linear infinite;
  -ms-animation: spin 120s linear infinite;
  -o-animation: spin 120s linear infinite;
  animation: spin 120s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(360deg);
  }
}

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }

  100% {
    -ms-transform: rotate(360deg);
  }
}

@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }

  100% {
    -o-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/************************************/
/* header */
/************************************/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 35px;
  box-sizing: border-box;
  z-index: 1;
}

header .logo {
  float: left;
}

header .head_right {
  float: right;
  margin-right: 60px;
}

header .head_right .sns_list li {
  display: inline-block;
  width: 16px;
  margin-right: 25px;
}

header .head_right .sns_list li a {
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
}

header .head_right .sns_list li a:hover {
  opacity: 0.6;
}

/************************************/
/* Main Nav */
/************************************/
.fixed {
  height: 100%;
  overflow: hidden;
  padding-right: 15px;
}

.menu-trigger {
  display: inline-block;
  width: 38px;
  height: 60px;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 100;
  transform: translateX(0);
  transition: transform .5s;
}

.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span {
  transform: translateY(12px) rotate(-20deg);
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(14px) rotate(-45deg);
}

.menu-trigger span:nth-of-type(2) {
  top: 12px;
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger span:nth-of-type(3) {
    bottom: 32px;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

.main_nav {
  width: 320px;
  height: 100%;
  padding: 100px 0 0 80px;
  padding-top: 100px;
  background-color: rgb(255, 255, 255, 1.0);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(320px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  box-sizing: border-box;
}

.main_nav.open {
  transform: translateZ(0);
}

.main_nav li a {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
  padding: 10px 0;
  color: #19a0f0;
  font-size: 2.15rem;
}

.main_nav li.li01 a img {
  width: 48px;
}

.main_nav li.li02 a img {
  width: 84px;
}

.main_nav li.li03 a img {
  width: 92px;
}

.main_nav li.li04 a img {
  width: 177px;
}

.main_nav li.li05 a img {
  width: 121px;
}

/************************************/
/* Base LayOut */
/************************************/
section {
  position: relative;
}

.main_width {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.column_2_list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.column_2_list li {
  position: relative;
  width: 48%;
  margin: 0 4% 30px 0;
  overflow: hidden;
}

.column_2_list li:nth-child(2n) {
  margin-right: 0;
}

.column_2_list li a {
  display: block;
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
}

.column_2_list li .img {
  width: 40%;
  float: left;
  margin-right: 5%;
}

.column_2_list li .info {
  width: 55%;
  float: right;
}

.column_2_list li h3 {
  font-size: 1.5rem;
  padding-bottom: 1.2em;
  line-height: 1.6;
}

.column_2_list li h3 a {
  font-size: 1em;
  line-height: 1.6;
  font-weight: bold;
}

.column_2_list li .date {
  position: absolute;
  bottom: 0;
  font-size: 1.2rem;
}

.bg_white {
  background-color: rgba(255, 255, 255, 0.4);
}

.column_2_list li a:hover {
  opacity: 0.7;
}

/************************************/
/* Main Visual */
/************************************/
.main_visual {
  position: relative;
  width: 100%;
  background-size: cover;
}

.main_visual .main_width {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  position: relative;
  width: 50%;
  min-width: 700px;
  margin: auto;
  padding: 120px 0 0;
  /*    z-index: 2; */
  box-sizing: border-box;
}

.main_visual .left {
  width: 57%;
  float: left;
  margin-right: 5%;
  text-align: center;
}

.main_visual .right {
  width: 38%;
  float: right;
  text-align: center;
}

.main_visual .right img {
  width: 100%;
}

.main_visual .left .read_more {
  margin: 5px auto 0;
  max-width: 180px;
  text-align: center;
}

.main_visual .left .read_more a {
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
}

.main_visual .left .read_more a:hover {
  opacity: 0.7;
}

.about_main_ttl {
  width: 100%;
  height: 200px;
  padding: 52px;
  box-sizing: border-box;
}

.about_main_ttl h2 {
  margin: auto;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 50px;
  color: #323232;
}

.about_main_content {
  width: 100%;
  height: auto;
  margin-bottom: 10%;
}

.about_main_content h3 {
  text-align: center;
  margin: 10px 0;
  font-size: 1.8rem;
  font-weight: bold;
}

.about_main_content p {
  font-size: 1.6rem;
  line-height: 30px;
}

.about_main_content img {
  width: 100%;
  opacity: 100%;
  margin: 50px 0;
}

.main_content {
  width: 100%;
  height: auto;
  margin-bottom: 10%;
}

.main_content p {
  font-size: 1.6rem;
  line-height: 30px;
  margin-bottom: 7%;
}

.main_content p span {
  line-height: 40px;
}

.main_content h3 {
  margin: 10px 0;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 5%;
  color: #19a0f0;
}

.main_content hr {
  background-color: #19a0f0;
  height: 1px;
  margin-bottom: 3%;
}

.contact_main_content {
  width: 100%;
  height: auto;
  margin-bottom: 10%;
}

.contact_main_content p {
  font-size: 16px;
  line-height: 40px;
  margin-bottom: 7%;
}

.contact_main_content .red_word {
  color: red;
}
.contact_main_content .center {
    font-size: 1.5rem;
}


/************************************/
/* Top Topics */
/************************************/
.topics_list {
  padding-bottom: 30px;
}

.topics_list h2 {
  position: relative;
  top: -10px;
  text-align: center;
}

.topics_list h2.ttl_news {
  margin-bottom: 30px;
}

.topics_list h2.ttl_news img {
  max-width: 150px;
}

.topics_list .more_btn {
  max-width: 110px;
  margin: auto;
}

/************************************/
/* Footer */
/************************************/
.copyright {
  position: fixed;
  right: 10px;
  bottom: 20px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: 1.2rem;
}

/************************************/
/* Page Top */
/************************************/
.page_top.pc_only {
  display: none;
  position: fixed;
  right: 50px;
  bottom: 50px;
}

/*=============================================*/
/*   03.content(Page)                          */
/*=============================================*/
/************************************/
/* Page base */
/************************************/
.page_box {
  padding-top: 120px;
  position: relative;
}

.page_box .ttl_news {
  top: auto;
}

.page_box .column_2_list li {
  margin-bottom: 45px;
}

.main_width_mini {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

/************************************/
/* Archives */
/************************************/
.topics_list .ttl_information {
  max-width: 177px;
  margin: 0 auto 30px;
}

.topics_list .ttl_about {
  max-width: 150px;
  margin: 0 auto 30px;
}

.topics_list .ttl_privacy {
  max-width: 75px;
  margin: 0 auto 30px;
}

.post_bottom {
  padding: 20px 0 30px;
  overflow: hidden;
}

.post_bottom .category_list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  width: 50%;
  float: left;
}

.post_bottom .category_list b {
  margin-right: 1.7em;
  font-size: 1.2rem;
}

.post_bottom .category_list ul li {
  display: inline-block;
  font-size: 1.2rem;
  margin-right: 1.5em;
}

.post_bottom .category_list ul li a {
  font-size: 1em;
  text-decoration: underline;
}

.post_bottom .paging_box {
  width: 50%;
  float: right;
  text-align: right;
}

.post_bottom .paging_box ul li {
  display: inline-block;
  font-size: 1.6rem;
}

.post_bottom .paging_box ul li a {
  font-size: 1em;
  padding: 0 0.5em;
  text-decoration: underline;
}

.post_bottom .paging_box ul li .current {
  font-size: 1em;
  padding: 0 0.5em;
  color: #19a0f0;
  text-decoration: underline;
}

/************************************/
/* Post Single */
/************************************/
.post_box .icatch {
  max-width: 800px;
  margin: auto;
}
.post_box .icatch img {
    width: 100%;
    height: auto;
}

.post_box .post_ttl {
  margin: 1.5em 0 1em;
  font-size: 2.4rem;
  font-weight: bold;
}

.post_box .post_info {
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #7f7f7f;
}

.post_box .post_info .date {
  float: left;
  font-size: 1.2rem;
}

.post_box .post_info .date span a,
.post_box .post_info .date span {
  font-size: 1em;
}

.post_box .post_info .sns_list {
  float: right;
  font-size: 0;
}

.post_box .post_info .sns_list li {
  display: inline-block;
}

.post_box .post_info .sns_list li a {
  display: block;
  padding: 0.3em 1.5em 0.5em;
  color: #fff;
  font-size: 1.2rem;
}

.post_box .post_info .sns_list li i {
  margin-right: 0.3em;
}

.post_box .post_info .sns_list li.facebook {
  background-color: #3e5192;
}

.post_box .post_info .sns_list li.twitter {
  background-color: #75a9eb;
}

.post_box .post_info .sns_list li.line {
  background-color: #6dc22d;
}

/************************************/
/* The Content */
/************************************/
.the_content {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #7f7f7f;
}

.the_content h2 {
  font-size: 1.8rem;
  margin-bottom: 1em;
  font-weight: bold;
}

.the_content p {
  margin-bottom: 2em;
  font-size: 1.6rem;
  line-height: 2;
}

.the_content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.the_content .alignright {
  display: inline;
  max-width: 60%;
  float: right;
  margin: 0 0 10px 10px;
  padding: 4px;
}

.the_content .alignleft {
  display: inline;
  max-width: 60%;
  float: left margin: 0 10px 10px 0;
}

.the_content img {
  margin-top: 30px;
  margin-bottom: 40px;
}


/************************************/
/* Single Bottom */
/************************************/
.post_box .ttl_other {
  max-width: 150px;
  margin: 0 auto 40px;
  text-align: center;
}

.post_box .post_bottom {
  position: relative;
}

.post_box .post_bottom .paging_box {
  width: 30%;
}

.post_box .post_bottom .category_list {
  width: 40%;
}

.post_box .post_bottom .post_select {
  position: absolute;
  left: 0;
  top: 20px;
  right: 0;
  width: 30%;
  margin: auto;
}

.post_box .post_bottom .post_select b {
  font-size: 1.2rem;
}

.post_box .post_bottom .post_select select {
  padding: 0 1.8em 0 0.5em;
  border-bottom: 1px solid #323232;
  font-size: 1.2rem;
  background: url("../img/ico_arrow_bottom.png") no-repeat 97% center;
}

/********************************/
/* Plus     */
/********************************/
.ttl_txt_center {
  margin-bottom: 1.5em;
  font-size: 2.0rem;
  text-align: center;
  color: #19a0f0;
}

.ttl_txt_center span {
  color: #19a0f0;
}

/********************************/
/* Contact     */
/********************************/
.contact_main_content table {
  width: 100%;
  margin-bottom: 60px;
}


.contact_main_content table tr th {
  text-align: left;
  font-size: 18px;
    width: 13em;
}
.contact_main_content table tr td,
.contact_main_content table tr th {
    font-size: 1.5rem;
    padding: 1em 0;
}

.contact_main_content table tr td input[type=text],
.contact_main_content table tr td input[type=email] {
  width: 100%;
  height: 30px;
  font-size: 18px;
  border: 1px solid white;
  background-color: white;
}

.contact_main_content table .contact_textarea {
  vertical-align: top;
}


.contact_main_content table tr td textarea {
  width: 100%;
  height: 150px;
  font-size: 18px;
  border: 1px solid white;
  background-color: white;
  resize: none;
}

.button_area {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.button_area input {
    min-width: 250px;
    padding: 0.4em 1em;
    background-color: rgb(25, 160, 240);
    color: white;
    font-size: 1.7rem;
}

.radio_check input[type=radio],
.radio_check input[type=checkbox] {
    display: none;
}
.radio_check label span {
    box-sizing: border-box;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
    position: relative;
    display: inline-block;
    margin: 0 20px 8px 0;
    padding: 0 30px 0 30px;
    border-radius: 8px;
    vertical-align: middle;
    cursor: pointer;
}
.radio_check label span:after {
    -webkit-transition: border-color 0.2s linear;
    transition: border-color 0.2s linear;
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    margin-top: -10px;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 20px;
    content: '';
    background-color: #fff;
}
.radio_check label span:before {
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    position: absolute;
    top: 50%;
    left: 5px;
    display: block;
    margin-top: -5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #19a0f0;
    content: '';
    opacity: 0;
    z-index: 1;
}
.radio_check input[type=radio]:checked + span:before,
.radio_check input[type=radio]:checked + .radio:before {
    opacity: 1;
}
.radio_check.checkbox label span::after {
    border-radius: 3px;
}
.radio_check.checkbox label span::before {
    position: absolute;
    top: 45%;
    left: 6px;
    display: block;
    margin-top: -7px;
    width: 5px;
    height: 9px;
    border-right: 3px solid #19a0f0;
    border-bottom: 3px solid #19a0f0;
    content: '';
    opacity: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: transparent;
    border-radius: 0;
}
.radio_check input[type=checkbox]:checked + span:before {
    opacity: 1;
}

.radio_check.checkbox > span {
    display: inline-block;
    margin-bottom: 10px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0 !important;
}

.entry_table span.required {
    display: inline-block;
    margin: 5px 0;
    background-color: #1d006f;
    color: #fff;
    font-size: 0.8em;
    padding: 0.3em 0.5em;
    border-radius: 5px;
}

.contact_main_content .center {
    line-height: 1.6;
}
.contact_main_content .center a {
    text-decoration: underline;
}

/*=============================================*/
/*media query   Tablet*/
/*=============================================*/
@media screen and (max-width: 1024px) {
    .main_width_mini,
    .main_width {
        width: 94%;
    }
    .post_box .icatch {
        text-align: center;
        width: 94%;
    }
}

/*=============================================*/
/*media query    Smart Phone */
/*=============================================*/
@media screen and (max-width: 767px) {

  /*=============================================*/
  /*01 common*/
  /*=============================================*/
  html {
    overflow: auto;
    height: 100%;
  }

  /*=============================================*/
  /*   02.layout                               */
  /*=============================================*/
  /************************************/
  /* BackGround */
  /************************************/
  .load {
    position: fixed;
    top: 15%;
    left: -31%;
    width: 250%;
    max-width: 550px;
  }

  /************************************/
  /* header */
  /************************************/
  header {
    padding: 20px 15px;
  }

  header .logo {
    width: 70%;
    max-width: 250px;
  }

  header .head_right .sns_list {
    display: none;
  }

  /************************************/
  /* Main Nav */
  /************************************/
  .fixed {
    padding-right: 0;
  }

  .menu-trigger {
    top: 20px;
    right: 15px;
  }

  .main_nav {
    width: 70%;
    padding: 80px 0 0 40px;
    transform: translate(100%);
  }

  .main_nav.open {
    transform: translateZ(0);
  }

  .main_nav li a {
    font-size: 1.7rem;
  }

  /************************************/
  /* Base LayOut */
  /************************************/
  .main_width {
    width: 90%;
  }

  .column_2_list {
    width: 90%;
    margin: auto;
    display: block;
  }

  .column_2_list li {
    width: 100%;
    margin: 0 0 30px 0;
  }

  .column_2_list li .img {
    width: 100%;
    float: none;
    margin: 0 0 10px 0;
  }

  .column_2_list li .info {
    width: 100%;
    float: none;
  }

  .column_2_list li h3 {
    padding-bottom: 0.5em;
    font-size: 1.6rem;
  }

  .column_2_list li .date {
    position: static;
  }

  /************************************/
  /* Main Visual */
  /************************************/
  .main_visual {
    position: relative;
    width: 100%;
  }

  .main_visual .main_width {
    display: block;
    width: 60%;
    margin: auto;
    padding: 10vh 0 0;
    box-sizing: border-box;
    min-width: auto;
  }

  .main_visual .left {
    width: 90%;
    float: none;
    text-align: center;
    margin: 0 auto 5vh;
  }

  .main_visual .right {
    width: 80%;
    float: none;
    margin: auto;
  }

  .main_visual .left .read_more {
    margin: 10px auto 0;
    max-width: 150px;
  }

  .main_visual .scroll_btn {
    margin: 25px auto;
    text-align: center;
  }

  .main_visual .scroll_btn img {
    max-width: 40px;
  }

  .about_main_ttl {
    width: 100%;
    height: 200px;
    padding: 0px;
    box-sizing: border-box;
  }

  /************************************/
  /* Top Topics */
  /************************************/
  .topics_list {
    padding: 30px 0;
  }

  .topics_list h2 {
    top: auto;
  }

  .topics_list .more_btn {
    max-width: 150px;
  }

  /************************************/
  /* Footer */
  /************************************/
  .copyright {
    left: 3px;
    right: auto;
    bottom: 10px;
    font-size: 0.9rem;
  }

  /************************************/
  /* Page Top */
  /************************************/
  .page_top.sp_only {
    position: relative;
    padding: 3px 0 8px;
    background-color: #707070;
    text-align: center;
  }

  .page_top.sp_only img {
    width: 25px;
    height: 14px;
  }

  /*=============================================*/
  /*   03.content(Page)                          */
  /*=============================================*/
  /************************************/
  /* Page base */
  /************************************/
  .page_box {
    padding-top: 80px;
  }

  .page_box .column_2_list li {
    margin-bottom: 35px;
  }

  .post_box {
    margin-top: 20px;
  }

  .main_width_mini {
    width: 90%;
  }

  /************************************/
  /* Archives */
  /************************************/
  .post_bottom {
    width: 90%;
    margin: auto;
    padding: 20px 0;
  }

  .post_bottom .category_list {
    width: 100%;
    float: none;
  }

  .post_bottom .category_list b {
    margin-right: 1em;
    font-size: 1.2rem;
  }

  .post_bottom .category_list ul li {
    display: inline-block;
    font-size: 1.2rem;
    margin-right: 1.5em;
  }

  .post_bottom .category_list ul li a {
    font-size: 1em;
    text-decoration: underline;
  }

  .post_bottom .paging_box {
    width: 100%;
    float: none;
    margin-bottom: 30px;
    text-align: center;
  }

  .post_bottom .paging_box ul li {
    display: inline-block;
    font-size: 1.2rem;
  }

  /************************************/
  /* Post Single */
  /************************************/
  .post_box .post_ttl {
    font-size: 1.8rem;
  }

  .post_box .post_info {
    margin-bottom: 30px;
    padding-bottom: 10px;
  }

  .post_box .post_info .date {
    float: none;
    margin-bottom: 1em;
  }

  .post_box .post_info .sns_list {
    width: 100%;
    float: none;
  }

  .post_box .post_info .sns_list li {
    display: inline-block;
    width: 33.333%;
    text-align: center;
  }

  .post_box .post_info .sns_list li a {
    padding: 0.6em 0.5em 0.8em;
  }

  /************************************/
  /* The Content */
  /************************************/
  .the_content {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .the_content h2 {
    font-size: 1.6rem;
  }

  .the_content p {
    font-size: 1.4rem;
  }

  .the_content .alignright {
    max-width: 50%;
  }

  .the_content .alignleft {
    max-width: 50%;
  }

  .the_content img {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  /************************************/
  /* Single Bottom */
  /************************************/
  .post_box .post_bottom .paging_box {
    width: 80%;
    margin: 0 auto 30px;
  }

  .post_box .post_bottom .category_list {
    width: 100%;
  }

  .post_box .post_bottom .post_select {
    position: static;
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }


  /********************************/
  /* Contact     */
  /********************************/
  .contact_main_content table {
    margin-bottom: 30px;
  }
    .contact_main_content p {
        margin-bottom: 1em;
        font-size: 1.3rem;
        line-height: 1.7;
    }
    .contact_main_content p .red_word {
        display: block;
        margin-top: 1em;
        font-size: 1em;
    }
    .contact_main_content table tr th {
        text-align: left;
        font-size: 18px;
        padding: 0.8em 0 0;
    }
    .contact_main_content table tr td {
        padding-top: 0.3em;
    }
    .contact_main_content table tr td,
    .contact_main_content table tr th {
        font-size: 1.3rem;
        display:block;
        float:left;
        clear:both;
        width: 100%;
     }

  .contact_main_content table tr td input[type=text],
  .contact_main_content table tr td input[type=email] {
    width: 100%;
    padding: 0.7em 0.5em;
    font-size: 1.3rem;
    border: 1px solid white;
    background-color: white;
    box-sizing: border-box;
  }

    .contact_main_content table .contact_textarea {
        vertical-align: top;
    }

    .contact_main_content table tr td textarea {
        height: 10em;
        border: 1px solid white;
        background-color: white;
        resize: none;
        padding: 0.7em 0.5em;
        font-size: 1.3rem;
        box-sizing: border-box;
    }

  .button_area {
      width: 100%;
      text-align: center;
      margin-bottom: 30px;
  }

  .button_area input {
      min-width: 250px;
      padding: 0.4em 1em;
      background-color: rgb(25, 160, 240);
      color: white;
      font-size: 1.7rem;
  }

 .contact_main_content table tr .radio_check {
      padding-top: 0.8em
  }
  .radio_check label span {
        font-size: 1.3rem;
  }

  .contact_main_content .center,
  .contact_main_content .center a {
      font-size: 1.3rem;
  }

  /********************************/
  /* Contact     */
  /********************************/
  .about_main_content p {
      font-size: 1.4rem;
  }
    .about_main_ttl h2 {
        font-size: 2.0rem;
    }
    .main_content p {
        font-size: 1.4rem;
    }

}
