@charset "UTF-8";
/* iOSでのデフォルトスタイルをリセット */
input[type=text],
input[type=submit],
input[type=button],
input[type=email],
input[type=tel] {
  font-size: 16px;
  border: 1px solid #ccc;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input[type=submit],
input[type=button],
input[type=email],
input[type=tel],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=email]::-webkit-search-decoration,
input[type=tel]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus,
input[type=email]::focus,
input[type=tel]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

input[type=radio],
input[type=checkbox] {
  border-radius: 0;
  border: none;
  box-sizing: border-box;
  vertical-align: -2px;
}

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

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

pre {
  white-space: pre;
}

h1 {
  margin: 0;
}

h2 {
  margin: 0;
}

h3 {
  margin: 0;
}

h4 {
  margin: 0;
}

ol, ul, dl {
  margin: 0;
}

.pc {
  display: inline-block;
}

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

@media (max-width: 767px) {
  .sp {
    display: inline-block;
  }
}
.tC {
  text-align: center;
}

.tR {
  text-align: right;
}

.tL {
  text-align: left;
}

.red {
  color: #ed1c24;
}

.center {
  text-align: center;
}

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

.zdo_drawer_menu {
  display: none;
}

@media (max-width: 767px) {
  .zdo_drawer_menu {
    display: block;
  }
}
body {
  font-family: "M PLUS 1p", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  -webkit-font-smoothing: subpixel-antialiased;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body {
    font-size: 1.231vw;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
span, applet, object, embed, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, label, legend, caption, th, td {
  transform: rotate(0.03deg);
}

a {
  color: #000;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
  color: #999;
}

p {
  color: #000;
  line-height: 2.3;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none !important;
  }
}
@media (max-width: 767px) {
  a[href^="tel:"] {
    text-decoration: underline !important;
  }
}
.link {
  text-decoration: underline;
}
.link:hover {
  text-decoration: none;
}

.illust {
  position: absolute;
}

.mt100 {
  margin-top: 100px;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .mt100 {
    margin-top: 9.091vw;
  }
}
@media (max-width: 767px) {
  .mt100 {
    margin-top: 50px;
  }
}

.coming {
  text-align: center;
  font-size: 140%;
  font-weight: bold;
}

/********************************************
* Common
********************************************/
/* PC header
********************************************/
.header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 35px 0 15px;
  border-bottom: 1px solid #ffdc3c;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.2s;
}
.header .header_inner {
  max-width: 1100px;
}
.header .gnav {
  display: block;
  text-align: left;
  width: 100%;
  margin: auto;
}
.header .main {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transition: all 0.2s;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .header {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    padding: 3.182vw 0 1.364vw;
    border-bottom: 1px solid #ffdc3c;
    background-color: #fff;
    box-sizing: border-box;
    transition: all 0.2s;
  }
  .header .header_inner {
    max-width: 100vw;
  }
  .header .gnav {
    display: block;
    text-align: left;
    width: 100%;
    margin: auto;
  }
  .header .main {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transition: all 0.2s;
  }
}
.main .left {
  margin-right: 30px;
}
.main .left .logo h1 {
  line-height: 1;
  margin-top: 6px;
}
.main .left .logo h1 a {
  font-size: 28px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .main .left {
    margin-right: 2.727vw;
  }
  .main .left .logo h1 {
    line-height: 1;
    margin-top: 0.545vw;
  }
  .main .left .logo h1 a {
    font-size: 2.545vw;
  }
}
.main .right .header_tel {
  margin: 0;
}
.main .right .header_tel a {
  min-width: initial;
  height: 40px;
  line-height: 37px;
  width: 240px;
  font-size: 24px;
}
.main .right .header_tel a span img {
  width: 22px;
  height: 22px;
  vertical-align: -2px;
}
.main .right .header_tel a:after {
  content: none;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .main .right .header_tel {
    margin: 0;
  }
  .main .right .header_tel a {
    min-width: initial;
    height: 3.636vw;
    line-height: 3.364vw;
    width: 21.818vw;
    font-size: 2.182vw;
  }
  .main .right .header_tel a span img {
    width: 2vw;
    height: 2vw;
    vertical-align: -0.182vw;
  }
  .main .right .header_tel a:after {
    content: none;
  }
}
.gnav {
  flex: 1;
  display: block;
  padding-top: 41px;
}
.gnav ul {
  position: relative;
  display: flex;
  justify-content: center;
}
.gnav ul > li {
  border-right: 2px solid #000;
}
.gnav ul > li:last-child {
  border-right: none;
}
.gnav ul > li.fair a {
  color: #ed1c24;
}
.gnav ul > li a {
  position: relative;
  display: block;
  font-size: 18px;
  color: #000;
  line-height: 1;
  padding: 0 25px;
}
.gnav ul > li a.current:after {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  right: 0;
  background-color: #ffdc3c;
  height: 4px;
  width: calc(100% - 42px);
  padding: 0 2px;
  margin: 0 auto;
  border-radius: 2px;
  z-index: -1;
}
.gnav ul > li:hover a {
  color: #999;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .gnav {
    flex: 1;
    display: block;
    padding-top: 3.727vw;
  }
  .gnav ul {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .gnav ul > li {
    border-right: 2px solid #000;
  }
  .gnav ul > li:last-child {
    border-right: none;
  }
  .gnav ul > li a {
    display: block;
    font-size: 1.636vw;
    color: #000;
    line-height: 1;
    padding: 0 2.273vw;
  }
  .gnav ul > li a.current:after {
    top: 1.909vw;
    height: 0.364vw;
    width: calc(100% - 3.818vw);
    padding: 0 0.182vw;
    border-radius: 0.182vw;
  }
  .gnav ul > li:hover a {
    color: #999;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 17px 0 16px;
  }
  .header .main .left {
    width: 100%;
    margin: 0 50px 0 0;
  }
  .header .main .left .logo h1 {
    margin-top: 0;
  }
  .header .main .left .logo h1 a {
    font-size: 16px;
  }
  .header .main .right {
    display: none;
  }
  .header .gnav {
    display: none;
  }
}
/* drawer_menu
********************************************/
@media (max-width: 767px) {
  .zdo_drawer_menu .zdo_drawer_button {
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    z-index: 1040;
    position: fixed;
    transition: all 0.2s;
  }
  .zdo_drawer_menu .zdo_drawer_button .zdo_drawer_bar {
    background-color: #000;
    height: 2px;
    width: 30px;
    margin: 6px auto;
    transition: all 0.2s;
    border-radius: 1px;
  }
  .zdo_drawer_menu .zdo_drawer_button.active .zdo_drawer_bar {
    background-color: #000;
    width: 30px;
    margin: 10px 0;
  }
  .zdo_drawer_menu .zdo_drawer_button.active .zdo_drawer_bar1 {
    transform: rotate(45deg);
    position: absolute;
    top: 3px;
    left: 15px;
    transition: all 0.2s;
  }
  .zdo_drawer_menu .zdo_drawer_button.active .zdo_drawer_bar3 {
    transform: rotate(-45deg);
    position: absolute;
    top: 24px;
    left: 13px;
    transition: all 0.2s;
  }
  .zdo_drawer_menu .zdo_drawer_nav_wrapper {
    background-color: #ffdc3c;
  }
  .zdo_drawer_menu .zdo_drawer_nav_wrapper .zdo_drawer_nav {
    width: 90vw;
    padding: 50px 0;
    margin: 0 auto;
  }
  .zdo_drawer_menu .zdo_drawer_nav_wrapper .zdo_drawer_nav li {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  .zdo_drawer_menu .zdo_drawer_nav_wrapper .zdo_drawer_nav li.fair a {
    color: #ed1c24;
  }
  .zdo_drawer_menu .zdo_drawer_nav_wrapper .zdo_drawer_nav li a {
    position: relative;
    text-align: center;
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    text-decoration: none !important;
    padding: 15px 0;
  }
  .zdo_drawer_menu .zdo_drawer_nav_wrapper .zdo_drawer_nav li a.current:after {
    position: absolute;
    content: "";
    top: 42px;
    left: -2px;
    right: 0;
    width: 100%;
    height: 4px;
    padding: 0 4px;
    border-radius: 2px;
    background-color: #fff;
  }
  .zdo_drawer_menu .zdo_drawer_nav_wrapper .zdo_drawer_nav li.gnav_mail {
    margin: 30px 0 0;
    height: auto;
  }
  .zdo_drawer_menu .zdo_drawer_nav_wrapper .zdo_drawer_nav li.gnav_mail a {
    height: 50px;
    line-height: 50px;
    width: 275px;
    padding: 0;
    background: #fff;
    box-shadow: none;
    margin: 0 auto;
  }
  .zdo_drawer_menu .zdo_drawer_nav_wrapper .zdo_drawer_nav li.gnav_mail .icon_mail {
    margin-right: 5px;
  }
  .zdo_drawer_menu .zdo_drawer_nav_wrapper .zdo_drawer_nav li.gnav_mail .icon_mail img {
    height: 20px;
    width: auto;
    vertical-align: -3px;
  }
  .zdo_drawer_menu .zdo_drawer_nav_wrapper .zdo_drawer_nav li.gnav_tel a {
    line-height: 1;
    padding-top: 15px;
  }
  .zdo_drawer_menu .zdo_drawer_nav_wrapper .zdo_drawer_nav li.gnav_tel .icon_tel {
    margin-right: 5px;
  }
  .zdo_drawer_menu .zdo_drawer_nav_wrapper .zdo_drawer_nav li.gnav_tel .icon_tel img {
    height: 18px;
    width: 18px;
  }
}
/* footer
********************************************/
.footer {
  border-top: 1px solid #ffdc3c;
}
.footer .sec_inner {
  max-width: 1100px;
}
.footer .footer_content {
  display: flex;
  justify-content: space-between;
  padding: 45px 0 40px;
}
.footer .left .logo {
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1;
}
.footer .left .txt {
  line-height: 1.375;
}
.footer .right .more_btn {
  margin: 0 0 15px;
}
.footer .right .more_btn .icon_mail {
  margin-right: 8px;
}
.footer .right .more_btn .icon_mail img {
  width: 18px;
  height: 12px;
  vertical-align: 0;
}
.footer .right .footer_nav li {
  display: inline;
  margin-left: 5px;
}
.footer .copy {
  text-align: center;
  padding: 15px 0;
  background-color: #ffdc3c;
}
.footer .copy p {
  font-size: 14px;
  line-height: 1;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .footer .sec_inner {
    max-width: 100vw;
  }
  .footer .footer_content {
    padding: 4.091vw 0 3.636vw;
  }
  .footer .left .logo {
    font-size: 2.182vw;
    margin-bottom: 1.818vw;
  }
  .footer .left .txt {
    line-height: 1.375;
  }
  .footer .right .more_btn {
    margin: 0 0 1.364vw;
  }
  .footer .right .more_btn .icon_mail {
    margin-right: 0.727vw;
  }
  .footer .right .more_btn .icon_mail img {
    width: 1.636vw;
    height: 1.091vw;
    vertical-align: 0;
  }
  .footer .right .footer_nav li {
    margin-left: 0.455vw;
  }
  .footer .copy {
    text-align: center;
    padding: 1.364vw 0;
    background-color: #ffdc3c;
  }
  .footer .copy p {
    font-size: 1.273vw;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .footer .footer_content {
    display: block;
    padding: 24px 0 10px;
  }
  .footer .left {
    text-align: center;
    margin-bottom: 20px;
  }
  .footer .left .logo {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .footer .right .more_btn {
    margin: 0 0 20px;
  }
  .footer .right .more_btn .icon_mail {
    margin-right: 8px;
  }
  .footer .right .more_btn .icon_mail img {
    width: auto;
    height: 20px;
    vertical-align: -5px;
  }
  .footer .right .footer_nav {
    text-align: center;
  }
  .footer .right .footer_nav li {
    display: inline;
    margin: 0 3px;
  }
  .footer .copy {
    padding: 7px 0;
  }
  .footer .copy p {
    font-size: 12px;
  }
}
/* Wrap
********************************************/
main.main {
  margin-top: 150px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  main.main {
    margin-top: 13.636vw;
  }
}
@media (max-width: 767px) {
  main.main {
    margin-top: 50px;
  }
}
.sec_inner {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .sec_inner {
    padding-left: 3.846vw;
    padding-right: 3.846vw;
  }
}
@media (max-width: 767px) {
  .sec_inner {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.col2 {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .col2 {
    display: block;
  }
}
/* Table
********************************************/
.table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.table th {
  vertical-align: middle;
  width: 240px;
  font-size: 16px;
  padding: 10px 30px;
  border-bottom: 20px solid #fff;
  background-color: #f1f1f1;
}
.table td {
  font-size: 16px;
  padding: 10px 30px 10px 0;
  border-bottom: 20px solid #fff;
  vertical-align: middle;
  background-color: #f1f1f1;
}
.table tr:last-child th,
.table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 767px) {
  .table th {
    display: block;
    width: 100%;
    font-size: 12px;
    text-align: center;
    padding: 20px 0 5px;
    border: none;
    background-color: transparent;
  }
  .table td {
    display: block;
    width: 100%;
    font-size: 12px;
    text-align: center;
    padding: 8px 0;
    border: none;
  }
  .table tr:first-child th {
    padding-top: 0;
  }
}
/* list qa
********************************************/
.qa__list li {
  margin-bottom: 40px;
  border-radius: 10px;
}
.qa__list li:last-child {
  margin-bottom: 0;
}
.qa__list li dt {
  position: relative;
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
  cursor: pointer;
}
.qa__list li dt span.ttl {
  font-size: 36px;
  font-weight: bold;
  margin-right: 20px;
}
.qa__list li dt span.content {
  font-size: 24px;
  font-weight: bold;
}
.qa__list li dt:after {
  background: url(images/common/icon_qa001.svg) no-repeat center;
  position: absolute;
  top: 0;
  bottom: 30px;
  right: 40px;
  margin: auto;
  background-size: 22px;
  content: "";
  width: 22px;
  height: 22px;
  transition: all 0.2s;
}
.qa__list li dt.open {
  border-radius: 10px 10px 0 0;
}
.qa__list li dt.open:after {
  background: url(images/common/icon_qa002.svg) no-repeat center;
}
.qa__list li dd {
  display: none;
  position: relative;
  padding: 25px 0 60px 80px;
}
.qa__list li dd span.ttl {
  font-size: 36px;
  font-weight: bold;
  margin-right: 20px;
  color: #1143B4;
}
.qa__list li dd span.content {
  font-size: 24px;
  font-weight: bold;
  color: #1143B4;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .qa__list li {
    margin-bottom: 3.077vw;
    border-radius: 0.769vw;
  }
  .qa__list li:last-child {
    margin-bottom: 0;
  }
  .qa__list li dt {
    padding-bottom: 2.308vw;
  }
  .qa__list li dt span.ttl {
    font-size: 2.769vw;
    margin-right: 1.538vw;
  }
  .qa__list li dt span.content {
    flex: 1;
    font-size: 1.846vw;
  }
  .qa__list li dt:after {
    bottom: 2.308vw;
    right: 3.077vw;
    background-size: 1.692vw;
    width: 1.692vw;
    height: 1.692vw;
  }
  .qa__list li dt.open {
    border-radius: 0.769vw 0.769vw 0 0;
  }
  .qa__list li dd {
    padding: 1.923vw 0 4.615vw 6.154vw;
  }
  .qa__list li dd span.ttl {
    font-size: 2.769vw;
    margin-right: 1.538vw;
  }
  .qa__list li dd span.content {
    font-size: 1.846vw;
  }
}
@media (max-width: 767px) {
  .qa__list {
    width: 100%;
  }
  .qa__list li {
    margin-bottom: 0;
  }
  .qa__list li dt {
    display: flex;
    justify-content: flex-start;
    padding: 25px 15.9999% 25px 0;
  }
  .qa__list li dt span.ttl {
    line-height: 1;
    width: 20px;
    font-size: 18px;
    margin-right: 10px;
  }
  .qa__list li dt span.content {
    font-size: 14px;
  }
  .qa__list li dt:after {
    top: 30px;
    right: 5.3333%;
    background-size: 16px;
    width: 16px;
    height: 16px;
  }
  .qa__list li dd {
    padding: 25px 0 25px 5.3333%;
  }
  .qa__list li dd .dd_inner {
    display: flex;
    justify-content: flex-start;
  }
  .qa__list li dd span.ttl {
    line-height: 1;
    width: 20px;
    font-size: 18px;
    margin-right: 10px;
  }
  .qa__list li dd span.content {
    flex: 1;
    font-size: 14px;
  }
}
/* btn
********************************************/
.more_btn {
  text-align: center;
  margin: 35px auto 0;
}
.more_btn a {
  text-align: center;
  position: relative;
  display: inline-block;
  min-width: 300px;
  height: 50px;
  line-height: 47px;
  font-size: 16px;
  font-weight: bold;
  background: #ffdc3c;
  border-radius: 25px;
  border: 2px solid #000;
  box-shadow: 0px 3px 0px 0px #000;
}
.more_btn a span {
  margin-right: 5px;
}
.more_btn a span img {
  max-height: 22px;
  vertical-align: -5px;
}
.more_btn a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  transition: 0.2s;
}
.more_btn a:hover {
  color: #fff;
  background-color: #f15a24;
}
.more_btn a:hover:after {
  right: 16px;
  border-color: transparent transparent transparent #fff;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .more_btn {
    text-align: center;
    margin: 2.917vw auto 0;
  }
  .more_btn a {
    text-align: center;
    position: relative;
    display: inline-block;
    min-width: 25vw;
    height: 4.167vw;
    line-height: 3.917vw;
    font-size: 1.333vw;
    font-weight: bold;
    background: #ffdc3c;
    border-radius: 2.083vw;
    border: 2px solid #000;
    box-shadow: 0px 0.25vw 0px 0px #000;
  }
  .more_btn a span {
    margin-right: 0.417vw;
  }
  .more_btn a span img {
    max-height: 1.833vw;
    vertical-align: -0.417vw;
  }
  .more_btn a:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.417vw 0 0.417vw 0.5vw;
    border-color: transparent transparent transparent #000;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 1.667vw;
    transition: 0.2s;
  }
  .more_btn a:hover {
    color: #fff;
    background-color: #f15a24;
  }
  .more_btn a:hover:after {
    right: 1.333vw;
    border-color: transparent transparent transparent #fff;
  }
}
@media (max-width: 767px) {
  .more_btn {
    margin-top: 25px;
  }
  .more_btn a {
    height: 35px;
    line-height: 33px;
    min-width: 75%;
    max-width: 300px;
    font-size: 13px;
    border-radius: 17.5;
    border: 1px solid #000;
    box-shadow: 0px 1.5px 0px 0px #000;
  }
  .more_btn a:after {
    border-width: 4px 0 4px 5px;
    right: 14px;
  }
  .more_btn a:hover:after {
    right: 11px;
  }
}
/* page_top
********************************************/
.page_top {
  display: none;
  position: fixed;
  height: 80px;
  width: 80px;
  z-index: 500;
  bottom: 40px;
  right: 40px;
}
.page_top a {
  background-color: #ffdc3c;
  border-radius: 100%;
  display: block;
  height: 80px;
  left: 0;
  opacity: 1;
  overflow: hidden;
  position: absolute;
  top: 0px;
  width: 80px;
  transition: all 0.2s;
}
.page_top a img {
  height: 19px;
  margin: 30px 22.5px;
  width: 35px;
  transition: transform 0.2s ease;
}
.page_top a:hover {
  transform: translateY(-3px);
  background-color: #ffdc3c;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .page_top {
    height: 7.273vw;
    width: 7.273vw;
    bottom: 3.636vw;
    right: 3.636vw;
  }
  .page_top a {
    height: 7.273vw;
    width: 7.273vw;
  }
  .page_top a img {
    height: 1.727vw;
    margin: 2.727vw 2.045vw;
    width: 3.182vw;
  }
}
@media (max-width: 767px) {
  .page_top {
    height: 60px;
    width: 60px;
    bottom: 20px;
    right: 20px;
  }
  .page_top a {
    height: 60px;
    width: 60px;
  }
  .page_top a img {
    height: 19px;
    margin: 20px 12.5px;
    width: 35px;
  }
}
/* contact_btn
********************************************/
.contact_btn {
  position: fixed;
  height: 120px;
  width: 120px;
  z-index: 500;
  top: 200px;
  right: 0;
}
.contact_btn a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  background-color: #ffdc3c;
  border-radius: 9px 0 0 9px;
  height: 120px;
  left: 0;
  width: 120px;
  opacity: 1;
  overflow: hidden;
  position: absolute;
  top: 0px;
  border: 2px solid #000;
  border-right: none;
  transition: all 0.2s;
}
.contact_btn a .icon_mail {
  display: block;
  margin-bottom: 12px;
}
.contact_btn a .icon_mail img {
  width: 50px;
  height: 34px;
}
.contact_btn a:hover {
  color: #000;
  background-color: #f15a24;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .contact_btn {
    height: 10.909vw;
    width: 10.909vw;
    top: 18.182vw;
    right: 0;
  }
  .contact_btn a {
    border-radius: 0.818vw 0 0 0.818vw;
    height: 10.909vw;
    left: 0;
    width: 10.909vw;
  }
  .contact_btn a .icon_mail {
    margin-bottom: 1.091vw;
  }
  .contact_btn a .icon_mail img {
    width: 4.545vw;
    height: 3.091vw;
  }
}
@media (max-width: 767px) {
  .contact_btn {
    display: none;
  }
}
/* bread
********************************************/
.content_bread {
  padding: 15px 0;
  background-color: #F2E1CD;
}
.content_bread .sec_inner {
  max-width: 1300px;
  line-height: 1.4;
}
.content_bread .sec_inner span,
.content_bread .sec_inner a {
  font-size: 14px;
}

