@charset "UTF-8";
/*
Theme Name: やまぐちMaaS
*/
/* 定義 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap");
/* 基本設定 */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #3e3e3e;
  font-weight: 400;
}

img {
  display: block;
}

h2 {
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}
a.opacity:hover > * {
  opacity: 0.8;
  transition: 0.3s;
}

.lum-lightbox img {
  display: inherit;
}
@media (max-width: 460px) {
  .lum-lightbox .lum-lightbox-inner img {
    max-width: 100%;
    max-height: 100%;
  }
}

/*共通*/
.pick-color {
  color: #00a2dc;
}

/* 関数 */
header {
  display: flex;
  align-items: center;
  height: 6.1458333333vw;
}
@media screen and (max-width: 700px) {
  header {
    height: 23.5714285714vw;
  }
}
header .logo {
  margin-left: 2.2916666667vw;
  margin-right: auto;
}
header .logo .head {
  font-size: 0.78125vw;
  font-weight: 300;
}
@media screen and (max-width: 700px) {
  header .logo .head {
    font-size: 3.4285714286vw;
  }
}
header .logo .title {
  font-size: 1.5625vw;
  font-weight: 400;
  width: 11.9791666667vw;
}
header .logo .title img {
  width: 100%;
}
@media screen and (max-width: 700px) {
  header .logo .title {
    font-size: 6.5457142857vw;
    width: 42.8571428571vw;
  }
}
@media screen and (max-width: 700px) {
  header .menu {
    display: none;
  }
}
header .menu nav {
  display: flex;
  margin-right: 3.125vw;
}
header .menu nav li {
  font-size: 0.78125vw;
  margin-right: 2.34375vw;
}
@media screen and (max-width: 700px) {
  header .menu nav {
    display: none;
  }
}
header .spmenu {
  display: none;
  width: 9.2857142857vw;
  height: 7.1428571429vw;
  margin-right: 5vw;
}
@media screen and (max-width: 700px) {
  header .spmenu {
    display: block;
  }
}
header .spmenu label.button {
  position: relative;
  z-index: 9999;
  display: block;
  width: 9.4285714286vw;
  height: 6.8571428571vw;
  border-top: 1vw solid #00a2dc;
}
header .spmenu label.button:before, header .spmenu label.button:after {
  content: "";
  position: absolute;
  width: 9.4285714286vw;
  height: 0.8571428571vw;
  background-color: #00a2dc;
}
header .spmenu label.button:before {
  top: 2.1428571429vw;
}
header .spmenu label.button:after {
  top: 5.1428571429vw;
}
header .spmenu input {
  display: none;
}
header .spmenu .content {
  position: fixed;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: -100vw;
  background-color: #fff;
  transition: 0.3s;
  padding: 21.4285714286vw 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .spmenu .content .logo {
  margin: 0;
  text-align: center;
}
header .spmenu .content nav li {
  font-size: 4.5714285714vw;
  text-align: center;
  color: #00a2dc;
  margin: 8.5714285714vw 0;
  border-bottom: 2px solid;
  padding: 2.8571428571vw;
}
header .spmenu #check:checked ~ .content {
  right: 0px;
}
header .spmenu #check:checked ~ label.button {
  border-top: 0px;
}
header .spmenu #check:checked ~ label.button:before {
  top: 4vw;
  transform: rotate(45deg);
}
header .spmenu #check:checked ~ label.button:after {
  top: 4vw;
  transform: rotate(-45deg);
}
header .spmenu #check:checked ~ .back {
  right: 0;
}
header .sns {
  margin-right: 2.8125vw;
}
header .sns .icon {
  width: 1.9270833333vw;
}
header .sns .icon img {
  width: 100%;
}
@media screen and (max-width: 700px) {
  header .sns {
    display: none;
  }
}

#sp_dllink {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 999;
  background-color: #00a2dc;
}
#sp_dllink .link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 100vw;
  padding: 2.8571428571vw 0;
}
#sp_dllink .link-close {
  pointer-events: none;
  background-color: #888;
}
#sp_dllink .link-close:after {
  width: 0 !important;
  height: 0 !important;
  border: 0 !important;
}
#sp_dllink .link:after {
  content: "";
  display: block;
  width: 2.8571428571vw;
  height: 2.8571428571vw;
  position: absolute;
  right: 7.1428571429vw;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-top: 0.5714285714vw solid #fff;
  border-right: 0.5714285714vw solid #fff;
}
@media screen and (max-width: 700px) {
  #sp_dllink {
    display: block;
  }
}

#content01,
#content02 {
  display: flex;
}
@media screen and (max-width: 700px) {
  #content01,
#content02 {
    flex-direction: column;
  }
}
#content01 .container,
#content02 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50vw;
}
@media screen and (max-width: 700px) {
  #content01 .container,
#content02 .container {
    width: 100vw;
  }
}
@media screen and (max-width: 700px) {
  #content01 .container-left,
#content02 .container-left {
    height: 29.7142857143vw;
    font-size: 5.2457142857vw;
  }
}

#content01 .sp-swipe {
  display: none;
}
@media screen and (max-width: 700px) {
  #content01 .sp-swipe {
    display: block;
  }
  #content01 .sp-swipe .img {
    margin-bottom: 2.8571428571vw;
    width: 94%;
    margin-left: 3%;
  }
  #content01 .sp-swipe .img img {
    width: 100%;
  }
}
#content01 .container {
  height: 38.0208333333vw;
}
@media screen and (max-width: 700px) {
  #content01 .container {
    height: 142.8571428571vw;
  }
}
@media screen and (max-width: 700px) {
  #content01 .container-left {
    flex-direction: column;
  }
}
#content01 .container-left .left {
  margin-right: 0vw;
  margin-left: 1.0416666667vw;
}
@media screen and (max-width: 700px) {
  #content01 .container-left .left {
    margin-right: 0;
  }
}
#content01 .container-left .left .TTL {
  font-size: 2.1354166667vw;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 700px) {
  #content01 .container-left .left .TTL {
    font-size: 6.8271428571vw;
  }
}
#content01 .container-left .left .SUBTTL {
  font-size: 1.4677083333vw;
  font-weight: 700;
  margin-top: 1.5625vw;
  text-align: center;
}
#content01 .container-left .left .SUBTTL .bnr {
  margin: 1em auto 0;
  background-color: rgba(0, 0, 0, 0);
  color: #00a2dc;
  border: 1px solid #00a2dc;
  box-shadow: none;
  height: 3.1666666667vw;
}
#content01 .container-left .left .SUBTTL .bnr .link:after {
  border-top: 0.1041666667vw solid #00a2dc;
  border-right: 0.1041666667vw solid #00a2dc;
}
@media screen and (max-width: 700px) {
  #content01 .container-left .left .SUBTTL .bnr {
    height: 8vw;
  }
}
@media screen and (max-width: 700px) {
  #content01 .container-left .left .SUBTTL {
    font-size: 4.0257142857vw;
    margin-top: 1.4285714286vw;
  }
}
#content01 .container-left .left .bnr {
  background-color: #00a2dc;
  width: 20.8333333333vw;
  height: 3.125vw;
  border-radius: 50px;
  font-size: 1.25vw;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 4.1666666667vw;
  border-radius: 50px;
  margin: 4.1666666667vw auto 0;
  box-shadow: 1px 1px 20px #ccc;
}
#content01 .container-left .left .bnr:hover {
  box-shadow: 0 0 0 #fff;
}
#content01 .container-left .left .bnr-close {
  background-color: #888;
  width: 12.5vw;
  height: 3.125vw;
  border-radius: 50px;
  font-size: 0.9375vw;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 700px) {
  #content01 .container-left .left .bnr {
    background-color: #00a2dc;
    width: 57.1428571429vw;
    height: 8.5714285714vw;
    border-radius: 50px;
    font-size: 3.4285714286vw;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 10vw;
    margin: 10vw auto 5vw;
    box-shadow: 0.5px 0.5px 10px #aaa;
  }
}
#content01 .container-left .left .bnr .link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#content01 .container-left .left .bnr .link-close {
  pointer-events: none;
}
#content01 .container-left .left .bnr .link-close:after {
  content: "";
  width: 0 !important;
  height: 0 !important;
  border-top: 0 solid !important;
  border-bottom: 0 solid !important;
}
#content01 .container-left .left .bnr .link:hover {
  opacity: 0.6;
  transition: 0.2s;
}
#content01 .container-left .left .bnr .link:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.0416666667vw;
  width: 0.5208333333vw;
  height: 0.5208333333vw;
  border-top: 0.1041666667vw solid #fff;
  border-right: 0.1041666667vw solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 700px) {
  #content01 .container-left .left .bnr .link:after {
    top: 55%;
    right: 2.8571428571vw;
    width: 1.1428571429vw;
    height: 1.1428571429vw;
    border-top: 0.2857142857vw solid #fff;
    border-right: 0.2857142857vw solid #fff;
  }
}
#content01 .container-left .right img {
  width: 15.2604166667vw;
}
@media screen and (max-width: 700px) {
  #content01 .container-left .right img {
    width: 50vw;
  }
}
#content01 .container-right {
  position: relative;
}
@media screen and (max-width: 700px) {
  #content01 .container-right {
    height: auto;
  }
}
#content01 .container-right .img img {
  width: 100%;
}
#content01 .container-right .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 2.6041666667vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 37.7604166667vw;
  height: 4.4791666667vw;
  font-size: 1.7098958333vw;
  font-weight: 700;
  color: #fff;
  background-color: #242424;
  border: 0.15625vw solid #fff;
  border-radius: 20px;
}
@media screen and (max-width: 700px) {
  #content01 .container-right .btn {
    width: 92.8571428571vw;
    height: 11.5714285714vw;
    margin-top: 18.5714285714vw;
    font-size: 4.69vw;
    border: 0.4285714286vw solid #fff;
    border-radius: 10px;
  }
}
#content01 .container-right .btn .arrow {
  width: 1.1048543475vw;
  height: 1.1048543475vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 1.5625vw;
  margin-top: 0.2604166667vw;
}
@media screen and (max-width: 700px) {
  #content01 .container-right .btn .arrow {
    width: 3.0304576387vw;
    height: 3.0304576387vw;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 4.2857142857vw;
    margin-top: 0.7142857143vw;
  }
}

