@charset "UTF-8";
img {
  max-width: 100%;
}

.position {
  position: relative;
}

.wrap {
  max-width: 1020px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.wrap2 {
  max-width: 860px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.wrap3 {
  max-width: 980px;
  width: 88%;
  margin-left: auto;
  margin-right: auto;
}

.wrap4 {
  max-width: 780px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.wrap5 {
  max-width: 660px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.wrap6 {
  max-width: 906px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.wrap7 {
  max-width: 1080px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.bg01 {
  background: #F2EEE5;
}

#header-container div:after {
  display: none;
}

/*ヘッダー*/
header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
}
header.ex {
  position: relative;
}
header .head-box {
  display: flex;
  width: 100%;
  justify-content: space-between;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
header .head-box .logo {
  max-width: 128px;
  width: 13%;
  padding-bottom: 6px;
  padding-top: 12px;
  padding-left: 0px;
  box-sizing: border-box;
}
header .head-box .logo img {
  display: block;
}
header .head-box .nav-box {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
header .head-box .nav-box ul {
  font-size: 0;
  width: 90%;
  /*max-width: 774px;*/
  text-align: center;
  display: flex;
  justify-content: space-between;
  margin-left: 6.8%;
  margin-right: auto;
}
header .head-box .nav-box ul li {
  display: flex;
  align-items: center;
  vertical-align: top;
  position: relative;
  line-height: 1;
  margin-top: 0px;
  width: 22%;
  font-weight: 500;
  border-right: 1px solid #231815;
  /*a.btn1:hover{
    color: #08607f;
    background: #fff;
  }*/
  /*a.btn2:hover{
    color: #008459;
    background: #fff;
  }*/
}
header .head-box .nav-box ul li:first-child {
  width: 10%;
  border-left: 1px solid #231815;
}
header .head-box .nav-box ul li a {
  line-height: 1.23;
  color: #333333;
  font-size: 14px;
  padding-top: 6px;
  padding-bottom: 7px;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header .head-box .nav-box ul li a:hover {
  background: #AF1C3B;
  color: #fff;
}
header .head-box .nav-box ul li.hovered a {
  background: #AF1C3B;
  color: #fff;
}
header .head-box .nav-box ul li.current a {
  background: #AF1C3B;
  color: #fff;
}
header .head-box .nav-box ul li.ex {
  width: 22%;
}
header .head-box .nav-box ul li.ex a {
  background: #E8D2CC;
  color: #AF1C3B;
}
header .head-box .nav-box ul li.ex a:hover {
  background: #AF1C3B;
  color: #fff;
}
header .head-box .nav-box ul li.ex.current a {
  background: #AF1C3B;
  color: #fff;
}
header .head-box .nav-box ul li span {
  display: inline-block;
  vertical-align: middle;
  color: #AF1C3B;
  font-size: 11px;
  padding: 2px 1px 3px;
}
header .head-box .nav-box ul li a.btn1 {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2%;
  line-height: 1;
  background: #595757;
  color: #fff;
  padding: 3px 4% 4px;
  font-size: 12px;
  transition: 1s;
  -webkit-transition: 1s; /* Chrome、Safari用 */
  -moz-transition: 1s; /* Firefox用 */
  -o-transition: 1s; /* Opera用 */
}
header .head-box .nav-box ul li a.btn2 {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2%;
  line-height: 1;
  color: #fff;
  padding: 3px 4% 4px;
  background: #595757;
  font-size: 11px;
  transition: 1s;
  -webkit-transition: 1s; /* Chrome、Safari用 */
  -moz-transition: 1s; /* Firefox用 */
  -o-transition: 1s; /* Opera用 */
}
header .head-box .nav-box ul li .dropdown__lists {
  visibility: hidden; /*デフォルトでは非表示の状態にしておく*/
  opacity: 0; /*不透明度0*/
  transition: all 0.3s; /*表示の変化を0.3秒に指定*/
  width: 100%;
  position: absolute;
  top: 40px;
  left: 0;
  display: block;
}
header .head-box .nav-box ul li .dropdown__lists li {
  display: block;
  margin-top: 0;
  width: 102%;
  border-left: 2px solid #231815;
  margin-left: 0;
  margin-right: 0;
}
header .head-box .nav-box ul li .dropdown__lists li:first-child {
  width: 102%;
  border-left: 2px solid #231815;
}
header .head-box .nav-box ul li .dropdown__lists li:last-child {
  width: 102%;
  border-bottom: 2px solid #231815;
}
header .head-box .nav-box ul li .dropdown__lists li a {
  text-align: left;
  display: block;
}
header .head-box .nav-box ul li:hover .dropdown__lists {
  visibility: visible; /*Gナビメニューにホバーしたら表示*/
  opacity: 1; /*不透明度1*/
}
header .head-box .nav-box ul li:nth-child(4) .dropdown__lists {
  width: 100%;
}
header .head-box .nav-box ul li .dropdown__list {
  background-color: #fff;
  transition: all 0.3s;
  position: relative;
}
header .head-box .nav-box ul li .dropdown__list a {
  padding: 4px 10px !important;
  background: #AF1C3B;
  color: #fff !important;
  font-size: 12px;
}
header .head-box .nav-box ul li .dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
header .head-box .nav-box ul li .dropdown__list:hover {
  background-color: #fff;
}
header .head-box .nav-box ul li .dropdown__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #231815;
  text-decoration: none;
  position: relative;
}
header .head-box .nav-box ul li .dropdown__list a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
  display: none;
}
header .head-box .ex-logo {
  max-width: 110px;
  width: 11%;
  padding-top: 2px;
}

footer {
  background: #fff;
}
footer .foot-flex1 .logo {
  width: 22%;
  margin-right: auto;
  margin-left: auto;
  max-width: 180px;
  margin-bottom: 10px;
}
footer .foot-flex1 .foot-ad {
  font-size: 12px;
  line-height: 1.66;
  text-align: center;
  font-weight: 600;
}
footer .foor-flexwrap {
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
  padding-top: 10px;
  padding-bottom: 10px;
}
footer .foot-flex2 ul.flexlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .foot-flex2 ul.flexlist li {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1.25;
  width: 19%;
  margin-right: 0%;
  border-left: 1px solid #231815;
}
footer .foot-flex2 ul.flexlist li img {
  width: 100%;
}
footer .foot-flex2 ul.flexlist li a.link {
  background: #fff;
  padding-top: 8px;
  padding-bottom: 7px;
  text-align: center;
  display: flex;
  align-items: center;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #231815;
  border: none;
  margin-bottom: 0;
}
footer .foot-flex2 ul.flexlist li a.link.ex {
  /*background:#b7193f;
  color: #fff;*/
}
footer .foot-flex2 ul.flexlist li .bor-box {
  background: #fff;
  padding-top: 11px;
  padding-bottom: 9px;
  display: flex;
  align-items: center;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
footer .foot-flex2 ul.flexlist li .bor-box ul {
  display: flex;
  width: 86%;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}
footer .foot-flex2 ul.flexlist li .bor-box ul li {
  width: 14%;
  margin-right: 5%;
  border-left: 0;
}
footer .foot-flex2 ul.flexlist li .bor-box ul li:first-child {
  width: 24%;
  margin-right: 0;
}
footer .foot-flex2 ul.flexlist li .bor-box ul li:last-child {
  margin-right: 0;
  border-right: 0;
}
footer .foot-flex2 ul.flexlist li:last-child {
  width: 24%;
  margin-right: 0;
  border-right: 1px solid #231815;
}

.contents {
  padding-top: 60px;
}
.contents.ex {
  padding-top: 0;
}

.copy {
  background: #231815;
  line-height: 1;
  color: #fff;
  text-align: center;
  font-size: 12px;
}

.link-area {
  margin-top: -80px;
  padding-top: 80px;
}

.link-area2 {
  margin-top: -100px;
  padding-top: 100px;
}

.link-btn {
  max-width: 300px;
  width: 100%;
}
.link-btn a {
  display: block;
  text-align: center;
  position: relative;
  font-size: 17px;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
}
.link-btn a.ptn1 {
  background: #dfe6ef;
  color: #00749F;
  border: 2px solid #00749F;
}
.link-btn a.ptn1.ex {
  padding-top: 10px;
  padding-bottom: 16px;
}
.link-btn a.ptn2 {
  background: #fff;
  color: #498068;
  border: 2px solid #498068;
}
.link-btn a.ptn3 {
  background: #674498;
  color: #fff;
}
.link-btn a.ptn4 {
  background: #00749f;
  color: #fff;
  padding-top: 8px;
  padding-bottom: 15px;
}
.link-btn a span {
  font-size: 12px;
}
.link-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 8px;
  height: 16px;
  background: url(/100th/images/common/yajirushi.svg) no-repeat center center/cover;
}
.link-btn a.ptn1::after {
  background: url(/100th/images/common/yajirushi_br.png) no-repeat center center/cover;
}
.link-btn a.ptn2::after {
  background: url(/100th/images/common/yajirushi_gl.png) no-repeat center center/cover;
}
.link-btn a.ptn4::after {
  background: url(/100th/images/common/yajirushi_wt.png) no-repeat center center/cover;
}
.link-btn.center {
  margin-left: auto;
  margin-right: auto;
}

.fadein {
  opacity: 0;
}

.fadein2 {
  opacity: 0;
}

.fadein3 {
  opacity: 0;
}

.fadeinex {
  opacity: 0;
}

.fadein4 {
  opacity: 0;
  position: relative;
  z-index: 1;
}

.fadein5 {
  opacity: 0;
}

@media print, screen and (min-width: 901px) {
  .h-text2.left {
    text-align: left;
  }
}
@media screen and (min-width: 901px) and (max-width: 1080px) {
  header .head-box {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
  header .head-box .nav-box {
    width: 82%;
  }
}
@media screen and (min-width: 901px) and (max-width: 1200px) {
  header .head-box .ex-logo {
    width: 9%;
  }
  header .head-box .logo {
    width: 10%;
  }
  header .head-box .nav-box ul li {
    margin-top: 0px;
  }
  header .head-box .nav-box ul li:last-child {
    margin-top: 0px;
  }
  header .head-box .nav-box ul li a {
    font-size: 13px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header .head-box .nav-box ul li span {
    font-size: 10px;
  }
  header .head-box .nav-box ul li a.btn1 {
    font-size: 10px;
  }
  header .head-box .nav-box ul li a.btn2 {
    font-size: 10px;
  }
}
@media only screen and (max-width: 900px) {
  .link-area {
    margin-top: -10vw;
    padding-top: 10vw;
  }
  .link-area2 {
    margin-top: -13vw;
    padding-top: 13vw;
  }
  /*ヘッダー*/
  header .head-box {
    position: relative;
    width: 90%;
  }
  header .head-box .logo {
    width: 30%;
    padding-bottom: 3.5vw;
    padding-top: 3.5vw;
    padding-left: 0%;
    margin-left: -2%;
    box-sizing: border-box;
  }
  header .head-box .nav-box {
    width: 46%;
    margin-right: -3%;
  }
  header .head-box .nav-box ul {
    font-size: 0;
    text-align: right;
    margin-top: 1vw;
  }
  header .head-box .nav-box ul li {
    margin-top: 1vw;
    padding-right: 2%;
    padding-left: 2%;
  }
  header .head-box .nav-box ul li a {
    font-size: 2.7vw;
  }
  header .head-box .nav-box ul li:last-child {
    margin-right: 0;
  }
  header .head-box .nav-box ul li::after {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 100%;
    border-right: 1px solid #333;
  }
  header .head-box .nav-box ul li:first-child::before {
    content: "";
    position: absolute;
    left: 0;
    width: 1px;
    height: 100%;
    border-left: 1px solid #333;
  }
  header .head-box .nav-box ul li:nth-child(3)::before {
    content: "";
    position: absolute;
    left: 0;
    width: 1px;
    height: 100%;
    border-left: 1px solid #333;
  }
  header .head-box .ex-logo {
    max-width: 120px;
    width: 20%;
    position: absolute;
    top: 2vw;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .menu-btn {
    cursor: pointer;
    position: absolute;
    top: 0%;
    right: 0%;
    z-index: 100001;
    display: block;
    text-align: center;
    padding: 12px 10px 8px;
  }
  .menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    cursor: pointer;
  }
  .menu-trigger {
    position: relative;
    height: 20px;
    width: 30px;
    z-index: 9998;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #333333;
    border-radius: 0px;
    display: inline-block;
    box-sizing: border-box;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0px;
    width: 30px;
    height: 2px;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 10px;
    width: 30px;
    height: 2px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: -1px;
    width: 30px;
    height: 2px;
  }
  .menu-trigger span:nth-of-type(1) {
    -webkit-animation: menu-bar01 0.5s forwards;
    animation: menu-bar01 0.5s forwards;
  }
  @-webkit-keyframes menu-bar01 {
    0% {
      -webkit-transform: translateY(6px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(6px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar01 {
    0% {
      transform: translateY(6px) rotate(45deg);
    }
    50% {
      transform: translateY(6px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  /*.menu-trigger span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
  }*/
  .menu-trigger span:nth-of-type(3) {
    -webkit-animation: menu-bar02 0.5s forwards;
    animation: menu-bar02 0.5s forwards;
  }
  @-webkit-keyframes menu-bar02 {
    0% {
      -webkit-transform: translateY(-6px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-6px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar02 {
    0% {
      transform: translateY(-6px) rotate(-45deg);
    }
    50% {
      transform: translateY(-6px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  .menu-trigger.active span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 0.5s forwards;
    animation: active-menu-bar01 0.5s forwards;
    background: #231815;
  }
  @-webkit-keyframes active-menu-bar01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(6px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(6px) rotate(45deg);
    }
  }
  @keyframes active-menu-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(6px) rotate(0);
    }
    100% {
      transform: translateY(6px) rotate(45deg);
    }
  }
  /*.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }*/
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 0.5s forwards;
    animation: active-menu-bar03 0.5s forwards;
    background: #231815;
    bottom: 9px;
  }
  @-webkit-keyframes active-menu-bar03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-6px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-6px) rotate(-45deg);
    }
  }
  @keyframes active-menu-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-6px) rotate(0);
    }
    100% {
      transform: translateY(-6px) rotate(-45deg);
    }
  }
  .menu-trigger.active span:nth-of-type(2) {
    display: none;
  }
  /* sp_nav */
  /*#sp_menu{width: 16%; float: right; margin-right: 6%;}
  #sp_menu img{ max-width:100%;}*/
  #sp_nav {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    padding-top: 12vw;
    min-height: 100vh;
    overflow-y: auto;
    position: fixed;
    transition: all 0.3s ease;
    top: 0;
    bottom: 0;
    z-index: 100000;
    padding-left: 0%;
    right: 0%;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    padding-bottom: 20vw;
  }
  #sp_nav.ex {
    position: absolute;
  }
  #sp_nav.open {
    right: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  #sp_nav dl {
    width: 100%;
    clear: both;
  }
  /*#sp_nav ul.sub_list li{
  	border:none;
  }*/
  #sp_nav ul li:nth-child(odd) {
    box-shadow: none;
  }
  #sp_nav ul li.all {
    width: 100%;
  }
  #sp_nav ul li a:hover {
    text-decoration: none;
  }
  #sp_nav li {
    border-bottom: 1px solid #231815;
    position: relative;
    font-size: 2.8vw;
    width: 88%;
    margin-left: auto;
    margin-right: auto;
  }
  #sp_nav li.first {
    border-top: 1px solid #231815;
  }
  #sp_nav li a, #sp_nav dt {
    display: block;
    width: 100%;
    height: 100%;
    padding: 2vw 0vw;
    color: #231815;
    position: relative;
  }
  #sp_nav li.ex a {
    color: #AF1C3B;
  }
  #sp_nav li.last {
    padding: 3vw 3vw 8vw;
    border-bottom: none;
  }
  #sp_nav dd ul li a, #sp_nav dd dt {
    padding: 2vw 0vw;
    color: #231815;
    position: relative;
    border-bottom: 0;
  }
  #sp_nav dt::after {
    content: "＋";
    position: absolute;
    right: 5%;
    top: 50%;
    font-size: 3.9vw;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #sp_nav dt.open::after {
    content: "－";
  }
  #sp_nav dl.second dd ul {
    border-top: 1px solid #fff;
  }
  #sp_nav dl.second ul li a {
    padding: 2vw 8vw;
  }
  #sp_nav li span {
    /*color: #ffe200;*/
    color: #fff;
    font-size: 3.9vw;
    padding-bottom: 2vw;
    display: block;
  }
  #sp_nav li .sp-flex {
    display: block;
  }
  #sp_nav li .sp-flex a.btn1 {
    background: linear-gradient(to right, #5e93b6, #00739f);
    width: 100%;
    margin-bottom: 5vw;
    text-align: center;
    padding-top: 2vw;
    padding-bottom: 2vw;
    line-height: 1;
  }
  #sp_nav li .sp-flex a.btn2 {
    background: linear-gradient(to right, #819e8a, #498069);
    width: 100%;
    text-align: center;
    padding-top: 2vw;
    padding-bottom: 2vw;
    line-height: 1;
  }
  #sp_nav li a::after {
    position: absolute;
    top: 30%;
    width: 3vw;
    /*background: url("/100th/images/common/yajirushi.png") no-repeat right top;
    background-size:100%;*/
    height: 6vw;
    right: 5%;
    content: "";
  }
  #sp_nav li img {
    width: 8%;
    margin-right: 3%;
    vertical-align: middle;
    opacity: 1 !important;
  }
  #sp_nav dd ul li:last-child {
    border-bottom: none;
  }
  .head-nav {
    display: none;
  }
  .contents {
    padding-top: 10vw;
  }
  .contents.ex {
    padding-top: 0;
  }
  footer {
    padding-bottom: 0vw;
  }
  footer .foor-flexwrap {
    padding-bottom: 0;
    border-top: 0;
  }
  footer .foot-flex1 {
    display: block;
    align-items: center;
  }
  footer .foot-flex1 .logo {
    width: 48%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3vw;
  }
  footer .foot-flex1 .foot-name {
    width: 100%;
    margin-right: 0%;
    font-size: 3vw;
    text-align: center;
  }
  footer .foot-flex1 .foot-ad {
    font-size: 3vw;
    line-height: 1.7;
    text-align: center;
  }
  footer .foot-flex2 ul.flexlist {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  footer .foot-flex2 ul.flexlist li {
    display: flex;
    align-items: center;
    font-size: 3vw;
    line-height: 1.25;
    width: 100%;
    margin-right: 0%;
    margin-bottom: 0vw;
    border-top: 1px solid #231815;
  }
  footer .foot-flex2 ul.flexlist li:first-child {
    border-left: 0;
  }
  footer .foot-flex2 ul.flexlist li a.link {
    padding-top: 2.5vw;
    padding-bottom: 2.3vw;
  }
  footer .foot-flex2 ul.flexlist li a.link.ex {
    font-size: 2.8vw;
    padding-top: 3.5vw;
    padding-bottom: 3.3vw;
  }
  footer .foot-flex2 ul.flexlist li .bor-box {
    padding-top: 1.5vw;
    padding-bottom: 1.3vw;
  }
  footer .foot-flex2 ul.flexlist li .bor-box ul {
    display: flex;
    width: 68%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
  footer .foot-flex2 ul.flexlist li .bor-box ul li {
    width: 14%;
    margin-right: 5%;
    margin-bottom: 0;
    border-right: 0;
    border-top: 0;
  }
  footer .foot-flex2 ul.flexlist li .bor-box ul li:first-child {
    width: 24%;
    margin-right: 0;
  }
  footer .foot-flex2 ul.flexlist li .bor-box ul li:last-child {
    margin-right: 0;
  }
  footer .foot-flex2 ul.flexlist li:nth-child(-n+2) a {
    padding-top: 1.2vw;
    padding-bottom: 1.2vw;
  }
  footer .foot-flex2 ul.flexlist li:nth-child(2), footer .foot-flex2 ul.flexlist li:nth-child(3), footer .foot-flex2 ul.flexlist li:nth-child(4) {
    width: 33%;
    margin-right: 0;
    font-size: 2.6vw;
    border-left: 0;
    border-right: 1px solid #231815;
  }
  footer .foot-flex2 ul.flexlist li:nth-child(4) {
    margin-right: 0;
    font-size: 2.6vw;
    border-right: 0;
  }
  footer .foot-flex2 ul.flexlist li:last-child {
    width: 100%;
    margin-right: 0;
    border-left: 0;
    border-right: 0;
  }
  footer .foot-pagetop {
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3vw;
    padding-bottom: 3vw;
  }
  .copy {
    font-size: 2.3vw;
    padding-bottom: 3vw !important;
  }
  .link-btn {
    max-width: 52vw;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .link-btn a {
    display: block;
    text-align: center;
    position: relative;
    font-size: 2.7vw;
    width: 100%;
    padding-top: 2vw;
    padding-bottom: 2vw;
    text-align: center;
  }
  .link-btn a.ptn1.ex {
    padding-top: 1vw;
    padding-bottom: 2vw;
  }
  .link-btn a.ptn4 {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }
  .link-btn a span {
    font-size: 2.3vw;
  }
  .link-btn a::after {
    display: none;
  }
  .link-btn.center {
    margin-left: auto;
    margin-right: auto;
  }
}
.bottom-linklist {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.bottom-linklist li {
  width: 33.3%;
}
.bottom-linklist li:first-child a {
  border-top: 1px solid #231815;
}
.bottom-linklist li a {
  display: block;
  text-align: center;
  border-bottom: 1px solid #231815;
  border-left: 1px solid #231815;
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: center;
  color: #231815;
  font-size: 18px;
  position: relative;
}
.bottom-linklist li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url(/100th/images/common/yajirushi_02.svg) no-repeat center top/100%;
  width: 11px;
  height: 21px;
}
.bottom-linklist li a.red {
  background: #AF1C3B;
  border-top: 1px solid #AF1C3B;
  border-bottom: 1px solid #AF1C3B;
  border-left: 1px solid #AF1C3B;
  padding-top: 50px;
  padding-bottom: 50px;
  color: #fff;
}
.bottom-linklist li a.red::after {
  background: url(/100th/images/common/yajirushi_01.svg) no-repeat center top/100%;
}
.bottom-linklist li.full {
  width: 100%;
}
.bottom-linklist li.full a {
  background: url(/100th/images/common/main_shita.jpg) no-repeat center top/cover;
}
.bottom-linklist li.full a img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1020px;
  width: 80%;
  opacity: 1 !important;
}
.bottom-linklist li.full.ex img {
  max-width: 356px;
  width: 63%;
  margin-left: auto;
  margin-right: auto;
  opacity: 1 !important;
}
.bottom-linklist li.full2 {
  width: 100%;
  background: url(/100th/images/common/main_shita2.jpg) no-repeat center top/cover;
}
.bottom-linklist li.full2 a {
  padding-top: 20px;
  padding-bottom: 20px;
}
.bottom-linklist li.full2 a img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1020px;
  width: 80%;
  opacity: 1 !important;
}
.bottom-linklist li.full3 {
  width: 100%;
}
.bottom-linklist li.full3 a {
  background: url(/100th/images/common/main_shita3.jpg) no-repeat center top/cover;
}
.bottom-linklist li.full3 a img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1050px;
  width: 80%;
  opacity: 1 !important;
}
.bottom-linklist li.full3.ex img {
  max-width: 356px;
  width: 63%;
  margin-left: auto;
  margin-right: auto;
  opacity: 1 !important;
}
.bottom-linklist li.full4 {
  width: 100%;
}
.bottom-linklist li.full4 a {
  padding-top: 20px;
  padding-bottom: 30px;
  background: url(/100th/images/common/main_shita4.jpg) no-repeat center top/cover;
}
.bottom-linklist li.full4 a img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1050px;
  width: 80%;
  opacity: 1 !important;
}
.bottom-linklist li.full4.ex img {
  max-width: 356px;
  width: 63%;
  margin-left: auto;
  margin-right: auto;
  opacity: 1 !important;
}
.bottom-linklist li.ex img {
  max-width: 356px;
  width: 63%;
  margin-left: auto;
  margin-right: auto;
  opacity: 1 !important;
}
.bottom-linklist.ptn2 li {
  width: 50%;
}
.bottom-linklist.ptn3 li {
  width: 25%;
  display: flex;
  align-items: center;
}
.bottom-linklist.ptn3 li a {
  padding-top: 30px;
  padding-bottom: 30px;
  width: 100%;
  height: 100%;
  border-top: 1px solid #231815;
}