@media (max-width: 767px) {
  .content_bread {
    padding: 10px 0;
  }
  .content_bread .sec_inner {
    width: initial;
  }
  .content_bread .sec_inner span,
  .content_bread .sec_inner a {
    font-size: 12px;
  }
}
/********************************************
* pager
********************************************/
.pager {
  width: 100%;
}
.pager ul {
  text-align: center;
  margin-top: 50px;
}
.pager ul li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  width: 36px;
  height: 36px;
  margin: 0 5px;
  border: 1px solid #000;
  border-radius: 3px;
  transition: all 0.2s;
}
.pager ul li a {
  display: block;
  padding: 9px 0;
  transition: all 0.2s;
}
.pager ul li.next a, .pager ul li.prev a {
  font-weight: normal;
}
.pager ul li.active {
  background: #ffdc3c !important;
  border: 1px solid #ffdc3c !important;
  padding: 9px 0;
}
.pager ul li:hover {
  cursor: pointer;
  background: #000;
  border: 1px solid #000;
}
.pager ul li:hover a {
  color: #fff;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .pager {
    width: 100%;
  }
  .pager ul {
    text-align: center;
    margin-top: 4.545vw;
  }
  .pager ul li {
    position: relative;
    display: inline-block;
    font-size: 1.455vw;
    line-height: 1;
    width: 3.273vw;
    height: 3.273vw;
    margin: 0 0.455vw;
    border: 1px solid #000;
    transition: all 0.2s;
  }
  .pager ul li a {
    display: block;
    padding: 0.818vw 0;
    transition: all 0.2s;
  }
  .pager ul li.next a, .pager ul li.prev a {
    font-weight: normal;
  }
  .pager ul li.active {
    color: #fff;
    background: #000;
    border: 1px solid #000;
    padding: 0.818vw 0;
  }
  .pager ul li:hover {
    background: #a27e39;
    border: 1px solid #a27e39;
  }
  .pager ul li:hover a {
    color: #fff;
  }
}
@media (max-width: 767px) {
  .pager {
    width: 100%;
  }
  .pager ul {
    margin-top: 30px;
  }
  .pager ul li {
    font-size: 13px;
  }
  .pager ul li a {
    padding: 11px 0;
  }
  .pager ul li.active {
    padding: 11px 0;
  }
}
/********************************************
* paging
********************************************/
.paging {
  text-align: center;
  margin: 80px 0 0;
}
.paging .next {
  float: left;
}
.paging .prev {
  float: right;
}
.paging .next a,
.paging .prev a {
  display: block;
  color: #000;
  line-height: 1;
  padding: 12px 0;
}

@media (max-width: 767px) {
  .paging {
    margin: 60px 0 50px;
  }
  .paging .next,
  .paging .prev {
    margin-bottom: 20px;
  }
  .paging .next a,
  .paging .prev a {
    padding: 0;
  }
  .paging .paging_btn a {
    width: 100%;
    min-width: initial;
  }
}
/* ttl
********************************************/
.ttl_h2 {
  display: inline-block;
  margin-bottom: 40px;
}
.ttl_h2 .border {
  position: relative;
  display: inline-block;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.9;
}
.ttl_h2 .border:after {
  content: "";
  position: absolute;
  top: 30px;
  left: -10px;
  background-color: #ffdc3c;
  height: 12px;
  padding: 0 10px;
  width: 100%;
  border-radius: 6px;
  z-index: -1;
}

.ttl_h2_pc {
  display: inline-block;
}

.ttl_h2_sp {
  display: none;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .ttl_h2 {
    margin-bottom: 3.636vw;
  }
  .ttl_h2 .border {
    font-size: 2.364vw;
  }
  .ttl_h2 .border:after {
    top: 2.727vw;
    left: -0.909vw;
    height: 1.091vw;
    padding: 0 0.909vw;
    border-radius: 0.545vw;
  }
}
@media (max-width: 767px) {
  .ttl_h2_pc {
    display: none;
  }
  .ttl_h2_sp {
    display: inline-block;
  }
  .ttl_h2 {
    margin-bottom: 20px;
  }
  .ttl_h2 .border {
    font-size: 18px;
  }
  .ttl_h2 .border:after {
    top: 21px;
    left: -5px;
    height: 6px;
    padding: 0 5px;
    border-radius: 3px;
  }
}
.ttl_h3 {
  text-align: center;
  height: 50px;
  line-height: 48px;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  background-color: #25aaae;
  padding: 0 15px;
  border: 2px solid #000;
  border-radius: 25px;
  margin-bottom: 40px;
}
.ttl_h3.orange {
  background-color: #f15a24;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .ttl_h3 {
    height: 4.545vw;
    line-height: 4.364vw;
    font-size: 2.364vw;
    padding: 0 1.364vw;
    border-radius: 2.273vw;
    margin-bottom: 3.636vw;
  }
}
@media (max-width: 767px) {
  .ttl_h3 {
    height: auto;
    line-height: 1.6;
    font-size: 18px;
    padding: 6px 20px;
    border: 1px solid #000;
    border-radius: 100px;
    margin-bottom: 20px;
  }
}
/* txt
********************************************/
.large_txt {
  font-size: 18px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .large_txt {
    font-size: 1.5vw;
  }
}
@media (max-width: 767px) {
  .large_txt {
    font-size: 15px;
  }
}
/********************************************
* Top Page
********************************************/
/* top_main
********************************************/
.top_main {
  position: relative;
}
.top_main .main_catch_wrapper {
  height: 139px;
  width: 100%;
  position: absolute;
  bottom: 66px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
.top_main .main_catch {
  width: 1000px;
  margin: auto;
}
.top_main .main_catch img {
  width: 579px;
  height: 139px;
}
.top_main .top_slide {
  width: 1200px;
  margin: 0 auto;
}
.top_main .top_slide #slider {
  margin: 0;
  padding: 0;
  line-height: 0;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .top_main .main_catch_wrapper {
    height: 11.583vw;
    bottom: 5.5vw;
  }
  .top_main .main_catch {
    width: 83.333vw;
  }
  .top_main .main_catch img {
    width: 48.25vw;
    height: 11.583vw;
  }
  .top_main .top_slide {
    width: 100vw;
  }
}
@media (max-width: 767px) {
  .top_main .main_catch_wrapper {
    height: 69.5px;
    bottom: 10px;
  }
  .top_main .main_catch {
    width: 100%;
    margin: auto;
    padding: 0 5%;
  }
  .top_main .main_catch img {
    width: auto;
    height: 69.5px;
  }
  .top_main .top_slide {
    width: 100%;
    margin: 0 auto;
  }
}
/* top_about
********************************************/
.top_about {
  margin-top: 100px;
  margin-bottom: 95px;
}
.top_about .sec_inner {
  max-width: 1200px;
  padding: 0;
}
.top_about .top_about_block {
  justify-content: flex-end;
}
.top_about .top_about_block .info {
  width: 500px;
}
.top_about .top_about_block .img {
  position: relative;
  width: 560px;
  margin-left: 40px;
}
.top_about .top_about_block .more_btn {
  text-align: left;
}
.top_about .top_about_block .illust1 {
  left: -105px;
  bottom: -72px;
}
.top_about .top_about_block .illust1 img {
  width: 123px;
  height: 165px;
}
.top_about .top_about_block .illust2 {
  right: 31px;
  bottom: -195px;
}
.top_about .top_about_block .illust2 img {
  width: 247px;
  height: 281px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .top_about {
    margin-top: 8.333vw;
    margin-bottom: 7.917vw;
  }
  .top_about .sec_inner {
    max-width: 100vw;
    padding: 0;
  }
  .top_about .top_about_block {
    justify-content: flex-end;
  }
  .top_about .top_about_block .info {
    width: 41.667vw;
  }
  .top_about .top_about_block .img {
    position: relative;
    width: 46.667vw;
    margin-left: 3.333vw;
  }
  .top_about .top_about_block .more_btn {
    text-align: left;
  }
  .top_about .top_about_block .illust1 {
    left: -8.75vw;
    bottom: -6vw;
  }
  .top_about .top_about_block .illust1 img {
    width: 10.25vw;
    height: 13.75vw;
  }
  .top_about .top_about_block .illust2 {
    right: 2.583vw;
    bottom: -16.25vw;
  }
  .top_about .top_about_block .illust2 img {
    width: 20.583vw;
    height: 23.417vw;
  }
}
@media (max-width: 767px) {
  .top_about {
    margin-top: 50px;
    margin-bottom: 35px;
  }
  .top_about .sec_inner {
    padding: 0 5%;
  }
  .top_about .top_about_block .info {
    width: 100%;
    margin-bottom: 35px;
  }
  .top_about .top_about_block .img {
    width: 100%;
    margin-left: 0;
  }
  .top_about .top_about_block .ttl_h2 {
    text-align: center;
  }
  .top_about .top_about_block .more_btn {
    text-align: center;
  }
  .top_about .top_about_block .illust1 {
    left: -15px;
    bottom: -36px;
  }
  .top_about .top_about_block .illust1 img {
    width: auto;
    height: 82.5px;
  }
  .top_about .top_about_block .illust2 {
    right: -15px;
    bottom: -36px;
  }
  .top_about .top_about_block .illust2 img {
    width: auto;
    height: 140.5px;
  }
}
/* top_fukushifair
********************************************/
.top_fukushifair {
  padding-top: 95px;
  padding-bottom: 80px;
  background-color: #ffdc3c;
}
.top_fukushifair .sec_inner {
  max-width: 1100px;
}
.top_fukushifair .txt {
  text-align: center;
}
.top_fukushifair .illust1 {
  top: 0;
  left: -40px;
}
.top_fukushifair .illust1 img {
  width: 241px;
  height: 322px;
}
.top_fukushifair .illust2 {
  top: 96px;
  right: -40px;
}
.top_fukushifair .illust2 img {
  width: 233px;
  height: 221px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .top_fukushifair {
    padding-top: 8.636vw;
    padding-bottom: 7.273vw;
    background-color: #ffdc3c;
  }
  .top_fukushifair .sec_inner {
    max-width: 100vw;
  }
  .top_fukushifair .txt {
    text-align: center;
  }
  .top_fukushifair .illust1 {
    top: 0;
    left: -3.636vw;
  }
  .top_fukushifair .illust1 img {
    width: 21.909vw;
    height: 29.273vw;
  }
  .top_fukushifair .illust2 {
    top: 8.727vw;
    right: -3.636vw;
  }
  .top_fukushifair .illust2 img {
    width: 21.182vw;
    height: 20.091vw;
  }
}
@media (max-width: 767px) {
  .top_fukushifair {
    padding-top: 30px;
    padding-bottom: 130px;
  }
  .top_fukushifair .txt {
    text-align: left;
  }
  .top_fukushifair .illust1 {
    top: auto;
    bottom: -150px;
    left: 0;
  }
  .top_fukushifair .illust1 img {
    width: auto;
    height: 161px;
  }
  .top_fukushifair .illust2 {
    top: auto;
    bottom: -150px;
    right: 0;
  }
  .top_fukushifair .illust2 img {
    width: auto;
    height: 110.5px;
  }
}
.top_fukushifair .ttl_h2 .border {
  font-size: 36px;
  /*目立たせたい時 color: #ed1c24;*/
}
.top_fukushifair .ttl_h2 .border:after {
  top: 45px;
  background-color: #fff;
}
.top_fukushifair .more_btn a {
  /*目立たせたい時 color: #ed1c24;*/
  background-color: #fff;
}
.top_fukushifair .more_btn a:hover {
  color: #fff;
  background: #f15a24;
  /*目立たせたい時 background: #ed1c24;*/
}