#content02 .container {
  height: 29.4270833333vw;
}
#content02 .container-row {
  flex-direction: column;
}
#content02 .container-left {
  position: relative;
  background-image: url(./images/img-01_02.jpg);
  background-size: cover;
  font-size: 1.9125vw;
}
@media screen and (max-width: 700px) {
  #content02 .container-left {
    font-size: 5.2457142857vw;
  }
}
#content02 .container-left:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
#content02 .container-left .text {
  z-index: 99;
}
@media screen and (max-width: 700px) {
  #content02 .container-right {
    height: auto;
    justify-content: flex-start;
    padding-top: 10vw;
    margin-bottom: 12.1428571429vw;
  }
}
#content02 .container-right .newsbox {
  margin-bottom: 2.0833333333vw;
}
@media screen and (max-width: 700px) {
  #content02 .container-right .newsbox.pc {
    display: none;
  }
}
#content02 .container-right .newsbox.sp {
  display: none;
}
@media screen and (max-width: 700px) {
  #content02 .container-right .newsbox.sp {
    display: block;
  }
}
#content02 .container-right .newsbox .news {
  width: 31.25vw;
  margin-bottom: 2.0833333333vw;
  position: relative;
}
@media screen and (max-width: 700px) {
  #content02 .container-right .newsbox .news {
    width: 90.7142857143vw;
    margin-bottom: 10vw;
  }
}
#content02 .container-right .newsbox .news .date {
  color: #7a7a7a;
  font-size: 0.9760416667vw;
}
@media screen and (max-width: 700px) {
  #content02 .container-right .newsbox .news .date {
    font-size: 3.4285714286vw;
  }
}
#content02 .container-right .newsbox .news .title {
  font-size: 0.9760416667vw;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  #content02 .container-right .newsbox .news .title {
    font-size: 3.4285714286vw;
  }
}
#content02 .container-right .newsbox .news .arrow {
  width: 0.736569565vw;
  height: 0.736569565vw;
  border-top: 1px solid #b3b3b3;
  border-right: 1px solid #b3b3b3;
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  bottom: 0.2604166667vw;
}
@media screen and (max-width: 700px) {
  #content02 .container-right .newsbox .news .arrow {
    width: 2.5253813656vw;
    height: 2.5253813656vw;
    border-top: 1px solid #b3b3b3;
    border-right: 1px solid #b3b3b3;
    transform: rotate(45deg);
  }
}
#content02 .container-right .more {
  position: relative;
  width: 10.4166666667vw;
  height: 2.5vw;
  border: 1px solid #a9a9a9;
  font-size: 0.8588541667vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 700px) {
  #content02 .container-right .more {
    width: 35.7142857143vw;
    height: 10.7142857143vw;
    font-size: 3.4285714286vw;
  }
}
#content02 .container-right .more .text {
  width: 9.375vw;
  text-align: center;
}
@media screen and (max-width: 700px) {
  #content02 .container-right .more .text {
    width: 25.7142857143vw;
  }
}
#content02 .container-right .more .arrow {
  margin-right: 0.78125vw;
  width: 0.5524271737vw;
  height: 0.5524271737vw;
  border-top: 1px solid #3e3e3e;
  border-right: 1px solid #3e3e3e;
  transform: rotate(45deg);
}
@media screen and (max-width: 700px) {
  #content02 .container-right .more .arrow {
    width: 2.5253813656vw;
    height: 2.5253813656vw;
    border-top: 2px solid #3e3e3e;
    border-right: 2px solid #3e3e3e;
    transform: rotate(45deg);
    margin-right: 2.1428571429vw;
  }
}

#content03,
#content04 {
  position: relative;
}
#content03 .head,
#content04 .head {
  width: 100vw;
  height: 25vw;
  position: relative;
  background-size: cover;
}
@media screen and (max-width: 700px) {
  #content03 .head,
#content04 .head {
    width: 100vw;
    height: 66.4285714286vw;
    position: relative;
    background-size: cover;
  }
}
#content03 .head h2,
#content04 .head h2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.8645833333vw;
  width: 22.2916666667vw;
  height: 5.7291666667vw;
  background-color: #f6f6f6;
  font-size: 1.3489583333vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 700px) {
  #content03 .head h2,
#content04 .head h2 {
    left: 0;
    transform: translateX(0);
    bottom: -10vw;
    width: 75vw;
    height: 20vw;
    font-size: 5.2457142857vw;
  }
}
#content03 .head h3,
#content04 .head h3 {
  font-size: 1.3541666667vw;
  font-weight: 700;
}
#content03 .container,
#content04 .container {
  font-size: 0.9375vw;
  padding-top: 6.7708333333vw;
  padding-bottom: 4.6875vw;
}
@media screen and (max-width: 700px) {
  #content03 .container,
#content04 .container {
    padding-top: 14.2857142857vw;
    padding-bottom: 18.5714285714vw;
    font-size: 3.4285714286vw;
  }
}
#content03 .container .textbox,
#content04 .container .textbox {
  width: 45.8333333333vw;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  #content03 .container .textbox,
#content04 .container .textbox {
    width: 88.5714285714vw;
  }
}
#content03 .container .img,
#content04 .container .img {
  margin-top: 4.6875vw;
}
@media screen and (max-width: 700px) {
  #content03 .container .img,
#content04 .container .img {
    margin-top: 8.5714285714vw;
    margin-bottom: 10.7142857143vw;
  }
}
#content03 .container .img img,
#content04 .container .img img {
  width: 100%;
}