.at-box {
  margin-bottom: 70px;
  padding: 18px 5px 18px;
  background: #f2e0dc;
  text-align: center;
  color: #AF1C3B;
}
.at-box dt {
  line-height: 1;
  margin-bottom: 15px;
  font-size: 18px;
}
.at-box dd {
  font-size: 15px;
}

footer {
  border-top: 1px solid #231815;
}

.g-bnr {
  margin-top: 20px;
  max-width: 906px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}

.pickup {
  color: #B7193F;
  text-align: center;
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 20px;
  width: 100%;
}

.fl-btn-pc {
  position: fixed;
  top: 200px;
  right: 0;
  z-index: 9999;
  width: 60px;
  transition: all 0.15s ease-out;
}
.fl-btn-pc li {
  margin-bottom: 6px;
}

@media only screen and (max-width: 900px) {
  .body-wrap {
    overflow-x: hidden;
  }
  .pickup {
    text-align: center;
    font-size: 3.6vw;
    font-weight: bold;
    margin-bottom: 4vw;
  }
  .bottom-linklist {
    display: block;
    margin-bottom: 0;
  }
  .bottom-linklist li {
    width: 100%;
  }
  .bottom-linklist li a {
    display: block;
    text-align: center;
    border-left: 0;
    padding-top: 3.1vw;
    padding-bottom: 3.1vw;
    font-size: 3.4vw;
  }
  .bottom-linklist li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background: url(/100th/images/common/yajirushi_02.svg) no-repeat center top/100%;
    width: 2.2vw;
    height: 5.2vw;
  }
  .bottom-linklist li a.red {
    padding-top: 3.1vw;
    padding-bottom: 3.1vw;
    font-size: 3.4vw;
  }
  .bottom-linklist li.full {
    width: 100%;
  }
  .bottom-linklist li.full a {
    background: url(/100th/images/common/main_shita.jpg) no-repeat center top/cover;
  }
  .bottom-linklist li.full a img {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }
  .bottom-linklist li.full.ex img {
    max-width: none;
    width: 63%;
    margin-left: auto;
    margin-right: auto;
  }
  .bottom-linklist li.full2 {
    width: 100%;
  }
  .bottom-linklist li.full2 a {
    padding-top: 3.1vw;
    padding-bottom: 3.1vw;
  }
  .bottom-linklist li.full2 a img {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }
  .bottom-linklist li.full2.ex img {
    max-width: none;
    width: 63%;
    margin-left: auto;
    margin-right: auto;
  }
  .bottom-linklist li.full3 {
    width: 100%;
  }
  .bottom-linklist li.full3 a {
    background: #E7E8E8;
  }
  .bottom-linklist li.full3 a img {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }
  .bottom-linklist li.full3.ex img {
    max-width: none;
    width: 63%;
    margin-left: auto;
    margin-right: auto;
  }
  .bottom-linklist li.full4 {
    width: 100%;
  }
  .bottom-linklist li.full4 a {
    padding-top: 3vw;
    padding-bottom: 3.2vw;
  }
  .bottom-linklist li.full4 a img {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }
  .bottom-linklist li.full4.ex img {
    max-width: none;
    width: 63%;
    margin-left: auto;
    margin-right: auto;
  }
  .bottom-linklist.ptn2 {
    display: flex;
  }
  .bottom-linklist.ptn2 li {
    width: 50%;
  }
  .bottom-linklist.ptn2 li:last-child a {
    border-left: 1px solid #231815;
  }
  .bottom-linklist.ptn3 li {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .bottom-linklist.ptn3 li a {
    padding-top: 3.1vw;
    padding-bottom: 3.1vw;
    width: 100%;
    height: 100%;
    border-top: 1px solid #231815;
    border-bottom: 0;
  }
  .bottom-linklist.ptn3 li:last-child a {
    border-bottom: 0;
  }
  .at-box {
    margin-bottom: 7vw;
    padding: 2.6vw 1vw;
    text-align: center;
    color: #AF1C3B;
  }
  .at-box dt {
    line-height: 1;
    margin-bottom: 1vw;
    font-size: 3vw;
  }
  .at-box dd {
    font-size: 2.3vw;
  }
  .g-bnr {
    margin-top: 3vw;
    max-width: 62%;
    margin-bottom: 5vw;
    margin-left: auto;
    margin-right: auto;
  }
  .fl-btn-sp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.4s;
    opacity: 1;
  }
  .fl-btn-sp ul {
    display: flex;
  }
  .fl-btn-sp ul li {
    width: 33.3%;
  }
  .fl-btn-sp.off {
    opacity: 0;
    pointer-events: none;
  }
  header {
    border-top: 0;
    border-bottom: 0;
  }
}
.new-bnr {
  max-width: 686px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

@media only screen and (max-width: 900px) {
  .new-bnr {
    max-width: 686px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 13vw;
  }
}
.copy-textimg {
  position: relative;
  z-index: 2;
}
.copy-textimg img {
  max-height: 70px;
  width: auto;
  display: block;
  vertical-align: bottom;
  margin-left: auto;
  margin-right: auto;
}
.copy-textimg img.ex {
  max-height: 58px;
}

.sub-copy {
  font-weight: 400;
}

.head-boxab {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.wrap3.bot {
  border-top: 1px solid #231815;
  padding-top: 80px;
  max-width: 1024px;
}

@media only screen and (max-width: 900px) {
  .copy-textimg img {
    max-height: 6.7vw;
    width: auto;
    display: block;
    vertical-align: bottom;
    margin-left: auto;
    margin-right: auto;
  }
  .copy-textimg img.ex {
    max-height: 5.2vw;
  }
  .head-boxab {
    padding-top: 4.4vw;
    padding-bottom: 4.4vw;
    margin-bottom: 4.4vw;
  }
  .wrap3.bot {
    border-top: 1px solid #231815;
    padding-top: 7vw;
  }
  .main-img {
    margin-top: 12vw;
  }
}
.pickup-wrap {
  position: relative;
  z-index: 999;
  background: #fff;
}

.foot-nav {
  padding-top: 45px;
  border-bottom: 1px solid #231815;
  padding-bottom: 22px;
  margin-bottom: 44px;
}
.foot-nav .foot-logo {
  width: 62%;
  margin-left: auto;
  margin-right: auto;
  max-width: 360px;
}
.foot-nav .foot-nav-wrap {
  display: flex;
  padding-top: 40px;
  justify-content: space-between;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}
.foot-nav .foot-nav-wrap dl {
  width: 17.4%;
  text-align: left;
}
.foot-nav .foot-nav-wrap dl dt {
  margin-bottom: 11px;
  color: #231815;
  padding-bottom: 11px;
  line-height: 1;
  font-size: 11px;
  border-bottom: 1px solid #231815;
}
.foot-nav .foot-nav-wrap dl dt a {
  color: #231815;
}
.foot-nav .foot-nav-wrap dl dd ul li {
  font-size: 11px;
  line-height: 1.88;
}
.foot-nav .foot-nav-wrap dl dd ul li a {
  color: #231815;
}

@media only screen and (max-width: 900px) {
  .foot-nav {
    border-bottom: 0;
    padding-top: 5vw;
    padding-bottom: 0px;
    margin-bottom: 5vw;
  }
  #sp_nav2 {
    margin-top: 6vw;
  }
  #sp_nav2 dl {
    width: 100%;
    clear: both;
  }
  /*#sp_nav ul.sub_list li{
    border:none;
  }*/
  #sp_nav2 ul li:nth-child(odd) {
    box-shadow: none;
  }
  #sp_nav2 ul li.all {
    width: 100%;
  }
  #sp_nav2 ul li a:hover {
    text-decoration: none;
  }
  #sp_nav2 li {
    border-bottom: 1px solid #231815;
    position: relative;
    font-size: 2.8vw;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  #sp_nav2 li.first {
    border-top: 1px solid #231815;
  }
  #sp_nav2 li a, #sp_nav2 dt {
    display: block;
    width: 100%;
    height: 100%;
    padding: 2vw 0vw;
    color: #231815;
    position: relative;
    text-align: left;
  }
  #sp_nav2 li.ex a {
    color: #AF1C3B;
  }
  #sp_nav2 li.last {
    padding: 3vw 3vw 8vw;
    border-bottom: none;
  }
  #sp_nav2 dd ul li a, #sp_nav2 dd dt {
    padding: 2vw 0vw;
    color: #231815;
    position: relative;
    border-bottom: 0;
  }
  #sp_nav2 dt::after {
    content: "＋";
    position: absolute;
    right: 0%;
    top: 50%;
    font-size: 3.9vw;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #sp_nav2 dt.open::after {
    content: "－";
  }
  #sp_nav2 dl.second dd ul {
    border-top: 1px solid #fff;
  }
  #sp_nav2 dl.second ul li a {
    padding: 2vw 8vw;
  }
  #sp_nav2 dd ul li {
    border-bottom: 0;
  }
  #sp_nav2 li span {
    /*color: #ffe200;*/
    color: #fff;
    font-size: 3.9vw;
    padding-bottom: 2vw;
    display: block;
  }
  #sp_nav2 li .sp-flex {
    display: block;
  }
  #sp_nav2 li .sp-flex a.btn1 {
    background: linear-gradient(to right, #5e93b6, #00739f);
    width: 100%;
    margin-bottom: 5vw;
    text-align: center;
    padding-top: 2vw;
    padding-bottom: 2vw;
    line-height: 1;
  }
  #sp_nav2 li .sp-flex a.btn2 {
    background: linear-gradient(to right, #819e8a, #498069);
    width: 100%;
    text-align: center;
    padding-top: 2vw;
    padding-bottom: 2vw;
    line-height: 1;
  }
  #sp_nav2 li a::after {
    position: absolute;
    top: 30%;
    width: 3vw;
    /*background: url("/100th/images/common/yajirushi.png") no-repeat right top;
    background-size:100%;*/
    height: 6vw;
    right: 5%;
    content: "";
  }
  #sp_nav2 li img {
    width: 8%;
    margin-right: 3%;
    vertical-align: middle;
    opacity: 1 !important;
  }
  #sp_nav2 dd ul li:last-child {
    border-bottom: none;
  }
}
.foot-box {
  padding-top: 40px;
  padding-bottom: 40px;
}
.foot-box.ptn1 {
  background: url("/100th/images/common/his-bg.jpg") no-repeat center center;
  background-size: cover;
}
.foot-box.ptn2 {
  background: url("/100th/images/common/sto-bg.jpg") no-repeat center center;
  background-size: cover;
}
.foot-box.ptn3 {
  background: url("/100th/images/common/awa-bg.jpg") no-repeat center center;
  background-size: cover;
}
.foot-box.ptn4 {
  background: url("/100th/images/common/mem-bg.jpg") repeat center center;
  background-size: cover;
}
.foot-box .foot-box-flex {
  display: flex;
  align-items: center;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}