@media (min-width: 768px) and (max-width: 1100px) {
  .top_fukushifair .ttl_h2 .border {
    font-size: 3.273vw;
  }
  .top_fukushifair .ttl_h2 .border:after {
    top: 4.091vw;
  }
}
@media (max-width: 767px) {
  .top_fukushifair .ttl_h2 .border {
    font-size: 24px;
  }
  .top_fukushifair .ttl_h2 .border:after {
    top: 32px;
  }
}
/* top_work
********************************************/
.top_work {
  padding: 80px 0 40px;
  background-image: url(images/index/work_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.top_work .sec_inner {
  max-width: 1200px;
}
.top_work .ttl_h2 {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .top_work {
    padding: 6.667vw 0 3.333vw;
  }
  .top_work .ttl_h2 {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .top_work {
    padding: 40px 0 30px;
    background-image: url(images/index/sp/sp_work_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .top_work .sec_inner {
    max-width: 1200px;
  }
  .top_work .ttl_h2 {
    margin-bottom: 0;
  }
}
/* top_banner
********************************************/
/* top_news
********************************************/
.top_news {
  padding: 30px 0 70px;
  background-color: #fffbe2;
}
.top_news .sec_inner {
  max-width: 1100px;
}
.top_news .banner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.top_news .banner {
  max-width: 500px;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 500/186;
}
.top_news .top_news_block .top_news_block_left {
  width: 890px;
  align-items: center;
  background-color: #fff;
  padding: 20px 30px;
  border: 2px solid #000;
  border-radius: 10px;
}
.top_news .top_news_block .top_news_block_right {
  width: 100px;
}
.top_news .top_news_block .top_news_block_right .top_news_more_btn {
  height: 100%;
}
.top_news .top_news_block .top_news_block_right a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-radius: 10px;
  border: 2px solid #000;
  padding: 20px;
  background-color: #ffdc3c;
}
.top_news .top_news_block .top_news_block_right a:hover {
  background-color: #f15a24;
}
.top_news .top_news_block .top_news_block_right a:hover span {
  color: #fff;
}
.top_news .top_news_ttl_wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  width: 130px;
  border-right: 1px dashed #000;
  margin-right: 30px;
}
.top_news .top_news_ttl {
  font-size: 24px;
}
.top_news .top_news_more_btn {
  font-size: 18px;
}
.top_news .top_news_list {
  margin: 20px 0;
  flex: 1;
}
.top_news .top_news_list .item {
  margin-bottom: 15px;
}
.top_news .top_news_list .item a {
  display: flex;
  justify-content: flex-start;
}
.top_news .top_news_list .item a .date_wrap {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 10px;
}
.top_news .top_news_list .item a .date {
  line-height: 1.6;
  margin-right: 10px;
  transition: 0.2s;
}
.top_news .top_news_list .item a .category {
  min-width: 75px;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  height: 24px;
  padding: 6px 6px 4px;
  border-radius: 3px;
  background-color: #ffdc3c;
  transition: 0.2s;
}
.top_news .top_news_list .item a .ttl {
  width: 480px;
  line-height: 1.6;
}
.top_news .top_news_list .item a:hover {
  opacity: 0.7;
}
.top_news .top_news_list .item:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .top_news {
    padding: 6.364vw 0;
    background-color: #fffbe2;
  }
  .top_news .sec_inner {
    max-width: 100vw;
  }
  .top_news .banner {
    max-width: 45.455vw;
  }
  .top_news .top_news_block .top_news_block_left {
    width: 80.909vw;
    padding: 1.818vw 2.727vw;
  }
  .top_news .top_news_block .top_news_block_right {
    width: 9.091vw;
    border-radius: 0.909vw;
  }
  .top_news .top_news_block .top_news_block_right a {
    padding: 1.818vw;
    border-radius: 0.909vw;
  }
  .top_news .top_news_ttl_wrapper {
    height: 100%;
    width: 11.818vw;
    margin-right: 2.727vw;
  }
  .top_news .top_news_ttl {
    font-size: 2.182vw;
  }
  .top_news .top_news_more_btn {
    font-size: 1.636vw;
  }
  .top_news .top_news_list {
    margin: 1.818vw 0;
    flex: 1;
  }
  .top_news .top_news_list .item {
    margin-bottom: 1.364vw;
  }
  .top_news .top_news_list .item a .date_wrap {
    margin-right: 0.909vw;
  }
  .top_news .top_news_list .item a .date {
    margin-right: 0.909vw;
  }
  .top_news .top_news_list .item a .category {
    min-width: 6.818vw;
    font-size: 1.091vw;
    height: 2.182vw;
    padding: 0.545vw 0.545vw 0.364vw;
    border-radius: 0.273vw;
  }
  .top_news .top_news_list .item a .ttl {
    width: 43.636vw;
  }
  .top_news .top_news_list .item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .top_news {
    padding: 40px 0;
  }
  .top_news .banner-container {
    margin-bottom: 20px;
  }
  .top_news .banner {
    max-width: 37.5rem;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 600/272;
  }
  .top_news .top_news_block .top_news_block_left {
    width: 100%;
    padding: 20px 5%;
    border: 1px solid #000;
    border-radius: 5px;
    margin-bottom: 5px;
  }
  .top_news .top_news_block .top_news_block_right {
    width: 100%;
    border-radius: 5px;
    border: none;
  }
  .top_news .top_news_block .top_news_block_right .top_news_more_btn {
    height: 100%;
  }
  .top_news .top_news_block .top_news_block_right a {
    text-align: center;
    display: block;
    height: 100%;
    padding: 5px;
  }
  .top_news .top_news_ttl_wrapper {
    text-align: center;
    display: block;
    height: auto;
    width: 100%;
    padding-bottom: 5px;
    border-right: none;
    border-bottom: 1px dashed #000;
    margin-right: 0;
  }
  .top_news .top_news_ttl {
    font-size: 17px;
  }
  .top_news .top_news_more_btn {
    font-size: 17px;
  }
  .top_news .top_news_list {
    margin: 20px 0 0;
  }
  .top_news .top_news_list .item {
    margin-bottom: 25px;
  }
  .top_news .top_news_list .item a {
    display: block;
  }
  .top_news .top_news_list .item a .date_wrap {
    margin-bottom: 8px;
  }
  .top_news .top_news_list .item a .category {
    min-width: 100px;
    font-size: 12px;
    height: 18px;
    padding: 3px 6px 2px;
  }
  .top_news .top_news_list .item a .date {
    display: block;
    font-size: 12px;
    line-height: 1;
  }
  .top_news .top_news_list .item a .ttl {
    width: 100%;
  }
  .top_news .top_news_list .item:last-child {
    margin-bottom: 0;
  }
}
/* top_instagram
********************************************/
.top_instagram {
  padding: 70px 0;
  background-color: #fffbe2;
}
.top_instagram .sec_inner {
  max-width: 1100px;
}
.top_instagram .ttl_h2 {
  margin-bottom: 10px;
}
.top_instagram .ttl_h2 .border {
  font-size: 28px;
}
.top_instagram .txt {
  font-weight: bold;
}
.top_instagram .instagram-feed {
  margin-top: 18px;
}
.top_instagram .more_btn {
  margin-top: 12px;
}
.top_instagram .more_btn a {
  font-size: 13px;
  min-width: 240px;
  height: 31px;
  line-height: 29px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .top_instagram {
    padding: 6.364vw 0;
  }
  .top_instagram .ttl_h2 {
    margin-bottom: 0.9vw;
  }
  .top_instagram .ttl_h2 .border {
    font-size: 2.727vw;
    line-height: 1.6;
  }
  .top_instagram .txt {
    font-size: 1.455vw;
    line-height: 1.65;
  }
  .top_instagram .instagram-feed {
    margin-top: 1.636vw;
  }
  .top_instagram .more_btn {
    margin-top: 1.091vw;
  }
  .top_instagram .more_btn a {
    font-size: 1.182vw;
    min-width: 18.364vw;
    height: 2.818vw;
    line-height: 2.636vw;
  }
}
@media (max-width: 767px) {
  .top_instagram {
    padding: 40px 0;
  }
  .top_instagram .instagram-feed {
    margin-top: 18px;
    width: 100%;
    margin: 0 auto;
  }
  .top_instagram .ttl_h2 {
    margin-bottom: 10px;
  }
  .top_instagram .ttl_h2 .border {
    font-size: 20px;
    line-height: 1.6;
  }
  .top_instagram .txt {
    line-height: 1.65;
  }
  .more_btn a {
    max-width: 240px;
    min-width: 200px;
    width: 100%;
  }
}
/********************************************
* page
********************************************/
.content_header.post {
  padding-top: 70px;
}
.content_header .img {
  height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 65px;
}
.content_header .sec_inner {
  max-width: 1100px;
}
.content_header .ttl {
  position: relative;
  font-size: 34px;
  display: inline-block;
  font-weight: bold;
}
.content_header .ttl:after {
  content: "";
  position: absolute;
  top: 38px;
  left: -10px;
  background-color: #ffdc3c;
  height: 12px;
  padding: 0 10px;
  width: 100%;
  border-radius: 6px;
  z-index: -1;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .content_header.post {
    padding-top: 6.364vw;
  }
  .content_header .img {
    height: 22.727vw;
    margin-bottom: 5.909vw;
  }
  .content_header .ttl {
    font-size: 3.091vw;
  }
  .content_header .ttl:after {
    top: 3.455vw;
    left: -0.909vw;
    height: 1.091vw;
    padding: 0 0.909vw;
    border-radius: 0.545vw;
  }
}
@media (max-width: 767px) {
  .content_header.post {
    padding-top: 35px;
  }
  .content_header .img {
    height: 125px;
    margin-bottom: 35px;
  }
  .content_header .ttl {
    font-size: 20px;
  }
  .content_header .ttl:after {
    top: 21px;
    left: -5px;
    height: 6px;
    padding: 0 5px;
    border-radius: 3px;
  }
}
.content_main {
  padding: 50px 0 0;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .content_main {
    padding: 4.545vw 0 0;
  }
}
@media (max-width: 767px) {
  .content_main {
    padding: 25px 0 0;
  }
}
/* page about
********************************************/
#about .content_header .img {
  background-image: url(images/about/head_bg.png);
}
#about .about_sec1 {
  position: relative;
  margin-bottom: 100px;
}
#about .about_sec1 .sec_inner {
  max-width: 1100px;
}
#about .about_sec1 .txt {
  text-align: center;
}
#about .about_sec1 .action_list {
  width: 360px;
  margin: 0 auto;
  text-align: left;
}
#about .about_sec1 .action_list li {
  line-height: 2.3;
}
#about .about_sec1 .img_wrap {
  position: relative;
  margin-top: 320px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
#about .about_sec1 .illust1 {
  width: 480px;
  top: -280px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#about .about_sec1 .illust1 img {
  width: 480px;
  height: 356px;
}
#about .about_sec1 .img1 img {
  width: 100%;
}