#content03 .head {
  background-image: url(./images/content03_head.jpg);
}
#content03 .head h2 {
  background-color: #f6f6f6;
}
#content03 .container {
  background-color: #fff;
}

#content04 {
  background-color: #f6f6f6;
}
#content04 .head {
  background-image: url(./images/content04_head.jpg);
  background-position: center;
}
#content04 .head h2 {
  background-color: #fff;
}
@media screen and (max-width: 700px) {
  #content04 .head h2 {
    width: 50.7142857143vw;
    left: auto;
    right: 0;
  }
}
#content04 .btn {
  background-color: #00a2dc;
  width: 12.5vw;
  height: 3.125vw;
  border-radius: 50px;
  font-size: 0.8572916667vw;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  display: flex;
  align-items: center;
  height: 2.4479166667vw;
  border-radius: 0;
  margin: 3.3854166667vw auto 0;
}
@media screen and (max-width: 700px) {
  #content04 .btn {
    background-color: #00a2dc;
    width: 62.8571428571vw;
    height: 8.5714285714vw;
    border-radius: 50px;
    font-size: 3.1428571429vw;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    display: flex;
    align-items: center;
    margin: 9.2857142857vw auto 0;
    border-radius: 0;
  }
}
#content04 .btn .plus {
  width: 0.7291666667vw;
  margin-top: 0.0520833333vw;
  padding-left: 1.0416666667vw;
}
@media screen and (max-width: 700px) {
  #content04 .btn .plus {
    width: 2vw;
    margin-top: 0.1428571429vw;
    padding-left: 2.8571428571vw;
  }
}

#content05 {
  display: flex;
  flex-wrap: wrap;
  background-color: #f8f8f8;
}
#content05 article {
  width: 25%;
  padding-bottom: 1.5625vw;
}
@media screen and (max-width: 700px) {
  #content05 article {
    width: 50%;
  }
}
#content05 article img {
  width: 100%;
}
#content05 article.large {
  width: 50%;
}
@media screen and (max-width: 700px) {
  #content05 article.large {
    width: 100%;
  }
}
#content05 article.textbox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #00a2dc;
}
@media screen and (max-width: 700px) {
  #content05 article.textbox {
    padding: 2.8571428571vw;
  }
}
#content05 article.textbox .text {
  color: #fff;
  font-size: 1.25vw;
  font-weight: 700;
}
@media screen and (max-width: 700px) {
  #content05 article.textbox .text {
    font-size: 2.8571428571vw;
  }
}
#content05 article.textbox .img {
  width: 80%;
  margin: 1.0416666667vw 0vw;
}
@media screen and (max-width: 700px) {
  #content05 article.textbox .img {
    width: 100%;
    margin: 1.4285714286vw 0vw 2.8571428571vw;
  }
}
#content05 article.textbox .box {
  width: 60%;
  padding: 0.5208333333vw 1.0416666667vw;
  background-color: #fff;
  color: #00a2dc;
  border-radius: 50px;
  text-align: center;
  font-size: 1.1458333333vw;
  font-weight: 700;
}
@media screen and (max-width: 700px) {
  #content05 article.textbox .box {
    width: 80%;
    font-size: 2.5714285714vw;
    padding: 0.7142857143vw 1.0416666667vw;
  }
}

#content06 {
  text-align: center;
  padding-top: 4.1666666667vw;
}
#content06 h2 {
  font-size: 1.4583333333vw;
  font-weight: bold;
  margin-bottom: 2.0833333333vw;
}
@media screen and (max-width: 700px) {
  #content06 h2 {
    font-size: 5.2457142857vw;
    margin-bottom: 5vw;
  }
}
#content06 article h3 {
  background-color: #00a2dc;
  width: 23.4375vw;
  height: 3.125vw;
  border-radius: 50px;
  font-size: 0.9765625vw;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.8229166667vw;
}
@media screen and (max-width: 700px) {
  #content06 article h3 {
    background-color: #00a2dc;
    width: 71.4285714286vw;
    height: 8.5714285714vw;
    border-radius: 50px;
    font-size: 3.1428571429vw;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5.7142857143vw;
  }
}
#content06 article .content {
  margin: 0 auto 4.4270833333vw;
  display: flex;
}
#content06 article .content.content1 {
  width: 17.1875vw;
}
@media screen and (max-width: 700px) {
  #content06 article .content.content1 {
    width: 64.2857142857vw;
  }
}
#content06 article .content.content1 li {
  width: 17.1875vw;
  height: 4.4270833333vw;
  color: #3e3e3e;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1979166667vw;
}
@media screen and (max-width: 700px) {
  #content06 article .content.content1 li {
    width: 64.2857142857vw;
    height: 14.7142857143vw;
    font-size: 4vw;
  }
}
#content06 article .content.content2 {
  width: 46.875vw;
  display: block;
}
@media screen and (max-width: 700px) {
  #content06 article .content.content2 {
    width: 92.8571428571vw;
  }
}
#content06 article .content.content2 li {
  display: inline-block;
  font-size: 0.9375vw;
  margin-bottom: 0.5208333333vw;
}
@media screen and (max-width: 700px) {
  #content06 article .content.content2 li {
    font-size: 2.8571428571vw;
  }
}
#content06 article .content.content2 li:after {
  content: "/";
}
#content06 article .content.content2 li:last-child:after {
  content: "";
}
#content06 article .content.content3 {
  width: 51.8229166667vw;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 700px) {
  #content06 article .content.content3 {
    width: 85.7142857143vw;
    margin-bottom: 14.2857142857vw;
  }
}
#content06 article .content.content3 li {
  width: 9.8958333333vw;
  height: 2.8645833333vw;
  margin-bottom: 1.3020833333vw;
  margin-right: 0.5729166667vw;
}
@media screen and (max-width: 700px) {
  #content06 article .content.content3 li {
    width: 31.4285714286vw;
    height: 9.0971428571vw;
    margin-right: 1.5714285714vw;
    margin-bottom: 5.7142857143vw;
  }
}
#content06 article .content.content3 li:last-child {
  margin-right: 0;
}
#content06 article .content.content3 li img {
  width: 100%;
}

.swiper-container {
  width: 62.5vw;
  height: 38.0208333333vw;
  margin: 0;
}
@media screen and (max-width: 700px) {
  .swiper-container {
    display: none !important;
    width: 85.7142857143vw;
    height: 100vw;
    margin-top: 22.8571428571vw;
  }
}
.swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-container .swiper-pagination {
  text-align: center;
  bottom: 1.0416666667vw !important;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 0.78125vw;
  height: 0.78125vw;
  border-radius: 0px;
  margin-right: 1.3020833333vw;
  background-color: #eaeaea;
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 2.4285714286vw;
    height: 2.4285714286vw;
  }
}
.swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00a2dc;
}