.foot-box .foot-box-flex .left {
  position: relative;
  z-index: 5;
  width: 32.5%;
  margin-right: -4%;
  margin-top: -4.5%;
}
.foot-box .foot-box-flex .left .ttl-line {
  margin-bottom: 12px;
  border-bottom: 1px solid #231815;
  padding-bottom: 5px;
  width: 88%;
}
.foot-box .foot-box-flex .left .ttl-line img {
  width: 134px;
}
.foot-box .foot-box-flex .left .ttl-obi {
  padding: 12px 14px 12px 200%;
  margin-left: -200%;
  position: relative;
  background: #fff;
}
.foot-box .foot-box-flex .left .ttl-obi::after {
  position: absolute;
  content: "";
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
  background: url("/100th/images/common/yajirushiex.png") no-repeat right center/cover;
}
.foot-box .foot-box-flex .left .ttl-obi .ptn1 {
  width: 100%;
}
.foot-box .foot-box-flex .left .ttl-obi .ptn2 {
  width: 77%;
  margin-left: 4%;
}
.foot-box .foot-box-flex .left .ttl-obi .ptn3 {
  width: 100%;
}
.foot-box .foot-box-flex .left .ttl-obi .ptn4 {
  width: 100%;
}
.foot-box .foot-box-flex .pic {
  width: 43%;
  position: relative;
  z-index: 4;
}
.foot-box .foot-box-flex .text {
  width: 34%;
  margin-left: -5%;
  position: relative;
  z-index: 5;
}