@media (min-width: 768px) and (max-width: 1100px) {
  #about .about_sec1 {
    margin-bottom: 9.091vw;
  }
  #about .about_sec1 .action_list {
    width: 32.727vw;
  }
  #about .about_sec1 .img_wrap {
    margin-top: 29.091vw;
  }
  #about .about_sec1 .illust1 {
    width: 43.636vw;
    top: -25.455vw;
  }
  #about .about_sec1 .illust1 img {
    width: 43.636vw;
    height: 32.364vw;
  }
  #about .about_sec1 .img1 img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  #about .about_sec1 {
    margin-bottom: 50px;
  }
  #about .about_sec1 .txt {
    text-align: left;
  }
  #about .about_sec1 .action_list {
    width: 100%;
  }
  #about .about_sec1 .img_wrap {
    margin-top: 160px;
  }
  #about .about_sec1 .illust1 {
    width: 240px;
    top: -140px;
  }
  #about .about_sec1 .illust1 img {
    width: 240px;
    height: auto;
  }
}
#about .about_sec2 .sec_inner {
  max-width: 1100px;
}
#about .about_sec2 .address_list {
  margin-bottom: 20px;
}
#about .about_sec2 .address_list .address_block .ttl {
  text-align: center;
  display: inline-block;
  height: 34px;
  min-width: 100px;
  line-height: 32px;
  padding: 0 20px;
  border-radius: 17px;
  border: 2px solid #000;
  margin-right: 5px;
}
#about .about_sec2 .address_list .address_block .txt {
  display: inline-block;
}

.iframe {
  line-height: 0;
}
.iframe iframe {
  width: 100%;
  height: 350px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  #about .about_sec2 .address_list {
    margin-bottom: 1.818vw;
  }
  #about .about_sec2 .address_list .address_block .ttl {
    height: 3.091vw;
    min-width: 9.091vw;
    line-height: 2.909vw;
    padding: 0 1.818vw;
    border-radius: 1.545vw;
    margin-right: 0.455vw;
  }
  .iframe {
    line-height: 0;
  }
  .iframe iframe {
    width: 100%;
    height: 31.818vw;
  }
}
@media (max-width: 767px) {
  #about .about_sec2 .address_list {
    margin-bottom: 20px;
  }
  #about .about_sec2 .address_list .address_block {
    display: block;
    margin-bottom: 10px;
  }
  #about .about_sec2 .address_list .address_block:last-child {
    margin-bottom: 0;
  }
  #about .about_sec2 .address_list .address_block .ttl {
    height: 28px;
    min-width: 80px;
    line-height: 26px;
    padding: 0 10px;
    border-radius: 14px;
    border: 1px solid #000;
    margin-right: 5px;
    margin-bottom: 3px;
  }
  #about .about_sec2 .address_list .address_block .txt {
    display: block;
  }
  .iframe iframe {
    height: 250px;
  }
}
/* page business
********************************************/
#business .content_header .img {
  background-image: url(images/business/head_bg.png);
}
#business .business_sec1 {
  margin-bottom: 100px;
}
#business .business_sec1 .sec_inner {
  max-width: 1100px;
}
#business .business_sec1 .txt {
  text-align: center;
  margin-bottom: 50px;
}
#business .business_sec1 .illust1 {
  top: 60px;
  left: -50px;
}
#business .business_sec1 .illust1 img {
  width: 112px;
  height: 202px;
}
#business .business_sec1 .illust2 {
  top: 38px;
  right: -30px;
}
#business .business_sec1 .illust2 img {
  width: 161px;
  height: 224px;
}
#business .business_sec1 .business_list li {
  width: 184px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background-color: #f15a24;
  padding: 25px 10px 20px;
  border: 2px solid #000;
  border-radius: 5px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  #business .business_sec1 {
    margin-bottom: 9.091vw;
  }
  #business .business_sec1 .txt {
    margin-bottom: 4.545vw;
  }
  #business .business_sec1 .illust1 {
    top: 5.455vw;
    left: -4.545vw;
  }
  #business .business_sec1 .illust1 img {
    width: 10.182vw;
    height: 18.364vw;
  }
  #business .business_sec1 .illust2 {
    top: 3.455vw;
    right: -2.727vw;
  }
  #business .business_sec1 .illust2 img {
    width: 14.636vw;
    height: 20.364vw;
  }
  #business .business_sec1 .business_list li {
    width: 16.727vw;
    font-size: 1.818vw;
    padding: 2.273vw 0.909vw 1.818vw;
    border-radius: 0.455vw;
  }
}
@media (max-width: 767px) {
  #business .business_sec1 {
    margin-bottom: 50px;
  }
  #business .business_sec1 .txt {
    text-align: left;
    margin-bottom: 120px;
  }
  #business .business_sec1 .illust1 {
    top: -110px;
    left: 5px;
  }
  #business .business_sec1 .illust1 img {
    width: 56px;
    height: auto;
  }
  #business .business_sec1 .illust2 {
    top: 510px;
    right: 5px;
  }
  #business .business_sec1 .illust2 img {
    width: auto;
    height: 112px;
  }
  #business .business_sec1 .business_list li {
    max-width: 240px;
    width: 80%;
    font-size: 16px;
    padding: 15px 5% 10px;
    border: 1px solid #000;
    border-radius: 3px;
    margin: 0 auto 10px;
  }
  #business .business_sec1 .business_list li:last-child {
    margin-bottom: 0;
  }
}
#business .business_sec2 {
  padding-top: 80px;
  background-color: #fffbe2;
}
#business .business_sec2 .sec_inner {
  max-width: 1100px;
}
#business .business_sec2 .haniwa_block {
  width: 640px;
  margin: 0 auto;
  margin-bottom: 65px;
}
#business .business_sec2 .haniwa_block .img {
  width: 250px;
  margin-right: 40px;
}
#business .business_sec2 .haniwa_block .txt {
  flex: 1;
  display: flex;
  align-items: center;
}
#business .business_sec2 .img1 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
#business .business_sec2 .img1 img {
  width: 100%;
}

@media (min-width: 768px) and (max-width: 1100px) {
  #business .business_sec2 {
    padding-top: 7.273vw;
  }
  #business .business_sec2 .haniwa_block {
    width: 58.182vw;
    margin-bottom: 5.909vw;
  }
  #business .business_sec2 .haniwa_block .img {
    width: 22.727vw;
    margin-right: 3.636vw;
  }
}
@media (max-width: 767px) {
  #business .business_sec2 {
    padding-top: 40px;
  }
  #business .business_sec2 .haniwa_block {
    width: 100%;
    max-width: 375px;
    margin-bottom: 35px;
  }
  #business .business_sec2 .haniwa_block .img {
    text-align: center;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  #business .business_sec2 .haniwa_block .txt {
    display: block;
  }
}
#business .business_sec3 {
  padding-top: 80px;
  background-color: #fffbe2;
}
#business .business_sec3 .sec_inner {
  max-width: 1100px;
}
#business .business_sec3 .hukidashi {
  width: 800px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 4px 0px 0px #c8c8c8;
  background-color: #fff;
  margin: 0 auto 40px;
}
#business .business_sec3 .hukidashi:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-style: solid;
  border-width: 30px 35px 0 35px;
  border-color: #fff transparent transparent transparent;
}
#business .business_sec3 .hukidashi:before {
  content: "";
  position: absolute;
  left: 4px;
  right: 0;
  bottom: -34px;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-style: solid;
  border-width: 30px 35px 0 35px;
  border-color: #c8c8c8 transparent transparent transparent;
}
#business .business_sec3 .ayumu_list {
  padding: 40px;
}
#business .business_sec3 .ayumu_list li {
  display: flex;
  justify-content: flex-start;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}
#business .business_sec3 .ayumu_list li:last-child {
  margin-bottom: 0;
}
#business .business_sec3 .ayumu_list li dt {
  margin-right: 10px;
}
#business .business_sec3 .ayumu_list li dd {
  font-size: 22px;
  font-weight: bold;
  color: #25aaae;
}
#business .business_sec3 .ttl_h2 {
  color: #25aaae;
  max-width: 600px;
}
#business .business_sec3 .ex_ttl {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
#business .business_sec3 .ex_list {
  width: 800px;
  margin: 0 auto 30px;
}
#business .business_sec3 .ex2_ttl {
  text-align: center;
  width: 800px;
  font-size: 20px;
  font-weight: bold;
  background-color: #ffdc3c;
  margin: 0 auto;
  border-radius: 30px;
}
#business .business_sec3 .ayumu_list_wrap {
  width: 800px;
  margin: 0 auto;
}
#business .business_sec3 .txt {
  font-size: 18px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  #business .business_sec3 {
    padding-top: 7.273vw;
    background-color: #fffbe2;
  }
  #business .business_sec3 .sec_inner {
    max-width: 100vw;
  }
  #business .business_sec3 .hukidashi {
    width: 72.727vw;
    position: relative;
    border-radius: 0.909vw;
    box-shadow: 0px 4px 0px 0px #c8c8c8;
    background-color: #fff;
    margin: 0 auto 3.636vw;
  }
  #business .business_sec3 .hukidashi:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2.727vw;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-style: solid;
    border-width: 2.727vw 3.182vw 0 3.182vw;
    border-color: #fff transparent transparent transparent;
  }
  #business .business_sec3 .hukidashi:before {
    content: "";
    position: absolute;
    left: 0.364vw;
    right: 0;
    bottom: -3.091vw;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-style: solid;
    border-width: 2.727vw 3.182vw 0 3.182vw;
    border-color: #c8c8c8 transparent transparent transparent;
  }
  #business .business_sec3 .ayumu_list {
    padding: 3.636vw;
  }
  #business .business_sec3 .ayumu_list li {
    font-size: 2vw;
    font-weight: bold;
    margin-bottom: 1.364vw;
  }
  #business .business_sec3 .ayumu_list li:last-child {
    margin-bottom: 0;
  }
  #business .business_sec3 .ayumu_list li dd {
    font-size: 2vw;
    font-weight: bold;
    color: #25aaae;
  }
  #business .business_sec3 .ttl_h2 {
    color: #25aaae;
    max-width: 54.545vw;
  }
  #business .business_sec3 .ex_ttl {
    font-size: 1.636vw;
    font-weight: 500;
    margin-bottom: 1.818vw;
  }
  #business .business_sec3 .ex_list {
    width: 72.727vw;
    margin: 0 auto 2.727vw;
  }
  #business .business_sec3 .ex2_ttl {
    text-align: center;
    width: 72.727vw;
    font-size: 1.818vw;
    font-weight: bold;
    background-color: #ffdc3c;
    margin: 0 auto;
    border-radius: 2.727vw;
  }
  #business .business_sec3 .ayumu_list_wrap {
    width: 72.727vw;
    margin: 0 auto;
  }
  #business .business_sec3 .txt {
    font-size: 1.636vw;
  }
}
@media (max-width: 767px) {
  #business .business_sec3 {
    padding-top: 40px;
  }
  #business .business_sec3 .hukidashi {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 2px 0px 0px #c8c8c8;
    margin: 0 auto 40px;
  }
  #business .business_sec3 .ayumu_list {
    padding: 20px 5%;
  }
  #business .business_sec3 .ayumu_list li {
    font-size: 18px;
    margin-bottom: 10px;
  }
  #business .business_sec3 .ayumu_list li:last-child {
    margin-bottom: 0;
  }
  #business .business_sec3 .ayumu_list li dt {
    margin-right: 5px;
  }
  #business .business_sec3 .ayumu_list li dd {
    font-size: 18px;
  }
  #business .business_sec3 .ttl_h2 {
    max-width: 600px;
  }
  #business .business_sec3 .ex_ttl {
    font-size: 14px;
    margin-bottom: 10px;
  }
  #business .business_sec3 .ex_list {
    text-align: center;
    width: 100%;
    margin: 0 auto 25px;
  }
  #business .business_sec3 .ex_list li {
    margin-bottom: 20px;
  }
  #business .business_sec3 .ex_list li:last-child {
    margin-bottom: 0;
  }
  #business .business_sec3 .ex2_ttl {
    width: 100%;
    font-size: 16px;
    line-height: 1.6;
    padding: 10px 0;
    border-radius: 100px;
  }
  #business .business_sec3 .ayumu_list_wrap {
    width: 100%;
    margin: 0 auto;
  }
  #business .business_sec3 .txt {
    font-size: 14px;
  }
}
#business .business_sec4 {
  padding-top: 60px;
  background-color: #fffbe2;
}
#business .business_sec4 .sec_inner {
  max-width: 900px;
}
#business .business_sec4 .ttl_h2 {
  font-size: 26px;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