footer {
  width: 100vw;
  border-top: 2px solid #b5b5b5;
  text-align: center;
  padding: 2.8645833333vw 0 1.3020833333vw;
}
@media screen and (max-width: 700px) {
  footer {
    padding: 6.4285714286vw 0 20.7142857143vw;
  }
}
footer .logo {
  text-align: center;
  margin-bottom: 1.8229166667vw;
}
@media screen and (max-width: 700px) {
  footer .logo {
    margin-bottom: 6.4285714286vw;
  }
}
footer .logo .head {
  font-size: 1.0416666667vw;
  font-weight: 300;
}
@media screen and (max-width: 700px) {
  footer .logo .head {
    font-size: 3.4285714286vw;
  }
}
footer .logo .title {
  font-size: 1.7708333333vw;
  font-weight: 400;
  width: 15.625vw;
  margin: 0 auto;
}
footer .logo .title img {
  width: 100%;
}
@media screen and (max-width: 700px) {
  footer .logo .title {
    font-size: 6.5457142857vw;
    width: 57.1428571429vw;
  }
}
footer nav {
  display: flex;
  justify-content: center;
  margin-bottom: 3.125vw;
}
@media screen and (max-width: 700px) {
  footer nav {
    display: none;
  }
}
footer nav li {
  margin-right: 2.5vw;
  font-size: 0.78125vw;
}
footer nav li:last-child {
  margin-right: 0;
}
footer .sns {
  display: flex;
  justify-content: center;
  margin-bottom: 3.125vw;
}
@media screen and (max-width: 700px) {
  footer .sns {
    margin-bottom: 9.2857142857vw;
  }
}
footer .sns .icon {
  width: 1.9270833333vw;
  height: 1.875vw;
}
@media screen and (max-width: 700px) {
  footer .sns .icon {
    width: 12.1428571429vw;
    height: 12.1428571429vw;
  }
}
footer .sns .icon img {
  width: 100%;
}
footer .copylight {
  font-size: 0.7291666667vw;
  font-weight: 300;
}
@media screen and (max-width: 700px) {
  footer .copylight {
    font-size: 3.4285714286vw;
  }
}

#single {
  margin: 2.6041666667vw;
  text-align: center;
}
#single article {
  width: 46.875vw;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 700px) {
  #single article {
    width: 85.7142857143vw;
    padding-top: 11.4285714286vw;
  }
}
#single article .date {
  color: #7a7a7a;
}
#single article .title {
  font-size: 1.1458333333vw;
  font-weight: 500;
  padding-bottom: 0.5208333333vw;
  margin-bottom: 2.0833333333vw;
  border-bottom: 2px solid #00a2dc;
}
@media screen and (max-width: 700px) {
  #single article .title {
    padding-bottom: 1.4285714286vw;
    margin-bottom: 5.7142857143vw;
    font-size: 3.4285714286vw;
  }
}
#single article .content {
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 700px) {
  #single article .content {
    font-size: 2.5714285714vw;
  }
}
#single .back {
  background-color: #00a2dc;
  width: 21.09375vw;
  height: 3.125vw;
  border-radius: 50px;
  font-size: 1.1458333333vw;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 5.2083333333vw auto 2.6041666667vw;
}
@media screen and (max-width: 700px) {
  #single .back {
    margin: 14.2857142857vw auto 7.1428571429vw;
    background-color: #00a2dc;
    width: 50vw;
    height: 8.5714285714vw;
    border-radius: 50px;
    font-size: 3.1428571429vw;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
}

#page {
  margin: 2.6041666667vw;
  text-align: center;
}
#page article {
  width: 46.875vw;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 700px) {
  #page article {
    width: 85.7142857143vw;
    padding-top: 11.4285714286vw;
  }
}
#page article .date {
  color: #7a7a7a;
}
#page article .title {
  font-size: 1.1458333333vw;
  font-weight: 500;
  padding-bottom: 0.5208333333vw;
  margin-bottom: 2.0833333333vw;
  border-bottom: 2px solid #00a2dc;
}
@media screen and (max-width: 700px) {
  #page article .title {
    padding-bottom: 1.4285714286vw;
    margin-bottom: 5.7142857143vw;
    font-size: 3.4285714286vw;
  }
}
#page article .content {
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 700px) {
  #page article .content {
    font-size: 2.5714285714vw;
  }
}
#page article .content section {
  margin-bottom: 3em;
}
#page article .content h3 {
  margin: 0 0 0.5em 0;
  padding: 0.5em 0;
  border-bottom: 1px solid #00a2dc;
}
#page article .content h3:before {
  content: "■";
  display: inline-block;
  margin-right: 0.25em;
  color: #00a2dc;
}
#page article .content .link {
  color: #00a2dc;
  text-decoration: underline;
}
#page article .content .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#page article .content .flex.wrap {
  flex-wrap: wrap;
}
#page article .content .btn {
  display: inline-block;
  color: #fff;
  background-color: #00a2dc;
  padding: 0.5em 2em;
  border-radius: 8px;
  cursor: pointer;
}
#page article .content .btn:hover {
  opacity: 0.8;
  transition: 0.2s;
}
#page .back {
  background-color: #00a2dc;
  width: 21.09375vw;
  height: 3.125vw;
  border-radius: 50px;
  font-size: 1.1458333333vw;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 5.2083333333vw auto 2.6041666667vw;
}
@media screen and (max-width: 700px) {
  #page .back {
    margin: 14.2857142857vw auto 7.1428571429vw;
    background-color: #00a2dc;
    width: 50vw;
    height: 8.5714285714vw;
    border-radius: 50px;
    font-size: 3.1428571429vw;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
}

#pagetop, #useapp {
  position: fixed;
  right: -10.4166666667vw;
  bottom: 1.5625vw;
  z-index: 999;
  width: 6.25vw;
  height: 5.2083333333vw;
  min-width: 60px;
  min-height: 50px;
  background-color: #00a2dc;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 700px) {
  #pagetop, #useapp {
    display: none;
  }
}
#pagetop a, #useapp a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#pagetop a .arrow, #useapp a .arrow {
  width: 1.8414239124vw;
  height: 1.8414239124vw;
  border-top: 0.4166666667vw solid #fff;
  border-right: 0.4166666667vw solid #fff;
  transform: rotate(45deg);
  transform: rotate(-45deg);
  margin-top: 0.78125vw;
}
#pagetop a .text, #useapp a .text {
  font-size: 0.78125vw;
  font-weight: 700;
  color: #fff;
  margin-bottom: -0.2604166667vw;
}

#useapp {
  width: 100vw;
  height: 5.2083333333vw;
  top: -15vw;
  left: 0;
}
@media screen and (max-width: 700px) {
  #useapp {
    display: none;
  }
}
#useapp a {
  position: relative;
  width: 100vw;
  height: 100%;
  flex-direction: row;
}
#useapp a .img {
  height: 3.6458333333vw;
}
#useapp a .img img {
  height: 100%;
}
#useapp a .text {
  font-size: 1.25vw;
  text-align: center;
  padding: 0 1.5625vw;
}
#useapp a .arrow {
  position: absolute;
  width: 1.4731391299vw;
  height: 1.4731391299vw;
  border-top: 0.3645833333vw solid #fff;
  border-right: 0.3645833333vw solid #fff;
  transform: rotate(45deg);
  transform: rotate(45deg);
  right: 1.5625vw;
}