@media only screen and (max-width: 900px) {
  .foot-box {
    padding-top: 5.2vw;
    padding-bottom: 5.2vw;
  }
  .foot-box .foot-box-flex {
    display: flex;
    align-items: center;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
  }
  .foot-box .foot-box-flex .left {
    position: relative;
    z-index: 5;
    width: 48%;
    margin-right: -12%;
    padding-bottom: 9vw;
    margin-top: 0;
  }
  .foot-box .foot-box-flex .left .ttl-line {
    margin-bottom: 2vw;
    padding-bottom: 1vw;
    width: 61%;
    margin-left: 14%;
  }
  .foot-box .foot-box-flex .left .ttl-line img {
    width: 23vw;
  }
  .foot-box .foot-box-flex .left .ttl-obi {
    padding: 1.4vw 1.4vw 1.4vw 8vw;
    margin-left: 0%;
    position: relative;
  }
  .foot-box .foot-box-flex .left .ttl-obi::after {
    position: absolute;
    content: "";
    top: 0;
    right: -1.6vw;
    width: 1.6vw;
    height: 100%;
    background: url("/100th/images/common/yajirushiex.png") no-repeat right center/cover;
  }
  .foot-box .foot-box-flex .left .ttl-obi .ptn1 {
    width: 100%;
  }
  .foot-box .foot-box-flex .left .ttl-obi .ptn2 {
    width: 77%;
    margin-left: 4%;
  }
  .foot-box .foot-box-flex .left .ttl-obi .ptn3 {
    width: 100%;
  }
  .foot-box .foot-box-flex .left .ttl-obi .ptn4 {
    width: 100%;
  }
  .foot-box .foot-box-flex .pic {
    width: 57%;
    position: relative;
    z-index: 4;
  }
  .foot-box .foot-box-flex .text {
    width: 82%;
    margin-left: 18%;
    position: relative;
    z-index: 5;
  }
}
/*メガメニュー*/
.menu-title {
  width: 100%;
  margin-bottom: 20px;
}