#business .business_sec4 .btn_list .btn_list_btn {
  width: 390px;
}
#business .business_sec4 .btn_list .btn_list_btn a {
  position: relative;
  text-align: center;
  display: block;
  font-size: 22px;
  font-weight: 500;
  border: 2px solid #000;
  padding: 20px 20px 30px;
  border-radius: 10px;
  background-color: #ffdc3c;
}
#business .business_sec4 .btn_list .btn_list_btn a:after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 11px;
  width: 18px;
  margin: 0 auto;
  background-image: url(images/common/icon_arrow_bottom.svg);
  background-size: 18px 11px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  #business .business_sec4 {
    padding-top: 5.455vw;
    background-color: #fffbe2;
  }
  #business .business_sec4 .sec_inner {
    max-width: 81.818vw;
  }
  #business .business_sec4 .ttl_h2 {
    font-size: 2.364vw;
    margin-bottom: 1.818vw;
    letter-spacing: -0.04em;
  }
  #business .business_sec4 .btn_list .btn_list_btn {
    width: 35.455vw;
  }
  #business .business_sec4 .btn_list .btn_list_btn a {
    position: relative;
    text-align: center;
    display: block;
    font-size: 2vw;
    font-weight: 500;
    border: 2px solid #000;
    padding: 1.818vw 1.818vw 2.727vw;
    border-radius: 0.909vw;
    background-color: #ffdc3c;
  }
  #business .business_sec4 .btn_list .btn_list_btn a:after {
    content: "";
    position: absolute;
    bottom: 0.909vw;
    left: 0;
    right: 0;
    height: 1vw;
    width: 1.636vw;
    margin: 0 auto;
    background-image: url(images/common/icon_arrow_bottom.svg);
    background-size: 1.636vw 1vw;
  }
}
@media (max-width: 767px) {
  #business .business_sec4 {
    padding-top: 30px;
  }
  #business .business_sec4 .ttl_h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  #business .business_sec4 .btn_list .btn_list_btn {
    width: 100%;
    max-width: 390px;
    margin: 0 auto 15px;
  }
  #business .business_sec4 .btn_list .btn_list_btn:last-child {
    margin-bottom: 0;
  }
  #business .business_sec4 .btn_list .btn_list_btn a {
    font-size: 16px;
    border: 1px solid #000;
    padding: 15px 10px 25px;
    border-radius: 5px;
  }
  #business .business_sec4 .btn_list .btn_list_btn a:after {
    bottom: 5px;
    height: 11px;
    width: 18px;
  }
}
/* page fukushifair
********************************************/
#fukushifair .content_header .img {
  background-image: url(images/fukushifair/head_bg.png);
}
#fukushifair .content_header .ttl {
  /*目立たせたい時 color: #ed1c24;*/
}
#fukushifair .fukushifair_sec1 {
  margin-bottom: 75px;
}
#fukushifair .fukushifair_sec1 .sec_inner {
  max-width: 1200px;
  padding: 0;
}
#fukushifair .about_block {
  justify-content: flex-end;
}
#fukushifair .about_block .info {
  width: 500px;
}
#fukushifair .about_block .img {
  position: relative;
  width: 560px;
  margin-left: 40px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  #fukushifair .fukushifair_sec1 {
    margin-bottom: 6.25vw;
  }
  #fukushifair .about_block {
    justify-content: flex-end;
  }
  #fukushifair .about_block .info {
    width: 41.667vw;
  }
  #fukushifair .about_block .img {
    position: relative;
    width: 46.667vw;
    margin-left: 3.333vw;
  }
}
@media (max-width: 767px) {
  #fukushifair .fukushifair_sec1 {
    margin-bottom: 40px;
  }
  #fukushifair .fukushifair_sec1 .sec_inner {
    padding: 0 5%;
  }
  #fukushifair .about_block .info {
    width: 100%;
    margin-bottom: 35px;
  }
  #fukushifair .about_block .img {
    width: 100%;
    margin-left: 0;
  }
}
#fukushifair .fukushifair_sec2 {
  padding: 80px 0 100px;
  background-color: #fffbe2;
}
#fukushifair .fukushifair_sec2 .sec_inner {
  max-width: 1100px;
}
#fukushifair .fair_block {
  margin-bottom: 100px;
}
#fukushifair .fair_block:last-child {
  margin-bottom: 0;
}
#fukushifair .fair_block .more_btn {
  margin-top: 40px;
}
#fukushifair .feature_list li {
  position: relative;
  width: 235px;
  padding: 147px 0 25px;
  border: 2px solid #000;
  border-radius: 5px;
}
#fukushifair .feature_list li .img {
  position: absolute;
  bottom: 107px;
  width: 100%;
  display: flex;
  justify-content: center;
}
#fukushifair .feature_list li .ttl {
  text-align: center;
  font-size: 22px;
  line-height: 1.35;
}
#fukushifair .feature_list li:nth-child(1) {
  background-color: #75c5e7;
}
#fukushifair .feature_list li:nth-child(1) .img img {
  width: 79px;
  height: 133px;
}
#fukushifair .feature_list li:nth-child(2) {
  background-color: #ffbed2;
}
#fukushifair .feature_list li:nth-child(2) .img img {
  width: 48px;
  height: 154px;
}
#fukushifair .feature_list li:nth-child(3) {
  background-color: #65cc8e;
}
#fukushifair .feature_list li:nth-child(3) .img img {
  width: 48px;
  height: 144px;
}
#fukushifair .feature_list li:nth-child(4) {
  background-color: #fbb03b;
}
#fukushifair .feature_list li:nth-child(4) .img img {
  width: 54px;
  height: 138px;
}
#fukushifair .terms_list {
  justify-content: center;
  margin-bottom: 50px;
}
#fukushifair .terms_list li {
  text-align: center;
  width: 200px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  padding: 10px;
  border-radius: 7px;
  margin: 0 10px;
  background-color: #f15a24;
}
#fukushifair .event_block {
  margin-bottom: 40px;
  border-radius: 10px;
  background-color: #fff;
}
#fukushifair .event_block:last-child {
  margin-bottom: 0;
}
#fukushifair .event_block .info {
  width: 550px;
  padding: 30px 40px;
}
#fukushifair .event_block .info .date {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
}
#fukushifair .event_block .info .ttl {
  font-size: 24px;
  margin-bottom: 18px;
}
#fukushifair .event_block .info .place {
  text-align: center;
  font-size: 20px;
  color: #fff;
  border-radius: 100px;
  line-height: 1.4;
  padding: 10px 30px;
  margin-bottom: 20px;
  background-color: #25aaae;
}
#fukushifair .event_block .info .txt {
  line-height: 1.6;
  margin-bottom: 5px;
}
#fukushifair .event_block .iframe {
  width: 450px;
}
#fukushifair .event_block .iframe iframe {
  height: 100%;
  border-radius: 0 10px 10px 0;
}
#fukushifair .message {
  text-align: center;
  font-size: 24px;
  line-height: 1.8;
  margin-bottom: 80px;
}
#fukushifair .please_wrapper {
  position: relative;
  padding: 75px 80px 45px;
  border-radius: 25px;
  border: 2px solid #000;
  background-color: #fff;
}
#fukushifair .please_wrapper .ttl_h3 {
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  width: 300px;
  margin: 0 auto;
}
#fukushifair .please_wrapper .illust1 {
  width: 40px;
  top: -65px;
  left: 0;
  right: 360px;
  margin: 0 auto;
}
#fukushifair .please_wrapper .illust1 img {
  width: 40px;
  height: 124px;
}
#fukushifair .please_wrapper .illust2 {
  width: 46px;
  top: -65px;
  left: 360px;
  right: 0;
  margin: 0 auto;
}
#fukushifair .please_wrapper .illust2 img {
  width: 46px;
  height: 127px;
}
#fukushifair .please_wrapper .please_list {
  list-style-type: square;
}
#fukushifair .please_wrapper .please_list li {
  margin-left: 18px;
  margin-bottom: 20px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  #fukushifair .fukushifair_sec2 {
    padding: 7.273vw 0 9.091vw;
    background-color: #fffbe2;
  }
  #fukushifair .fukushifair_sec2 .sec_inner {
    max-width: 100vw;
  }
  #fukushifair .fair_block {
    margin-bottom: 9.091vw;
  }
  #fukushifair .fair_block:last-child {
    margin-bottom: 0;
  }
  #fukushifair .fair_block .more_btn {
    margin-top: 3.636vw;
  }
  #fukushifair .feature_list li {
    position: relative;
    width: 21.364vw;
    padding: 13.364vw 0 2.273vw;
    border: 2px solid #000;
    border-radius: 0.455vw;
  }
  #fukushifair .feature_list li .img {
    position: absolute;
    bottom: 9.727vw;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  #fukushifair .feature_list li .ttl {
    text-align: center;
    font-size: 2vw;
    line-height: 1.35;
  }
  #fukushifair .feature_list li:nth-child(1) {
    background-color: #75c5e7;
  }
  #fukushifair .feature_list li:nth-child(1) .img img {
    width: 7.182vw;
    height: 12.091vw;
  }
  #fukushifair .feature_list li:nth-child(2) {
    background-color: #ffbed2;
  }
  #fukushifair .feature_list li:nth-child(2) .img img {
    width: 4.364vw;
    height: 14vw;
  }
  #fukushifair .feature_list li:nth-child(3) {
    background-color: #65cc8e;
  }
  #fukushifair .feature_list li:nth-child(3) .img img {
    width: 4.364vw;
    height: 13.091vw;
  }
  #fukushifair .feature_list li:nth-child(4) {
    background-color: #fbb03b;
  }
  #fukushifair .feature_list li:nth-child(4) .img img {
    width: 4.909vw;
    height: 12.545vw;
  }
  #fukushifair .terms_list {
    justify-content: center;
    margin-bottom: 4.545vw;
  }
  #fukushifair .terms_list li {
    text-align: center;
    width: 18.182vw;
    font-size: 2.182vw;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    padding: 0.909vw;
    border-radius: 0.636vw;
    margin: 0 0.909vw;
    background-color: #f15a24;
  }
  #fukushifair .event_block {
    margin-bottom: 3.636vw;
    border-radius: 0.909vw;
    background-color: #fff;
  }
  #fukushifair .event_block:last-child {
    margin-bottom: 0;
  }
  #fukushifair .event_block .info {
    width: 50vw;
    padding: 2.727vw 3.636vw;
  }
  #fukushifair .event_block .info .date {
    font-size: 1.636vw;
    line-height: 1.6;
    margin-bottom: 0.909vw;
  }
  #fukushifair .event_block .info .ttl {
    font-size: 2.182vw;
    margin-bottom: 1.636vw;
  }
  #fukushifair .event_block .info .place {
    text-align: center;
    font-size: 1.818vw;
    color: #fff;
    border-radius: 9.091vw;
    line-height: 1.4;
    padding: 0.909vw 2.727vw;
    margin-bottom: 1.818vw;
    background-color: #25aaae;
  }
  #fukushifair .event_block .info .txt {
    line-height: 1.6;
    margin-bottom: 0.455vw;
  }
  #fukushifair .event_block .iframe {
    width: 40.909vw;
  }
  #fukushifair .event_block .iframe iframe {
    height: 100%;
    border-radius: 0 0.909vw 0.909vw 0;
  }
  #fukushifair .message {
    text-align: center;
    font-size: 2.182vw;
    line-height: 1.8;
    margin-bottom: 7.273vw;
  }
  #fukushifair .please_wrapper {
    position: relative;
    padding: 6.818vw 7.273vw 4.091vw;
    border-radius: 2.273vw;
    border: 2px solid #000;
    background-color: #fff;
  }
  #fukushifair .please_wrapper .ttl_h3 {
    position: absolute;
    top: -2.273vw;
    left: 0;
    right: 0;
    width: 27.273vw;
    margin: 0 auto;
  }
  #fukushifair .please_wrapper .illust1 {
    width: 3.636vw;
    top: -5.909vw;
    left: 0;
    right: 32.727vw;
    margin: 0 auto;
  }
  #fukushifair .please_wrapper .illust1 img {
    width: 3.636vw;
    height: 11.273vw;
  }
  #fukushifair .please_wrapper .illust2 {
    width: 4.182vw;
    top: -5.909vw;
    left: 32.727vw;
    right: 0;
    margin: 0 auto;
  }
  #fukushifair .please_wrapper .illust2 img {
    width: 4.182vw;
    height: 11.545vw;
  }
  #fukushifair .please_wrapper .please_list {
    list-style-type: square;
  }
  #fukushifair .please_wrapper .please_list li {
    margin-left: 1.636vw;
    margin-bottom: 1.818vw;
  }
}
@media (max-width: 767px) {
  #fukushifair .fukushifair_sec2 {
    padding: 40px 0 50px;
    background-color: #fffbe2;
  }
  #fukushifair .fair_block {
    margin-bottom: 50px;
  }
  #fukushifair .fair_block:last-child {
    margin-bottom: 0;
  }
  #fukushifair .fair_block .more_btn {
    margin-top: 20px;
  }
  #fukushifair .feature_list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  #fukushifair .feature_list li {
    width: 48%;
    padding: 50px 0 15px;
    border: 1px solid #000;
    margin-bottom: 40px;
  }
  #fukushifair .feature_list li .img {
    bottom: 60px;
  }
  #fukushifair .feature_list li .ttl {
    font-size: 15px;
  }
  #fukushifair .feature_list li:nth-child(1) .img img {
    width: 39.5px;
    height: auto;
  }
  #fukushifair .feature_list li:nth-child(2) .img img {
    width: 24px;
    height: auto;
  }
  #fukushifair .feature_list li:nth-child(3) {
    margin-bottom: 0;
  }
  #fukushifair .feature_list li:nth-child(3) .img img {
    width: 24px;
    height: auto;
  }
  #fukushifair .feature_list li:nth-child(4) {
    margin-bottom: 0;
  }
  #fukushifair .feature_list li:nth-child(4) .img img {
    width: 27px;
    height: auto;
  }
  #fukushifair .terms_list {
    display: flex;
    margin-bottom: 25px;
  }
  #fukushifair .terms_list li {
    width: 32%;
    font-size: 16px;
    padding: 5px;
    border-radius: 5px;
    margin: 0 5px;
  }
  #fukushifair .terms_list li:first-child {
    margin-left: 0;
  }
  #fukushifair .terms_list li:last-child {
    margin-right: 0;
  }
  #fukushifair .event_block {
    margin-bottom: 20px;
    border-radius: 5px;
  }
  #fukushifair .event_block:last-child {
    margin-bottom: 0;
  }
  #fukushifair .event_block .info {
    width: 100%;
    padding: 20px 5%;
  }
  #fukushifair .event_block .info .date {
    font-size: 15px;
    margin-bottom: 5px;
  }
  #fukushifair .event_block .info .ttl {
    font-size: 20px;
    margin-bottom: 12px;
  }
  #fukushifair .event_block .info .place {
    text-align: left;
    font-size: 16px;
    padding: 5px 24px;
    margin-bottom: 10px;
  }
  #fukushifair .event_block .info .txt {
    margin-bottom: 5px;
  }
  #fukushifair .event_block .iframe {
    width: 100%;
  }
  #fukushifair .event_block .iframe iframe {
    width: 100%;
    height: 250px;
    border-radius: 0 0 10px 10px;
  }
  #fukushifair .message {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 80px;
  }
  #fukushifair .please_wrapper {
    padding: 40px 5% 25px;
    border-radius: 10px;
    border: 1px solid #000;
  }
  #fukushifair .please_wrapper .ttl_h3 {
    top: -22px;
    width: 200px;
    margin: 0 auto;
  }
  #fukushifair .please_wrapper .illust1 {
    width: 20px;
    top: -32px;
    left: 0;
    right: 250px;
    margin: 0 auto;
  }
  #fukushifair .please_wrapper .illust1 img {
    width: 20px;
    height: auto;
  }
  #fukushifair .please_wrapper .illust2 {
    width: 23px;
    top: -32px;
    left: 250px;
    right: 0;
    margin: 0 auto;
  }
  #fukushifair .please_wrapper .illust2 img {
    width: 23px;
    height: auto;
  }
  #fukushifair .please_wrapper .please_list {
    list-style-type: square;
  }
  #fukushifair .please_wrapper .please_list li {
    margin-left: 17px;
    margin-bottom: 15px;
    word-break: break-all;
  }
}
/* page news
********************************************/
.post-type-archive .content_header .img, .tax-area_category .content_header .img, .tax-field_category .content_header .img {
  background-image: url(images/contact/head_bg.png);
}
.post-type-archive .content_main, .tax-area_category .content_main, .tax-field_category .content_main {
  padding-bottom: 100px;
}
.post-type-archive .sec_inner, .tax-area_category .sec_inner, .tax-field_category .sec_inner {
  max-width: 1100px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .post-type-archive .content_main, .tax-area_category .content_main, .tax-field_category .content_main {
    padding-bottom: 9.091vw;
  }
}
@media (max-width: 767px) {
  .post-type-archive .content_main, .tax-area_category .content_main, .tax-field_category .content_main {
    padding-bottom: 50px;
  }
}
/* page contact
********************************************/
#contact .content_header .img {
  background-image: url(images/contact/head_bg.png);
}
#contact .contact_sec1 {
  margin-bottom: 60px;
}
#contact .contact_sec1 .sec_inner {
  max-width: 1100px;
}
#contact .contact_sec1 .txt {
  text-align: center;
}
#contact .contact_sec2 {
  padding: 50px 0 100px;
  background-color: #fffbe2;
}
#contact .contact_sec2 .sec_inner {
  max-width: 900px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  #contact .content_header .img {
    background-image: url(images/contact/head_bg.png);
  }
  #contact .contact_sec1 {
    margin-bottom: 5.455vw;
  }
  #contact .contact_sec1 .sec_inner {
    max-width: 100vw;
  }
  #contact .contact_sec2 {
    padding: 4.545vw 0 9.091vw;
    background-color: #fffbe2;
  }
  #contact .contact_sec2 .sec_inner {
    max-width: 81.818vw;
  }
}
@media (max-width: 767px) {
  #contact .contact_sec1 {
    margin-bottom: 30px;
  }
  #contact .contact_sec1 .txt {
    text-align: left;
  }
  #contact .contact_sec2 {
    padding: 25px 0 50px;
  }
}
/* page privacy-policy
********************************************/
#privacy-policy .content_header .img {
  background-image: url(images/contact/head_bg.png);
}
#privacy-policy .content_main {
  padding-bottom: 100px;
}
#privacy-policy .sec_inner {
  max-width: 1100px;
  margin-top: 0;
}

