@charset "UTF-8";
/*---------------------------
wrap
----------------------------*/
/*---------------------------
tablet PCを表示
----------------------------*/
@media (min-width: 768px) {
  body {
    min-width: 1100px;
  }
}
#wrap {
  width: 100%;
  background: url(../img/common/bg.jpg);
  margin: 0px;
  padding: 0px;
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  #wrap {
    /*tablet*/
    overflow: hidden;
  }
}
@media screen and (max-width: 640px) {
  #wrap {
    /*sp*/
    overflow: hidden;
  }
}

.sp_nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_nav {
    display: block;
    position: fixed;
    width: 12vw;
    height: 12vw;
    background-image: url(../img/common/sp_nav.svg);
    background-size: 70% 70%;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #FF0000;
    top: 2vw;
    right: 3vw;
    border-radius: 100px;
    z-index: 1001;
  }
}

/*---------------------------
header
----------------------------*/
header {
  margin: 0px;
  padding: 0;
  font-size: 10px;
}
header .inner {
  padding: 1.3rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-between;
  align-content: space-between;
  align-items: center;
  -webkit-align-items: center;
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  header .inner {
    padding: 0.8rem 4%;
  }
}
header .inner .logo {
  width: 40%;
  text-align: left;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  header .inner .logo {
    width: 30%;
    padding-left: 0;
  }
  header .inner .logo h1 {
    width: 80%;
  }
}
header .inner .logo h1 a {
  text-decoration: none;
  color: #E60012;
  text-align: left;
  font-weight: bold;
  font-size: 0.6rem;
  display: inline-block;
}
header .inner .logo h1 a img {
  width: 100%;
  max-width: 116px;
  height: auto;
  vertical-align: middle;
}
header .inner .logo h1 a p {
  display: inline-block;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  header .inner .logo h1 a p {
    display: none;
  }
}
header .inner .menu {
  width: 60%;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  header .inner .menu {
    justify-content: flex-end;
    width: 70%;
    padding-right: 13vw;
  }
}
header .inner .menu > form {
  position: relative;
}
header .inner .menu .search {
  display: block;
}
@media screen and (max-width: 767px) {
  header .inner .menu .search {
    display: none;
  }
}
header .inner .menu .search input[type="search"] {
  padding: 0.5rem 1.0rem;
  border: 1px solid #ccc;
  border-radius: 100px;
  outline: none;
  background: none;
  font-size: 0.9rem;
  vertical-align: center;
  width: 228px;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  header .inner .menu .search input[type="search"] {
    width: 95%;
    font-size: 0.8rem;
    padding: 0.6rem 1.0rem;
  }
}
header .inner .menu .search input[type="image"] {
  position: absolute;
  top: 3px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  header .inner .menu .search input[type="image"] {
    top: 3px;
    right: 15px;
  }
}
header .inner .menu a.reserve {
  background-color: #07AE69;
  background-image: url(../img/common/header_yoyaku.png);
  background-position: 7% center;
  background-size: 10%;
  background-repeat: no-repeat;
  color: #fff;
  display: inline-block;
  border-radius: 50px;
  width: 152px;
  text-decoration: none;
  text-align: center;
  padding: 0rem 1.0rem;
  padding-top: 0.5rem;
  font-size: 0.9rem;
  position: relative;
  text-indent: 1rem;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  header .inner .menu a.reserve {
    width: 50%;
    font-size: 0.7rem;
    padding: 0.3rem 0;
    background-image: none;
    text-indent: 0;
  }
}
header .inner .menu .language select {
  width: 150px;
  border: 1px solid #999;
  border-radius: 100px;
  padding: 0.5rem 1.0rem;
}
@media screen and (max-width: 767px) {
  header .inner .menu .language select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #999;
    border-radius: 100px;
    width: 100%;
    padding: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  header .inner .menu .language {
    width: 48%;
  }
}
header .inner ul {
  width: 100%;
  display: none;
}
@media screen and (max-width: 767px) {
  header .inner ul {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    padding: 0.5rem 0 0 0;
  }
}
header .inner ul li {
  width: 24.5%;
  list-style: none;
}
header .inner ul li a {
  height: 38px;
  display: block;
  background: #ccc;
  color: #fff;
  font-size: 0.6rem;
  text-align: center;
  padding: 0.3rem 0;
  border-radius: 5px;
  text-decoration: none;
  line-height: 0.8rem;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
header .inner ul li:nth-of-type(1) a {
  background: #E50012;
}
header .inner ul li:nth-of-type(2) a {
  background: #173BA4;
}
header .inner ul li:nth-of-type(3) a {
  background: #FFA100;
}
header .inner ul li:nth-of-type(4) a {
  background: #00ADFF;
}

/*---------------------------
nav
-----------------------------*/
nav {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  display: none;
  background: #fff;
  padding: 1.0rem 1.5rem;
}
@media screen and (max-width: 767px) {
  nav {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  }
}
nav li {
  padding: 0.3rem 0;
  list-style: none;
}
nav li a {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0.5rem;
  display: block;
}
nav li a.txt {
  border: none;
  text-align: left;
  font-size: 0.8rem;
  padding: 0;
  padding-left: 7%;
  background-image: url(../img/common/icon_arrow_gray.svg);
  background-size: 6% auto;
  background-repeat: no-repeat;
  background-position: left center;
}
nav .head {
  padding: 1.0rem 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  nav .head {
    padding: 0 0 0.5rem 0;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
  }
}
nav .head a {
  background: #999;
  color: #fff;
  border-radius: 100px;
  padding: 0.3rem 1.0rem;
  text-decoration: none;
}
nav .head .language {
  display: none;
}
nav .head .language select {
  border: 1px solid #ccc;
  border-radius: 100px;
  padding: 0.4rem 1.0rem;
}
@media screen and (max-width: 767px) {
  nav .head .language {
    display: block;
  }
}
nav .head .search {
  display: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  nav .head .search {
    display: block;
    width: 50%;
    padding-left: 1%;
  }
}
nav .head .search input[type="search"] {
  padding: 0.4rem 1.0rem;
  border: 1px solid #ccc;
  border-radius: 100px;
  outline: none;
  background: none;
  font-size: 0.9rem;
  vertical-align: center;
  width: 288px;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  nav .head .search input[type="search"] {
    width: 100%;
    font-size: 0.8rem;
    padding: 0.5rem 1.0rem;
  }
}
nav .head .search input[type="image"] {
  position: absolute;
  top: 3px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  nav .head .search input[type="image"] {
    top: 2px;
    right: 2px;
  }
}

/*---------------------------
footer
---------------------------*/
footer {
  width: 100%;
  margin: 0px;
  text-align: center;
  padding: 40px 0px;
}
footer .bnr {
  margin-bottom: -60px;
}
@media screen and (max-width: 767px) {
  footer .bnr {
    margin-bottom: -40px;
  }
}
footer .bnr .row {
  max-width: 1100px;
  height: 108px;
  margin: auto;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
@media screen and (max-width: 767px) {
  footer .bnr .row {
    max-width: 90%;
    height: auto;
  }
}
footer .bnr .row .col {
  width: 24%;
}
@media screen and (max-width: 767px) {
  footer .bnr .row .col {
    width: 49%;
  }
  footer .bnr .row .col:nth-of-type(1), footer .bnr .row .col:nth-of-type(2) {
    margin-bottom: 5px;
  }
}
footer .menu {
  background: #F0F0F0;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  footer .menu {
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  footer .menu .inner {
    max-width: 100%;
  }
}
footer .menu .inner .top {
  border-bottom: 1px solid #c6c6c6;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
footer .menu .inner .top > ul {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 36px 0 30px 0;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  footer .menu .inner .top > ul {
    display: block;
    text-align: left;
    width: 90%;
  }
}
footer .menu .inner .top > ul > li {
  list-style: none;
  margin-right: 60px;
}
@media screen and (max-width: 767px) {
  footer .menu .inner .top > ul > li {
    line-height: 2;
  }
}
footer .menu .inner .top > ul > li > a {
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 16px;
  text-indent: 3rem;
}
@media screen and (max-width: 767px) {
  footer .menu .inner .top > ul > li > a {
    font-size: 3vw;
  }
}
footer .menu .inner .top > ul > li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/icon_black.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  footer .menu .inner .top > ul > li > a::before {
    top: 15%;
  }
}
footer .menu .inner .top > ul > li:hover {
  opacity: 0.7;
}
footer .menu .inner .bottom {
  padding: 42px 0 25px 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  footer .menu .inner .bottom {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}
footer .menu .inner .bottom > h2 {
  font-size: 0.8rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  footer .menu .inner .bottom > h2 {
    font-size: 2.5vw;
  }
}
footer .menu .inner .bottom .container {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
footer .menu .inner .bottom .container .box {
  display: flex;
  width: 18%;
}
@media screen and (max-width: 767px) {
  footer .menu .inner .bottom .container .box {
    width: 46%;
    margin-bottom: 15px;
  }
}
footer .menu .inner .bottom .container .box .area > h3 {
  margin: 0 10px 10px 0;
  padding: 0px 5px;
  border: 1px solid #333;
  border-radius: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer .menu .inner .bottom .container .box .area > h3 {
    font-size: 2.5vw;
  }
}
footer .menu .inner .bottom .container .box ul li {
  list-style: none;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  footer .menu .inner .bottom .container .box ul li {
    font-size: 2.5vw;
  }
}
footer .menu .inner .bottom .container .box ul li a {
  text-decoration: none;
}
footer .menu .inner .bottom .container .box ul li a:hover {
  text-decoration: underline;
}
footer .menu .inner .bottom .container .box:nth-of-type(2) ul li:nth-of-type(3) {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  footer .menu .inner .bottom .container .box:nth-of-type(2) ul li:nth-of-type(3) {
    margin-top: 0;
  }
}
footer .menu .inner .bottom .container .box:nth-child(odd) {
  margin-right: 20px;
}
footer .menu .inner .bottom .logo_area {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  footer .menu .inner .bottom .logo_area {
    display: block;
    text-align: center;
  }
}
footer .menu .inner .bottom .logo_area > img {
  margin-right: 16px;
  width: 84px;
}
@media screen and (max-width: 767px) {
  footer .menu .inner .bottom .logo_area > img {
    margin-bottom: 10px;
    width: 20%;
  }
}
footer .menu .inner .bottom .logo_area > p {
  font-size: 12px;
  color: #E60012;
}
@media screen and (max-width: 767px) {
  footer .menu .inner .bottom .logo_area > p {
    font-size: 2.5vw;
  }
}
footer .copy {
  padding: 1.0rem;
  font-size: 0.6rem;
}

/*----------------------
main
------------------------*/
main {
  width: 100%;
  display: block;
}

/*----------------------
aside
------------------------*/
aside {
  width: 100%;
}

/*----------------------
search
------------------------*/
.search .inner .top h2 {
  font-size: 1.2rem;
  margin-bottom: 2.0rem;
  letter-spacing: 5px;
}
.search .inner .top .route {
  font-size: 1.1rem;
  margin-bottom: 1.0rem;
}

#search .inner .snumber {
  font-size: 1.2rem;
  padding: 1.0rem 0;
  text-align: center;
}
#search .inner .none {
  font-size: 1.2rem;
  padding: 1.0rem 0;
  text-align: center;
}
#search .inner ul {
  list-style: none;
  margin-bottom: 2.0rem;
}
#search .inner ul li a {
  display: block;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 1.0rem;
  margin-bottom: 0.5rem;
}
#search .inner ul li a:hover {
  background-color: #eee;
}
#search .inner .pager {
  padding: 1.0rem 0;
}
#search .inner .bt_back {
  padding: 1.0rem 0;
  border-top: 1px solid #ccc;
}