@media screen and (max-width: 800px) {
  body#shinyama {
    font-size: 24px;
  }
}
body#shinyama section.top {
  background-color: #d6dfec;
  padding: 40px 0;
}
body#shinyama section.top .inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
body#shinyama section.top .inner img {
  display: block;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 800px) {
  body#shinyama section.top .inner img {
    margin: 0vw 0 5vw;
  }
}
body#shinyama section.top .bannerbox {
  display: flex;
  justify-content: space-between;
  width: 750px;
  margin: 4em auto;
}
@media screen and (max-width: 800px) {
  body#shinyama section.top .bannerbox {
    width: 90vw;
    margin: 2em auto;
  }
}
body#shinyama section.top .bannerbox .bnr {
  width: 42%;
  margin: 0 4%;
}
@media screen and (max-width: 800px) {
  body#shinyama section.top .bannerbox .bnr {
    width: 46%;
    margin: 0 2%;
  }
}
body#shinyama section.top .bannerbox .bnr img {
  width: 100%;
}
body#shinyama section.top .top-text {
  background-color: #fff000;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #2469a1;
  padding: 10px 0;
}
@media screen and (max-width: 800px) {
  body#shinyama section.top .top-text {
    font-size: 8vw;
    padding: 2.5vw;
  }
}
body#shinyama section.top .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0 0;
}
body#shinyama section.top .wrap a {
  position: relative;
  display: grid;
  place-items: center;
  width: 350px;
  height: 80px;
  margin: 10px;
  background-color: #2469a1;
  border: 4px solid #fff;
  border-radius: 50px;
  text-align: center;
  align-content: center;
  color: #fff;
  line-height: 1.1;
  font-weight: 700;
  font-size: 24px;
}
body#shinyama section.top .wrap a:hover {
  opacity: 0.6;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  body#shinyama section.top .wrap a {
    border: 2px solid #fff;
    width: 47.5vw;
    height: 12.5vw;
    margin: 1.875vw 0.625vw;
    font-size: 4.25vw;
    padding-right: 3.75vw;
  }
}
body#shinyama section.top .wrap a .min {
  font-size: 0.7em;
}
@media screen and (max-width: 800px) {
  body#shinyama section.top .wrap a .min {
    font-size: 0.75em;
    padding: 0 0.1em;
  }
}
body#shinyama section.top .wrap a:after {
  content: "▶︎";
  position: absolute;
  display: block;
  right: 20px;
  font-size: 20px;
}
@media screen and (max-width: 800px) {
  body#shinyama section.top .wrap a:after {
    right: 2.5vw;
    font-size: 2.5vw;
  }
}
body#shinyama section.ticket {
  max-width: 800px;
  width: 100%;
  padding: 60px 0 0 0;
  margin: 0 auto;
}
body#shinyama section.ticket article {
  width: 750px;
  margin: 0 auto 50px;
  border-radius: 20px;
  box-shadow: 0px 0px 15px rgba(58, 109, 180, 0.5);
  overflow: hidden;
  padding: 0 0 30px;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article {
    width: 90vw;
  }
}
body#shinyama section.ticket article .head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #fcee50;
  padding: 20px 15px;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article .head {
    padding: 5vw 2.5vw;
  }
}
body#shinyama section.ticket article .head h2 {
  margin: 0 auto 0 0;
  color: #2469a1;
  font-size: 40px;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article .head h2 {
    font-size: 7.5vw;
  }
}
body#shinyama section.ticket article .head h2 .middle {
  font-size: 0.8em;
}
body#shinyama section.ticket article .head h2 .min {
  font-size: 0.5em;
}
body#shinyama section.ticket article .head img {
  width: 60px;
  height: 60px;
  margin: 0 5px 0 0;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article .head img {
    width: 10vw;
    height: 10vw;
    margin: 0 1vw 0 0;
  }
}
body#shinyama section.ticket article .subtext {
  text-align: center;
  color: #496d98;
  font-weight: 700;
  padding: 25px 0;
  font-size: 24px;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article .subtext {
    font-size: 3.5vw;
    padding: 5vw 0;
  }
}
body#shinyama section.ticket article .mainimg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 700px;
  height: 400px;
  margin: 0 auto 30px;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article .mainimg {
    width: 83.125vw;
    height: 47.5vw;
    border-radius: 16px;
    margin: 0 auto 3.75vw;
  }
}
body#shinyama section.ticket article .mainimg img {
  width: 100%;
}
body#shinyama section.ticket article .pass {
  border-bottom: 1px dashed #000;
  padding-bottom: 40px;
  margin-bottom: 100px;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article .pass {
    border-bottom: 2px dashed #000;
    padding-bottom: 7.5vw;
    margin-bottom: 15vw;
  }
}
body#shinyama section.ticket article .pass:last-child {
  border: none;
}
body#shinyama section.ticket article .category {
  display: flex;
  padding: 0 40px;
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article .category {
    padding: 0 5vw;
    font-size: 3vw;
  }
}
body#shinyama section.ticket article .category li {
  border: 2px solid #e38d33;
  color: #e38d33;
  padding: 0 20px;
  margin-right: 10px;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article .category li {
    padding: 0 2.5vw;
    margin-right: 1.25vw;
  }
}
body#shinyama section.ticket article .title {
  padding: 0 40px 10px;
  font-size: 32px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  color: #e38d33;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article .title {
    padding: 0 5vw 1.25vw;
    font-size: 7.25vw;
    margin-top: 1.25vw;
    margin-bottom: 1.875vw;
  }
  body#shinyama section.ticket article .title.min {
    font-size: 6.25vw;
  }
}
body#shinyama section.ticket article .content {
  padding: 0 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article .content {
    padding: 0 5vw;
    margin-bottom: 6.25vw;
  }
}
body#shinyama section.ticket article .content .item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article .content .item {
    margin-bottom: 1.25vw;
  }
}
body#shinyama section.ticket article .content .item .tab {
  background-color: #e38d33;
  color: #fff;
  padding: 2px 20px;
  margin-right: 15px;
  border-radius: 50px;
}
body#shinyama section.ticket article .content .item .tab.green {
  background-color: #29b1aa;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article .content .item .tab {
    padding: 0.25vw 5vw;
    margin-right: 3.125vw;
    border-radius: 6.25vw;
    font-size: 4vw;
  }
}
body#shinyama section.ticket article .content .item .text {
  font-size: 28px;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article .content .item .text {
    font-size: 5vw;
  }
}
body#shinyama section.ticket article .content .item .text .large {
  font-size: 1.2em;
}
body#shinyama section.ticket article .content .item .text .middle {
  font-size: 0.8em;
}
body#shinyama section.ticket article .content .item .text .min {
  font-size: 0.5em;
}
body#shinyama section.ticket article .root {
  text-align: center;
  background-color: #f1f6fa;
  padding: 30px 0;
  color: #2469a1;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article .root {
    font-size: 4.75vw;
    padding: 5vw 0;
  }
}
body#shinyama section.ticket article .root .middle {
  font-size: 0.8em;
}
body#shinyama section.ticket article .root .min {
  font-size: 0.7em;
}
body#shinyama section.ticket article .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  margin: 20px auto;
  padding: 20px 0;
  text-align: center;
  background-color: #2469a1;
  border-radius: 50px;
  font-weight: 700;
  color: #fff;
}
body#shinyama section.ticket article .button:hover {
  opacity: 0.6;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article .button {
    width: 81.25vw;
    margin: 7.5vw auto;
    padding: 6.25vw 0;
    font-size: 4.75vw;
  }
}
body#shinyama section.ticket article .button:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(./images/shinyama/link.png);
  background-size: cover;
  margin-left: 10px;
}
@media screen and (max-width: 800px) {
  body#shinyama section.ticket article .button:after {
    width: 5vw;
    height: 5vw;
    margin-left: 1.875vw;
  }
}
body#shinyama footer {
  border: none;
}
body#shinyama footer nav {
  display: none;
}

section[id^=zigyousya] h2 {
  display: inline-block;
  margin: 0 0 60px;
}
@media screen and (max-width: 700px) {
  section[id^=zigyousya] h2 {
    margin: 0 0 40px;
  }
}
section[id^=zigyousya] h2 .main, section[id^=zigyousya] h2 .min {
  text-align: center;
}
section[id^=zigyousya] h2 .main {
  padding: 0 1em 0.3em 1em;
  margin-bottom: 0.3em;
  font-weight: 900;
  font-size: 28px;
  border-bottom: 2px solid #00a2dc;
}
@media screen and (max-width: 700px) {
  section[id^=zigyousya] h2 .main {
    font-size: 1.2em;
    padding: 0 0 0.3em 0;
  }
}
section[id^=zigyousya] h2 .min {
  font-size: 700;
  color: #00a2dc;
  font-size: 18px;
}
section[id^=zigyousya] a.link {
  color: #00a2dc;
  text-decoration: underline;
}