@media (min-width: 768px) and (max-width: 1100px) {
  #privacy-policy .content_main {
    padding-bottom: 9.091vw;
  }
}
@media (max-width: 767px) {
  #privacy-policy .content_main {
    padding-bottom: 50px;
  }
}
/* page error404
********************************************/
.error404 .content_header .img {
  background-image: url(images/contact/head_bg.png);
}
.error404 .content_main {
  padding-bottom: 100px;
}
.error404 .sec_inner {
  max-width: 1100px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .error404 .content_main {
    padding-bottom: 9.091vw;
  }
}
@media (max-width: 767px) {
  .error404 .content_main {
    padding-bottom: 50px;
  }
}
/* page work
********************************************/
#work .content_header .img {
  background-image: url(images/work/head_bg.png);
}

.work_field {
  margin-bottom: 80px;
}
.work_field .sec_inner {
  max-width: 1100px;
}
.work_field .ttl_h3 {
  position: relative;
  margin-bottom: 15px;
}
.work_field .ttl_h3 .illust1 {
  top: -85px;
  right: 40px;
}
.work_field .ttl_h3 .illust1 img {
  width: 188px;
  height: 170px;
}
.work_field .txt {
  text-align: center;
}

.work_field_list {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.work_field_list li {
  width: 235px;
  padding: 30px 0 25px;
  border: 2px solid #000;
  border-radius: 5px;
  margin: 0 15px;
  background-color: #bee5e7;
}
.work_field_list li:first-child {
  margin-left: 0;
}
.work_field_list li:last-child {
  margin-right: 0;
}
.work_field_list li .ttl {
  text-align: center;
  font-size: 30px;
  line-height: 1;
}
.work_field_list li .more_btn {
  margin-top: 18px;
}
.work_field_list li .more_btn a {
  width: 100%;
  min-width: initial;
  max-width: 185px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  #work .content_header .img {
    background-image: url(images/work/head_bg.png);
  }
  .work_field {
    margin-bottom: 7.273vw;
  }
  .work_field .sec_inner {
    max-width: 100vw;
  }
  .work_field .ttl_h3 {
    position: relative;
    margin-bottom: 1.364vw;
  }
  .work_field .ttl_h3 .illust1 {
    top: -7.727vw;
    right: 3.636vw;
  }
  .work_field .ttl_h3 .illust1 img {
    width: 17.091vw;
    height: 15.455vw;
  }
  .work_field .txt {
    text-align: center;
  }
  .work_field_list {
    display: flex;
    justify-content: space-between;
    margin-top: 2.727vw;
  }
  .work_field_list li {
    width: 21.364vw;
    padding: 2.727vw 0 2.273vw;
    border: 2px solid #000;
    border-radius: 0.455vw;
    margin: 0 1.364vw;
    background-color: #bee5e7;
  }
  .work_field_list li:first-child {
    margin-left: 0;
  }
  .work_field_list li:last-child {
    margin-right: 0;
  }
  .work_field_list li .ttl {
    text-align: center;
    font-size: 2.727vw;
    line-height: 1;
  }
  .work_field_list li .more_btn {
    margin-top: 1.636vw;
  }
  .work_field_list li .more_btn a {
    width: 100%;
    min-width: initial;
    max-width: 16.818vw;
  }
}
@media (max-width: 767px) {
  .work_field {
    margin-bottom: 50px;
  }
  .work_field .ttl_h3 {
    margin-bottom: 10px;
  }
  .work_field .ttl_h3 .illust1 {
    top: -22px;
    right: -18px;
  }
  .work_field .ttl_h3 .illust1 img {
    width: auto;
    height: 70px;
  }
  .work_field .txt {
    line-height: 1.6;
  }
  .work_field_list {
    display: block;
    margin-top: 20px;
  }
  .work_field_list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 375px;
    width: 100%;
    padding: 10px 5%;
    border: 1px solid #000;
    border-radius: 3px;
    margin: 0 auto 10px;
  }
  .work_field_list li:first-child {
    margin-left: auto;
  }
  .work_field_list li:last-child {
    margin-right: auto;
  }
  .work_field_list li .ttl {
    flex: 1;
    text-align: left;
    font-size: 20px;
    line-height: 1;
  }
  .work_field_list li .more_btn {
    width: 110px;
    margin-top: 0;
  }
  .work_field_list li .more_btn a {
    width: 100%;
    min-width: initial;
    max-width: 110px;
  }
}
.work_area {
  margin-bottom: 80px;
}
.work_area .sec_inner {
  max-width: 1100px;
}
.work_area .ttl_h3 {
  position: relative;
  margin-bottom: 15px;
}
.work_area .txt {
  text-align: center;
}