.menu-title > div {
  width: 100%;
}

.menu-title .menu-ttl {
  font-size: 16px;
  color: #231815;
  font-weight: 600;
}

.menu-link {
  width: 100%;
}

.menu-link ul {
  font-size: 0;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
}

.menu-link li {
  width: 31%;
  margin-right: 3%;
  display: inline-block;
  margin-bottom: 2%;
  vertical-align: top;
}

.menu-link li:nth-child(3n) {
  margin-right: 0;
}

.menu-link li a {
  display: block;
  color: #231815;
  z-index: 2;
  padding-bottom: 4px;
  /*font-size:1.0vmax;*/
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #231815;
  position: relative;
}

.menu-link li a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 4px;
  height: 12px;
  background: url(/100th/images/common/menu-yajirushi.png) no-repeat right center/contain;
}

.menu-link li a span, .close-link span {
  font-size: 16px;
  /*vertical-align: middle;
  display: inline-block;*/
  line-height: 18px;
  margin-right: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}

header .wrap2 {
  width: 1090px;
  margin-left: auto;
  margin-right: auto;
}

.mega-menu-1, .mega-menu-2, .mega-menu-3, .mega-menu-4 {
  position: fixed;
  z-index: 999;
  transition: 0.5s;
  width: 100%;
  display: none;
  margin-left: auto;
  margin-right: auto;
  transform: 0.5s;
  height: 0;
  top: -450px;
  max-width: 730px;
  left: 0;
  right: 0;
  pointer-events: none;
}