#zigyousya-top {
  background-color: #e5e5e5;
}
#zigyousya-top img {
  display: block;
  width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (max-width: 700px) {
  #zigyousya-top img {
    width: 90%;
  }
}
#zigyousya-top nav {
  display: flex;
  justify-content: center;
  background-color: #00a2dc;
  padding: 1em 0;
  min-width: 1000px;
}
@media screen and (max-width: 700px) {
  #zigyousya-top nav {
    justify-content: flex-start;
    min-width: auto;
    flex-wrap: wrap;
    padding: 0;
  }
}
#zigyousya-top nav a {
  position: relative;
  display: block;
  width: 200px;
  height: 2em;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 700px) {
  #zigyousya-top nav a {
    width: 50%;
    height: 5em;
    padding: 1em 0;
  }
}
#zigyousya-top nav a:after {
  content: "";
  position: absolute;
  top: 1.5em;
  left: 50%;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateX(-50%) rotate(135deg);
}
@media screen and (max-width: 700px) {
  #zigyousya-top nav a:after {
    top: 3em;
  }
}
#zigyousya-about {
  width: 1000px;
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}
@media screen and (max-width: 700px) {
  #zigyousya-about {
    width: 94%;
    padding: 60px 0;
  }
}
#zigyousya-about .text {
  font-weight: 500;
  margin-bottom: 3em;
}
#zigyousya-about .bnr_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#zigyousya-about .bnr_wrap a {
  display: block;
  width: 480px;
  margin-bottom: 2em;
}
#zigyousya-about .bnr_wrap a.long {
  width: 1000px;
}
#zigyousya-about .bnr_wrap a img {
  width: 100%;
}
#zigyousya-about .notes {
  text-align: left;
}
#zigyousya-points {
  margin: 0 auto;
  padding: 120px 0;
  background-color: #f8fcfc;
}
@media screen and (max-width: 700px) {
  #zigyousya-points {
    padding: 60px 0;
  }
}
#zigyousya-points .wrap {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 700px) {
  #zigyousya-points .wrap {
    width: 94%;
  }
}
#zigyousya-points .wrap .bnr_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#zigyousya-points .wrap .bnr_wrap a {
  display: block;
  width: 490px;
  margin-bottom: 20px;
}
#zigyousya-points .wrap .bnr_wrap a img {
  width: 100%;
}
#zigyousya-cost {
  width: 1000px;
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}
@media screen and (max-width: 700px) {
  #zigyousya-cost {
    width: 94%;
    padding: 60px 0;
  }
}
#zigyousya-cost table {
  width: 1000px;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 2px solid #00a2dc;
}
@media screen and (max-width: 700px) {
  #zigyousya-cost table {
    width: 94%;
  }
}
@media screen and (max-width: 700px) {
  #zigyousya-cost table tr {
    display: flex;
    flex-wrap: wrap;
  }
}
#zigyousya-cost table tr th, #zigyousya-cost table tr td {
  border-bottom: 1px solid #00a2dc;
  text-align: left;
  padding: 1.5em 2em;
}
@media screen and (max-width: 700px) {
  #zigyousya-cost table tr th, #zigyousya-cost table tr td {
    width: 100%;
  }
}
#zigyousya-cost table tr th {
  background-color: #f9fcfc;
  width: 350px;
}
#zigyousya-cost table tr td.red {
  font-weight: 700;
  color: red;
}
#zigyousya-flow {
  width: 1000px;
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}
@media screen and (max-width: 700px) {
  #zigyousya-flow {
    width: 94%;
    padding: 60px 0;
  }
}
#zigyousya-flow img {
  display: block;
  width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  #zigyousya-flow img {
    width: 94%;
  }
}
#zigyousya-case {
  text-align: center;
  background-color: #f8fcfc;
  padding: 120px 0;
}
@media screen and (max-width: 700px) {
  #zigyousya-case {
    padding: 60px 0;
  }
}
#zigyousya-case .wrap {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#zigyousya-case .wrap .item {
  width: 235px;
  height: 300px;
  background-color: #d0e6ea;
}
@media screen and (max-width: 700px) {
  #zigyousya-case .wrap .item {
    width: 46%;
    margin: 0 2% 1em;
  }
}
@media screen and (max-width: 700px) {
  #zigyousya-case .wrap {
    width: 94%;
    flex-wrap: wrap;
  }
}
#zigyousya-form {
  width: 900px;
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}
@media screen and (max-width: 700px) {
  #zigyousya-form {
    width: 100%;
    padding: 60px 0;
  }
}
#zigyousya-form p {
  margin: 0;
  padding: 0;
}
#zigyousya-form .wrap {
  background-color: #d5ebed;
  padding-bottom: 50px;
}
@media screen and (max-width: 700px) {
  #zigyousya-form .wrap {
    padding: 40px 0;
  }
}
#zigyousya-form .wrap .inner {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  #zigyousya-form .wrap .inner {
    width: 94%;
  }
}
#zigyousya-form .wrap .inner h3 {
  text-align: left;
  margin: 70px 0 0 50px;
}
@media screen and (max-width: 700px) {
  #zigyousya-form .wrap .inner h3 {
    margin: 3em 0 1em 0;
  }
}
#zigyousya-form .wrap .inner table {
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (max-width: 700px) {
  #zigyousya-form .wrap .inner table tr {
    display: flex;
    flex-wrap: wrap;
  }
}
#zigyousya-form .wrap .inner table th, #zigyousya-form .wrap .inner table td {
  padding-top: 1.2em;
}
@media screen and (max-width: 700px) {
  #zigyousya-form .wrap .inner table th, #zigyousya-form .wrap .inner table td {
    padding: 0;
  }
}
#zigyousya-form .wrap .inner table th {
  width: 250px;
  text-align: left;
  padding-left: 50px;
}
@media screen and (max-width: 700px) {
  #zigyousya-form .wrap .inner table th {
    width: 100%;
    padding: 0 0 0.7em 0;
    display: flex;
    align-items: center;
  }
}
#zigyousya-form .wrap .inner table th.req:after {
  content: "※必須";
  color: #c00;
  font-size: 0.8em;
}
@media screen and (max-width: 700px) {
  #zigyousya-form .wrap .inner table th.req:after {
    margin-left: 1em;
  }
}
#zigyousya-form .wrap .inner table td {
  width: 550px;
}
@media screen and (max-width: 700px) {
  #zigyousya-form .wrap .inner table td {
    width: 100%;
    padding-bottom: 1.2em;
  }
}
#zigyousya-form .wrap .inner table td input[type=text], #zigyousya-form .wrap .inner table td input[type=tel], #zigyousya-form .wrap .inner table td input[type=email], #zigyousya-form .wrap .inner table td textarea {
  width: 100%;
  padding: 0.7em;
  border: 2px solid #009bb9;
  border-radius: 6px;
  background-color: #f2f8fa;
}
#zigyousya-form .wrap .inner .notes {
  text-align: left;
  margin-top: 0.8em;
  margin-left: 50px;
}
@media screen and (max-width: 700px) {
  #zigyousya-form .wrap .inner .notes {
    margin-left: 0;
  }
}
#zigyousya-form .wrap .inner .terms {
  width: 800px;
  margin: 50px auto 30px;
  padding: 50px;
  text-align: left;
  background-color: #fff;
}
@media screen and (max-width: 700px) {
  #zigyousya-form .wrap .inner .terms {
    width: 94%;
    padding: 2em 1em;
  }
}
#zigyousya-form .wrap .inner .consent {
  font-size: 1.1em;
  font-weight: 700;
}
@media screen and (max-width: 700px) {
  #zigyousya-form .wrap .inner .consent .wpcf7-list-item {
    margin: 0;
  }
}
#zigyousya-form .wrap .inner .submit label {
  display: block;
  width: 400px;
  font-size: 1.1em;
  border-radius: 50px;
  padding: 0.8em;
  margin: 50px auto 0;
  text-align: center;
  background-color: #24a2bc;
  color: #fff;
}
@media screen and (max-width: 700px) {
  #zigyousya-form .wrap .inner .submit label {
    width: 80%;
  }
}
#zigyousya-form .wrap .inner input#submit {
  display: none;
}
#zigyousya-question {
  background-color: #f8fcfc;
  padding: 120px 0;
}
@media screen and (max-width: 700px) {
  #zigyousya-question {
    padding: 60px 0;
  }
}
#zigyousya-question .wrap {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 700px) {
  #zigyousya-question .wrap {
    width: 94%;
  }
}
#zigyousya-question article {
  width: 1000px;
  text-align: left;
}
@media screen and (max-width: 700px) {
  #zigyousya-question article {
    width: 94%;
    margin: 0 auto;
  }
}
#zigyousya-question article .item {
  border-bottom: 1px solid #00a2dc;
  padding: 1.2em 4em 1.2em 2em;
  box-sizing: content-box;
}
@media screen and (max-width: 700px) {
  #zigyousya-question article .item {
    padding: 1em 3em 1em 0.5em;
  }
}
#zigyousya-question article .item .question {
  position: relative;
}
#zigyousya-question article .item .question:before {
  content: "";
  position: absolute;
  display: block;
  width: 0.7em;
  height: 0.7em;
  border-top: 2px solid #00a2dc;
  border-right: 2px solid #00a2dc;
  top: 50%;
  right: -40px;
  transform: translateY(-50%) rotate(45deg);
}
#zigyousya-question article .item .answer {
  display: none;
  margin-top: 1em;
}
#zigyousya-question article .item:first-child {
  border-top: 1px solid #00a2dc;
}
#zigyousya-question article .item.open .question {
  position: relative;
}
#zigyousya-question article .item.open .question:before {
  transform: translateY(-50%) rotate(135deg);
}
#zigyousya-question article .item.open .answer {
  display: block;
}