.work_area_map {
  position: relative;
  text-align: center;
  width: 100%;
  margin-top: 30px;
}
.work_area_map svg {
  width: 258.2px;
  height: 540px;
}
.work_area_map svg a path {
  transition: fill 0.2s linear;
}
.work_area_map svg a:hover path {
  fill: #f15a24;
}
.work_area_map svg a.current path {
  fill: #f15a24;
  pointer-events: none;
}
.work_area_map .illust1 {
  pointer-events: none;
  top: 16px;
  left: 62px;
}
.work_area_map .illust1 img {
  width: 402px;
  height: 571px;
}
.work_area_map .illust2 {
  pointer-events: none;
  top: -35px;
  right: 120px;
}
.work_area_map .illust2 img {
  width: 360px;
  height: 622px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .work_area {
    margin-bottom: 7.273vw;
  }
  .work_area .sec_inner {
    max-width: 100vw;
  }
  .work_area .ttl_h3 {
    position: relative;
    margin-bottom: 1.364vw;
  }
  .work_area .txt {
    text-align: center;
  }
  .work_area_map {
    position: relative;
    text-align: center;
    width: 100%;
    margin-top: 2.727vw;
  }
  .work_area_map svg {
    width: 23.473vw;
    height: 49.091vw;
  }
  .work_area_map svg a path {
    transition: fill 0.2s linear;
  }
  .work_area_map svg a:hover path {
    fill: #f15a24;
  }
  .work_area_map .illust1 {
    pointer-events: none;
    top: 1.455vw;
    left: 5.636vw;
  }
  .work_area_map .illust1 img {
    width: 36.545vw;
    height: 51.909vw;
  }
  .work_area_map .illust2 {
    pointer-events: none;
    top: -3.182vw;
    right: 10.909vw;
  }
  .work_area_map .illust2 img {
    width: 32.727vw;
    height: 56.545vw;
  }
}
@media (max-width: 767px) {
  .work_area {
    margin-bottom: 50px;
  }
  .work_area .ttl_h3 {
    margin-bottom: 10px;
  }
  .work_area .txt {
    line-height: 1.6;
  }
  .work_area_map_wrapper {
    display: flex;
    justify-content: center;
  }
  .work_area_map {
    width: 191.5px;
    margin: 20px 0 0 49px;
  }
  .work_area_map svg {
    width: 191.5px;
    height: 400px;
  }
  .work_area_map .illust1 {
    top: 10px;
    left: -95px;
  }
  .work_area_map .illust1 img {
    width: auto;
    height: 389.5px;
  }
  .work_area_map .illust2 {
    top: -8px;
    right: -45px;
  }
  .work_area_map .illust2 img {
    width: auto;
    height: 422.5px;
  }
}
/* page search_wrapper
********************************************/
.search_wrapper {
  margin-top: 100px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .search_wrapper {
    margin-top: 9.091vw;
  }
}
@media (max-width: 767px) {
  .search_wrapper {
    margin-top: 50px;
  }
}
/* news_list
********************************************/
.news_list .item {
  border-top: 1px solid #ebebeb;
}
.news_list .item:last-child {
  border-bottom: 1px solid #ebebeb;
}
.news_list .item a {
  display: flex;
  justify-content: flex-start;
  padding: 40px 0;
}
.news_list .item a:hover .date {
  color: #999;
}
.news_list .item a:hover .category {
  opacity: 0.7;
}
.news_list .item a .info {
  display: flex;
  margin-right: 50px;
}
.news_list .item a .date {
  font-size: 16px;
  margin-right: 20px;
  line-height: 1;
  margin-top: 4px;
  transition: 0.2s;
}
.news_list .item a .category {
  min-width: 100px;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  height: 24px;
  padding: 6px 6px 4px;
  border-radius: 3px;
  background-color: #ffdc3c;
  transition: 0.2s;
}
.news_list .item a .ttl {
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .news_list .item a {
    padding: 4.444vw 0;
  }
  .news_list .item a .info {
    margin-right: 5.556vw;
  }
  .news_list .item a .date {
    font-size: 1.778vw;
    margin-right: 2.222vw;
    margin-top: 0.444vw;
  }
  .news_list .item a .category {
    min-width: 11.111vw;
    font-size: 1.333vw;
    height: 2.667vw;
    padding: 0.667vw 0.667vw 0.444vw;
  }
  .news_list .item a .ttl {
    font-size: 1.778vw;
  }
}
@media (max-width: 767px) {
  .news_list .item a {
    display: block;
    padding: 20px 0;
  }
  .news_list .item a .info {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .news_list .item a .date {
    font-size: 14px;
    margin-right: 15px;
    margin-top: 2px;
  }
  .news_list .item a .category {
    font-size: 13px;
    height: 18px;
    padding: 2px 6px 3px;
  }
  .news_list .item a .ttl {
    width: 100%;
    font-size: 14px;
  }
}
/* cat_list
********************************************/
.cat_list_wrapper .txt {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 15px;
}

.cat_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.cat_list li a {
  text-align: center;
  display: inline-block;
  height: 40px;
  width: 184px;
  font-size: 21px;
  line-height: 38px;
  padding: 0 20px;
  border-radius: 19px;
  border: 2px solid #000;
}
.cat_list li a:hover {
  background-color: #ffdc3c;
}
.cat_list li.current a {
  background-color: #ffdc3c;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .cat_list_wrapper .txt {
    margin-top: 0.909vw;
    margin-bottom: 1.364vw;
  }
  .cat_list {
    margin-bottom: 4.545vw;
  }
  .cat_list li a {
    height: 3.636vw;
    width: 16.727vw;
    font-size: 1.909vw;
    line-height: 3.455vw;
    padding: 0 1.818vw;
    border-radius: 1.727vw;
  }
}
@media (max-width: 767px) {
  .cat_list_wrapper {
    max-width: 375px;
    margin: 0 auto;
  }
  .cat_list_wrapper .txt {
    margin-top: 5px;
    margin-bottom: 10px;
    line-height: 1.6;
  }
  .cat_list {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
  }
  .cat_list li {
    width: 30%;
    margin: 0 1% 10px;
  }
  .cat_list li a {
    height: 25px;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid #000;
  }
}
/* single_cat_list
********************************************/
.single_cat_list {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.single_cat_list li {
  text-align: center;
  display: inline-block;
  height: 40px;
  width: 184px;
  font-size: 21px;
  line-height: 38px;
  padding: 0 20px;
  border-radius: 19px;
  border: 2px solid #000;
  margin: 0 5px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .single_cat_list {
    margin-bottom: 1.818vw;
  }
  .single_cat_list li {
    height: 3.636vw;
    width: 16.727vw;
    font-size: 1.909vw;
    line-height: 3.455vw;
    padding: 0 1.818vw;
    border-radius: 1.727vw;
    margin: 0 0.455vw;
  }
}
@media (max-width: 767px) {
  .single_cat_list_wrapper {
    max-width: 375px;
    margin: 0 auto 10px;
  }
  .single_cat_list {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
  }
  .single_cat_list li {
    width: 30%;
    margin: 0 1% 0;
    height: 25px;
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid #000;
  }
}
/* shisetsu_list
********************************************/
.shisetsu_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.shisetsu_list:before {
  content: "";
  display: block;
  width: 220px;
  order: 1;
}
.shisetsu_list:after {
  content: "";
  display: block;
  width: 220px;
}
.shisetsu_list .item {
  width: 220px;
  margin-top: 48px;
}
.shisetsu_list .item:nth-child(-n+4) {
  margin-top: 0;
}
.shisetsu_list .item .img {
  width: 220px;
  height: 170px;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 10px;
}
.shisetsu_list .item .cat {
  display: inline-block;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid #000;
  margin-right: 5px;
  margin-bottom: 5px;
}
.shisetsu_list .item .ttl {
  font-size: 18px;
  margin-bottom: 10px;
}
.shisetsu_list .item .more_btn {
  margin-top: 0;
}
.shisetsu_list .item .more_btn a {
  min-width: initial;
  width: 100%;
  height: 30px;
  font-size: 14px;
  line-height: 27px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .shisetsu_list:before {
    width: 20vw;
  }
  .shisetsu_list:after {
    width: 20vw;
  }
  .shisetsu_list .item {
    width: 20vw;
    margin-top: 4.364vw;
  }
  .shisetsu_list .item:nth-child(-n+4) {
    margin-top: 0;
  }
  .shisetsu_list .item .img {
    width: 20vw;
    height: 15.455vw;
    border-radius: 0.273vw;
    margin-bottom: 0.909vw;
  }
  .shisetsu_list .item .cat {
    height: 1.818vw;
    line-height: 1.818vw;
    font-size: 1.091vw;
    padding: 0 0.909vw;
    border-radius: 0.909vw;
    margin-right: 0.455vw;
    margin-bottom: 0.455vw;
  }
  .shisetsu_list .item .ttl {
    font-size: 1.636vw;
    margin-bottom: 0.909vw;
  }
  .shisetsu_list .item .more_btn {
    margin-top: 0;
  }
  .shisetsu_list .item .more_btn a {
    height: 2.727vw;
    font-size: 1.273vw;
    line-height: 2.455vw;
  }
}
@media (max-width: 767px) {
  .shisetsu_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 375px;
    margin: 0 auto;
  }
  .shisetsu_list:before {
    content: "";
    display: block;
    width: 42%;
    order: 1;
  }
  .shisetsu_list:after {
    content: "";
    display: block;
    width: 42%;
  }
  .shisetsu_list .item {
    width: 48%;
    margin-top: 25px;
  }
  .shisetsu_list .item:nth-child(-n+4) {
    margin-top: 25px;
  }
  .shisetsu_list .item:nth-child(-n+2) {
    margin-top: 0;
  }
  .shisetsu_list .item .img {
    width: 100%;
    height: 110px;
    margin-bottom: 6px;
  }
  .shisetsu_list .item .cat {
    height: 18px;
    line-height: 18px;
    padding: 0 8px;
    border-radius: 9px;
    margin-bottom: 4px;
  }
  .shisetsu_list .item .ttl {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .shisetsu_list .item .more_btn {
    margin-top: 0;
  }
  .shisetsu_list .item .more_btn a {
    min-width: initial;
    width: 100%;
    height: 21px;
    font-size: 12px;
    line-height: 19px;
  }
}
/********************************************
* single-post
********************************************/
.single-post .content_main {
  padding-bottom: 100px;
}
.single-post .content_main .sec_inner {
  max-width: 750px;
}

.single_content .post_ttl {
  position: relative;
  padding-bottom: 25px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 35px;
}
.single_content .post_ttl_inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.single_content .post_ttl .category {
  text-align: center;
  min-width: 100px;
  font-size: 14px;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 3px;
  background-color: #ffdc3c;
}
.single_content .post_ttl .category.daihuku {
  background-color: #2b9a96;
}
.single_content .post_ttl .category.sherbet {
  background-color: #c18080;
}
.single_content .post_ttl .category.kitchen {
  background-color: #0080a0;
}
.single_content .post_ttl .date {
  font-size: 17px;
  line-height: 1;
}
.single_content .post_ttl .ttl {
  font-size: 24px;
  font-weight: bold;
}
.single_content .post_body h2 {
  font-size: 19px;
  font-weight: bold;
  border-left: 4px solid #a27e39;
  padding: 4px 0 4px 10px;
  background-color: #f9f9f9;
  margin: 50px 0 15px;
}
.single_content .post_body h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 25px 0 8px;
}
.single_content .post_body p {
  margin: 0 0 20px;
}
.single_content .post_body a {
  color: #ffdc3c;
  text-decoration: underline;
}
.single_content .post_body a:hover {
  text-decoration: none;
}
.single_content .post_body strong {
  font-weight: bold;
}
.single_content .post_body ul {
  list-style-type: none;
  margin: 0 0 20px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .single_content .post_body ul {
    margin: 0 0 1.818vw;
  }
}
.single_content .post_body ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.single_content .post_body ul li:before {
  content: "・";
}
.single_content .post_body ol {
  padding-left: 1.1em;
  margin: 0 0 20px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .single_content .post_body ol {
    margin: 0 0 1.818vw;
  }
}
.single_content .post_body .btn a {
  text-decoration: none;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .single-post .content_main {
    padding-bottom: 9.091vw;
  }
  .single_content .post_ttl {
    position: relative;
    padding-bottom: 2.273vw;
    border-bottom: 1px solid #ccc;
    margin-bottom: 3.182vw;
  }
  .single_content .post_ttl_inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.818vw;
  }
  .single_content .post_ttl .category {
    text-align: center;
    min-width: 9.091vw;
    font-size: 1.273vw;
    line-height: 1;
    padding: 0.364vw 0.545vw;
    background-color: #ffdc3c;
  }
  .single_content .post_ttl .date {
    font-size: 1.545vw;
    line-height: 1;
  }
  .single_content .post_ttl .ttl {
    font-size: 2.182vw;
    font-weight: bold;
  }
  .single_content .post_body h2 {
    font-size: 1.727vw;
    font-weight: bold;
    border-left: 4px solid #a27e39;
    padding: 0.364vw 0 0.364vw 0.909vw;
    background-color: #f9f9f9;
    margin: 4.545vw 0 1.364vw;
  }
  .single_content .post_body h3 {
    font-size: 1.455vw;
    font-weight: bold;
    margin: 2.273vw 0 0.727vw;
  }
  .single_content .post_body p {
    margin: 0 0 1.818vw;
  }
  .single_content .post_body a {
    text-decoration: underline;
  }
  .single_content .post_body a:hover {
    text-decoration: none;
  }
  .single_content .post_body .btn a {
    text-decoration: none;
  }
}
@media (max-width: 767px) {
  .single-post .content_main {
    padding-bottom: 50px;
  }
  .single_content .post_ttl {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  .single_content .post_ttl_inner {
    margin-bottom: 10px;
  }
  .single_content .post_ttl .category {
    font-size: 10px;
    padding: 3px 4px;
  }
  .single_content .post_ttl .date {
    font-size: 13px;
  }
  .single_content .post_ttl .ttl {
    font-size: 18px;
  }
  .single_content .post_body h2 {
    font-size: 15px;
    padding: 3px 0 3px 8px;
    border-left: 3px solid #a27e39;
    margin: 30px 0 10px;
  }
  .single_content .post_body h3 {
    font-size: 14px;
    margin: 15px 0 5px;
  }
}
/********************************************
* single-shisetsu
********************************************/
.single-shisetsu .content_main {
  padding-bottom: 100px;
}
.single-shisetsu .content_main .sec_inner {
  max-width: 750px;
}

.single_content_shisetsu .post_ttl {
  position: relative;
  padding-bottom: 25px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 35px;
}
.single_content_shisetsu .post_ttl_inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.single_content_shisetsu .post_ttl .category {
  text-align: center;
  min-width: 100px;
  font-size: 14px;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 3px;
  background-color: #ffdc3c;
}
.single_content_shisetsu .post_ttl .category.daihuku {
  background-color: #2b9a96;
}
.single_content_shisetsu .post_ttl .category.sherbet {
  background-color: #c18080;
}
.single_content_shisetsu .post_ttl .category.kitchen {
  background-color: #0080a0;
}
.single_content_shisetsu .post_ttl .date {
  font-size: 17px;
  line-height: 1;
}
.single_content_shisetsu .post_ttl .ttl {
  font-size: 24px;
  font-weight: bold;
}
.single_content_shisetsu .post_body h2 {
  font-size: 19px;
  font-weight: bold;
  border-left: 4px solid #a27e39;
  padding: 4px 0 4px 10px;
  background-color: #f9f9f9;
  margin: 50px 0 15px;
}
.single_content_shisetsu .post_body h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 25px 0 8px;
}
.single_content_shisetsu .post_body p {
  margin: 0 0 20px;
}
.single_content_shisetsu .post_body a {
  color: #ffdc3c;
  text-decoration: underline;
}
.single_content_shisetsu .post_body a:hover {
  text-decoration: none;
}
.single_content_shisetsu .post_body .btn a {
  text-decoration: none;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .single-shisetsu .content_main {
    padding-bottom: 9.091vw;
  }
  .single_content_shisetsu .post_ttl {
    position: relative;
    padding-bottom: 2.273vw;
    border-bottom: 1px solid #ccc;
    margin-bottom: 3.182vw;
  }
  .single_content_shisetsu .post_ttl_inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.818vw;
  }
  .single_content_shisetsu .post_ttl .category {
    text-align: center;
    min-width: 9.091vw;
    font-size: 1.273vw;
    line-height: 1;
    padding: 0.364vw 0.545vw;
    background-color: #ffdc3c;
  }
  .single_content_shisetsu .post_ttl .date {
    font-size: 1.545vw;
    line-height: 1;
  }
  .single_content_shisetsu .post_ttl .ttl {
    font-size: 2.182vw;
    font-weight: bold;
  }
  .single_content_shisetsu .post_body h2 {
    font-size: 1.727vw;
    font-weight: bold;
    border-left: 4px solid #a27e39;
    padding: 0.364vw 0 0.364vw 0.909vw;
    background-color: #f9f9f9;
    margin: 4.545vw 0 1.364vw;
  }
  .single_content_shisetsu .post_body h3 {
    font-size: 1.455vw;
    font-weight: bold;
    margin: 2.273vw 0 0.727vw;
  }
  .single_content_shisetsu .post_body p {
    margin: 0 0 1.818vw;
  }
  .single_content_shisetsu .post_body a {
    text-decoration: underline;
  }
  .single_content_shisetsu .post_body a:hover {
    text-decoration: none;
  }
  .single_content_shisetsu .post_body .btn a {
    text-decoration: none;
  }
}
@media (max-width: 767px) {
  .single-shisetsu .content_main {
    padding-bottom: 50px;
  }
  .single_content_shisetsu .post_ttl {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  .single_content_shisetsu .post_ttl_inner {
    margin-bottom: 10px;
  }
  .single_content_shisetsu .post_ttl .category {
    font-size: 10px;
    padding: 3px 4px;
  }
  .single_content_shisetsu .post_ttl .date {
    font-size: 13px;
  }
  .single_content_shisetsu .post_ttl .ttl {
    font-size: 18px;
  }
  .single_content_shisetsu .post_body h2 {
    font-size: 15px;
    padding: 3px 0 3px 8px;
    border-left: 3px solid #a27e39;
    margin: 30px 0 10px;
  }
  .single_content_shisetsu .post_body h3 {
    font-size: 14px;
    margin: 15px 0 5px;
  }
}
/* contactForm
********************************************/
.contactForm .box .wpcf7c-elm-step2 {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #ffdc3c;
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  margin: 60px 0 30px;
  border: 2px solid #ffdc3c;
}
.contactForm .box input.wpcf7c-conf, .contactForm .box textarea.wpcf7c-conf {
  background: #eee !important;
  border: solid 1px #eee;
  color: #666;
}
.contactForm .box .item dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  clear: left;
  float: left;
  line-height: 52px;
  height: 52px;
  width: 260px;
  font-size: 16px;
  vertical-align: middle;
  padding-right: 35px;
  letter-spacing: 0.025em;
}
.contactForm .box .item dt span {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
}
.contactForm .box .item dt .red {
  color: #ed1c24;
}
.contactForm .box .item dt.radio {
  height: auto;
  line-height: 1;
}
.contactForm .box .item dd {
  font-size: 16px;
  vertical-align: middle;
  margin-left: 260px;
  margin-bottom: 40px;
}
.contactForm .box .item dd .your-email {
  display: block;
  margin-bottom: 0;
}
.contactForm .box .item dd input,
.contactForm .box .item dd textarea {
  font-family: "M PLUS 1p";
  font-size: 16px;
  width: 100%;
  height: 52px;
  max-width: 100%;
  margin: 0;
  padding: 15px 12px;
  border: 2px solid #000;
}
.contactForm .box .item dd textarea {
  width: 100%;
  height: 250px;
}
.contactForm .box .item dd input:focus,
.contactForm .box .item dd textarea:focus {
  font-size: 16px;
}
.contactForm .box .item dd input[type=number]::-webkit-outer-spin-button,
.contactForm .box .item dd input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.contactForm .box .item dd input[type=number] {
  -moz-appearance: textfield;
}
.contactForm .box .item dd.inputShort input {
  display: block;
  width: 300px;
}
.contactForm .box .item dd.inputMiddle input {
  display: block;
  width: 600px;
}
.contactForm .box .item dd.inputVeryshort input {
  display: block;
  width: 80px;
}
.contactForm .box .item dd.inputLong input {
  width: 100%;
}
.contactForm .box .item dd.radio {
  line-height: 1;
}
.contactForm .box .item dd.radio input[type=radio] {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
}
.contactForm .box .item dd.radio select {
  padding: 8px;
  margin-left: 10px;
  margin-bottom: 10px;
}
.contactForm .box .item dd.radio .wpcf7-list-item {
  margin: 0 0 8px 0;
}
.contactForm .box .item dd.radio .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.contactForm .box .item dd.radio .wpcf7-list-item label {
  width: 100%;
  padding: 0;
}
.contactForm .box .item dd.radio .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 16px;
}
.contactForm .box .item dd.pulldown {
  padding: 30px 0;
}
.contactForm .box .item dd.check input[type=checkbox] {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
}
.contactForm .box .item dd.check select {
  padding: 8px;
  margin-left: 10px;
  margin-bottom: 10px;
}
.contactForm .box .item dd.check .wpcf7-list-item {
  display: block;
  margin: 0 0 8px 0;
}
.contactForm .box .item dd.check .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.contactForm .box .item dd.check .wpcf7-list-item label {
  width: 100%;
  padding: 0;
}
.contactForm .box .item dd.check .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 16px;
}
.contactForm .box .item dd .wpcf7-radio .wpcf7-list-item {
  margin: 0 1em 0 0;
}
.contactForm .box .item dd .wpcf7-radio input {
  display: inline-block;
  height: 20px;
  width: 20px;
  vertical-align: -3px;
}
.contactForm .box .item dd .address li {
  display: block;
  margin-bottom: 20px;
}
.contactForm .box .item dd .address li.postal input {
  width: 220px;
  margin-right: 20px;
}
.contactForm .box .item dd .address li:last-child {
  margin-bottom: 0;
}
.contactForm .box .input_btn {
  text-align: center;
  margin: 80px auto 0;
}
.contactForm .box .input_btn .wpcf7-spinner {
  display: block;
  margin: 0 auto;
}
.contactForm .box .input_btn input[type=submit] {
  text-align: center;
  position: relative;
  display: inline-block;
  min-width: 300px;
  height: 50px;
  line-height: 45px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  background: #ffdc3c;
  border-radius: 25px;
  border: 2px solid #000;
  box-shadow: 0px 3px 0px 0px #000;
  transition: 0.2s;
}
.contactForm .box .input_btn input[type=submit]:hover {
  background-color: #fff;
}
.contactForm .box input::-webkit-input-placeholder {
  color: #ccc;
  font-size: 16px;
  font-family: "M PLUS 1p";
}
.contactForm .box input:-moz-placeholder {
  color: #ccc;
  font-size: 16px;
  font-family: "M PLUS 1p";
}
.contactForm .box input::-moz-placeholder {
  color: #ccc;
  font-size: 16px;
  font-family: "M PLUS 1p";
}
.contactForm .box input:-ms-input-placeholder {
  color: #ccc;
  font-size: 16px;
  font-family: "M PLUS 1p";
}
.contactForm .box textarea::-webkit-input-placeholder {
  color: #ccc;
  font-size: 16px;
  font-family: "M PLUS 1p";
}
.contactForm .box textarea:-moz-placeholder {
  color: #ccc;
  font-size: 16px;
  font-family: "M PLUS 1p";
}
.contactForm .box textarea::-moz-placeholder {
  color: #ccc;
  font-size: 16px;
  font-family: "M PLUS 1p";
}
.contactForm .box textarea:-ms-input-placeholder {
  color: #ccc;
  font-size: 16px;
  font-family: "M PLUS 1p";
}