.mega-menu-1.open, .mega-menu-2.open, .mega-menu-3.open, .mega-menu-4.open {
  /*background: url(/100th/images/back.png) no-repeat 42.5% 11%;*/
  display: block;
  -webkit-animation: dropdown 0.3s cubic-bezier(0.77, 0, 0.175, 1) 0s;
  animation: dropdown 0.3s cubic-bezier(0.77, 0, 0.175, 1) 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  height: 100%;
  top: 45px;
  pointer-events: auto;
}

.mega-menu-1.open a, .mega-menu-2.open a, .mega-menu-3.open a, .mega-menu-4.open a {
  pointer-events: auto;
}

@-webkit-keyframes dropdown {
  0% {
    height: 0;
    top: -450px;
  }
  100% {
    height: 100%;
    top: 45px;
  }
}

@keyframes dropdown {
  0% {
    height: 0;
    top: -450px;
  }
  100% {
    height: 100%;
    top: 45px;
  }
}
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .mega-menu-1, .mega-menu-2 {
    position: fixed;
    z-index: 999;
    -ms-transition: 0.5s;
    transition: 0.5s;
    width: 100%;
    background-size: auto auto;
    background-size: 3%;
    display: none;
    margin-left: auto;
    margin-right: auto;
    transform: 1s;
    height: 0;
    top: -450px;
  }
  *::-ms-backdrop, .mega-menu-1.open, .mega-menu-2.open {
    /*background: url(/100th/images/back.png) no-repeat 42.5% 11%;*/
    display: block;
    -webkit-animation: dropdown 0.98s cubic-bezier(0.77, 0, 0.175, 1) 0s;
    animation: dropdown 0.98s cubic-bezier(0.77, 0, 0.175, 1) 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    height: 100%;
    top: 45px;
  }
}
.menu-box {
  text-align: center;
  padding: 40px 0% 70px;
  width: 100%;
  position: relative;
  z-index: 999;
  color: #fff;
  background: rgba(255, 255, 255, 0.9);
}
.menu-box.m3 {
  padding: 40px 0% 35px;
}