footer#zigyousya-footer {
  border-top: none;
  padding: 120px 0;
}
@media screen and (max-width: 700px) {
  footer#zigyousya-footer {
    padding: 60px 0;
  }
}
footer#zigyousya-footer .title {
  color: #00a2dc;
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 2em;
}
footer#zigyousya-footer .name {
  font-weight: 700;
  margin-bottom: 2em;
}
footer#zigyousya-footer .addr {
  font-size: 0.9em;
  font-weight: 700;
}

#header-english {
  width: 700px;
  height: 120px;
  margin: 0 auto;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  #header-english {
    width: auto;
    height: 17.1428571429vw;
  }
}
#header-english .logo-english {
  width: 380px;
}
@media screen and (max-width: 700px) {
  #header-english .logo-english {
    width: 54.2857142857vw;
  }
}
#header-english .logo-english img {
  width: 100%;
}
#header-english .header-btn {
  display: block;
  position: relative;
  width: 230px;
  color: #00669d;
  background-color: #dae0e4;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  margin-right: 20px;
}
@media screen and (max-width: 700px) {
  #header-english .header-btn {
    width: 37.1428571429vw;
    font-size: 3.1428571429vw;
    margin-right: 2.8571428571vw;
  }
}
#header-english .header-btn::after {
  display: block;
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #00669d;
  border-right: 3px solid #00669d;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 700px) {
  #header-english .header-btn::after {
    width: 1.4285714286vw;
    height: 1.4285714286vw;
    border-top: 0.4285714286vw solid #00669d;
    border-right: 0.4285714286vw solid #00669d;
  }
}