@media (min-width: 768px) and (max-width: 1200px) {
  .contactForm .box .wpcf7c-elm-step2 {
    display: block;
    font-size: 1.818vw;
    font-weight: bold;
    color: #ffdc3c;
    text-align: center;
    padding: 1.364vw;
    border-radius: 0.455vw;
    margin: 5.455vw 0 2.727vw;
    border: 2px solid #ffdc3c;
  }
  .contactForm .box input.wpcf7c-conf, .contactForm .box textarea.wpcf7c-conf {
    background: #eee !important;
    border: solid 1px #eee;
    color: #666;
  }
  .contactForm .box .item dt {
    clear: left;
    float: left;
    line-height: 4.727vw;
    height: 4.727vw;
    width: 23.636vw;
    font-size: 1.455vw;
    vertical-align: middle;
    letter-spacing: 0.025em;
  }
  .contactForm .box .item dt span {
    display: inline-block;
    font-size: 1.455vw;
    line-height: 1;
  }
  .contactForm .box .item dt .red {
    color: #ed1c24;
  }
  .contactForm .box .item dt.radio {
    height: auto;
    line-height: 1;
  }
  .contactForm .box .item dd {
    font-size: 1.455vw;
    vertical-align: middle;
    margin-left: 23.636vw;
    margin-bottom: 3.636vw;
  }
  .contactForm .box .item dd .your-email {
    display: block;
    margin-bottom: 0;
  }
  .contactForm .box .item dd input,
  .contactForm .box .item dd textarea {
    font-family: "M PLUS 1p";
    font-size: 1.455vw;
    width: 100%;
    height: 4.727vw;
    max-width: 100%;
    margin: 0;
    padding: 1.364vw 1.091vw;
    border: 2px solid #000;
  }
  .contactForm .box .item dd textarea {
    width: 100%;
    height: 22.727vw;
  }
  .contactForm .box .item dd input:focus,
  .contactForm .box .item dd textarea:focus {
    font-size: 1.455vw;
  }
  .contactForm .box .item dd input[type=number]::-webkit-outer-spin-button,
  .contactForm .box .item dd input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .contactForm .box .item dd input[type=number] {
    -moz-appearance: textfield;
  }
  .contactForm .box .item dd.inputShort input {
    display: block;
    width: 27.273vw;
  }
  .contactForm .box .item dd.inputMiddle input {
    display: block;
    width: 54.545vw;
  }
  .contactForm .box .item dd.inputVeryshort input {
    display: block;
    width: 7.273vw;
  }
  .contactForm .box .item dd.inputLong input {
    width: 100%;
  }
  .contactForm .box .item dd.radio {
    line-height: 1;
  }
  .contactForm .box .item dd.radio input[type=radio] {
    width: 1.455vw;
    height: 1.455vw;
    vertical-align: -0.273vw;
  }
  .contactForm .box .item dd.radio select {
    padding: 0.727vw;
    margin-left: 0.909vw;
    margin-bottom: 0.909vw;
  }
  .contactForm .box .item dd.radio .wpcf7-list-item {
    margin: 0 0 0.727vw 0;
  }
  .contactForm .box .item dd.radio .wpcf7-list-item:last-child {
    margin-bottom: 0;
  }
  .contactForm .box .item dd.radio .wpcf7-list-item label {
    width: 100%;
    padding: 0;
  }
  .contactForm .box .item dd.radio .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 1.455vw;
  }
  .contactForm .box .item dd.pulldown {
    padding: 2.727vw 0;
  }
  .contactForm .box .item dd.check input[type=checkbox] {
    width: 1.455vw;
    height: 1.455vw;
    vertical-align: -0.273vw;
  }
  .contactForm .box .item dd.check select {
    padding: 0.727vw;
    margin-left: 0.909vw;
    margin-bottom: 0.909vw;
  }
  .contactForm .box .item dd.check .wpcf7-list-item {
    display: block;
    margin: 0 0 0.727vw 0;
  }
  .contactForm .box .item dd.check .wpcf7-list-item:last-child {
    margin-bottom: 0;
  }
  .contactForm .box .item dd.check .wpcf7-list-item label {
    width: 100%;
    padding: 0;
  }
  .contactForm .box .item dd.check .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 1.455vw;
  }
  .contactForm .box .item dd .wpcf7-radio .wpcf7-list-item {
    margin: 0 1em 0 0;
  }
  .contactForm .box .item dd .wpcf7-radio input {
    display: inline-block;
    height: 1.818vw;
    width: 1.818vw;
    vertical-align: -0.273vw;
  }
  .contactForm .box .item dd .address li {
    display: block;
    margin-bottom: 1.818vw;
  }
  .contactForm .box .item dd .address li.postal input {
    width: 20vw;
    margin-right: 1.818vw;
  }
  .contactForm .box .item dd .address li:last-child {
    margin-bottom: 0;
  }
  .contactForm .box .input_btn {
    width: 27.273vw;
  }
  .contactForm .box .input_btn input[type=submit] {
    text-align: center;
    position: relative;
    display: inline-block;
    min-width: 25vw;
    height: 4.167vw;
    line-height: 3.217vw;
    font-size: 1.333vw;
    font-weight: bold;
    background: #ffdc3c;
    border-radius: 2.083vw;
    border: 2px solid #000;
    box-shadow: 0px 0.25vw 0px 0px #000;
  }
  .contactForm .box input::-webkit-input-placeholder {
    color: #ccc;
    font-size: 1.455vw;
    font-family: "M PLUS 1p";
  }
  .contactForm .box input:-moz-placeholder {
    color: #ccc;
    font-size: 1.455vw;
    font-family: "M PLUS 1p";
  }
  .contactForm .box input::-moz-placeholder {
    color: #ccc;
    font-size: 1.455vw;
    font-family: "M PLUS 1p";
  }
  .contactForm .box input:-ms-input-placeholder {
    color: #ccc;
    font-size: 1.455vw;
    font-family: "M PLUS 1p";
  }
  .contactForm .box textarea::-webkit-input-placeholder {
    color: #ccc;
    font-size: 1.455vw;
    font-family: "M PLUS 1p";
  }
  .contactForm .box textarea:-moz-placeholder {
    color: #ccc;
    font-size: 1.455vw;
    font-family: "M PLUS 1p";
  }
  .contactForm .box textarea::-moz-placeholder {
    color: #ccc;
    font-size: 1.455vw;
    font-family: "M PLUS 1p";
  }
  .contactForm .box textarea:-ms-input-placeholder {
    color: #ccc;
    font-size: 1.455vw;
    font-family: "M PLUS 1p";
  }
}
@media (max-width: 767px) {
  .contactForm {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .contactForm .box .wpcf7c-elm-step2 {
    font-size: 14px;
    text-align: left;
    padding: 10px 5%;
    margin: 20px 0;
  }
  .contactForm .box .item {
    margin-bottom: 20px;
  }
  .contactForm .box .item dt {
    float: none;
    line-height: 1.6;
    height: auto;
    width: 100%;
    font-size: 14px;
    padding: 0;
    border: 0;
    margin-bottom: 10px;
  }
  .contactForm .box .item dd {
    font-size: 16px;
    padding: 0;
    border: none;
    margin: 0;
  }
  .contactForm .box .item dd .your-email {
    margin-bottom: 0;
  }
  .contactForm .box .item dd input,
  .contactForm .box .item dd textarea {
    font-size: 16px;
    width: 100%;
    padding: 12px 10px;
    border: none;
    border: 1px solid #ccc;
    background-color: #fcfcfc;
  }
  .contactForm .box .item dd textarea {
    width: 100%;
    line-height: 1.6;
  }
  .contactForm .box .item dd input:focus,
  .contactForm .box .item dd textarea:focus {
    font-size: 16px;
  }
  .contactForm .box .item dd input[type=number]::-webkit-outer-spin-button,
  .contactForm .box .item dd input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .contactForm .box .item dd input[type=number] {
    -moz-appearance: textfield;
  }
  .contactForm .box .item dd.inputShort input {
    display: block;
    width: 100%;
  }
  .contactForm .box .item dd.inputLong input {
    display: block;
    width: 100%;
  }
  .contactForm .box .item dd.radio {
    padding: 0;
    line-height: 1.6;
  }
  .contactForm .box .item dd.radio select {
    padding: 8px;
    margin-left: 10px;
    margin-bottom: 10px;
  }
  .contactForm .box .item dd.radio .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 14px;
  }
  .contactForm .box .item dd.pulldown {
    padding: 0;
  }
  .contactForm .box .item dd.check {
    padding-top: 0;
  }
  .contactForm .box .item dd.check input[type=checkbox] {
    width: 14px;
    height: 14px;
    vertical-align: -3px;
  }
  .contactForm .box .item dd.check select {
    padding: 8px;
    margin-left: 10px;
    margin-bottom: 10px;
  }
  .contactForm .box .item dd.check .wpcf7-list-item {
    margin: 0 0 15px 0;
  }
  .contactForm .box .item dd.check .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 16px;
  }
  .contactForm .box .item dd .address li {
    display: block;
    margin-bottom: 15px;
  }
  .contactForm .box .item dd .address li.postal input {
    display: inline-block;
    width: 50%;
    margin-right: 3px;
  }
  .contactForm .box .item dd .address li.postal .txt {
    display: inline-block;
    margin: 0;
  }
  .contactForm .box .item dd .address li:last-child {
    margin-bottom: 0;
  }
  .contactForm .box .input_btn {
    width: 100%;
    margin: 40px auto 0;
  }
  .contactForm .box .input_btn input[type=submit] {
    height: 35px;
    line-height: 30px;
    min-width: 75%;
    max-width: 300px;
    font-size: 13px;
    border-radius: 17.5;
    border: 1px solid #000;
    box-shadow: 0px 1.5px 0px 0px #000;
  }
  .contactForm .box .ajax-loader {
    display: block;
  }
}
/* form privacy
********************************************/
.privacy {
  margin-top: 60px;
}
.privacy_ttl {
  text-align: center;
  font-size: 18px;
  padding-bottom: 25px;
  border-bottom: 1px solid #000;
  margin-bottom: 25px;
}
.privacy .atten_txt {
  text-align: center;
  margin-bottom: 35px;
}
.privacy .wrap {
  height: 300px;
  overflow-y: scroll;
  padding: 30px;
  border: 2px solid #000;
  background-color: #fff;
  margin-bottom: 30px;
  text-align: left;
}
.privacy .ttl {
  font-size: 24px;
  font-weight: bold;
  margin: 30px auto 6px;
}
.privacy .ttl_small {
  font-size: 18px;
  font-weight: bold;
  margin: 20px auto 6px;
}
.privacy .desc_list li {
  font-weight: normal;
  margin-bottom: 10px;
}
.privacy .txt {
  margin-bottom: 10px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .privacy {
    margin-top: 5.455vw;
  }
  .privacy_ttl {
    text-align: center;
    font-size: 1.636vw;
    padding-bottom: 2.273vw;
    border-bottom: 1px solid #000;
    margin-bottom: 2.273vw;
  }
  .privacy .atten_txt {
    text-align: center;
    margin-bottom: 3.182vw;
  }
  .privacy .wrap {
    height: 27.273vw;
    overflow-y: scroll;
    padding: 2.727vw;
    border: 2px solid #000;
    background-color: #fff;
    margin-bottom: 2.727vw;
    text-align: left;
  }
  .privacy .ttl {
    font-size: 2.182vw;
    font-weight: bold;
    margin: 30px auto 6px;
  }
  .privacy .ttl_small {
    font-size: 1.636vw;
    font-weight: bold;
    margin: 20px auto 6px;
  }
  .privacy .desc_list li {
    font-weight: normal;
    margin-bottom: 0.909vw;
  }
  .privacy .txt {
    margin-bottom: 0.909vw;
  }
}
@media (max-width: 767px) {
  .privacy {
    margin-top: 30px;
  }
  .privacy_ttl {
    font-size: 16px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .privacy .atten_txt {
    text-align: left;
    margin-bottom: 20px;
  }
  .privacy .wrap {
    height: 180px;
    padding: 20px 4%;
  }
  .privacy .ttl {
    font-size: 20px;
    margin: 25px auto 4px;
  }
  .privacy .ttl_small {
    font-size: 14px;
    margin: 15px auto 6px;
  }
  .privacy .desc_list li {
    font-size: 12px;
    overflow-wrap: break-word;
    margin-bottom: 6px;
  }
  .privacy .txt {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
/* checkbox
********************************************/
.termsCheck {
  text-align: center;
}
.termsCheck label {
  font-size: 20px;
  line-height: 135%;
  position: relative;
  margin: 0.5rem;
  cursor: pointer;
}
.termsCheck .checkDesign {
  position: relative;
  margin: 0 1rem 0 0;
  cursor: pointer;
  vertical-align: 7px;
}
.termsCheck .checkDesign:before {
  position: absolute;
  z-index: 1;
  top: 0.125rem;
  left: 0.26rem;
  width: 1rem;
  height: 0.6rem;
  content: "";
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transform: rotate(-45deg) scale(0, 0);
  border: 3px solid #f00;
  border-top-style: none;
  border-right-style: none;
}
.termsCheck .checkDesign:checked:before {
  transform: rotate(-45deg) scale(1, 1);
}
.termsCheck .checkDesign:after {
  position: absolute;
  top: -0.125rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  cursor: pointer;
  border: 1px solid #000;
  background: #ffffff;
}
.termsCheck .moreBtn {
  margin-top: 30px !important;
  margin-bottom: 8px !important;
}
.termsCheck .atten {
  font-size: 14px;
  color: #f00;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .termsCheck {
    text-align: center;
  }
  .termsCheck label {
    font-size: 1.818vw;
    line-height: 135%;
    position: relative;
    margin: 0.5rem;
    cursor: pointer;
  }
  .termsCheck .checkDesign {
    position: relative;
    margin: 0 1rem 0 0;
    cursor: pointer;
    vertical-align: 0.636vw;
  }
  .termsCheck .checkDesign:before {
    position: absolute;
    z-index: 1;
    top: 0.125rem;
    left: 0.26rem;
    width: 1rem;
    height: 0.6rem;
    content: "";
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transform: rotate(-45deg) scale(0, 0);
    border: 3px solid #f00;
    border-top-style: none;
    border-right-style: none;
  }
  .termsCheck .checkDesign:checked:before {
    transform: rotate(-45deg) scale(1, 1);
  }
  .termsCheck .checkDesign:after {
    position: absolute;
    top: -0.125rem;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    content: "";
    cursor: pointer;
    border: 1px solid #000;
    background: #ffffff;
  }
  .termsCheck .moreBtn {
    margin-top: 30px !important;
    margin-bottom: 8px !important;
  }
  .termsCheck .atten {
    font-size: 1.273vw;
    color: #f00;
  }
}
@media (max-width: 767px) {
  .termsCheck label {
    font-size: 14px;
    line-height: 1;
  }
  .termsCheck .checkDesign {
    position: relative;
    margin: 0 1.2rem 0 0;
    cursor: pointer;
    vertical-align: 4px;
  }
}
/* hide reCAPTCHA v3 badge 
********************************************/
body:not(#contact) .grecaptcha-badge {
  visibility: hidden;
}/*# sourceMappingURL=common.css.map */