.menu-title {
  text-align: left;
}

.close-link {
  width: 18px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.pc-menu-area {
  position: fixed;
  top: 80px;
  z-index: 10010;
  width: 90%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}

.menu-btnpc {
  cursor: pointer;
  position: absolute;
  top: 0%;
  right: 0%;
  z-index: 100001;
  display: block;
  background-size: cover;
  text-align: center;
}

.menu-triggerpc,
.menu-triggerpc span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  cursor: pointer;
}

.menu-triggerpc {
  position: relative;
  height: 44px;
  width: 60px;
  z-index: 9998;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.menu-triggerpc span {
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #4A4A4A;
  border-radius: 0px;
  display: inline-block;
  box-sizing: border-box;
}

.menu-triggerpc span:nth-of-type(1) {
  top: 0px;
  width: 60px;
  height: 2px;
}

.menu-triggerpc span:nth-of-type(2) {
  top: 20px;
  width: 60px;
  height: 2px;
}

.menu-triggerpc span:nth-of-type(3) {
  bottom: 1px;
  width: 60px;
  height: 2px;
}

.menu-btnpc .menutexpc {
  font-size: 15px;
  line-height: 1;
}

.menu-btnpc .menutexpc.open {
  color: #fff;
}

.menu-btnpc .menutexpc.open:before {
  font-size: 11px;
  /*content:'CLOSE';*/
  content: "";
}

.menu-triggerpc span:nth-of-type(1) {
  -webkit-animation: menu-bar01 0.5s forwards;
  animation: menu-bar01 0.5s forwards;
}

.menu-trigger span:nth-of-type(1) {
  -webkit-animation: menu-bar01 0.5s forwards;
  animation: menu-bar01 0.5s forwards;
}

@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(4px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(4px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(4px) rotate(45deg);
  }
  50% {
    transform: translateY(4px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-trigger span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}

.menu-trigger span:nth-of-type(3) {
  -webkit-animation: menu-bar02 0.5s forwards;
  animation: menu-bar02 0.5s forwards;
}

@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-4px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-4px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-4px) rotate(-45deg);
  }
  50% {
    transform: translateY(-4px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-triggerpc.active span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 0.5s forwards;
  animation: active-menu-bar01 0.5s forwards;
  background: #fff;
}

@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(4px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(4px) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(4px) rotate(0);
  }
  100% {
    transform: translateY(4px) rotate(45deg);
  }
}
.menu-triggerpc.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-triggerpc.active span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 0.5s forwards;
  animation: active-menu-bar03 0.5s forwards;
  width: 60px;
  background: #fff;
  bottom: auto;
  top: 8px;
}