#page-english {
  width: 700px;
  margin: 0 auto;
  font-weight: 700;
  color: #4d4c4c;
}
@media screen and (max-width: 700px) {
  #page-english {
    width: auto;
  }
}
#page-english h3 {
  border-left: 5px solid #00669d;
  padding-left: 0.5em;
  font-size: 35px;
}
@media screen and (max-width: 700px) {
  #page-english h3 {
    font-size: 5vw;
  }
}
#page-english .inner {
  margin: 0 20px;
}
@media screen and (max-width: 700px) {
  #page-english .inner {
    margin: 0 2.8571428571vw;
  }
}
#page-english .yellow-btn {
  width: 80%;
  text-align: center;
  margin: 10px auto;
  background-color: #ffea00;
  font-size: 28px;
  padding: 10px 0;
  border-radius: 60px;
}
#page-english .yellow-btn.large {
  width: 85%;
}
@media screen and (max-width: 700px) {
  #page-english .yellow-btn {
    font-size: 4vw;
    margin: 1.4285714286vw auto;
    padding: 1.4285714286vw 0;
  }
}
#page-english .blue-box-btn {
  display: flex;
  position: relative;
  width: 90%;
  height: 80px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #00669d;
  color: #00669d;
  font-size: 23px;
  margin: 40px auto;
  padding-right: 1.8em;
}
@media screen and (max-width: 700px) {
  #page-english .blue-box-btn {
    height: 11.4285714286vw;
    font-size: 3.2857142857vw;
    margin: 5.7142857143vw auto;
  }
}
#page-english .blue-box-btn::after {
  display: block;
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  right: 3%;
  background-image: url("./images/english/link-blue.png");
  background-size: cover;
}
#page-english .toggle {
  display: none;
}
#page-english .toggle:checked + .click-menu::after {
  margin-top: 15px;
  transform: rotate(-135deg);
}
#page-english .toggle:checked + .click-menu + .menu-inner {
  max-height: 500px;
}
#page-english .click-menu {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #464647;
  color: #fff;
  padding: 10px 2em 10px 1em;
  font-size: 28px;
  margin-top: 60px;
  cursor: pointer;
}
@media screen and (max-width: 700px) {
  #page-english .click-menu {
    padding: 1.4285714286vw 2em 1.4285714286vw 1em;
    font-size: 4vw;
    margin-top: 8.5714285714vw;
  }
}
#page-english .click-menu::after {
  display: block;
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  right: 5%;
  margin-top: -5px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 700px) {
  #page-english .click-menu::after {
    width: 2.5714285714vw;
    height: 2.5714285714vw;
  }
}
#page-english .menu-inner {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}
#page-english .menu-inner.open {
  max-height: none;
}
#page-english .menu-inner .item {
  display: flex;
  position: relative;
  background-color: #e7ecf0;
  padding: 40px 2.2em 40px 1em;
  align-items: center;
  font-size: 24px;
  border-bottom: 1px solid #bec5cb;
}
@media screen and (max-width: 700px) {
  #page-english .menu-inner .item {
    font-size: 3.4285714286vw;
    padding: 5.7142857143vw 2.2em 5.7142857143vw 1em;
  }
}
#page-english .menu-inner .item.small {
  padding: 20px 2.2em 20px 1em;
}
@media screen and (max-width: 700px) {
  #page-english .menu-inner .item.small {
    padding: 2.8571428571vw 2.2em 2.8571428571vw 1em;
  }
}
#page-english .menu-inner .item::after {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  right: 5%;
  background-image: url("./images/english/link-black.png");
  background-size: cover;
}
#page-english #overseas .head {
  background-color: #327e27;
  padding: 10px;
}
@media screen and (max-width: 700px) {
  #page-english #overseas .head {
    padding: 1.4285714286vw 0;
  }
}
#page-english #overseas .head .text {
  font-size: 42px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 700px) {
  #page-english #overseas .head .text {
    font-size: 6vw;
  }
}
#page-english #overseas .traffic-image img {
  width: 100%;
}
#page-english #plane .head {
  background-color: #00669d;
  padding: 10px;
}
@media screen and (max-width: 700px) {
  #page-english #plane .head {
    padding: 1.4285714286vw 0;
  }
}
#page-english #plane .head .text {
  font-size: 36px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 700px) {
  #page-english #plane .head .text {
    font-size: 5.1428571429vw;
  }
}
#page-english #plane .inner img {
  display: block;
  width: 90%;
  margin: 30px auto;
}
@media screen and (max-width: 700px) {
  #page-english #plane .inner img {
    margin: 4.2857142857vw auto;
  }
}
#page-english #plane .inner .blue-box-btn {
  margin-bottom: 80px;
}
@media screen and (max-width: 700px) {
  #page-english #plane .inner .blue-box-btn {
    margin-bottom: 11.4285714286vw;
  }
}
#page-english #yuda .head {
  background-color: #00669d;
  padding: 10px;
  margin-top: 150px;
}
@media screen and (max-width: 700px) {
  #page-english #yuda .head {
    padding: 1.4285714286vw 0;
    margin-top: 21.4285714286vw;
  }
}
#page-english #yuda .head .text {
  font-size: 32px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 700px) {
  #page-english #yuda .head .text {
    font-size: 4.5714285714vw;
  }
}
#page-english #yuda .inner img {
  display: block;
  width: 80%;
  margin: 30px auto;
}
@media screen and (max-width: 700px) {
  #page-english #yuda .inner img {
    margin: 4.2857142857vw auto;
  }
}
#page-english #yuda .inner .sightseeing .sightseeing-header {
  background-color: #464647;
  color: #fff;
  padding: 20px 0 20px 1em;
  font-size: 28px;
  margin-top: 100px;
}
@media screen and (max-width: 700px) {
  #page-english #yuda .inner .sightseeing .sightseeing-header {
    padding: 2.8571428571vw 0 2.8571428571vw 1em;
    font-size: 4vw;
    margin-top: 14.2857142857vw;
  }
}
#page-english #yuda .inner .sightseeing img {
  width: 100%;
}
#page-english #yuda .inner .sightseeing .title {
  font-size: 30px;
  margin: 20px 0;
}
@media screen and (max-width: 700px) {
  #page-english #yuda .inner .sightseeing .title {
    font-size: 4.2857142857vw;
    margin: 2.8571428571vw 0;
  }
}
#page-english #yuda .inner .sightseeing .text {
  font-size: 22px;
  margin: 40px 0 60px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 700px) {
  #page-english #yuda .inner .sightseeing .text {
    font-size: 3.1428571429vw;
    margin: 5.7142857143vw 0 8.5714285714vw;
  }
}
#page-english #yuda .inner .sightseeing .sub-header {
  background-color: #f1f2f0;
  padding: 10px 0 10px 1em;
  font-size: 28px;
}
@media screen and (max-width: 700px) {
  #page-english #yuda .inner .sightseeing .sub-header {
    padding: 1.4285714286vw 0 1.4285714286vw 1em;
    font-size: 4vw;
  }
}
#page-english #yuda .inner .sightseeing .access {
  font-size: 22px;
  margin: 20px 0 90px 20px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 700px) {
  #page-english #yuda .inner .sightseeing .access {
    font-size: 3.1428571429vw;
    margin: 2.8571428571vw 0 12.8571428571vw 2.8571428571vw;
  }
}
#page-english #yuda .inner .sightseeing .access a {
  color: #00669d;
  text-decoration: underline;
  text-underline-offset: 5px;
}
#page-english #yuda .inner .near {
  background-color: #464647;
  color: #fff;
  padding: 20px 0 20px 1em;
  font-size: 30px;
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  #page-english #yuda .inner .near {
    padding: 2.8571428571vw 0 2.8571428571vw 1em;
    font-size: 4.2857142857vw;
    margin-top: 8.5714285714vw;
  }
}
#page-english #yamaguchi .head {
  display: block;
  background-color: #00669d;
  padding: 10px;
  margin-top: 150px;
}
@media screen and (max-width: 700px) {
  #page-english #yamaguchi .head {
    padding: 1.4285714286vw 0;
    margin-top: 21.4285714286vw;
  }
}
#page-english #yamaguchi .head.last {
  position: relative;
  background-color: #327e27;
  margin-top: 70px;
  padding-right: 32px;
  cursor: pointer;
}
@media screen and (max-width: 700px) {
  #page-english #yamaguchi .head.last {
    margin-top: 10vw;
    padding-right: 4.5714285714vw;
  }
}
#page-english #yamaguchi .head.last::after {
  display: block;
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  right: 3%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 700px) {
  #page-english #yamaguchi .head.last::after {
    width: 2.2857142857vw;
    height: 2.2857142857vw;
    border-top: 0.4285714286vw solid #fff;
    border-right: 0.4285714286vw solid #fff;
  }
}
#page-english #yamaguchi .head .text {
  font-size: 32px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 700px) {
  #page-english #yamaguchi .head .text {
    font-size: 4.5714285714vw;
  }
}
#page-english #yamaguchi .inner {
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e2e4;
}
@media screen and (max-width: 700px) {
  #page-english #yamaguchi .inner {
    padding-bottom: 4.2857142857vw;
  }
}
#page-english #yamaguchi .inner img {
  display: block;
  width: 80%;
  margin: 30px auto;
}
@media screen and (max-width: 700px) {
  #page-english #yamaguchi .inner img {
    margin: 4.2857142857vw auto;
  }
}
#page-english #yamaguchi .inner .sightseeing .sightseeing-header {
  background-color: #464647;
  color: #fff;
  padding: 20px 0 20px 1em;
  font-size: 28px;
  margin-top: 100px;
}
@media screen and (max-width: 700px) {
  #page-english #yamaguchi .inner .sightseeing .sightseeing-header {
    padding: 2.8571428571vw 0 2.8571428571vw 1em;
    font-size: 4vw;
    margin-top: 14.2857142857vw;
  }
}
#page-english #yamaguchi .inner .sightseeing img {
  width: 100%;
}
#page-english #yamaguchi .inner .sightseeing .title {
  font-size: 30px;
  margin: 20px 0;
}
@media screen and (max-width: 700px) {
  #page-english #yamaguchi .inner .sightseeing .title {
    font-size: 4.2857142857vw;
    margin: 2.8571428571vw 0;
  }
}
#page-english #yamaguchi .inner .sightseeing .text {
  font-size: 22px;
  margin: 40px 0 60px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 700px) {
  #page-english #yamaguchi .inner .sightseeing .text {
    font-size: 3.1428571429vw;
    margin: 5.7142857143vw 0 8.5714285714vw;
  }
}
#page-english #yamaguchi .inner .sightseeing .sub-header {
  background-color: #f1f2f0;
  padding: 10px 0 10px 1em;
  font-size: 28px;
}
@media screen and (max-width: 700px) {
  #page-english #yamaguchi .inner .sightseeing .sub-header {
    padding: 1.4285714286vw 0 1.4285714286vw 1em;
    font-size: 4vw;
  }
}
#page-english #yamaguchi .inner .sightseeing .access {
  font-size: 22px;
  margin: 20px 0 90px 20px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 700px) {
  #page-english #yamaguchi .inner .sightseeing .access {
    font-size: 3.1428571429vw;
    margin: 2.8571428571vw 0 12.8571428571vw 2.8571428571vw;
  }
}
#page-english #yamaguchi .inner .sightseeing .access a {
  color: #00669d;
  text-decoration: underline;
  text-underline-offset: 5px;
}
#page-english #yamaguchi .inner .near {
  background-color: #464647;
  color: #fff;
  padding: 20px 0 20px 1em;
  font-size: 30px;
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  #page-english #yamaguchi .inner .near {
    padding: 2.8571428571vw 0 2.8571428571vw 1em;
    font-size: 4.2857142857vw;
    margin-top: 8.5714285714vw;
  }
}

#footer-english {
  margin-top: 50px;
  border-top: none;
}
#footer-english .copyright {
  font-size: 16px;
}
@media screen and (max-width: 700px) {
  #footer-english .copyright {
    font-size: 2.2857142857vw;
  }
}