/*---------------------------
common
-----------------------------*/
* .inner {
  width: 100%;
  max-width: 1100px;
  margin: auto;
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  * .inner {
    /*tablet*/
    max-width: 94%;
  }
}
@media screen and (max-width: 767px) {
  * .inner {
    max-width: 90%;
  }
}

h2.bar {
  background: #E60011;
  color: #fff;
  padding: 1.0rem 1.5rem;
  margin-bottom: 2.0rem;
  border-radius: 5px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  h2.bar {
    padding: 0.5rem 1.0rem;
  }
}

.pagetop {
  background: url(../img/common/pagetop.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100%;
  width: 50px;
  height: 50px;
  display: block;
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 1001;
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 13vw;
    height: 13vw;
    right: 10px;
    bottom: 20px;
  }
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.content_title {
  width: 100%;
  background-size: cover;
  text-align: left;
  border-top: 3px solid #E60011;
  margin-bottom: 4.0rem;
}
@media screen and (max-width: 767px) {
  .content_title {
    margin-bottom: 1.0rem;
  }
}
.content_title .inner {
  padding: 0px;
  display: flex;
  display: -webkit-flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
@media screen and (max-width: 640px) {
  .content_title .inner {
    /*sp*/
    padding: 0px;
    max-width: 100%;
    flex-wrap: wrap;
  }
}
.content_title .inner h2 {
  width: auto;
  color: #fff;
  font-size: 1.1em;
  letter-spacing: 5px;
  color: #fff;
  padding: 1.1rem 1.0rem;
  background-color: #E60011;
  border-radius: 0 0 0 5px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .content_title .inner h2 {
    /*sp*/
    font-size: 1.0rem;
    text-align: center;
    width: 100%;
    padding: 0.5rem;
    letter-spacing: 0;
    text-align: center;
    border-radius: 0;
    font-size: 0.9rem;
  }
}
.content_title .inner h2:after {
  content: "";
  display: block;
  top: 0;
  right: -62px;
  width: 62px;
  height: 100%;
  position: absolute;
  background-image: url(../img/common/content_title_bg.png);
  background-position: top right;
  background-size: auto 100%;
}
.content_title .inner .bc {
  width: 50%;
  padding-top: 20px;
  text-align: right;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .content_title .inner .bc {
    width: 100%;
    padding-top: 10px;
    font-size: 0.8rem;
    padding-right: 5%;
  }
}
.content_title .inner .bc span {
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  .content_title .inner .bc span {
    font-size: 0.6rem;
  }
}
.content_title .inner .bc ul {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
.content_title .inner .bc ul li {
  padding: 0 0.5rem;
  padding-right: 1.5rem;
  list-style: none;
  position: relative;
}
.content_title .inner .bc ul li:first-child:after {
  content: ">";
  position: absolute;
  top: 0;
  right: 0px;
}

h3 {
  text-align: left;
}
h3.bar {
  font-size: 1.4em;
  font-weight: 500;
  color: #AC6BA8;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 3px solid #AC6BA8;
}

/*-----------------
タブ切り替え
------------------*/
.tab {
  margin: 5px 0px;
}
.tab li:nth-of-type(1).current {
  background-color: #7BA613;
  color: #fff;
}
.tab li:nth-of-type(1).current .selecting {
  display: block !important;
}
.tab li:nth-of-type(2).current {
  background-color: #FAA32D;
  color: #fff;
}
.tab li:nth-of-type(2).current .selecting {
  display: block !important;
}

.box.tab-contents {
  display: none;
}

.box.current {
  display: block;
}

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

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

* {
  box-sizing: border-box;
}