@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-4px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-4px) rotate(-45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-4px) rotate(0);
  }
  100% {
    transform: translateY(-4px) rotate(-45deg);
  }
}
.pc-menu {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  pointer-events: none;
  overflow-y: auto;
}

.pc-menu.open a {
  pointer-events: auto;
}

.pc-menu.open {
  opacity: 1;
}

.pc-menu .menu-wrap {
  height: 100vh;
}

.pc-menu .menu-wrap .menu_box {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  max-width: 1020px;
  transform: translateY(-50%);
  /*padding-top: 15%;
  padding-bottom: 15%;*/
  overflow-y: auto;
  display: flex;
  justify-content: space-between;
}

.menu_box1 {
  width: 28%;
}
.menu_box1 .menu-minibox {
  margin-bottom: 45px;
}
.menu_box1 .menu-minibox p {
  font-size: 18px;
  color: #e8d2cc;
  margin-bottom: 25px;
  line-height: 1;
  padding-bottom: 0;
  text-align: left;
}
.menu_box1 .menu-minibox p a {
  color: #e8d2cc;
}
.menu_box1 .menu-minibox ul li {
  line-height: 1.8;
  text-align: left;
}
.menu_box1 .menu-minibox ul li a {
  font-size: 13px;
  color: #ffffff;
  display: block;
  padding-left: 2em;
}

.menu_boxex {
  width: 26.4%;
  margin-top: 400px;
}
.menu_boxex .bokin-btn {
  margin-bottom: 45px;
}

.main-img {
  margin-top: 48px;
  position: relative;
}
.main-img .ex-logo {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 20%;
  max-width: 145px;
  z-index: 2;
}

@media only screen and (max-width: 900px) {
  .main-img {
    margin-top: 12vw;
  }
  .main-img .ex-logo {
    top: 2.4vw;
    left: 2.4vw;
    width: 30%;
    max-width: none;
  }
  .fl-btn-sp2 {
    position: relative;
    z-index: 999;
  }
}
/*# sourceMappingURL=style.css.map */